@charset "UTF-8";

/* ******************************
   変数設定など
   ****************************** */
:root {

  /* カラー(ボタン背景色など) */
  --main-color: #eee31a;
  --sub-color: #183663;
  --txt-color: #181818;
  --bdr-color: #b5b5b5;

  /* フォント関連 */
  --font-ja: "Noto Sans JP", sans-serif;
  /*--font-en: "Outfit",'Noto Sans JP', sans-serif;*/
  --font-en: "Oswald", 'Noto Sans JP',sans-serif;
  --font-mincho: 'Shippori Mincho B1', serif;
}


/* ******************************
   全体設定
   ****************************** */
body{
  font-family:  'Noto Sans JP', "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.075em;
  color: var(--txt-color);

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#root{
  overflow: hidden;
}


/* ******************************
   コンテナ設定＋画面端までの距離
   ****************************** */
:root {

  /* 画面端までの距離（通常） */
  --margin-for-device-side: -15px;

  /* 画面端までの距離（ワイド） */
  --margin-for-device-side-w: -15px;

}
@media (min-width:768px){
  :root {
    --margin-for-device-side: calc(345px - 50vw);
    --margin-for-device-side-w: calc(345px - 50vw);
  }
}
@media (min-width:992px){
  :root {
    --margin-for-device-side: calc(465px - 50vw);
    --margin-for-device-side-w: calc(465px - 50vw);
  }
}
@media (min-width:1200px){
  :root {
    --margin-for-device-side: calc(555px - 50vw);
    --margin-for-device-side-w: calc(555px - 50vw);
  }
}
@media (min-width:1366px){

  /* コンテナサイズ:1286px */
  .container.wide{
    max-width: calc(1286px + 80px);
    padding-left: 40px;
    padding-right: 40px;
  }

  :root {
    --margin-for-device-side-w: calc(643px - 50vw);
  }

}
@media (min-width:1470px){

  /* コンテナサイズ:1370px */
  .container.wide{
    max-width: calc(1370px + 100px);
    padding-left: 50px;
    padding-right: 50px;
  }
  :root {
    --margin-for-device-side-w: calc(685px - 50vw);
  }

}
@media (min-width:1720px){

  /* コンテナサイズ:1520px */
  .container.wide{
    max-width: calc(1520px + 200px);
    padding-left: 100px;
    padding-right: 100px;
  }
  :root {
    --margin-for-device-side-w: calc(760px - 50vw);
  }
}


/* ******************************
   
   ****************************** */

/* 管理画面の余白調整 */
.gjs-dashed #wrapper{
  padding-bottom: 150px;
}

@media (max-width:767px){
  #chatbot-btn {
    bottom: 55px!important;
    z-index: 5;
  }
}

.mincho{
  font-family: 'Noto Serif JP', serif;
}

p,
h1, h2, h3, h4, h5, h6{
  margin: 0;
  letter-spacing: inherit;
}
h1, h2, h3, h4, h5, h6{
  line-height: 1.5;
}

a{
  color: inherit;
  transition: 0.3s;
}
a:hover{
  text-decoration: none;
  /*opacity: 0.7;*/
  /*color: inherit;*/
  color: var(--sub-color);
}
img{
  max-width: 100%;
  width: auto;
}

ul, ol, li{
  margin: 0;
  padding: 0;
  list-style: none;
}

.img_fit{
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.img_fit:before{
  content: "";
  display: block;
  padding-top: 100%;
}
.img_fit img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: 'object-fit: cover';
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
}

a.img_fit{
  display: block;
}
a .img.img_fit img{
  transition: 0.2s all;
}
a:hover .img.img_fit img{
  transform: scale(1.05);
}

/* 動画埋め込みのレスポンシブ対応 */
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%;
}

.gjs-dashed .responsive_video:before{
  display: none;
}
.gjs-dashed .responsive_video [data-gjs-type="video"]:before{
  content: "";
  display: block;
  padding-top:56.25%;
  pointer-events: none;
}


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


/* 指定デバイスで改行を消す */
@media (min-width:1720px){
  .fw_nobr br{
    display: none !important;
  }
}
@media (min-width:1520px){
  .lg_nobr br{
    display: none !important;
  }
}
@media (min-width:1200px){
  .pc_nobr br{
    display: none !important;
  }
}

@media (min-width:1024px) and (max-width:1199px){
  .md_nobr br{
    display: none !important;
  }
}
@media (min-width:768px) and (max-width:1023px){
  .tb_nobr br{
    display: none !important;
  }
}
@media (max-width:767px){
  .sp_nobr br{
    display: none !important;
  }
}


/* 指定した行数での切り取り */
.txt_ellipsis_line1,
.txt_ellipsis_line2,
.txt_ellipsis_line3,
.txt_ellipsis_line4,
.txt_ellipsis_line5,
.txt_ellipsis_line6,
.txt_ellipsis_line7,
.txt_ellipsis_line8,
.txt_ellipsis_line9,
.txt_ellipsis_line10{
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
.txt_ellipsis_line1{
  -webkit-line-clamp: 1;
}
.txt_ellipsis_line2{
  -webkit-line-clamp: 2;
}
.txt_ellipsis_line3{
  -webkit-line-clamp: 3;
}
.txt_ellipsis_line4{
  -webkit-line-clamp: 4;
}
.txt_ellipsis_line5{
  -webkit-line-clamp: 5;
}



/*******************************
*　ヘッダー
********************************/

:root{
  --header-height: 80px;
}
body{
  background-image: url('https://ate-tec.co.jp/system_panel/uploads/images/hdr_top_bg.png');
  background-size: auto 10px;
  background-repeat: repeat-x;
}
.header{
  --logo-height: 30px;
  
}
.hdr1{
  display: flex;
  align-items: center;
  /*flex-wrap: wrap;*/
  justify-content: space-between;
  padding: 16px 10px 10px;
}

/* ロゴ */
.hdr_logo{

}
.hdr_logo img{
  display: block;
  width: auto;
  height: var(--logo-height);
  transition: 0.2s all;
}

/* メニュー全般 */
.hdr_menu{
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* TELボタン */
.hdr_tel{

}
.hdr_tel_txt1{
  font-size: 20px;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
}
.hdr_tel_link{

}
.hdr_tel_link p{

}
.hdr_tel_link p:before{
  display: inline-block;
  content:"\f095";
  font-family: "fontAwesome";
  margin-right: 6px;
  -webkit-transform: rotate(15deg);
  transform: rotate(15deg);
  color: var(--main-color);
}


/* お問い合わせボタン */
.hdr_contact{
  display: flex;
  align-items: center;
  margin-left: 20px;
}
.hdr_contact a{
  background: var(--main-color);
  width: 185px;
  padding: 9px 5px 10px;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  transition: 0.2s all;
}
.hdr_contact a.email p:before{
  content:"\f0e0";
  font-family: "fontAwesome";
  margin-right: 10px;
}
.hdr_contact a:hover{
  background: var(--sub-color);
  color: #FFF;
}

/* SNSボタン */
.hdr_sns{
  display: flex;
  align-items: center;
  margin-left: 20px;
}
.hdr_sns a{
  width: 24px;
  transition: 0.2s all;
}
.hdr_sns a:hover{
  filter: brightness(1.1);
}
.hdr_sns a img{
  display: block;
}
.hdr_sns a + a{
  margin-left: 10px;
}


@media (min-width:375px){

}
@media (max-width:767px){

  .hdr1 {
    justify-content: center;
  }

  /* お問い合わせボタン */
  .hdr_contact{
    display: none;
  }
  .hdr_tel{
    display: none;
  }
  /* SNSボタン */
  .hdr_sns{
    margin-left: 20px;
  }
  .hdr_sns a img{
    height: 30px;
  }

}
@media (min-width:768px){

  /* ヘッダー固定 */
  body{
    /* ヘッダーの高さに応じて */
    padding-top: calc(var(--header-height) + 10px);
  }
  .header{
    --logo-height: 48px;
    transition: 0.2s all;
    height: var(--header-height);
    position: fixed;
    z-index: 3;
    top: 10px;
    left: 0;
    right: 0;
    background: #FFF;
    background: rgba(255, 255, 255, 0.8);
    padding: 19px 15px 19px 20px;
  }

  .hdr1{
    padding: 0;
  }

  /* ロゴ */
  .hdr_logo img{
    /*width: 180px;*/
  }

  /* ヘッダースリム */
  .header.slim{
    top: 0;
    height: calc(var(--header-height) - 18px);
    padding: 10px 15px 10px 20px;
  }
  .header.slim .hdr_logo img{
    height: calc(var(--logo-height) * 0.8);
  }

  /* TELボタン */
  .hdr_tel{

  }
  .hdr_tel_txt1{
    font-size: 24px;
  }
  .hdr_tel_link p:before{
    margin-right: 6px;
  }


}
@media (min-width:1024px){

  .header{
    --logo-height: 38px;
  }

  /* ロゴ */
  .hdr_logo img{
    /*width: 200px;*/
  }

  /* ヘッダースリム */
  .header.slim{

  }
  .header.slim .hdr_logo img{
  }

  /* TELボタン */
  .hdr_tel{

  }
  .hdr_tel_txt1{
    font-size: 26.5px;
  }

}
@media (min-width:1200px){

  .header{
    --logo-height: 38px;
  }
  /* ロゴ */
  .hdr_logo{

  }
  .hdr_logo img{
    /*width: 420px;*/
  }

  /* ヘッダースリム */
  .header.slim{

  }
  .header.slim .hdr_logo img{
  }

}

/*******************************
*　メインビジュアル
********************************/
/* MV */
.mv{
  position: relative;
  z-index: 1;
}
.mv_img{
  position: relative;
  z-index: 1;
}
.mv_img.img_fit:before{
  /*padding-top: 250px;*/
  /* 画面高さ - ヘッダー分 */
  padding-top: calc(100svh - 64px);
}

/* MVテキスト */
.mv_txt{
  position: absolute;
  z-index: 2;
  top: 70%;
  right: 15px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.mv_txt_p1{
  font-size: 30px;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  line-height: 1.375;
}
.mv_txt_p2{
  font-size: 15px;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  margin-top: 15px;
}

/* スライダーの場合 */
.mv_slider{

}
.mv_slider_item{
  position: relative;
  z-index: 1;
}

.gjs-dashed .mv_slider_item{
  background: #CCC;
  padding: 15px 15px;
}

@media (max-width:767px){
  .mv_txt{
    /*filter: drop-shadow(0 0 3px #FFF) drop-shadow(0 0 3px #FFF) drop-shadow(0 0 3px #FFF);*/
    text-shadow: 0 0 2px #FFF, 0 0 2px #FFF, 0 0 2px #FFF, 0 0 2px #FFF, 0 0 2px #FFF, 0 0 2px #FFF, 0 0 2px #FFF, 0 0 2px #FFF, 0 0 2px #FFF;
  }
}
@media (min-width:768px){

  /* MV */
  .mv{
  }
  .mv_img{
  }
  .mv_img.img_fit:before{
    padding-top: 400px;
  }

  /* MVテキスト */
  .mv_txt{
    top: 50%;
    right: 20px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  .mv_txt_p1{
    font-size: 36px;
  }
  .mv_txt_p2{
    font-size: 18px;
    margin-top: 15px;
  }

}
@media (min-width:1024px){


  /* MV */
  .mv{
  }
  .mv_img{
  }
  .mv_img.img_fit:before{
    padding-top: 500px;
  }

  /* MVテキスト */
  .mv_txt{
    right: 50px;
  }
  .mv_txt_p1{
    font-size: 42px;
  }
  .mv_txt_p2{
    font-size: 20px;
    margin-top: 15px;
  }

}
@media (min-width:1200px){

  /* MV */
  .mv{
  }
  .mv_img{
  }
  .mv_img.img_fit:before{
    padding-top: calc(100svh - var(--header-height));
  }


  /* MVテキスト */
  .mv_txt{
    right: 40px;
  }
  .mv_txt_p1{
    font-size: 50px;
  }
  .mv_txt_p2{
    font-size: 25px;
    margin-top: 25px;
  }

}
@media (min-width:1470px){

  /* MVテキスト */
  .mv_txt{
    right: 50px;
  }
  .mv_txt_p1{
    font-size: 60px;
  }
  .mv_txt_p2{
    font-size: 30px;
  }

}
@media (min-width:1720px){

  /* MVテキスト */
  .mv_txt{
    right: 130px;
  }
  .mv_txt_p1{
    font-size: 80px;
  }
  .mv_txt_p2{
    font-size: 40px;
  }

}


/*******************************
*　サイドバー
********************************/

/* サイドバー */
.sidebar{
  position: fixed;
  z-index: 2;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

/* バナー */
.sidebar_bn{
  display: block;
}
.sidebar_bn img{
  width: 40px;
  transition: 0.2s all;
}
.sidebar_bn:hover{

}
.sidebar_bn:hover img{
  transform: scale(1.05);
  filter: brightness(1.05);
}


@media (min-width:768px){

  /* サイドバー */
  .sidebar{
    top: 50%;
  }

  /* バナー */
  .sidebar_bn{
  }
  .sidebar_bn img{
    width: 60px;
  }


}
@media (min-width:1024px){

}
@media (min-width:1200px){

  /* バナー */
  .sidebar_bn{
  }
  .sidebar_bn img{
    width: auto;
  }

}


/*******************************
*　下層ヘッダー
********************************/
.pg_header{
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}
.pg_header_mv_img{
  position: relative;
  z-index: 1;
}
.pg_header_mv_img.img_fit:before{
  padding-top: 150px;
}
/*.pg_header_mv_img:after{
  content: "";
  background: rgba(0,0,0,0.3);
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}*/

.pg_header_title{
  position: absolute;
  z-index: 2;
  top: 100%;
  left: calc(var(--margin-for-device-side-w) * -1);
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.pg_header_title_txt{
  display: flex;
  align-items: center;
  min-width: 200px;
  font-size: 20px;
  font-weight: 400;
  font-family: var(--font-en);
  letter-spacing: 0.09em;
  line-height: 1;
  white-space: nowrap;
  color: #FFF;
  background: var(--sub-color);

  padding: 0.1836em 24px 0.2826em;
  padding: 0.36em 16px 0.56em;
  padding: 6px 16px 9px;
}
.pg_header_title_txt:before{
  content: "";
  width: 30px;
  height: 2px;
  background: #FFF;
  margin-right: 15px;
}



@media (min-width:768px){
  .pg_header{
    margin-bottom: 70px;
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 350px;
  }

  .pg_header_title_txt{
    min-width: 350px;
    font-size: 32px;
    padding: 9px 24px 13px;
    padding: 0.1836em 24px 0.2826em;
  }
  .pg_header_title_txt:before{
    width: 50px;
    margin-right: 22px;
  }


}
@media (min-width:1024px){
  .pg_header{
    margin-bottom: 70px;
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 350px;
  }

  .pg_header_title_txt{
    /*min-width: 490px;*/
    /*font-size: 32px;*/
    /*padding: 9px 24px 13px;*/
  }
  .pg_header_title_txt:before{
    /*width: 96px;*/
    /*margin-right: 22px;*/
  }
}
@media (min-width:1200px){

  .pg_header{
    margin-bottom: 100px;
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 350px;
  }

  .pg_header_title_txt{
    min-width: 490px;
    font-size: 32px;
    /*padding: 9px 24px 13px;*/
  }
  .pg_header_title_txt:before{
    width: 96px;
    margin-right: 22px;
  }

}
@media (min-width:1470px){

  .pg_header{
    margin-bottom: 170px;
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 500px;
  }

  .pg_header_title_txt{
    font-size: 46px;
  }

}



/*******************************
*　フッター
********************************/


/* コンタクト */
.ftr_contact_sec{
  background: #183663;
  margin-top: 100px;
}
.ftr_contact_sec_inner{
  display: flex;
  flex-wrap: wrap;
  color: #FFF;
}
.ftr_contact_sec_box1{
  width: 100%;
  padding-top: 50px;
  padding-bottom: 30px;
}
.ftr_contact_sec_box2{
  width: 100%;
}
.ftr_contact_sec_head{
  margin-bottom: 20px;
}
.ftr_contact_sec_head_en{
  font-size: 50px;
  font-weight: 400;
  font-family: var(--font-en);
  letter-spacing: 0;
  line-height: 1;
}
.ftr_contact_sec_head_ja{
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  margin-top: 15px;
}
.ftr_contact_sec_txt{
  font-size: 15px;
  font-weight: 500;
  line-height: 1.875;
}
.ftr_contact_sec_bg{
  height: 100%;
  margin-left: var(--margin-for-device-side-w);
  margin-right: var(--margin-for-device-side-w);
}
.ftr_contact_sec_bg.img_fit:before{
  padding-top: 0;
  height: 250px;
}

.ftr_contact_sec_btns{
  margin-top: 30px;
}
.ftr_contact_sec_btns_a{
  display: flex;
  align-items: center;
  width: 585px;
  max-width: 100%;
  height: 60px;
  padding-left: 15px;
  font-family: var(--font-mincho);
  letter-spacing: 0.075em;
  position: relative;
  z-index: 1;
}
.ftr_contact_sec_btns_a + .ftr_contact_sec_btns_a{
  margin-top: 15px;
}
.ftr_contact_sec_btns_a.email{
  background: #FFF;
  border-top: 1px solid #FFF;
  border-bottom: 1px solid #FFF;
  color: var(--txt-color);
  font-size: 16px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}
.ftr_contact_sec_btns_a.email:hover{
  /*background: var(--sub-color);*/
  /*color: #FFF;*/
  background: var(--main-color);
  color: var(--sub-color);
  border-color: var(--main-color);
}
.ftr_contact_sec_btns_a.email:before{
  content: "";
  width: 2px;
  height: 46px;
  background: currentColor;
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 64px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.ftr_contact_sec_btns_a.email:after{
  content: "";
  width: 10px;
  aspect-ratio: 13 / 15;
  background: currentColor;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);

  position: absolute;
  z-index: 1;
  top: 50%;
  right: 30px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.ftr_contact_sec_btns_a.tel{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-top: 1px solid #FFF;
  border-bottom: 1px solid #FFF;
  font-size: 13px;
  font-weight: 600;
  padding-right: 15px;
}
.ftr_contact_sec_btns_a.tel:hover{
  /*background: #FFF;*/
  /*color: var(--sub-color);*/

  background: var(--main-color);
  color: var(--sub-color);
  border-color: var(--main-color);
}
.ftr_contact_sec_btns_txt2{
  font-size: 1em;
}
.ftr_contact_sec_btns_txt3{
  font-size: 1.6em;
  letter-spacing: 0.075em;
}

/* フッター */
.footer{
  margin-top: 30px;
}

.ftr1{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.ftr1_box1{
  width: 100%;
}
.ftr1_box2{
  width: 100%;
}

.ftr_logo{
  width: 200px;
  margin-bottom: 30px;
}
.ftr_name{
  font-weight: 500;
  letter-spacing: 0.075em;
  margin-bottom: 10px;
}
.ftr_addr{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.025em;
  line-height: 1.875;
}

.ftr2{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 110px;
}

.ftr2_box1{
  width: calc(100% - 242px - 80px);
}
.ftr2_box2{
  width: 242px;
}

.ftr_links{
  display: flex;
  flex-wrap: wrap;
  gap: 30px 80px;
}
.ftr_links_item{
  width: calc(25% - 60px);
}
.ftr_links_item.wide{
  width: 100%;
}
.ftr_links_item_a{
  display: block;
  padding-top: 3px;
  padding-bottom: 5px;
  padding-left: 30px;
  border-bottom: 1px solid;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  z-index: 1;
}
.ftr_links_item_a:hover{
  color: var(--sub-color);
}
.ftr_links_item_a:before{
  content: "";
  width: 22px;
  aspect-ratio: 1 / 1;
  position: absolute;
  z-index: 1;
  top: 5px;
  left: 0;
  background-image: url('https://ate-tec.co.jp/system_panel/uploads/images/icon_right.png');
  background-repeat: no-repeat;
  background-size: contain;
  transition: 0.2s all;
}
.ftr_links_item_a:hover:before{
  margin-left: 2px;
}

.ftr_links_item_sub{
  padding-top: 20px;
  padding-left: 32px;
}
.ftr_links_item_sub_a{
  display: block;
  background: #f0f0f0;
  font-size: 1em;
  padding: 2px 10px 4px;
}
.ftr_links_item_sub_a + .ftr_links_item_sub_a{
  margin-top: 10px;
}
.ftr_links_item_sub_a:hover{
  background: var(--sub-color);
  color: #FFF;
}


.ftr_interview{
  
}
.ftr_interview_a{
  display: block;
  transition: 0.2s all;
}
.ftr_interview_a:hover{
  transform: scale(1.02);
}

.gnav_item_en{
  color: var(--sub-color);
}

.ftr_addr em{
  font-style: normal;
}
.ftr_copy{
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  margin-top: 50px;
  background: #000;
  color: #FFF;
  padding: 10px 0;
  margin-bottom: 30px;
}

/* 追尾スマホメニュー */
.footer_fix{
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #7ecef4;
  /*z-index: 1000;*/
  z-index: 5; /* チャットボットがある場合 */
  flex-wrap: wrap;
}
.footer_fix > a{
  font-size: 12px;
  text-align: center;
  display: block;
  padding: 10px 5px 5px;
  background: var(--sub-color);
  color: #FFF;
  text-decoration: none;
  line-height: 1.2;
}
.footer_fix .footer_fix_item_1{
  width: 38%;
  border-right: 1px solid #FFF;
}
.footer_fix .footer_fix_item_2{
  width: 24%;
  background: var(--sub-color);
  ;
}
.footer_fix > a i{
  font-size: 20px;
  margin-bottom: 8px;
}
.footer_fix .footer_fix_item_1.remorte i{
  margin-bottom: 0;
}




/* ページTOPに戻る */
.pagetop{
  display: none;
  position: fixed;
  z-index: 5;
  right: 10px;
  bottom: 60px;
  z-index: 3;
}
.pagetop a{
  display: block;
  font-size: 0;
  width: 42px;
  height: 42px;
  text-align: center;
  color: var(--sub-color);
  ;
}
.pagetop a i{
  font-size: 40px;
}



@media (min-width:375px){

}
@media (max-width:767px){

  body{
    padding-bottom: 56px;
  }

  .ftr1_box1{
    order: 2;
    margin-top: 50px;
    text-align: center;
  }
  .ftr1_box2{
    order: 1;
    width: 100%;
  }

  .ftr_logo{
    margin-left: auto;
    margin-right: auto;
  }
  .ftr_addr{
    display: inline-block;
    text-align: left;
  }
  .ftr_interview{
    text-align: center;
  }

  .ftr2{
    display: none
  }

  .footer_fix{
    display: flex;
  }

  .footer_fix{
    display: flex;
    transform: translateY(100%);
    transition: 0.2s all;
  }
  .footer_fix.show{
    transform: translateY(0);
  }
  .gjs-dashed .footer_fix{
    display: flex;
    transform: translateY(0);
  }

  #chatbot-btn{
    transform: translateX(100%);
    transition: 0.2s all;
  }
  #chatbot-btn.show{
    transform: translateX(0);
  }
}
@media (min-width:768px){



  /* コンタクト */
  .ftr_contact_sec{
    margin-top: 100px;
  }
  .ftr_contact_sec_inner{
  }
  .ftr_contact_sec_box1{
    /*width: 61.50%;*/
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .ftr_contact_sec_box2{
    /*width: 38.5%;*/
  }
  .ftr_contact_sec_head{
    margin-bottom: 38px;
  }
  .ftr_contact_sec_head_en{
    font-size: 60px;
  }
  .ftr_contact_sec_head_ja{
    font-size: 16px;
    margin-top: 15px;
  }
  .ftr_contact_sec_txt{
    font-size: 15px;
    /*line-height: 2.125;*/
  }
  .ftr_contact_sec_bg.img_fit:before{
    height: 350px;
  }


  .ftr_contact_sec_btns{
    margin-top: 30px;
  }
  .ftr_contact_sec_btns_a{
    width: 585px;
    height: 70px;
    padding-left: 25px;
    margin: 0 auto;
  }
  .ftr_contact_sec_btns_a + .ftr_contact_sec_btns_a{
    margin-top: 20px;
  }
  .ftr_contact_sec_btns_a.email{
    font-size: 20px;
  }
  .ftr_contact_sec_btns_a.email:before{
    height: 46px;
    right: 74px;
  }
  .ftr_contact_sec_btns_a.email:after{
    width: 13px;
    right: 30px;
  }
  .ftr_contact_sec_btns_a.tel{
    font-size: 18px;
    padding-right: 15px;
  }


  /* フッター */
  .footer{
    margin-top: 70px;
  }
  .ftr1{
  }
  .ftr1_box1{
    width: calc(100% - 300px - 30px);
  }
  .ftr1_box2{
    width: 300px;
  }

  .ftr_logo{
    width: 250px;
    margin-bottom: 30px;
  }
  .ftr_addr{
    font-size: 16px;
    line-height: 2.25;
  }

  .ftr2{
    margin-top: 40px;
  }

  .ftr2_box1{
    width: calc(100% - 200px - 30px);
  }
  .ftr2_box2{
    width: 200px;
  }

  .ftr_links{
    gap: 30px 30px;
  }
  .ftr_links_item{
    width: calc(50% - 15px);
  }
  .ftr_links_item.wide{
    width: 100%;
  }
  .ftr_links_item_a{
    padding-top: 3px;
    padding-bottom: 5px;
    padding-left: 30px;
    font-size: 16px;
  }
  .ftr_links_item_a:before{
    width: 22px;
    top: 5px;
  }
  .ftr_links_item_sub{
    padding-top: 15px;
    padding-left: 20px;
  }

  .ftr_copy{
    margin-top: 70px;
  }

}
@media (min-width:1024px){


  /* コンタクト */
  .ftr_contact_sec{

  }
  .ftr_contact_sec_inner{
  }
  .ftr_contact_sec_box1{
    width: 61.50%;
    padding-top: 50px;
    padding-bottom: 50px;
    padding-right: 30px;
  }
  .ftr_contact_sec_box2{
    width: 38.5%;
  }
  .ftr_contact_sec_head{
    margin-bottom: 38px;
  }
  .ftr_contact_sec_head_en{
    font-size: 70px;
  }
  .ftr_contact_sec_head_ja{
    font-size: 16px;
    margin-top: 15px;
  }
  .ftr_contact_sec_txt{
    font-size: 16px;
    line-height: 2.125;
  }
  .ftr_contact_sec_bg{
    margin-left: 0;
    margin-right: var(--margin-for-device-side-w);
  }

  .ftr_contact_sec_btns{
    margin-top: 30px;
  }
  .ftr_contact_sec_btns_a{
    width: 500px;
    height: 70px;
    padding-left: 25px;
    margin: 0;
  }

  /* フッター */
  .footer{
    margin-top: 70px;
  }
  .ftr1{
  }
  .ftr1_box1{
    width: calc(100% - 300px - 30px);
  }
  .ftr1_box2{
    width: 300px;
  }

  .ftr_logo{
    width: 350px;
    margin-bottom: 30px;
  }
  .ftr_addr{
    font-size: 16px;
    line-height: 2.25;
  }

  .ftr2{
    margin-top: 50px;
  }

  .ftr2_box1{
    width: calc(100% - 200px - 45px);
  }
  .ftr2_box2{
    width: 200px;
  }

  .ftr_links{
    gap: 30px 45px;
  }
  .ftr_links_item{
    width: calc(33.333% - 30px);
  }
  .ftr_links_item.wide{
    width: 100%;
  }
  .ftr_links_item_a{
    padding-top: 3px;
    padding-bottom: 5px;
    padding-left: 30px;
    font-size: 16px;
  }
  .ftr_links_item_a:before{
    width: 22px;
    top: 5px;
  }

}
@media (min-width:1200px){

  /* フッター */
  .footer{
    margin-top: 100px;
  }
  .ftr1{
  }
  .ftr1_box1{
    width: calc(100% - 406px - 30px);
  }
  .ftr1_box2{
    width: 406px;
  }

  .ftr_logo{
    width: 350px;
    margin-bottom: 40px;
  }
  .ftr_addr{
    font-size: 16px;
    line-height: 2.25;
  }

  .ftr2{
    margin-top: 50px;
  }

  .ftr2_box1{
    width: calc(100% - 200px - 40px);
  }
  .ftr2_box2{
    width: 200px;
  }

  .ftr_links{
    gap: 30px 40px;
  }
  .ftr_links_item{
    width: calc(25% - 30px);
  }
  .ftr_links_item_a:before{
    width: 22px;
    top: 5px;
  }

  .ftr_links_item_sub{
    padding-top: 20px;
    padding-left: 32px;
  }
}
@media (min-width:1470px){

  /* コンタクト */
  .ftr_contact_sec{
    margin-top: 145px;
  }
  .ftr_contact_sec_inner{
  }
  .ftr_contact_sec_box1{
    width: 61.50%;
    padding-top: 50px;
    padding-bottom: 80px;
  }
  .ftr_contact_sec_box2{
    width: 38.5%;
  }
  .ftr_contact_sec_head{
    margin-bottom: 38px;
  }
  .ftr_contact_sec_head_en{
    font-size: 90px;
  }
  .ftr_contact_sec_head_ja{
    font-size: 16px;
    margin-top: 15px;
  }
  .ftr_contact_sec_txt{
    font-size: 16px;
  }
  .ftr_contact_sec_btns{
    margin-top: 85px;
  }
  .ftr_contact_sec_btns_a{
    width: 585px;
    /*height: 70px;*/
  }
  .ftr_contact_sec_btns_a.email{
    font-size: 24px;
  }
  .ftr_contact_sec_btns_a.email:before{
    /*height: 46px;*/
    /*right: 74px;*/
  }
  .ftr_contact_sec_btns_a.email:after{
  }
  .ftr_contact_sec_btns_a.tel{
    font-size: 20px;
  }

  /* フッター */
  .footer{
    margin-top: 200px;
  }
  .ftr1{
  }
  .ftr1_box1{
    width: calc(100% - 406px - 30px);
  }
  .ftr1_box2{
    width: 406px;
  }

  .ftr_logo{
    width: auto;
    margin-bottom: 65px;
  }
  .ftr_addr{
  }

  .ftr2{
    margin-top: 110px;
  }

  .ftr2_box1{
    width: calc(100% - 242px - 80px);
  }
  .ftr2_box2{
    width: 242px;
  }

  .ftr_links{
    gap: 30px 80px;
  }
  .ftr_links_item{
    width: calc(25% - 60px);
  }

  .ftr_copy{
    margin-top: 120px;
  }
}
@media (min-width: 1720px){
  .ftr_contact_sec {
    margin-top: 200px;
  }
}

/*******************************
*　共通パーツ
********************************/


/* テーブル用 */
.table_rows{
  display: table;
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
}
.table_rows_tr{
  display: table-row;
}
.table_rows_th,
.table_rows_td{
  display: table-cell;
  border: 1px solid #dcdcdc;
  vertical-align: middle;
  padding: 10px 15px;
  letter-spacing: 0.075em;
}
.table_rows_th{
  background-color: #eeeeee;
  vertical-align: top;
  border-right: 0;
}
.table_rows_td{
  background-color: #eeeeee;
  vertical-align: top;
  border-left: 0;
}
.table_rows_td_pad0{
  padding: 0 !important;
}

/* テーブル入れ子 */
.table_rows .table_rows{

}
.table_rows .table_rows > .table_rows_tr:first-child .table_rows_th,
.table_rows .table_rows > .table_rows_tr:first-child .table_rows_td{
  border-top:0;
}
.table_rows .table_rows > .table_rows_tr:last-child .table_rows_th,
.table_rows .table_rows > .table_rows_tr:last-child .table_rows_td{
  border-bottom:0;
}
.table_rows .table_rows > .table_rows_tr .table_rows_th:first-child,
.table_rows .table_rows > .table_rows_tr .table_rows_td:first-child{
  border-left:0;
}
.table_rows .table_rows > .table_rows_tr .table_rows_th:last-child,
.table_rows .table_rows > .table_rows_tr .table_rows_td:last-child{
  border-right:0;
}


/* ページネーション */
.webgene-pagination {
  width: 100%;
  margin: 50px 0 0;
  line-height: 1.85;
}
.webgene-pagination ul{
  display: flex;
  justify-content: center;
  align-items: center;
}
.webgene-pagination li{
  padding: 4px 13px;
  margin: 0 4px;
  border: 1px solid #c0c0c0;
  background: #ffffff;
  font-weight: 500;
}
.webgene-pagination li.selected{
  border: 0;
  background: #e5e5e5;
}
.webgene-pagination li.next a:after{
  content: "\f101";
  font-family: 'FontAwesome';
  font-weight: 900;
  display: inline-block;
  margin-left: 10px;
}
.webgene-pagination li.prev a:before{
  content: "\f100";
  font-family: 'FontAwesome';
  font-weight: 900;
  display: inline-block;
  margin-right: 10px;
}

/* アンカー */
.anchor{
  position: relative;
  top: -30px;
}

/* ボタン */
.read_more{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
  margin-left: -5px;
  margin-right: -5px;
}
.read_more a{
  min-width: 250px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  border: 1px solid var(--main-color);
  background: var(--main-color);
  /*border-radius: 27px;*/
  color: var(--txt-color);
  ;
  padding: 16px 20px;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.read_more a p{
  /*letter-spacing: 0;*/
}
.read_more a:after{
  content: "";
  width: 56px;
  height: 2px;
  background: var(--sub-color);
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 0;
  -webkit-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  transition: 0.2s all;
}
.read_more a.bdrWh:after{
  background: #FFF;
}
.read_more a:hover{
  color: #FFF;
  background: var(--sub-color);
  border-color: var(--sub-color);
}
.read_more a:hover:after{
  margin-right: -5px;
}
.read_more a{

}
.read_more a{

}


/* 見出し */
.tt2{
  text-align: center;
  margin-bottom: 30px;
}
.tt2_en{
  font-size: 24px;
  font-weight: 400;
  font-family: var(--font-en);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.01em;
}
.tt2_ja{
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  margin-top: 10px;
}
.tt2.wh{
  color: #FFF;
}
.tt2_msg{
  font-size: 15px;
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0;
  text-align: justify;
  margin-top: 15px;
}


.cmn_txt{
  font-size: 16px;
  font-weight: 400;
  line-height: 1.875;
  letter-spacing: 0.075em;
  text-align: justify;
}
.cmn_txt.m{
  font-weight: 500;
}


/* セクション */
.section{
  padding-top: 50px;
  padding-bottom: 50px;
}
.section.sec1{
  padding-top: 0;
}
.section:last-child{
  padding-bottom: 0;
}

.section.beige{
  background-color: #c3b9a9;
}

/* コンテナ */
.container.wide{

}


/* ABOUT */
.cmn_about{

}
.cmn_about_box1{

}
.cmn_about_head{
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.cmn_about_head:after{
  content: "";
  width: 100%;
  height: 1px;
  background: #181818;
  margin-left: 20px;
}
.cmn_about_head_ttl{
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.075em;
  white-space: nowrap;
}

.cmn_about_ttl{
  font-size: 22px;
  font-weight: 400;
  font-family: var(--font-mincho);
  line-height: 1.2;
  letter-spacing: 0;
  margin-bottom: 15px;
}
.cmn_about_ttl2{
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px;
}
.cmn_about_ttl + .cmn_about_ttl2{
  /*margin-top: -25px;*/
}
.cmn_about_ttl_box{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  margin-bottom: 15px;
}
.cmn_about_ttl_box .cmn_about_ttl{
  margin-bottom: 0;
}
.cmn_about_ttl_box .cmn_about_ttl + .cmn_about_ttl2{
  margin-top: 10px;
  margin-bottom: 0;
  /*margin-left: 15px;*/
}
.cmn_about_txt{
  font-size: 16px;
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0.075em;
  text-align: justify;
}
.cmn_about_txt.small{
  font-weight: 400;
}




@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){

  /* スマホ用テーブル */
  .table_rows.resp{

  }
  .table_rows.resp,
  .table_rows.resp .table_rows_tr,
  .table_rows.resp .table_rows_th,
  .table_rows.resp .table_rows_td{
    display: block;
    width: 100%;
    border: 0;
  }

  .table_rows.resp{
    border: 1px solid #dcdcdc;
    border-top: 0;
  }
  .table_rows.resp .table_rows_th,
  .table_rows.resp .table_rows_td{
    border-top: 1px solid #dcdcdc;
  }

}
@media (min-width:768px){

  .anchor{
    top: -100px;
  }

  /* ページネーション */
  .webgene-pagination {
    margin-top: 50px;
  }

  /* ボタン */
  .read_more{
    margin-top: 35px;
  }
  .read_more.center{
    justify-content: center;
  }
  .read_more.left{
    justify-content: flex-start;
  }
  .read_more.right{
    justify-content: flex-end;
  }
  .read_more a{
    min-width: 285px;
    font-size: 15px;
    padding: 16px 20px;
    margin: 5px 5px;
  }
  .read_more a:after{
    /*right: 18px;*/
  }

  /* 見出し */
  .tt2{
    margin-bottom: 30px;
  }
  .tt2_en{
    font-size: 40px;
  }
  .tt2_ja{
    font-size: 18px;
    margin-top: 10px;
  }
  .tt2_msg{
    font-size: 18px;
    text-align: center;
    margin-top: 20px
  }


  /* ABOUT */
  .cmn_about{

  }
  .cmn_about_box1{

  }
  .cmn_about_head{
    margin-bottom: 40px;
  }
  .cmn_about_head:after{
    margin-left: 45px;
  }
  .cmn_about_head_ttl{
    font-size: 24px;
  }
  .cmn_about_ttl{
    font-size: 32px;
    margin-bottom: 30px;
  }
  .cmn_about_ttl2{
    font-size: 18px;
    margin-bottom: 10px;
  }
  .cmn_about_ttl + .cmn_about_ttl2{
    margin-top: -10px;
  }
  .cmn_about_ttl_box{
    margin-bottom: 20px;
  }
  .cmn_about_ttl_box .cmn_about_ttl + .cmn_about_ttl2{
    margin-top: 2px;
    margin-left: 15px;
  }

  .cmn_about_txt{
    font-size: 16px;
    /*line-height: 2.222;*/
  }

}
@media (min-width:1024px){

  /* ページネーション */
  .webgene-pagination{
    margin-top: 120px;
  }
  .posts_list .webgene-pagination{
    margin-top: 80px;
  }

  /* 見出し */
  /*.tt2{
    margin-bottom: 50px;
  }
  .tt2_en{
    font-size: 46px;
  }
  .tt2_ja{
    font-size: 16px;
    margin-top: 15px;
  }*/

}
@media (min-width:1200px){


  /* 見出し */
  .tt2{
    margin-bottom: 30px;
  }
  .tt2_en{
    font-size: 50px;
  }
  .tt2_ja{
    font-size: 18px;
  }

  .cmn_txt{
    font-size: 16px;
    line-height: 2.25;
  }

  /* ABOUT */
  .cmn_about{

  }
  .cmn_about_box1{

  }
  .cmn_about_head{
    margin-bottom: 40px;
  }
  .cmn_about_head:after{
    margin-left: 45px;
  }
  .cmn_about_head_ttl{
    font-size: 28px;
  }
  .cmn_about_ttl{
    font-size: 46px;
    margin-bottom: 30px;
  }
  .cmn_about_ttl2{
    font-size: 20px;
    margin-bottom: 10px;
  }
  .cmn_about_ttl + .cmn_about_ttl2{
    /*margin-top: -25px;*/
  }

  .cmn_about_ttl_box{
    margin-bottom: 30px;
  }
  .cmn_about_ttl_box .cmn_about_ttl + .cmn_about_ttl2{
    margin-top: 2px;
    margin-left: 15px;
  }

  .cmn_about_txt{
    font-size: 18px;
    line-height: 2.222;
  }
  .cmn_about_txt.small{
    font-size: 16px;
    line-height: 2.25;
  }

}


@media (min-width:1470px){

  /* 見出し */
  .tt2{
    margin-bottom: 75px;
  }
  .tt2_en{
    font-size: 68px;
  }
  .tt2_ja{
    font-size: 18px;
  }

  .tt2_msg{
    font-size: 20px;
    text-align: center;
    margin-top: 36px
  }

  /* ABOUT */
  .cmn_about{

  }
  .cmn_about_box1{

  }
  .cmn_about_head{
    margin-bottom: 80px;
  }
  .cmn_about_head:after{
    margin-left: 45px;
  }
  .cmn_about_head_ttl{
    font-size: 38px;
  }
  .cmn_about_ttl{
    font-size: 54px;
    margin-bottom: 45px;
  }
  .cmn_about_ttl2{
    font-size: 24px;
  }
  .cmn_about_ttl + .cmn_about_ttl2{
    margin-top: -25px;
  }

  .cmn_about_ttl_box{
    margin-bottom: 45px;
  }
  .cmn_about_ttl_box .cmn_about_ttl + .cmn_about_ttl2{
    /*margin-top: 2px;*/
    /*margin-left: 15px;*/
  }

  .cmn_about_txt{
    font-size: 18px;
    /*line-height: 2.222;*/
  }

  .read_more a{
    min-width: 300px;
  }
}

@media (min-width:1720px){
  .cmn_about_ttl{
    font-size: 60px;
    margin-bottom: 65px;
  }
}

.swiper-pagination{
  position: static;
  margin-top: 5px;
}
.swiper-pagination-bullet{
  background-color: var(--main-color);
}
.swiper-pagination-bullet-active{
  background-color: var(--sub-color);
}



/*******************************
*　HOME
********************************/
.pg_home{
  padding-top: 50px;
}
.pg_home .section.sec1{

}
.pg_home .section.sec2{
  padding-top: 0;
}
.pg_home .section.sec3{
  padding-top: 50px;
}
.pg_home .section.sec4{
  padding-top: 0;
}
.pg_home .section.sec5{
  padding-top: 0;
}
.pg_home .section.sec6{
  padding-top: 0;
}
.pg_home .section.sec7{
  padding-top: 15px;
}
.pg_home .section.sec8{
  padding-top: 0;
}
.pg_home .section.sec9{
  padding-top: 0;
}
.pg_home .section.sec10{
  padding-top: 0;
}

@media (max-width:767px){

}
@media (min-width:768px){

  .pg_home{
    padding-top: 200px;
    padding-top: 100px;
  }
  .pg_home .section.sec1{

  }
  .pg_home .section.sec2{
    padding-top: 75px;
  }
  .pg_home .section.sec3{
    padding-top: 75px;
  }
  .pg_home .section.sec4{
    padding-top: 75px;
  }
  .pg_home .section.sec5{
    padding-top: 75px;
  }
  .pg_home .section.sec6{
    padding-top: 75px;
  }
  .pg_home .section.sec7{
    padding-top: 15px;
  }
  .pg_home .section.sec8{
    padding-top: 75px;
  }
  .pg_home .section.sec9{
    padding-top: 75px;
  }
  .pg_home .section.sec10{
    padding-top: 75px;
  }

}
@media (min-width:1024px){


}
@media (min-width:1200px){


}
@media (min-width:1470px){

  .pg_home{
    padding-top: 200px;
  }
  .pg_home .section.sec1{

  }
  .pg_home .section.sec2{
    padding-top: 190px;
  }
  .pg_home .section.sec3{
    padding-top: 250px;
  }
  .pg_home .section.sec4{
    padding-top: 145px;
  }
  .pg_home .section.sec5{
    padding-top: 150px;
  }
  .pg_home .section.sec6{
    padding-top: 100px;
  }
  .pg_home .section.sec7{
    padding-top: 15px;
  }
  .pg_home .section.sec8{
    padding-top: 185px;
  }
  .pg_home .section.sec9{
    padding-top: 75px;
  }
  .pg_home .section.sec10{
    padding-top: 85px;
  }


}
@media (min-width:1720px){


}


/* tt1 */
.home_tt1{

}
.home_tt1_en{
  display: flex;
  margin-bottom: 10px;
}
.home_tt1_en p{
  min-width: 160px;
  display: flex;
  align-items: center;
  font-size: 13px;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0.075em;
  white-space: nowrap;
  background: var(--sub-color);
  color: #FFF;
  padding: 7px 15px 9px 10px;
}
.home_tt1_en p:before{
  content: "";
  width: 30px;
  height: 2px;
  background: #FFF;
  margin-right: 10px;
}
.home_tt1_ja{
  font-family: var(--font-mincho);
}
.home_tt1_ja_txt1{
  font-size: 25px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  text-align: left;
}
.home_tt1_ja_txt2{
  font-size: 18px;
}
.home_tt1_sub{
  font-size: 16px;
  font-weight: 500;
  margin-top: 15px;
}

.home_tt2{
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  margin-bottom: 30px;
}
.home_tt2:before,
.home_tt2:after{
  content: "";
  width: 100%;
  height: 1px;
  background: var(--sub-color);
}
.home_tt2_en{
  font-size: 40px;
  font-weight: 400;
  font-family: var(--font-en);
  letter-spacing: 0;
  line-height: 1;
  color: var(--sub-color);
  min-width: 200px;
}
.home_tt2.noBdr{
  justify-content: center;
}
.home_tt2.noBdr:before,
.home_tt2.noBdr:after{
  display: none;
}

/* About */
.home_about{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_about_box1{
  width: 100%;
}
.home_about_box2{
  width: 100%;
  padding-top: 20px;
}

.home_about .read_more{
  /*margin-top: 140px;*/
}


/* Our Business */
.home_business_head{

}
.home_business_head_msg{
  margin-top: 15px;
}

.home_business{

}
* + .home_business{
  margin-top: 50px;
}
* + .home_business_wrap{
  margin-top: 50px;
}
.home_business_row{
  position: relative;
  z-index: 1;
  margin-left: var(--margin-for-device-side-w);
  margin-right: var(--margin-for-device-side-w);
}
.home_business_row + .home_business_row{
  margin-top: 60px;
}
.home_business_img{
  position: absolute;
  z-index: 0;
  inset: 0;
}
.home_business_img:after{
  content: "";
  background: rgba(0,0,0,0.5);
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}
.home_business_img.img_fit:before{
  padding-top: 0;
  height: 100%;
}

.home_business_inner{
  position: relative;
  z-index: 2;
  color: #FFF;
  padding: 50px 15px;
}
.home_business_ttl{
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 30px;
}
.home_business_ttl:after{
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #FFF;
  margin-top: 10px;
}
.home_business_txt{

}
.home_business_en{
  font-size: 30px;
  font-family: var(--font-en);
  line-height: 1.2941;
  letter-spacing: 0;
  text-align: right;
  margin-top: 40px;
}
.home_business .read_more{
  margin-top: 30px;
}

/* Interview */
.home_interview{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_interview_box1{
  width: 100%;
}
.home_interview_box2{
  width: 100%;
  margin-top: 20px;
}
.home_interview_txt{
  margin-top: 35px;
}
.home_interview_imgs{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.home_interview_imgs_item1{
  width: 49.23%;
}
.home_interview_imgs_item1.img_fit:before{
  padding-top: 139.726%;
}
.home_interview_imgs_item2{
  width: 49.23%;
  margin-bottom: 90px;
}
.home_interview_imgs_item2.img_fit:before{
  padding-top: 139.726%;
}
.home_interview .read_more{
  margin-top: 65px;
}


/* 協力会社 */
.home_partner{

  position: relative;
  z-index: 1;
}
.home_partner_inner{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_partner_box1{
  width: calc(100% + 30px);
  padding: 20px 20px;
  margin: 0 -15px;
  background: #183663;
  color: #FFF;
}
.home_partner_box2{
  width: 100%;
  padding-top: 55px;
  padding-bottom: 40px;
}
.home_partner_en{
  font-size: 50px;
  font-weight: 400;
  font-family: var(--font-en);
  line-height: 1.058;
  letter-spacing: 0.075em;
  margin: 0 auto;
}

.home_partner_head{
  margin-bottom: 20px;
}
.home_partner_head_ttl1{
  display: inline-block;
  width: 160px;
  padding: 5px 10px 6px;
  font-size: 14px;
  font-weight: 500;
  background: #FFF;
  text-align: center;
}
.home_partner_head_ttl2{
  font-size: 25px;
  font-weight: 500;
  font-family: var(--font-mincho);
  color: #FFF;
  margin-top: 18px;
}
.home_partner_txt{
  color: #FFF;
}

.home_partner_bg{
  position: absolute;
  z-index: -1;
  inset: 0;
}
.home_partner_bg.img_fit:before{
  padding-top: 0;
  height: 100%;
}
.home_partner_bg:after{
  content: "";
  background: rgba(0,0,0,0.5);
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}
.home_partner_inner .read_more{
  margin-top: 20px;
}

/* 採用情報 */
.home_recruit_head_img{

}
.home_recruit_head_img.img_fit:before{
  padding-top: 150px;
}

.home_recruit_head_en{
  width: 100%;
  padding-top: 10px;
  margin-bottom: 20px;
  font-size: 50px;
  font-family: var(--font-en);
  letter-spacing: 0.075em;
  line-height: 1;
  color: var(--sub-color);
}

.home_recruit_head{
  display: flex;
  flex-wrap: wrap;
}
.home_recruit_head_box1{
  width: 100%;
  padding-bottom: 15px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.home_recruit_head_box1:after{
  content: "";
  height: 1px;
  background: #000;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  right: 0;
}
.home_recruit_head_box2{
  width: 100%;
}
.home_recruit_head_txt{

}

/* リンク */
.home_links{
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.home_links_item{
  width: 100%;
}
.home_links_item_img{

}
.home_links_item_img.img_fit:before{
  padding-top: 66.176%;
}
.home_links_item_head{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 25px;
}
.home_links_item_head_ttl{
  font-size: 30px;
  font-weight: 500;
  font-family: var(--font-mincho);
  line-height: 1;
  letter-spacing: 0.075em;
}
.home_links_item_head_txt{
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  margin-top: 10px;
}
.home_links_item_txt{

}
.home_links_item .read_more{
  margin-top: 20px;
}

/* Insta */
.home_insta_wrap{
  background: #f6f6f6;
  padding: 40px 35px 40px;
}
.home_insta_wrap .home_tt2{
  margin-bottom: 0;
}

@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){

}
@media (min-width:768px){

  /* tt1 */
  .home_tt1{

  }
  .home_tt1_en{
    margin-bottom: 15px;
  }
  .home_tt1_en p{
    font-size: 18px;
    padding: 7px 15px 9px 10px;
    min-width: 205px;
  }
  .home_tt1_en p:before{
    width: 40px;
    margin-right: 10px;
  }
  .home_tt1_ja{
  }
  .home_tt1_ja_txt1{
    font-size: 32px;
  }
  .home_tt1_ja_txt2{
    font-size: 24px;
  }
  .home_tt1_sub{
    font-size: 18px;
    margin-top: 10px;
  }

  .home_tt2{
    margin-bottom: 55px;
  }
  .home_tt2_en{
    font-size: 90px;
    min-width: 350px;
  }

  /* About */
  .home_about{
  }
  .home_about_box1{
  }
  .home_about_box2{
    padding-top: 30px;
  }
  .home_about .read_more{
  }

  /* Our Business */
  .home_business_head{

  }
  .home_business_head_msg{
    margin-top: 15px;
  }

  .home_business{

  }
  * + .home_business{
    margin-top: 50px;
  }
  * + .home_business_wrap{
    margin-top: 50px;
  }
  .home_business_row{
    /*margin-left: -150px;*/
    /*margin-right: -150px;*/
  }
  .home_business_row + .home_business_row{
    margin-top: 60px;
  }
  .home_business_inner{
    padding: 65px 30px;
  }
  .home_business_ttl{
    font-size: 36px;
    margin-bottom: 50px;
  }
  .home_business_ttl:after{
    width: 75px;
    height: 5px;
    margin-top: 20px;
  }
  .home_business_txt{

  }
  .home_business_en{
    font-size: 45px;
    margin-top: 30px;
  }
  .home_business .read_more{
    margin-top: 40px;
  }


  /* Interview */
  .home_interview{
  }
  .home_interview_box1{
    width: 350px;
  }
  .home_interview_box2{
    width: calc(100% - 350px - 20px);
    margin-top: 0;
  }
  .home_interview_txt{
    margin-top: 15px;
  }
  .home_interview_imgs_item2{
    margin-bottom: 90px;
  }
  .home_interview .read_more{
    margin-top: 65px;
  }
  .home_interview + .read_more{

  }


  /* 協力会社 */
  .home_partner{
  }
  .home_partner_inner{
  }
  .home_partner_box1{
    width: 150px;
    padding: 115px 0 110px;
    margin: 0;
  }
  .home_partner_box2{
    width: calc(100% - 150px - 40px);
    padding-top: 55px;
    padding-bottom: 40px;
  }
  .home_partner_en{
    font-size: 60px;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    margin: 0 auto;
  }

  .home_partner_head{
    margin-bottom: 20px;
  }
  .home_partner_head_ttl1{
    width: 150px;
    padding: 5px 10px 6px;
    font-size: 18px;
  }
  .home_partner_head_ttl2{
    font-size: 34px;
    margin-top: 18px;
  }
  .home_partner_inner .read_more{
    margin-top: 20px;
  }

  /* 採用情報 */
  .home_recruit_head_img{

  }
  .home_recruit_head_img.img_fit:before{
    padding-top: 250px;
  }
  .home_recruit_head_en{
    font-size: 60px;
    margin-bottom: 25px;
  }

  .home_recruit_head{
  }
  .home_recruit_head_box1{
    /*width: 350px;*/
    /*padding-bottom: 15px;*/
    /*margin-bottom: 20px;*/
  }
  .home_recruit_head_box1:after{
    /*width: 1px;*/
    /*height: auto;*/
    /*top: 10px;*/
    /*bottom: 5px;*/
    /*right: 0;*/
    /*left: auto;*/
  }
  .home_recruit_head_box2{
    /*width: calc(100% - 350px);*/
    /*padding-left: 30px;*/
  }
  .home_recruit_head_txt{

  }

  /* リンク */
  .home_links{
    gap: 30px;
  }
  .home_links_item{
    width: calc(50% - 15px);
  }
  .home_links_item:nth-child(2n){
    margin-top: 60px;
  }
  .home_links_item_head{
    margin-top: 20px;
    margin-bottom: 25px;
  }
  .home_links_item_head_ttl{
    font-size: 34px;
  }
  .home_links_item_head_txt{
    font-size: 18px;
  }
  .home_links_item_txt{

  }
  .home_links_item .read_more{
    margin-top: 30px;
  }

}
@media (min-width:1024px){

  /* tt1 */
  .home_tt1{

  }
  .home_tt1_en{
    /*margin-bottom: 25px;*/
  }
  .home_tt1_en p{
    font-size: 18px;
    padding: 7px 15px 9px 10px;
  }
  .home_tt1_en p:before{
    width: 40px;
    /*margin-right: 10px;*/
  }
  .home_tt1_ja{
  }
  .home_tt1_ja_txt1{
    font-size: 40px;
  }
  .home_tt1_ja_txt2{
    font-size: 24px;
  }
  .home_tt1_sub{
    font-size: 18px;
    /*margin-top: 45px;*/
  }

  /* About */
  .home_about{
  }
  .home_about_box1{
    width: 375px;
  }
  .home_about_box2{
    width: calc(100% - 375px - 20px);
    padding-top: 50px;
  }

  .home_about .read_more{
    margin-top: 140px;
  }

  /* Interview */
  .home_interview{
  }
  .home_interview_box1{
    width: 500px;
  }
  .home_interview_box2{
    width: calc(100% - 500px - 50px);
  }
  .home_interview_txt{
    margin-top: 35px;
  }
  .home_interview_imgs_item2{
    margin-bottom: 90px;
  }
  .home_interview .read_more{
    margin-top: 65px;
  }

  /* 協力会社 */
  .home_partner{
  }
  .home_partner_inner{
  }
  .home_partner_box1{
    width: 160px;
    padding: 115px 0 110px;

  }
  .home_partner_box2{
    width: calc(100% - 160px - 50px);
    padding-top: 55px;
    padding-bottom: 40px;
  }
  .home_partner_en{
    /*font-size: 85px;*/
  }
  .home_partner_head{
    margin-bottom: 20px;
  }
  .home_partner_head_ttl1{
    width: 190px;
    padding: 5px 10px 6px;
    font-size: 21px;
  }
  .home_partner_head_ttl2{
    font-size: 40px;
  }


  /* リンク */
  .home_links{
    gap: 40px;
  }
  .home_links_item{
    width: calc(50% - 20px);
  }
  .home_links_item:nth-child(2n){
    margin-top: 60px;
  }
  .home_links_item_head{
    margin-top: 20px;
    margin-bottom: 25px;
  }
  .home_links_item_head_ttl{
    /*font-size: 48px;*/
  }
  .home_links_item_head_txt{
    /*font-size: 21px;*/
  }
  .home_links_item_txt{

  }


}
@media (min-width:1200px){


  /* Our Business */
  .home_business_head{

  }
  .home_business_head_msg{
    margin-top: 15px;
  }

  .home_business{

  }
  * + .home_business{
    margin-top: 50px;
  }
  * + .home_business_wrap{
    margin-top: 50px;
  }
  .home_business_row{
    margin-left: -50px;
    margin-right: -50px;
  }
  .home_business_row + .home_business_row{
    margin-top: 60px;
  }
  .home_business_inner{
    padding: 65px 50px;
  }
  .home_business_ttl{
    font-size: 36px;
    margin-bottom: 40px;
  }
  .home_business_txt{

  }
  .home_business_en{
    font-size: 50px;
    margin-top: 10px;
  }
  .home_business .read_more{
    margin-top: 50px;
  }


  /* 協力会社 */
  .home_partner{
  }
  .home_partner_inner{
  }
  .home_partner_box1{
    width: 220px;
    padding: 115px 0 110px;

  }
  .home_partner_box2{
    width: calc(100% - 220px - 65px);
    padding-top: 55px;
    padding-bottom: 40px;
  }

  /* 採用情報 */
  .home_recruit_head_img{

  }
  .home_recruit_head_img.img_fit:before{
    padding-top: 400px;
  }
  .home_recruit_head{
  }
  .home_recruit_head_box1{
    width: 430px;
    padding-bottom: 15px;
    margin-bottom: 20px;
  }
  .home_recruit_head_box1:after{
    width: 1px;
    height: auto;
    top: 10px;
    bottom: 5px;
    right: 0;
    left: auto;
  }
  .home_recruit_head_box2{
    width: calc(100% - 430px);
    padding-left: 40px;
  }
  .home_recruit_head_en{
    font-size: 100px;
    padding-top: 10px;
    margin-bottom: 45px;
  }
  .home_recruit_head_txt{

  }

  /* リンク */
  .home_links{
    gap: 80px;
  }
  .home_links_item{
    width: calc(50% - 40px);
  }
  .home_links_item:nth-child(2n){
    margin-top: 60px;
  }
  .home_links_item_head{
  }
  .home_links_item_head_ttl{
    /*font-size: 48px;*/
  }
  .home_links_item_head_txt{
    width: auto;
    margin-left: auto;
    /*font-size: 21px;*/
  }
  .home_links_item_txt{

  }

}
@media (min-width:1470px){

  /* tt1 */
  .home_tt1{

  }
  .home_tt1_en{
    margin-bottom: 25px;
  }
  .home_tt1_en p{
    font-size: 20px;
    padding: 7px 15px 9px 10px;
  }
  .home_tt1_ja{
  }
  .home_tt1_ja_txt1{
    font-size: 50px;
  }
  .home_tt1_ja_txt2{
    font-size: 24px;
  }
  .home_tt1_sub{
    font-size: 18px;
    margin-top: 45px;
  }

  .home_tt2{
    margin-bottom: 40px;
  }
  .home_tt2_en{
    font-size: 70px;
    min-width: 250px;
  }

  /* About */
  .home_about{
  }
  .home_about_box1{
    width: 420px;
  }
  .home_about_box2{
    width: calc(100% - 420px - 15px);
    padding-top: 75px;
  }

  .home_about .read_more{
    margin-top: 100px;
  }

  /* Our Business */
  .home_business_ttl{
    font-size: 42px;
    margin-bottom: 40px;
  }
  .home_business_txt{

  }
  .home_business_en{
    font-size: 60px;
    margin-top: 10px;
  }

  /* Interview */
  .home_interview{
  }
  .home_interview_box1{
    width: 500px;
  }
  .home_interview_box2{
    width: calc(100% - 500px - 150px);
  }

  .home_interview + .read_more{
    margin-top: -55px;
  }

  /* 協力会社 */
  .home_partner{
  }
  .home_partner_inner{
  }
  .home_partner_box1{
    width: 220px;
    padding: 115px 0 110px;

  }
  .home_partner_box2{
    width: calc(100% - 220px - 65px);
    padding-top: 55px;
    padding-bottom: 40px;
  }
  .home_partner_en{
    font-size: 85px;
  }
  .home_partner_head_ttl1{
    width: 190px;
    padding: 5px 10px 6px;
    font-size: 21px;
  }
  .home_partner_head_ttl2{
    font-size: 48px;
  }

  /* 採用情報 */
  .home_recruit_head_img{

  }
  .home_recruit_head_img.img_fit:before{
    padding-top: 500px;
  }
  .home_recruit_head{
  }
  .home_recruit_head_box1{
    width: 530px;
  }
  .home_recruit_head_box1:after{
    width: 1px;
    top: 10px;
    bottom: 5px;
    right: 0;
  }
  .home_recruit_head_box2{
    width: calc(100% - 530px);
    padding-left: 50px;
  }
  .home_recruit_head_en{
    font-size: 100px;
    padding-top: 10px;
    margin-bottom: 45px;
  }
  .home_recruit_head_txt{

  }

  /* リンク */
  .home_links{
    gap: 100px;
  }
  .home_links_item{
    width: calc(50% - 50px);
  }
  .home_links_item:nth-child(2n){
    margin-top: 60px;
  }
  .home_links_item_head{
  }
  .home_links_item_head_ttl{
    font-size: 40px;
  }
  .home_links_item_head_txt{
    font-size: 21px;
  }
  .home_links_item_txt{

  }
}
@media (min-width:1720px){

  /* tt1 */
  .home_tt1{

  }
  .home_tt1_en{
    margin-bottom: 25px;
  }
  .home_tt1_en p{
    font-size: 20px;
    padding: 7px 15px 9px 10px;
  }
  .home_tt1_ja{
  }
  .home_tt1_ja_txt1{
    font-size: 60px;
  }
  .home_tt1_ja_txt2{
    font-size: 24px;
  }
  .home_tt1_sub{
    font-size: 21px;
    margin-top: 45px;
  }

  .home_tt2{
    margin-bottom: 55px;
  }
  .home_tt2_en{
    font-size: 90px;
    min-width: 350px;
  }

  /* About */
  .home_about{
  }
  .home_about_box1{
    width: 460px;
  }
  .home_about_box2{
    width: calc(100% - 460px - 315px);
    padding-top: 75px;
  }

  .home_about .read_more{
    margin-top: 140px;
  }

  /* Our Business */
  .home_business_head{

  }
  .home_business_head_msg{
    margin-top: 15px;
  }

  .home_business{

  }
  * + .home_business{
    margin-top: 50px;
  }
  * + .home_business_wrap{
    margin-top: 50px;
  }
  .home_business_row{
    margin-left: -150px;
    margin-right: -150px;
  }
  .home_business_row + .home_business_row{
    margin-top: 60px;
  }
  .home_business_inner{
    padding: 65px 150px;
  }
  .home_business_ttl{
    font-size: 42px;
    margin-bottom: 50px;
  }
  .home_business_txt{

  }
  .home_business_en{
    font-size: 68px;
    margin-top: 10px;
  }
  .home_business .read_more{
    margin-top: 65px;
  }

  /* Interview */
  .home_interview{
  }
  .home_interview_box1{
    width: 650px;
  }
  .home_interview_box2{
    width: calc(100% - 650px - 130px);
  }
  .home_interview_txt{
    margin-top: 35px;
  }
  .home_interview_imgs_item2{
    margin-bottom: 90px;
  }
  .home_interview .read_more{
    margin-top: 65px;
  }

  /* 採用情報 */
  .home_recruit_head_img{

  }
  .home_recruit_head_img.img_fit:before{
    padding-top: 600px;
  }

  .home_recruit_head{
  }
  .home_recruit_head_box1{
    width: 650px;
  }
  .home_recruit_head_box2{
    width: calc(100% - 650px);
    padding-left: 90px;
  }
  .home_recruit_head_en{
    font-size: 100px;
    padding-top: 10px;
    margin-bottom: 45px;
  }

  /* リンク */
  .home_links{
    gap: 160px;
  }
  .home_links_item{
    width: calc(50% - 80px);
  }
}


@media (min-width:1024px){

  .pg_home .section.sec2{
    overflow: hidden;
  }
  .home_business_wrap{
    position: relative;
    z-index: 1;
    padding-top: 50px;
  }

  /* パネルを重ねる親 */
  .home_business{
    position: relative;
    overflow: visible!important;
  }

  .home_business_row{
    width: auto!important;
    margin: 0;
    position: absolute;
    top: 0;
    left: -30px!important;
    right: -30px!important;
    height: 100vh;
    margin: 0;
  }
  .home_business_img {
    position: absolute;
    inset: 0;
    z-index: 1;
  }
  .home_business_inner {
    position: relative;
    z-index: 2;
  }
}
@media (min-width:1200px){

}
@media (min-width:1366px){

}
@media (min-width:1470px){
  .home_business_row{
    left: -50px!important;
    right: -50px!important;
  }
}
@media (min-width:1536px){

}
@media (min-width:1720px){

  .home_business_row{
    left: -150px!important;
    right: -150px!important;
  }

}


/*******************************
*　Instagram
********************************/
.insta_list{
  margin-top: 20px;
}
.insta_list .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  margin-inline: -3.5px;
}
.insta_list .webgene-item{
  width: 50%;
  padding-inline: 3.5px;
}
.insta_list .webgene-item:nth-child(n+3){
  margin-top: 10px;
}

.insta_list .webgene-item .img{
  content: "";
  display: block;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.insta_list .webgene-item .img:before{
  padding-top: 132%;
}
@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){
  .insta_list .webgene-item:nth-child(n+5){
    display: none;
  }
}
@media (min-width:768px){

  .insta_list{
    margin-top: 20px;
  }
  .insta_list .webgene-blog{

  }
  .insta_list .webgene-item{
    width: 33.333%;
  }
  .insta_list .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .insta_list .webgene-item:nth-child(n+4){
    margin-top: 10px;
  }
}
@media (min-width:1024px){

}
@media (min-width:1200px){
  .insta_list{
    margin-top: 20px;
  }
  .insta_list .webgene-blog{
    margin-inline: -7px;
  }
  .insta_list .webgene-item{
    width: 16.666%;
    padding-inline: 7px;
  }
  .insta_list .webgene-item:nth-child(n+4){
    margin-top: 0;
  }
  .insta_list .webgene-item:nth-child(n+7){
    margin-top: 4px;
  }

}
@media (min-width:1470px){
  .insta_list{
    margin-top: 20px;
  }
}


/*******************************
*　About
********************************/

/* セクション設定 */
.pg_about{

}
.pg_about .section{
  position: relative;
  z-index: 1;
}
.pg_about .section.sec1{
  padding-bottom: 50px;
}
.pg_about .section.sec2{
  padding-top: 50px;
  padding-bottom: 50px;
}
.pg_about .section.sec3{
  padding-top: 50px;
}


@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){

}
@media (min-width:768px){

  .pg_about .section.sec1{
    padding-bottom: 75px;
  }
  .pg_about .section.sec2{
    padding-top: 75px;
    padding-bottom: 75px;
  }
  .pg_about .section.sec3{
    padding-top: 75px;
  }

}
@media (min-width:1024px){


}
@media (min-width:1200px){


}
@media (min-width:1470px){

  .pg_about .section.sec1{
    padding-bottom: 140px;
  }
  .pg_about .section.sec2{
    padding-top: 115px;
    padding-bottom: 120px;
  }
  .pg_about .section.sec3{
    padding-top: 140px;
  }

}
@media (min-width:1720px){


}

/* メイン部分 */


/* Values */
.about_values_bg{
  position: absolute;
  z-index: -1;
  inset: 0;
}
.about_values_bg:after{
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: rgba(0,0,0,0.85);
  pointer-events: none;
}
.about_values_bg.img_fit:before{
  padding: 0;
  height: 100%;
}

.about_values{
  display: flex;
  flex-wrap: wrap;
  gap: 30px 30px;
  color: #FFF;
  position: relative;
  z-index: 1;
}
.about_values_item{
  width: 100%;
  border: 1px solid var(--bdr-color);
  padding: 30px 20px;
}
.about_values_item:hover{
  background: rgba(24, 54, 99, 0.5);
}
.about_values_item_head{
  font-size: 16px;
  text-align: center;
}
.about_values_item_head_num{
  font-size: 1.5em;
  font-weight: 400;
  font-family: var(--font-en);
  letter-spacing: 0;
  line-height: 1;
  color: var(--main-color);
}
.about_values_item_head_en{
  font-size: 2.1em;
  font-weight: 500;
  font-family: var(--font-mincho);
  letter-spacing: 0;
  line-height: 1;
  margin-top: 8px;
}
.about_values_item_head_ja{
  font-size: 1em;
  font-weight: 500;
  font-family: var(--font-mincho);
  letter-spacing: 0;
  margin-top: 6px;
}
.about_values_item_head_ja:after{
  content: "";
  display: block;
  width: 70px;
  height: 1px;
  background: #FFF;
  margin: 10px auto 0;
}
.about_values_item_head_ttl{
  font-size: 1.5em;
  font-weight: 500;
  font-family: var(--font-mincho);
  letter-spacing: 0.075em;
  margin-top: 15px;
}
.about_values_item_txt{
  font-size: 16px;
  letter-spacing: 0;
  margin-top: 15px;
}

/* Why */
.about_why{

}
.about_why_row{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--bdr-color);
}
.about_why_row + .about_why_row{
  margin-top: 20px;
}
.about_why_row_box1{
  width: 100%;
}
.about_why_row_box2{
  width: 100%;
  padding-top: 20px;
}
.about_why_img{

}
.about_why_img.img_fit:before{
  padding-top: 65.789%;
}
.about_why_head{
  margin-bottom: 15px;
}
.about_why_head_num{
  font-size: 30px;
  font-weight: 400;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 6px;
}
.about_why_head_ttl{
  font-size: 20px;
  font-weight: 400;
  font-family: var(--font-mincho);
  line-height: 1.2;
  letter-spacing: 0;
}
.about_why_txt{

}

@media (max-width:767px){

}
@media (min-width:768px){

  /* Values */
  .about_values{
    gap: 25px 30px;
  }
  .about_values_item{
    width: calc(50% - 15px);
    padding: 50px 30px;
  }
  .about_values_item_head{
    font-size: 16px;
  }
  .about_values_item_head_num{
    font-size: 1.5em;
  }
  .about_values_item_head_en{
    font-size: 2.1em;
    margin-top: 8px;
  }
  .about_values_item_head_ja{
    font-size: 1em;
    margin-top: 6px;
  }
  .about_values_item_head_ja:after{
    width: 70px;
    margin: 10px auto 0;
  }
  .about_values_item_head_ttl{
    font-size: 1.5em;
    margin-top: 15px;
  }

  /* Why */
  .about_why{

  }
  .about_why_row{
    padding-bottom: 35px;
  }
  .about_why_row + .about_why_row{
    margin-top: 35px;
  }
  .about_why_row_box1{
    width: 50%;
    width: 40%;
  }
  .about_why_row_box2{
    width: 44.73%;
    width: 56%;
    padding-top: 0;
  }
  .about_why_head{
    margin-bottom: 15px;
  }
  .about_why_head_num{
    font-size: 40px;
    margin-bottom: 15px;
  }
  .about_why_head_ttl{
    font-size: 26px;
  }
  .about_why_txt{

  }
}
@media (min-width:1024px){


}
@media (min-width:1200px){

  /* Values */
  .about_values{
    gap: 25px 30px;
  }
  .about_values_item{
    width: calc(50% - 15px);
    padding: 50px 50px;
  }
  .about_values_item_head{
    font-size: 20px;
  }
  .about_values_item_head_num{
  }
  .about_values_item_head_en{
  }
  .about_values_item_head_ja{
  }
  .about_values_item_head_ja:after{
  }
  .about_values_item_head_ttl{
  }
  .about_values_item_txt{
    font-size: 16px;
    margin-top: 15px;
  }

  /* Why */
  .about_why{

  }
  .about_why_row{
    padding-bottom: 35px;
  }
  .about_why_row + .about_why_row{
    margin-top: 35px;
  }
  .about_why_row_box1{
    width: 50%;
  }
  .about_why_row_box2{
    width: 44.73%;
    padding-top: 20px;
  }
  .about_why_head{
    margin-bottom: 20px;
  }
  .about_why_head_num{
    font-size: 40px;
    margin-bottom: 15px;
  }
  .about_why_head_ttl{
    font-size: 28px;
  }
  .about_why_txt{

  }

}
@media (min-width:1470px){

  /* Values */
  .about_values{
    gap: 25px 30px;
  }
  .about_values_item{
    width: calc(50% - 15px);
    padding: 50px 95px;
  }
  .about_values_item_head{
    font-size: 20px;
  }
  .about_values_item_head_num{
  }
  .about_values_item_head_en{
  }
  .about_values_item_head_ja{
  }
  .about_values_item_head_ja:after{
    width: 100px;
  }
  .about_values_item_head_ttl{
  }
  .about_values_item_txt{
    font-size: 16px;
    margin-top: 15px;
  }

  /* Why */
  .about_why{

  }
  .about_why_row_box1{
    width: 50%;
  }
  .about_why_row_box2{
    width: 44.73%;
    padding-top: 35px;
  }
  .about_why_head{
    margin-bottom: 35px;
  }
  .about_why_head_num{
    font-size: 54px;
    margin-bottom: 15px;
  }
  .about_why_head_ttl{
    font-size: 36px;
  }
  .about_why_txt{

  }

}
@media (min-width:1720px){


}



/*******************************
*　
********************************/

/* セクション設定 */
.pg_business{

}
.pg_business .section.sec1{
  background-image: url('https://ate-tec.co.jp/system_panel/uploads/images/business_sec_bg1.jpg');
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 768px auto;
  padding-bottom: 50px;
}
.pg_business .section.sec2{
  background-image: url('https://ate-tec.co.jp/system_panel/uploads/images/business_sec_bg2.jpg');
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 768px auto;
  padding-top: 35px;
}


@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){

}
@media (min-width:768px){

  .pg_business .section.sec1{
    padding-bottom: 75px;
    background-size: 1200px auto;
  }
  .pg_business .section.sec2{
    padding-top: 35px;
    background-size: 1200px auto;
  }

}
@media (min-width:1024px){


}
@media (min-width:1200px){

  .pg_business .section.sec1{
    padding-bottom: 100px;
    background-size: 1470px auto;
  }
  .pg_business .section.sec2{
    padding-top: 0;
    background-size: 1470px auto;
  }


}
@media (min-width:1470px){

  .pg_business .section.sec1{
    padding-bottom: 145px;
    background-size: 1920px auto;
  }
  .pg_business .section.sec2{
    padding-top: 35px;
    background-size: 1920px auto;
  }
}
@media (min-width:1720px){

  .pg_business .section.sec2 * + .business_details{
    margin-top: 75px;
  }

}

/* メイン部分 */


/* ABOUT */
.business_about{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: #f2f2f2;
  padding: 15px 15px;

}
* + .business_about{
  margin-top: 40px;
}
.business_about_box1{
  width: 100%;
  padding-top: 0;
}
.business_about_box2{
  width: 100%;
}

.business_about_ttl{
  font-size: 20px;
  font-weight: 400;
  font-family: var(--font-mincho);
  line-height: 1.2;
  letter-spacing: 0;
  margin-bottom: 15px;
}
.business_about_ttl:after{
  content: "";
  display: block;
  width: 170px;
  height: 2px;
  background: var(--bdr-color);
  margin-top: 10px;
}
.business_about_txt{
  letter-spacing: 0;
}
.business_about{

}
.business_about_img{

}
.business_about_img.img_fit:before{
  padding-top: 61.765%;
}

/* 詳細 */
.business_details_wrap{

}
* + .business_details_wrap{
  margin-top: 50px;
}
.business_details_wrap .tt2{
  margin-bottom: 20px;
}
.business_details_msg{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  text-align: justify;
}
* + .business_details_msg{

}

.business_details_msg_list{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 30px;
  margin: 15px 0;
}
.business_details_msg_list p{
  min-width: 100%;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  text-align: center;
  background: var(--sub-color);
  color: #FFF;
  padding: 10px 10px 12px;
}

.business_details{
  display: flex;
  flex-wrap: wrap;
  gap: 15px 15px
}
* + .business_details{
  margin-top: 30px;
}
.business_details_item{
  width: 100%;
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--bdr-color);
  padding: 30px 20px ;
}
.business_details_item_head{
  text-align: center;
  margin-bottom: 20px;
}
.business_details_item_head:after{
  content: "";
  display: block;
  width: 100px;
  height: 1px;
  background: #181818;
  margin: 10px auto 0;
}
.business_details_item_head_en{
  font-size: 24px;
  font-weight: 500;
  font-family: var(--font-mincho);
  letter-spacing: 0;
  line-height: 1;
}
.business_details_item_head_ja{
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-mincho);
  margin-top: 6px;
}
.business_details_item_txt{
  letter-spacing: 0;
}


/* Support */
.business_support{

}
* + .business_support{
  margin-top: 40px;
}
.business_support_ttl{
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  /*letter-spacing: 0;*/
  letter-spacing: 0.075em;
  line-height: 1.4;
  margin-bottom: 20px;
}
.business_support_ttl:before,
.business_support_ttl:after{
  content: "";
  width: 50px;
  height: 1px;
  background: #181818;
}
.business_support_ttl:before{
  margin-right: 10px;
}
.business_support_ttl:after{
  margin-left: 10px;
}
.business_support_txt{
}

@media (max-width:1023px){

  .business_about_box1{
    order: 2;
    margin-top: 20px;
  }
  .business_about_box2{
    order: 1;
  }

}
@media (max-width:767px){


}
@media (min-width:768px){

  /* ABOUT */
  .business_about{
    padding: 30px 30px;

  }
  * + .business_about{
    margin-top: 70px;
  }
  .business_about_box1{
    /*width: calc(100% - 510px - 25px);*/
    padding-top: 15px;
  }
  .business_about_box2{
    /*width: 510px;*/
  }

  .business_about_ttl{
    font-size: 26px;
    /*margin-bottom: 30px;*/
  }
  .business_about_ttl:after{
    width: 170px;
    margin-top: 15px;
  }

  /* 詳細 */
  .business_details_wrap{

  }
  * + .business_details_wrap{
    margin-top: 70px;
  }
  .business_details_wrap .tt2{
    margin-bottom: 40px;
  }
  .business_details_msg{
    font-size: 16x;
    text-align: center;
  }
  * + .business_details_msg{

  }

  .business_details_msg_list{
    gap: 10px 15px;
    margin: 15px 0;
  }
  .business_details_msg_list p{
    min-width: 100px;
    font-size: 16px;
    /*padding: 15px 18px 15px 8px;*/
  }

  .business_details{
    gap: 30px 30px
  }
  * + .business_details{
    margin-top: 45px;
  }
  .business_details_item{
    width: calc(50% - 15px);
    /*padding: 45px 100px 60px;*/
  }
  .business_details_item_head{
    /*margin-bottom: 38px;*/
  }
  .business_details_item_head:after{
    width: 70px;
  }
  .business_details_item_head_en{
    /*font-size: 42px;*/
  }
  .business_details_item_head_ja{
    /*font-size: 20px;*/
  }
  .business_details_item_txt{

  }

  /* Support */
  .business_support{

  }
  * + .business_support{
    margin-top: 70px;
  }
  .business_support_ttl{
    font-size: 28px;
    margin-bottom: 20px;
  }
  .business_support_ttl:before,
  .business_support_ttl:after{
    width: 100px;
  }
  .business_support_txt{
    /*text-align: center;*/
  }
  
  /* 詳細 */
  .business_details_msg{
    font-size: 18x;
  }

}
@media (min-width:1024px){

  /* ABOUT */
  .business_about{
    padding: 30px 45px 30px 30px;

  }
  * + .business_about{
    margin-top: 90px;
  }
  .business_about_box1{
    width: calc(100% - 350px - 25px);
    padding-top: 15px;
  }
  .business_about_box2{
    width: 350px;
  }

  .business_about_ttl{
    /*font-size: 26px;*/
    margin-bottom: 15px;
  }
  .business_about_ttl:after{
    width: 170px;

  }

  /* Support */
  .business_support_ttl:before,
  .business_support_ttl:after{
    width: 200px;
  }
  .business_support_txt{
    text-align: center;
  }


}
@media (min-width:1200px){

  /* 詳細 */
  .business_details_wrap{

  }
  * + .business_details_wrap{
    margin-top: 140px;
  }
  .business_details_wrap .tt2{
    margin-bottom: 40px;
  }
  .business_details_msg{
    font-size: 20px;
    text-align: center;
  }
  * + .business_details_msg{

  }

  .business_details_msg_list{
    gap: 10px 20px;
    margin: 15px 0;
  }
  .business_details_msg_list p{
    min-width: 304px;
    font-size: 16px;
    padding: 15px 18px 15px 8px;
  }

  .business_details{
    gap: 30px 30px
  }
  * + .business_details{
    margin-top: 45px;
  }
  .business_details_item{
    width: calc(50% - 15px);
    padding: 45px 50px 60px;
  }
  .business_details_item_head{
    margin-bottom: 38px;
  }
  .business_details_item_head:after{
    width: 100px;
  }
  .business_details_item_head_en{
    font-size: 36px;
  }
  .business_details_item_head_ja{
    font-size: 18px;
  }
  .business_details_item_txt{

  }

  /* Support */
  .business_support{

  }
  * + .business_support{
    margin-top: 90px;
  }
  .business_support_ttl{
    font-size: 32px;
    margin-bottom: 40px;
  }
  .business_support_ttl:before,
  .business_support_ttl:after{
    width: 250px;
  }

}
@media (min-width:1470px){

  /* ABOUT */
  .business_about{
    padding: 30px 45px 30px 30px;

  }
  * + .business_about{
    margin-top: 90px;
  }
  .business_about_box1{
    width: calc(100% - 510px - 25px);
    padding-top: 15px;
  }
  .business_about_box2{
    width: 510px;
  }

  .business_about_ttl{
    font-size: 32px;
    margin-bottom: 30px;
  }
  .business_about_ttl:after{
    width: 170px;
    margin-top: 25px;
  }

  /* 詳細 */
  .business_details_wrap{

  }
  * + .business_details_wrap{
    margin-top: 140px;
  }
  .business_details_wrap .tt2{
    margin-bottom: 40px;
  }
  .business_details_msg{
    font-size: 20px;
    text-align: center;
  }
  * + .business_details_msg{

  }

  .business_details_msg_list{
    gap: 10px 30px;
    margin: 15px 0;
  }
  .business_details_msg_list p{
    min-width: 304px;
    font-size: 16px;
    padding: 15px 18px 15px 8px;
  }


  .business_details{
    gap: 30px 30px
  }
  * + .business_details{
    margin-top: 45px;
  }
  .business_details_item{
    width: calc(50% - 15px);
    padding: 45px 100px 60px;
  }
  .business_details_item_head{
    margin-bottom: 38px;
    margin-left: -50px;
    margin-right: -50px;
  }
  .business_details_item_head:after{
    width: 100px;
  }
  .business_details_item_head_en{
    font-size: 42px;
  }
  .business_details_item_head_ja{
    font-size: 20px;
  }
  .business_details_item_txt{

  }

  /* Support */
  .business_support{

  }
  * + .business_support{
    margin-top: 90px;
  }
  .business_support_ttl{
    font-size: 32px;
    margin-bottom: 40px;
  }
  .business_support_ttl:before,
  .business_support_ttl:after{
    width: 350px;
  }

}
@media (min-width:1720px){

  .business_support_ttl:before,
  .business_support_ttl:after{
    width: 490px;
  }

}







/*******************************
*　
********************************/

/* セクション設定 */
.pg_partner{

}
.pg_partner .section.sec1{

}
.pg_partner .section.sec2{
  padding-top: 0;
}
.pg_partner .section.sec3{
  padding-top: 35px;
}


@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){

}
@media (min-width:768px){

  .pg_partner .section.sec1{

  }
  .pg_partner .section.sec2{
    padding-top: 0;
  }
  .pg_partner .section.sec3{
    padding-top: 35px;
  }

}
@media (min-width:1024px){


}
@media (min-width:1200px){


}
@media (min-width:1470px){

  .pg_partner .section.sec1{

  }
  .pg_partner .section.sec2{
    padding-top: 0;
  }
  .pg_partner .section.sec3{
    padding-top: 35px;
  }

}
@media (min-width:1720px){


}

/* メイン部分 */

/* Values */
.partner_values_wrap{

  background: #f2f2f2;
  padding: 30px 15px;
}
* + .partner_values_wrap{
  margin-top: 50px;
}
.partner_values_head{
  text-align: center;
  margin-bottom: 18px;
}
.partner_values_head_ttl1{
  font-size: 24px;
  font-weight: 400;
  font-family: var(--font-mincho);
  letter-spacing: 0;
}
.partner_values_head_ttl1:after{
  content: "";
  display: block;
  width: 70px;
  height: 2px;
  background: #b5b5b5;
  margin: 10px auto 0;
}
.partner_values_head_ttl2{
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  margin-top: 15px;
}
.partner_values_msg{
  letter-spacing: 0;
  text-align: center;
}
.partner_values_msg p{
  display: inline-block;
  text-align: left;
}

.partner_values{

}
* + .partner_values{
  margin-top: 30px;
}
.partner_values{
  display: flex;
  flex-wrap: wrap;
  gap: 30px 30px;
  color: #FFF;
  position: relative;
  z-index: 1;
}
.partner_values_item{
  width: 100%;
  border: 1px solid var(--bdr-color);
  padding: 36px 20px;
  background: var(--sub-color);
  position: relative;
  z-index: 1;
}
.partner_values_item:before{
  content: "";
  position: absolute;
  z-index: 1;
  inset: 10px;
  border: 1px solid #FFF;
  pointer-events: none;
}
.partner_values_item:hover{
}
.partner_values_item_head{
  font-size: 20px;
  text-align: center;
}
.partner_values_item_head_num{
  font-size: 1em;
  font-weight: 400;
  font-family: var(--font-en);
  letter-spacing: 0;
  line-height: 1;
  color: var(--main-color);
}
.partner_values_item_head_en{
  font-size: 1em;
  font-weight: 500;
  font-family: var(--font-mincho);
  letter-spacing: 0;
  line-height: 1;
  margin-top: 12px;
}
.partner_values_item_head_en:after{
  content: "";
  display: block;
  width: 70px;
  height: 1px;
  background: #FFF;
  margin: 20px auto 0;
}
.partner_values_item_head_ja{
  font-size: 1.13em;
  font-weight: 500;
  font-family: var(--font-mincho);
  letter-spacing: 0.2em;
  margin-top: 13px;
}

.partner_values_item_head_ttl{
  font-size: 1.5em;
  font-weight: 500;
  font-family: var(--font-mincho);
  letter-spacing: 0.075em;
  margin-top: 15px;
}
.partner_values_item_txt{
  font-size: 16px;
  letter-spacing: 0;
  margin-top: 15px;
}

.partner_values.col2 .partner_values_item_head_ja{
  letter-spacing: 0;
}

.partner_values.color2{

}
.partner_values.color2 .partner_values_item{
  background: #eee31a;
  color: #181818;
  border: 0;
}
.partner_values.color2 .partner_values_item:before{
  border-color: #a6a6a6;
}
.partner_values.color2 .partner_values_item_head_num{
  color: var(--sub-color);
}
.partner_values.color2 .partner_values_item_head_en:after{
  background: #181818;
}

/* エリア */
.partner_area{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  /*padding-top: 100px;*/
  /*height: 700px;*/
  border-bottom: 1px solid var(--bdr-color);
  padding-bottom: 30px;
}
.partner_area_box1{

}
.partner_area_box2{
  width: 100%;
  /*position: absolute;
  z-index: 1;
  top: 0;
  right: 0;*/
  margin-top: 20px;
}
.partner_area_map{
  text-align: center;
}


/* ご協力いただきたい企業様 */
.partner_need_list{
  display: flex;
  flex-wrap: wrap;
  gap: 10px 10px;
  margin-bottom: 30px;
}
.partner_need_list p{
  width: calc(50% - 5px);
  background: #f7f7f7;
  border: 1px solid var(--bdr-color);
  border-radius: 5px;
  padding: 12px 10px;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
}

.partner_nedd_msg{
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-mincho);
  line-height: 1.875;
  letter-spacing: 0;
  text-align: justify;
}

@media (max-width:767px){

}
@media (min-width:768px){


  /* Values */
  .partner_values_wrap{
    padding: 45px 30px;
  }
  * + .partner_values_wrap{
    margin-top: 70px;
  }
  .partner_values_head{
    margin-bottom: 18px;
  }
  .partner_values_head_ttl1{
    font-size: 32px;
  }
  .partner_values_head_ttl1:after{
    width: 170px;
    margin: 22px auto 0;
  }
  .partner_values_head_ttl2{
    font-size: 21px;
    margin-top: 25px;
  }
  .partner_values_msg{
    text-align: center;
  }
  .partner_values_msg p{
    display: inline-block;
    text-align: left;
  }

  .partner_values{

  }
  * + .partner_values{
    margin-top: 40px;
  }
  .partner_values{
    justify-content: center;
    gap: 30px 30px;
  }
  .partner_values_item{
    width: calc(50% - 15px);
    padding: 36px 30px;
  }
  .partner_values_item:before{
    inset: 10px;
  }
  .partner_values_item_head{
    font-size: 24px;
  }
  .partner_values_item_head_num{
    font-size: 1em;
  }
  .partner_values_item_head_en{
    font-size: 1em;
    margin-top: 12px;
  }
  .partner_values_item_head_en:after{
    width: 100px;
    margin: 20px auto 0;
  }
  .partner_values_item_head_ja{
    font-size: 1.13em;
    letter-spacing: 0.2em;
    margin-top: 13px;
  }

  .partner_values_item_head_ttl{
    font-size: 1.5em;
    margin-top: 15px;
  }
  .partner_values_item_txt{
    font-size: 16px;
    margin-top: 15px;
  }

  .partner_values.col2 .partner_values_item_head{
    font-size: 20px;
  }

  /* エリア */
  .partner_area{
    padding-bottom: 50px;
  }
  .partner_area_box1{

  }
  .partner_area_box2{

  }
  .partner_area_map{
    text-align: center;
  }
  .partner_area_map img{
    width: 350px;
  }

  /* ご協力いただきたい企業様 */
  .partner_need_list{
    /*gap: 20px 40px;*/
    margin-bottom: 50px;
  }
  .partner_need_list p{
    /*width: calc(33.333% - 26.666px);*/
    padding: 17px 10px;
    font-size: 16px;
  }

  .partner_nedd_msg{
    font-size: 18px;
    line-height: 2;
    /*text-align: center;*/
  }
}
@media (min-width:1024px){

  /* Values */
  .partner_values_wrap{
    padding: 45px 50px;
  }
  * + .partner_values_wrap{
    margin-top: 100px;
  }
  .partner_values_head{
    margin-bottom: 18px;
  }
  .partner_values_head_ttl1{
    font-size: 32px;
  }
  .partner_values_head_ttl1:after{
    width: 170px;
    margin: 22px auto 0;
  }
  .partner_values_head_ttl2{
    font-size: 21px;
    margin-top: 25px;
  }

  .partner_values{

  }
  * + .partner_values{
    margin-top: 40px;
  }
  .partner_values{
    gap: 30px 15px;
  }
  .partner_values_item{
    width: calc(33.333% - 10px);
    padding: 36px 30px;
  }
  .partner_values_item_head{
    font-size: 24px;
  }
  .partner_values_item_txt{
    font-size: 16px;
    margin-top: 15px;
  }



  /* エリア */
  .partner_area{
    padding-top: 30px;
    min-height: 400px;
  }
  .partner_area_box1{
    width: calc(100% - 400px);
  }
  .partner_area_box2{
    width: auto;
    margin-top: 0;

    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
  }
  .partner_area_map{

  }
  .partner_area_map img{

  }

  .partner_values.col2{
    /*gap: 30px 15px;*/
  }
  .partner_values.col2 .partner_values_item{
    width: calc(50% - 15px);
  }


  /* ご協力いただきたい企業様 */
  .partner_need_list{
    gap: 20px 40px;
    margin-bottom: 90px;
  }
  .partner_need_list p{
    width: calc(33.333% - 26.666px);
    padding: 17px 10px;
    font-size: 18px;
  }

  .partner_nedd_msg{
    font-size: 18px;
    line-height: 2;
    text-align: center;
  }
}
@media (min-width:1200px){


}
@media (min-width:1470px){

  /* Values */
  .partner_values_wrap{
    padding: 45px 95px 65px;
  }
  .partner_values_wrap.pb100{
    padding-bottom: 100px;
  }
  * + .partner_values_wrap{
    margin-top: 100px;
  }
  .partner_values_head{
    margin-bottom: 18px;
  }
  .partner_values_head_ttl1{
    font-size: 32px;
  }
  .partner_values_head_ttl1:after{
    width: 170px;
    margin: 22px auto 0;
  }
  .partner_values_head_ttl2{
    font-size: 21px;
    margin-top: 25px;
  }

  .partner_values{

  }
  * + .partner_values{
    margin-top: 40px;
  }
  .partner_values{
    gap: 30px 65px;
  }
  .partner_values_item{
    width: calc(33.333% - 43.333px);
    padding: 36px 30px;
  }
  .partner_values_item_head{
    font-size: 30px;
  }
  .partner_values_item_txt{
    font-size: 16px;
    margin-top: 15px;
  }

  .partner_values.col2{
    gap: 30px 30px;
  }
  .partner_values.col2 .partner_values_item{
    width: calc(50% - 15px);
  }
  .partner_values.col2 .partner_values_item_head{
    font-size: 26px;
  }
  .partner_values.col2 .partner_values_item_head_ja{
    letter-spacing: 0;
    margin-left: -15px;
    margin-right: -15px;
  }

  /* エリア */
  .partner_area{
    padding-top: 50px;
    /*min-height: 410px;*/
    min-height: 460px;
  }
  .partner_area_box1{

  }
  .partner_area_box2{
  }
  .partner_area_map{

  }
  .partner_area_map img{
    width: 400px;
  }

  .partner_nedd_msg{
    font-size: 24px;
    line-height: 2;
    text-align: center;
  }
}
@media (min-width:1720px){

  /* エリア */
  .partner_area{
    padding-top: 100px;
    padding-bottom: 80px;
    min-height: 780px;
  }
  .partner_area_box1{

  }
  .partner_area_box2{
  }
  .partner_area_map{

  }
  .partner_area_map img{
    width: auto;
  }

  .partner_values.col2{
    /*gap: 30px 65px;*/
  }
  .partner_values.col2 .partner_values_item{
    /*width: calc(50% - 32.5px);*/
    padding: 36px 66px;
    min-height: 400px;

  }

  .partner_values.col2 .partner_values_item_head{
    font-size: 30px;
  }
  .partner_values.col2 .partner_values_item_head_ja{
    margin-left: -35px;
    margin-right: -35px;
  }



}




/*******************************
*　
********************************/

.cmn_about.bdrTop{
  border-top: 1px solid var(--bdr-color);
  padding-top: 44px;
}

/* セクション設定 */
.pg_recruit1{

}
.pg_recruit1 .section.sec1{

}
.pg_recruit1 .section.sec2{
  padding-top: 20px;
}
.pg_recruit1 .section.sec3{
  padding-top: 0;
}


@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){

}
@media (min-width:768px){
  .cmn_about.bdrTop{
    padding-top: 85px;
  }

  .pg_recruit1 .section.sec1{

  }
  .pg_recruit1 .section.sec2{
    padding-top: 50px;
  }
  .pg_recruit1 .section.sec3{
    padding-top: 40px;
  }

  .pg_recruit1 .section.sec2 .cmn_about_ttl + .cmn_about_ttl2,
  .pg_recruit1 .section.sec3 .cmn_about_ttl + .cmn_about_ttl2{
    margin-bottom: 30px;
  }

}
@media (min-width:1024px){
  .pg_recruit1 .section.sec2 {
    padding-top: 90px;
  }

}
@media (min-width:1200px){


}
@media (min-width:1470px){

  .pg_recruit1 .section.sec2 .cmn_about_ttl + .cmn_about_ttl2,
  .pg_recruit1 .section.sec3 .cmn_about_ttl + .cmn_about_ttl2{
    margin-top: -40px;
    margin-bottom: 30px;
  }
}
@media (min-width:1720px){


}

/* メイン部分 */

/* スタッフインタビュー */
.recruit_interview{

}
.recruit_interview_row{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px 0;
  padding: 30px 0;
  position: relative;
  z-index: 1;
}
.recruit_interview_row:last-child{
  padding-bottom: 0;
}
.recruit_interview_row + .recruit_interview_row{

}
.recruit_interview_row:nth-child(odd){

}
.recruit_interview_row:nth-child(even):before{
  content: "";
  background: #f2f2f2;
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: var(--margin-for-device-side-w);
  right: var(--margin-for-device-side-w);
  pointer-events: none;
}
.recruit_interview_box1{
  width: 100%;
}
.recruit_interview_box2{
  width: 100%;
}
.recruit_interview_box3{
  width: 100%;
}
.recruit_interview_box4{
  width: 100%;
}
.recruit_interview_img{

}
.recruit_interview_img.img_fit:before{
  padding-top: 70%;
}
.recruit_interview_name {
  margin-top: 10px;
  font-size: 16px;
  letter-spacing: 0.075em;
}
.recruit_interview_qa{

}
.recruit_interview_qa + .recruit_interview_qa{
  margin-top: 25px;
}
.recruit_interview_ttl{
  background: var(--sub-color);
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 1.4;
  padding: 8px 10px;
  margin-bottom: 10px;
}
.recruit_interview_txt{
  font-size: 16px;
  letter-spacing: 0.075em;
}



@media (max-width:767px){

}
@media (min-width:768px){

  /* スタッフインタビュー */
  .recruit_interview{

  }
  .recruit_interview_row{
    gap: 40px 0;
    padding: 50px 0;
  }
  .recruit_interview_box1{
    /*width: 100%;*/
  }
  .recruit_interview_box2{
    /*width: 100%;*/
    /*padding-bottom: 20px;*/
  }
  .recruit_interview_box3{
    /*width: 49.01%;*/
  }
  .recruit_interview_box4{
    /*width: 100%;*/
  }
  .recruit_interview_name {
    margin-top: 15px;
    font-size: 18px;
  }
  .recruit_interview_qa{

  }
  .recruit_interview_qa + .recruit_interview_qa{
    margin-top: 25px;
  }
  .recruit_interview_ttl{
    font-size: 16px;
    padding: 10px 15px;
    margin-bottom: 20px;
  }
  .recruit_interview_txt{
    font-size: 16px;
  }


}
@media (min-width:1024px){

  /* スタッフインタビュー */
  .recruit_interview{

  }
  .recruit_interview_row{
    gap: 40px 0;
    padding: 70px 0;
  }
  .recruit_interview_box1{
    width: 42.76%;
    width: 42%;
  }
  .recruit_interview_box2{
    width: 55%;
    padding-bottom: 20px;
  }
  .recruit_interview_box3{
    width: 48.5%;
  }

  .recruit_interview_name {
    /*font-size: 18px;*/
  }
  .recruit_interview_ttl{
    /*font-size: 18px;*/
  }


}
@media (min-width:1200px){


}
@media (min-width:1470px){

  /* スタッフインタビュー */
  .recruit_interview{

  }
  .recruit_interview_row{
    gap: 40px 0;
    padding: 100px 0;
  }
  .recruit_interview_box1{
    width: 42.76%;
  }
  .recruit_interview_box2{
    width: 50.98%;
    padding-bottom: 20px;
  }
  .recruit_interview_box3{
    width: 49.01%;
  }

  .recruit_interview_name {
    font-size: 18px;
  }
  .recruit_interview_ttl{
    font-size: 18px;
  }

}
@media (min-width:1720px){


}




/* スケジュール */
.recruit_sche{
  display: flex;
  flex-wrap: wrap;
  gap: 60px 70px;
}
* + .recruit_sche{
  margin-top: 50px;
}
.recruit_sche_item{
  /*order: 1;*/
  width: 100%;
  position: relative;
  z-index: 1;
}
.recruit_sche_item_img{

}
.recruit_sche_item_img.img_fit{
  overflow: visible;
}
.recruit_sche_item_img.img_fit:before{
  padding-top: 71.739%;
}
.recruit_sche_item_time{
  display: flex;
  margin-bottom: 15px;
}
.recruit_sche_item_time p{
  width: 160px;
  padding: 4px 10px;
  background: var(--main-color);
  font-size: 18px;
  font-weight: 500;
  font-family: var(--font-en);
  letter-spacing: 0.075em;
  text-align: center;
}
.recruit_sche_item_ttl{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.075em;
  margin-bottom: 15px;
}
.recruit_sche_item_ttl:after{
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: #000;
  margin-top: 10px;
}
.recruit_sche_item_txt{
  font-size: 16px;
  line-height: 1.875;
  text-align: justify;
}


/* スケジュール(ライン) */
/*.recruit_sche_item_img:after{
  content: "";
  width: 70px;
  height: 5px;
  background: var(--sub-color);
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 100%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}*/


@media (max-width:767px){

  /* スケジュール */
  .recruit_sche_item{

  }
  .recruit_sche_item + .recruit_sche_item:before{
    content: "";
    width: 5px;
    height: 50px;
    background: var(--sub-color);
    position: absolute;
    z-index: 0;
    bottom: 100%;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
}
@media (min-width:768px){

  /* スケジュール */
  .recruit_sche{
    gap: 70px 30px;
  }
  * + .recruit_sche{
    margin-top: 50px;
  }
  .recruit_sche_item{
    order: 1;
    width: calc(50% - 15px);
  }
  .recruit_sche_item_time{
    margin-bottom: 15px;
  }
  .recruit_sche_item_time p{
    width: 160px;
    font-size: 18px;
  }
  .recruit_sche_item_ttl{
    font-size: 16px;
    margin-bottom: 15px;
  }
  .recruit_sche_item_ttl:after{
    width: 50px;
    height: 2px;
    margin-top: 10px;
  }
  .recruit_sche_item_txt{
    font-size: 16px;
    line-height: 1.875;
  }

  /* スケジュール(並び) */
  .recruit_sche_item:nth-child(4){
    order: 6;
  }
  .recruit_sche_item:nth-child(5){
    order: 5;
  }
  .recruit_sche_item:nth-child(6){
    order: 4;
  }
  .recruit_sche_item:nth-child(7){
    order: 7;
  }
  .recruit_sche_item:nth-child(8){
    order: 8;
  }
  .recruit_sche_item:nth-child(9){
    order: 9;
  }
  .recruit_sche_item:nth-child(10){
    order: 12;
  }
  .recruit_sche_item:nth-child(11){
    order: 11;
  }
  .recruit_sche_item:nth-child(12){
    order: 10;
  }

  /* スケジュール(ライン) */
  .recruit_sche_item_img:after{
    content: "";
    width: 30px;
    height: 5px;
    background: var(--sub-color);
    position: absolute;
    z-index: 0;
    top: 50%;
    left: 100%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }

  /* 縦ライン */
  .recruit_sche_item:before{
    width: 5px;
    height: 50px;
    background: var(--sub-color);
    position: absolute;
    z-index: 0;
    bottom: 100%;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
  .recruit_sche_item:first-child:before{
    display: none;
  }

}
@media (min-width:768px) and (max-width:1023px){

  /* スケジュール(並び) */
  .recruit_sche_item:nth-child(3){
    order: 4;
  }
  .recruit_sche_item:nth-child(4){
    order: 3;
  }
  .recruit_sche_item:nth-child(5){
    order: 5;
  }
  .recruit_sche_item:nth-child(6){
    order: 6;
  }
  .recruit_sche_item:nth-child(7){
    order: 8;
  }
  .recruit_sche_item:nth-child(8){
    order: 7;
  }
  .recruit_sche_item:nth-child(9){
    order: 9;
  }
  .recruit_sche_item:nth-child(10){
    order: 10;
  }
  .recruit_sche_item:nth-child(11){
    order: 12;
  }
  .recruit_sche_item:nth-child(12){
    order: 11;
  }


  .recruit_sche_item:nth-child(2n) .recruit_sche_item_img:after{
    display: none;
  }
  .recruit_sche_item:nth-child(4n+3) .recruit_sche_item_img:after{
    left: auto;
    right: 100%;
  }

  /* 縦 */
  .recruit_sche_item:nth-child(4n+1):before,
  .recruit_sche_item:nth-child(4n+3):before{
    content: "";
  }


}
@media (min-width:1024px){

  /* スケジュール */
  .recruit_sche{
    gap: 100px 30px;
  }
  * + .recruit_sche{
    margin-top: 50px;
  }
  .recruit_sche_item{
    width: calc(33.333% - 20px);
  }
  .recruit_sche_item_time{
    margin-bottom: 15px;
  }
  .recruit_sche_item_time p{
    width: 160px;
    font-size: 18px;
  }

  /* スケジュール(並び) */
  .recruit_sche_item:nth-child(4){
    order: 6;
  }
  .recruit_sche_item:nth-child(5){
    order: 5;
  }
  .recruit_sche_item:nth-child(6){
    order: 4;
  }
  .recruit_sche_item:nth-child(7){
    order: 7;
  }
  .recruit_sche_item:nth-child(8){
    order: 8;
  }
  .recruit_sche_item:nth-child(9){
    order: 9;
  }
  .recruit_sche_item:nth-child(10){
    order: 12;
  }
  .recruit_sche_item:nth-child(11){
    order: 11;
  }
  .recruit_sche_item:nth-child(12){
    order: 10;
  }

  /* スケジュール(ライン) */
  .recruit_sche_item_img:after{
    /*width: 70px;*/
    /*height: 5px;*/
    /*top: 50%;*/
    /*left: 100%;*/
    /*-webkit-transform: translate(0, -50%);*/
    /*transform: translate(0, -50%);*/
  }
  .recruit_sche_item:nth-child(3n) .recruit_sche_item_img:after{
    display: none;
  }
  .recruit_sche_item:nth-child(6n+4) .recruit_sche_item_img:after,
  .recruit_sche_item:nth-child(6n+5) .recruit_sche_item_img:after{
    left: auto;
    right: 100%;
  }

  /* 縦ライン */
  .recruit_sche_item:before{
    width: 5px;
    height: 70px;
  }

  /* 縦 */
  .recruit_sche_item:nth-child(6n+4):before,
  .recruit_sche_item:nth-child(7n):before{
    content: "";
  }
}
@media (min-width:1200px){

  /* スケジュール */
  .recruit_sche{
    gap: 100px 70px;
  }
  * + .recruit_sche{
    margin-top: 70px;
  }
  .recruit_sche_item{
    width: calc(33.333% - 46.666px);
  }
  .recruit_sche_item_time{
    margin-bottom: 15px;
  }
  .recruit_sche_item_time p{
    width: 160px;
    font-size: 18px;
  }

  /* スケジュール(ライン) */
  .recruit_sche_item_img:after{
    width: 70px;
  }

}
@media (min-width:1470px){


}
@media (min-width:1720px){


}

/* リンクボタン */
.recruit_links{

}
.recruit_links{

}
.recruit_links{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 50px;
}
.recruit_links_item{
  width: 100%;
}
.recruit_links_item:nth-child(n+2){
  margin-top: 15px;
}
.recruit_links_item a{
  display: block;
  border: 1px solid #192a4d;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-ja);
  position: relative;
  transition: all .2s;
  padding: 18px 0;
}
.recruit_links_item a p{
  letter-spacing: 0.075em;
}
.recruit_links_item a:after{
  content: "→";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  padding-bottom: 1px;
  background: var(--sub-color);
  color: #FFF;
  font-size: 15px;
  font-weight: 500;
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 25px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.recruit_links_item a:hover{
  background: #192a4d;
  color: #fff;
}
.recruit_links_item a:hover:after{
  color: var(--sub-color);
  background: #FFF;
  margin-right: -5px;
}

@media (max-width:767px){

}
@media (min-width:768px){
  /* リンクボタン */
  .recruit_links{
    margin-top: 80px;
    margin-inline: -10px;
  }
  .recruit_links_item{
    width: 50%;
    padding-inline: 10px;
  }
  .recruit_links_item:nth-child(n+2){
    margin-top: 0;
  }
  .recruit_links_item a{
    font-size: 21px;
    padding: 25px 0;
  }
  .recruit_links_item a:after{
    width: 28px;
    top: 50%;
    right: 15px;
  }
}
@media (min-width:768px) and (max-width:1023px){


}
@media (min-width:1024px){
  /* リンクボタン */
  .recruit_links{
    margin-top: 110px;
    margin-inline: -15px;
  }
  .recruit_links_item{
    width: 50%;
    padding-inline: 15px;
  }
  .recruit_links_item a{
    font-size: 18px;
    padding: 25px;
  }
  .recruit_links_item a:after{
    width: 28px;
    top: 50%;
    right: 25px;
  }
}
@media (min-width:1200px){


}
@media (min-width:1470px){
  /* リンクボタン */
  .recruit_links{
    margin-top: 140px;
    margin-inline: -15px;
  }
  .recruit_links_item{
    width: 50%;
    padding-inline: 15px;
  }
  .recruit_links_item a{
    font-size: 21px;
    padding: 33px 0;
  }
  .recruit_links_item a:after{
    width: 34px;
    top: 50%;
    right: 32px;
  }

}
@media (min-width:1720px){
  /* リンクボタン */
  .recruit_links{
    margin-top: 165px;
  }
  .recruit_links_item a:after {
    width: 34px;
    top: 50%;
    right: 48px;
  }
}


/*******************************
*　
********************************/

/* セクション設定 */
.pg_recruit2{

}
.pg_recruit2 .section.sec1{

}
.pg_recruit2 .section.sec2{
  padding-top: 20px;
}
.pg_recruit2 .section.sec3{
  padding-top: 20px;
}
.pg_recruit2 .section.sec4{
  padding-top: 20px;
}


@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){

}
@media (min-width:768px){

  .pg_recruit2{

  }
  .pg_recruit2 .section.sec1{

  }
  .pg_recruit2 .section.sec2{
    padding-top: 50px;
  }
  .pg_recruit2 .section.sec3{
    padding-top: 50px;
  }
  .pg_recruit2 .section.sec4{
    padding-top: 50px;
  }

}
@media (min-width:1024px){


}
@media (min-width:1200px){

  .pg_recruit2{

  }
  .pg_recruit2 .section.sec1{

  }
  .pg_recruit2 .section.sec2{
    padding-top: 90px;
  }
  .pg_recruit2 .section.sec3{
    padding-top: 90px;
  }
  .pg_recruit2 .section.sec4{
    padding-top: 90px;
  }

}
@media (min-width:1470px){



}
@media (min-width:1720px){


}

/* メイン部分 */


/* ABOUT */
.recruit_about{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 30px 15px;
  background: #f2f2f2;
}
* + .recruit_about{
  margin-top: 30px;
}
.recruit_about_box1{
  width: 100%;
}
.recruit_about_box2{
  width: 100%;
  margin-top: 20px;
  padding: 15px 0;
  border-top: 1px solid var(--sub-color);
  border-bottom: 1px solid var(--sub-color);
}
.recruit_about_ttl{
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.2;
  /*-ms-writing-mode: tb-rl;*/
  /*writing-mode: vertical-rl;*/
}
.recruit_about_txt{
  font-weight: 500;
}

/* WORKS */
.recruit_works_wrap{

}
* + .recruit_works_wrap{
  margin-top: 50px;
}

.recruit_works{
  display: flex;
  flex-wrap: wrap;
  gap: 20px 20px;
}
* + .recruit_works{
  margin-top: 50px;
}
.recruit_works_item{
  width: 100%;
  padding: 25px 20px;
  border: 1px solid #000;

}
.recruit_works_item_head{
  text-align: center;
  margin-bottom: 10px;
}
.recruit_works_item_head:after{
  content: "";
  display: block;
  width: 150px;
  height: 1px;
  background: #000;
  margin: 20px auto 0;
}
.recruit_works_item_head2{
  text-align: center;
  margin-bottom: 10px;
}
.recruit_works_item_head_icon{
  margin-bottom: 18px;
}
.recruit_works_item_head_icon img{
  height: 70px;
}
.recruit_works_item_head_icon:after{
  content: "";
  display: block;
  width: 150px;
  height: 1px;
  background: #000;
  margin: 15px auto 0;
}
.recruit_works_item_head_en{
  font-size: 20px;
  font-weight: 400;
  font-family: var(--font-en);
  letter-spacing: 0;
}
.recruit_works_item_head_ja{
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  margin-top: 8px;
}



.recruit_works_item_head:after{
  content: "";
  display: block;
  width: 300px;
  height: 1px;
  background: #000;
  margin: 20px auto 0;
}

.recruit_works_item_txt{
  font-size: 16px;
  line-height: 1.875;
  letter-spacing: 0;
  text-align: justify;
}

/*.recruit_works.col2{
  gap: 20px 30px;
}
.recruit_works.col2 .recruit_works_item{
  width: calc(50% - 15px);
  padding: 20px 75px 25px;
}
.recruit_works.col3{
  gap: 20px 40px;
}
.recruit_works.col3 .recruit_works_item{
  width: calc(33.333% - 26.666px);
  padding: 50px 65px 52px;
}*/

/* ギャラリー */
.recruit_gallery{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 10px;
}
* + .recruit_gallery{
  margin-top: 30px;
}
.recruit_gallery_item{
  width: calc(50% - 5px);
}
.recruit_gallery_item.img_fit:before{
  padding-top: 72.917%;
}

/* 募集要項 */
.recruit_entry_btn{
  display: flex;
  justify-content: center;
  margin-top: 30px;
  text-align: center;
}
.recruit_entry_btn_a{
  width: 745px;
  max-width: 100%;
  padding: 10px 20px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.075em;
  border: 2px solid var(--sub-color);
  position: relative;
  z-index: 1;
}
.recruit_entry_btn_a:after{
  content: "→";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  padding-bottom: 1px;
  background: var(--sub-color);
  color: #FFF;
  font-size: 15px;
  font-weight: 500;
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 45px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.recruit_entry_btn_a:hover{
  background: var(--sub-color);
  color: #FFF;
}
.recruit_entry_btn_a:hover:after{
  color: var(--sub-color);
  background: #FFF;
  margin-right: -5px;
}

@media (max-width:767px){

}
@media (min-width:768px){

  /* ABOUT */
  .recruit_about{
    padding: 30px 30px;
  }
  * + .recruit_about{
    margin-top: 40px;
  }
  .recruit_about_box1{
    width: 60px;
  }
  .recruit_about_box2{
    width: calc(100% - 60px);
    padding: 20px 10px;
    margin-top: 0;
  }
  .recruit_about_ttl{
    font-size: 30px;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
  .recruit_about_txt{

  }

  /* WORKS */
  .recruit_works_wrap{

  }
  * + .recruit_works_wrap{
    margin-top: 50px;
  }

  .recruit_works{
    gap: 20px 30px;
  }
  * + .recruit_works{

  }
  .recruit_works_item{
    width: calc(50% - 15px);
  }
  .recruit_works_item_head{
    margin-bottom: 22px;
  }
  .recruit_works_item_head:after{
    width: 150px;
    margin: 20px auto 0;
  }
  .recruit_works_item_head2{
    margin-bottom: 25px;
  }
  .recruit_works_item_head_icon{
    margin-bottom: 18px;
  }
  .recruit_works_item_head_icon img{
    height: 75px;
  }
  .recruit_works_item_head_icon:after{
    width: 150px;
    margin: 15px auto 0;
  }
  .recruit_works_item_head_en{
    font-size: 24px;
  }
  .recruit_works_item_head_ja{
    font-size: 20px;
  }
  .recruit_works_item_head:after{
    width: 150px;
    margin: 20px auto 0;
  }




  .recruit_works_item_txt{
    font-size: 16px;
    line-height: 1.875;
  }

  /*.recruit_works.col2{
    gap: 20px 30px;
  }
  .recruit_works.col2 .recruit_works_item{
    width: calc(50% - 15px);
    padding: 20px 75px 25px;
  }
  .recruit_works.col3{
    gap: 20px 40px;
  }
  .recruit_works.col3 .recruit_works_item{
    width: calc(33.333% - 26.666px);
    padding: 50px 65px 52px;
  }*/

  /* ギャラリー */
  .recruit_gallery{
    gap: 20px 20px;
  }
  * + .recruit_gallery{
    margin-top: 30px;
  }
  .recruit_gallery_item{
    width: calc(33.333% - 13.333px);
  }

  /* 募集要項 */
  .recruit_entry_btn{
    margin-top: 50px;
  }
  .recruit_entry_btn_a{
    width: 500px;
    padding: 20px 20px;
    font-size: 18px;
  }
  .recruit_entry_btn_a:after{
    width: 34px;
    padding-bottom: 1px;
    font-size: 15px;
    right: 45px;
  }

}
@media (min-width:1024px){

  .recruit_works.col2{
    gap: 20px 20px;
  }
  .recruit_works.col2 .recruit_works_item{
    width: calc(50% - 10px);
    padding: 20px 75px 25px;
  }
  .recruit_works.col3{
    gap: 20px 20px;
  }
  .recruit_works.col3 .recruit_works_item{
    width: calc(33.333% - 13.333px);
    padding: 50px 30px 52px;
  }

}
@media (min-width:1200px){

  /* ABOUT */
  .recruit_about{
    padding: 40px 60px 40px 30px;
  }
  * + .recruit_about{
    margin-top: 70px;
  }
  .recruit_about_box1{
    width: 80px;
  }
  .recruit_about_box2{
    width: calc(100% - 80px);
    padding: 40px 10px;
  }
  .recruit_about_ttl{
    font-size: 40px;
  }

  /* WORKS */
  .recruit_works_wrap{

  }
  * + .recruit_works_wrap{
    margin-top: 90px;
  }
  .recruit_works_wrap .tt2{
    margin-bottom: 50px;
  }

  .recruit_works{
    gap: 20px 30px;
  }
  * + .recruit_works{

  }
  .recruit_works_item{
  }
  .recruit_works_item_head{
    margin-bottom: 22px;
  }
  .recruit_works_item_head:after{
    width: 300px;
    margin: 20px auto 0;
  }
  .recruit_works_item_head2{
    margin-bottom: 25px;
  }
  .recruit_works_item_head_icon{
    margin-bottom: 18px;
  }
  .recruit_works_item_head_icon img{
    height: auto;
  }
  .recruit_works_item_head_icon:after{
    width: 300px;
    margin: 35px auto 0;
  }
  .recruit_works_item_head_en{
    font-size: 24px;
  }
  .recruit_works_item_head_ja{
    font-size: 20px;
  }
  .recruit_works_item_head:after{
    width: 300px;
    margin: 20px auto 0;
  }

  .recruit_works_item_txt{
    font-size: 16px;
    line-height: 1.875;
  }

  .recruit_works.col2{
    gap: 20px 30px;
  }
  .recruit_works.col2 .recruit_works_item{
    width: calc(50% - 15px);
    min-height: 255px;
    padding: 20px 75px 25px;
  }
  .recruit_works.col3{
    gap: 20px 40px;
  }
  .recruit_works.col3 .recruit_works_item{
    width: calc(33.333% - 26.666px);
    min-height: 400px;
    padding: 50px 62px 35px;
  }

  /* 募集要項 */
  .recruit_entry_btn{
    margin-top: 80px;
  }
  .recruit_entry_btn_a{
    width: 745px;
    padding: 20px 20px;
    font-size: 21px;
  }
  .recruit_entry_btn_a:after{
    width: 34px;
    padding-bottom: 2px;
    font-size: 18px;
    right: 45px;
  }

}
@media (min-width:1470px){

  /* ABOUT */
  .recruit_about{
    padding: 40px 60px 40px 30px;
  }
  * + .recruit_about{
    margin-top: 90px;
  }
  .recruit_about_box1{
    width: 110px;
  }
  .recruit_about_box2{
    width: calc(100% - 110px);
    padding: 40px 10px;
  }
  .recruit_about_ttl{
    font-size: 46px;
  }



  /* ギャラリー */
  .recruit_gallery{
    gap: 20px 40px;
  }
  * + .recruit_gallery{
    margin-top: 50px;
  }
  .recruit_gallery_item{
    width: calc(33.333% - 26.666px);
  }


  .pg_recruit2 .section.sec2 .cmn_about_ttl_box,
  .pg_recruit2 .section.sec3 .cmn_about_ttl_box,
  .pg_recruit2 .section.sec4 .cmn_about_ttl_box{
    margin-bottom: 15px;
  }


  .recruit_entry_btn_a{
    /*width: 745px;*/
    padding: 32px 20px;
    font-size: 21px;
  }
}
@media (min-width:1720px){



}


/*******************************
*　
********************************/


/* メイン部分 */


/*データ*/
.home_about_wrap2{
  padding-top: 36px;
}
.home_about_param{
  display: flex;
  flex-wrap: wrap
}
* + .home_about_param{
  margin-top: 50px;
}
.home_about_param_item{
  width: 100%;
}
.home_about_param_item:nth-child(n+2){
  margin-top: 2px;
}
.home_about_param_item_inner{
  background: var(--sub-color);
  ;
  color: #fff;
  padding: 20px 0 11px;
}
.home_about_param_item_head{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
}
.home_about_param_item_img{
  width: 120px;
}
.home_about_param_item_data{
  text-align: center
}
.home_about_param_item_data_sub{
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;

}
.home_about_param_item_data_txt{
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}
.home_about_param_item_data_txt strong{
  font-size: 50px;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  line-height: 1;
}
.home_about_param_item_tt{
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  margin-top: 19px;
}
.home_about_param_item_tt p{
  display: inline-block;
  background: #fff;
  color: #181818;
  letter-spacing: 0.075em;
  border-radius: 16px;
  width: 58.55%;
  padding: 5px 0;
}

@media (max-width:767px){

  .home_about_param_item_tt p{
    width: 75%;
  }

}
@media (min-width:768px){

  /*データ*/
  .home_about_wrap2{

  }
  .home_about_param{
    margin-inline:-1px;
  }
  .home_about_param_item{
    width: 50%;
    padding-inline:1px
  }
  .home_about_param_item:nth-child(n+2){
    margin-top: 0;
  }
  .home_about_param_item:nth-child(n+3){
    margin-top: 2px;
  }
  .home_about_param_item_inner{
    height: 100%;
  }
  .home_about_param_item_head{
    align-items: center;
    padding: 0 26px 0 43px;
  }
  .home_about_param_item_img{
    width: 120px;
  }
  .home_about_param_item_data{

  }
  .home_about_param_item_data_sub{
    position: relative;
    left: -35px;
  }
  .home_about_param_item_data_txt{
    font-size: 20px;
  }
  .home_about_param_item_data_txt strong{
    font-size: 60px;
  }
  .home_about_param_item_tt{

  }
  .home_about_param_item_tt p{
    width:70%;
  }

}
@media (min-width:1024px){

  /*データ*/
  .home_about_param_item_img{
    width: 120px;
  }

}
@media (min-width:1200px){

  /*データ*/
  .home_about_wrap2{

  }
  .home_about_param{

  }
  .home_about_param_item{
    width: 33.333%;
  }
  .home_about_param_item:nth-child(n+3){
    margin-top: 0;
  }
  .home_about_param_item:nth-child(n+4){
    margin-top: 2px;
  }
  .home_about_param_item_inner{

  }
  .home_about_param_item_head{
    padding: 0 60px 0 72px;
  }
  .home_about_param_item_img{
    width: 120px;
  }
  .home_about_param_item_data{

  }
  .home_about_param_item_data_sub{

  }
  .home_about_param_item_data_txt{
    font-size: 24px;
  }
  .home_about_param_item_data_txt strong{
    font-size: 60px;
  }
  .home_about_param_item_data_txt.sm strong{
    font-size: 60px;
  }
  .home_about_param_item_tt{

  }

  .home_about_param_item_tt p {
    width: 225px;
  }
}
@media (min-width:1470px){

  .home_about_param_item_data_txt.sm strong{
    font-size: 94px;
  }
}
@media (min-width:1720px){



}

/*******************************
*　
********************************/

/* セクション設定 */
.pg_recruit2{

}
.pg_recruit2 .section.sec1{

}
.pg_recruit2 .section.sec2{
}
.pg_recruit2 .section.sec3{
}


@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){

}
@media (min-width:768px){


}
@media (min-width:1024px){


}
@media (min-width:1200px){


}
@media (min-width:1470px){



}
@media (min-width:1720px){


}

/* メイン部分 */


@media (max-width:767px){

}
@media (min-width:768px){


}
@media (min-width:1024px){


}
@media (min-width:1200px){


}
@media (min-width:1470px){

}
@media (min-width:1720px){



}


/*******************************
*　
********************************/

/* セクション設定 */
.pg_company{

}
.pg_company .section.sec1{

}
.pg_company .section.sec2{

}


@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){

}
@media (min-width:768px){

  .pg_company{

  }
  .pg_company .section.sec1{

  }
  .pg_company .section.sec2{

  }

}
@media (min-width:1024px){


}
@media (min-width:1200px){


}
@media (min-width:1470px){


}
@media (min-width:1720px){


}


/* メイン部分 */


/* 会社概要 */
.company_tbl{

}
.company_tbl .table_rows_th,
.company_tbl .table_rows_td{
  color: #000;
  border-color: #808080;
  padding: 10px 10px;
}
.company_tbl .table_rows_th{
  background: #e6e6e6;
  font-weight: 500;
}
.company_tbl .table_rows_td{
  background: #FFF;
}

.company_tbl .table_rows + .table_rows{
  margin-top: 50px;
}

/* マップ */
.company_map{

}
* + .company_map{
  margin-top: 50px;
}
.company_map iframe{
  border: 0;
  width: 100%;
  height: 250px;
}

/* ギャラリー */
.company_gallery_items{
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}
* + .company_gallery_items{
  margin-top: 30px;
}
.company_gallery_item{
  width: 50%;
  padding: 0 5px;
}
.company_gallery_item:nth-child(n+3){
  margin-top: 10px;
}
.company_gallery_item_img{

}
.company_gallery_item_img.img_fit:before{
  padding-top: 71.400%;
}

@media (max-width:767px){

}
@media (min-width:768px){

  /* 会社概要 */
  .company_tbl{

  }
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    padding: 17px 30px 18px;
  }
  .company_tbl .table_rows_th{
    width: 200px;
  }
  .company_tbl .table_rows_td{
  }
  .company_tbl .table_rows + .table_rows{
    margin-top: 50px;
  }

  /* マップ */
  .company_map{

  }
  * + .company_map{
    margin-top: 50px;
  }
  .company_map iframe{
    height: 400px;
  }


  /* ギャラリー */
  .company_gallery_items{
    margin-left: -10px;
    margin-right: -10px;
  }
  * + .company_gallery_items{
    margin-top: 40px;
  }
  .company_gallery_item{
    width: 33.333%;
    padding: 0 10px;
  }
  .company_gallery_item:nth-child(n+3){
    margin-top: 0;
  }
  .company_gallery_item:nth-child(n+4){
    margin-top: 20px;
  }

}
@media (min-width:1024px){


}
@media (min-width:1200px){

  /* 会社概要 */
  .company_tbl{

  }
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    padding: 17px 30px 18px;
  }
  .company_tbl .table_rows_th{
    width: 300px;
  }
  .company_tbl .table_rows_td{
  }

  /* ギャラリー */
  .company_gallery_items{
    margin-left: -15px;
    margin-right: -15px;
  }
  * + .company_gallery_items{
    margin-top: 60px;
  }
  .company_gallery_item{
    width: 33.333%;
    padding: 0 15px;
  }
  .company_gallery_item:nth-child(n+3){
    margin-top: 0;
  }
  .company_gallery_item:nth-child(n+4){
    margin-top: 30px;
  }

}
@media (min-width:1470px){


}
@media (min-width:1720px){


}



/* カテゴリNav */
.cmn_cat_nav{

}
.cmn_cat_nav .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}
.cmn_cat_nav .webgene-item{
  width: 50%;
  padding: 0 5px;
  margin: 5px 0;
  font-size: 12px;
  line-height: 1.4285;
}
.cmn_cat_nav .webgene-item a{
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 50px;
  padding: 2px 10px 3px;
  font-family: var(--font-gothic);
  color: var(--main-color);
  border: 1px solid var(--main-color);
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}

.cmn_cat_nav .webgene-item a:after{
  content: "→";
  font-size: 10px;
  font-family: var(--font-mincho);
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 10px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.cmn_cat_nav .webgene-item.on a,
.cmn_cat_nav .webgene-item a:hover{
  background: var(--main-color);
  color: #FFF;
}
.cmn_cat_nav .webgene-item a:hover:after{
  margin-right: -2px;
}

.cmn_cat_nav.color2 .webgene-item a{
  background: #b8d200;
  border-color: #b8d200;
  color: #FFF;
}
.cmn_cat_nav.color2 .webgene-item a:hover{
  background: var(--main-color);
  border-color: var(--main-color);
}
.cmn_cat_nav.color2 .webgene-item a:before{
  content: "";
  position: absolute;
  z-index: 1;
  border: 2px solid #FFF;
  inset: 0;
}

@media (max-width:767px){

  .cmn_cat_nav.col1_sp .webgene-item{
    width: 100%;
  }
  .cmn_cat_nav.col2_sp .webgene-item{
    width: 50%;
  }
  .cmn_cat_nav.col3_sp .webgene-item{
    width: 33.333%;
  }
  .cmn_cat_nav.col4_sp .webgene-item{
    width: 25%;
  }

  .cmn_cat_nav.txt_sm_sp .webgene-item{
    font-size: 10px;
  }

}
@media (min-width:768px){

  .cmn_cat_nav{
    margin-left: -15px;
    margin-right: -15px;
  }
  .cmn_cat_nav .webgene-item{
    width: 50%;
    padding: 0 15px;
    margin: 12.5px 0;
    font-size: 14px;
  }
  .cmn_cat_nav .webgene-item a{

  }

  .cmn_cat_nav .webgene-item a:after{
    font-size: 14px;
    right: 10px;
  }
  .cmn_cat_nav .webgene-item a:hover:after{
    margin-right: -5px;
  }
}
@media (min-width:1024px){

}
@media (min-width:1200px){

  .cmn_cat_nav{
    margin-left: -15px;
    margin-right: -15px;
  }
  .cmn_cat_nav .webgene-item{
    padding: 0 15px;
    margin: 12.5px 0;
    font-size: 14px;
  }
  .cmn_cat_nav .webgene-item a{

  }

  .cmn_cat_nav.col2 .webgene-item{
    width: 50%;
  }
  .cmn_cat_nav.col3 .webgene-item{
    width: 33.333%;
  }
  .cmn_cat_nav.col4 .webgene-item{
    width: 25%;
  }
  .cmn_cat_nav.col5 .webgene-item{
    width: 20%;
  }

}


/*******************************
*　記事一覧
********************************/

/* 一覧（サムネあり） */
.news_list_thumb{

}
* + .news_list_thumb{
  margin-top: 50px;
}
.posts_category_sp + .news_list_thumb{
  margin-top: 0;
}
.news_list_thumb .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}
.news_list_thumb .webgene-item{
  width: 50%;
  padding: 0 5px;
}
.news_list_thumb .webgene-item:nth-child(n+3){
  margin-top: 15px;
}
.news_list_thumb .webgene-item{

}
.news_list_thumb .webgene-item .inner{
  display: block;
  position: relative;
  z-index: 1;
  color: #000;
  background: #e6e6e6;
}
.news_list_thumb .webgene-item .box1{

}
.news_list_thumb .webgene-item .box2{
  padding: 10px 10px;
}
.news_list_thumb .webgene-item .img{
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.news_list_thumb .webgene-item .img.img_fit:before{
  padding-top: 75%;
  padding-top: 67.92%;
}
.news_list_thumb .webgene-item .meta{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 5px;
}
.news_list_thumb .webgene-item .meta .category{
  font-size: 13px;
  font-weight: 500;
  background: #2850a1;
  color: #FFF;
  padding: 3px 8px;
  margin: 5px 0;
  margin-right: 10px;
}
.news_list_thumb .webgene-item .meta .date{
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-en);
  margin: 5px 0;
  /*margin-right: 10px;*/
}
.news_list_thumb .webgene-item .title{
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}


.news_list_thumb.col3{

}
.news_list_thumb.col4{

}


@media (max-width:767px){

}
@media (min-width:768px){

  /* 一覧（サムネあり） */
  .news_list_thumb{

  }
  * + .news_list_thumb{
    margin-top: 50px;
  }
  .news_list_thumb .webgene-blog{
    margin-left: -7.5px;
    margin-right: -7.5px;
  }
  .news_list_thumb .webgene-item{
    width: 50%;
    padding: 0 7.5px;
  }
  .news_list_thumb .webgene-item:nth-child(n+3){
    margin-top: 15px;
  }
  .news_list_thumb .webgene-item{

  }
  .news_list_thumb .webgene-item .inner{
  }
  .news_list_thumb .webgene-item .box1{

  }
  .news_list_thumb .webgene-item .box2{
    padding: 20px 10px;
  }
  .news_list_thumb .webgene-item .meta{
    margin-bottom: 5px;
  }
  .news_list_thumb .webgene-item .meta .category{
    font-size: 13px;
    /*margin-right: 10px;*/
  }
  .news_list_thumb .webgene-item .meta .date{
    font-size: 15px;
    /*margin-right: 10px;*/
  }
  .news_list_thumb .webgene-item .title{

  }

}
@media (min-width:1024px){

  /* 一覧（サムネあり） */


  /* 3カラム */
  .news_list_thumb.col3 .webgene-item{
    width: 33.333%;
  }
  .news_list_thumb.col3 .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .news_list_thumb.col3 .webgene-item:nth-child(n+4){
    margin-top: 15px;
  }

  /* 4カラム */
  .news_list_thumb.col4 .webgene-item{
    width: 25%;
  }
  .news_list_thumb.col4 .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .news_list_thumb.col4 .webgene-item:nth-child(n+5){
    margin-top: 15px;
  }

}
@media (min-width:1200px){

  /* 一覧（サムネあり） */
  .news_list_thumb{

  }
  * + .news_list_thumb{
    margin-top: 50px;
  }
  .news_list_thumb .webgene-blog{
    margin-left: -7.5px;
    margin-right: -7.5px;
  }
  .news_list_thumb .webgene-item{
    padding: 0 7.5px;
  }
  .news_list_thumb .webgene-item .box1{

  }
  .news_list_thumb .webgene-item .box2{
    padding: 20px 25px;
  }

  .news_list_thumb .webgene-item .title{
    font-size: 16px;
    line-height: 1.875;
  }



}
@media (min-width:1470px){


}
@media (min-width:1720px){


}











/*******************************
*　
********************************/
.pg_xxx{

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}


@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){

}
@media (min-width:768px){
  .pg_xxx{

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }


}
@media (min-width:1024px){


}
@media (min-width:1200px){


}
