@charset "UTF-8";

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

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

  /* フォント関連 */
  --font-ja: "Noto Sans JP", sans-serif;
  /*--font-en: "Outfit",'Noto Sans JP', sans-serif;*/
  /*--font-en: "Oswald", 'Noto Sans JP',sans-serif;*/
  --font-en: 'Bellefair', "Zen Old Mincho", serif;
  --font-mincho: "Zen Old Mincho", san-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: 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;
}



/*******************************
*　ヘッダー
********************************/
.header{
  --logo-height: 50px;
}
.hdr1{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 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;
  margin-left: auto;
}

/* 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{
  display: flex;
  align-items: center;
  justify-content: center;
  background: #004986;
  color: #FFF;
  width: 200px;
  width: 140px;
  height: 80px;
  padding: 10px 5px;
  font-family: "Outfit", 'Noto Sans JP', sans-serif;
  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);
  background: #000;
  color: #FFF;
}

/* SNSボタン */
.hdr_sns{
  display: flex;
  align-items: center;
  margin-left: 20px;
}
.hdr_sns a{
  width: 50px;
  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: 86px;*/
  }
  .header{
    --logo-height: 130px;
    transition: 0.2s all;
    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    right: 0;
  }

  .hdr1{
    padding: 0  0;
  }

  /* ロゴ */
  .hdr_logo{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
  }
  .hdr_logo img{
    /*width: 180px;*/
  }

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

  }
  .header.slim .hdr_logo img{
    /*height: calc(var(--logo-height) * 0.8);*/
    height: 80px;
  }
  .header.bg{
    background: rgba(255,255,255,0.9);
  }

  /* TELボタン */
  .hdr_tel{

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

  .hdr_menu{
    position: relative;
    z-index: 1;
  }
  .hdr1:after{
    content: "";
    position: absolute;
    z-index: -1;
    height: 1px;
    left: var(--logo-height);
    right: 0;
    bottom: 0;
    background: #004986;
    transition: 0.2s all;
  }
  .header.slim .hdr1:after{
    /*left: calc(var(--logo-height) * 0.8);*/
    left: 80px;
  }

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

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

  /* ロゴ */
  .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: 164px;
  }
  /* ロゴ */
  .hdr_logo{

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

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

  }
  .header.slim .hdr_logo img{
  }

}

/*******************************
*　メインビジュアル
********************************/
/* MV */
.mv{
  overflow: hidden;
  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{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 20px;
  right: 20px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  font-size: 16px;
  font-weight: 700;
  color: #FFF;
  text-shadow: 1.231px 1.576px 5px rgba(32, 31, 31, 0.8);

}
.mv_txt_box1{

}
.mv_txt_box2{
  margin-left: 0;
}
.mv_txt_p1{
  font-size: 3.26em;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0;
}
.mv_txt_p2{
  font-size: 1em;
  font-weight: 900;
  line-height: 1.4736;
  letter-spacing: 0;
}
.pg_header_title_txt1{

}
.pg_header_title_txt1{

}

.mv_video{
  position: relative;
  z-index: 1;
  width: 100%;
  height: 38vh;
  height: 70vw;
}
.mv_video video{
  width: 100%;
  height: 100%;
}

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

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

.gjs-dashed .mv_slider_item{
  background: #CCC;
  padding: 15px 15px;
}
@media (min-width:768px){

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

  /* MVテキスト */
  .mv_txt{
    font-size: 22px;
  }
  .mv_txt_box2{
    margin-left: 30px;
  }

  .mv_video{
    /*height: 100vh;*/
    height: 57vw;
  }

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


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

  /* MVテキスト */
  .mv_txt{
  }
  .mv_txt_p1{

  }
  .mv_txt_p2{

  }

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

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

  /* MVテキスト */
  .mv_txt{
    font-size: 30px;
  }
  .mv_txt_box2{
    margin-left: 60px;
  }
  .mv_txt_p1{

  }
  .mv_txt_p2{

  }

  .mv_video{
    /*height: 100vh;*/
  }
  .mv_video video{
    /*width: 100%;*/
    /*height: auto;*/
    /*height: 100vh;*/
  }
}

@media (min-width:1470px){
  .mv_video{
    height: 100vh;
  }
  .mv_video video{
    height: auto;
  }
}
@media (min-width:1536px){

  /* MVテキスト */
  .mv_txt{
    font-size: 38px;
  }
  .mv_txt_box2{
    margin-left: 120px;
  }
  .mv_txt_p1{

  }
  .mv_txt_p2{

  }

}

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

/* サイドバー */
.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: 20px;
  font-weight: 700;
  color: #FFF;
  text-shadow: 1.231px 1.576px 5px rgba(32, 31, 31, 0.8);
}




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

  .pg_header_title_txt{
    font-size: 28px;
  }

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

  .pg_header_title_txt{

  }

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

  .pg_header{
    margin-bottom: 120px;
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 450px;
  }

  .pg_header_title_txt{
    font-size: 38px;
  }

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

  .pg_header{
    margin-bottom: 180px;
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 600px;
  }

  .pg_header_title_txt{

  }

}




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

.footer{
  margin-top: 50px;
}


/* お問い合わせ */
.ftr_contact{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-top: 1px solid #a39c92;
  border-bottom: 1px solid #a39c92;
  padding: 0 0;
}
.ftr_contact_box1{
  width: 100%;
}
.ftr_contact_box2{
  width: 100%;
}

.ftr_contact_head{
  margin-bottom: 20px;
}
.ftr_contact_head_en{
  font-size: 42px;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0;
  color: var(--txt-color);
}
.ftr_contact_head_ja{
  font-size: 15px;
  line-height: 2;
  margin-top: 30px;
}
.ftr_contact_head_ja + .ftr_contact_head_ja{
  margin-top: 0;
}

.ftr_contact_btns{
  display: flex;
  flex-wrap: wrap;
}
.ftr_contact_btns_item{
  width: 100%;
  padding: 25px 15px;
  text-align: center;
}
.ftr_contact_btns_item{
}
.ftr_contact_btns_item_title{
  margin-bottom: 20px;
}
.ftr_contact_btns_item_tel{
  text-align: center;
}
.ftr_contact_btns_item_tel_txt1{
  font-size: 24px;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  letter-spacing: 0.075em;
}
.ftr_contact_btns_item_tel_txt2{
  font-size: 14px;
  letter-spacing: 0.075em;
  margin-top: 10px;
}
.ftr_contact_btns_item_link{
  display: flex;
  justify-content: center;
}
.ftr_contact_btns_item_link_a{
  width: 200px;
  background: #004986;
  color: #FFF;
  font-size: 15px;
  font-weight: 500;
  border-radius: 5px;
  padding: 10px 10px;
}
.ftr_contact_btns_item_link_a:hover{
  background-color: #000;
  color: #FFF;
}

/*  */
.ftr1{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px;
}
.ftr1_box1{
  width: 365px;
}
.ftr1_box2{
  width: 745px;
  margin-top: 10px;
}
.ftr_logo{
  text-align: center;
  margin-bottom: 20px;
}
.ftr_logo img{
  width: 200px;
}
.ftr_addr{
  font-size: 14px;
  line-height: 1.7;
  text-align: center;
}
.ftr_addr + .ftr_addr{
  margin-top: 10px;
}
.ftr_sns{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 0;
  margin-top: 30px;
}
.ftr_sns_item{
  margin-left: 10px;
}
.ftr_sns_item:first-child{
  margin-left: 0;
}
.ftr_links{
  display: flex;
  flex-wrap: wrap;
}
.ftr_links_item{
  width: 20%;
  text-align: center;
  margin-bottom: 20px;
  /*border-right: 1px solid #a7a7a7;*/
}
.ftr_links_item + .ftr_links_item{

}
.ftr_links_item_a{
  font-size: 15px;
  line-height: 1;
}

/**/
.ftr_copy{
  font-size: 14px;
  text-align: center;
  background: #000;
  color: #FFF;
  padding: 5px 5px;
  margin-top: 30px;
}
.ftr_copy a:hover{
  color: var(--sub-color);
}

/* 追尾スマホメニュー */
.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(--main-color);
  color: #FFF;
  text-decoration: none;
  line-height: 1.2;
}
.footer_fix > a:hover{
  color: #FFF;
}
.footer_fix .footer_fix_item_1{
  width: 40%;
  /*width: 33.3333%;*/
  /*width: 33.3333%;*/
  border-right: 1px solid #FFF;
}
.footer_fix .footer_fix_item_1.recruit{
  background: var(--sub-color);
  ;
  color: #FFF;
}
.footer_fix .footer_fix_item_1:nth-child(3n){
  border-right: 0;
}
.footer_fix .footer_fix_item_2{
  width: 20%;
  background: var(--main-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: 70px;
  z-index: 3;
}
.pagetop a{
  display: block;
  font-size: 0;
  width: 42px;
  text-align: center;
  color: var(--main-color);
}
.pagetop a i{
  font-size: 40px;
}

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


@media (min-width:375px){

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

  body{
    padding-bottom: 56px;
  }

  .ftr_logo img{
    width: 100px;
  }

  /**/
  .ftr_contact_head{
    text-align: center;
  }
  .ftr_contact_head_en{
    font-size: 30px;
  }
  .ftr_contact_head_ja{
    margin-top: 15px;
    font-size: 12px;
  }
  .ftr_contact_btns_item{
    border-top: 1px solid #a39c92;
  }
  .ftr_contact_btns_item{

  }
  .ftr_contact_btns_item_title img{
    height: 70px;
  }


  .ftr_links{
    display: none;
  }

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

  /* お問い合わせ */
  .ftr_contact{
    padding-top: 25px;
    padding-bottom: 25px;
    align-items: center;
  }
  .ftr_contact_box1{
    width: 100%;
  }
  .ftr_contact_box2{
    width: 100%;
  }

  .ftr_contact_head{
    margin-bottom: 20px;
    text-align: center;
  }
  .ftr_contact_head_en{
    font-size: 42px;
  }
  .ftr_contact_head_ja{
    font-size: 15px;
    line-height: 2;
    margin-top: 20px;
  }


  .ftr_contact_btns{
  }
  .ftr_contact_btns_item{
    width: 50%;
    padding: 40px 15px;
  }
  .ftr_contact_btns_item{
    border-left: 1px solid #a39c92;
  }
  .ftr_contact_btns_item:nth-child(2n){
    border-right: 1px solid #a39c92;
  }
  .ftr_contact_btns_item_title{
    margin-bottom: 30px;
  }
  .ftr_contact_btns_item_tel{
  }
  .ftr_contact_btns_item_tel_txt1{
    font-size: 30px;
  }
  .ftr_contact_btns_item_tel_txt2{
    font-size: 14px;
    margin-top: 10px;
  }
  .ftr_contact_btns_item_link{
  }
  .ftr_contact_btns_item_link_a{
    width: 200px;
    font-size: 15px;
    padding: 12px 10px;
  }

  /*  */
  .ftr1{
    margin-top: 85px;
  }
  .ftr1_box1{
    width: 285px;
  }
  .ftr1_box2{
    width: calc(100% - 285px - 30px);
    margin-top: 10px;
  }
  .ftr_logo{
    text-align: left;
    margin-bottom: 40px;
  }
  .ftr_logo img{
    width: auto;
  }
  .ftr_addr{
    font-size: 16px;
    text-align: left;
  }
  .ftr_addr + .ftr_addr{
    margin-top: 10px;
  }
  .ftr_sns{
    justify-content: flex-start;
    /*margin-bottom: 40px;*/
  }
  .ftr_sns_item{
    margin-left: 20px;
  }
  .ftr_links{
    position: relative;
    right: -41px;
  }
  .ftr_links_item{
    width: 50%;
    margin-bottom: 20px;
    border-right: 1px solid #a7a7a7;
  }
  .ftr_links_item:nth-child(2n){
    border-right: 0;
  }
  .ftr_links_item_a{
    font-size: 15px;
  }

  /**/
  .ftr_copy{
    font-size: 14px;
    margin-top: 70px;
  }

  .pagetop{
    bottom: 25px;
  }
  .pagetop a{
    width: 80px;
  }
}
@media (min-width:1024px){
  .footer{
    margin-top: 180px;
  }

  /* お問い合わせ */
  .ftr_contact{
    align-items: center;
  }
  .ftr_contact_box1{
    width: 37.5%;
  }
  .ftr_contact_box2{
    width: 62.5%;
    width: 51.31%;
  }

  .ftr_contact_head{
    margin-bottom: 20px;
    text-align: left;
  }
  .ftr_contact_head_en{
    font-size: 32px;
  }
  .ftr_contact_head_ja{
    font-size: 12px;
    margin-top: 20px;
  }

  .ftr_contact_btns{
  }
  .ftr_contact_btns_item{
    padding: 25px 15px;
  }
  .ftr_contact_btns_item{
    border-left: 1px solid #a39c92;
  }
  .ftr_contact_btns_item:nth-child(3n){
    border-right: 0;
  }
  .ftr_contact_btns_item_title{
    margin-bottom: 30px;
  }
  .ftr_contact_btns_item_title img{
    height: 60px;
  }
  .ftr_contact_btns_item_tel{
  }
  .ftr_contact_btns_item_tel_txt1{
    font-size: 24px;
  }
  .ftr_contact_btns_item_tel_txt2{
    font-size: 12px;
  }
  .ftr_contact_btns_item_link{
  }
  .ftr_contact_btns_item_link_a{
    width: 200px;
  }
}
@media (min-width:1200px){

  /*  */
  .ftr1{
    margin-top: 85px;
  }
  .ftr1_box1{
    width: 365px;
  }
  .ftr1_box2{
    width: 745px;
    width: 447px;
    margin-top: 10px;
  }
  .ftr_logo{
    text-align: left;
    margin-bottom: 60px;
  }
  .ftr_logo img{
    width: auto;
  }
  .ftr_addr{
    font-size: 16px;
    text-align: left;
  }
  .ftr_addr + .ftr_addr{
    margin-top: 10px;
  }
  .ftr_sns{
    justify-content: flex-start;
    /*margin-bottom: 65px;*/
  }
  .ftr_sns_item{
    margin-left: 20px;
  }
  .ftr_links{
  }
  .ftr_links_item{
    width: 50%;
    margin-bottom: 20px;
    border-right: 1px solid #a7a7a7;
  }
  .ftr_links_item:nth-child(3n){
    /*border-right: 1px solid #a7a7a7;*/
  }
  .ftr_links_item:nth-child(2n){
    border-right: 0;
  }
  .ftr_links_item_a{
    font-size: 15px;
  }

  #chatbot-btn{
    right: 70px !important;
  }

}
@media (min-width:1470px){
  /* お問い合わせ */
  .ftr_contact{
    align-items: center;
  }
  .ftr_contact_box1{
    width: 37.5%;
  }
  .ftr_contact_box2{
    width: 62.5%;
    width: 51.31%;
  }

  .ftr_contact_head{
    margin-bottom: 20px;
    text-align: left;
  }
  .ftr_contact_head_en{
    font-size: 42px;
  }
  .ftr_contact_head_ja{
    font-size: 15px;
    margin-top: 20px;
  }

  .ftr_contact_btns{
  }
  .ftr_contact_btns_item{
    padding: 40px 15px;
  }
  .ftr_contact_btns_item{
    border-left: 1px solid #a39c92;
  }
  .ftr_contact_btns_item:nth-child(3n){
    border-right: 0;
  }
  .ftr_contact_btns_item_title{
    margin-bottom: 30px;
  }
  .ftr_contact_btns_item_title img{
    height: 87px;
  }
  .ftr_contact_btns_item_tel{
  }
  .ftr_contact_btns_item_tel_txt1{
    font-size: 30px;
  }
  .ftr_contact_btns_item_tel_txt2{
    font-size: 14px;
  }
  .ftr_contact_btns_item_link{
  }
  .ftr_contact_btns_item_link_a{
    width: 200px;
  }

  .ftr1_box2{
    margin-top: 0;
  }
  .ftr_links_item{
    padding-left: 65px;
    margin-bottom: 45px;
    text-align: left;
  }

  .pagetop{

  }
  .pagetop a{
    width: 80px;
  }
}
@media (min-width:1720px){
  .pagetop a{
    width: 120px;
  }
}


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


/* テーブル用 */
.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;
}

.js-scrollable{
  overflow-y: hidden !important;
}
.scroll-hint-icon:before{
  width: 30px;
  height: 30px;
}
.scroll-hint-text{
  font-size: 9px;
  white-space: nowrap;
}
.scroll-hint-icon{
  top: calc(50% - 40px);
  transform: scale(0.8);
}

/* ページネーション */
.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: 14px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  border: 1px solid var(--sub-color);
  ;
  background: #FFF;
  /*border-radius: 27px;*/
  color: #181818;
  padding: 12px 15px;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.read_more a p{
  /*letter-spacing: 0;*/
}
.read_more a:after{
  content: "";
  height: 12px;
  aspect-ratio: 7 / 8;

  background: #FFF;
  background-image: url('https://kimidori.co.jp/system_panel/uploads/images/read_more_arr.png');
  background-repeat: no-repeat;
  background-size: 7px 8px;
  background-position: center;
  position: absolute;
  z-index: 1;
  top: 50%;
  right: -4px;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  transition: 0.2s all;
  /*border: 2px solid #FFF;*/
}
.read_more a:hover{
  color: #FFF;
  /*background: var(--sub-color);*/
}
.read_more a:hover:after{
  /*margin-right: -5px;*/
}
.read_more a:before{
  content: "";
  background: var(--sub-color);
  position: absolute;
  z-index: -1;
  inset: 7px 50%;
  transition: 0.2s all;
  opacity: 0;
}
.read_more a:hover:before{
  inset: 7px;
  opacity: 1;
}

.read_more a.color2{
  background: var(--sub-color);
  color: #FFF;
  border-radius: 26px;
}
.read_more a.color2:after,
.read_more a.color2:before{
  display: none;
}
.read_more a.color2:hover{
  background: var(--main-color);
  border-color: var(--main-color);
}


/* 見出し */
.tt2{
  text-align: center;
  margin-bottom: 30px;
}
.tt2_en{
  font-size: 32px;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  color: #565656;
}
.tt2_ja{
  font-size: 16px;
  font-weight: 500;
  margin-top: 5px;
}
.tt2_ja2{
  font-size: 18px;
  font-weight: 500;
  margin-top: 15px;
}
.tt2_ja2 strong{
  display: block;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
}


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

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

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

}


@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: -150px;
  }

  /* ページネーション */
  .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: 220px;
    font-size: 15px;
    padding: 16px 20px;
    margin: 5px 5px;
  }
  .read_more a:after{
    /*right: 18px;*/
  }
  .read_more a:hover:after{
    /*margin-right: -5px;*/
  }

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

  .tt2_ja2{
    font-size: 24px;
    margin-top: 30px;
  }
  .tt2_ja2 strong{
    font-size: 18px;
  }

  .section{
    padding-top: 50px;
    padding-bottom: 50px;
  }

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

  .read_more a{
    min-width: 270px;
  }
  .read_more a.color2{
    min-width: 350px;
  }
}


@media (min-width:1366px){

  /* 見出し */
  .tt2{
    margin-bottom: 50px;
  }
  .tt2_en{
    font-size: 15px;
  }
  .tt2_en.mid{
    font-size: 20px;
  }
  .tt2_ja{
    font-size: 45px;
  }

}

.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: 20px;
}
.pg_home .section.sec1{

}
.pg_home .section.sec2{

}
.pg_home .section.sec3{

}
.pg_home .section.sec4{

}
.pg_home .section.sec5{

}
.pg_home .section.sec6{

}
.pg_home .section.sec7{

}
.pg_home .section.sec8{

}

@media (max-width:767px){
  .pg_home .section.sec1{

  }
  .pg_home .section.sec2{
    /*padding-top: 0;*/
  }
  .pg_home .section.sec3{

  }
  .pg_home .section.sec4{

  }
  .pg_home .section.sec5{

  }
  .pg_home .section.sec6{

  }
  .pg_home .section.sec7{

  }
  .pg_home .section.sec8{

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

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

  }
  .pg_home .section.sec2{

  }
  .pg_home .section.sec3{

  }
  .pg_home .section.sec4{

  }
  .pg_home .section.sec5{

  }
  .pg_home .section.sec6{

  }
  .pg_home .section.sec7{

  }
  .pg_home .section.sec8{

  }

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


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

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

  }
  .pg_home .section.sec2{
    padding-top: 135px;
  }
  .pg_home .section.sec3{
    padding-top: 135px;
  }
  .pg_home .section.sec4{
    padding-top: 135px;
  }
  .pg_home .section.sec5{
    padding-top: 135px;
  }
  .pg_home .section.sec6{
    padding-top: 135px;
  }
  .pg_home .section.sec7{
    padding-top: 135px;
  }
  .pg_home .section.sec8{

  }

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

  .pg_home{
    padding-top: 180px;
  }

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


}

/* ピックアップ */
.home_pickup{
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}
.home_pickup_box1{
  width: 100%;
  padding: 0 5px;
}
.home_pickup_box2{
  width: 100%;
  padding: 0 5px;
}
.home_pickup_list{

}
.home_pickup_list .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  margin-left: 5px;
  margin-right: 5px;
}
.home_pickup_list .webgene-item{
  padding: 0 5px;
}
.home_pickup_list.col1 .webgene-item{
  width: 100%;
}
.home_pickup_list.col2 .webgene-item{
  width: 50%;
}
.home_pickup_box2 .home_pickup_list.col2 .webgene-item:first-child{
  display: none;
}
.home_pickup_list.col2 .webgene-item:nth-child(n+4){
  margin-top: 18px;
}

.home_pickup_list .webgene-item .img{
  background: #CCC;
}
.home_pickup_list.col1 .webgene-item .img.img_fit:before{
  padding-top: 97.647%;
}
.home_pickup_list.col2 .webgene-item .img.img_fit:before{
  padding-top: 75%;
}
.home_pickup_list .webgene-item .title{
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  min-height: calc(2em * 1.5);
  margin-top: 10px;
}

@media (max-width:374px){

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

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

  .home_pickup_box2{
    margin-top: 20px;
  }

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


  /* ピックアップ */
  .home_pickup{
    margin-left: -10px;
    margin-right: -10px;
  }
  .home_pickup_box1{
    width: 46.84%;
    padding: 0 10px;
  }
  .home_pickup_box2{
    width: 53.16%;
    padding: 0 10px;
  }
  .home_pickup_list{

  }
  .home_pickup_list .webgene-blog{
    margin-left: -10px;
    margin-right: -10px;
  }
  .home_pickup_list .webgene-item{
    padding: 0 10px;
  }
  .home_pickup_list.col1 .webgene-item{
    width: 100%;
  }
  .home_pickup_list.col2 .webgene-item{
    width: 50%;
  }
  .home_pickup_list.col2 .webgene-item:nth-child(n+4){
    margin-top: 18px;
  }

  .home_pickup_list.col1 .webgene-item .img.img_fit:before{
    /*padding-top: 97.647%;*/
    padding-top: 105.647%;
  }
  .home_pickup_list.col2 .webgene-item .img.img_fit:before{
    padding-top: 75%;
  }
  .home_pickup_list .webgene-item .title{
    font-size: 16px;
    margin-top: 10px;
  }

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

  .home_pickup_list.col1 .webgene-item .img.img_fit:before{
    padding-top: 100.647%;
  }
}
@media (min-width:1200px){

  .home_pickup_list.col1 .webgene-item .img.img_fit:before{
    padding-top: 97.647%;
  }

  .pg_home .section.sec3 .cmn_sec_tt.bdrRight{
    margin-bottom: 30px;
  }
}
@media (min-width:1470px){


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


}



.cmn_sec_tt{
  position: relative;
  z-index: 1;
  margin-bottom: 25px;
}
.cmn_sec_tt_en{
  font-size: 32px;
  font-weight: 600;
  font-family: var(--font-mincho);
  line-height: 1;
  letter-spacing: 0;
  color: var(--main-color);
}
.cmn_sec_tt_ja{
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
}
* + .cmn_sec_tt_ja{
  margin-top: 15px;
}

.cmn_sec_tt.bdrTop{
  border-top: 1px solid #0068b7;
  padding-top: 15px;
}

.cmn_sec_tt.bdrRight{

}
.cmn_sec_tt.bdrRight .cmn_sec_tt_en{
  display: flex;
  white-space: nowrap;

}
.cmn_sec_tt.bdrRight .cmn_sec_tt_en:after{
  content: "";
  width: 100%;
  height: 1px;
  background: #0068b7;
  margin-top: 15px;
  margin-top: 0.2027em;
  margin-left: 15px;
}

.cmn_sec_tt .read_more{
  /*position: absolute;*/
  /*z-index: 1;*/
  /*bottom: 0;*/
  /*right: 0;*/
}

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

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

}
.cmn_contents_row{
  display: flex;
  flex-wrap: wrap;
  background: #f8f8f8;
  position: relative;
  z-index: 1;
}
.cmn_contents_row + .cmn_contents_row{
  margin-top: 15px;
}
.cmn_contents_row.slim2 + .cmn_contents_row.slim2{
  margin-top: 15px;
}

a.cmn_contents_row:hover{
  color: var(--txt-color);
  color: #FFF;
  background: var(--main-color);
  background: #2478bf;
}
a.cmn_contents_row:hover .cmn_contents_head_link p{
  transform: scale(1.05);

}

.cmn_contents_box1{
  width: 100%;
}
.cmn_contents_box2{
  width: 100%;
      padding: 20px 10px;
}
.cmn_contents_head{
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.cmn_contents_head.mb0{
  margin-bottom: 0;
}
.cmn_contents_head_box1{
  width: 65px;
  padding-top: 10px;
  border-right: 1px solid #d9d9d9;
}
.cmn_contents_head_box2{
  width: calc(100% - 115px);
  width: calc(100% - 65px);
  padding-left: 15px;
}
.cmn_contents_head_num{
  font-size: 50px;
  font-weight: 400;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0;
  color: #d7dce4;
}
.cmn_contents_head_title{
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.025em;
  line-height: 1.4;
}
.cmn_contents_head_title strong{
  color: var(--sub-color);
  font-weight: inherit;
}

.cmn_contents_head_desc{
  font-size: 15px;
  letter-spacing: 0;
  margin-top: 5px;
}
.cmn_contents_head_link{
  font-size: 15px;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0;
  color: var(--sub-color);
  margin-top: 10px;
}
.cmn_contents_head_link p{
  transform-origin: left;
  transition: 0.2s all;
}

.cmn_contents_row.slim .cmn_contents_img.img_fit:before{
  padding-top: 65.306%;
}

.cmn_contents_row.slim2 .cmn_contents_box2{
  /*padding: 35px 35px 25px;*/
  padding-left: 15px;
  padding-right: 15px;
}
.cmn_contents_row.slim2 .cmn_contents_head_box1{
  padding-top: 35px;
  padding-bottom: 25px;
}
.cmn_contents_row.slim2 .cmn_contents_img.img_fit:before{
  padding-top: 44.286%;
}


.cmn_contents_txt{
  letter-spacing: 0;
}
.cmn_contents_img{
  /*height: 100%;*/
}
.cmn_contents_img.img_fit:before{
  padding-top: 80%;
}

.cmn_contents{

}
.cmn_contents .webgene-blog{

}
.cmn_contents .webgene-item + .webgene-item{
  margin-top: 10px;
}
.cmn_contents_row.slim2 .cmn_contents_box2{

}

/* FLOW */
.cmn_contents2{

}
.cmn_contents2_row{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cmn_contents2_row + .cmn_contents2_row{
  margin-top: 30px;
}
.cmn_contents2_box1{
  width: 100%;
}
.cmn_contents2_box2{
  width: 100%;
  margin-top: 20px;
}
.cmn_contents2_head{
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.cmn_contents2_head_box1{
  width: 75px;
  border-right: 2px solid #a3b3c8;
}
.cmn_contents2_head_box1_inner{
  display: inline-block;
  text-align: center;
  font-size: 18px;
}
.cmn_contents2_head_box2{
  width: calc(100% - 75px);
  padding-left: 25px;
}
.cmn_contents2_head_label{
  font-size: 1em;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0;
  color: #a3b3c8;
}
.cmn_contents2_head_num{
  font-size: 2.857em;
  font-family: var(--font-en);
  line-height: 0.8;
  letter-spacing: 0;
  color: #a3b3c8;
  margin-top: 5px;
}
.cmn_contents2_head_title{
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.025em;
}
.cmn_contents2_txt{
  letter-spacing: 0;
}
.cmn_contents2_img{

}
.cmn_contents2_img.img_fit:before{
  padding-top: 80.645%;
}

.cmn_contents_wrap{

}
.cmn_contents_wrap + .cmn_contents_wrap{
  margin-top: 50px;
}
.cmn_contents_tt3{
  font-size: 18px;
  font-weight: 800;
  background: #e8e8e8;
  border-left: 5px solid #004986;
  padding: 5px 10px;
  margin-bottom: 20px;
}

/* おすすめ */
.cmn_osusume{
  background: #f8f8f8;
  padding: 30px 95px;
  padding: 25px 20px;
}
* + .cmn_osusume{
  margin-top: 30px;
}
.cmn_osusume_title{
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 12px;
}
.cmn_osusume_title strong{
  font-weight: inherit;
  color: var(--sub-color);
}
.cmn_osusume_list{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cmn_osusume_list_item{
  width: 100%;
  margin: 8px 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  position: relative;
  z-index: 1;
  padding-left: 20px;
}
.cmn_osusume_list_item:before{
  content: "";
  width: 14px;
  aspect-ratio: 1 / 1;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url('https://kimidori.co.jp/system_panel/uploads/images/icon_check_or.svg');
  position: absolute;
  z-index: 1;
  top: 3px;
  left: 0;
}
.cmn_osusume_list_item p{
  letter-spacing: 0;
}

/* ポイント */
.cmn_points{
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}
* + .cmn_points{

}
.cmn_points_item{
  width: 100%;
  padding: 0 10px;
  margin: 15px 0;
}
.cmn_points_item_inner{
  background: #f8f8f8;
  padding: 20px 20px;
}
.cmn_points_item_video{

}
.cmn_points_item_video iframe,
.cmn_points_item_video embed,
.cmn_points_item_video video{
  border: 0;
}
.cmn_points_item_img{

}
.cmn_points_item_img.img_fit:before{
  padding-top: 83.333%;
}
.cmn_points_item_title{
  font-size: 20px;
  font-weight: 600;
  line-height: 1.357;
  letter-spacing: 0.025em;
  text-align: center;
}
.cmn_points_item_title:after{
  content: "";
  display: block;
  width: 100px;
  height: 1px;
  background: #d9d9d9;
  margin: 10px auto 0;
}
.cmn_points_item_txt{
  letter-spacing: 0;
  margin-top: 10px;
}

.cmn_points_item.wide{
  width: 100%;
}
.cmn_points_item.wide .cmn_points_item_inner{
  /*padding-left: 20px;*/
  /*padding-right: 20px;*/
}

.lity-close,
.lity-close:hover{
  display: block;
  font-size: 0;
  width: 24px;
  height: auto;
  aspect-ratio: 41 / 50;
  background-image: url('https://kimidori.co.jp/system_panel/uploads/images/popup_close.png');
  background-size: contain;
  background-repeat: no-repeat;
  top: 10px;
  right: 10px;
}

@media (min-width:768px){

  /* セクションタイトル */
  .cmn_sec_tt{
    margin-bottom: 30px;
  }
  .cmn_sec_tt_en{
    font-size: 42px;
  }
  .cmn_sec_tt_ja{
    font-size: 22px;
  }
  * + .cmn_sec_tt_ja{
    margin-top: 20px;
  }

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

  }
  .cmn_contents_box1{
  }
  .cmn_contents_box2{
    padding: 20px 30px;
  }
  .cmn_contents_head{
    margin-bottom: 10px;
  }
  .cmn_contents_head_box1{
    width: 115px;
    padding-top: 10px;
  }
  .cmn_contents_head_box2{
    width: calc(100% - 115px);
    padding-left: 32px;
  }
  .cmn_contents_head_num{
    font-size: 80px;
  }
  .cmn_contents_head_title{
    font-size: 24px;
  }

  .cmn_contents_head_desc{
    font-size: 16px;
    margin-top: 15px;
  }
  .cmn_contents_head_link{
    font-size: 15px;
    margin-top: 20px;
  }

  .cmn_contents_row.slim2 .cmn_contents_head_title{
    font-size: 24px;
  }
  .cmn_contents_row.slim2 .cmn_contents_box2{
    /*padding: 35px 35px 25px;*/
    padding-left: 35px;
    padding-right: 15px;
  }

  /* おすすめ */
  .cmn_osusume{
    padding: 30px 50px;
  }
  * + .cmn_osusume{
    margin-top: 50px;
  }
  .cmn_osusume_title{
    font-size: 22px;
    margin-bottom: 12px;
  }
  .cmn_osusume_list{
  }
  .cmn_osusume_list_item{
    width: calc(50% - 15px);
    margin: 10px 0;
    font-size: 16px;
    padding-left: 25px;
  }
  .cmn_osusume_list_item:before{
    width: 18px;
    top: 4px;
  }

  /* FLOW */
  .cmn_contents2{

  }
  .cmn_contents2_row{
  }
  .cmn_contents2_row + .cmn_contents2_row{
    margin-top: 53px;
  }
  .cmn_contents2_box1{
    width: 45.04%;
    width: 45%;
  }
  .cmn_contents2_box2{
    width: 48.64%;
    width: 52%;
    margin-top: 0;
  }
  .cmn_contents2_head{
    margin-bottom: 20px;
  }
  .cmn_contents2_head_box1{
    width: 80px;
  }
  .cmn_contents2_head_box1_inner{
    font-size: 20px;
  }
  .cmn_contents2_head_box2{
    width: calc(100% - 80px);
    padding-left: 25px;
  }
  .cmn_contents2_head_num{
    margin-top: 5px;
  }
  .cmn_contents2_head_title{
    font-size: 22px;
  }

  .cmn_contents2.right .cmn_contents2_box1{
    order: 2;
  }
  .cmn_contents2.right .cmn_contents2_box2{
    order: 1;
  }

  .cmn_contents_tt3{
    font-size: 24px;
    padding: 5px 10px;
    margin-bottom: 30px;
  }

  /* ポイント */
  .cmn_points{
    /*margin-left: -15px;*/
    /*margin-right: -15px;*/
  }
  * + .cmn_points{

  }
  .cmn_points_item{
    width: 50%;
    /*padding: 0 15px;*/
    margin: 15px 0;
  }
  .cmn_points_item_inner{
    padding: 20px 20px;
  }
  .cmn_points_item_title{
    font-size: 22px;
  }
  .cmn_points_item_title:after{
    width: 150px;
    margin: 10px auto 0;
  }
  .cmn_points_item_txt{
    margin-top: 25px;
  }

  .cmn_points_item.wide .cmn_points_item_inner{
    /*padding-left: 95px;*/
    /*padding-right: 95px;*/
  }


  .lity-close,
  .lity-close:hover{
    width: 41px;
    top: 30px;
    right: 30px;
  }

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

  /* セクションタイトル */
  .cmn_sec_tt{
    margin-bottom: 30px;
  }
  .cmn_sec_tt_en{
    font-size: 54px;
  }
  .cmn_sec_tt_ja{
    font-size: 24px;
  }
  * + .cmn_sec_tt_ja{
    margin-top: 30px;
  }

  .cmn_sec_tt.bdrTop{
    padding-top: 18px;
  }
  .cmn_sec_tt.bdrTop.wide{
    border-top: 0;

  }
  .cmn_sec_tt.bdrTop.wide:before{
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: -54%;
    height: 1px;
    background: #0068b7;
  }
  .about_value.left .cmn_sec_tt.bdrTop.wide:before{
    left: -54%;
    right: 0;
  }

  .cmn_sec_tt.bdrRight{

  }
  .cmn_sec_tt.bdrRight .cmn_sec_tt_en{

  }
  .cmn_sec_tt.bdrRight .cmn_sec_tt_en:after{
    margin-top: 0.2027em;
    margin-left: 30px;
  }

  .cmn_sec_tt.right{
    text-align: right;
  }

  .cmn_sec_tt .read_more{
    position: absolute;
    z-index: 1;
    bottom: 0;
    right: 0;
  }

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

  }
  .cmn_contents_row{

  }
  .cmn_contents_row + .cmn_contents_row{
    margin-top: 15px;
  }
  .cmn_contents_box1{
    width: 285px;
  }
  .cmn_contents_box2{
    width: calc(100% - 285px);
    min-height: 392px;
    padding: 20px 65px;
  }
  .cmn_contents_head{
    margin-bottom: 10px;
  }
  .cmn_contents_head_box1{
    /*width: 135px;*/
    padding-top: 10px;
  }
  .cmn_contents_head_box2{
    /*width: calc(100% - 135px);*/
    /*padding-left: 32px;*/
  }
  .cmn_contents_head_num{
    /*font-size: 118px;*/
  }
  .cmn_contents_head_title{
    /*font-size: 28px;*/
  }
  .cmn_contents_img{
    height: 100%;
  }
  .cmn_contents_img.img_fit:before{
    padding-top: 0;
    height: 100%;
  }

  .cmn_contents_row:nth-child(odd) .cmn_contents_box1{
    order: 1;
  }
  .cmn_contents_row:nth-child(odd) .cmn_contents_box2{
    order: 2;
  }

  .cmn_contents_row:nth-child(even) .cmn_contents_box1{
    order: 2;
  }
  .cmn_contents_row:nth-child(even) .cmn_contents_box2{
    order: 1;
  }


  .cmn_contents_row.slim .cmn_contents_box1{
    /*width: 285px;*/
  }
  .cmn_contents_row.slim .cmn_contents_box2{
    /*width: calc(100% - 285px);*/
    min-height: 320px;
    /*padding: 20px 65px;*/
  }
  .cmn_contents_row.slim .cmn_contents_img.img_fit:before{
    padding-top: 0;
  }

  .cmn_contents_row.slim2 + .cmn_contents_row.slim2{
    margin-top: 5px;
  }
  .cmn_contents_row.slim2 .cmn_contents_box1{
    /*width: 285px;*/
  }
  .cmn_contents_row.slim2 .cmn_contents_box2{
    /*width: calc(100% - 285px);*/
    min-height: 217px;
    /*padding: 20px 65px;*/
  }
  .cmn_contents_row.slim2 .cmn_contents_img.img_fit:before{
    padding-top: 0;
  }

  .cmn_contents .webgene-item .cmn_contents_row.slim2 .cmn_contents_box2{
    min-height: 170px
  }
  .cmn_contents .webgene-item .cmn_contents_row:nth-child(odd) .cmn_contents_img{
    margin-left: 0;
  }
  .cmn_contents .webgene-item .cmn_contents_head_box2{
    width: 100%;
    padding-left: 25px;
    padding-right: 15px;
  }

  /* FLOW */
  .cmn_contents2{

  }
  .cmn_contents2_row{
  }
  .cmn_contents2_row + .cmn_contents2_row{
    /*margin-top: 53px;*/
  }
  .cmn_contents2_box1{
    width: 45.04%;
  }
  .cmn_contents2_head_box1_inner{
    /*font-size: 28px;*/
  }
  .cmn_contents2_box2{
    width: 48.64%;
  }

  .cmn_contents2_head{
    margin-bottom: 40px;
  }
  .cmn_contents2_head_box1{
    /*width: 110px;*/
  }
  .cmn_contents2_head_box2{
    /*width: calc(100% - 110px);*/
    /*padding-left: 35px;*/
  }
  .cmn_contents2_head_title{
    /*font-size: 28px;*/
  }

  /* おすすめ */
  .cmn_osusume{
    /*padding: 30px 80px;*/
  }
  * + .cmn_osusume{
    /*margin-top: 70px;*/
  }
  .cmn_osusume_title{
    font-size: 24px;
    margin-bottom: 12px;
  }
  .cmn_osusume_list{
  }
  .cmn_osusume_list_item{
    width: calc(50% - 15px);
    margin: 12px 0;
    font-size: 18px;
    padding-left: 25px;
  }
  .cmn_osusume_list_item:before{
    width: 18px;
    top: 4px;
  }



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

  /* セクションタイトル */
  .cmn_sec_tt{
    margin-bottom: 60px;
  }
  .cmn_sec_tt_en{
    font-size: 64px;
  }
  .cmn_sec_tt_ja{
    font-size: 30px;
  }
  * + .cmn_sec_tt_ja{
    margin-top: 30px;
  }

  .cmn_sec_tt.bdrTop{
    padding-top: 18px;
  }
  .cmn_sec_tt.bdrTop.wide:before{
    right: -59%;
  }
  .about_value.left .cmn_sec_tt.bdrTop.wide:before{
    left: -59%;
  }

  .cmn_sec_tt.bdrRight{

  }
  .cmn_sec_tt.bdrRight .cmn_sec_tt_en{

  }
  .cmn_sec_tt.bdrRight .cmn_sec_tt_en:after{
    margin-top: 0.2027em;
    margin-left: 30px;
  }

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

  }
  .cmn_contents_row{

  }
  .cmn_contents_row + .cmn_contents_row{
    /*margin-top: 15px;*/
  }
  .cmn_contents_box1{
    width: 285px;
  }
  .cmn_contents_box2{
    width: calc(100% - 285px);
    /*min-height: 392px;*/
    padding: 20px 65px;
  }
  .cmn_contents_head{
    /*margin-bottom: 10px;*/
  }
  .cmn_contents_head_box1{
    width: 135px;
    padding-top: 10px;
  }
  .cmn_contents_head_box2{
    width: calc(100% - 135px);
    padding-left: 32px;
  }
  .cmn_contents_head_num{
    font-size: 118px;
  }
  .cmn_contents_head_title{
    font-size: 26px;
  }


  .cmn_contents_row:nth-child(odd) .cmn_contents_img{
    margin-left: -50px;
  }
  .cmn_contents_row:nth-child(even) .cmn_contents_img{
    margin-right: -50px;
  }

  .cmn_contents + .read_more{
    margin-top: 70px;
  }


  /* FLOW */
  .cmn_contents2{

  }
  .cmn_contents2_row{
  }
  .cmn_contents2_row + .cmn_contents2_row{
    margin-top: 53px;
  }
  .cmn_contents2_box1{
    width: 45.04%;
  }
  .cmn_contents2_head_box1_inner{
    font-size: 28px;
  }
  .cmn_contents2_box2{
    width: 48.64%;
  }

  .cmn_contents2_head{
    margin-bottom: 40px;
  }
  .cmn_contents2_head_box1{
    width: 110px;
  }
  .cmn_contents2_head_box2{
    width: calc(100% - 110px);
    padding-left: 35px;
  }
  .cmn_contents2_head_title{
    font-size: 28px;
    margin-right:-30px;
  }

  /* ポイント */
  .cmn_points{
    margin-left: -15px;
    margin-right: -15px;
  }
  * + .cmn_points{

  }
  .cmn_points_item{
    width: 50%;
    padding: 0 15px;
    margin: 19px 0;
  }
  .cmn_points_item.wide{
    margin-bottom: 45px;
  }
  .cmn_points_item_inner{
    padding: 35px 65px;
  }
  .cmn_points_item_title{
    font-size: 26px;
  }
  .cmn_points_item_title:after{
    width: 200px;
    margin: 20px auto 0;
  }
  .cmn_points_item_txt{
    margin-top: 25px;
  }

  .cmn_points_item.wide .cmn_points_item_inner{
    padding-left: 95px;
    padding-right: 95px;
  }

  /* おすすめ */
  .cmn_osusume{
    padding: 30px 80px;
  }
  * + .cmn_osusume{
    margin-top: 70px;
  }
}
@media (min-width:1366px){

  /* セクションタイトル */
  .cmn_sec_tt{
    /*margin-bottom: 60px;*/
  }

  /* コンテンツ */
  .cmn_contents_row:nth-child(odd) .cmn_contents_img{
    margin-left: -100px;
  }
  .cmn_contents_row:nth-child(even) .cmn_contents_img{
    margin-right: -100px;
  }

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

  /* コンテンツ */
  .cmn_contents_row:nth-child(odd) .cmn_contents_img{
    margin-left: -205px;
  }
  .cmn_contents_row:nth-child(even) .cmn_contents_img{
    margin-right: -205px;
  }

  .cmn_sec_tt.bdrTop.wide:before{
    right: -70%;
  }
  .about_value.left .cmn_sec_tt.bdrTop.wide:before{
    left: -70%;
  }

}

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

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

}
.pg_about .section.sec1{

}
.pg_about .section.sec2{

}
.pg_about .section.sec3{

}
.section.about_vision_sec{
  padding: 0;
  position: relative;
  z-index:1;
}

@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: 115px;*/
    /*padding-bottom: 180px;*/
  }
  .pg_about .section.sec3{
  }

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

  .pg_about .section.sec1{

  }
  .pg_about .section.sec2{
    padding-top: 115px;
    padding-bottom: 180px;
  }
  .pg_about .section.sec3{
  }

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


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


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


}

/* メイン部分 */

/* About */
.about_value{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.about_value_box1{
  width: 100%;
}
.about_value_box2{
  width: 100%;
  margin-top: 20px;
}
.about_value_box3{
  width: 100%;
}
.about_value_box4{
  width: 100%;
  margin-top: 20px;
}
.about_value_title{
  font-size: 18px;
  font-weight: 800;
  line-height: 1.5333;
  margin-bottom: 15px;
}
.about_value_txt{

}
.about_value_imgs{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.about_value_img1{
  width: 49.13%;
}
.about_value_img1.img_fit:before{
  padding-top: 147.568%;
}
.about_value_img2{
  width: 48.47%;
  margin-bottom: 8px;
}
.about_value_img2.img_fit:before{
  padding-top: 191.781%;
}
.about_value_img3{
}
.about_value_img3.img_fit:before{
  padding-top: 138.105%;
}


/* Vision */
.about_vision_inner{
  padding: 50px 0 50px;
  text-align: center;
  position: relative;
  z-index: 1;
  color: #FFF;
}
.about_vision_title{

}
.about_vision_title_en{
  font-size: 60px;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0;
  line-height: 1;
}
.about_vision_title_ja{
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0;
  margin-top: 10px;
}
.about_vision_title_sub{
  font-size: 16px;
  font-weight: 800;
  margin-top: 25px;
}
.about_vision_title_sub p{
  letter-spacing: 0.025em;
}
.about_vision_txt{
  margin-top: 30px;
  /*text-align: center;*/
}
.about_vision_txt p{
  letter-spacing: 0;
}
.about_vision_bg{
  position: absolute;
  z-index: 0;
  inset: 0;
}
.about_vision_bg:after{
  content:"";
  background: rgba(0,0,0,0.7);

  position: absolute;
  z-index: 1;
  inset: 0;
}


@media (max-width:767px){

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

  /* About */
  .about_value{
  }
  .about_value_box1{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .about_value_box2{
    /*margin-top: 0;*/
  }
  .about_value_box3{
  }
  .about_value_box4{
    /*margin-top: 0;*/
  }
  .about_value_title{
    font-size: 24px;
    margin-bottom: 20px;
  }
  .about_value_txt{

  }

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

  /* About */
  .about_value{
  }
  .about_value_box1{
    width: 48.64%;
  }
  .about_value_box2{
    width: 48.54%;
    margin-top: 50px;
  }
  .about_value_box3{
    width: 51.35%;
  }
  .about_value_box4{
    width: 44.68%;
    margin-top: 0;
  }
  .about_value_title{
    font-size: 24px;
    margin-bottom: 20px;
  }
  .about_value_txt{

  }

  .about_value.left{
    flex-direction: row-reverse;
  }
  .about_value.left .about_value_imgs{

  }

  /* Vision */
  .about_vision_inner{
    padding: 80px 0 120px;
    text-align: center;
  }
  .about_vision_title{

  }
  .about_vision_title_en{
    font-size: 124px;
  }
  .about_vision_title_ja{
    font-size: 38px;
    margin-top: 20px;
  }
  .about_vision_title_sub{
    font-size: 30px;
    margin-top: 40px;
  }
  .about_vision_txt{
    margin-top: 65px;
    text-align: center;
  }

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

  /* About */
  .about_value{
  }
  .about_value_box1{
    width: 48.64%;
  }
  .about_value_box2{
    width: 48.54%;
    margin-top: 58px;
  }
  .about_value_title{
    font-size: 30px;
    margin-bottom: 45px;
  }
  .about_value_txt{

  }
  .about_value_imgs{
    margin-right: -50px;
  }
  .about_value.left .about_value_imgs{
    margin-left: -50px;
    margin-right: 0;
  }
}
@media (min-width:1366px){

  /* About */
  .about_value_imgs{
    margin-right: -100px;
  }
  .about_value.left .about_value_imgs{
    margin-left: -100px;
    margin-right: 0;
  }
}
@media (min-width:1720px){

  /* About */
  .about_value_imgs{
    margin-right: -205px;
  }
  .about_value.left .about_value_imgs{
    margin-left: -205px;
    margin-right: 0;
  }
}



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

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

}
.pg_garment .section.sec1{

}
.pg_garment .section.sec2{

}
.pg_garment .section.sec3{

}
.pg_garment .section.sec4{

}
.pg_garment .section.sec5{

}
.pg_garment .section.sec6{

}


@media (max-width:374px){

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

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

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

  .pg_garment .section.sec1{

  }
  .pg_garment .section.sec2{

  }
  .pg_garment .section.sec3{

  }
  .pg_garment .section.sec4{

  }
  .pg_garment .section.sec5{

  }
  .pg_garment .section.sec6{

  }

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


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

  .pg_garment .section.sec1{

  }
  .pg_garment .section.sec2{
    padding-top: 85px;
  }
  .pg_garment .section.sec3{
    padding-top: 85px;
  }
  .pg_garment .section.sec4{
    padding-top: 85px;
  }
  .pg_garment .section.sec5{
    padding-top: 85px;
  }
  .pg_garment .section.sec6{
    padding-top: 85px;
  }

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


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


}

p{
  letter-spacing: inherit;
}

/* メイン部分 */

/* 製品一覧 */
.garment_list{
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}
* + .garment_list{

}
.garment_list_item{
  width: 50%;
  padding: 0 10px;
  margin: 10px 0;
}
.garment_list_item_img{

}
.garment_list_item_img.img_fit:before{
  padding-top: 84.270%;
}
.garment_list_item_title{
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.025em;
  text-align: center;
  margin-top: 10px;
}
.garment_list_item_title p{
  /*letter-spacing: 0.025em;*/
}

.garment_list_msg{
  margin-top: 20px;
  letter-spacing: 0;
}
.garment_list_msg{

}

/* 素材 */
.garment_tbl{

}
.garment_tbl .table_rows_th,
.garment_tbl .table_rows_td{
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #7e7e7e;
  /*padding: 20px 12px;*/
}
.garment_tbl .table_rows_th{
  /*width: 350px;*/
  background: #dfddd2;
}
.garment_tbl .table_rows_td{
  background: #FFF;
  /*padding-left: 35px;*/
}

@media (max-width:767px){

  .garment_list_item .read_more a{
    min-width: 0;
  }

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

  /* 製品一覧 */
  .garment_list{
    margin-left: -10px;
    margin-right: -10px;
  }
  * + .garment_list{

  }
  .garment_list_item{
    width: 33.333%;
    padding: 0 10px;
    margin: 10px 0;
  }
  .garment_list_item_title{
    font-size: 20px;
    margin-top: 15px;
  }
  .garment_list_item .read_more{
    margin-top: 10px;
  }

  /* 素材 */
  .garment_tbl{

  }
  .garment_tbl .table_rows_th,
  .garment_tbl .table_rows_td{
    font-size: 15px;
    border: 1px solid #7e7e7e;
    padding: 20px 12px;
  }
  .garment_tbl .table_rows_th{
    width: 220px;
  }
  .garment_tbl .table_rows_td{
    padding-left: 35px;
  }
}
@media (min-width:1024px){


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

  /* 製品一覧 */
  .garment_list{
  }
  .garment_list_item{
    width: 33.333%;
    margin: 26px 0;
  }
  .garment_list_item{

  }
  .garment_list_item_title{
    font-size: 28px;
    margin-top: 25px;
  }

  /* 素材 */
  .garment_tbl{

  }
  .garment_tbl .table_rows_th,
  .garment_tbl .table_rows_td{
    font-size: 15px;
    padding: 20px 12px;
  }
  .garment_tbl .table_rows_th{
    width: 350px;
  }
  .garment_tbl .table_rows_td{
    padding-left: 35px;
  }

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


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


}







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

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

}
.pg_tiedye .section.sec1{

}
.pg_tiedye .section.sec2{

}
.pg_tiedye .section.sec3{

}
.pg_tiedye .section.sec4{

}
.pg_tiedye .section.sec5{

}
.pg_tiedye .section.sec6{

}
.pg_tiedye .section.sec7{

}


@media (max-width:374px){

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

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

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

  .pg_tiedye .section.sec1{

  }
  .pg_tiedye .section.sec2{

  }
  .pg_tiedye .section.sec3{

  }
  .pg_tiedye .section.sec4{

  }
  .pg_tiedye .section.sec5{

  }
  .pg_tiedye .section.sec6{

  }
  .pg_tiedye .section.sec7{

  }

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


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

  .pg_tiedye .section.sec1{

  }
  .pg_tiedye .section.sec2{
    padding-top: 85px;
  }
  .pg_tiedye .section.sec3{
    padding-top: 85px;
  }
  .pg_tiedye .section.sec4{
    padding-top: 100px;
  }
  .pg_tiedye .section.sec5{
    padding-top: 85px;
  }
  .pg_tiedye .section.sec6{
    padding-top: 85px;
  }
  .pg_tiedye .section.sec7{
    padding-top: 85px;
  }

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


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


}

.gallery_cate.js-tabs{

}
.gallery_cate.js-tabs .webgene-blog{
  display: flex;
}

/* メイン部分 */

/* COLOR */
.tiedye_color_list{
  display: flex;
  flex-wrap: wrap;
  margin-left: -2px;
  margin-right: -2px;
}
* + .tiedye_color_list{

}
.tiedye_color_list_item{
  width: 25%;
  padding: 0 2px;
  margin: 6px 0;
}
.tiedye_color_list_item_inner{

}
.tiedye_color_list_item_img{

}
.tiedye_color_list_item_img img{
  width: 100%;
}
.tiedye_color_list_item_name{
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.025em;
  text-align: center;
  margin-top: 5px;
}


/* デザイン詳細 */
.design_popup_area{

}
.gjs-dashed .design_popup_area{
  padding: 30px;
  background: #CCC;
}
.gjs-dashed .design_popup_area.lity-hide{
  display: block !important;
}
.gjs-dashed .design_popup_list_item{
  width: 20%;
}
.design_popup_content{
  background: #FFF;
  width: 100vw;
  max-width: 100%;
  max-height: calc(100vh - 50px);
  /*min-height: calc(100vh - 50px);*/
  min-height: 100vh;
  padding: 30px 30px;
  overflow: auto;
}
.gjs-dashed .design_popup_content{
  max-height: none;
}
.design_popup_list{
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
  margin-left: auto;
  margin-right: auto;
  width: 1520px;
  max-width: 100%;
}
.design_popup_list_item{
  width: 33.333%;
  padding: 0 5px;
  margin: 10px 0;
}
.design_popup_list_item_inner{
  background: #FFF;
  text-align: center;
  padding: 10px;
}
.design_popup_list_item_inner.selected{
  background: #9e9e9e;
}
.design_popup_list_item_img{

}
.design_popup_list_item_img.img_fit:before{
  padding-top: 107.239%;
}
.design_popup_list_item_txt{
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.45;
  text-align: center;
  margin-top: 10px;
}

.design_popup_content.popup{
  position: fixed;
  z-index: 1000;
  inset: 0;
  width: 100vw;
  height: 100vh;
  max-height: 100vh;
  display: block;
}
.form.formWrap{
  /*z-index: 3!important;*/
}

/* ボディ詳細 */
.body_tab_contents{
  margin-top: 20px;
}
.body_tab_content{
  display: none;
}
.gjs-dashed .body_tab_content{
  display: block;
  background: #EEE;
}
.gjs-dashed .body_tab_content + .body_tab_content{
  margin-top: 50px;
}

.body_tab_content.on{
  display: block;
}
.body_tab_detail{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.body_tab_detail_box1{
  width: 100%;
}
.body_tab_detail_box2{
  width: 100%;
  margin-top: 20px;
}
.body_tab_detail_img{

}
.body_tab_detail_img.img_fit:before{
  padding-top: 92.593%;
}

.body_tab_detail_title{
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3571;
  letter-spacing: 0.025em;
}
.body_tab_detail_title:after{
  content: "";
  display: block;
  width: 100px;
  height: 1px;
  background: #d9d9d9;
  margin-top: 15px;
}
.body_tab_detail_txt1{
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3571;
  letter-spacing: 0;
  margin-top: 15px;
}
.body_tab_detail_txt2{
  margin-top: 20px;
  letter-spacing: 0;
}

/* プリント箇所 */
.print_points{
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}
.print_points_item{
  width: 50%;
  padding: 0 5px;
  margin: 5px 0;
}
.print_points_item_img{

}
.print_points_item_img img{
  width: 100%;
}

/* サイズ表 */
.sizes_tbl_wrap{

}
* + .sizes_tbl_wrap{
  margin-top: 30px;
}
.sizes_tbl_wrap .sizes_tbl{
  min-width: 600px;
}
.sizes_tbl_wrap .sizes_tbl.print{
  min-width: 800px;
}
.estimate_form .sizes_tbl_wrap .sizes_tbl{
  min-width: 780px;
}
.sizes_tbl{
  text-align: center;
}
.sizes_tbl .table_rows_td{
  font-size: 15px;
  font-weight: 500;
  border: 1px solid #7e7e7e;
  padding: 9px 10px 10px;
  background: #FFF;
  vertical-align: middle;
}

.sizes_tbl .th1{
  width: 80px;
  letter-spacing: 0.08em;
  text-align: left;
}
.sizes_tbl .th2{
  letter-spacing: 0;
}
.sizes_tbl .color1{
  background: #dfddd2;
}
.sizes_tbl .left{
  text-align: left;
}

.sizes_tbl.print .th1{
  width: 200px;
}


.dashed_ttl{
  display: none;
  background: #9E9E9E;
  color: #FFF;
  padding: 6px 10px;
  margin-bottom: 10px;
}
.gjs-dashed .dashed_ttl{
  display: block;
}

@media (max-width:767px){

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

  /* COLOR */
  .tiedye_color_list{
    margin-left: -2px;
    margin-right: -2px;
  }
  * + .tiedye_color_list{

  }
  .tiedye_color_list_item{
    width: 25%;
    padding: 0 2px;
    margin: 10px 0;
  }
  .tiedye_color_list_item_name{
    font-size: 18px;
    margin-top: 10px;
  }

  /* デザイン詳細 */
  .design_popup_area{

  }

  .design_popup_content{
    /*width: 1520px;*/
    /*max-width: 100%;*/
    max-height: calc(100vh - 50px);
    padding: 90px 65px;
  }
  .design_popup_list{
    margin-left: -25px;
    margin-right: -25px;
    margin-left: auto;
    margin-right: auto;
  }
  .design_popup_list_item{
    width: 33.333%;
    padding: 0 25px;
    margin: 22px 0;
  }
  .design_popup_list_item_txt{
    font-size: 20px;
    margin-top: 10px;
  }

  /* ボディ詳細 */
  .body_tab_contents{
    margin-top: 70px;
  }
  .pg_inkjet .section.sec6 .body_tab_contents{
    margin-top: 20px;
  }
  .body_tab_content{

  }
  .body_tab_detail{
  }
  .body_tab_detail_box1{
    width: 48.64%;
  }
  .body_tab_detail_box2{
    width: 42.79%;
    margin-top: 0;
  }

  .body_tab_detail_title{
    font-size: 24px;
  }
  .body_tab_detail_title:after{
    width: 200px;
    margin-top: 35px;
  }
  .body_tab_detail_txt1{
    font-size: 18px;
    margin-top: 22px;
  }
  .body_tab_detail_txt2{
    margin-top: 30px;
  }

  .estimate_form .body_tab_contents{
    margin-top: 40px;
  }

  /* プリント箇所 */
  .print_points{
    margin-left: -10px;
    margin-right: -10px;
  }
  .print_points_item{
    width: 20%;
    padding: 0 10px;
    margin: 10px 0;
  }

  /* サイズ表 */
  .sizes_tbl_wrap{

  }
  * + .sizes_tbl_wrap{
    margin-top: 60px;
  }
  .sizes_tbl_wrap .sizes_tbl{
    min-width: 600px;
  }
  .sizes_tbl{
    text-align: center;
  }
  .sizes_tbl .table_rows_td{
    font-size: 15px;
    padding: 19px 10px 20px;
  }
  .sizes_tbl .table_rows_td.left{
    /*padding-left: 15px;*/
    letter-spacing: 0;
  }
  .sizes_tbl .th1{
    width: 150px;
  }
  .sizes_tbl .th2{
  }

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


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


  /* COLOR */
  .tiedye_color_list{
  }
  * + .tiedye_color_list{

  }
  .tiedye_color_list_item{
    width: 16.6666%;
  }
  .tiedye_color_list_item_name{
    font-size: 18px;
  }


  .body_tab_detail_title{
    font-size: 28px;
  }
  .body_tab_detail_title:after{
    width: 200px;
    margin-top: 35px;
  }

  .sizes_tbl .th1{
    width: 190px;
  }
}
@media (min-width:1470px){


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


}




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


/* メイン部分 */


/* 見積もりフォーム */
.estimate_form{

}
.estimate_form_category{
  background: #000;
    color: var(--main-color);
    padding: 10px 10px;
    font-size: 20px;
    font-weight: 500;
}
.estimate_form_row{

}
.estimate_form_row + .estimate_form_row{
  margin-top: 50px;
}
* + .estimate_form_row{
  margin-top: 50px;
}
.estimate_form_head{
  margin-bottom: 20px;
}
.estimate_form_head_title{
  font-size: 18px;
  font-weight: 500;
}
.estimate_form_head_title strong{
  color: var(--sub-color);
  font-weight: inherit;
}
.estimate_form_head_txt{
  margin-top: 15px;
}

/* 枚数 */
.estimate_num{

}
.estimate_num:after{
  content: "枚";
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-left: 5px;
}
.estimate_num input{
  width: 50px;
  padding: 5px 5px;
  border: 1px solid #b6b6b6;
  font-size: 14px;
  text-align: center;
}

/* プリント種類 */
.estimate_type{
  text-align: center;
}
* + .estimate_type{
  margin-top: 16px;
}
.estimate_type p{
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 5px;
}
.estimate_type select{
  width: 70px;
  font-size: 14px;
  padding: 5px 5px;
  border: 1px solid #b6b6b6;
}
.estimate_type select[disabled]{
  background: #CCC;
}

.estimate_disp{
  /*max-width: 461px;
  min-height: 39px;
  width: 100%;
  font-size: 15px;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  border-radius: 0;*/
  font-size: 15px;
  letter-spacing: 0.16em;
}
#estimate_disp1{
  display: inline-block;
  font-weight: 500;
  text-align: center;
}
#order_design_dmy{

}
.estimate_dmy_input{
  font-size: 0;
  border: 0;
  height: 0;
  outline: none
}

/**/
.estimate_design_view{
  display: none;
  width: 85px;
  font-size: 11px;
  font-weight: 500;
  background: #FFF;
  position: fixed;
  z-index: 4;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  border: 1px solid #CCC;
  padding: 5px 5px;

}
.estimate_design_view.hide{
  display: none !important;
}
.estimate_design_view.show{
  display: block;
}
.estimate_design_row{

}
.estimate_design_row + .estimate_design_row{
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #CCC;
}

.estimate_design_row_title{
  display: none;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}

.estimate_design_item_img{
  text-align: center;
}
.estimate_design_item_img img{
  width: 100px;
}

.form.formWrap{
  /*z-index: 2!important;*/
}

@media (max-width:767px){

  .estimate_design_view{
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    transform: none;
  }
  .estimate_design_item_img img{
    width: 50px;
  }
  .estimate_design_row{
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (min-width:768px){

  /* 見積もりフォーム */
  .estimate_form{

  }
  .estimate_form_row{

  }
  * + .estimate_form_row,
  .estimate_form_row + .estimate_form_row{
    margin-top: 85px;
  }
  .estimate_form_head{
    margin-bottom: 20px;
  }
  .estimate_form_head_title{
    font-size: 20px;
  }
  .estimate_form_head_txt{
    margin-top: 15px;
  }

  /* 枚数 
  .estimate_num{

  }
  .estimate_num:after{
    font-size: 14px;
  }
  .estimate_num input{
    width: 60px;
    font-size: 16px;
  }*/

  /* プリント種類 
  .estimate_type{
  }
  * + .estimate_type{
    margin-top: 16px;
  }
  .estimate_type p{
  }
  .estimate_type select{
    width: 60px;
    font-size: 16px;
  }*/

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

  .estimate_form_head_title{
    font-size: 24px;
  }

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


  .estimate_form_head_title{
    font-size: 30px;
  }

  /* 枚数 */
  .estimate_num{

  }
  .estimate_num:after{
    font-size: 14px;
  }
  .estimate_num input{
    width: 80px;
    font-size: 16px;
  }


  /* プリント種類 */
  .estimate_type{
  }
  * + .estimate_type{
    margin-top: 16px;
  }
  .estimate_type p{
  }
  .estimate_type select{
    width: 109px;
    font-size: 16px;
  }


  .estimate_design_view{
    width: 120px;
    padding: 15px 15px;
  }

}
@media (min-width:1366px){
  .estimate_design_view{
    width: 150px;
  }
}

@media (min-width:1470px){


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


}


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

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

}
.pg_inkjet .section.sec1{

}
.pg_inkjet .section.sec2{

}
.pg_inkjet .section.sec3{

}
.pg_inkjet .section.sec4{

}
.pg_inkjet .section.sec5{

}
.pg_inkjet .section.sec6{

}
.pg_inkjet .section.sec7{

}
.pg_inkjet .section.sec8{

}


@media (max-width:374px){

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

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

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

  .pg_inkjet .section.sec1{

  }
  .pg_inkjet .section.sec2{

  }
  .pg_inkjet .section.sec3{

  }
  .pg_inkjet .section.sec4{

  }
  .pg_inkjet .section.sec5{

  }
  .pg_inkjet .section.sec6{

  }
  .pg_inkjet .section.sec7{

  }
  .pg_inkjet .section.sec8{

  }

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


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

  .pg_inkjet .section.sec1{

  }
  .pg_inkjet .section.sec2{
    padding-top: 85px;
  }
  .pg_inkjet .section.sec3{
    padding-top: 85px;
  }
  .pg_inkjet .section.sec4{
    padding-top: 85px;
  }
  .pg_inkjet .section.sec5{
    padding-top: 85px;
  }
  .pg_inkjet .section.sec6{
    padding-top: 85px;
  }
  .pg_inkjet .section.sec7{
    padding-top: 85px;
  }
  .pg_inkjet .section.sec8{
    padding-top: 85px;
  }

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

}
.pg_special .section.sec1{

}
.pg_special .section.sec2{

}
.pg_special .section.sec3{

}
.pg_special .section.sec4{

}


@media (max-width:374px){

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

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

  .pg_special{
    padding-top: 0;
  }
}
@media (min-width:768px){

  .pg_special .section.sec1{

  }
  .pg_special .section.sec2{

  }
  .pg_special .section.sec3{

  }
  .pg_special .section.sec4{

  }


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


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

  .pg_special .section.sec1{

  }
  .pg_special .section.sec2{
    padding-top: 85px;
  }
  .pg_special .section.sec3{

  }
  .pg_special .section.sec4{

  }

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

}
.pg_repair .section.sec1{

}
.pg_repair .section.sec2{

}
.pg_repair .section.sec3{

}
.pg_repair .section.sec4{

}


@media (max-width:374px){

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

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

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

  .pg_repair .section.sec1{

  }
  .pg_repair .section.sec2{

  }
  .pg_repair .section.sec3{

  }
  .pg_repair .section.sec4{

  }

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


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

  .pg_repair .section.sec1{

  }
  .pg_repair .section.sec2{
    padding-top: 85px;
  }
  .pg_repair .section.sec3{
    padding-top: 85px;
  }
  .pg_repair .section.sec4{
    padding-top: 85px;
  }
}
@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_original{

}
.pg_original .section.sec1{

}
.pg_original .section.sec2{

}
.pg_original .section.sec3{

}


@media (max-width:374px){

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

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

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

  .pg_original .section.sec1{

  }
  .pg_original .section.sec2{

  }
  .pg_original .section.sec3{

  }

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


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

  .pg_original .section.sec1{

  }
  .pg_original .section.sec2{
    padding-top: 85px;
  }
  .pg_original .section.sec3{
    padding-top: 85px;
  }
}
@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){


}

/* メイン部分 */

/* インタビュー */
.recruit_interview{

}
* + .recruit_interview{
  margin-top: 30px;
}
.recruit_interview_row{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 15px;
  position: relative;
  z-index: 1;
  width: 100%;
  background: rgba(255,255,255,0.85);
}
.recruit_interview_row + .recruit_interview_row{
  margin-top: 30px;
}
.recruit_interview_box1{
  width: 100%;
}
.recruit_interview_box2{
  width: 100%;
  margin-top: 15px;
}
.recruit_interview_img{
}
.recruit_interview_img.img_fit:before{
  padding-top: 63.063%;
}
.recruit_interview_name{
  font-size: 15px;
  font-weight: 600;
  color: #FFF;
  text-align: center;
  background: #004986;
  margin-top: 0;
  padding: 3px 5px;
  border: 0;
}
.recruit_interview_qa{

}
.recruit_interview_qa + .recruit_interview_qa{
  margin-top: 20px;
}
.recruit_interview_qa_q{
  font-size: 16px;
  font-weight: 700;
  background: #d7dce4;
  padding: 5px 10px 7px;
  margin-bottom: 10px;
}
.recruit_interview_qa_a{
  font-size: 15px;
  line-height: 1.875;
  text-align: justify;
}

/* 募集要項 */
.recruit_tbl{

}
.recruit_tbl .table_rows_th,
.recruit_tbl .table_rows_td{
  font-size: 14px;
  font-weight: 400;
  border: 1px solid #7e7e7e;
  /*padding: 20px 12px;*/
}
.recruit_tbl .table_rows_th{
  /*width: 350px;*/
  background: #dfddd2;
}
.recruit_tbl .table_rows_td{
  background: #FFF;
  /*padding-left: 35px;*/
}

@media (max-width:767px){

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

  .recruit_interview{

  }
  * + .recruit_interview{
    margin-top: 50px;
  }
  .recruit_interview_row{
    padding: 30px;
  }
  .recruit_interview_row + .recruit_interview_row{
    margin-top: 50px;
  }
  .recruit_interview_box1{
  }
  .recruit_interview_box2{
    margin-top: 30px;
  }
  .recruit_interview_name{
    font-size: 18px;
  }
  .recruit_interview_qa{

  }
  .recruit_interview_qa + .recruit_interview_qa{
    margin-top: 25px;
  }
  .recruit_interview_qa_q{
    font-size: 20px;
    padding: 5px 15px 7px;
    margin-bottom: 15px;
  }
  .recruit_interview_qa_a{
    font-size: 16px;
    line-height: 2;
  }

  .pg_recruit .section.sec4 .cmn_sec_tt.bdrRight{
    margin-bottom: 130px;
  }

  /* 募集要項 */
  .recruit_tbl{

  }
  .recruit_tbl .table_rows_th,
  .recruit_tbl .table_rows_td{
    font-size: 15px;
    border: 1px solid #7e7e7e;
    padding: 20px 12px;
  }
  .recruit_tbl .table_rows_th{
    width: 220px;
  }
  .recruit_tbl .table_rows_td{
    padding-left: 35px;
  }
}
@media (min-width:1024px){

  /* インタビュー */

  .recruit_interview{

  }
  * + .recruit_interview{
    margin-top: 100px;
  }
  .recruit_interview_row{
    padding: 0;
    padding-top: 50px;
    background: none;
  }
  .recruit_interview_row + .recruit_interview_row{
    margin-top: 50px;
  }
  .recruit_interview_box1{
    width: 36.51%;
    position: absolute;
    z-index: 1;
    top: 0;
  }
  .recruit_interview_box2{
    width: 86.51%;
    min-height: 647px;
    padding-top: 50px;
    padding-bottom: 50px;
    margin-top: 0;
    /*background: #e4f1f8;*/
    background: #f9f9f9;
  }
  .recruit_interview_name{
    font-size: 16px;
  }
  .recruit_interview_qa{

  }
  .recruit_interview_qa + .recruit_interview_qa{
    margin-top: 43px;
  }
  .recruit_interview_qa_q{
    font-size: 20px;
    padding: 5px 15px 7px;
    margin-bottom: 15px;
    letter-spacing: 0.19em;
  }
  .recruit_interview_qa_a{
    margin-right: -5px;
  }

  .recruit_interview_box1{
    left: 0;
  }
  .recruit_interview_box2{
    margin-left: auto;
    padding-left: 29.27%;
    padding-right: 50px;
  }

  /*.recruit_interview_row:nth-child(odd) .recruit_interview_box1{
    left: 0;
  }
  .recruit_interview_row:nth-child(odd) .recruit_interview_box2{
    margin-left: auto;
    padding-left: 29.27%;
    padding-right: 50px;
  }
  .recruit_interview_row:nth-child(even) .recruit_interview_box1{
    right: 0;
  }
  .recruit_interview_row:nth-child(even) .recruit_interview_box2{
    margin-right: auto;
    padding-right: 29.27%;
    padding-left: 50px;
  }*/

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


  /* 募集要項 */
  .recruit_tbl{

  }
  .recruit_tbl .table_rows_th,
  .recruit_tbl .table_rows_td{
    font-size: 15px;
    padding: 20px 12px;
  }
  .recruit_tbl .table_rows_th{
    width: 285px;
  }
  .recruit_tbl .table_rows_td{
    padding-left: 35px;
  }
}
@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){


}

/* メイン部分 */

@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_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_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_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;
  background: #0d2036;
  font-family: var(--font-gothic);
  color: #FFF;
  border: 0;
  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 a.on,
.cmn_cat_nav .webgene-item a:hover{
  background: var(--sub-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{
  }
  .cmn_cat_nav .webgene-blog{
    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{

  }
  .cmn_cat_nav .webgene-blog{
    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%;
  }

}





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


}

:root{
  --header-height: 0;
}
@media (min-width:768px){

  :root{
    --header-height: 80px;
  }

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


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


}

.caution_banner{

}
* + .caution_banner{
  margin-top: 50px;
}
.caution_banner a img{
  display: block;
  transition: 0.2s all;
}
.caution_banner a:hover img{
  transform: scale(1.05);
}


/* メニュー */
.recruit_tab_nav{
  z-index: 3;
  top: var(--header-height);
  background: #fff;
  transition: 0.2s all;
  margin-bottom: 30px;
}
.recruit_tab_nav.fixed{
  position: fixed;
  z-index: 2;
  top: var(--header-height);
  left: 0;
  right: 0;
}
.recruit_tab_nav_tt{
  width: 100%;
  font-size: 14px;
  background: var(--sub-color);
  color: #FFF;
  padding: 5px 15px 5px 15px;
  ;
  /*text-align: center;*/
}
.recruit_tab_nav_links{
  display: flex;
  flex-wrap: wrap;
}
.recruit_tab_nav_links a{
  width: 100%;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 15px;
  background: var(--main-color);
  color: #FFF;
  /*border-top: 1px solid #FFF;*/
  transition: 0.2s all;
}
.recruit_tab_nav_links a:hover{
  background: var(--sub-color);
}
.recruit_tab_nav_links a+a{

}

.recruit_tab_contents{

}
.recruit_tab_contents_row{

}
.recruit_tab_contents_row + .recruit_tab_contents_row{
  margin-top: 50px;
}
.recruit_tab_contents_tt{
  font-size: 20px;
  margin-bottom: 20px;
  padding-left: 15px;
  border-left: 5px solid var(--sub-color);
}

.recruit_no_opening{
  text-align: center;
}
.is-recruit-hidden {
  display: none !important;
}


.gjs-dashed{

}

@media (max-width:767px){

  /* メニュー */
  .recruit_tab_nav{

  }
  .recruit_tab_nav.fixed{
    margin-left: var(--margin-for-device-side);
    margin-right: var(--margin-for-device-side);
  }
  .pg_recruit{
    padding-top: 50px;
  }

  .recruit_tab_nav{
    top: 0;
    left: 0;
    right: 0;
  }
  .recruit_tab_nav_tt {
    margin: 0;
    cursor: pointer;
    user-select: none;
  }

  .recruit_tab_nav{
    top: 235px;
  }
  .recruit_tab_nav_link {

  }

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

  .recruit_tab_nav{

    /*width: auto;
    top: 50%;
    left: 0;
    right: auto;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);*/
    margin-bottom: 50px;
  }
  .recruit_tab_nav_tt{
    display: none;
  }
  .recruit_tab_nav_links{
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
  }
  .recruit_tab_nav_links a{
    width: 100%;
    text-align: center;
  }

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

  /**/
  .hdr_sns{
    flex-direction: column;

    position: fixed;
    z-index: 1;
    top: 50%;
    right: 0;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    margin-left: 0;
  }
  .hdr_sns a{
    width: 40px;
  }
  .hdr_sns a + a{
    margin: 0;
    margin-top: 10px;
  }

}




/* ページ内リンク */
.cmn_page_nav{
  display: flex;
  gap: 10px 5px;
  margin-bottom: 50px;
  transition: 0s all;
  top: 40px;
  left: 50%;
}
.cmn_page_nav_a{
  width: 100%;
  border: 1px solid #000;
  border-radius: 26px;
  font-size: 12px;
  text-align: center;
  background: #FFF;
  padding: 4px 7px;
  position: relative;
  z-index: 1;
}
.cmn_page_nav_a p{
  font-size: 15px;
  font-weight: 500;
  background: var(--sub-color);
  color: #FFF;
  border-radius: 17.5px;
  /*border-radius: 26px;*/
  padding: 6px 8px 6px;
  transition: 0.2s all;
  position: relative;
  z-index: 2;
}
.cmn_page_nav_a p{
  font-size: inherit;
}
.cmn_page_nav_a:hover{

}
.cmn_page_nav_a:hover p{
  background: #000;
}
.cmn_page_nav_a:after{
  content: "";
  width: 16px;
  aspect-ratio: 19 / 13;
  background-image: url(https://kimidori.co.jp/system_panel/uploads/images/cmn_page_nav_arr.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  z-index: 1;
  top: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, -3px);
  transform: translate(-50%,  -3px);
}

.cmn_page_nav.fixed{
  position: fixed;
  z-index: 3;
  top: 40px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.cmn_page_nav.fixed .cmn_page_nav_a{
  min-width: 200px;
}
.cmn_page_nav.fixed .cmn_page_nav_a:after{
  /*display: none;*/
  -webkit-transform: translate(-50%, -3px);
  transform: translate(-50%,  -3px);
}



@media (max-width:767px){
  .cmn_page_nav{
    flex-wrap: wrap;
  }
  .cmn_page_nav_a{
    width: calc(50% - 2.5px);

  }
}
@media (min-width:768px){
  .cmn_page_nav{
    margin-bottom: 75px;
  }

  .cmn_page_nav_a{
    font-size: 11px;
  }
  .cmn_page_nav_a p{
    padding: 6px 10px 6px;
  }
}
@media (min-width:1024px){

}
@media (min-width:1200px){
  .cmn_page_nav{
    margin-bottom: 150px;
  }
  .cmn_page_nav_a{
    font-size: 15px;
  }

  .cmn_page_nav.fixed{
    width: 810px;
    min-width: 0;
    justify-content: center;
    gap: 6px;
  }
  .cmn_page_nav.fixed .cmn_page_nav_a{
    font-size: 12px;
    min-width: 100px;
  }


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

  .cmn_page_nav.fixed{
    width: 900px;
    justify-content: center;
  }

  .cmn_page_nav.fixed{
    gap: 6px;
  }
  .cmn_page_nav.fixed .cmn_page_nav_a{
    font-size: 12px;
    min-width: 150px;
  }
}
@media (min-width:1470px){
  .cmn_page_nav.fixed{
    width: 1000px;
    gap: 8px;
  }
  .cmn_page_nav.fixed .cmn_page_nav_a{
    font-size: 14px;
  }
}
@media (min-width:1536px){

}
@media (min-width:1720px){
  .cmn_page_nav.fixed .cmn_page_nav_a{
    min-width: 200px;
  }
}