@charset "UTF-8";
/*
Theme Name: MY-THEME
*/
@import "style-visual.css";

/* Webフォント読込サンプル */
/*
@font-face {
  font-family: "Font-Family-NAME";
  src: url(css/fonts/font-file.woff2) format("woff2"),
  url(css/fonts/font-file.woff) format("woff"),
  url(css/fonts/font-file.eot) format("eot");
  font-weight: 400;
  font-style: normal;
}
*/

/* ==========================================================================
   サイト毎の独自のスタイル
   ========================================================================== */

/* 基本フォント: ゴシック */
html{
  scroll-padding-top: 100px;
}
body{
  font-family:  'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 1.666;
  color: #000000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-padding-top: 100px;
}

/* 基本フォント: 明朝 */
/**/
body{
  /* 游明朝体 */
  /*font-family: "游明朝体", "Yu Mincho", YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;*/
  /* ヒラギノ明朝 */
  /*font-family: 'Hiragino Mincho Pro', 'ヒラギノ明朝 Pro', 'Yu Mincho', '游明朝', 'MS Mincho', 'MS明朝', serif;*/
}

/* admin-barの高さ分の padding 設定 */
body.admin-bar{
  padding-top: 32px;
}
@media (max-width:782px){
  body.admin-bar{
    padding-top: 46px;
  }
}

.gothic{
  font-family: '游ゴシック体','Yu Gothic', 'YuGothic', "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.mincho{
  font-family: "游明朝体", "Yu Mincho", YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.heisei{
  font-family: heisei-kaku-gothic-std, sans-serif;
}
.din{
  font-family:"din-2014-narrow";
}

a{
  color: inherit;
  text-decoration: none;
}
a:hover{
  text-decoration: underline;
}

img{
  max-width: 100%;
}
a:hover img{
  opacity: 0.8;
}

img[class*="wp-image-"],
img[class*="attachment-"]{
  max-width: 100%;
  height: auto;
}

i, em{
  font-style: normal;
}

/* 動画埋め込みのレスポンシブ対応 */
iframe{
  max-width: 100%;
}
.responsive_video {
  position: relative;
}

.responsive_video:before{
  content: "";
  display: block;
  padding-top:56.25%;
}
.responsive_video video,
.responsive_video iframe,
.responsive_video object,
.responsive_video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* テーブル */
table{
  width: 100%;
  table-layout: fixed;
}
table th,
table td{
  padding: 10px 10px;
}



/* スクロール テーブル */
.js-scrollable{
  overflow-x: auto;
}
.js-scrollable table{
  min-width: 748px;
}

/* 指定デバイスのみで表示するclass 
@media (min-width:1024px){
  .tb:not(.pc){
    display: none;
  }
  .sp:not(.pc){
    display: none;
  }
}
@media (min-width:768px) and (max-width:1023px){
  .pc:not(.tb){
    display: none;
  }
  .sp:not(.tb){
    display: none;
  }
}
@media (max-width:767px){
  .pc:not(.sp){
    display: none;
  }
  .tb:not(.sp){
    display: none;
  }
} */

/* **********************************
 *  コンテナ
 * ********************************* */
.wrapper{
  overflow: hidden;
}
.container{
  max-width: 1610px;
  padding: 0 50px;
  margin: 0 auto;
}
@media(max-width:1024px){
  .container{
    max-width: 1550px;
    padding: 0 30px;
  }
}
.section{
  width: 100%;
  /*margin-bottom: 50px;*/
  /*padding: 30px 0;*/
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.pg_header{
  /*padding: 15px 0;*/
  background-color: #ccc;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.pg_header .container{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 330px;
}

/* 共通のfloat ボックスとして定義しておく */
.box_l{
  float: left;
}
.box_r{
  float: right;
}

/* ▼サンプル▼ 利用箇所毎に幅指定だけで済むように */
/*
.post_list .post_box .box_l {
    width: 70%;
}
.post_list .post_box .box_r {
    width: 25%;
}
*/

/* ▼サンプル▼ リストなどでアイキャッチがない場合のclass */
/*
.post_list .post_box .box_w{
  width: 100%;
}
*/

/*
 * 共通クラスとして定義しておく
 * リスト組みのテンプレート
 * 
 */

.listbox{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.listbox .item{
  display: block;
  width: 100%;
}
.listbox .item .img{
  position: relative;
  display: block;
  overflow: hidden;
}
.listbox .item .img:before{
  content: "";
  display: block;
  padding-top: 100%;
}
.listbox .item .img.img2x1:before{
  padding-top: 50%;
}
.listbox .item .img.img1x2:before{
  padding-top: 200%;
}
.listbox .item .img.img2x3:before{
  padding-top: 150%;
}
.listbox .item .img.img3x2:before{
  padding-top: 66.666666%;
}
.listbox .item .img.img3x4:before{
  padding-top: 133.333333%;
}
.listbox .item .img.img4x3:before{
  padding-top: 75%;
}
.listbox .item .img.img16x9:before{
  padding-top: 56.25%;
}
.listbox .item .img img{
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.listbox .item .title{

}
.listbox .item .date{

}
.listbox .item .txt{

}


/* ▼サンプル▼ 利用箇所ごとにマージンなど設定 */
/*
.post_content .col1,
.post_content .col2,
.post_content .col3{
  margin-bottom: 20px;
}
*/




/* 検索フォーム */
.pg_404{
  text-align: center;
}
.pg_404{

}

.search-form{
  padding: 20px 0;
}
.search-form .search-field{
  padding: 5px;
}
.search-form .search-submit{
  padding: 5px 10px;
}

.pg_image{

}
.pg_image .attachment{
  padding: 20px;
  background-color: #ececec;
  text-align: center;
}


/* 記事リスト */
.post_items{
  padding: 0 0;
}
.post_items .item{
  /*background: #f0f0f0;*/
  padding: 10px;
  border-top: 1px solid #CCC;
  display: flex;
  align-items: center;
  position: relative;
}
.post_items .item:last-child{
  border-bottom: 1px solid #CCC;
}
.post_items .item .img{

}
.post_items .item .date{
  width: 130px;
  font-size: 15px;
  color: #5a5a5a;
}
.post_items .item .category{
  width: 150px;
  padding: 0 10px;

}
.post_items .item .category span{
  display: block;
  background: #e5e5e5;
  color: #6c6969;
  padding: 3px;
  margin: 2px;
  text-align: center;
}
.post_items .item .title{
  font-weight: 500;
  width: calc(100% - 130px - 150px);
  /*width: -moz-available;
  width: -webkit-fill-available;
  width: available;*/
}
.post_items .item .title a{
  display: block;
  position: relative;
  padding-right: 1em;
}
.post_items .item:after{
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.post_items .item.single_item{
  display: flex;
  flex-wrap: wrap;
  border-top: 15px solid #d3d3d3;
  border-bottom: 1px solid #d3d3d3;
  border-left: 1px solid #d3d3d3;
  border-right: 1px solid #d3d3d3;
}
.post_items .item.single_item:after{
  display: none;
}
.post_items .item.single_item .meta{
  display: flex;
  align-items: center;
  width: 100%;
}
.post_items .item.single_item .title{
  width: 100%;
  font-size: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #CCC;
}
.post_items .item.single_item .content{
  width: 100%;
  margin-top: 20px;
  padding-bottom: 20px;
}
.post_items .item.single_item .content *{
  margin-bottom: 1em;
}
.post_items .item.single_item .content h1,
.post_items .item.single_item .content h2,
.post_items .item.single_item .content h3,
.post_items .item.single_item .content h4,
.post_items .item.single_item .content h5,
.post_items .item.single_item .content h6{
  margin-bottom: 0.5em;
}
.post_items .item.single_item .content a{
  color: #2196F3;
}

.post_items .post_content{
  margin-top: 30px;
}

/* ページ送り(一覧) */
.pagination{
  text-align: center;
  margin-top: 30px;
}
.pagination .nav-links{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;

}
.pagination .page-numbers{
  align-self: stretch;
  border: 1px solid #c0c0c0;
  padding: 5px 10px;
  margin: 4px 4px;
  color: #1e1e1e;
  text-decoration: none;
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover{
  background: #e5e5e5;
}
.pagination .page-numbers.next:after{
  content: "\f101";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 10px;
}
.pagination .page-numbers.prev:before{
  content: "\f100";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

/* ページ送り(詳細) */
.pagination .nav-posts{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pagination .nav-posts .page-next,
.pagination .nav-posts .page-prev{
  min-width: 200px;
}
.pagination .nav-posts .page-next a,
.pagination .nav-posts .page-prev a{
  display: block;
  border: 1px solid #c0c0c0;
  padding: 10px 50px;
  position: relative;
}
.pagination .nav-posts .page-next a:before,
.pagination .nav-posts .page-prev a:after{
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.pagination .nav-posts .page-next a:before{
  content: "\f053";
  left: 10px;
}
.pagination .nav-posts .page-prev a:after{
  content: "\f054";
  right: 10px;
}
.pagination .nav-posts .page-archive a{
  display: block;
  background: #bcbcbc;
  color: #ffffff;
  padding: 10px 100px;
}

/* 検索 */
.search_list{
  background: #eee;
  padding: 15px;
}
.search_list .item{

}
.search_list .item + .item{

}


/* コンタクトフォーム */
.contact_info{
  background: #f0f0f0;
  text-align: center;
  padding: 20px;
  margin-bottom: 100px;
}
.contact_info .box1{
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.14em;
}
.contact_info .box2{
  margin-top: 20px;
  background: #FFFFFF;
  padding: 20px 5px;
  line-height: 1;
}
.contact_info .box2 .icon{
  display: inline-block;
  font-size: 25px;
  font-weight: bolder;
  background: #8c8c8c;
  color: #FFFFFF;
  padding: 5px 15px;
  margin-right: 10px;
  vertical-align: middle;
  border-radius: 5px;
}
.contact_info .box2 .tel{
  display: inline-block;
  font-size: 44px;
  font-weight: bold;
  vertical-align: middle;
  font-weight: bold;
  letter-spacing: 0.2em;
}
.contact_info .box2 .tel a{
  display: block;
}
.contact_info .box2 .txt{
  display: inline-block;
  vertical-align: bottom;
  margin-left: 10px;
}

.contact_form{
  width: 100%;
  border: 1px solid #b2b2b2;
}
.contact_form tr{
  border-bottom: 1px solid #b2b2b2;
}
.contact_form th,
.contact_form td{
  padding: 15px;
  font-weight: normal;
  text-align: left;
}
.contact_form th{
  background: #f0f0f0;
  width: 300px;
}
.contact_form th .require{
  display: inline-block;
  padding: 2px 5px;
  color: #FFF;
  background: #b80000;
  font-size: 14px;
  font-weight: normal;
  float: right;
}
.contact_form dl{
  width: 100%;
  display: flex;
  align-items: center;
}
.contact_form dl + dl{
  margin-top: 10px;
}
.contact_form dl dt,
.contact_form dl dd{

}

.contact_form dl.addr dt{
  width: 90px;
}
.contact_form dl.addr dd{
  width: calc(100% - 90px);
}
.contact_form dl.date {
  align-items: flex-start;
}
.contact_form dl.date dt{
  width: 90px;
}
.contact_form dl.date dt + dt{
  margin-left: 5px;
}
.contact_form dl.date dt select{
  width: 100%;
}
.contact_form dl.date dt.wide{
  width: 200px;
}
.contact_form dl.addr dd{

}


.contact_form td .wpcf7-form-control-wrap{
  display: block;
}
.contact_form td .wpcf7-form-control-wrap + .wpcf7-form-control-wrap {
  margin-top: 5px;
}
.contact_form td .wpcf7-form-control ,
.contact_form td .wpcf7c-conf-hidden {
  padding: 10px;
  max-width: 100%;
  border: 1px solid #CCC;
  border-radius: 0;
}
.contact_form td .wpcf7-checkbox,
.contact_form td .wpcf7-radio{
  border: 0;
}
.contact_form td .wpcf7-text {
  width: 500px;
  max-width: 100%;
}
.contact_form td .wpcf7-textarea {
  width: 100%;
}
.contact_form td .wpcf7-file {
  width: 100%;
  border: 0;
}
.contact_form td .wpcf7-file + .wpcf7c-conf{
  width: 100%;
  border: 1px solid #398f14;
}
.contact_form td [name="zipcode"],
.contact_form td [name="addr1"]{
  width: 150px;
}
.contact_form td [name="addr1"]{
  width: 180px;
}
.contact_form td [name="addr2"]{
}
.contact_form td .wpcf7-form-control-wrap.zipcode{
  display: flex;
  align-items: stretch;
}
.contact_form td .wpcf7-form-control-wrap.zipcode:before{
  vertical-align: top;
  content: "〒";
  background: #CCC;
  width: 30px;
  padding: 0;
  margin: 0;
  border: 1px solid #CCC;
  border-right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.contact_form td .addr_auto{
  background: #f0f0f0;
  border: 1px solid #d6d8d8;
  margin-left: 10px;
  padding: 0 5px;
}

.contact_form td .wpcf7-checkbox,
.contact_form td .wpcf7-radio{
  display: block;
}
.contact_form span.wpcf7-list-item{
  margin: 0 1em 0 0;
}


.contact_form_msg{
  margin-top: 10px;
  margin-bottom: 10px;
}

/* 確認画面用 */
.wpcf7c-conf:not([type="radio"]):not([type="checkbox"]){
  background: #eeffe4;
  -webkit-box-shadow: 0 0 0px 1000px #eeffe4 inset;
  border: 1px solid #398f14;
  opacity: 0.9;
}
.wpcf7c-conf:checked + .wpcf7c-conf-hidden + .wpcf7-list-item-label{
  color: #398f14;
}
/*input:-webkit-autofill,
textarea:-webkit-autofill, 
select:-webkit-autofill {
  background-color: #eeffe4 !important;
  background-image: none !important;
  color: #666 !important;
}*/


.contact_form_acceptance{
  text-align: center;
  margin-top: 20px;
}
.contact_form_acceptance a{
  color: #1a3e9b;
}
.contact_form_acceptance span.wpcf7-list-item{
  margin: 0;
}

/* コンタクトフォーム - ボタン */
.contact_form_btns{
  text-align: center;
  padding: 30px 0;
}
.contact_form_btns input[type="submit"],
.contact_form_btns input[type="button"]{
  background: #b80000;
  color: #FFF;
  border: 0;
  padding: 10px;
  width: 300px;
  margin: 0 10px;
}
.contact_form_btns input[type="submit"][disabled],
.contact_form_btns input[type="button"][disabled]{
  background: #CCC;
}
.contact_form_btns input.wpcf7-confirm{

}
.contact_form_btns input.wpcf7-back{
  background: #CCC;
}
.contact_form_btns input.wpcf7-submit{
  background: #398f14;
}


/* サイトマップ */
.sitemap_items{
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}
.sitemap_items .item{
  width: 25%;
  padding: 0 10px;
  margin-bottom: 20px;
}
.sitemap_items .item h4{
  border: 1px solid #d3d3d3;
  border-bottom: 5px solid #d3d3d3;
}
.sitemap_items .item h4 a{
  display: block;
  padding: 20px 15px;
}
.sitemap_items .item ul{
}
.sitemap_items .item ul li{
  border-bottom: 1px dashed #d3d3d3;
  position: relative;
}
.sitemap_items .item ul li:before{
  content: "\f111";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 10px;
  position: absolute;
  top: 50%;
  left: 5px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.sitemap_items .item ul li a{
  display: block;
  padding: 5px 10px 5px 20px;
}


/* プライバシーポリシー */
.privacy_tt{
  text-align: center;
  margin-bottom: 30px;
}
.privacy_tt h3{
  font-size: 23px;
  font-weight: 500;
  letter-spacing: 0.2em;
}
.privacy_tt br{
  display: none;
}
.privacy_tt .dots{
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.privacy_tt .dots i{
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #c1c1c1;
  margin: 0 8px;
}

.privacy_items{

}
.privacy_items .item{
  line-height: 1.6;
}
.privacy_items .item + .item{
  margin-top: 40px;
}
.privacy_items .item h4{
  font-size: 18px;

  border-left: 6px solid #bbbbbb;
  padding-left: 15px;
  margin-bottom: 10px;
  line-height: 2.33;
}
.privacy_items .item .txt{

}
.privacy_items .item ul{
  list-style: disc;
  margin-left: 2em;
  margin-top: 10px;
}
.privacy_items .item ul.latin{
  list-style: lower-latin;
}

.privacy_items .item ul li{

}
.privacy_items .item ol{
  margin-left: 2em;
  margin-top: 10px;
}


.breadcrumb{
  display: flex;
  list-style: none;
  margin-bottom: 20px;
  font-size: 14px;
  overflow-x: auto;
}
.breadcrumb li{
  display: inline;
  white-space: normal;
}
.breadcrumb li + li{
  margin-left: 10px;
}
.breadcrumb li:last-child{
  font-weight: 500;
}
.breadcrumb li a{
  position: relative;
  padding-right: 15px;
}
.breadcrumb li a:after{
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 12px;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.breadcrumb li:first-child a{
  padding-left: 15px;
}
.breadcrumb li:first-child a:before{
  content: "\f015";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 12px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* **********************************
 *  メイン
 * ********************************* */
.main{
  padding: 0 0 670px;
  background: url(/img/footer/ftr_i1.png) no-repeat right 0 bottom -87px;
}

.tt1{
  font-size: 32px;
  font-weight: bold;
  line-height: 1.4;
}
.tt1 span{
  display: block;
  text-align: center;
  font-size: 14px;
}

.tt2{

}
.tt2 span{

}
.tt3{

}
.tt3 span{

}
.tt4{

}
.tt4 span{

}
.tt5{

}
.tt5 span{

}

/* 詳しく見る サンプル */
.read_more{

}
.read_more a{
  display: block;
  width: 290px;
  max-width: 100%;
  margin: 0 auto;
  padding: 15px 0;
  border-radius: 10px;
  background: #00a7c6;
  color: #FFF;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  position: relative;
}
.read_more a:after{
  /*content: "\f054";*/
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

/* **********************************
 *  Home
 * ********************************* */

.mv{
  position: relative;
  height: 1002px;
  background-image: url('/img/home/mv.jpg?1');
  background-repeat: no-repeat;
  background-position: 70% center;
  background-size: cover;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}
.mv .mv_box{

}
.mv .mv_box .txt{
  padding-bottom: 9px;
}
.mv .mv_box .txt p{
  font-size: 120px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  left: 70px;
  top: 59%;
  z-index: 5;
  transform: translateY(-50%);
  color: #fff;
  text-shadow: 0px 10px 44px rgba(0, 0, 0, 0.3);
  font-weight: 700;
  line-height: 1.33;
}
.mv .mv_box .img{
  width: 81.57%;
  position: absolute;
  right: 48px;
  bottom: -3px;
}

/*株式会社加藤設備事務所について*/
.pg_home .section.sec1{
  padding: 63px 0 15px;
  text-align: center;
  background: #e8ca26;
  position: relative;
  z-index: 0;
}
.pg_home .section.sec1:after{
  content: "";
  width: 1110px;
  height: 100.1%;
  background: #fff;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: -1;
  clip-path: polygon(0 0, 100% 0, 91% 100%, 9% 100%);
}
.about_i1{
  position: absolute;
  width: 1920px;
  max-width: inherit;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  pointer-events: none;
}
.about_i2{
  position: absolute;
  max-width: 1415px;
  width: 100%;
  left: 48.6%;
  transform: translateX(-50%);
  top: 200px;
  pointer-events: none;
}
.home_tt1{
  margin-bottom: 40px;
  text-align: center;
}
.home_tt1 .en{
  font-size: 150px;
  margin-bottom: 10px;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  text-shadow: 2px 2px 0 #e60012,
    -2px 2px 0 #e60012,
    2px -2px 0 #e60012,
    -2px -2px 0 #e60012,
    2px 0px 0 #e60012,
    0px 2px 0 #e60012,
    -2px 0px 0 #e60012,
    0px -2px 0 #e60012;
}
.home_tt1 .ja{
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 0.075em;
  color: #e60012;
}
.about_large {
  font-size: 130px;
  padding-left: 120px;
  margin-bottom: -26px;
  font-weight: 700;
  letter-spacing: 0.025em;
  color: #e60012;
  line-height: 1;
}
.about_large span{
  font-size: 220px;
  margin-right: 5px;
  position: relative;
  top: -30px;
  vertical-align: middle;
}
.about_medium {
  font-size: 35px;
  /*padding-left: 30px;*/
  letter-spacing: -0.01em;
  font-weight: 600;
  line-height: 1.42;
  color: #e60012;
}
.about_text{
  max-width: 950px;
  font-size: 20px;
  /*padding-left: 58px;*/
  margin: 0 auto;
  margin-top: 25px;
  letter-spacing: -0.01em;
  font-weight: 600;
  position: relative;
  line-height: 1.5;
}
img.about_i3 {
  position: absolute;
  left: 12px;
  bottom: 0;
}
.about_list{
  max-width: 1625px;
  margin: 50px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.about_list li span{
  width: 210px;
  height: 210px;
  font-size: 22px;
  font-weight: 500;
  background: #e47226;
  color: #fff;
  border-radius: 50%;
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.075em;
  line-height: 1.363;
}
.about_list li span:after{
  content: "";
  width: 190px;
  height: 190px;
  border: 2px solid #fff;
  position: absolute;
  left: 8px;
  top: 8px;
  pointer-events: none;
  border-radius: 50%;
}
.about_list li:nth-child(even){
  margin-top: 45px;
}
.about_list li + li{
  margin-left: 25px;
}
.about_text .sp{
  display: none;
}

/*社長メッセージ*/
.pg_home .section.sec2{
  padding: 90px 0 234px;
  position: relative;
  z-index: 0;
  background: #f39800;
}
.pg_home .section.sec2:after{
  background: url(/img/home/message_under.jpg?2) no-repeat right center / 1920px auto;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 263px;
  z-index: -1;
  content: "";
}
.home_message {
  display: flex;
}
.home_tt2{
  color: #fff;
  line-height: 1;
}
.home_tt2 .ja{
  font-size: 30px;
  margin-bottom: 10px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.home_tt2 .en{
  font-size: 140px;
  margin-left: -5px;
  font-weight: 600;
}
.home_tt2 .en:first-letter{
  color: #eb4200;
}
.message_catch{
  font-size: 28px;
  margin-top: 18px;
  margin-bottom: 30px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
}
.home_message .img{
  padding-top: 52px;
  margin-right: -206px;
}
.home_message .img img{
  max-width: inherit;
  width: 995px;
}
.home_message .txt{
  padding-right: 20px;
}
.message_text{
  font-size: 18px;
  line-height: 1.66;
  letter-spacing: -0.01em;
  text-align: justify;
}
.message_text p + p{
  margin-top: 32px;
}
.message_catch .sp{
  display: none;
}

/*魅力*/
.pg_home .section.sec3{
  background: url(/img/home/feature_bg1.jpg) no-repeat right top;
  position: relative;
  z-index: 1;
}
#feature,
#interview{
  position: relative;
  top: -150px;
}
.home_tt2.orange{
  color: #f39800;
}
.pg_home .section.sec3 .home_tt2{
  position: relative;
  top: -45px;
}
.home_feature {
  margin-top: 25px;
}
.home_feature .item .in{
  clip-path: polygon(0 0, 100% 17%, 100% 83%, 0 100%);
  display: flex;
  position: relative;
}
.home_feature .img{
  width: 50.5%;
  position: relative;
  z-index: 0;
}
.home_feature .no1 .img{
  margin-bottom: 107px;
}
.home_feature .img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  bottom: 0;
}
.home_feature .txt {
  width: 49.5%;
  min-height: 1170px;
  position: relative;
  z-index: 1;
  background-image: -moz-linear-gradient( 0deg, rgb(243,152,0) 0%, rgb(243,177,0) 100%);
  background-image: -webkit-linear-gradient( 0deg, rgb(243,152,0) 0%, rgb(243,177,0) 100%);
  background-image: -ms-linear-gradient( 0deg, rgb(243,152,0) 0%, rgb(243,177,0) 100%);
}
.home_feature .txt .inner{
  margin: 184px 175px;
  position: relative;
  z-index: 0;
}
.home_feature .txt .inner:before{
  content: "";
  width: 293px;
  height: 293px;
  background: url(/img/home/feature_i1.png) no-repeat center / contain;
  position: absolute;
  left: -53px;
  top: 88px;
  z-index: -1;
}
.home_feature .num{
  font-size: 180px;
  margin-left: -8px;
  color: #fff;
  line-height: 1;
}
.home_feature .en{
  margin-top: -10px;
  margin-left: -32px;
}
.home_feature .ttl {
  font-size: 40px;
  padding: 10px 40px;
  margin: 50px 0 25px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #e63c00;
  line-height: 1.5;
  background: #fff;
  display: inline-block;
  text-align: center;
}
.home_feature .text{
  font-size: 18px;
  line-height: 1.66;
  color: #fff;
  letter-spacing: -0.01em;
  text-align: justify;
}
img.feature_i2 {
  position: absolute;
  left: 3px;
  bottom: 192px;
}
.home_feature .no1 .in:before{
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60%;
  max-width: 980px;
  height: 315px;
  background: url(/img/home/feature_i5.png) no-repeat right center / auto 100%;
  content: "";
  z-index: 5;
}
.home_feature .item.no2{
  margin-top: -210px;
  position: relative;
}
.home_feature .item.no2 .in{
  clip-path: polygon(0 17.5%, 100% 0, 100% 100%, 0 100%);
}
.home_feature .no2 .in:before{
  position: absolute;
  right: 0;
  bottom: -27px;
  max-width: 1040px;
  width: 60%;
  height: 305px;
  background: url(/img/home/feature_i6.png) no-repeat center / auto 100%;
  content: "";
  z-index: 5;
}
.home_feature .no2 .txt {
  width: 50.5%;
  min-height: 1190px;
  order: 1;
  background-image: -moz-linear-gradient( 0deg, rgb(243,177,0) 0%, rgb(243,152,0) 100%);
  background-image: -webkit-linear-gradient( 0deg, rgb(243,177,0) 0%, rgb(243,152,0) 100%);
  background-image: -ms-linear-gradient( 0deg, rgb(243,177,0) 0%, rgb(243,152,0) 100%);
}
.home_feature .no2 .img {
  width: 49.5%;
  order: 2;
  margin-bottom: 27px;
}
/*.home_feature .no2 .img img{
  height: auto;
  bottom: inherit;
  top: 0;
}*/
.home_feature .no2 .txt .inner{
  margin: 242px 170px 0 212px;
}
.home_feature .no2 .txt .inner:before {
  left: -136px;
  top: 35px;
}
.home_feature .no2 .en{
  margin-left: -18px;
  margin-top: -2px;
}
img.feature_i3 {
  width: auto;
  height: auto;
  position: absolute;
  left: 45px;
  bottom: -40px;
  z-index: 1;
}
img.feature_i3.sp{
  display: none;
}
.home_feature .item.no3{
  margin-top: -185px;
}
.home_feature .item.no3 .in {
  clip-path: polygon(0 0, 100% 17%, 100% 100%, 0 82.5%);
}
.home_feature .no3 .txt{
  min-height: 1160px;
}
.home_feature .no3 .txt .inner {
  margin: 178px;
}
.home_feature .no3 .txt .inner:before{
  left: -180px;
  top: 48px;
}
.home_feature .no3 .img{
  margin-bottom: 105px;
}
.home_feature .no3 .num {
  margin-left: -18px;
}
.home_feature .no3 .en {
  margin-top: -6px;
  margin-left: -36px;
}
img.feature_i4 {
  position: absolute;
  left: -94px;
  bottom: 85px;
  z-index: 1;
}

/*インタビュー*/
.pg_home .section.sec4{
  margin-top: -60px;
}
.home_interview {
  margin-top: 75px;
}
.home_interview .flex {
  margin-bottom: 64px;
  background: #f36d00;
  display: flex;
  clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
}
.home_interview .flex .txt {
  width: 53.2%;
  padding: 168px 0;
  padding-left: 208px;
  position: relative;
  z-index: 0;
}
.home_interview .no2 .flex .txt{
  padding-top: 158px;
}
.home_interview .flex .txt:before{
  content: "";
  width: 512px;
  height: 114px;
  background: url(/img/home/interview_i2.png) no-repeat right center / contain;
  position: absolute;
  right: -230px;
  top: 70px;
  z-index: 1;
}
.home_interview .flex .txt:after{
  content: "";
  width: 512px;
  height: 114px;
  background: url(/img/home/interview_i2.png) no-repeat left center / contain;
  position: absolute;
  left: -18px;
  bottom: 50px;
  z-index: 1;
}
.home_interview .flex .img{
  width: 46.8%;
  position: relative;
}
.home_interview .flex .img img{
  width: 100%;
  height: 100%;
  max-height: 818px;
  object-fit: cover;
}
.home_interview .ttl{
  font-size: 35px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
}
.home_interview .catch{
  font-size: 25px;
  margin: 18px 0 70px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
  line-height: 1.6;
}
.home_interview .text{
  font-size: 18px;
  line-height: 1.666;
  letter-spacing: -0.01em;
  text-align: justify;
}
.interview_i1{
  position: absolute;
  right: 18%;
  bottom: 72px;
  z-index: 1;
}
.home_interview .episode{
  margin: 0 44px;
}
.home_interview .episode + dl{
  margin-top: 74px;
}
.home_interview .episode dt{
  font-size: 25px;
  margin-bottom: 10px;
  color: #f39800;
  border-bottom: 3px solid #efd9b5;
  font-weight: 700;
  font-family: heisei-kaku-gothic-std, sans-serif;
  letter-spacing: -0.01em;
}
.home_interview .episode dd{
  font-size: 18px;
  padding-right: 60px;
  letter-spacing: -0.01em;
  line-height: 1.66;
  text-align: justify;
}
.home_interview .item + .item{
  margin-top: 110px;
}
.home_interview .item:nth-child(even) .flex {
  margin-bottom: 50px;
  clip-path: polygon(0 0%, 100% 8%, 100% 100%, 0 92%);
}
.home_interview .item:nth-child(even) .flex .txt:before{
  right: inherit;
  left: -43%;
  top: 40px;
}
.home_interview .item:nth-child(even) .flex .txt:after{
  left: inherit;
  right: 4px;
  bottom: 73px;
}
.interview_i3 {
  position: absolute;
  right: 15.5%;
  bottom: 40px;
  z-index: 3;
}

/*職種紹介*/
.pg_home .section.sec5{
  padding: 200px 0 0;
}
.home_desc{
  margin-top: -70px;
}
.home_desc .img{
  width: 49.8%;
  margin-top: -12px;
}
.home_desc .item {
  position: relative;
}
.home_desc .item:before{
  content: "";
  width: 100%;
  height: 244px;
  background: #f3ce00;
  display: block;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  margin-bottom: -1px;
}
.home_desc .item .flex {
  padding: 65px 50px 130px;
  display: flex;
  background: #f3ce00;
  box-shadow: 0 5px 15px #CCC;
}
.home_desc .txt {
  width: 50.2%;
  padding-left: 155px;
  padding-right: 55px;
  position: relative;
}
.home_desc .ttl{
  font-size: 30px;
  margin-bottom: 30px;
  padding-bottom: 10px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
  border-bottom: 3px solid;
}
.home_desc .ttl span{
  font-size: 25px;
  padding-left: 28px;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.home_desc .catch{
  font-size: 25px;
  margin-bottom: 30px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
}
.home_desc .text{
  max-width: 600px;
  font-size: 18px;
  letter-spacing: -0.01em;
  line-height: 1.66;
  text-align: justify;
}
.home_desc .job{
  max-width: 609px;
  margin-top: 80px;
  padding: 10px 18px 17px;
  background: #fff;
}
.home_desc .job .tt{
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #f39800;
}
.home_desc .job .text{
  padding: 0 10px;
}
.home_desc .item + .item{
  margin-top: 150px;
}
.home_desc .item:nth-child(even) .flex{
  padding: 15px 78px 120px;
}
.home_desc .item:nth-child(even):before{
  clip-path: polygon(0 0, 0 100%, 100% 100%);
}
.home_desc .item:nth-child(even) .txt{
  padding-left: 180px;
  padding-right: 0;
}
.home_desc .item:nth-child(even) .img{
  margin-left: 10px;
}
.desc_i1{
  position: absolute;
  left: -22px;
  bottom: -140px;
}
.desc_i2 {
  position: absolute;
  right: 19.8%;
  bottom: -310px;
}
.desc_bg1 {
  position: absolute;
  right: 0;
  bottom: -487px;
  z-index: -1;
}

/*よくある質問*/
.pg_home .section.sec6{
  padding: 120px 0 0;
  background: url(/img/home/faq_bg1.png) no-repeat right -4px top -135px;
}
.home_faq{
  max-width: 1355px;
  margin: 100px auto 0;
}
.home_faq dl{
  border: 2px solid #f39800;
}
.home_faq dl + dl{
  margin-top: 23px;
}
.home_faq dt{
  font-size: 20px;
  padding: 32px 64px;
  background: #f39800;
  color: #fff;
  position: relative;
  letter-spacing: -0.01em;
  font-weight: 700;
  font-family: heisei-kaku-gothic-std, sans-serif;
  cursor: pointer;
}
.home_faq dt:hover{
  color: #f3de01;
}
.home_faq dt:after{
  content: "";
  width: 45px;
  height: 45px;
  background: url(/img/home/faq_i1.svg?1) no-repeat center / contain;
  position: absolute;
  right: 67px;
  top: 22px;
}
.home_faq dt.on:after{
  content: "";
  width: 45px;
  height: 2px;
  background: url(/img/home/faq_i2.svg) no-repeat center / contain;
  position: absolute;
  right: 67px;
  top: 44px;
}
.home_faq dd{
  font-size: 18px;
  padding: 30px 60px;
  line-height: 1.66;
  display: none;
  text-align: justify;
}

.pg_home .section.sec7{
  padding-top: 200px;
}
.home_require {
  max-width: 1350px;
  margin: 100px auto 0;
}
.home_require .ttl{
  font-size: 25px;
  padding: 19px 40px;
  margin-bottom: 45px;
  background: #ebcd29;
  color: #fff;
  letter-spacing: -0.01em;
}
.home_require .img{
  padding: 0 15px;
  text-align: center;
}

.tbl{
  margin-top: 50px;
  border: 1px solid #e2e883;
  position: relative;
  z-index: 0;
}
.tbl:after{
  content: "";
  width: calc(100% + 132px);
  height: calc(100% + 100px);
  position: absolute;
  left: -66px;
  top: -50px;
  z-index: -1;
  background: #fff;
}
.tbl th,
.tbl td{
  font-size: 22px;
  padding: 22px 15px;
  border: 2px solid #ebcd29;
}
.tbl th{
  width: 480px;
  padding-left: 30px;
  border-bottom-color: #fff;
  background: #ebcd29;
  text-align: left;
  font-weight: 400;
  letter-spacing: 0.075em;
  color: #fff;
  vertical-align: top;
}
.tbl tr:last-of-type th{
  border-bottom: #ebcd29;
}
.tbl td{
  font-weight: 500;
  background: #fff;
}
.home_require .item{
  position: relative;
  z-index: 0;
}
.home_require .item:before{
  content: "";
  width: 378px;
  height: 378px;
  background: url(/img/home/require_i1.png) no-repeat center / contain;
  position: absolute;
  right: -154px;
  top: -26px;
  z-index: -1;
}
.home_require .item:after{
  content: "";
  width: 378px;
  height: 378px;
  background: url(/img/home/require_i1.png) no-repeat center / contain;
  position: absolute;
  left: -157px;
  top: 26%;
  z-index: -1;
}
.home_require .item + .item{
  margin-top: 128px;
}
.home_require .no2 .ttl,
.home_require .no2 .tbl th{
  background: #f39800;
}
.home_require .no2 .tbl,
.home_require .no2 .tbl th,
.home_require .no2 .tbl td{
  border-color: #f39800;
}
.home_require .no2 .tbl th{
  border-bottom-color: #fff;
}
.home_require .no2 .tbl tr:last-of-type th{
  border-bottom-color: #f39800;
}
.home_require .item.no2:before{
  top: -66px;
}

@media(max-width:1725px){
  .mv {
    height: 57.8vw;
  }
  .about_list li span{
    width: 180px;
    height: 180px;
  }
  .about_list li span:after{
    width: 160px;
    height: 160px;
  }

  .home_message .img {
    margin-right: -150px;
  }

  .home_feature .item .in {
    clip-path: polygon(0 0, 100% 20%, 100% 100%, 0 100%);
  }
  .home_feature .txt .inner {
    margin: 200px 130px;
  }
  img.feature_i2{
    width: 150px;
  }
  img.feature_i3{
    width: 200px;
  }
  .home_feature .ttl {
    font-size: 34px;
    padding: 10px 30px
  }
  .home_feature .item.no2 {
    margin-top: -201px;
  }
  .home_feature .item.no2 .in {
    clip-path: polygon(0 16.9%, 100% 0, 100% 100%, 0 100%);
  }
  .home_feature .no2 .txt .inner{
    margin: 242px 100px 0 162px;
  }
  img.feature_i4{
    width: 220px;
  }
  .home_feature .item.no3{
    margin-top: -200px;
  }
  .home_feature .no1 .in:before{
    bottom: -15px;
  }
  .home_feature .no1 .img {
    margin-bottom: 0;
  }

  .home_interview .flex .txt {
    padding-left: 100px;
  }
  .home_interview .flex .txt:before,
  .home_interview .flex .txt:after{
    width: 382px;
    height: 84px;
  }

  .home_desc .item:nth-child(even) .txt {
    padding-left: 150px;
  }
  .desc_i1 {
    width: 140px;
  }
}
@media(max-width:1420px){
  .mv .mv_box .txt p {
    font-size: 90px;
  }

  .about_list{
    max-width: 800px;
  }
  .about_list li:nth-child(1){
    margin-left: 100px;
  }
  .about_list li:nth-child(3){
    margin-right: 100px;
  }
  .about_list li:nth-child(4){
    margin-left: 0;
  }
  .about_list li:nth-child(n+4) {
    margin-top: 0;
  }
  .about_list li:nth-child(5),
  .about_list li:nth-child(6){
    margin-top: 20px;
  }

  .home_message .txt{
    width: 50%;
  }
  .home_message .img {
    width: 50%;
    margin-right: 0;
    position: relative;
    right: -15px;
  }
  .home_message .img img {
    max-width: inherit;
    width: 100%;
  }
  .message_catch {
    font-size: 26px;
  }

  .home_feature .txt .inner,
  .home_feature .no3 .txt .inner {
    margin: 150px 80px 180px;
    margin-right: 40px;
  }
  img.feature_i2{
    width: 100px;
  }
  img.feature_i3{
    width: 150px;
  }
  .home_feature .no2 .txt .inner {
    margin: 242px 70px 0 102px;
  }
  .home_feature .ttl {
    font-size: 30px;
  }
  .home_feature .num {
    font-size: 150px;
  }
  .home_feature .en img{
    width: 200px;
  }
  .home_feature .txt .inner:before {
    width: 233px;
    height: 233px;
  }
  .home_feature .no1 .in:before{
    bottom: -31px;
  }

  .interview_i1 {
    width: 100px;
    right: 8%;
  }
  .interview_i3 {
    width: 100px;
    right: 8%;
  }

  .home_desc .item:nth-child(even) .txt {
    padding-left: 70px;
  }
  .desc_i1 {
    left: -90px;
  }
}
@media(max-width:1199px){
  .mv .mv_box .txt p {
    font-size: 8vw;
  }

  .pg_home .section.sec1:after {
    max-width: 1110px;
    width: 90%;
  }

  .home_tt2 .ja {
    font-size: 26px;
  }
  .home_tt2 .en {
    font-size: 110px;
  }
  .message_catch {
    font-size: 21px;
  }
  .message_text {
    font-size: 17px;
  }

  .pg_home .section.sec3{
    background-size: 120% auto;
  }
  .home_feature .txt {
    min-height: inherit;
  }
  .home_feature .ttl {
    font-size: 24px;
    padding: 10px 30px;
  }
  .home_feature .item.no2 {
    margin-top: -191px;
  }
  .home_feature .no2 .txt,
  .home_feature .no3 .txt{
    min-height: inherit;
  }
  .home_feature .no2 .txt .inner {
    margin: 200px 70px 250px 92px;
  }
  .home_feature .no3 .txt .inner {
    margin: 150px 100px;
  }
  img.feature_i3{
    bottom: 0;
  }
  img.feature_i4 {
    width: 200px;
  }

  .home_interview .flex .txt {
    padding-left: 50px;
  }
  .home_interview .text {
    font-size: 16px;
  }
  .interview_i1 {
    width: 70px;
  }
  .home_interview .episode + dl {
    margin-top: 50px;
  }
  .home_interview .episode dd{
    font-size: 16px;
    padding-right: 15px;
  }
  .interview_i3 {
    width: 70px;
    right: 5%;
  }

  .home_desc .txt {
    padding-left: 30px;
  }
  .home_desc .catch{
    font-size: 23px;
  }

  .pg_home .section.sec6{
    background-size: 1000px auto;
    background-position: right top -90px;
  }

  .tbl th {
    width: 300px;
  }
}
@media(max-width:1023px){
  .mv {
    height: 69vw;
  }
  .about_list li span{
    width: 150px;
    height: 150px;
    font-size: 18px;
  }
  .about_list li span:after{
    width: 130px;
    height: 130px;
  }
  .home_feature .no1 .in:before {
    bottom: -41px;
  }

}
@media(max-width:770px){
  .main{
    padding: 0 0 500px;
    background: url(/img/footer/ftr_i1_sp.png) no-repeat right bottom -170px / 100% auto;
  }

  .mv {
    padding-top: 76px;
    height: 156vw;
    align-items: flex-start;
    background-image: url(/img/home/mv_sp.jpg?1);
  }
  .mv .mv_box .txt img{
    width: 85%;
  }
  .mv .mv_box .txt p {
    font-size: 11.8vw;
    left: 10px;
    top: 72%;
  }
  .mv .mv_box .img {
    width: 100%;
    right: 0;
    bottom: 5px;
  }

  .home_tt1 .en {
    font-size: 70px;
    text-shadow: 1px 1px 0 #e60012,
      -1px 1px 0 #e60012,
      1px -1px 0 #e60012,
      -1px -1px 0 #e60012,
      1px 0px 0 #e60012,
      0px 1px 0 #e60012,
      -1px 0px 0 #e60012,
      0px -1px 0 #e60012;
  }
  .home_tt1 .ja {
    font-size: 14px;
  }

  .about_large {
    font-size: 40px;
    padding-left: 50px;
    margin-bottom: -10px;
  }
  .about_large span {
    font-size: 100px;
    top: -15px;
  }
  .about_medium {
    font-size: 22px;
  }
  .about_text{
    font-size: 14px;
  }
  img.about_i3 {
    width: 100px;
    left: 60px;
  }
  .about_text .sp{
    display: block;
  }
  .about_list{
    max-width: 335px;
  }
  .about_list li span {
    width: 80px;
    height: 80px;
    font-size: 10px;
  }
  .about_list li span:after {
    width: 70px;
    height: 70px;
    left: 4px;
    top: 4px;
    border-width: 1px;
  }
  .about_list li + li {
    margin-left: 5px;
  }
  .about_list li:nth-child(1){
    margin-left: 30px;
  }
  .about_list li:nth-child(3){
    margin-right: 30px;
  }

  .pg_home .section.sec2 {
    padding: 50px 0 234px;
  }
  .pg_home .section.sec2:before{
    width: 327px;
    height: 149px;
    background: url(/img/home/message_i1.png?1) no-repeat center / contain;
    position: absolute;
    left: 0;
    bottom: 60px;
    content: "";
  }
  .home_tt2 .ja {
    font-size: 22px;
  }
  .home_tt2 .en {
    font-size: 80px;
  }
  .home_message{
    /*padding: 0 15px;*/
    flex-direction: column;
  }
  .home_message .txt,
  .home_message .img {
    width: 100%;
  }
  .home_message .txt{
    display: contents;
  }
  .home_message .home_tt2{
    order: 1;
  }
  .home_message .img{
    margin-top: -15px;
    padding-top: 0;
    right: 0;
    width: calc(100% + 15px);
    margin-bottom: 20px;
    order: 2;
  }
  .message_catch{
    font-size: 18px;
    margin-bottom: 20px;
    order: 3;
  }
  .message_text{
    font-size: 14px;
    order: 4;
  }

  .pg_home .section.sec3 .home_tt2 {
    top: -30px;
  }
  .home_feature .item .in{
    display: block;
    clip-path: polygon(0 0, 100% 12%, 100% 100%, 0 100%);
  }
  .home_feature .img,
  .home_feature .txt,
  .home_feature .no2 .img,
  .home_feature .no2 .txt{
    width: 100%;
  }
  .home_feature .img {
    clip-path: polygon(0 0, 100% 20%, 100% 100%, 0 83%);
  }
  .home_feature .img img{
    position: inherit;
  }
  .home_feature .txt .inner,
  .home_feature .no2 .txt .inner{
    margin: -80px 50px 0;
  }
  .home_feature .txt .inner:before {
    width: 283px;
    height: 283px;
    left: -45px;
    top: -50px;
  }
  .home_feature .ttl{
    margin-top: 0;
  }
  .home_feature .text {
    font-size: 16px;
  }
  img.feature_i2 {
    left: inherit;
    bottom: inherit;
    right: 20%;
    top: -85px;
  }
  .home_feature .item.no1 .in{
    padding-bottom: 40px;
  }
  .home_feature .no1 .txt{
    margin-top: 85px;
  }
  .home_feature .item.no2 {
    margin-top: 0;
  }
  .home_feature .item.no2 .in{
    clip-path: none;
  }
  .home_feature .no2 .img img {
    margin-top: 0;
  }
  .home_feature .no2 .img {
    clip-path: polygon(0 0, 100% 0, 100% 87%, 0 100%);
  }
  .home_feature .no2 .txt .inner {
    margin-top: 0;
    margin-bottom: 0;
  }
  .home_feature .item .in,
  .home_feature .txt{
    background-image: -webkit-linear-gradient(0deg, rgb(243, 177, 0) 0%, rgb(243, 152, 0) 100%);
  }
  img.feature_i3 {
    width: 150px;
    left: inherit;
    bottom: inherit;
    right: 10%;
    top: -150px;
  }
  img.feature_i3.sp{
    display: block;
  }
  img.feature_i3.pc{
    display: none;
  }
  .home_feature .item.no3 {
    margin-top: 0;
  }
  .home_feature .item.no3 .in{
    padding-bottom: 130px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 95%);
  }
  .home_feature .no3 .img {
    margin-bottom: 0;
    clip-path: none;
  }
  .home_feature .no3 .txt .inner {
    margin: 0 50px;
  }
  img.feature_i4 {
    width: 150px;
    left: inherit;
    bottom: inherit;
    right: 12%;
    top: -70px;
  }
  .home_feature .no1 .in:before,
  .home_feature .no2 .in:before{
    display: none;
  }

  .pg_home .section.sec4 {
    margin-top: 0;
  }
  .home_interview {
    margin-top: 20px;
  }
  .home_interview .flex{
    flex-direction: column;
    clip-path: polygon(0 6%, 100% 0, 100% 94%, 0 100%);
  }
  .home_interview .flex .txt{
    width: 100%;
    padding: 90px 50px 180px;
    order: 2;
  }
  .home_interview .flex .img{
    width: 100%;
    order: 1;
    clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
  }
  .home_interview .flex .txt:before,
  .home_interview .flex .txt:after{
    width: 60%;
  }
  .home_interview .flex .txt:before {
    right: 5px;
    top: 10px;
  }
  .home_interview .flex .txt:after {
    left: 5px;
    bottom: 50px;
  }
  .interview_i1,
  .interview_i3{
    width: 90px;
    right: 15%;
    bottom: 180px;
  }
  .home_interview .ttl {
    font-size: 26px;
  }
  .home_interview .catch {
    font-size: 21px;
    margin: 10px 0 30px;
  }

  .home_interview .flex {
    margin-bottom: 50px;
  }
  .home_interview .episode {
    margin: 0;
  }
  .home_interview .episode dt {
    font-size: 20px;
  }
  .home_interview .episode + dl {
    margin-top: 35px;
  }
  .home_interview .item:nth-child(even) .flex .txt{
    padding-left: 70px;
    padding-bottom: 230px;
  }
  .home_interview .item:nth-child(even) .flex .txt:before {
    right: 0;
    left: inherit;
    top: 0;
  }
  .home_interview .item:nth-child(even) .flex .txt:after {
    left: 20px;
    right: inherit;
    bottom: 120px;
  }
  .home_interview .item:nth-child(even) .flex .img{
    clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 90%);
  }

  .pg_home .section.sec5 {
    padding: 80px 0 0;
  }
  .home_desc {
    margin-top: -50px;
  }
  .home_desc .item:before {
    height: 164px;
  }
  .home_desc .flex{
    flex-wrap: wrap;
  }
  .home_desc .img {
    width: calc(100% + 15px);
    margin-bottom: 40px;
    margin-right: -15px;
    order: 1;
  }
  .home_desc .img img{
    width: 100%;
  }
  .home_desc .txt {
    width: 100%;
    padding-right: 0;
    padding-left: 30px;
    order: 2;
  }
  .home_desc .text {
    font-size: 16px;
  }
  .home_desc .item:nth-child(even) .flex {
    padding: 60px 50px;
  }
  .home_desc .item:nth-child(even) .txt {
    padding-left: 30px;
  }
  .home_desc .item:nth-child(even) .img{
    margin-right: 0;
    margin-left: -15px;
  }
  .desc_i1 {
    width: 100px;
    left: -30px;
    bottom: -170px;
  }
  .desc_i2 {
    width: 200px;
    position: absolute;
    right: 15px;
    bottom: -210px;
  }
  .desc_bg1 {
    right: -50px;
    bottom: -580px;
    width: 1634px;
    max-width: inherit;
  }

  .home_faq dt,
  .home_faq dd{
    padding: 25px 40px;
  }
  .home_faq dt:after {
    width: 35px;
    height: 35px;
  }
  .home_faq dt.on:after {
    width: 35px;
    top: 38px;
  }
  .home_faq dd{
    font-size: 16px;
  }
  .home_faq{
    margin-top: 70px;
  }

  .tbl th {
    width: 200px;
  }
}
@media(max-width:600px){
  .main{
    padding: 0 0 55vw;
    background-position: right bottom -25vw;
  }
  .container{
    padding: 0 30px;
  }
  .pg_home .section.sec1 {
    padding: 30px 0 15px;
  }
  .pg_home .section.sec1:after {
    max-width: 1110px;
    width: 100%;
    clip-path: polygon(0 0, 100% 0, 88% 100%, 12% 100%);
  }
  .about_i1 {
    width: 155vw;
  }
  img.about_i3 {
    width: 70px;
    left: 0;
    bottom: 130%;
  }
  .about_medium {
    font-size: 20px;
  }
  .about_text {
    font-size: 12px;
    margin-top: 15px;
  }
  .about_list{
    margin-top: 20px;
  }
  .about_list li:nth-child(2) {
    margin-top: 10px;
  }
  .about_list li:nth-child(5),
  .about_list li:nth-child(6) {
    margin-top: 10px;
  }
  .about_i2 {
    top: 78px;
  }
  .home_tt2 .ja {
    font-size: 18px;
  }
  .home_tt2 .en {
    font-size: 54px;
  }

  .message_catch .sp{
    display: block;
  }

  .pg_home .section.sec3 {
    background: url(/img/home/feature_bg1_sp.jpg) no-repeat right top / 90% auto;
  }
  .pg_home .section.sec3 .home_tt2 {
    top: 0;
    margin-bottom: 30px;
  }
  .home_feature {
    margin-top: -25px;
  }
  .home_feature .num {
    font-size: 100px;
  }
  .home_feature .en img {
    width: 140px;
  }
  .home_feature .txt .inner{
    margin: -20px 30px 0;
  }
  .home_feature .no2 .txt .inner{
    margin: 0 30px 0;
  }
  img.feature_i2 {
    width: 70px;
    top: -65px;
    right: 15%;
  }
  .home_feature .txt .inner:before {
    width: 213px;
    height: 213px;
    top: -65px;
  }
  .home_feature .ttl {
    font-size: 18px;
    padding: 10px 20px;
  }
  .home_feature .text {
    font-size: 14px;
  }
  img.feature_i3 {
    width: 100px;
    top: -100px;
  }
  .home_feature .no1 .txt {
    margin-top: 25px;
  }
  .home_feature .no3 .txt .inner {
    margin: 20px 30px;
  }
  .home_feature .item.no3 .in{
    padding-bottom: 50px;
  }
  img.feature_i4 {
    width: 100px;
    right: 12%;
    top: -70px;
  }

  .pg_home .section.sec4{
    margin-top: 20px;
  }
  .home_interview .flex {
    clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
  }
  .home_interview .flex .txt {
    padding: 90px 30px 110px;
  }
  /*.interview_i1{
    width: 60px;
    right: 10%;
    bottom: inherit;
    top: 30px;
  }*/
  .interview_i1,
  .interview_i3{
    /*padding-top: 70px;*/
    width: 60px;
    right: 10%;
    bottom: 130px;
  }
  .home_interview .flex .txt:after {
    bottom: 20px;
  }
  .home_interview .flex .txt:before {
    right: 5px;
    top: -10px;
  }
  .home_interview .flex .txt,
  .home_interview .item:nth-child(even) .flex .txt {
    padding-top: 70px;
    padding-left: 40px;
    padding-bottom: 130px;
  }
  .home_interview .flex .txt:after,
  .home_interview .item:nth-child(even) .flex .txt:after {
    left: 10px;
    bottom: 32px;
  }
  .home_interview .item:nth-child(even) .flex{
    margin-bottom: 30px;
    clip-path: polygon(0 0%, 100% 6%, 100% 100%, 0 94%);
  }
  .home_interview .item + .item {
    margin-top: 50px;
  }
  .home_interview .text {
    width: 68%;
    font-size: 14px;
  }
  .home_interview .episode dd {
    font-size: 14px;
  }

  .home_desc {
    margin-top: 0;
  }
  .home_desc .item:before {
    height: 84px;
  }
  .home_desc .item .flex,
  .home_desc .item:nth-child(even) .flex{
    padding: 40px 30px 50px;
  }
  .home_desc .txt,
  .home_desc .item:nth-child(even) .txt{
    padding: 0 5px;
  }
  .home_desc .ttl {
    font-size: 24px;
  }
  .home_desc .ttl span {
    font-size: 20px;
  }
  .home_desc .catch {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .home_desc .text {
    font-size: 14px;
  }
  .home_desc .job {
    margin-top: 30px;
  }
  .home_desc .job .tt {
    font-size: 18px;
  }
  .home_desc .img {
    margin-right: -10px;
  }
  .desc_i1 {
    width: 108px;
    left: -18px;
    bottom: -198px;
  }
  .desc_i2 {
    width: 130px;
    bottom: -140px;
  }
  .desc_bg1 {
    right: 0px;
    bottom: -380px;
    width: 1000px;
  }

  .pg_home .section.sec6 {
    padding-top: 200px;
    background-size: 115% auto;
    background-image: url(/img/home/faq_bg1_sp.png);
    background-position: left -50px top -20px;
  }
  .home_faq dl + dl {
    margin-top: 15px;
  }
  .home_faq dt,
  .home_faq dd{
    padding: 15px 20px;
  }
  .home_faq dt{
    font-size: 14px;
    padding-right: 30px;
  }
  .home_faq dt:after {
    width: 25px;
    height: 25px;
    right: 10px;
    top: 14px;
    background-image: url(/img/home/faq_i1_sp.svg);
  }
  .home_faq dt.on:after {
    width: 25px;
    top: 25px;
    right: 10px;
    background-image: url(/img/home/faq_i2_sp.svg);
  }
  .home_faq dd{
    font-size: 14px;
  }
  .home_faq {
    margin-top: 50px;
  }

  .pg_home .section.sec7 {
    padding-top: 100px;
  }
  .home_require{
    margin-top: 60px;
  }
  .home_require .ttl {
    font-size: 18px;
    padding: 15px 20px;
    margin-bottom: 30px;
  }
  .home_require .img {
    padding: 0;
  }
  .tbl {
    margin-top: 20px;
  }
  .tbl:after{
    display: none;
  }
  .tbl th,
  .tbl td{
    font-size: 14px;
    padding: 15px;
    display: block;
    width: 100%;
  }
  .no1 .tbl th{
    border-bottom-color: #ebcd29;
  }
  .home_require .item:before {
    width: 208px;
    height: 208px;
    right: -30px;
    top: 46px;
  }
  .home_require .item:after {
    width: 208px;
    height: 208px;
    left: -30px;
    top: 22.5%;
  }
  .home_require .item + .item {
    margin-top: 50px;
  }
  .home_require .no2 .tbl tr th{
    border-bottom-color: #f39800;
  }
  .home_require .item.no2:before {
    top: 20px;
  }

}