@charset "UTF-8";

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

  /* カラー(ボタン背景色など) */
  --main-color: #14065e;
  --sub-color: #e7161a;
  --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: "Oswald", 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: 4;
  }
}

.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: 30px;

}
.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: var(--main-color);
  color: #FFF;
  width: 185px;
  padding: 10px 5px;
  text-align: center;
  transition: 0.2s all;
}
.hdr_contact a.email p:before{
  content:"\f0e0";
  font-family: "fontAwesome";
  margin-right: 10px;
}
.hdr_contact a:hover{
  background: var(--sub-color);
  color: #FFF;
}

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


@media (min-width:375px){

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

  .hdr1 {
    justify-content: center;
  }

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

  .hdr_outer{
    display: none;
  }
}
@media (min-width:768px){

  /* ヘッダー固定 */
  body{
    /* ヘッダーの高さに応じて */
    padding-top: 0;
  }
  .header{
    --logo-height: 48px;

    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 32px;
    transition: all .2s;
  }
  .header{

  }
  .header_inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .hdr_outer{
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .header.v2 .header_inner{
    justify-content: flex-end; 
  }
  .hdr_outer .read_more{
    margin-top: 0;
  }
  .hdr_outer .read_more a{
    font-family: "Noto Sans JP", sans-serif;
  }
  .line_icon{
    margin-left: 20px;
  }


  .hdr1{
    padding: 0 15px 0;
  }

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

  /* ヘッダースリム */
  .header.slim{
    background: rgba(255,255,255,0.7);
    padding: 10px 32px;
  }
  .header.slim .hdr_logo img{
    height: calc(var(--logo-height) * 0.8);
  }

  /* TELボタン */
  .hdr_tel{

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


}
@media (min-width:1024px){
  body{
    padding-top: 0;
  }

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

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

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

  }
  .header.slim .hdr_logo img{
  }

  /* TELボタン */
  .hdr_tel{

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

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

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

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

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

  }
  .header.slim .hdr_logo img{
  }

}

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

/* MVテキスト */
.mv_txt{
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 30px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: #FFF;
  font-size: 32px;
  font-weight: 700;
}
.mv_txt_p1{

}
.mv_txt_p2{

}

.mv_inner{
  height: 100vh;
  position: relative;
  transition: all .2s;
}
.mv.slim .mv_inner{
  height: 36svh;
}
.mv_inside{
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
.mv_text{
  z-index: 2;
  filter:
    drop-shadow( 1px  0   0 #fff)
    drop-shadow(-1px  0   0 #fff)
    drop-shadow( 0    1px  0 #fff)
    drop-shadow( 0   -1px  0 #fff)
    drop-shadow( 1px  1px  0 #fff)
    drop-shadow(-1px  1px  0 #fff)
    drop-shadow( 1px -1px  0 #fff)
    drop-shadow(-1px -1px  0 #fff);
}
.mv_text_ja{
  font-size: 23px;
  font-weight: 900;
  letter-spacing: 0.075em;
}
.mv_text_en{
  font-size: 20px;
  font-weight: 500;

  font-family: var(--font-en);
  line-height: 1;
  margin-top: 20px;
}
.mv_text_en p{
  letter-spacing: 0;
}
.mv_img_outer{
  margin-left: auto;
}

.mv_logo{
  transition: all .2s;
  opacity: 1;
}
.mv_logo,
.mv_inside .mv_text_ja {
  opacity: 0;
}

.mv_logo.animated,
.mv_inside .mv_text_ja.animated {
  animation-fill-mode: both;
}
.mv.slim .mv_logo{
  opacity: 1;
}
.mv.slim .mv_logo{
  opacity: 1;
}
.header.v3 .hdr_logo{
  opacity: 0;
}
.header.v3.slim .hdr_logo{
  opacity: 1;
}
/* スライダーの場合 */
.mv_slider{

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

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

.mv_btns{
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}
.mv_btn{
  width: 100%;
}
.mv_btn a{
  display: block;
  border: 1px solid #14065e;
  border-radius: 29px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  position: relative;
  padding: 16px 0;
}
.mv_btn a:hover{
  background: #201366;
  color: #fff;
}
.mv_btn a p{
  letter-spacing: 0.05em;
}
.mv_btn a:after{
  content: "→";
  display: block;

  transition: 0.2s all;
  position: absolute;
  top: 50%;
  right:20px;
  transform: translateY(-50%);
  color: #181818;
}
.mv_btn a:hover:after{
  color: #fff;
}

.mv_text_ja_outer{
  text-align: center;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
@media (min-width:768px){

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

  .mv_inner{
    height: 300px;
    padding-right: 20px;
  }
  .mv.slim .mv_inner{
    height: 800px;
  }
  .mv_text{

  }
  .mv_text_ja{
    font-size: 40px;
    margin-top: 0;
  }
  .mv_logo{
    width: 70%;
    margin-inline:auto;
    margin-bottom: 0;
  }
  .mv_text_en{
    font-size: 30px;
  }
  .mv_img_outer{
    width: 78.5%;
  }

  .mv_inside{
    top: 65%;
  }

  .mv_btns{
    margin-inline:-12px;
    margin-top: 75px;
    margin-top: 0;
  }
  .mv_btn{
    width: 50%;
    padding-inline:12px;
  }
  .mv_btn:nth-child(n+2){
    margin-top: 0; 
  }
  .mv_btn:nth-child(n+3){
    margin-top: 24px;; 
  }
  .mv_btn a{
    font-size: 18px;
  }
  .mv_btn a:after{

  }

  .mv.slim .mv_logo{
    opacity: 0;
  }
  .header.v3 .hdr_logo{
    opacity: 0;
  }
  .header.v3.slim .hdr_logo{
    opacity: 1;
  }
}
@media (min-width:1024px){


  /* MV */
  .mv{
  }
  .mv_img{
  }
  .mv_img.img_fit:before{
    padding-top: 500px;
  }
  .mv_inner{
    height: 75vh;
    height: 300px;
  }
  .mv.slim .mv_inner{
    height: 50vh;
  }
  .mv_inside{
    top: 60%;
  }
  .mv_text{

  }
  .mv_text_ja{
    text-align: center;
    font-size: 50px;
  }
  .mv_text_en{
    font-size: 40px;
  }
  .mv_img_outer{

  }

  .mv_logo{
    width: 60%;
    margin-inline:auto;
  }

  .mv_btns{

  }
  .mv_btn{
    width: 25%;
  }
  .mv_btn:nth-child(n+3){
    margin-top: 0; 
  }
  .mv_btn:nth-child(n+4){

  }
  .mv_btn a{

  }
  .mv_btn a:after{

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

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

  .mv_inner{
    height: 75vh;
    height: 350px;
  }
  .mv_logo{
    width: 70%;
    margin-inline:auto;
  }
  .mv_inside{
    top: 57%;
  }
  .mv_text{

  }
  .mv_text_ja{
    font-size: 68px;
  }
  .mv_text_en{
    font-size: 50px;
  }
  .mv_img_outer{

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


}
@media (min-width:1720px){
  /*  .mv_inner{
      height: 65vh;
    }
    .mv_inside{
      top: 57%;
    }*/

}

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

/* サイドバー */
.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: 38px;
  }


}
@media (min-width:1024px){
  .sidebar_bn img{
    width: 60px;
  }
}
@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: relative;
  z-index: 2;
  top:auto;
  left: 0;
  right: 0;
  text-align: center;
}
.pg_header_title_txt{
  font-size: 32px;
  font-weight: 700;
  color: #FFF;
}




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

  .pg_header_title_txt{

  }

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

  .pg_header_title_txt{

  }

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

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

  .pg_header_title_txt{

  }

}



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

.footer{
  margin-top: 50px;
}

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

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

}
.ftr1_box2{

}

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


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

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

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

/* 追尾スマホメニュー */
.footer_fix{
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #7ecef4;
  /*z-index: 1000;*/
  z-index: 5; /* チャットボットがある場合 */
  flex-wrap: wrap;
}
.footer_fix > a{
  font-size: 12px;
  text-align: center;
  display: block;
  padding: 10px 5px 5px;
  background: #cab386;
  text-decoration: none;
  line-height: 1.2;
}
.footer_fix .footer_fix_item_1{
  width: 25.3%;
  border-right: 1px solid var(--main-color);
}
.footer_fix_item_1 .icon{
  width: 20px;
  margin-inline:auto;
  margin-bottom: 8px;
}
.footer_fix .footer_fix_item_1.recruit{
  background: #eeeeee;
  color: #024b93;
}
.footer_fix .footer_fix_item_2{
  width: 24%;
  background: var(--main-color);
  color: #fff;
}
.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: #4682b4;
}
.pagetop a i{
  font-size: 40px;
}



@media (min-width:375px){

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

  body{
    padding-bottom: 56px;
  }

  .mv{
    padding-top: 30px;
  }
  .mv_btn:nth-child(n+2){
    margin-top: 16px;
  }

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

  .sidebar{
    display: none;
  }

  .header{
    --logo-height: 0;
  }


  .mv_inside{
    top: 53%;
  }
  .mv_text_ja{
    margin-top: 32px;
    margin-top: 0;
  }
  .mv .mv_logo img{
    display: block;
    transition: all .2s;
  }
  .mv.slim .mv_logo img{
    /*   width: 200px*/
    transform: scale(0.5);
  }
}
@media (min-width:768px){
  .footer{
    margin-top: 100px;
  }
}
@media (min-width:1024px){
  .footer{
    margin-top: 180px;
  }
}
@media (min-width:1200px){

}


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


/* テーブル用 */
.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 #539fde;
  background: #ffffff;
  font-weight: 500;
}
.webgene-pagination li.selected{
  border: 0;
  background: #bababa;
  border: 1px solid #bababa;
  color: #fff;
}
.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: 220px;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font-en);
  line-height: 1.2;
  text-align: center;
  border: 1px solid transparent;
  background: var(--main-color);
  /*border-radius: 27px;*/
  color: #FFF;
  padding: 16px 20px;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.read_more a p{
  letter-spacing: 0.2em;
}
.read_more a:after{
  display: none;
}
.read_more a:hover{
  color: #FFF;
  background: var(--sub-color);
}
.read_more a:hover:after{
  margin-right: -5px;
}


/* 見出し */
.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: 40px;
  padding-bottom: 40px;
}
.section.sec1{
  padding-top: 0;
}
.section:last-child{
  padding-bottom: 0;
}

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

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

}

.content_desc{
  font-size: 16px;
  font-weight: 400;
  line-height: 2.25em;
  text-align: justify;
  margin-top: 20px;
  margin-top: 12px;
}
.content_desc p{
  letter-spacing: 0;
}

.lg_txt{
  font-size: clamp(3.75rem, 1rem + 13.75vw, 17.5rem);
  font-weight: 400;
  font-family: var(--font-en);
  letter-spacing: 0;
  line-height: 1;
  color: #f2f1f4;
  position: absolute;
  top: 0;
  left: 50%;
  transform:translateX(-50%);
  z-index: -1;
  display: none;
}
@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: -50px;
  }

  /* ページネーション */
  .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: 13px 20px;
    margin: 5px 5px;
  }
  .read_more a:after{
    display: none;
  }

  /* 見出し */
  .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;
  }


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

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

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

  .content_desc.center{
    text-align: center
  }
}
@media (min-width:1200px){


}


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

}
.pg_home .section.sec1{
  position: relative;
  padding-top: 60px;
}
.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{

}

.pg_home .section:nth-child(n+2){
  position: relative;
}
.pg_home .section:nth-child(n+2):before{
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #a6a6a6;
  max-width: 1110px;
  margin-inline:auto;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform:translateX(-50%);
}
.body_home .pg_home .section:last-child{
  padding-bottom: 0;
}
.pg_home .section:last-child:before{
  display: none;
}
@media (max-width:767px){
  .pg_home .section.sec1{
    padding-top: 40px;
  }
}
@media (min-width:768px){

  .pg_home .section.sec1{
    padding-top: 63px;
    padding-top: 0;
  }
  .pg_home .section.sec2{
    padding-top: 23px;
  }
  .pg_home .section.sec3{
    padding-top: 65px;
  }
  .pg_home .section.sec4{
    padding-top: 67px;
  }
  .pg_home .section.sec5{

  }
  .pg_home .section.sec6{

  }
  .pg_home .section.sec7{

  }
  .pg_home .section.sec8{

  }

  .pg_home .section:nth-child(2){
    margin-top: 20px;
  }
  .pg_home .section:nth-child(n+3){
    padding-top: 100px;
    padding-top: 40px;
  }

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


}
@media (min-width:1200px){
  .pg_home .section:nth-child(n+2){
    padding-bottom: 100px;
    padding-bottom: 40px;
  }


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


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


}
/*about*/
.sec1_wrap{
  position: relative;
  padding-top: 10px;
}
.sec1_wrap .lg_txt{

}
.sec1_bg{
  width: 86.9%;
  aspect-ratio:1131 / 760;
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0.2;
}
.sec1_bg:before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(275deg,rgba(255, 255, 255, 0) 3%, rgba(255, 255, 255, 0.74) 88%, rgba(255, 255, 255, 1) 100%);
  position: absolute;
  top: 0;
  left: 0;
}
.sec1_bg:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,rgba(255, 255, 255, 0) 3%, rgba(255, 255, 255, 0.74) 88%, rgba(255, 255, 255, 1) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
}

/*サービス*/
.sv_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.sv_wrap:nth-child(n+2){
  margin-top: 50px;
}
.sv_box1{
  width: 100%;
}
.sv_box1_img:before{
  padding-top: 62.4%;
}
.sv_box2{
  width: 100%;
  margin-top: 30px;
}
.sv_tt{

}
.sv_tt_en{
  font-size: 28px;
  font-weight: 500;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0;
  color: #14065e;
}
.sv_tt_ja{
  text-align: left;

  margin-top: 10px;
}
.sv_tt_ja_h2{
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
  padding-top: 10px;
}
.sv_tt_ja_h2:before{
  content: "";
  display: block;
  width: 125px;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
}

/*他サービス*/
.other_sv_wrap{
  display: flex;
  flex-wrap: wrap;
}
.other_sv_item{
  width: 100%;
}
.other_sv_item:nth-child(n+2){
  margin-top: 30px;
}
.other_sv_item_inner{
  display: block;
  background: #f2f1f4;
  padding: 19px 24px 25px 12px;
  position: relative;
}
.other_sv_item_inner:after{
  content: "→";
  display: block;
  width: 38px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid #14065e;
  background: #14065e;
  color: #fff;
  transition: 0.2s all;
  position: absolute;
  right: 1.2em;
  bottom: 1.1em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 24px;
}
.other_sv_item_inner:hover:after{
  background: #fff;
  color: #14065e;
}
.other_sv_item_tt{

}
.other_sv_item_en{
  font-size: 20px;
  font-weight: 500;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0;
}
.other_sv_item_ja{
  text-align: right;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  margin-top: 3px;
  padding-top: 17px;
}
.other_sv_item_ja:before{
  content: "";
  display: block;
  width: 68.28%;
  height: 1px;
  background: #000000;
  margin-left: auto;
}
.other_sv_item_inner .content_desc{
  line-height: 2em;
  margin-top: 12px;
}

/*バナー*/
.bnr_items{
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}
.bnr_item{
  width: 100%;
}
.bnr_item:nth-child(n+2){
  margin-top: 20px;
}
.bnr_item a{

}
.bnr_item a img{
  transition: all .2s;
}
.bnr_item a:hover img{
  transform: scale(1.02);
}

/*新着情報*/
.pg_home .section.news{
  margin-top: 0;

}
.news_wrap{
  border-top:none;
  padding-top: 0;
}
.news_tt{
  margin-bottom: 40px;
}
.news_tt_en{
  font-size: 20px;
  font-family: var(--font-en);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}
.news_tt_ja{
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0;
  border-top: 1px solid #000000;
  padding-top: 10px;
  margin-top: 10px;
}
.news_list{

}
.news_list .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  margin-inline:-5px;
}
.news_list .webgene-item{
  width: 50%;
  padding-inline:5px;
}
.news_list .webgene-item:nth-child(n+3){
  margin-top: 20px;
}
.news_list .webgene-item a{

}
.news_list .webgene-item .img:before{
  padding-top: 80%;
}
.news_list .webgene-item .box2{
  margin-top: 16px;
}
.news_list .webgene-item .category{
  display: inline-block;
  text-align: center;
  background: #002f60;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  padding: 3px 20px;
}
.news_list .webgene-item .title{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.75em;
  margin-top: 18px;
}

/*ラインバナー*/
.linebnr{
  margin-top: 50px;
}
.linebnr a{
  display: block;
}
.linebnr a img{
  transition: all .2s;
}
.linebnr a:hover img{
  transform: scale(1.02);
}
@media (max-width:374px){

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

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

}
@media (min-width:768px){
  /*about*/
  .sec1_bg{
    width: 58.9%;
    top: -1em;
  }
  .sec1_wrap{
    position: relative;
    padding-top: 100px;
    padding-top: 65px;
    padding-top: 40px;;
  }
  .sec1_wrap .lg_txt{

  }

  /*サービス*/
  .sv_wrap{

  }
  .sv_wrap:nth-child(n+2){
    margin-top: 100px;
  }
  .sv_box1{

  }
  .sv_box1_img:before{

  }
  .sv_box2{
    margin-top: 50px;
  }
  .sv_tt{
    width: 50%;
  }
  .sv_tt_en{
    font-size: 30px;
    padding-bottom: 9px;
  }
  .sv_tt_ja{
    text-align: right;

    margin-top: 10px;
  }
  .sv_tt_ja_h2{
    font-size:18px; 
    padding-top: 0;
  }
  .sv_tt_ja_h2:before{
    height: auto;
    background-color:transparent;
    aspect-ratio:1;
    background-image: url(/system_panel/uploads/images/bou.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: auto;
    left: -80px;
    bottom: -20px;
  }
  .sv_box2 .content_desc{
    margin-top: 56px;
  }
  .sv_box2 .read_more{
    margin-top: 55px; 
  }

  /*他サービス*/
  .other_sv_wrap{
    margin-inline:-15px;
  }
  .other_sv_item{
    width: 50%;
    padding-inline:15px;
  }
  .other_sv_item:nth-child(n+2){
    margin-top: 0;
  }
  .other_sv_item:nth-child(n+3){
    margin-top: 30px;
  }
  .other_sv_item_inner{
    height: 100%;
    padding-bottom: 60px;
  }
  .other_sv_item_tt{

  }
  .other_sv_item_en{
    font-size: 22px;
  }
  .other_sv_item_ja{
    font-size: 18px;
  }
  .content_desc{

  }

  /*バナー*/
  .bnr_items{
    justify-content: space-between;
    margin-inline:-15px;
    margin-top: 111px;
    margin-top: 40px;
  }
  .bnr_item{
    width: 50%;
    padding-inline:15px;
  }
  .bnr_item.full{
    width: 100%;
  }
  .bnr_item:nth-child(n+2){
    margin-top: 0;
  }
  .bnr_item a{

  }

  .home_contents6_wrap{

  }
  .home_contents6_head{

  }
  .home_contents6_head_en{
    font-size: 36px;
  }
  .home_contents6_head_desc{
    font-size: 18px;
  }


  /*新着情報*/
  .pg_home .section.news .news_wrap{
    padding-top: 0;
  }
  .news_wrap{

  }
  .news_tt{
    margin-bottom: 40px;
  }
  .news_tt_en{
    font-size: 24px;
  }
  .news_tt_ja{
    font-size: 18px;
  }
  .news_list{

  }
  .news_list .webgene-blog{

  }
  .news_list .webgene-item{

  }
  .news_list .webgene-item a{

  }
  .news_list .webgene-item .img:before{

  }
  .news_list .webgene-item .box2{

  }
  .news_list .webgene-item .category{
    padding: 3px 47px;
  }
  .news_list .webgene-item .title{

  }
  .news_wrap .read_more{
    margin-top: 51px;
  }

  /*ラインバナー*/
  .linebnr{
    margin-top: 103px;
    margin-top: 40px;
  }
  .linebnr a{

  }
  .linebnr a img{

  }
}
@media (min-width:1024px){
  /*サービス*/
  .sv_tt{
    width: 40%;
  }

  /*新着情報*/
  .news_list{

  }
  .news_list .webgene-blog{
    margin-inline:-15px;
  }
  .news_list .webgene-item{
    width: 33.333%;
    padding-inline:15px;
  }
  .news_list .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .news_list .webgene-item:nth-child(n+4){
    margin-top: 20px;;
  }
  .news_list .webgene-item a{

  }
  .news_list .webgene-item .img:before{

  }
  .news_list .webgene-item .box2{
    margin-top: 11px;
  }
  .news_list .webgene-item .category{

  }
  .news_list .webgene-item .title{

  }
}
@media (min-width:1200px){
  /*about*/
  .sec1_bg{
    top: -3em;
  }
  .sec1_wrap{
    position: relative;
    padding-top: 100px;
    padding-top: 40px;
  }
  .sec1_wrap .lg_txt{

  }
  .sec1_wrap .content_desc{
    padding-inline: 0;
  }

  /*サービス*/
  .sv_wrap{

  }
  .sv_wrap:nth-child(n+2){
    margin-top: 75px;
  }
  .sv_wrap:nth-child(odd) .sv_box1{
    order: 1; 
  }
  .sv_wrap:nth-child(odd) .sv_box2{
    order: 2; 
  }
  .sv_wrap:nth-child(even) .sv_box1{
    order: 2; 
  }
  .sv_wrap:nth-child(even) .sv_box2{
    order: 1; 
  }
  .sv_box1{
    width: 59.9%;
  }
  .sv_box1_img:before{

  }
  .sv_box2{
    width: 34.23%;
    margin-top: 0;
    padding-top: 26px;
  }
  .sv_tt{
    width: auto;
  }
  .sv_tt_en{
    font-size: 38px;
  }
  .sv_tt_ja{

  }
  .sv_tt_ja_h2{

  }
  .sv_box2 .content_desc{

  }

  /*他サービス*/
  .other_sv_wrap{

  }
  .other_sv_item{
    width: 33.333%;
  }
  .other_sv_item:nth-child(n+3){
    margin-top: 0;
  }
  .other_sv_item_inner{

  }
  .other_sv_item_tt{

  }
  .other_sv_item_en{
    font-size: 24px;
  }
  .other_sv_item_ja{

  }
  .content_desc{

  }

  /*新着情報*/
  .news_list{

  }
  .news_list .webgene-blog{

  }
  .news_list .webgene-item{
    width: 33.333%;
  }
  .news_list .webgene-item:nth-child(n+4){
    margin-top: 0;
  }

  .news_list .webgene-item a{

  }
  .news_list .webgene-item .img:before{

  }
  .news_list .webgene-item .box2{

  }
  .news_list .webgene-item .category{

  }
  .news_list .webgene-item .title{

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


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


}




/*******************************
*　免許サポート
********************************/

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

}
.pg_licensesupport .section.sec1{

}
.pg_licensesupport .section.sec2{

}


@media (max-width:374px){

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

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

}
@media (min-width:768px){
  /* セクション設定 */
  .pg_licensesupport{

  }
  .pg_licensesupport .section.sec1{

  }
  .pg_licensesupport .section.sec2{

  }

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


}
@media (min-width:1200px){
  /* セクション設定 */
  .pg_licensesupport{

  }
  .pg_licensesupport .section.sec1{

  }
  .pg_licensesupport .section.sec2{

  }

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


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


}

/* メイン部分 */
.contents_items{
  margin-top: 50px;
}
.contents_item{

}
.contents_item:nth-child(n+2){
  margin-top: 40px;
}
.contents_item_tt_out{
  text-align: center;
  padding: 5px;
  border: 2px solid #080056;
  margin-bottom: 30px;
}
.contents_item_tt{
  border: 1px solid #080056;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  color: #181818;
  padding: 10px 0;
}
.contents_item .content_desc{
  font-size: 16px;
  font-weight: 400;
  line-height: 2.25em;
  margin-top: 0;
}
.translation_lists_box{
  border: 1px solid #a6a6a6;
  padding: 3px 5px 17px;
  margin-bottom: 19px;
}
.contents_sub_tt{
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0;
  background: #080056;
  color: #fff;
  text-align: center;
  padding: 10px 0;
}
.translation_lists{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
.translation_list{
  font-size: 16px;
  font-weight: 500;
  position: relative;
  padding: 0 20px;
}
.translation_list:after{
  content: "/";
  position: absolute;
  top: 50%;
  right:0;
  transform: translateY(-50%);
}
.translation_list:last-child:after{
  display: none;
}

.cmn_link.center{
  justify-content: center;
}
@media (max-width:767px){
  .cmn_link_a.right:after{
    position: absolute !important;
    width: 21px !important;
    right: 10px !important;
    font-size: 10px !important;
  }
}
@media (min-width:768px){
  /* メイン部分 */
  .contents_items{
    margin-top: 100px;
    margin-top: 40px;
  }
  .contents_item{

  }
  .contents_item:nth-child(n+2){
    margin-top: 50px;
  }
  .contents_item_tt_out{
    margin-bottom: 48px;
  }
  .contents_item_tt{
    font-size: 18px;
    padding: 19px 0;
  }
  .contents_item .content_desc{

  }
  .translation_lists_box{
    margin-bottom: 40px;
  }
  .contents_sub_tt{
    font-size: 18px;
  }
  .translation_lists{

  }
  .translation_list{
    font-size: 18px;
    padding: 0 30px 0 15px;
  }
  .translation_list:after{

  }
}
@media (min-width:1024px){
  /* メイン部分 */
  .contents_items{
    margin-top: 40px;
  }
  .contents_item{

  }
  .contents_item_tt_out{

  }
  .contents_item_tt{

  }
  .contents_item .content_desc{

  }
  .translation_lists_box{

  }
  .contents_sub_tt{

  }
  .translation_lists{

  }
  .translation_list{
    font-size: 20px;
    padding: 0 14px 0 7px;
  }
  .translation_list:after{

  }
  .contents_item.second .contents_item_tt_out{
    margin-bottom: 61px;
  }
  .cmn_link.center .cmn_link_a.right:after{
    right: -50px;
  }

  .pg_licensesupport .cmn_link.center{
    margin-top: 32px;
  }
}
@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{
  margin-top: 25px;
}
.company_tbl .table_rows_th,
.company_tbl .table_rows_td{
  color: #000;
  border-color: #888888;
  font-weight: 500;
  padding: 10px 10px;
}
.company_tbl .table_rows_th{
  background: #e0e2e9;

}
.company_tbl .table_rows_td{
  background: #FFF;
  line-height: 1.88em;
  font-weight: 400;
}

/* マップ */
.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%;
}
.link_2{
  text-align: center;
  display: block;
  width: 100%;
  max-width: 410px;
  background: #14065e;
  color: #fff;
  border-radius: 24px;
  font-size: 17px;
  font-weight: 500;
  margin: 30px auto 0;
  padding: 11px 0;
}
.link_2 p{
  letter-spacing: 0;
}
@media (max-width:767px){
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    display: block;
    width: 100%;
    border: 1px solid #888888;
    border-bottom: 0;
  }
  .company_tbl .table_rows_th{

  }
  .company_tbl .table_rows_tr:last-child .table_rows_td{
    border-bottom: 1px solid #888888;
  }
}
@media (min-width:768px){

  /* 会社概要 */
  .company_tbl{

  }
  .company_tbl.company{
    margin-top: 60px;
    margin-top: 40px;
  }
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    padding: 16.5px 15px 16.5px;
  }
  .company_tbl .table_rows_th{
    width: 200px;
    font-size: 17px;
  }
  .company_tbl .table_rows_td{
    padding-left: 20px;
  }

  /* マップ */
  .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;
  }

  .link_2{
    font-size: 18px;
    margin-top: 80px;
  }
}
@media (min-width:1024px){


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

  /* 会社概要 */
  .company_tbl{

  }
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    padding: 16.5px 15px 16.5px;
  }
  .company_tbl .table_rows_th{
    width: 284px;
  }
  .company_tbl .table_rows_td{
    padding-left: 20px;
  }

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

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


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


}



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

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

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

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

@media (max-width:767px){

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

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

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

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

  }

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

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

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

  }

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

}


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

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

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

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

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


.news_list_thumb.col3{

}
.news_list_thumb.col4{

}


@media (max-width:767px){

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

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

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

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

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

  }

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

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


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

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

  .body_news .news_list .webgene-item .box2{
    margin-top: 5px;
  }
  .body_news .news_list .webgene-item .title{
    margin-top: 13px;
  }
}
@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;
  }


  .body_news .news_list .webgene-item:nth-child(n+4){
    margin-top: 55px;
  }
}
@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: #080056;
  color: #FFF;
  padding: 12px 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 20px;
}

.posts_cat_item{
  padding-left: 0;
}
.posts_cat_item + .posts_cat_item{
  margin-top: 14px;
}
.posts_cat_item a{
  display: block;
  position: relative;
  font-weight: 500;
  padding-left: 35px;
  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;
}
.news_detail{
  border-bottom: 1px solid #1c1c1c;
  padding-bottom: 34px;
}
.news_detail .meta{
  display: flex;
  align-items: center;
}
.news_detail .category{
  display: inline-block;
  text-align: center;
  background: #080056;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  padding: 4px 29px;
  margin-right: 20px;
}
.news_detail .date{
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: 0;
}
.news_detail .title{
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  border-bottom: 1px solid #1c1c1c;
  margin-top: 17px;
  padding-bottom: 13px;
}
.news_detail .post_content{
  padding-top: 30px;
}
.news_detail .post_content .txt{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 2.5em;
}

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

.body_newsDetail .read_more a{
  text-align: left;
  width: 100%;
  max-width: 333px;
  font-family: "Noto Sans JP", sans-serif;
}
.body_newsDetail .read_more a p{
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.body_newsDetail .read_more a:after{
  content: "→";
  font-weight: 900;
  position: absolute;
  background: #fff;
  width: 30px;
  aspect-ratio: 1;
  color: #0b419b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  top: 50%;
  right: 18px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
/* コピー用 */
@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: 56px;
  }

  /* 詳細 */
  .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;
  }

  .news_detail{

  }
  .news_detail .meta{

  }
  .news_detail .category{

  }
  .news_detail .date{

  }
  .news_detail .title{
    font-size: 20px;
  }
  .news_detail .post_content{
    padding-top: 41px;
  }

  .body_newsDetail .read_more{
    margin-top: 54px;
    margin-top: 0;
  }
  .read_more.news{
    margin-top: 20px;
  }
  .body_newsDetail .read_more a{
    padding: 19px 20px;
  }
  .body_newsDetail .read_more a p{
    font-size: 18px;
  }
}
@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{

  }

  .news_detail{

  }
  .news_detail .meta{

  }
  .news_detail .category{

  }
  .news_detail .date{

  }
  .news_detail .title{

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

/* フォーム */
.formTbl{
  border: 1px solid #7e7e7e;
  background: #ffffff;
}
.form.formWrap {
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}
.formRow + .formRow{
  border-top: 1px solid #7e7e7e;
}
.formTh {
  padding: 16px 15px 16px 20px;
  background: #e0e2e9;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.formTh label{
  margin: 0;
}
.d-inline-block.requiredText {
  font-size: 13px;
  padding: 2px 12px;
  margin-top: 3px;
  float: right;
  font-weight: 500;
  letter-spacing: 0.05em;
  background: #b80000;
  color: #ffffff;
}
.d-inline-block.requiredText.nini{
  background: #fff;
  border: 1px solid #b80000;
  color: #b80000;
}
.formTd {
  font-size: 15px;
  padding: 10px 16px;
}
.formTd input[type="text"],
.formTd input[type="tel"],
.formTd input[type="email"]{
  max-width: 461px;
  height: 39px;
  width: 100%;
  font-size: 15px;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
  letter-spacing: 0.16em;
}
.formTd select{
  border-radius: 0;
}
.formTd input[name="zip1"]{
  max-width: 120px;
}
.formTd input[name="zip2"]{
  max-width: 150px;
}
.formTd select[name="pref"]{
  max-width: 225px;
  width: 100%;
  font-size: 16px;
  padding: 7px 10px;
  border: 1px solid #d6d8d8;
}
.formTd input[name="city"]{
  max-width: 425px;
}
.formTd .addArea + .addArea{
  margin-top: 8px;
}
.formTd .addArea .labelText02{
  width: 75px;
}
.formTd textarea{
  width: 100%;
  height: 280px;
  font-size: 15px;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
  letter-spacing: 0.16em;
}
.formWrap .text-center{
  padding-top: 59px;
}
.formWrap input[name="privacy"]{
  margin-right: 7px;
}
.formWrap .privacyLabel{
  font-size: 17px;
  font-weight: 500;
  display: inline;
}
.formWrap .privacyLabel a{
  color: #002f60;
}
.formBtn.formSend {
  text-align: center;
  display: block;
  width: 100%;
  max-width: 410px;
  background: #14065e;
  color: #fff;
  border-radius: 24px;
  font-size: 17px;
  font-weight: 500;
  margin: 30px auto 0;
  padding: 11px 0;
  border: 1px solid transparent;
  transition: all .2s;
  cursor: pointer;
}
.formBtn.formSend:hover{
  background: #fff;
  border: 1px solid #14065e;
  color: #14065e;
}
.formWrap label {
  display: inline-block;
  margin-bottom: 0;
}
.radioArea{
  padding: 0;
}
.radioArea .d-inline-block .label{
  margin-left: 5px;
  letter-spacing: 0;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 2em;
}
.radioArea .d-inline-block{
  margin-right: 25px;
}
.radioArea .d-inline-block:last-child{
  margin-right: 0;
}
label.label.zipcode_i {
  line-height: 1.8;
  padding: 5px;
  background: #cccccc;
  margin: 0;
  display: inline-block;
  border: 1px solid #d6d8d8;
  border-right: 0;
  vertical-align: top;
}

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

  .thanks_text{
    text-align: center;
  }
}


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

.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 {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0;
  margin-bottom: 52px;
  margin-left: 0;
  border-bottom: 5px solid #080056;
  position: relative;
  padding-bottom: 26px;
}
.contact_tt.privacy:after{
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: var(--main-color);
  position: absolute;
  left: 0;
  bottom: 5px;
}
.contact_tt.privacy br{
  display: none;
}
.formWrap .d-inline{
  display: inline-block!important;
}
.formWrap .d-inline-block {
  vertical-align: middle;
}


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


  .privacy_ttl{
    font-size: 18px;
  }

}

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

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

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

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



  .contact_info_bg {
    padding: 18px 10px;
  }

  .privacy_ttl {
    font-size: 18px;
    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;
    margin-top: 30px;
  }
}


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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}

.home_sec1_tt{
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 20px;
}
@media (max-width:374px){

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

}
@media (max-width:767px){
  .sec1_wrap{
    padding-top: 0;
  }

  .mv_inner{
    height: 14svh; 
  }
  
  .section.en .content_desc{
    text-align: left;
  }
}
@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{

  }

  .home_sec1_tt{
    font-size: 24px;
    margin-bottom: 30px;
  }
}
@media (min-width:1024px){


}
@media (min-width:1200px){
  .home_sec1_tt{
    font-size: 28px;
  }

}
