@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Cardo:ital,wght@0,400;0,700;1,400&display=swap');

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

  /* カラー(ボタン背景色など) */
  --main-color: #2b6796;
  --sub-color: #bdae9f;
  --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: "Cardo", 'Noto Sans JP', sans-serif;
  --font-mincho: 'Noto Serif JP', 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: 20px;
}
.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;
}

/* TELボタン */
.hdr_tel{

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

}
.hdr_tel_link p{

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


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

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


@media (min-width:375px){

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

  .header{
    position: absolute;
z-index: 9;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
  }
  .hdr1 {
    padding: 20px 10px 10px;
    justify-content: center;
  }
  
      .header .hdr1 {
        background: #000;
        padding-top: 8px;
        padding-bottom: 8px;
      }

  /* お問い合わせボタン */
  .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: 0;
  }
  .header{
    --logo-height: 25px;

    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    right: 0;
  }

  .header{
    padding: 10px 10px;
  }
  .hdr1{
    padding: 15px 35px;
    transition: 0.2s all;
  }

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

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

  }
  .header.slim .hdr_logo img{
    height: calc(var(--logo-height) * 0.8);
  }
  .header.slim .hdr1{
    background: #000;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .header.slim .hdr_contact a{
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .gjs-dashed .header .hdr1{
    background: #000;
  }

  /* TELボタン */
  .hdr_tel{

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


  .hdr_contact a{
    width: 180px;
    padding: 10px 5px;
  }


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

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

  /* ロゴ */
  .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:768px) and (max-width:1199px){

  .hdr_menu{
    margin-left: auto;
  }

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

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

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

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

  }
  .header.slim .hdr_logo img{
  }

  .hdr_contact a{
    width: 180px;
    padding: 10px 5px;
  }


}
@media (min-width:1470px){
  /* お問い合わせボタン */
  .hdr_contact a{
    width: 230px;
    padding: 15px 5px;
  }
}
@media (min-width:1720px){
  /* お問い合わせボタン */
  .hdr_contact{
    margin-left: 10px;
  }
}

/*******************************
*　メインビジュアル
********************************/
/* MV */
.mv{
  position: relative;
  z-index: 1;
}
.mv_img{
  position: relative;
  z-index: 1;
}
.mv_img.img_fit:before{
  /*padding-top: 250px;*/
  /* 画面高さ - ヘッダー分 */
  padding-top: calc(100svh - 64px);
}
.mv:after{
  content: "";
  background: rgba(0,0,0,0.36);
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}

/* MVテキスト */
.mv_txt{
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 0;
  width: 100%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: #FFF;
  text-align: center;
}
.mv_txt_p1{
  font-size: 50px;
  font-weight: 700;
  transform: translateX(17px);
}
.mv_txt_p2{
  font-size: 20px;
  font-family: var(--font-en);
  letter-spacing: 0;
  margin-top: 10px;
}

/* スライダーの場合 */
.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{
  }
  .mv_txt_p1{
    font-size: 40px;
    transform: translateX(0);
  }
  .mv_txt_p2{
    font-size: 25px;
    margin-top: 10px;
  }

}
@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;*/
    padding-top: 100svh;
  }

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

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

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

}


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

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

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

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


@media (min-width:768px){

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

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


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

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

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

}


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

.pg_header_title{
  position: absolute;
  z-index: 2;
  top: 58%;
  left: 10.5%;
  right: 0;
  text-align: left;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: #FFF;
}
.pg_header_title_ja{
  font-size: 20px;
  letter-spacing: 0.075em;
  font-weight: 700;
}
.pg_header_title_en{
  font-size: 18px;
  font-family: var(--font-en);
  letter-spacing: 0;
  margin-top: 5px;
}
.pg_header_title_txt{
  font-size: 32px;
  font-weight: 700;
  color: #FFF;
}




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

  .pg_header_title_txt{

  }

}
@media (min-width:1024px){
  .pg_header{
    margin-bottom: 70px;
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 350px;
  }
  .pg_header_title_ja{
    font-size: 45px;
    letter-spacing: 0.075em;
    font-weight: 700;
  }
  .pg_header_title_en{
    font-size: 40px;
    font-family: var(--font-en);
    letter-spacing: 0;
    margin-top: 10px;
  }
  .pg_header_title_txt{

  }

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

  .pg_header{
    margin-bottom: 150px;
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 520px;
  }

  .pg_header_title_txt{

  }

}



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

.footer{
  margin-top: 50px;
  position: relative;
  z-index: 1;
  padding-top: 50px;
  overflow: hidden;
}
.body_member .footer{
  margin-top: 0;
  padding-top: 0;
}
.footer:before{
  /*content: "";
  background: rgba(0,0,0,0.75);
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;*/
}
.footer .container{
  position: relative;
  z-index: 2;
}

.ftr1{
  background-image: url(/system_panel/uploads/images/footer_bg.jpg);
  background-size: cover;
  padding: 50px 0 20px;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}
.ftr1:before{
  content: "";
  background: rgba(0,0,0,0.3);
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
}

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

}
.ftr1_box2{

}

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


.ftr_contact{
  display: flex;
  flex-wrap: wrap;
  color: #FFF;
  width: 100%;
}
.ftr_contact_box1{

}
.ftr_contact_box2{

}

.ftr_contact_items{
  display: flex;
  flex-wrap: wrap;
}
.ftr_contact_items_item{

}

.ftr_contact_tt_en{
  font-size: 90px;
  font-family: var(--font-en);
  letter-spacing: 0;
  line-height: 1;

}
.ftr_contact_tel{

}
.ftr_contact_tel_txt1{

}
.ftr_contact_tel_txt1:before{
  content: "\f095";
  font-size: 34px;
  font-family: 'FontAwesome';
  margin-right: 17px;
}
.ftr_contact_tel_txt2{

}

.ftr_contact_email{

}
.ftr_contact_email a{

}
.ftr_contact_email a{

}

.ftr_addr em{
  font-style: normal;
}
.ftr_copy{
  width: 100%;
  font-size: 14px;
  text-align: center;
  border-top: 1px solid #d9d9d9;
  position: relative;
  z-index: 1;
  margin-top: 40px;
  padding: 10px 0;
}

/* 追尾スマホメニュー */
.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: #fff;
  text-decoration: none;
  line-height: 1.2;
}
.footer_fix .footer_fix_item_1{
  width: 38%;
  border-right: 1px solid #000;
}
.footer_fix .footer_fix_item_1.recruit{
  background: #eeeeee;
  color: #024b93;
}
.footer_fix .footer_fix_item_2{
  width: 24%;
  background: #ddddd9;
}
.footer_fix > a i{
  font-size: 20px;
  margin-bottom: 8px;
}
.footer_fix .footer_fix_item_1.remorte i{
  margin-bottom: 0;
}

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


.ftr_contact{
  display:flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.ftr_contact_box1{
  width: 100%;
}
.ftr_contact_tt_en{
  font-size:30px;
  font-weight: 400;
  font-family: var(--font-en);
  line-height: 1;
  color: #fff;

}
.ftr_contact_right{

}
.ftr_contact_box2{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px;
}
.ftr_contact_items_item{
  width: 100%;
  border-top: 1px solid #fff;
  padding-top: 30px;
  padding-bottom: 30px;
}
.ftr_contact_tel{
  text-align: center;
}
.ftr_contact_tel_txt1{
  font-size: 34px;
  font-weight: 700;
  font-family: var(--font-en);
  letter-spacing: 0;
  line-height: 1;
}
.ftr_contact_tel_txt1 strong{
  font-size: 20px;
  font-weight: 700;
  font-family: var(--font-en);
}
.ftr_contact_tel_txt2{
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-top: 15px;
}
.ftr_contact_email{

}
.ftr_contact_email a{
  display: block;
  max-width:380px;
  width: 100%;
  border: 1px solid #fff;
  border-radius: 30px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  padding: 16px 0;
  margin-inline:auto;
  transition: all .2s;
}
.ftr_contact_email a:hover{
  background: #fff;
  color: #000;
}
.ftr_contact_email a p{
  letter-spacing: 0.05em;
}
.ftr_contact_email a p:before{
  content: "\f0e0";
  font-size: 18px;
  font-family: 'FontAwesome';
  margin-right: 10px;
}

.ftr2{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  margin-top: 0;
}
.ftr2_box1{
  width: 100%;
  position: relative;
  z-index: 1;
  text-align: center;
}
.ftr_logo{

}
.ftr2_box2{
  width: 100%;
  position: relative;
  z-index: 1;
}
.ftr_add{
  margin-top: 30px;
}
.ftr_add_txt{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.025em;
  line-height: 2.25em;
}
.ftr_add_item{
  display: flex;
  align-items: center;
  width: 280px;
  margin-inline: auto;
}
.ftr_add_item_txt1{
  text-align: left;
  position: relative;
  padding-right: 10px;
}
.ftr_add_item_txt1:after{
  content: "";
  display: block;
  width: 1px;
  height: 18px;
  background: #000;
  position: absolute;
  top: 50%;
  right:0;
  transform: translateY(-50%);
}

.ftr_add_item_txt2{
  padding-left: 16px;
}
.ftr2_box2{

}
.ftr_links{

}
.ftr_link{

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

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

  body{
    padding-bottom: 56px;
  }

  .footer_fix{
    display: flex;
  }

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

  #chatbot-btn{
    transform: translateX(100%);
    transition: 0.2s all;
  }
  #chatbot-btn.show{
    transform: translateX(0);
  }

  .ftr2_box2{
    display: none;
  }
  .ftr_add_item{
    width: 280px;
  }

  .ftr_contact_tt_en{
    text-align: center;
  }


}
@media (min-width:768px){
  .footer{
    margin-top: 100px;
    padding-top: 75px;
  }
  .body_member .footer{
    margin-top: 0;
    padding-top: 0;
  }
  .ftr1{
    padding: 105px 0;
    margin-bottom: 50px;
  }
  .ftr_contact{

  }
  .ftr_contact_box1{

  }
  .ftr_contact_tt_en{
    font-size:40px;
  }
  .ftr_contact_right{

  }
  .ftr_contact_box2{
    margin-top: 80px;
  }
  .ftr_contact_items_item{
    position: relative;
    padding: 0 9px;
    border-top:none;
  }
  .ftr_contact_items_item:before{
    content: "";
    display: block;
    width: 1px;
    height: 160px;
    background: #fff;
    position: absolute;
    top: 50%;
    left:0;
    transform: translateY(-50%);
  }
  .ftr_contact_items_item:last-child:after{
    content: "";
    display: block;
    width: 1px;
    height: 160px;
    background: #fff;
    position: absolute;
    top: 50%;
    right:0;
    transform: translateY(-50%);
  }
  .ftr_contact_items_item.tel{
    width: 44.13%;
  }
  .ftr_contact_items_item.mail{
    width: 55%;
  }
  .ftr_contact_tel{

  }
  .ftr_contact_tel_txt1{

  }
  .ftr_contact_tel_txt2{

  }
  .ftr_contact_email{

  }
  .ftr_contact_email a{
    font-size: 18px;
  }

  .ftr2{
    /*padding: 50px 0 0 50px;*/
    /*margin-top: 65px;*/
    align-items: center;
  }
  .ftr2:after{

  }
  .ftr2_box1{
    width: 100%;
    /*padding-top: 18px;*/
    /*text-align: left;*/
  }
  .ftr_logo{

  }
  .ftr2_box2{
    width: 100%;
  }
  .ftr2_box2:after{
    /*content: "";
    display: block;
    height: 195px;
    ;
    border-right: 1px dashed #b3b3b3;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);*/
  }
  .ftr_add{
    margin-top: 39px;
  }
  .ftr_add_txt{

  }
  .ftr_add_item{

  }
  .ftr_add_item_txt1{
    padding-right: 10px;
  }
  .ftr_add_item_txt2{
    padding-left: 16px;
  }
  .ftr2_box2{
    margin-top: 30px;
  }
  .ftr_links{

  }
  .ftr_links_wrap {
    display: flex;
    justify-content: center;
  }
  .ftr_link{
    width: 160px;
    text-align: left;
    display: block;
    font-size: 16px;
    font-weight: 500;
    /*border-bottom: 1px solid #000;*/
    position: relative;
    /*padding: 10px 0;*/
  }
  .ftr_link:nth-child(n+2){
    margin-top: 20px;
  }
  .ftr_link p:before{
    content: "□";
    margin-right: 5px;
  }
  .ftr_link:after{
    /*content: "\f105";
    font-size: 18px;
    font-family: 'FontAwesome';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    transition: all .2s;*/
  }
  .ftr_link:hover{
    color: #000;
  }
  .ftr_link:hover:after{
    /*right: -5px;*/
  }

  .ftr_copy{
    margin-top: 73px;
  }



}
@media (min-width:1024px){
  .footer{
    margin-top: 80px;
  }

  .ftr_contact{

  }
  .ftr_contact_box1{

  }
  .ftr_contact_tt_en{
    font-size:70px;
  }
  .ftr_contact_right{

  }
  .ftr_contact_box2{
    margin-top: 100px;
  }
  .ftr_contact_items_item{

  }
  .ftr_contact_tel{

  }
  .ftr_contact_tel_txt1{
    font-size: 30px;
  }
  .ftr_contact_tel_txt1 strong{
    font-size: 24px;
  }
  .ftr_contact_tel_txt2{

  }
  .ftr_contact_email{

  }
  .ftr_contact_email a{

  }

  .ftr2{
    /*padding: 82px 0 0 100px;*/
    /*margin-top: 65px;*/
  }
  .ftr2_box1{
    width: 395px;
    text-align: left;
  }

  .ftr_logo{

  }
  .ftr2_box2{
    width: 460px;
    margin-top: 0;
  }
  .ftr_add{

  }
  .ftr_add_txt{

  }
  .ftr_add_item{
    width: auto;
    margin-inline: 0;
  }
  .ftr_add_item_txt1{

  }
  .ftr_add_item_txt2{

  }
  .ftr2_box2{

  }

  .ftr_links_wrap {
    justify-content: flex-end;
  }
  .ftr_links{

  }
  .ftr_link{


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

  }
  .ftr_contact_box1{
    width: 41.11%;
  }
  .ftr_contact_tt_en{
    font-size:80px;
  }
  .ftr_contact_right{

  }
  .ftr_contact_box2{
    width: 58.88%;
    margin-top: 0;
  }
  .ftr_contact_items_item{

  }
  .ftr_contact_tel{

  }
  .ftr_contact_tel_txt1{
    font-size: 36px;
  }
  .ftr_contact_tel_txt1 strong{
    font-size: 30px;
  }
  .ftr_contact_tel_txt2{

  }
  .ftr_contact_email{

  }
  .ftr_contact_email a{

  }
}
@media (min-width:1360px){
  .ftr_contact_tt_en{
    font-size:90px;
  }
}
@media (min-width:1470px){
  .ftr_contact_tel_txt1:before {
    font-size: 33px;
    margin-right: 15px;
  }
}
@media (min-width:1720px){
  .ftr_contact_tel_txt1:before {
    font-size: 34px;
    margin-right: 17px;
  }
}

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


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

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

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


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

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

/* ボタン */
.read_more{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
  margin-left: -5px;
  margin-right: -5px;
}
.read_more a{
  min-width: 250px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  text-align: left;
  border: 1px solid currentColor;
  /*  background: var(--main-color);*/
  background: #181818;
  border-radius: 50px;
  color: #FFF !important;
  padding: 16px 20px;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.home_service_item_box2 .read_more_a,
.home_build .read_more_a{
  background: #FFF;
  color: #181818 !important;
}
.read_more a p{
  /*letter-spacing: 0;*/
}
.read_more a:after{
  content: "\f105";
  font-family: 'FontAwesome';
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 18px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.read_more a:hover{
  color: #FFF;
  background: #bdae9f;
}
.read_more a:hover:after{
  margin-right: -5px;
}


/* 見出し */
.tt2{
  text-align: center;
  margin-bottom: 30px;
}
.tt2_en{
  font-size: 75px;
  font-weight: 400;
  font-family: var(--font-en);
  line-height: 1;
  color: var(--sub-color);
  opacity: 0.5;
  letter-spacing: 0;
}
.tt2_ja{
  font-size: 16px;
  font-weight: 700;
  margin-top: 0;
}


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

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

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

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

}


@media (max-width:374px){

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

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

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

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

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

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

  .anchor{
    top: -100px;
  }

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

  /* ボタン */
  .read_more{
    margin-top: 35px;
  }
  .read_more.center{
    justify-content: center;
  }
  .read_more.left{
    justify-content: flex-start;
  }
  .read_more.right{
    justify-content: flex-end;
  }
  .read_more a{
    min-width: 285px;
    font-size: 18px;
    padding: 16px 20px;
    margin: 5px 5px;
  }
  .read_more a:after{
    content: "\f105";
    font-family: 'FontAwesome';
    top: 50%;
    right: 20px;
  }
  .read_more a:hover:after{
    margin-right: -5px;
  }

  /* 見出し */
  .tt2{
    margin-bottom: 50px;
  }
  .tt2_en{
    font-size: 100px;
  }
  .tt2_ja{
    font-size: 20px;
    margin-top: 0;
  }


  /* 文章 */
  .cmn_txt{
    font-size: 16px;
    line-height: 2.1875;
  }

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

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

  /* ボタン */
  .read_more a{
    min-width: 285px;
    font-size: 15px;
    padding: 16px 20px;
    margin: 5px 5px;
  }

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

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


}


@media (min-width:1366px){

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

}

.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: 0;
}
.pg_home .section.sec1{
  padding-top: 50px;
  padding-bottom: 50px;
}
.pg_home .section.sec2{

}
.pg_home .section.sec3{
  padding-top: 50px;
  padding-bottom: 50px;
}
.pg_home .section.sec4{
  color: #FFF;
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
  z-index: 1;
}
.pg_home .section.sec5{
  padding-top: 50px;
  padding-bottom: 50px;
  background: #f5f4f2;
}
.pg_home .section.sec6{
  padding-top: 50px;
  background: #FFF;
}


.pg_home .section.sec2 .tt2{
  margin-bottom: 0;
}

@media (max-width:767px){

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

  .pg_home{
    /*padding-top: 100px;*/
  }
  .pg_home .section.sec1{
    padding-top: 100px;
    padding-bottom: 75px;
  }
  .pg_home .section.sec2{

  }
  .pg_home .section.sec3{
    padding-top: 100px;
    padding-bottom: 95px;
  }
  .pg_home .section.sec4{
    padding-top: 95px;
    padding-bottom: 95px;
  }
  .pg_home .section.sec5{
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .pg_home .section.sec6{
    padding-top: 100px;
  }

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


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


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

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

  }
  .pg_home .section.sec3{
    padding-top: 192px;
    padding-bottom: 95px;
  }
  .pg_home .section.sec4{
    padding-top: 95px;
    padding-bottom: 95px;
  }
  .pg_home .section.sec5{
    padding-top: 115px;
    padding-bottom: 150px;
  }
  .pg_home .section.sec6{
    padding-top: 150px;
  }

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


}


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

.home_about_title{
  position: relative;
  z-index: 0;
  padding-top: 110px;
  margin-bottom: 20px;
}
.home_about_title_en{
  font-size: 100px;
  font-family: var(--font-en);
  opacity: 0.2;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  color: #bdae9f;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.home_about_title_ja{
  font-size: 24px;
  font-weight: 700;
  line-height: 1.375;
}
.home_about_txt{
  position: relative;
  z-index: 1;
}

.home_about_gallery_wrap{
  margin-left: var(--margin-for-device-side-w);
  margin-right: var(--margin-for-device-side-w);
}
.home_about_gallery{
  display: flex;
}
.home_about_gallery_img{
  width: 200px;
  margin: 0 5px;
}
.home_about_gallery_img.img_fit:before{
  padding-top: 140.909%;
}

/* コミュニティ */
.home_build{

}
.home_build_inner{

}
.home_build_title{
  margin-bottom: 20px;
}
.home_build_title_en{
  font-size: 32px;
  font-family: var(--font-en);
  letter-spacing: 0;
  line-height: 1;
  color: #bdae9f;
}
.home_build_title_ja{
  font-size: 20px;
  font-weight: 700;
  line-height: 1.607;
  margin-top: 20px;
}
.home_build_txt{
  width: 680px;
  max-width: 100%;
}
.home_build .read_more{
  margin-top: 30px;
}

.home_build_catch_en{
  position: absolute;
  z-index: -1;
  bottom: -25px;
  left: 0;
  right: 0;
  color: #0a0b0d;
}
.home_build_catch_en p{
  font-size: 60px;
  font-weight: 700;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  padding: 0 0.2em;
}

.home_build_catch_en.clone{
  color: #FFF;
  mix-blend-mode: difference;
  z-index: 3;
}
.cmn_section_bg.cover{
  overflow: hidden;
}

/* ギャラリー */
.home_build_gallery{
  display: flex;
}
.home_build_gallery_item{
  display: flex;
  flex-wrap: wrap;
  aspect-ratio: 380 / 450;
  width: 200px;
  margin: 0 10px;
}

.home_build_gallery_img1{
  width: 100%;
  height: calc(50% - 10px);
}
.home_build_gallery_img1.img_fit:before{
  padding-top: 0;
  height: 100%;
}
.home_build_gallery_img1 + .home_build_gallery_img1{
  margin-top: 20px;
}
.home_build_gallery_img2{
  width: 100%;
  height: 100%;
}
.home_build_gallery_img2.img_fit:before{
  padding-top: 0;
  height: 100%;
}

@media (max-width:374px){

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

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

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

  /* About */
  .home_about{
  }

  .home_about_box1{
    /*width: 55.26%;*/
    /*order: 1;*/
    /*margin-top: 0;*/
  }
  .home_about_box2{
    /*width: 38.48%;*/
    /*order: 2;*/
  }
  .home_about_title{
    padding-top: 80px;
    margin-bottom: 30px;
  }
  .home_about_title_en{
    font-size: 150px;
  }
  .home_about_title_ja{
    font-size: 30px;
  }
  .home_about_txt{
  }

  .home_about_gallery_wrap{
    /*margin-left: var(--margin-for-device-side-w);*/
    /*margin-right: var(--margin-for-device-side-w);*/
  }
  .home_about_gallery{
  }
  .home_about_gallery_img{
    width: 300px;
    margin: 0 12.5px;
  }

  /* コミュニティ */
  .home_build{

  }
  .home_build_inner{

  }
  .home_build_title{
    margin-bottom: 42px;
  }
  .home_build_title_en{
    font-size: 55px;
  }
  .home_build_title_ja{
    font-size: 24px;
    margin-top: 30px;
  }
  .home_build_txt{
    width: 680px;
  }
  .home_build .read_more{
    margin-top: 65px;
  }

  .home_build_catch_en{
    bottom: -40px;
  }
  .home_build_catch_en p{
    font-size: 100px;
    padding: 0 0.2em;
  }

  /* ギャラリー */
  .home_build_gallery{
  }
  .home_build_gallery_item{
    width: 300px;
    margin: 0 10px;
  }

  .home_build_gallery_img1{
    height: calc(50% - 10px);
  }
  .home_build_gallery_img1 + .home_build_gallery_img1{
    margin-top: 20px;
  }

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

  /* About */
  .home_about{
  }

  .home_about_box1{
    width: 55.26%;
    width: 42%;
    order: 1;
    margin-top: 0;
  }
  .home_about_box2{
    width: 38.48%;
    width: 55%;
    order: 2;
  }
  .home_about_title{
    padding-top: 80px;
    margin-bottom: 30px;
  }
  .home_about_title_en{
    font-size: 150px;
  }
  .home_about_title_ja{
    /*font-size: 30px;*/
  }
  .home_about_txt{
  }

  .home_about_gallery_wrap{
    margin-left: var(--margin-for-device-side-w);
    margin-right: 0;
  }
  .home_about_gallery{
  }
  .home_about_gallery_img{
    width: 300px;
    margin: 0 10px;
  }

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



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

  /* About */
  .home_about{
  }

  .home_about_box1{
    width: 55.26%;
    order: 1;
    margin-top: 0;
  }
  .home_about_box2{
    width: 38.48%;
    order: 2;
  }
  .home_about_title{
    padding-top: 110px;
    margin-bottom: 42px;
  }
  .home_about_title_en{
    font-size: 200px;
  }
  .home_about_title_ja{
    font-size: 40px;
  }
  .home_about_txt{
  }

  .home_about_gallery_wrap{
  }
  .home_about_gallery{
  }
  .home_about_gallery_img{
    width: 440px;
    margin: 0 12.5px;
  }

  /* コミュニティ */
  .home_build{

  }
  .home_build_inner{

  }
  .home_build_title{
    margin-bottom: 42px;
  }
  .home_build_title_en{
    font-size: 80px;
  }
  .home_build_title_ja{
    font-size: 28px;
    margin-top: 30px;
  }
  .home_build_txt{
    width: 680px;
  }
  .home_build .read_more{
    margin-top: 65px;
  }

  .home_build_catch_en{
    bottom: -62px;
  }
  .home_build_catch_en p{
    font-size: 150px;
    padding: 0 0.2em;
  }

  /* ギャラリー */
  .home_build_gallery{
  }
  .home_build_gallery_item{
    width: 380px;
  }

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


}



/* 背景用 */
.cmn_section_bg{
  display: flex;
  justify-content: center;
  position: absolute;
  z-index: -1;
  inset: 0;
}
.cmn_section_bg:after{
  content: "";
  background: rgba(0,0,0,0.6);
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}
.section.sec4 .cmn_section_bg:after{
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(rgba(14,26,50,0),rgba(0,0,0,0));
}
.cmn_section_bg.nofilter:after{
  display: none;
}
.cmn_section_bg img{
  height: 100%;
}
.cmn_section_bg.center{
}
.cmn_section_bg.left{
  justify-content: flex-start;
}
.cmn_section_bg.right{
  justify-content: flex-end;
}

.cmn_section_bg.cover{

}
.cmn_section_bg.cover img{
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width:767px){
  .section.sec4 .cmn_section_bg:after{
    background: linear-gradient(
      90deg,
      rgba(14, 26, 50, 0.55) 0%,
      rgba(14, 26, 50, 0.25) 65%,
      rgba(14, 26, 50, 0) 70%
      );
  }
}

/*******************************
*　StackScroll（縦）
********************************/

/* スタック本体 */
.stack_scroller{
  /*min-height: 100svh;  ピン時の土台。overflowはGSAPに任せる */
}
.stack_inner{
  position: relative;
  /*min-height: 100svh;*/
}
.stack_panel{
  position: relative;
  /*position: absolute;
  inset: 0;
  display: grid;
  place-items: center;*/
}

.gjs-dashed .stack_panel{
  position: static;
}
.gjs-dashed .stack_panel + .stack_panel{
  margin-top: 50px;
}


/**/
.pg_home .section.sec2{
  /*background-image: url(/system_panel/uploads/images/home_service_bg.jpg);*/
  /*background-size: cover;*/
  position: relative;
  z-index: 1;
  padding: 0;
  overflow: hidden;
}
.pg_home .section.sec2:before{
  /*content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(0,0,0,0.6);
  pointer-events: none;*/
}

/* Service */
.home_service_catch_en{
  position: absolute;
  z-index: 0;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -10%);
  transform: translate(-50%, -10%);
  padding-top: 25px;
}
.home_service_catch_en{
  position: absolute;
  z-index: 0;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -10%);
  transform: translate(-50%, -10%);
  padding-top: 25px;
}
.home_service_catch_en p{
  font-size: 70px;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0;
  color: #FFF;
  white-space: nowrap;
  opacity: 0.2;
}
.home_service_item{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  color: #FFF;
  padding-top: 20px;
}
.home_service_item_box1{
  width: 44.73%;
  width: 100%;
}
.home_service_item_box2{
  width: 49.01%;
  width: 100%;
  margin-top: 30px;
}
.home_service_item_box3{
  width: 100%;
  order: 2;
  margin-top: 30px;
}
.home_service_item_box4{
  width: 100%;
  order: 1;

}
.home_service_item_img{

}
.home_service_item_img.img_fit:before{
  padding-top: 123.529%;
}
.home_service_item_img2.img_fit:before{
  padding-top: 64.596%;
}
.home_service_item_num{
  display: flex;
  margin-bottom: 10px;
}
.home_service_item_num p{
  width: 140px;
  font-size: 16px;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  border: 1px solid ;
  border-radius: 20px;
  padding: 4px 10px 4px;
}
.home_service_item_num p strong{
  font-size: 1.23em;
  font-weight: 400;
}
.home_service_item_title1{
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  border-bottom: 1px solid ;
  padding-bottom: 10px;
  margin-bottom: 15px;
}
.home_service_item_title2{
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6071;
  margin-bottom: 15px;
}
.home_value_slides .home_service_item_title2{
  font-size: 22px;
}
.home_service_item_txt{

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

.stack_panel{
  padding-top: 185px;
  padding-top: 150px;
  padding-top: 50px;
  padding-bottom: 50px;
}
.stack_panel .cmn_section_bg{
  left: var(--margin-for-device-side-w);
  right: var(--margin-for-device-side-w);
}

/* Value */
.home_value_head{
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.home_value_head_en{
  font-size: 85px;
  font-family: var(--font-en);
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
  color: #bdae9f;
  opacity: 0.14;
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 0;
  -webkit-transform: translate(-0.33em, 33%);
  transform: translate(-0.33em, 33%);
}
.home_value_head_ja{
  font-size: 22px;
  font-weight: 700;
  border-bottom: 1px solid;
  padding-bottom: 16px;
  position: relative;
  z-index: 2;
}

.home_value_slides{

}
.home_value_slides .home_service_item{
  color: #181818;
}
.home_value_slides .home_service_item_box2{
  margin-top: 0;
  padding-top: 0;
}
.home_value_slides .home_service_item + .home_service_item{
  margin-top: 50px;
}

/* スライダーボタン */
.my_slider_btns{
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 20px;
}
.my_slider_btn{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  aspect-ratio: 1 / 1;
  margin: 0 15px 0;
  border: 1px solid #181818;
  border-radius: 50%;
  background: #FFF;
  cursor: pointer;
  position: relative;
  z-index: 2;
}
.my_slider_btn:before{
  content: "";
  width: 20px;
  aspect-ratio: 1 / 1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.my_slider_btn.prev:before{
  background-image: url(/system_panel/uploads/images/arrow-left-solid.svg);
}
.my_slider_btn.next:before{
  background-image: url(/system_panel/uploads/images/arrow-right-solid.svg);
}
.my_slider_btn:hover{
  background: #181818;
}
.my_slider_btn:hover:before{
  filter: invert(1);
}

@media (max-width:767px){




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

  .pg_home .section.sec2{
    /*height: 100svh;*/
    min-height: 100vh;
  }

  /* スタック本体 */
  .stack_scroller{
    min-height: 100svh; /* ピン時の土台。overflowはGSAPに任せる */
  }
  .stack_inner{
    position: relative;
    min-height: 100svh;
  }
  .stack_panel{
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
  }


  /* Service */
  .home_service_catch_en{
    -webkit-transform: translate(-50%, -10%);
    transform: translate(-50%, -10%);
    padding-top: 0;
  }
  .home_service_catch_en p{
    font-size: 150px;
  }
  .home_service_item{
    width: 100%;
    padding-top: 0;
  }
  .home_service_item_box1{
    width: 44.73%;
  }
  .home_service_item_box2{
    width: 49.01%;
    padding-top: 0;
    margin-top: 0;
  }
  .home_service_item_box3{
    width: 50%;
    order: 1;
    margin-top: 0;
  }
  .home_service_item_box4{
    width: 45%;
    order: 2;

  }
  .home_service_item_num{
    /*margin-bottom: 30px;*/
  }
  .home_service_item_num p{
    width: 160px;
    font-size: 20px;
    border-radius: 20px;
    padding: 4px 10px 2px;
  }
  .home_service_item_title1{
    font-size: 24px;
    /*padding-bottom: 18px;*/
    /*margin-bottom: 20px;*/
  }
  .home_service_item_title2{
    /*font-size: 20px;*/
    /*margin-bottom: 20px;*/
  }
  .home_service_item_txt{

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

  .stack_panel{
    padding-top: 100px;
    padding-bottom: 50px;
  }
  .stack_panel + .stack_panel{
    /*margin-top: -50vh;*/
  }

  /* Value */
  .home_value_head{
    margin-bottom: 40px;
  }
  .home_value_head_en{
    font-size: 160px;
    /*-webkit-transform: translate(-0.66em, 33%);*/
    /*transform: translate(-0.66em, 33%);*/
  }
  .home_value_head_ja{
    font-size: 28px;
    padding-bottom: 16px;
  }


  /* スライダーボタン */
  .my_slider_btns{
    width: 42.76%;
    justify-content: flex-end;
    margin-left: auto;
    margin-top: -50px;
  }
  .my_slider_btn{
    width: 50px;
    margin: 0 15px;
  }
  .my_slider_btn:before{
    width: 20px;
  }
}
@media (min-width:1024px){

  .stack_panel{
    padding-top: 150px;
    padding-bottom: 50px;
  }

  .home_service_item_box3{
    width: 38.48%;
  }
  .home_service_item_box4{
    width: 52.96%;
    margin-top: 0;
  }

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

  /* Service */
  .home_service_catch_en p{
    font-size: 200px;
  }

  .home_service_item_box2{
    padding-top: 30px;
  }
  .home_service_item_num{
    margin-bottom: 20px;
  }
  .home_service_item_title1{
    font-size: 28px;
  }
  .home_service_item_title2{
    font-size: 22px;
  }

  /* Value */
  .home_value_head{
    margin-bottom: 60px;
  }
  .home_value_head_en{
    font-size: 200px;
    /*-webkit-transform: translate(-0.66em, 33%);*/
    /*transform: translate(-0.66em, 33%);*/
  }
  .home_value_head_ja{
    font-size: 32px;
    padding-bottom: 16px;
  }

  /* スライダーボタン */
  .my_slider_btns{
    width: 42.76%;
    margin-left: 0;
    margin-top: 10px;
  }
  .my_slider_btn{
    width: 60px;
  }
  .my_slider_btn:before{
    width: 20px;
  }
}
@media (min-width:1470px){

  /* Service */
  .home_service_catch_en p{
    font-size: 250px;
  }

  /* Service */
  .home_service_catch_en p{
    font-size: 300px;
  }
  .home_service_item{
    width: 100%;
  }
  .home_service_item_box1{
    width: 34.73%;
  }
  .home_service_item_box2{
    width: 56.01%;
    padding-top: 30px;
  }

  .home_service_item_box3{
    width: 38.48%;
  }
  .home_service_item_box4{
    width: 52.96%;
    margin-top: 0;
  }

  .home_service_item_num{
    margin-bottom: 20px;
  }
  .home_service_item_title1{
    font-size: 30px;
    padding-bottom: 18px;
    margin-bottom: 20px;
  }
  .home_service_item_title2{
    font-size: 24px;
  }

  /* Value */
  .home_value_head{
    margin-bottom: 60px;
  }
  .home_value_head_en{
    font-size: 325px;
    /*-webkit-transform: translate(-0.66em, 33%);*/
    /*transform: translate(-0.66em, 33%);*/
  }
  .home_value_head_ja{
    font-size: 40px;
    padding-bottom: 16px;
  }

  /* スライダーボタン */
  .my_slider_btns{
    width: 42.76%;
    margin-top: -70px;
  }
  .my_slider_btn{
    width: 70px;
  }
  .my_slider_btn:before{
    width: 20px;
  }

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


  /* Service */
  .home_service_catch_en p{
    font-size: 300px;
  }
  .home_service_item{
    width: 100%;
  }
  .home_service_item_box1{
    width: 41.73%;
  }
  .home_service_item_box2{
    width: 49.01%;
    padding-top: 115px;
  }
  .home_service_item_num{
    margin-bottom: 30px;
  }
  .home_service_item_num p{
    width: 160px;
    font-size: 26px;
    border-radius: 20px;
    padding: 4px 10px 2px;
  }
  .home_service_item_title1{
    font-size: 40px;
    padding-bottom: 18px;
    margin-bottom: 40px;
  }
  .home_service_item_title2{
    font-size: 28px;
    margin-bottom: 40px;
  }
  .home_service_item_txt{

  }
  .home_service_item .read_more{
    margin-top: 65px;
  }

  .stack_panel{
    padding-top: 150px;
    padding-bottom: 50px;
  }

  /* スライダーボタン */
  .my_slider_btns{
    width: 42.76%;
    margin-top: -80px;
  }
  .my_slider_btn{
    width: 80px;
  }

  /* Value */
  .home_value_head{
  }
  .home_value_head_en{
    -webkit-transform: translate(-0.66em, 33%);
    transform: translate(-0.66em, 33%);
  }
  .home_value_head_ja{
  }
}


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

/* セクション設定 */
.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_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{
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}
.cmn_cat_nav li{
  width: 50%;
  padding: 0 5px;
  margin: 5px 0;
  font-size: 12px;
  line-height: 1.4285;
}
.cmn_cat_nav li a{
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 50px;
  padding: 2px 10px 3px;
  font-family: var(--font-gothic);
  color: var(--main-color);
  border: 1px solid var(--main-color);
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}

.cmn_cat_nav li 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 li.on a,
.cmn_cat_nav li a:hover{
  background: var(--main-color);
  color: #FFF;
}
.cmn_cat_nav li a:hover:after{
  margin-right: -2px;
}

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

@media (max-width:767px){

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

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

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

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

  }

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

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

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

  }

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

}


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

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

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

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

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


.news_list_thumb.col3{

}
.news_list_thumb.col4{

}


@media (max-width:767px){

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

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

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

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

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

  }

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

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


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

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

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

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

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

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

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



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


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


}


/*******************************
*　記事一覧(2カラム)
********************************/
.pg_news{
  padding-top: 30px;
}
.posts_layout{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;

}
.posts_layout_box1{
  width: 100%;
}
.posts_layout_box2{
  width: 100%;
  margin-top: 50px;
}

.select_wrap{
  position: relative;
  z-index: 1;
}
.select_wrap:after{
  content: "\f078";
  content: "\f107";
  font-family: "FontAwesome";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.select_wrap select{
  width: 100%;
  padding: 10px 10px;
  /*height: 40px;*/
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}
.posts_category_sp{
  margin-bottom: 30px;
}

/* リスト */
.posts_list{

}
.posts_list .webgene-item{
  display: flex;
  align-items: center;
  border-bottom: 1px dotted;
  padding-bottom: 10px;
}
.posts_list .webgene-item + .webgene-item{
  margin-top: 10px;
}
.posts_list .webgene-item .date{
  width: 95px;
  letter-spacing: 0.1em;
}
.posts_list .webgene-item .category{
  width: auto;
  font-size: 0.75em;
}
.posts_list .webgene-item .category span{
  display: block;
  background: #0069ba;
  color: #FFF;
  padding: 3px 5px;
  text-align: center;
}
.posts_list .webgene-item .title{
  width: 100%;
  letter-spacing: 0.075em;
}
.posts_list .webgene-item .title a{

}


/* サイド */
.posts_side_wrap{

}
.posts_side_wrap + .posts_side_wrap{
  margin-top: 30px;
}
.posts_side_title {
  background: #0069ba;
  color: #FFF;
  padding: 10px 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 20px;
}

.posts_cat_item{
  padding-left: 8px;
}
.posts_cat_item + .posts_cat_item{
  margin-top: 18px;
}
.posts_cat_item a{
  display: block;
  position: relative;
  padding-left: 20px;
  line-height: 1.5;
}
.posts_cat_item a:before{
  content: "■";
  position: absolute;
  left: 0;
}

/* 詳細 */
.posts_detail{
  border: 1px solid #d3d3d3;
  border-top: 15px solid #0069ba;
  padding: 15px 10px;
}
.posts_detail .webgene-item{

}
.posts_detail .meta{
  border-bottom: 1px solid #d3d3d3;
  padding-bottom: 5px;
  margin-bottom: 15px;
}
.posts_detail .meta .category{
  margin-bottom: 2px;
}
.posts_detail .meta .category span{
  display: inline-block;
  background: #0069ba;
  border-radius: 5px;
  color: #FFF;
  min-width: 150px;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  padding: 2px 5px;
  line-height: 1.2;
}
.posts_detail .meta .date{

}
.posts_detail .meta .title{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.065em;

}
.posts_detail .post_content{
  line-height: 1.875;
  letter-spacing: 0.065em;
  text-align: justify;
  word-break: break-all;
}
.posts_detail .thumb{
  margin-bottom: 10px;
}

.posts_back_list{

}
.posts_back_list a{
  display: block;
  width: 255px;
  max-width: 100%;
  margin: 30px auto 0;
  background: #f3f2f2;
  padding: 4px;
  border-radius: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
}
.posts_back_list a p{
  border: 2px dashed #0069b6;
  border-radius: 10px;
  padding: 10px 6px;
}
.posts_back_list a p:after{
  content: "\f105";
  font-family: "FontAwesome";
  margin-left: 18px;
}

/* PDFリンク */
.post_pdf{
  text-align: left;
}
.post_pdf a{
  display: inline-block;
  margin-top: 30px;
  border-bottom: 1px solid;
  transition: 0.2s all;
}
.post_pdf a[href=""]{
  display: none;
}
.post_pdf a:hover{
  border-bottom: 0;
}
.post_pdf a:before{
  /*
  * f054 > (大)
  * f105 > (小)
  */
  content: "\f105";
  font-family: "FontAwesome";
  margin-right: 5px;
}


/* 動画 */
.post_video{

}
.post_video .responsive_video{
  margin-top: 15px;
}
.post_video .responsive_video:empty{
  display: none;
}

/* コピー用 */
@media (max-width:374px){

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

}
@media (max-width:767px){
  .posts_list .webgene-item{
    flex-wrap: wrap;
  }
  .posts_list .webgene-item .title{
    margin-top: 5px;
  }
  .posts_list .webgene-item .category{
    max-width: calc(100% - 95px);
    line-height: 1.2;
  }
}
@media (min-width:768px){

  .pg_news{
    padding-top: 50px;
  }
  .posts_layout_box1{
    width: 74.32%;
  }
  .posts_layout_box2{
    width: 22.97%;
    margin-top: 0;
  }

  .posts_category_sp{
    display: none;
  }

  /* リスト */
  .posts_list{

  }
  .posts_list .webgene-item{
    padding-bottom: 20px;
  }
  .posts_list .webgene-item + .webgene-item{
    margin-top: 20px;
  }
  .posts_list .webgene-item .date{
    width: 90px;
    font-size: 14px;
    letter-spacing: 0.075em;
  }
  .posts_list .webgene-item .category{
    width: 160px;
  }
  .posts_list .webgene-item .category span{
  }
  .posts_list .webgene-item .title{
    width: calc(100% - 100px - 150px - 15px);
    margin-left: 15px;
  }
  .posts_list .webgene-item .title a{

  }

  .posts_side_wrap + .posts_side_wrap{
    margin-top: 55px;
  }

  /* 詳細 */
  .posts_detail{
    padding: 20px 30px;
  }
  .posts_detail .webgene-item{

  }
  .posts_detail .meta{
    display: flex;
    flex-wrap: wrap;
    padding: 0 10px 5px;
    margin-bottom: 25px;
  }
  .posts_detail .meta .category{
    width: 100%;
  }
  .posts_detail .meta .category span{
    font-size: 13px;
    padding: 2px 5px;
  }
  .posts_detail .meta .date{
    width: 105px;
  }
  .posts_detail .meta .title{
    width: calc(100% - 105px);
    font-size: 20px;
  }
  .posts_detail .post_content{
    padding: 0 10px;
  }
  .posts_detail .thumb{
    margin-bottom: 20px;
  }


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

  /* リスト */
  .posts_list{

  }
  .posts_list .webgene-item{
  }
  .posts_list .webgene-item + .webgene-item{
  }
  .posts_list .webgene-item .date{
    width: 120px;
    font-size: 16px;
  }
  .posts_list .webgene-item .category{
    width: 160px;
  }
  .posts_list .webgene-item .category span{
  }
  .posts_list .webgene-item .title{
    width: calc(100% - 120px - 160px - 25px);
    margin-left: 25px;
  }
  .posts_list .webgene-item .title a{

  }

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

  .pg_news{
    padding-top: 100px;
  }

}



/*******************************
*　ギャラリー（サムネ横ver）
********************************/
.pg_xxx{

}
.pg_xxx .section.sec1{
  padding-top: 0;
  padding-bottom: 0;
}

/* スライド */
.gallery_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.gallery_box1{
  width: 100%;
}
.gallery_box2{
  width: 100%;
  margin-top: 15px;
}

/* メイン */
.gallery_main{

}
.gallery_main .img{
  background: #EEE;
}
.gallery_main .img.img_fit:before{
  padding-top: 75.34%;
}
.gallery_main .img.img_fit img{
  object-fit: contain;
  object-position: center;
}
/* サムネ */
.gallery_thumb{

}
.gallery_thumb .img{
  width: 100%;
  background: #EEE;
  overflow: hidden;
}
.gallery_thumb .img.img_fit:before{
  padding-top: 76.47%;
}
.gallery_thumb .img.img_fit img{

}


/* 詳細 */
.gallery_detail{

}
.gallery_detail .meta{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px solid #e5e5e5;
  margin-top: 20px;
  margin-bottom: 15px;
  padding-bottom: 10px;

}
.gallery_detail .meta .title{
  font-size: 18px;
  line-height: 1.5;
}
.gallery_detail .meta .price{
  font-size: 18px;
  line-height: 1.5;
  margin-left: auto;
}
.gallery_detail .post_content{
  font-size: 16px;
  line-height: 2;
  text-align: justify;
  word-break: break-all;
}
.gallery_detail .read_more{
  margin-top: 50px;
}


/* コピー用 */
@media (max-width:374px){

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

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

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

  }
  .pg_xxx .section.sec1{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_xxx .section.sec2{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_xxx .section.sec3{
    padding-top: 0;
    padding-bottom: 0;
  }

  /* 詳細 */
  .gallery_wrap{
  }
  .gallery_box1{
    width: 65.76%;
  }
  .gallery_box2{
    width: 31.53%;
    margin-top: 0;

    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    right: 0;
    overflow: hidden;
  }

  /* サムネ */
  .gallery_thumb{
    width: 100%;
    height: 100%;
  }
  .gallery_thumb .swiper-slide {
    overflow: hidden;
  }
  .gallery_thumb .img{
    height: 100%;
  }
  .gallery_thumb .img.img_fit:before{

  }

  /* 詳細 */
  .gallery_detail{
    width: 65.76%;
    margin-top: 30px;
  }
  .gallery_detail .meta{
    margin-top: 10px;
    margin-bottom: 15px;
    padding-bottom: 10px;
  }
  .gallery_detail .meta .title{
    font-size: 18px;
  }
  .gallery_detail .meta .price{
    font-size: 18px;
  }
  .gallery_detail .post_content{
    font-size: 16px;
    line-height: 2;
  }
  .gallery_detail .read_more{
    margin-top: 50px;
  }
}
@media (min-width:1024px){

  /* 詳細 */
  .gallery_detail{
    width: 65.76%;
    margin-top: 30px;
  }
  .gallery_detail .meta{
    margin-top: 10px;
    margin-bottom: 15px;
    padding-bottom: 10px;
  }
  .gallery_detail .meta .title{
    font-size: 20px;
  }
  .gallery_detail .meta .price{
    font-size: 20px;
  }
  .gallery_detail .post_content{
    font-size: 16px;
    line-height: 2;
  }
  .gallery_detail .read_more{
    margin-top: 50px;
  }

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


}





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

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

@media (max-width:1023px){

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

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

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


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

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

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


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

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

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

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

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


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


  .privacy_ttl{
    font-size: 18px;
  }

}

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

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

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

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


  .pg_contact .section.sec1 {
    padding: 0 0 25px;
  }
  .contact_info_bg {
    padding: 18px 10px;
  }

  .pg_contact .section.sec2{
    padding: 65px 0 30px;
  }

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

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

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


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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}


@media (max-width:374px){

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

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

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

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }


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


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


}
