@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Outfit:wght@100..900&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap');

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

  /* カラー(ボタン背景色など) */
  --main-color: #323f6b;
  --sub-color: #b18b55;
  --txt-color: #181818;

  /* フォント関連 */
  --font-ja: "Zen Kaku Gothic New", sans-serif;
  /*--font-en: "Outfit",'Noto Sans JP', sans-serif;*/
  --font-en: "Oswald", 'Noto Sans JP',sans-serif;
  /*--font-en: "Cardo", 'Noto Sans JP', sans-serif;*/
  --font-mincho: "Zen Kaku Gothic New", serif;
}


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

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

  background-image: url('/system_panel/uploads/images/body_bg.jpg');
  background-repeat: repeat;
}

#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: 0.075em;
}
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;*/
}
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;
}
.txt_ellipsis_line6{
  -webkit-line-clamp: 6;
}
.txt_ellipsis_line7{
  -webkit-line-clamp: 7;
}
.txt_ellipsis_line10{
  -webkit-line-clamp: 10;
}



/*******************************
*　ヘッダー
********************************/
.header{
  --logo-height: 95px;
  transition: 0.2s all;
}
.hdr1{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 10px 10px;
  background: #FFF;
  transition: 0.2s all;
}

body{
  position: relative;
  z-index: 1;
}
body:before{
  content: "";
  width: 100%;
  height: 0;
  background: #FFF;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
}
  
@media (min-width:768px){
  body:before{
    height: 200px;
  }
}
@media (min-width:1200px){
  body:before{
    height: 250px;
  }
}
@media (min-width:1470px){
  body:before{
    height: 250px;
  }
}
@media (min-width:1720px){
  body:before{
    height: 360px;
  }
}

/* ロゴ */
.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);
  color: #FFF;
  width: 180px;
  padding: 10px 5px;
  font-size: 18px;
  font-family: var(--font-en);
  letter-spacing: 0.05em;
  text-align: center;
  transition: 0.2s all;
  border-radius: 25px;
}
.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: 0;
  box-shadow: 0px 0px 4.75px 0.25px rgba(24, 24, 24, 0.1);
  padding: 15px 30px;
  border-radius: 25px;
}
.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;
}

.hdr_sns_txt{
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font-en);
  color: var(--sub-color);
  margin-right: 30px;
}

.gnav_box1 .hdr_sns{
  justify-content: center;
  margin-left: 0;
  margin-top: 20px;
}


@media (min-width:375px){

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

  .hdr1 {
    justify-content: center;
  }

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

  .hdr_menu > .hdr_sns{
    display: none;
  }

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

  /* ヘッダー固定 */
  body{
    /* ヘッダーの高さに応じて */
    padding-top: 80px;
  }
  .header{
    --logo-height: 70px;
    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    right: 0;
  }

  .hdr1{
    padding: 10px 10px 10px 0;
  }
  .hdr_menu{
    margin-left: auto;
  }

  /* ロゴ */
  .hdr_logo{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
  }
  .hdr_logo a{
    display: block;
    background: #FFF;
    padding: 15px 15px;
    border-radius: 0 0 20px 0;
  }
  .hdr_logo img{
    /*width: 180px;*/
  }

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

  }
  .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;
  }

  .hdr_contact{
    margin-left: 10px;
  }
  .hdr_contact a{
    width: 140px;
    padding: 10px 5px;
    font-size: 16px;
  }

  .hdr_sns{
    padding: 10px 10px;
  }


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

  .header{
    /*--logo-height: 48px;*/
  }

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

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

  }
  .header.slim .hdr_logo img{
  }

  /* TELボタン */
  .hdr_tel{

  }
  .hdr_tel_txt1{
    font-size: 26.5px;
  }
  .hdr_sns{
    padding: 10px 20px;
  }
}
@media (min-width:1200px){

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

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

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

  }
  .header.slim .hdr_logo img{
  }


}
@media (min-width:1366px){
  body{
    /* ヘッダーの高さに応じて */
    padding-top: 99px;
  }
  .header{
    --logo-height: 100px;
  }
  .hdr1{
    /*padding: 15px 30px 15px 0;*/
    padding: 25px 30px 25px 0;
  }
  .hdr_logo a{
    padding: 30px 20px;
  }

  .header.slim .hdr1{
    padding: 15px 30px;
    /*height: 85px;*/
    /*padding-top: 15px;*/
    /*padding-bottom: 15px;*/
  }
  .header.slim .hdr_logo img{
    /*height: calc(var(--logo-height) * 0.4);*/
  }
  .header.slim .hdr_logo a{
    /*padding: 30px 20px  ;*/
  }

  .hdr_sns a + a {
    margin-left: 19px;
  }

  .hdr_contact{
    margin-left: 20px;
  }
  .hdr_contact a{
    width: 180px;
    padding: 10px 5px;
    font-size: 18px;
  }
}
@media (min-width:1470px){

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

  .hdr_sns{
    padding: 10px 20px;
    margin-right: 15px;
  }
  .hdr_sns_txt{
    margin-right: 15px;
  }
  .hdr_sns a + a {
    margin-left: 10px;
  }



}
@media (min-width:1536px){
  .header{
    --logo-height: 85px;
  }
  .hdr_sns{
    padding: 10px 20px;
    margin-right: 30px;
  }
}
@media (min-width:1720px){
  body{
    /* ヘッダーの高さに応じて */
    padding-top: 120px;
  }
  .header{
    --logo-height: 125px;
  }
  .hdr1{
    height: 120px;
    padding: 36px 50px 25px 0;
  }

  .header.slim .hdr1{
    height: 85px;
    padding-top: 15px;
    /*padding-bottom: 15px;*/
  }
  .header.slim .hdr_logo img{
    height: calc(var(--logo-height) * 0.4);
  }
  .header.slim .hdr_logo a{
    padding: 30px 20px  ;
  }

  .hdr_logo a{
    padding: 36px 38px 40px 38px;
  }
  .hdr_contact{
    margin-left: 36px;
  }
  .hdr_sns{
    padding: 15px 30px;
    margin-right: 110px;
  }
  .hdr_sns_txt{
    margin-right: 30px;
  }
  .hdr_sns a + a {
    margin-left: 19px;
  }
}

/*******************************
*　メインビジュアル
********************************/
/* MV */
.mv{
  margin-left: 40px;
  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_catch{
  position: absolute;
  z-index: 1;
  left: -20px;
  bottom: -20px;
}
.mv_catch_ja{

}
.mv_catch_ja_line{
}
.mv_catch_ja_line + .mv_catch_ja_line{
  margin-top: 6px;
}
.mv_catch_ja_line p{
  display: inline-block;
  background: #FFF;
  color: var(--main-color);
  border: 2px solid var(--main-color);
  border-radius: 5px;
  font-size: 21px;
  font-weight: 700;
  padding: 2px 9px 3px 9px;
}
.mv_catch_en{

}
.mv_catch_en img{
  height: 118px;
}
* + .mv_catch_en{
  margin-top: 30px;
}


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

}
.mv_slider_item{
  position: relative;
  z-index: 1;
}
.mv_slider_img{
  border-radius: 0 0 0 40px;
  overflow: hidden;
}
.mv_slider_img.img_fit:before{
  /*padding-top: calc(100svh - 64px);*/
  padding-top: 400px;
}

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


.mv_scroll{
  width: 12px;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: -35px;
}

@media (min-width:768px){

  /* MV */
  .mv{
    margin-left: 100px;
  }
  .mv_slider_img{
    border-radius: 0 0 0 80px;
  }
  .mv_slider_img.img_fit:before{
    padding-top: 500px;
  }

  /* MVテキスト */
  .mv_catch{
    left: -70px;
    bottom: -40px;
  }
  .mv_catch_ja{

  }
  .mv_catch_ja_line{
  }
  .mv_catch_ja_line + .mv_catch_ja_line{
    margin-top: 10px;
  }
  .mv_catch_ja_line p{
    font-size: 24px;
    padding: 5px 10px 6px 15px;
  }
  .mv_catch_en{

  }
  .mv_catch_en img{
    height: 170px;
  }
  * + .mv_catch_en{
    margin-top: 65px;
  }

  .mv_scroll{
    width: 18px;
    left: -92px;
  }
}
@media (min-width:1024px){

  /* MV */



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

  .mv{
    margin-left: 150px;
  }
  .mv_slider_img.img_fit:before{
    padding-top: calc(100svh - 120px - 15px);
  }

  .mv_scroll{
    width: 23px;
    left: -120px;
  }
}
@media (min-width:1470px){

  /* MV */
  .mv{
    margin-left: 220px;
  }

  .mv_slider_img.img_fit:before{
    padding-top: calc(100svh - 120px - 15px);
  }

  /* MVテキスト */
  .mv_catch{
    left: -70px;
    bottom: -40px;
  }
  .mv_catch_ja{

  }
  .mv_catch_ja_line{
  }
  .mv_catch_ja_line + .mv_catch_ja_line{
    margin-top: 10px;
  }
  .mv_catch_ja_line p{
    font-size: 30px;
    padding: 5px 10px 6px 15px;
  }
  .mv_catch_en{

  }
  .mv_catch_en img{
    height: auto;
  }
  * + .mv_catch_en{
    margin-top: 65px;
  }
  
  .mv_scroll{
    left: -160px;
  }

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

  .mv_scroll{
    left: -160px;
  }

}


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

/* サイドバー */
.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: 30px;
  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: 50%;
  left: 0;
  right: 0;
  text-align: center;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.pg_header_title_txt{
  font-size: 32px;
  font-weight: 700;
  color: #FFF;
}




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

  .pg_header_title_txt{

  }

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

  .pg_header_title_txt{

  }

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

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

  .pg_header_title_txt{

  }

}



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

.footer{
  margin-top: 50px;
}

.ftr1{
  border-top: 1px solid #7d7d7d;
  border-bottom: 1px solid #7d7d7d;
  padding: 30px 0;
  margin-bottom: 25px;
}

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

}
.ftr1_box2{

}

.ftr_logo{
  margin-bottom: 25px;
}
.ftr_name{
  font-weight: 500;
  letter-spacing: 0.075em;
  margin-bottom: 10px;
}
.ftr_addr{
  margin-bottom: 10px;
}


.ftr_contact{
  display: block;
  background: #ef7f1a;
  border-radius: 10px;
  color: #FFF;
  width: 255px;
  padding: 13px 5px;
  text-align: center;
}

.ftr_contact p:before{
  content:"\f0e0";
  font-family: "FontAwesome";
  margin-right: 10px;
}

.ftr_addr em{
  font-style: normal;
}
.ftr_copy{
  font-size: 14px;
  text-align: center;
}

/* 追尾スマホメニュー */
.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: #cab386;
  text-decoration: none;
  line-height: 1.2;
}
.footer_fix .footer_fix_item_1{
  width: 38%;
  border-right: 1px solid #ef7f1a;
}
.footer_fix .footer_fix_item_1.recruit{
  background: #eeeeee;
  color: #024b93;
}
.footer_fix .footer_fix_item_2{
  width: 24%;
  background: #cab386;
}
.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;
  text-align: center;
  color: #4682b4;
}
.pagetop a i{
  font-size: 40px;
}

.gjs-dashed .pagetop{
  display: block;
}


@media (min-width:375px){

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

  body{
    padding-bottom: 56px;
  }

  .footer_fix{
    display: flex;
  }

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

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

  .pagetop a{
    width: 127px;
  }
}


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


/* テーブル用 */
.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;
  position: relative;
  z-index: 1;
}
.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_th[class*="colspan"],
.table_rows_td[class*="colspan"]{
  z-index: 2;
  
}
.table_rows_th[class*="colspan"] p,
.table_rows_td[class*="colspan"] p{
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: -1px;
  left: 0;
  right: auto;
  text-align: center;
  background: #f1f1f1;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
}
.table_rows_th.colspan1 p,
.table_rows_td.colspan1 p{
  
}
.table_rows_th.colspan2 p,
.table_rows_td.colspan2 p{
  width: calc(200% + 2px);
}
.table_rows_th.colspan3 p,
.table_rows_td.colspan3 p{
  width: calc(300% + 3px);
}
.table_rows_th.colspan4 p,
.table_rows_td.colspan4 p{
  width: calc(400% + 4px);
}
.table_rows_th.colspan5 p,
.table_rows_td.colspan5 p{
  width: calc(500% + 5px);
}

/* テーブル入れ子 */
.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: 700;
  line-height: 1.2;
  text-align: left;
  border: 2px solid var(--main-color);
  background: #FFF;
  border-radius: 30px;
  color: var(--main-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: "\f138";
  font-family: "FontAwesome";
  font-size: 18px;
  font-weight: 900;
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 18px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.read_more a:hover{
  color: #FFF;
  background: var(--main-color);
}
.read_more a:hover:after{
  margin-right: -5px;
}
.read_more a.external:after{
  content:"\f14c";
  font-family: "fontAwesome";
  font-weight: 400;
  filter: none !important;
  top: 55%;
}
.read_more a.external:after{
  background: none;
  aspect-ratio: none;
  width: auto;
}
.read_more a[href="#"]{
  pointer-events: none;
}
.read_more a[href="#"]:after{
  display: none;
}

/* 見出し */
.tt2{
  text-align: center;
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}
.tt2_en{

}
.tt2_en img{
  height: 65px;
  max-width: none;
}
.tt2_ja{
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
  padding: 2px 10px 4px;
  background: var(--main-color);
  color: #FFF;
  position: absolute;
  z-index: 1;
  top: 57%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin-top: 0;
}
.tt2_ja.wh{
  background: #FFF;
  color: var(--main-color);
}
/*
.tt2.left{
  text-align: left;
}
.tt2.left .tt2_ja{
  display: inline-block;
  margin-top: 30px;
  position: static;
  -webkit-transform: none;
  transform: none;
}
*/

.tt2_sub_txt{
  /*text-align: center;*/
}

.cmn_txt{
  font-size: 16px;
  line-height: 1.875;
  text-align: justify;
}

/* セクション */
.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{

}

/* コンテンツ */
.cmn_contents{

}
.cmn_contents_row{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  padding-top: 0;
}
.cmn_contents_row + .cmn_contents_row{
  margin-top: 60px;
}
.cmn_contents_box1{
  width: 100%;
}
.cmn_contents_box2{
  width: 100%;
  margin-top: 25px;
  padding-top: 30px;
  /*padding-left: 53.57%;*/
  padding-bottom: 50px;
  background: #e0dad2;
  border-radius: 25px;
  position: relative;
  z-index: 1;
}
.cmn_contents_box2:after{
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: var(--margin-for-device-side-w);
  right: var(--margin-for-device-side-w);
  background: #e0dad2;
}
.cmn_contents_box2_illust{
  width: 275px;
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: var(--margin-for-device-side-w);
  transform: translate(20%, 72%);
}

.cmn_contents_img{
  border-radius: 25px;
}
.cmn_contents_img.img_fit:before{
  padding-top: 75%;
}
.cmn_contents_img.mid.img_fit:before{
  padding-top: 68.750%;
}
.cmn_contents_head{
  display: flex;
  align-items: flex-end;
  position: relative;
  z-index: 1;
  margin-top: 0;
  margin-bottom: 20px;
  padding-left: 0;
}
.cmn_contents_head_num{
  width: 100px;
  aspect-ratio: 125 / 107;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.cmn_contents_head_voice{
  margin-top: 0;
  margin-left: 12px;
}
.cmn_contents_title{
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}
.cmn_contents_title_txt{
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
}
.cmn_contents_title_txt.bdr{
  background-size: 100% 38px;
  background-position: left bottom;
  background-repeat: no-repeat;
  background-image: url(/system_panel/uploads/images/contents_tt_line1.png);
  padding-bottom: 10px;
}



.cmn_contents_txt{

}
.cmn_contents_box2 .read_more{
  margin-top: 45px;
}



/* 数字:SERVICE用 */
.cmn_contents.service .cmn_contents_row:nth-child(1 of .cmn_contents_row) .cmn_contents_head_num{
  background-image: url(/system_panel/uploads/images/SERVICE_01.png);
}
.cmn_contents.service .cmn_contents_row:nth-child(2 of .cmn_contents_row) .cmn_contents_head_num{
  background-image: url(/system_panel/uploads/images/SERVICE_02.png);
}
.cmn_contents.service .cmn_contents_row:nth-child(3 of .cmn_contents_row) .cmn_contents_head_num{
  background-image: url(/system_panel/uploads/images/SERVICE_03.png);
}
.cmn_contents.service .cmn_contents_row:nth-child(4 of .cmn_contents_row) .cmn_contents_head_num{
  background-image: url(/system_panel/uploads/images/SERVICE_04.png);
}
.cmn_contents.service .cmn_contents_row:nth-child(5 of .cmn_contents_row) .cmn_contents_head_num{
  background-image: url(/system_panel/uploads/images/SERVICE_05.png);
}
/* 数字:REASON用 */
.cmn_contents.reason .cmn_contents_row:nth-child(1 of .cmn_contents_row) .cmn_contents_head_num{
  background-image: url(/system_panel/uploads/images/REASON_01.png);
}
.cmn_contents.reason .cmn_contents_row:nth-child(2 of .cmn_contents_row) .cmn_contents_head_num{
  background-image: url(/system_panel/uploads/images/REASON_02.png);
}
.cmn_contents.reason .cmn_contents_row:nth-child(3 of .cmn_contents_row) .cmn_contents_head_num{
  background-image: url(/system_panel/uploads/images/REASON_03.png);
}
.cmn_contents.reason .cmn_contents_row:nth-child(4 of .cmn_contents_row) .cmn_contents_head_num{
  background-image: url(/system_panel/uploads/images/REASON_04.png);
}
.cmn_contents.reason .cmn_contents_row:nth-child(5 of .cmn_contents_row) .cmn_contents_head_num{
  background-image: url(/system_panel/uploads/images/REASON_05.png);
}

/* 数字:PERSON用 */
.cmn_contents.person .cmn_contents_row:nth-child(1 of .cmn_contents_row) .cmn_contents_head_num{
  background-image: url(/system_panel/uploads/images/PERSON_01.png);
}
.cmn_contents.person .cmn_contents_row:nth-child(2 of .cmn_contents_row) .cmn_contents_head_num{
  background-image: url(/system_panel/uploads/images/PERSON_02.png);
}
.cmn_contents.person .cmn_contents_row:nth-child(3 of .cmn_contents_row) .cmn_contents_head_num{
  background-image: url(/system_panel/uploads/images/PERSON_03.png);
}
.cmn_contents.person .cmn_contents_row:nth-child(4 of .cmn_contents_row) .cmn_contents_head_num{
  background-image: url(/system_panel/uploads/images/PERSON_04.png);
}
.cmn_contents.person .cmn_contents_row:nth-child(5 of .cmn_contents_row) .cmn_contents_head_num{
  background-image: url(/system_panel/uploads/images/PERSON_05.png);
}

/* 求人用 */
.cmn_contents_row.type2{
  padding-top: 40px;
}
.cmn_contents_row.type2 .cmn_contents_box1{

}
.cmn_contents_row.type2 .cmn_contents_box2{

}
.cmn_contents_title2{
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}
.cmn_contents_title2_txt{
  font-size: 25px;
  font-weight: 700;
  line-height: 1.4;
  background: #b18b55;
  color: #FFF;
  border-radius: 5px;
  padding: 8px 20px 8px;
}

.cmn_contents_imgs{

}
.cmn_contents_imgs_item1,
.cmn_contents_imgs_item2{
  border-radius: 25px;
}
.cmn_contents_imgs_item1{
  width: 83.33%;
}
.cmn_contents_imgs_item1.img_fit:before{
  padding-top: 95%;
}
.cmn_contents_imgs_item2{
  width: 62.5%;
  margin-left: auto;
  margin-top: -120px;
}
.cmn_contents_imgs_item2.img_fit:before{
  padding-top: 93.333%;
}
.cmn_contents_imgs_illust{
  width: 100%;
  text-align: center;
  margin-top: 30px;
  margin-left: 0;
}

/* ブランド */
.cmn_brands{

}
* + .cmn_brands{
  margin-top: 30px;
}
.cmn_brands_row{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: #FFF;
  border-radius: 30px;
  padding: 15px 20px;
}
.cmn_brands_row + .cmn_brands_row{
  margin-top: 30px;
}
.cmn_brands_box1{
  width: 100%;
  padding-top: 20px;
  order: 2;
}
.cmn_brands_box2{
  width: 100%;
  order: 1;
}
.cmn_brands_img{
  border-radius: 20px;
}
.cmn_brands_img.img_fit:before{
  padding-top: 67.526%;
}
.cmn_brands_head{
  margin-bottom: 25px;
}
.cmn_brands_head_logo{

}
.cmn_brands_head_logo img{

}
.cmn_brands_head_name{
  font-size: 16px;
  font-weight: 500;
  margin-top: 10px;
}
.cmn_brands_title{
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 15px;
}
.cmn_brands_txt{

}
.cmn_brands_row .read_more{
  margin-top: 10px;
}




@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;
  }


  .cmn_contents_imgs_illust img{
    width: 44.49%;
  }

}
@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: 300px;
    font-size: 20px;
    margin: 5px 5px;
    padding-left: 30px;
  }
  .read_more a:after{
    font-size: 20px;
    right: 18px;
  }

  /* 見出し */
  .tt2{
    margin-bottom: 30px;
  }
  .tt2_en{

  }
  .tt2_en img{
    height: 90px;
  }
  .tt2_ja{
    font-size: 20px;
    padding: 0 18px 2px;
    top: 57%;
  }

  .tt2.mid .tt2_en img{
    height: 60px;
  }
  .tt2.mid .tt2_en img{
  }

  .tt2.left{
    text-align: left;
  }
  .tt2.left .tt2_ja{
    display: inline-block;
    margin-top: 30px;
    position: static;
    -webkit-transform: none;
    transform: none;
  }

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

  /* コンテンツ */
  .cmn_contents_title{
    justify-content: flex-start;
  }
  .cmn_contents_title2{
    justify-content: flex-start;
  }
  .cmn_contents_title2_txt{
    font-size: 25px;
    padding: 8px 20px 8px;
  }
  .cmn_contents_imgs_illust{
    width: 31.666%;
    margin-top: -160px;
    margin-left: 0;
  }

  .cmn_contents_box2_illust{
    width: 300px;
    transform: translate(20%, 59%);
  }

  /* ブランド */
  .cmn_brands{

  }
  * + .cmn_brands{
    margin-top: 68px;
  }
  .cmn_brands_row{
    border-radius: 30px;
    padding: 30px 30px;
  }
  .cmn_brands_row + .cmn_brands_row{
    margin-top: 50px;
  }
  .cmn_brands_box1{
    width: 51.13%;
    padding-top: 12px;
  }
  .cmn_brands_box2{
    width: 43.93%;
  }
  .cmn_brands_img{
    border-radius: 20px;
  }
  .cmn_brands_head{
    margin-bottom: 25px;
  }
  .cmn_brands_head_logo{

  }
  .cmn_brands_head_logo img{

  }
  .cmn_brands_head_name{
    font-size: 16px;
    margin-top: 15px;
  }
  .cmn_brands_title{
    font-size: 22px;
    margin-bottom: 15px;
  }
  .cmn_brands_txt{

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

  .cmn_brands_row:nth-child(odd) .cmn_brands_box1{
    order: 1;
  }
  .cmn_brands_row:nth-child(odd) .cmn_brands_box2{
    order: 2;
  }
  .cmn_brands_row:nth-child(even) .cmn_brands_box1{
    order: 2;
  }
  .cmn_brands_row:nth-child(even) .cmn_brands_box2{
    order: 1;
  }

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

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


  /* コンテンツ */
  .cmn_contents{

  }
  .cmn_contents_row{
    padding-top: 80px;
  }
  .cmn_contents_row + .cmn_contents_row{
    margin-top: 100px;
  }
  .cmn_contents_box1{
    width: 52.63%;
    position: absolute;
    z-index: 2;
    top: 0;
  }
  .cmn_contents_box2{
    width: 100%;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 50px;
  }
  .cmn_contents_box2:after{

  }

  .cmn_contents_img{
    border-radius: 50px;
  }
  .cmn_contents_img.img_fit:before{
    padding-top: 75%;
  }
  .cmn_contents_head{
    margin-top: -75px;
    margin-bottom: 25px;
    padding-left: 0;
  }
  .cmn_contents_head_num{
    width: 100px;
  }
  .cmn_contents_head_voice{
    margin-left: 20px;
  }
  .cmn_contents_title{
    margin-bottom: 15px;
    justify-content: flex-start;
  }
  .cmn_contents_title_txt{
    font-size: 28px;
  }
  .cmn_contents_title_txt.bdr{
    background-size: 100% 30px;
    padding-bottom: 6px;
  }

  .cmn_contents_txt{

  }
  .cmn_contents_box2 .read_more{
    margin-top: 45px;
  }

  .cmn_contents_row:nth-child(odd){
    padding-left: 7.894%;
  }
  .cmn_contents_row:nth-child(odd) .cmn_contents_box1{
    left: 0;
  }
  .cmn_contents_row:nth-child(odd) .cmn_contents_box2{
    padding-left: 53.57%;
    border-radius: 50px 0 0 50px;
  }
  .cmn_contents_row:nth-child(odd) .cmn_contents_box2:after{
    left: 100%;
    right: var(--margin-for-device-side-w);
  }

  .cmn_contents_row:nth-child(even){
    padding-right: 7.894%;
  }
  .cmn_contents_row:nth-child(even) .cmn_contents_box1{
    right: 0;
  }
  .cmn_contents_row:nth-child(even) .cmn_contents_box2{
    padding-right: 53.57%;
    border-radius: 0 50px 50px 0;
  }
  .cmn_contents_row:nth-child(even) .cmn_contents_box2:after{
    left: var(--margin-for-device-side-w);
    right: 100%;
  }

  /* 求人用 */
  .cmn_contents_row.type2{

  }
  .cmn_contents_row.type2 .cmn_contents_box1{

  }
  .cmn_contents_row.type2 .cmn_contents_box2{

  }
  .cmn_contents_row.type2 .cmn_contents_box2 .tt2{
    margin-top: -56px;
    margin-bottom: 58px;
  }
  .cmn_contents_title2{
    margin-bottom: 50px;
  }
  .cmn_contents_title2_txt{
    font-size: 25px;
    padding: 8px 20px 8px;
  }

  .cmn_contents_imgs{

  }
  .cmn_contents_imgs_item1,
  .cmn_contents_imgs_item2{
    border-radius: 50px;
  }
  .cmn_contents_imgs_item1{
  }
  .cmn_contents_imgs_item1.img_fit:before{

  }
  .cmn_contents_imgs_item2{
    margin-top: -120px;
  }
  .cmn_contents_imgs_item2.img_fit:before{

  }
  .cmn_contents_imgs_illust{
    width: 31.666%;
    margin-top: -25px;
    margin-left: 10px;
  }

  .cmn_contents_box2_illust{
    width: 400px;
    /*transform: translate(20%, 59%);*/
  }

  .cmn_contents_row.type2 .cmn_contents_box1{
    width: 31.57%;
  }
  .cmn_contents_row.type2:nth-child(odd){
    /*padding-left: 7.894%;*/
  }
  .cmn_contents_row.type2:nth-child(odd) .cmn_contents_box2{
    padding-left: 32.85%;
  }
  .cmn_contents_row.type2:nth-child(even){
    /*padding-right: 7.894%;*/
  }
  .cmn_contents_row.type2:nth-child(even) .cmn_contents_box2{
    padding-right: 32.85%;
  }


  /**/
  .cmn_about.left{
    
  }
  .cmn_about.left .cmn_about_box1{
    order: 2;
  }
  .cmn_about.left .cmn_about_box2{
    order: 1;
  }

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

  .tt2_sub_txt.cmn_txt{
    text-align: center;
  }

}


@media (min-width:1366px){

  /* 見出し */
  .tt2{
    margin-bottom: 30px;
  }
  .tt2_en{

  }
  .tt2_en img{
    height: auto;
  }
  .tt2_ja{
    font-size: 20px;
    padding: 0 18px 2px;
    top: 57%;
  }

  .tt2.mid .tt2_en img{
    height: 90px;
  }

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

  /* コンテンツ */
  .cmn_contents{

  }
  .cmn_contents_row{
    padding-top: 80px;
  }
  .cmn_contents_row + .cmn_contents_row{
    margin-top: 100px;
  }
  .cmn_contents_box1{
    width: 52.63%;
  }
  .cmn_contents_box2{
    width: 100%;
    min-height: 540px;
    padding-bottom: 80px;
  }
  .cmn_contents_box2:after{

  }

  .cmn_contents_img{
    border-radius: 50px;
  }
  .cmn_contents_head{
    margin-top: -85px;
    margin-bottom: 50px;
    padding-left: 15px;
  }
  .cmn_contents_head_num{
    width: 125px;
  }

  .cmn_contents_head_voice{
    margin-left: 48px;
  }
  .cmn_contents_title{
    margin-bottom: 30px;
  }
  .cmn_contents_title_txt{
    font-size: 32px;
  }
  .cmn_contents_title_txt.bdr{
    background-size: 100% 38px;
    padding-bottom: 10px;
  }

  .cmn_contents_txt{

  }
  .cmn_contents_box2 .read_more{
    margin-top: 45px;
  }

  .cmn_contents_row:nth-child(odd) .cmn_contents_box2{
    border-radius: 50px 0 0 50px;
  }
  .cmn_contents_row:nth-child(even) .cmn_contents_box2{
    border-radius: 0 50px 50px 0;
  }

  /* 求人用 */
  .cmn_contents_row.type2{

  }
  .cmn_contents_row.type2 .cmn_contents_box1{

  }
  .cmn_contents_row.type2 .cmn_contents_box2{

  }
  .cmn_contents_row.type2 .cmn_contents_box2 .tt2{
    margin-top: -56px;
    margin-bottom: 58px;
  }
  .cmn_contents_title2{
    margin-bottom: 50px;
  }
  .cmn_contents_title2_txt{
    font-size: 30px;
    padding: 8px 20px 8px;
  }
  .cmn_contents_imgs_illust{
    margin-top: -125px;
    margin-left: 10px;
  }

  .cmn_contents_box2_illust{
    width: 500px;
    /*transform: translate(20%, 59%);*/
  }

  /* ブランド */
  .cmn_brands{

  }
  * + .cmn_brands{
    margin-top: 68px;
  }
  .cmn_brands_row{
    border-radius: 30px;
    padding: 50px 100px;
  }
  .cmn_brands_row + .cmn_brands_row{
    margin-top: 50px;
  }
  .cmn_brands_box1{
    width: 51.13%;
    padding-top: 12px;
  }
  .cmn_brands_box2{
    width: 43.93%;
  }
  .cmn_brands_img{
    border-radius: 20px;
  }
  .cmn_brands_head{
    margin-bottom: 25px;
  }
  .cmn_brands_head_logo{

  }
  .cmn_brands_head_logo img{

  }
  .cmn_brands_head_name{
    font-size: 16px;
    margin-top: 15px;
  }
  .cmn_brands_title{
    font-size: 22px;
    margin-bottom: 15px;
  }
  .cmn_brands_txt{

  }

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

  .cmn_contents_title_txt{
    font-size: 40px;
  }
  
}
@media (min-width:1720px){
  .cmn_brands_title{
    font-size: 26px;
  }

  .cmn_contents_row:nth-child(odd) .cmn_contents_box2{
    padding-left: 53.97%;
  }
  .cmn_contents_row:nth-child(even) .cmn_contents_box2{
    padding-right: 53.97%;
  }

  .cmn_contents_box2_illust{
    width: 650px;
    /*transform: translate(20%, 59%);*/
  }
  
  .cmn_contents_title_txt{
    font-size: 40px;
  }
}

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

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

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

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


@media (max-width:767px){

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

  .cmn_menu_nav.txt_sm_sp li{
    font-size: 10px;
  }

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

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

  }

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

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

  .cmn_menu_nav{
    margin-left: -8px;
    margin-right: -8px;
  }
  .cmn_menu_nav .webgene-item{
    padding: 0 8px;
    margin: 12.5px 0;
    font-size: 16px;
  }
  .cmn_menu_nav .webgene-item a{

  }

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

}

@media (min-width:1536px){
  
  .cmn_menu_nav{
    margin-left: -15px;
    margin-right: -15px;
  }
  .cmn_menu_nav .webgene-item{
    padding: 0 15px;
    margin: 12.5px 0;
    font-size: 20px;
  }
  
}

/*******************************
*　HOME
********************************/
.pg_home{

}
.pg_home .section.sec1{
  padding-top: 50px;
}
.pg_home .section.sec2{
  padding-top: 0;
}
.pg_home .section.sec3{

}
.pg_home .section.sec4{

}
.pg_home .section.blog_sec{
  background-image: url(/system_panel/uploads/images/blog_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left center;
  position: relative;
  z-index: 1;
}
.pg_home .section.sec5{
  position: relative;
  z-index: 1;
}
.pg_home .section.sec6{
  position: relative;
  z-index: 0;
}
.pg_home .section.sec7{

}
.pg_home .section.sec8{

}

@media (max-width:767px){
  .pg_home .section.sec6{
    margin-top: 50px;
  }
}
@media (min-width:768px){

  .pg_home .section.sec1{
    padding-top: 135px;
  }
  .pg_home .section.sec2{
    padding-top: 0;
    margin-top: 50px;
  }
  .pg_home .section.sec3{
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .pg_home .section.sec4{
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .pg_home .section.sec5{
    padding-top: 160px;
  }
  .pg_home .section.sec6{
    padding-top: 155px;
  }
  .pg_home .section.sec7{

  }
  .pg_home .section.sec8{

  }

  .pg_home .section.sec2 .tt2{
    margin-bottom: 95px;
  }
  .pg_home .section.sec3 .tt2{
    margin-bottom: 80px;
  }
}
@media (min-width:1024px){


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

  .pg_home .section.sec2{
    padding-top: 0;
    margin-top: -138px;
  }
  .pg_home .section.sec3{
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .pg_home .section.sec4{
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .pg_home .section.sec5{
    padding-top: 160px;
  }
  .pg_home .section.sec6{
    padding-top: 155px;
  }
  .pg_home .section.sec7{

  }
  .pg_home .section.sec8{

  }

  .pg_home .section.sec2 .tt2{
    margin-bottom: 95px;
  }
  .pg_home .section.sec3 .tt2{
    margin-bottom: 80px;
  }

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


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


}


/* About */
.home_about{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_about_box1{
  width: 48.69%;
  margin-top: 55px;
  position: relative;
  z-index: 1;
}
.home_about_box2{
  width: 100%;
  margin-top: 0;
  position: relative;
  z-index: 1;
}
.home_about_box3{
  width: 42.31%;
  margin-top: 90px;
  position: relative;
  z-index: 1;
}

.home_about_imgs1{
  position: relative;
  z-index: 1;
}
.home_about_imgs1_pos1,
.home_about_imgs1_pos2{
  border-radius: 25px;
  position: relative;
  z-index: 1;
}
.home_about_imgs1_pos1{
  width: 100%;
}
.home_about_imgs1_pos1.img_fit:before{
  padding-top: 95.652%;
}
.home_about_imgs1_pos2{
  width: 69.56%;
  margin-left: 7.82%;
  margin-top: -60px;
  z-index: 2;
}
.home_about_imgs1_pos2.img_fit:before{
  padding-top: 93.750%;
}

.home_about_imgs2{
  position: relative;
  z-index: 1;
}
.home_about_imgs2_pos1{
  width: 100%;
  border-radius: 25px;
}
.home_about_imgs2_pos1.img_fit:before{
  padding-top: 95%;
}

.home_about_imgs1:after,
.home_about_imgs2:after{
  content: "";
  position: relative;
  z-index: 0;
  display: block;
  background: #e0dad2;
  border-radius: 25px;
  aspect-ratio: 1 / 1;
}
.home_about_imgs1:after{
  width: 52.17%;
  margin-left: auto;
  margin-right: 10.43%;
  margin-top: -52px;
}
.home_about_imgs2:after{
  width: 50%;
  position: absolute;
  top: -22px;
  left: -15%;
}

.home_about_head{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 0;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}
.home_about_head_box1{
  width: 100%;
}
.home_about_head_box2{
  width: 100%;
}
.home_about_head_title{
  font-size: 21px;
  font-size: 5.6vw;
  font-weight: 700;
  line-height: 1.428;
}
.home_about_txt{

}
.home_about_box2 .read_more{
  margin-top: 35px;
}

.home_about_illust1{
  width: 100vw;
  width: 270px;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 54.34%;
  -webkit-transform: translate(0%, -8%);
  transform: translate(0%, -8%);
}
.home_about_illust2{
  width: 247px;
  width: 65.86%;
  display: inline-block;
  position: relative;
  z-index: 2;
  margin-top: 20px;
  margin-left: 12%;
}

/* BLOG */
.home_blog{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_blog_box1{
  width: 100%;
}
.home_blog_box2{
  width: 100%;
  margin-top: 30px;
}
.home_blog_box2_inner{
  margin-left: var(--margin-for-device-side-w);
  margin-right: var(--margin-for-device-side-w);
  position: relative;
  z-index: 1;
}
.home_blog_txt{
  color: #FFF!important;
}

.home_blog_illust{
  width: 120px;
  position: absolute;
  z-index: 1;
  bottom: 100%;
  right: 30px;
}

.home_recruit_sp_box{
  margin-bottom: 20px;
}

.home_insta{
  background: #e0dad2;
  border-radius: 30px;
  padding: 40px 0 30px;
  position: relative;
  z-index: 1;
}
.home_insta .tt2{
  position: absolute;
  z-index: 1;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -60%);
  transform: translate(-50%, -60%);
}
.home_insta .insta_list{
}

@media (max-width:374px){

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

}
@media (max-width:1023px){
  .home_about_box1{
    order: 2;
  }
  .home_about_box2{
    order: 1;
  }
  .home_about_box3{
    order: 3;
  }

  .home_about_head_box1{
    order: 2;
    margin-top: 25px;
    text-align: center;
  }
  .home_about_head_box2{
    order: 1;
    text-align: center;
  }
  .home_about_head_box1 img{
    width: 96px;
    width: 27.82%;
  }
  .home_about_head_title{
    display: inline-block;
    text-align: justify;
  }
}
@media (max-width:767px){

  .home_insta{
    border-radius: 0;
    margin-left: var(--margin-for-device-side-w);
    margin-right: var(--margin-for-device-side-w);
    padding-left: 15px;
    padding-right: 15px;
  }
  
}
@media (min-width:768px){

  /* BLOG */
  .home_blog_box1{
    width: 100%;
  }
  .home_blog_box2{
    width: 100%;
    margin-top: 30px;
  }
  .home_blog_illust{
    width: 200px;
    right: 50px;
  }


  .home_insta{
    border-radius: 30px;
    padding: 75px 0 30px;
  }
  .home_insta .insta_list{
    margin-left: -20px;
    margin-right: -20px;
  }
  .home_insta .read_more{
    margin-top: 53px;
  }


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


  /* About */
  .home_about{
    justify-content: space-between;
  }
  .home_about_box1{
    width: 23.68%;
    margin-top: 0;
  }
  .home_about_box2{
    width: 39.47%;
    margin-top: 40px;
  }
  .home_about_box3{
    width: 19.73%;
    margin-top: 348px;
  }

  .home_about_imgs1{
    margin-left: -100px;
  }
  .home_about_imgs1_pos1,
  .home_about_imgs1_pos2{
    border-radius: 50px;
  }
  .home_about_imgs1_pos1{
    width: 100%;
  }
  .home_about_imgs1_pos2{
    width: 69.56%;
    margin-left: 7.82%;
    margin-top: -60px;
    z-index: 2;
  }

  .home_about_imgs2{
    margin-right: -100px;
  }
  .home_about_imgs2_pos1{
    border-radius: 50px;
  }

  .home_about_imgs1:after,
  .home_about_imgs2:after{
    border-radius: 50px;
  }
  .home_about_imgs1:after{
    width: 52.17%;
    margin-left: auto;
    margin-right: 10.43%;
    margin-top: -142px;
  }
  .home_about_imgs2:after{
    width: 50%;
    top: -58px;
    left: -15%;
  }

  .home_about_head{
    padding: 0 30px;
    margin-bottom: 56px;
  }
  .home_about_head_box1{
    width: 47.22%;
  }
  .home_about_head_box2{
    width: 47.22%;
  }
  .home_about_head_title{
    font-size: 26px;
    line-height: 2.3;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
  .home_about_txt{

  }
  .home_about_box2 .read_more{
    margin-top: 48px;
  }

  .home_about_illust1{
    width: 710px;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 100%;
    -webkit-transform: translate(2%, -41%);
    transform: translate(2%, -41%);
  }
  .home_about_illust2{
    width: auto;
    display: inline-block;
    position: relative;
    z-index: 2;
    margin-top: -88px;
    margin-left: -36px;
  }

  /* BLOG */
  .home_blog{
    justify-content: space-between;
  }
  .home_blog_box1{
    width: 280px;
  }
  .home_blog_box2{
    width: calc(100% - 280px - 80px);
    margin-top: 0;
  }
  .home_blog_box2_inner {
    margin-left: 0;
    margin-right: var(--margin-for-device-side-w);
  }
  .home_blog_illust{
    width: 250px;
    right: 50px;
  }

  
  .home_insta .insta_list{
    margin-left: -30px;
    margin-right: -30px;
  }

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


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

  .home_insta{
    border-radius: 30px;
    padding: 115px 0 55px;
  }
  .home_insta .insta_list{
    margin-left: -70px;
    margin-right: -70px;
  }

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

  /* BLOG */
  .home_blog{
    justify-content: space-between;
  }
  .home_blog_box1{
    width: 350px;
  }
  .home_blog_box2{
    width: calc(100% - 350px - 120px);
    margin-top: 0;
  }


  .home_blog_illust{
    width: 300px;
    right: 70px;
  }

  .home_insta .insta_list{
    margin-left: -115px;
    margin-right: -115px;
  }
}
@media (min-width:1720px){

  .home_blog_txt p{
    letter-spacing: 0.03em;
  }

  .home_blog_illust{
    width: auto;
    right: 300px;
  }

  .home_insta .insta_list{
    margin-left: -115px;
    margin-right: -115px;
  }
}



/*******************************
*　
********************************/
.insta_list{

}
* + .insta_list{
  margin-top: 20px;
}
.insta_list .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  margin-inline:-5px;
}
.insta_list .webgene-item{
  width: 50%;
  padding-inline:5px;
}
.insta_list .webgene-item:nth-child(n+3){
  margin-top: 10px;
}
.insta_list .webgene-item a{
  background: #000;
  /*background-image: url('/system_panel/uploads/images/noimage.jpg');*/
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 20px;
}
.insta_list_item_inner:before{
  padding-top: 133.69%;
}
.insta_list_item_inner video{
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  inset: 0;
}

@media (max-width:1023px){
  .insta_list .webgene-item:nth-child(n+5){
    display: none;
  }
}
@media (min-width:768px){
  /*isnta*/
  .insta_list{
    margin-top: 0;
  }
  .insta_list .webgene-blog{
    margin-inline:-8px;
  }
  .insta_list .webgene-item{
    padding-inline:8px;
  }
  .insta_list .webgene-item a{

  }
  .insta_list_item_inner:before{

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

  /*isnta*/

  .insta_list .webgene-blog{

  }
  .insta_list .webgene-item{
    width: 20%;
  }
  .insta_list .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .insta_list .webgene-item:nth-child(n+6){
    margin-top:6px;
    ;
  }
  .insta_list .webgene-item a{

  }
  .insta_list_item_inner:before{

  }

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

}


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

/* スライダー */
.news_list_thumb.slider{

}
.news_list_thumb.slider .webgene-item{
  width: 316px;
  height: auto;
  padding: 0 8px;
  margin-top: 0!important;
}
.news_list_thumb.slider .webgene-item .inner{
  border-radius: 25px;
}
.news_list_thumb.slider .webgene-item .img.img_fit:before{
  padding-top: 70%;
}
.news_list_thumb.slider + .read_more{
  margin-top: 50px;
}

/* スライダー2 */
.news_list_thumb.slider2{
  position: relative;
  z-index: 1;
}
.news_list_thumb.slider2 .webgene-item{
  width: 316px;
  padding: 0 8px;
  margin-top: 0!important;
}
.news_list_thumb.slider2 .webgene-item .img.img_fit:before{
  padding-top: 66.66%;
}
.news_list_thumb.slider2 .webgene-item .inner{
  border-radius: 25px;
}

.blog_slider_btns{

}

.blog_slider_btns{
  display: flex;
  justify-content: space-between;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 0;
}
.blog_slider_btns_prev,
.blog_slider_btns_next{
  width: 40px;
  position: absolute;
  z-index: 1;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  transition: 0.2s all;
  top: 0;
}
.blog_slider_btns_prev{
  left: 8px;
}
.blog_slider_btns_next{
  right: 8px;
}
.blog_slider_btns_prev:hover,
.blog_slider_btns_next:hover{
  transform: translate(0, -50%) scale(1.1);
}



@media (max-width:767px){

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

  /* スライダー */
  .news_list_thumb.slider{

  }
  .news_list_thumb.slider .webgene-item{
    width: 240px;
    padding: 0 8px;
  }
  .news_list_thumb.slider .webgene-item .inner{
    border-radius: 50px;
  }

  /* スライダー2 */
  .news_list_thumb.slider2{

  }
  .news_list_thumb.slider2 .webgene-item{
    width: 380px;
    padding: 0 10px;
  }
  .news_list_thumb.slider2 .webgene-item .inner{
    border-radius: 50px;
  }

  .blog_slider_btns_prev,
  .blog_slider_btns_next{
    width: 50px;
  }
  .blog_slider_btns_prev{
    left: calc(50% - 216px);
  }
  .blog_slider_btns_next{
    right: calc(50% - 216px);
  }

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

  /* スライダー */
  .news_list_thumb.slider{

  }
  .news_list_thumb.slider .webgene-item{
    width: 300px;
    padding: 0 8px;
  }

  .blog_slider_btns_prev,
  .blog_slider_btns_next{
    width: 50px;
  }
  .blog_slider_btns_prev{
    left: -20px;
  }
  .blog_slider_btns_next{
    left: 350px;
    right: auto;
  }
}
@media (min-width:1200px){

  .blog_slider_btns_prev{
    left: -20px;
  }
  .blog_slider_btns_next{
    left: 730px;
  }
}
@media (min-width:1470px){

  /* スライダー */
  .news_list_thumb.slider{

  }
  .news_list_thumb.slider .webgene-item{
    width: 530px;
    padding: 0 15px;
  }

  /* スライダー2 */
  .news_list_thumb.slider2{

  }
  .news_list_thumb.slider2 .webgene-item{
    width: 380px;
  }

  .blog_slider_btns_prev,
  .blog_slider_btns_next{
    width: 60px;
  }
  .blog_slider_btns_prev{
    left: -20px;
  }
  .blog_slider_btns_next{
    left: 720px;
  }
}
@media (min-width:1720px){

  .blog_slider_btns_prev{
    left: -20px;
  }
  .blog_slider_btns_next{
    left: 1090px;
  }
}


/*******************************
*　私たちについて
********************************/

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

}
.pg_about .section.sec1{

}
.pg_about .section.sec2{
  padding-top: 15px;
}
.pg_about .section.sec3{
  padding-top: 15px;
}
.pg_about .section.sec4{
  padding-top: 15px;
}
.pg_about .section.sec5{
  padding-top: 50px;
}
.pg_about .section.sec6{
  padding-top: 15px;
}


@media (max-width:374px){

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

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

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

  .pg_about .section.sec1{

  }
  .pg_about .section.sec2{
    padding-top: 90px;
  }
  .pg_about .section.sec3{
    padding-top: 95px;
  }
  .pg_about .section.sec4{
    padding-top: 90px;
  }
  .pg_about .section.sec5{
    padding-top: 145px;
  }
  .pg_about .section.sec6{
    padding-top: 95px;
  }
  .pg_about .section.sec6 .tt2{
    margin-bottom: 75px;
  }

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


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


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


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


}

/* メイン部分 */

/* YOUTUBE */
.about_youtube{
  background: #e0dad2;
  border-radius: 30px;
  padding: 50px 30px 30px;
  position: relative;
  z-index: 1;
}
.about_youtube .tt2{
  position: absolute;
  z-index: 1;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.about_youtube_video{
  width: 790px;
  max-width: 100%;
  margin: 0 auto;
}
.about_youtube_video iframe{
  border: 0;
}

/* STAFF */
.about_staff{

}
.about_staff_row{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  padding-top: 0;
}
.about_staff_row + .about_staff_row{
  margin-top: 50px;
}
.about_staff_box1{
  width: 200px;
  margin-left: auto;
  margin-right: auto;
}
.about_staff_box2{
  width: 100%;
  margin-top: -50px;
  margin-left: auto;
  padding: 70px 20px 20px;
  border-radius: 30px;
  background: #FFF;
}
.about_staff_box2{

}
.about_staff_img{
  border-radius: 30px;
}
.about_staff_img.img_fit:before{
  padding-top: 118.987%;
}
.about_staff_name{
  display: flex;
}
.about_staff_name + .about_staff_name{
  margin-top: 5px;
}
.about_staff_name_txt{
  font-size: 18px;
  font-weight: 700;
  background: var(--sub-color);
  color: #FFF;
  border-radius: 5px;
  padding: 7px 16px 8px;
}
.about_staff_prof{

}
* + .about_staff_prof{
  margin-top: 20px;
}
.about_staff_prof_item{
  display: flex;
  font-size: 15px;
  font-weight: 500;
}
.about_staff_prof_item + .about_staff_prof_item{
  margin-top: 5px;
}
.about_staff_prof_item_p1{
  white-space: nowrap;
}
.about_staff_prof_item_p2{

}
.about_staff_comment{
  font-size: 15px;
}
* + .about_staff_comment{
  margin-top: 20px;
}

@media (max-width:767px){

  .about_staff_name{
    justify-content: center;
    text-align: center;
  }

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

  /* STAFF */
  .about_staff{

  }
  .about_staff_row{
    padding-top: 80px;
  }
  .about_staff_row + .about_staff_row{
    margin-top: 50px;
  }
  .about_staff_box1{
    width: 250px;
    margin: 0;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
  }
  .about_staff_box2{
    width: calc(100% - 150px);
    margin-top: 0;
    margin-left: auto;
    padding: 30px 30px 30px 130px;
    border-radius: 30px;
    background: #FFF;
    
  }
  .about_staff_box2{

  }
  .about_staff_img{
    border-radius: 30px;
  }
  .about_staff_img.img_fit:before{
    padding-top: 118.987%;
  }
  .about_staff_name{
    display: flex;
  }
  .about_staff_name_txt{
    font-size: 18px;
    padding: 7px 16px 8px;
  }
  .about_staff_prof{

  }
  * + .about_staff_prof{
    margin-top: 30px;
  }
  .about_staff_prof_item{
    font-size: 16px;
  }
  .about_staff_prof_item + .about_staff_prof_item{
    margin-top: 5px;
  }
  .about_staff_prof_item_p1{
  }
  .about_staff_prof_item_p2{

  }
  .about_staff_comment{
    font-size: 16px;
  }
  * + .about_staff_comment{
    margin-top: 50px;
  }

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

  /* YOUTUBE */
  .about_youtube{
    border-radius: 30px;
    padding: 90px 30px;
  }
  .about_youtube .tt2{
  }
  .about_youtube_video{
    width: 790px;
  }

  .about_staff_name_txt{
    font-size: 22px;
  }



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


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


  /* STAFF */
  .about_staff{

  }
  .about_staff_row{
    padding-top: 80px;
  }
  .about_staff_row + .about_staff_row{
    margin-top: 50px;
  }
  .about_staff_box1{
    width: 395px;
  }
  .about_staff_box2{
    width: calc(100% - 300px);
    padding: 60px 60px 60px 160px;
  }
  .about_staff_box2{

  }
  .about_staff_img{
  }
  .about_staff_name{
  }
  .about_staff_name_txt{
    font-size: 30px;
  }
  .about_staff_prof{

  }
  * + .about_staff_prof{
    margin-top: 30px;
  }
  .about_staff_prof_item{
    font-size: 16px;
  }
  .about_staff_prof_item + .about_staff_prof_item{
    margin-top: 5px;
  }
  .about_staff_prof_item_p1{
  }
  .about_staff_prof_item_p2{

  }
  .about_staff_comment{
    font-size: 16px;
  }
  * + .about_staff_comment{
    margin-top: 50px;
  }

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


}


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

/* VOICE */
.voice_list{
  position: relative;
  z-index: 1;
  --voice-slide-size: 300px;
}
* + .voice_list{
  margin-top: 30px;
}
.voice_list .webgene-blog{
  display: flex;
}
.voice_list .webgene-item{
  width: var(--voice-slide-size);
  height: auto;
  padding: 0 5px;
}
.voice_list .webgene-item .inner{
  height: 100%;
  background: #FFF;
  background-image: url(/system_panel/uploads/images/voice_list_illust.png);
  background-size: 120px auto;
  background-repeat: no-repeat;
  background-position: right 30px bottom 65px;
  border-radius: 30px;
  padding: 20px 20px 100px;
  position: relative;
  z-index: 1;
}
.voice_list .webgene-item .inner .read_more{
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 20px;
}
.voice_item_head{
  color: var(--main-color);
  margin-bottom: 10px;
}
.voice_item_head_title{
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}
.voice_item_head_name{
  font-size: 14px;
  font-weight: 700;
  margin-top: 5px;
}
.voice_item_txt{
  font-size: 14px;
}
.voice_item_txt2{
  font-size: 14px;
}

.voice_slider_btns{
  display: flex;
  justify-content: space-between;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: var(--voice-slide-size);
  height: 0;
}
.voice_slider_btns_prev,
.voice_slider_btns_next{
  width: 40px;
  position: absolute;
  z-index: 1;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  transition: 0.2s all;
  top: 0;
}
.voice_slider_btns_prev{
  left: -20px;
}
.voice_slider_btns_next{
  right: -20px;
}
.voice_slider_btns_prev:hover,
.voice_slider_btns_next:hover{
  transform: translate(0, -50%) scale(1.1);
}



/* ポップアップ */
.voice_popup{
  background: #FFF;
  margin: 15px 15px;
  padding: 50px 20px 20px;
  border-radius: 30px;
  position: relative;
  z-index: 1;
  overflow: auto;
}
.voice_popup_box1{
  background-image: url(/system_panel/uploads/images/voice_list_illust.png);
  background-size: 120px auto;
  background-repeat: no-repeat;
  background-position: right 0 bottom 20px;
  padding-bottom: 50px;
}
.voice_popup_box2{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 0;
  padding: 20px 20px 20px;
  background: #f2ebe2;
  border-radius: 30px;
}

.voice_popup_box2_l{
  width: 50px;
}
.voice_popup_box2_r{
  width: calc(100% - 50px - 15px);
}

.voice_popup .popup_close{
  width: 30px;
  position: absolute;
  position: fixed;
  z-index: 1;
  top: 25px;
  right: 25px;
  cursor: pointer;
}

@media (max-width:1023px){
  .voice_popup{
    height: calc(100vh - 30px);
  }
}
@media (max-width:767px){
}

@media (min-width:768px){

  /* VOICE */
  .voice_list{
    --voice-slide-size: 500px;
  }
  * + .voice_list{
    margin-top: 85px;
  }
  .voice_list .webgene-blog{
  }
  .voice_list .webgene-item{
    /*width: 500px;*/
    padding: 0 15px;
  }
  .voice_list .webgene-item .inner{
    background-size: 180px auto;
    background-position: right 30px bottom 30px;
    border-radius: 30px;
    padding: 30px 30px 120px;
  }
  .voice_list .webgene-item .inner .read_more{
    bottom: 30px;
  }
  .voice_item_head{
    margin-bottom: 30px;
  }
  .voice_item_head_title{
    font-size: 25px;
  }
  .voice_item_head_name{
    font-size: 16px;
    margin-top: 15px;
  }
  .voice_item_txt,
  .voice_item_txt2{
    font-size: 16px;
  }

  .voice_slider_btns_prev,
  .voice_slider_btns_next{
    width: 60px;
  }
  .voice_slider_btns_prev{
    left: -20px;
  }
  .voice_slider_btns_next{
    right: -20px;
  }

  /* ポップアップ */
  .voice_popup{
    padding: 50px 40px 50px;
    border-radius: 30px;
  }
  .voice_popup_box1{
    background-size: 180px auto;
    background-position: right 0 bottom 20px;
    padding-bottom: 50px;
  }
  .voice_popup_box2{
    padding: 50px 95px 40px;
    border-radius: 30px;
  }

  .voice_popup_box2_l{
    width: 95px;
  }
  .voice_popup_box2_r{
    width: calc(100% - 95px - 30px);
  }
  .voice_popup .popup_close{
    width: 40px;
    top: 30px;
    right: 30px;
  }

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


  .voice_popup .popup_close{
    max-height: calc(100vh - 30px);
  }
}
@media (min-width:1200px){


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

  /* VOICE */
  .voice_list{
    --voice-slide-size: 750px;
  }
  * + .voice_list{
    margin-top: 85px;
  }
  .voice_list .webgene-blog{
  }
  .voice_list .webgene-item{
    /*width: 750px;*/
    padding: 0 35px;
  }
  .voice_list .webgene-item .inner{
    background-size: 235px auto;
    background-position: right 30px bottom 30px;
    border-radius: 30px;
    padding: 85px 70px 150px;
  }
  .voice_list .webgene-item .inner .read_more{
    bottom: 60px;
  }
  .voice_item_head{
    margin-bottom: 30px;
  }
  .voice_item_head_title{
    font-size: 25px;
  }
  .voice_item_head_name{
    font-size: 16px;
  }
  .voice_item_txt,
  .voice_item_txt2{
    font-size: 16px;
  }

  .voice_slider_btns_prev,
  .voice_slider_btns_next{
    width: 60px;
  }
  .voice_slider_btns_prev{
    left: -2px;
  }
  .voice_slider_btns_next{
    right: -2px;
  }

  /* ポップアップ */
  .voice_popup{
    padding: 120px 65px 90px;
    border-radius: 30px;
  }
  .voice_popup_box1{
    background-size: 235px auto;
    background-position: right 0 bottom 20px;
    padding-bottom: 50px;
  }
  .voice_popup_box2{
    padding: 50px 95px 40px;
    border-radius: 30px;
  }

  .voice_popup_box2_l{
    width: 95px;
  }
  .voice_popup_box2_r{
    width: calc(100% - 95px - 30px);
  }
  .voice_popup .popup_close{
    width: 52px;
    max-height: calc(100vh - 30px);
    top: 75px;
    right: 50px;

  }

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


}



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

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

}
.pg_service .section.sec1{

}
.pg_service .section.sec2{

}
.pg_service .section.certified{
  background-image: url(/system_panel/uploads/images/certified_bg2.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.pg_service .section.sec3{

}


@media (max-width:374px){

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

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

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

  .pg_service .section.sec1{

  }
  .pg_service .section.sec2{
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .pg_service .section.sec3{

  }

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


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


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


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


}

/* メイン部分 */

/* 認証整備工場 */
.service_certified{
  color: #FFF;
}
.service_certified_title{
  font-size: 26px;
  font-weight: 700;
  line-height: 1.375;
  text-align: center;
  margin-bottom: 20px;
}
.service_certified_sub{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 25px;
}
.service_certified_sub_txt{
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  align-self: flex-end;
  color: #fff882;
  text-align: center;
  padding-bottom: 0;
  width: calc(100% - 100px);
}
.service_certified_sub_illust{
  width: 40px;
}
.service_certified_txt{

}


@media (max-width:767px){

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

  /* 認証整備工場 */
  .service_certified{
  }
  .service_certified_title{
    font-size: 48px;
  }
  .service_certified_sub{
    margin-bottom: 45px;
  }
  .service_certified_sub_txt{
    font-size: 22px;
    padding-bottom: 10px;
    width: calc(100% - 140px);
  }
  .service_certified_sub_illust{
    width: 70px;
  }
  .service_certified_txt{

  }

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


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


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


  /* 認証整備工場 */
  .service_certified{
  }
  .service_certified_title{
    font-size: 80px;
  }
  .service_certified_sub{
    margin-bottom: 45px;
  }
  .service_certified_sub_txt{
    font-size: 26px;
    padding-bottom: 17px;
  }
  .service_certified_sub_illust{
    width: 96px;
  }
  .service_certified_txt{

  }


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


}



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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}


@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{

  }

}
@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_xxx{

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}


@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{

  }

}
@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_xxx{

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}


@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{

  }

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


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


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


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


}

/* メイン部分 */

/* 一覧 */
.works_list{

}
.works_list{

}


@media (max-width:767px){

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

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


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


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


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


}






/*******************************
*　お問い合わせ
********************************/

.contact_info_wrap{
  background: #EEE;
  color: #FFF;
  padding: 30px 25px 20px;
  margin-bottom: 45px;
}
.contact_info_tt{
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-align: center;
  margin-bottom: 15px;
  color: #111;
}
.contact_info_box{
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background: #FFF;
  color: #181818;
  padding: 25px 10px 25px 30px;
}
.contact_info_tel{
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact_info_tel_icon{
  background: #b1c274;
  color: #FFF;
  border-radius: 5px;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  padding: 6px 16px;
  margin-right: 20px;
}
.contact_info_tel_link{
  font-size: 44px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
}
.contact_info_txt{
  font-weight: 700;
  margin-left: 0;
  letter-spacing: 0.16em;
}

@media (max-width:1023px){

  .contact_info_box{
    flex-wrap: wrap;
  }
  .contact_info_tel{
    width: 100%;
  }
  .contact_info_tt {
    font-size: 18px;
  }
  .contact_info_tel_link{
    font-size: 30px;
  }
}
@media (max-width:767px){

  .contact_info_wrap{
    margin-bottom: 50px;
    padding: 15px 10px;
  }
  .contact_info_box{
    padding: 20px 10px;
  }
  .contact_info_tt {
    font-size: 16px;
  }
  .contact_info_tel_icon{
    font-size: 14px;
    margin-right:5px;
  }
  .contact_info_tel_link{
    font-size: 24px;
  }
  .contact_info_txt{
    margin-left:0;
    margin-top: 5px;
    font-size: 10px;
  }

  .contact_info_box{
    flex-wrap: wrap;
  }
  .contact_info_tel{
    width: 100%;
  }
}


.contact_tt {
  font-size: 26px;
  text-align: center;
  margin-bottom: 25px;
  letter-spacing: 0.16em;
}
.contact_tt.privacy{
  font-family: "Noto Sans JP";
  font-weight: 500;
}

/* フォーム */
.formTbl{
  border: 1px solid #b2b2b2;
  background: #ffffff;
}
.form.formWrap {
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}
.formRow + .formRow{
  border-top: 1px solid #b2b2b2;
}
.formTh {
  padding: 12px 15px 16px 20px;
  background: #eeeeee;
  letter-spacing: 0.08em;
}
.formTh label{
  margin: 0;
}
.d-inline-block.requiredText {
  font-size: 13px;
  padding: 0 12px;
  margin-top: 3px;
  float: right;
  font-weight: 900;
  letter-spacing: 0.05em;
  background: #b80000;
  color: #ffffff;
}
.formTd {
  font-size: 15px;
  padding: 10px 16px;
}
.formTd input[type="text"],
.formTd input[type="tel"],
.formTd input[type="email"]{
  max-width: 461px;
  height: 39px;
  width: 100%;
  font-size: 16px;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
  letter-spacing: 0.18em;
}
.formTd select{
  border-radius: 0;
}
.formTd input[name="zip1"]{
  max-width: 120px;
}
.formTd input[name="zip2"]{
  max-width: 150px;
}
.formTd select[name="pref"]{
  max-width: 225px;
  width: 100%;
  font-size: 16px;
  padding: 7px 10px;
  border: 1px solid #d6d8d8;
}
.formTd input[name="city"]{
  max-width: 425px;
}
.formTd .addArea + .addArea{
  margin-top: 8px;
}
.formTd .addArea .labelText02{
  width: 75px;
}
.formTd textarea{
  width: 100%;
  height: 280px;
  font-size: 16px;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
}
.formWrap .text-center{
  padding-top: 40px;
}
.formWrap input[name="privacy"]{
  margin-right: 7px;
}
.formWrap .privacyLabel{
  font-size: 17px;
  display: inline;
}
.formWrap .privacyLabel a{
  color: #1a3e9b;
}
.formBtn.formSend {
  max-width: 314px;
  width: 100%;
  font-size: 18px;
  padding: 10px;
  margin: 32px auto 0;
  border: 0;
  background: #b80000;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.1em;
  display: block;
  font-weight: 500;
  cursor: pointer;
}
.formWrap label {
  display: inline-block;
  margin-bottom: 0;
}
.radioArea{
  padding: 0 15px;
}
.radioArea .d-inline-block .label{
  margin-left: 9px;
  letter-spacing: 0;
}
.radioArea .d-inline-block{
  margin-right: 40px;
}
.radioArea .d-inline-block:last-child{
  margin-right: 0;
}
label.label.zipcode_i {
  padding: 5px;
  background: #cccccc;
  margin: 0;
  display: inline-block;
  border: 1px solid #d6d8d8;
  border-right: 0;
  vertical-align: top;
}

@media only screen and (min-width: 1024px){
  .formTh {
    -ms-flex: 0 0 28%;
    -webkit-box-flex: 0;
    -webkit-flex: 28%;
    flex: 0 0 28%;
    max-width: 28%;
  }
  .formTd {
    -ms-flex: 0 0 72%;
    -webkit-box-flex: 0;
    -webkit-flex: 72;
    flex: 0 0 72%;
    max-width: 72%;
  }
}


/* プライバシー */
.contact_tt{
  margin-bottom: 60px;
  padding-left: 10px;
}
.privacy_item {
  margin-top: 35px;
}
.privacy_ttl {
  font-size: 18px;
  font-weight: 500;
  padding: 10px 15px;
  margin-bottom: 12px;
  border-left: 6px solid #c3d194;
}
.privacy_txt{
  letter-spacing: 0.04em;
  line-height: 1.875;
  text-align: justify;
}

.privacy_txt_type1{
  text-indent: -1.5em;
  padding-left: 1.5em;
}
.privacy_txt_type1_b{
  text-indent: -1em;
  padding-left: 1em;
}
.privacy_txt_type1_c{
  text-indent: -3em;
  padding-left: 3em;
}
.privacy_txt_type2{

}
.privacy_txt_type2 p{
  text-indent: -1em;
  padding-left: 1em;
}

.privacy_txt ol li{
  padding-left: 1.6em;
  text-indent: -1.6em;
}
.privacy_txt ul li{
  padding-left: 1em;
  text-indent: -1em;
}

.contact_tt.privacy {
  margin-bottom: 58px;
}
.contact_tt.privacy br{
  display: none;
}
.formWrap .d-inline{
  display: inline-block!important;
}
.formWrap .d-inline-block {
  vertical-align: middle;
}


@media only screen and (max-width: 1023px){
  .radioArea {
    padding: 0 5px;
  }
  .radioArea .d-inline-block .label {
    margin-left: 11px;
  }


  .privacy_ttl{
    font-size: 18px;
  }

}

@media only screen and (max-width: 767px){
  .contact_info {
    padding: 18px 15px 10px;
  }
  .contact_info_txt_1 br{
    display: block;
  }
  .contact_info_txt_2 {
    padding: 0 6px 0 10px;
    margin-right: 10px;
  }
  .contact_tt {
    margin-bottom: 25px;
    font-size:18px;
  }
  .formTh {
    padding: 5px 10px;
  }
  .formTd {
    font-size: 13px;
    padding: 10px;
  }
  .formTd input[name="zip1"] {
    width: 80px;
  }
  .formTd input[name="zip2"] {
    width: 100px;
  }
  .formTd select[name="pref"] {
    width: 155px;
  }
  .formTd input[type="text"]::placeholder,
  .formTd input[type="tel"]::placeholder,
  .formTd input[type="email"]::placeholder{
    font-size: 14px;
    letter-spacing: 0.01em;
  }
  .formWrap .text-center {
    padding-top: 25px;
  }
  .formWrap .privacyLabel {
    font-size: 15px;
  }

  .privacyformError{
    margin-top:-40px !important;
  }

  .contact_tt.privacy br{
    display: block;
  }
  .contact_tt.privacy {
    margin-bottom: 0;
  }
  .privacy_item {
    margin-top: 26px;
  }
  .contact_info_txt_1 {
    margin-bottom: 10px;
    padding-left: 0;
  }
  .formWrap .d-inline {
    display: block!important;
  }
  .formTd .addArea .labelText02 {
    display: block;
  }
  label.label.zipcode_i {
    padding: 7px 4px;
  }
  a.contact_info_txt_3 {
    width: 200px;
    margin: 10px 0;
  }

  .radioArea .d-inline-block {
    margin-right: 10px;
  }
  .contact_tt {
    margin-bottom: 20px;
  }



  .contact_info_bg {
    padding: 18px 10px;
  }

  .privacy_ttl {
    font-size: 15px;
    padding-left: 10px;
  }
}

/*******************************
*　お問い合わせ送信完了
********************************/
.pg_thanks .link_3{
  margin-top: 50px;
}
.thanks_text{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

@media only screen and (max-width: 767px){
  .thanks_text{
    /*display: block;*/
    letter-spacing: -0.08em;
  }
}


/*******************************
*　
********************************/
.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){


}
