@charset "UTF-8";

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

  /* カラー(ボタン背景色など) */
  --main-color: #172f57;
  --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: "Marcellus", 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.025em;
  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: 30px;
  padding: 20px 10px;
}
.hdr1{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px;
}

/* ロゴ */
.hdr_logo{

}
.hdr_logo img{
  display: block;
  width: auto;
  height: auto;
  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_logo{
    width: 260px;
    display: block;
  }
  .hdr_contact_btn{
    display: none;
  }
}
@media (min-width:768px){

  /* ヘッダー固定 */
  body{
    /* ヘッダーの高さに応じて */
    padding-top: 96px;
  }
  .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: 0 0 0 30px;
  }

  .hdr1{
    padding: 0 15px 0;
  }

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

  /* ヘッダースリム */
  .header.slim{
    background: rgba(255,255,255,0.8);
  }
  .header.slim .hdr_logo img{
    height: calc(var(--logo-height) * 0.8);
    height: auto;
  }
  .header.slim .hdr_contact_btn{
    padding: 10px;
    font-size: 15px;
  }
  .header.slim .hdr_contact_btn p:before{
    font-size: 20px;
  }

  /* TELボタン */
  .hdr_tel{

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

  .gnav_outer{
    display: flex;
    align-items: center;
  }

  .hdr_contact_btn{
    display: block;
    width: 140px;
    background: #172f57;
    color: #fff;
    border: 1px solid transparent;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    padding: 9px 0 20px;
    margin-left: 32px;
  }
  .hdr_contact_btn:hover{
    background: #C1A73D;
    color: #fff;
    border: 1px solid #C1A73D;
  }
  .hdr_contact_btn p{
    letter-spacing: 0.025em;
  }
  .hdr_contact_btn p:before{
    display: block;
    content: "\f0e0";
    font-size: 28px;
    font-family: 'FontAwesome';
    transition: all .2s;
  }
}
@media (min-width:1024px){

  .header{
    --logo-height: 48px;
    padding-left: 50px;
  }

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

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

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

  }
  .header.slim .hdr_logo img{
  }

}

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

/* MVテキスト */
.mv_txt{
  position: absolute;
  z-index: 2;
  top: 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_slider{

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

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

.mv_inner{
  position: relative; 
  display: flex;
}
.mv_inner:before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #172f57;
  position: absolute;
  top: 0;
  left: 0;
}
.mv_left{
  width: calc(100% - 90%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.mv_schroll{
  color: #fff;
  position: relative;
  font-size: 15px;
  font-weight: 400;
  font-family: "Marcellus", serif;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
.mv_schroll p{
  letter-spacing: 0;
  position: relative;
  display: flex;
  flex-direction: column-reverse;
}
.mv_schroll p:before{
  content: "";
  display: block;
  width: 1px;
  height: 130px;
  background: #fff;
}
.mv_right{
  width: 90%;
  margin-left: auto;
  position: relative;
  padding-bottom: 30px;
}
.mv_img_outer{

}
.mv_img_items{

}
.mv_img_item{

}
.mv_img_item__img:before{
  padding-top: calc(100vh - 56px - 30px - 54px);
  padding-top: calc(100vh - 56px - 30px - 125px - 16px);
}
.mv_img_item__img:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}
.mv_text_box{
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 2;
  padding-left: 3.2%;
  padding-right: 3.2%;
}
.mv_text1{
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
  font-family: var(--font-en);
  line-height: 1;
}
.mv_text2{
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  line-height: 1.6em;
}
.mv_text2 p{
  letter-spacing: 0.025em;
}
.mv_text3{
  font-size: 15px;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 30px;
}
.mv_text3 p{
  /*  display: inline-block;*/
  letter-spacing: 0.025em;
  background: #fff;
  border-left: 5px solid #c1a73d;
  padding: 0px 6px;
}
.mv_text3 p:nth-child(n+2){
  margin-top: 5px;
}
.sp_img{
  text-align: center;
  margin-top: 16px;
}
@media (min-width:768px){

  .mv_inner{

  }
  .mv_inner:before{

  }
  .mv_left{
    width: calc(100% - 95.83%);
  }
  .mv_schroll{

  }
  .mv_right{
    width: 95.83%;
    padding-bottom: 80px;
  }
  .mv_img_outer{

  }
  .mv_img_items{

  }
  .mv_img_item{

  }
  .mv_img_item__img:before{
    padding-top: calc(100vh - 80px - 97px);
  }
  .mv_text_box{

  }
  .mv_text1{
    font-size: 24px;
  }
  .mv_text2{
    font-size: 40px;
  }
  .mv_text2 p{

  }
  .mv_text3{
    font-size: 18px;
  }
  .mv_text3 p{

  }
  
  .mv_text3 p:nth-child(n+2){
  margin-top: 15px;
}
}
@media (min-width:1024px){
  .mv_inner{

  }
  .mv_inner:before{

  }
  .mv_left{

  }
  .mv_schroll{

  }
  .mv_right{

  }
  .mv_img_outer{

  }
  .mv_img_items{

  }
  .mv_img_item{

  }
  .mv_img_item__img:before{
    padding-top: 500px;
  }
  .mv_text_box{

  }
  .mv_text1{

  }
  .mv_text2{
    font-size: 50px;
  }
  .mv_text2 p{

  }
  .mv_text3{
    font-size: 20px;
  }
  .mv_text3 p{

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

  }
  .mv_inner:before{

  }
  .mv_left{

  }
  .mv_schroll{

  }
  .mv_right{

  }
  .mv_img_outer{

  }
  .mv_img_items{

  }
  .mv_img_item{

  }
  .mv_img_item__img:before{
    padding-top: 670px;;
    padding-top: calc(100vh - 97px - 80px);
  }
  .mv_text_box{
    padding-top: 136px;
  }
  .mv_text1{

  }
  .mv_text2{

  }
  .mv_text2 p{

  }
  .mv_text3{

  }
  .mv_text3 p{

  }
}
@media (min-width:1366px){
  
}
@media (min-width:1470px){
    .mv_text_box{
       top: 40%;
    padding-top: 30px;
  }
}
@media (min-width:1536px){
    .mv_text_box{
       top: 42%;
    padding-top: 0;
  }
}
@media (min-width:1720px){
    .mv_text_box{
      top: 50%;
    padding-top: 136px;
  }
}

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

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

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

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


@media (min-width:768px){

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

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


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

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

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

}


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

.pg_header_title{
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 0;
  right: 0;
  text-align: center;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.pg_header_title_txt{
  font-size: 32px;
  font-weight: 700;
  color: #FFF;
}




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

  .pg_header_title_txt{

  }

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

  .pg_header_title_txt{

  }

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

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

  .pg_header_title_txt{

  }

}



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

.footer{
  margin-top: 50px;
}

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

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

}
.ftr1_box2{

}

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


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

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

.ftr_addr em{
  font-style: normal;
}
.ftr_copy{
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  border-top: 1px solid #000000;
  padding: 15px;
  margin-top: 50px;
}

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


.ftr_contact_wrap{
  background: var(--main-color);
  margin-top: 80px;
  padding-bottom: 40px;
}
.ftr_contact_box{

}
.ftr_contact_box .cover_tt{
  padding: 63px 0 0;
}
.ftr_contact_box .cover_tt_ja{

}
.ftr_contact_box .cover_tt_ja p{
  letter-spacing: 0.025em;
}
.ftr_contact_box .cover_tt_en{

}
.ftr_contact_box .content_desc.center{
  color: #fff;
}
.ftr_contact_box .content_desc.center p{
  letter-spacing: 0.025em;
}
.ftr_contact_inner{
  background: #fff;
  margin-top: 28px;
  padding-top: 21px;
  padding-inline: 20px;
  position: relative;
  padding-bottom: 89px;
}
.ftr_contact_tt{
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.025em;
  border-bottom: 1px solid #000;
  padding-bottom: 16px;
}
.ftr_contact_links{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
}
.link_num{
  max-width: 380px;
  width: 100%;
  font-size: 32px;
  font-weight: 400;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
}
.link_num p{
  letter-spacing: 0;
}
.link_num strong{
  font-size: 16px;
  font-weight: 400;
}
.link_1{
  font-size: 16px;
  font-weight: 500;
  display: block;
  max-width: 380px;
  width: 100%;
  border: 1px solid transparent;
  border-radius: 0;
  background: var(--main-color);
  text-align: center;
  color: #fff;
  padding: 12px 0px;
  margin-top: 30px;
}
.link_1 p:before {
  content: "\f0e0";
  font-family: "fontAwesome";
  margin-right: 20px;
  font-size: 22px;
}
.link_1:hover{
  background: #C1A73D;
  color: #fff;
}
.ftr_contact_txt{
  width: 100%;
  text-align: center;
  background: #ce4747;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.025em;
  padding: 10px 0;
  position: absolute;
  bottom: 0;
  left: 0;
}


.ftr_1{
  background: #fff;
  padding-top: 55px;
}
.ftr_1_box{
  display: flex;
  flex-wrap: wrap;
}
.ftr_1_box1{
  width: 100%;
}
.ftr_logo{

}
.ftr_add{
  margin-top: 25px;
}
.ftr_add_txt{
  font-size: 16px;
  font-weight: 500;
  line-height: 2.25em;
  letter-spacing: 0.025em;
}
.ftr_add_items{

}
.ftr_add_item{
  display: flex;
  align-items: center;
}
.ftr_add_left{
  position: relative;
  padding-right: 9px;
  margin-right: 19px;
}
.ftr_add_left:after{
  content: "";
  display: block;
  width: 1px;
  height: 18px;
  background: #000;
  position: absolute;
  top: 50%;
  right:0;
  transform: translateY(-50%);
}
.ftr_1_box2{
  width: 100%;
}
.ftr_links{

}
.ftr_link{

}
.link_num:hover,
.ftr_add_txt a:hover,
.ftr_link:hover{
  color: var(--main-color); 
}

.ftr_add_txt.just{
  width: 45px;
}
.ftr_add_txt.just2{
  width: 80px;
}
@media (min-width:375px){

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

  body{
    padding-bottom: 56px;
  }

  .mv.kasou .mv_img_item__img:before{
    padding-top: 170px;
  }
  .mv.kasou .mv_schroll p:before{
    height: 80px;
  }
  .mv_schroll{
    font-size: 13px;
  }

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

  .ftr_1_box1{
    text-align: center;
  }
  .ftr_1_box2{
    display: none;
  }
  .ftr_add_items{
    width: 85%;
    margin-inline: auto;
  }
  .ftr_logo{
    display: block;
    width: 200px;
    margin-inline:auto;
  }

  .ftr_add_item{
    width: 294px;
    margin-inline: auto;
  }
  
  
  /*スマホ用バナー*/
  .ftr_bnr {
    text-align: center;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  transform: translateY(100%); /* 初期は隠す */
  transition: transform 0.4s ease; /* なめらか */
  z-index: 9999;
}

.ftr_bnr.is-show {
  transform: translateY(-54px); /* 表示 */
}
}

@media (min-width:768px){

  .footer{
    margin-top: 100px;
  }

  .ftr_contact_wrap{
    margin-top: 100px;
    padding-bottom: 85px;
  }
  .ftr_contact_box{

  }
  .ftr_contact_box .cover_tt{

  }
  .ftr_contact_box .cover_tt_ja{

  }
  .ftr_contact_box .cover_tt_en{

  }
  .ftr_contact_box .content_desc.center{

  }
  .ftr_contact_inner{
    padding-inline: 30px;
    padding-bottom: 75px;
  }
  .ftr_contact_tt{
    font-size: 30px;
    padding-bottom: 25px;
  }
  .ftr_contact_links{
    flex-wrap: nowrap;
    align-items: center;
  }
  .link_num{
    font-size: 30px;
  }
  .link_num strong{
    font-size: 24px;
  }
  .link_1{
    font-size: 15px;
    margin-top: 0;
  }
  .ftr_contact_txt{
    font-size: 18px;
  }

  .ftr_1{

  }
  .ftr_1_box{
    justify-content: space-between;
    align-items: flex-start;
  }
  .ftr_1_box1{
    width: 48.23%;
  }
  .ftr_logo{

  }
  .ftr_add{

  }
  .ftr_add_txt{

  }
  .ftr_add_items{

  }
  .ftr_add_item{

  }
  .ftr_add_left{

  }
  .ftr_add_left:after{

  }
  .ftr_1_box2{
    width: 50%;
  }
  .ftr_links {
    display: flex;
    flex-wrap: wrap;
    margin-inline: -20px;
    position: relative;
  }
  .ftr_link {
    width: 50%;
    font-size: 16px;
    font-weight: 500;
    padding-bottom: 10px;
    padding-inline: 8px;
  }


  .ftr_link p {
    position: relative;
    display: flex;
    align-items: center;
    padding-bottom: 6px;
    letter-spacing: 0.025em;
  }
  .ftr_link p:before{
    content: "";
    display: block;
    width: 22px;
    aspect-ratio:1;
    background-image: url(/system_panel/uploads/images/arr.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 9px;
  }
  .ftr_link p:after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #000;
    position: absolute;
    left: 0;
    bottom: 0;
  }

  .ftr_copy{
    margin-top: 103px;
  }

  .ftr_bnr{
    width: 250px;
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 2;
  }
  .ftr_bnr img{
    transition: all .2s;
  }
  .ftr_bnr:hover img{
    transform: scale
      (1.02);
  }
  
  .pagetop{
    bottom: 140px;
  }
}
@media (min-width:1024px){
  .footer{
    margin-top: 162px;
  }

  .ftr_contact_wrap{
    margin-top: 160px;
    padding-bottom: 85px;
  }
  .ftr_contact_box{

  }
  .ftr_contact_box .cover_tt{

  }
  .ftr_contact_box .cover_tt_ja{
    font-size: 42px;
  }
  .ftr_contact_box .cover_tt_en{

  }
  .ftr_contact_box .content_desc.center{

  }
  .ftr_contact_inner{
    padding-inline: 58px;
  }
  .ftr_contact_tt{
    font-size: 30px;
  }
  .ftr_contact_links{

  }
  .link_num{
    font-size: 36px;
  }
  .link_num strong{

  }
  .link_1{
    font-size: 18px;
    position: relative;
    right: -21px;
  }
  .ftr_contact_txt{

  }

  .ftr_1_box1{
    width: 36.51%;
  }
  .ftr_1_box2{
    width: 34.53%;
  }

  .ftr_link p:after {
    width: 90%;
    left: 0;
    bottom: 0;
  }
}
@media (min-width:1200px){
  .ftr_contact_box .cover_tt_ja{
    font-size: 48px;
  }

  .ftr_1_box2{
    width: 34.53%;
    display: flex;
    flex-wrap: wrap;
    padding-top: 23px;
  }
  .ftr_links {
    position: relative;
  }
  .ftr_links:after{
    content: "";
    display: block;
    width: 1px;
    height: 125px;
    border-right: 1px dashed #b3b3b3;
    position: absolute;
    top: 5px;
    ;
    right: 0;
    /*  transform: translateY(-50%) translateX(-50%);*/
  }
  .ftr_links:last-child:after{
    display: none;
  }
  .ftr_link{
    padding-inline: 20px;
    margin-bottom: 0;
  }
  .ftr_link:nth-child(n+3){
    margin-top: 8px;
  }
  .ftr_link p:after {
    width: 100%;
  }
}

@media (min-width:1536px){
  .ftr_bnr{
    width: auto;
  }

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


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

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

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


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

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

/* ボタン */
.read_more{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
  margin-left: -5px;
  margin-right: -5px;
}
.read_more a{

  min-width: 250px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  border: 1px solid currentColor;
  background: var(--main-color);
  /*border-radius: 27px;*/
  color: #FFF;
  padding: 16px 20px;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
  text-align: left;
}
.read_more a p{
  letter-spacing: 0.025em;
}
.read_more a:after{
  content: "\f105";
  font-family: 'FontAwesome';
  position: absolute;
  z-index: 1;
  width: 20px;
  aspect-ratio:1;
  color: #181818;
  top: 50%;
  right: 18px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
  background: #fff;
  border-radius: 50%;
  text-align: center;
}
.read_more a:hover{
  color: #FFF;
  background: #C1A73D;
}
.read_more a:hover:after{
  margin-right: -5px;
}


/* 見出し */
.tt2{
  text-align: center;
  margin-bottom: 30px;
}
.tt2_en{
  font-size: 20px;
  font-weight: 400;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0;
  color: #000000;
}
.wh .tt2_en{
  color: #fff;
}
.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: 50px;
  padding-bottom: 50px;
}
.section.sec1{
  padding-top: 0;
}
.section:last-child{
  padding-bottom: 0;
}

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

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

}

.sub_tt{
  font-size: 20px;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  line-height: 1.5em;
}
.sub_tt p{
  letter-spacing: 0.025em;
}

.sub_tt.wh{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.sub_tt.wh p{
  background: #fff;
  padding: 0 0 0 10px;
}
.sub_tt.wh p:nth-child(n+2){
  margin-top: 10px;
}

.content_desc{
  font-size: 16px;
  font-weight: 500;
  line-height: 2.25em;
  text-align: justify;
  margin-top: 20px;
}
.wh .content_desc{
  color: #fff;
}

.content_block p{
  line-height: 1.875em;
  letter-spacing: 0.025em;
}
.content_block:nth-child(n+2){
  margin-top: 30px;
}
@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;
  }

  .tt2_en{
    margin-bottom: 20px;
  }

  .content_desc{
    line-height: 1.875em;
  }
  .content_block{
    line-height: 1.875em;
  }
}
@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: 240px;
    font-size: 16px;
    padding: 16px 20px;
    margin: 5px 5px;
  }
  .read_more a:after{
    content: "\f105";
    right: 14px;
  }

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

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

  .sub_tt{
    font-size: 30px;
  }
}
@media (min-width:1024px){

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

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

  .content_desc.center{
    text-align: center;
  }
}
@media (min-width:1200px){
  .sub_tt{
    font-size: 36px;
  }

}


@media (min-width:1366px){

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

  .sub_tt{
    font-size: 48px;
  }
  .sub_tt.sm{
    font-size: 40px;
  }
}

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



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

}
.pg_home .section.sec1{
  padding-top: 60px;
}
.pg_home .section.sec2{
  position: relative;
}
.pg_home .section.sec2:after{
  content: "";
  display: block;
  width: 2900px;
  aspect-ratio:1920 / 936;
  background-image: url(/system_panel/uploads/images/bn.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.pg_home .section.sec3{
  background: var(--main-color);
}
.pg_home .section.sec4{
  background: #f5f5f5;
}
.pg_home .section.sec5{

}
.pg_home .section.sec6{

}
.pg_home .section.sec7{

}
.pg_home .section.sec8{

}

@media (max-width:767px){

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

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

    padding-bottom: 30px;
  }
  .pg_home .section.sec2:after{
    content: "";
    display: block;
    width: 2800px;
  }
  .pg_home .section.sec3{
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .pg_home .section.sec4{
    padding-top: 100px;
  }
  .pg_home .section.sec5{

  }
  .pg_home .section.sec6{

  }
  .pg_home .section.sec7{

  }
  .pg_home .section.sec8{

  }

}
@media (min-width:1024px){
  .pg_home .section.sec2:after{
    content: "";
    display: block;
    width: 2700px;
  }

}
@media (min-width:1200px){
  .pg_home .section.sec1{
    padding-top: 120px;
  }
  .pg_home .section.sec2{
    padding-top: 140px;
    padding-bottom: 40px;
  }
  .pg_home .section.sec2:after{
    content: "";
    display: block;
    width: 1920px;
  }
  .pg_home .section.sec3{
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .pg_home .section.sec4{
    padding-top: 120px;
  }
  .pg_home .section.sec5{

  }
  .pg_home .section.sec6{

  }
  .pg_home .section.sec7{

  }
  .pg_home .section.sec8{

  }

}
@media (min-width:1470px){
  .pg_home .section.sec2{
    padding-top: 140px;
    padding-bottom: 50px;
  }

}
@media (min-width:1720px){
  .pg_home .section.sec2{
    padding-top: 140px;
    padding-bottom: 154px;
  }

}

/*main*/
/*sec1*/
.flowing_letters {
  font-size: clamp(3.125rem, 15.63vw, 18.75rem);
  font-weight: 400;
  line-height: 1;
  font-family: "Marcellus", serif;
  color: #eef0f6;
}
.home_sec1_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: -40px;
}
.home_sec1_box1{
  width: 100%;
  position: relative;
  z-index: 1;
  order: 2;
  margin-top: 20px;
}
.home_sec1_box1_img:before{
  padding-top: 92.3%;
}
.home_sec1_box2{
  width: 100%;
  position: relative;
  z-index: 1;
  order: 1;
}
.home_sec1_box2 .tt2_en{

}
.home_sec1_box2_tt{
  font-size: 36px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #172f57;
  margin-top: 20px;
}
.home_sec1_box2_tt p{
  letter-spacing: 0.025em;
}
.home_sec1_box2 .sub_tt{

}
.home_sec1_box2 .content_desc{

}
.home_sec1_box2 .content_desc p{
  letter-spacing: 0.025em;
}

/*トラブル*/
.home_sec1_trouble{
  margin-top:50px;
}
.home_sec1_trouble_box{
  background: #172f57;
  padding: 16px;
}
.cover_tt{
  position: relative;
  padding: 30px 0;
}
.cover_tt_ja{
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.025em;
  color: #fff;
  position: relative;
  z-index: 1;
}
.cover_tt_en{
  font-size: clamp(3.75rem, 2rem + 8.75vw, 12.5rem);
  font-weight: 400;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0;
  color: rgba(255,255,255,0.05);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  pointer-events: none;
}
.home_sec1_trouble_items{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.home_sec1_trouble_item{
  width: 100%;
}
.home_sec1_trouble_item:nth-child(n+2){
  margin-top: 5px;
}
.home_sec1_trouble_item_inner{
  background: #fff;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  position: relative;
  padding: 32px 0;
  overflow: hidden;
}
.home_sec1_trouble_item_inner:after{
  content: "";
  display: block;
  width: 172px;
  aspect-ratio:172 / 116;
  background-image: url(/system_panel/uploads/images/check.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
.home_sec1_trouble_item_inner p{
  letter-spacing: 0.025em;
  position: relative;
  z-index: 1;
}

/*sec2*/
.home_sec2_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_sec2_box1{
  width: 100%;
}
.home_sec2_box1 .sub_tt{

}
.bg_ye_txt{
  font-size: 17px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  margin-top: 20px;
}
.bg_ye_txt p{
  display: inline-block;
  letter-spacing: 0.025em;
  background: #c1a73d;
  color: #fff;
  padding: 8px 10px;
}
.home_sec4_wrap .bg_ye_txt p + p{
  margin-top: 5px;
}
.content_desc.sm{
  font-weight: 500;
}

.content_desc.sm p{

}
.content_perse_items{
  margin-top: 16px;
}
.content_perse_item{
  display: block;
  background: #fff;
  border: 1px solid #172f57;
  text-align: center;
  padding: 16px 58px;
  font-size: 16px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 6px;
}
.home_sec2_box1 .content_desc{
  margin-top: 13px;
}
.home_sec2_box2{
  width: 100%;
}
.home_sec2_box2_img{
text-align: center;
}

/*sec3*/
.home_sec1_wrap.home_sec3_wrap{
  margin-top: 0;
}
.home_sec3_wrap .home_sec1_box1{

}
.home_sec3_wrap .home_sec1_box1_img:before{
  padding-top: 66.666%;
}
.home_sec3_wrap .home_sec1_box2{

}

.home_sec3_items{
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}
.home_sec3_item{
  width: 100%;
}
.home_sec3_item:nth-child(n+2){
  margin-top: 10px;
}
.home_sec3_item_inner{
  background: #fff;
  position: relative;
  padding: 33px 16px;
}
.home_sec3_item_num{
  font-size: 40px;
  font-weight: 400;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0;
  color: #c1a73d;
  position: absolute;
  top: 0;
  left: 0;
}
.home_sec3_item_img{
  text-align: center;
  position: relative;
  padding-top: 10px;
  margin-bottom: 20px;
}
.home_sec3_item_tt{
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.025em;
}
.home_sec3_item_tt:after{
  content: "";
  display: block;
  width: 100px;;
  height: 2px;
  background: #172f57;
  margin: 23px auto 0;
}
.home_sec3_item .content_desc{

}


/*sec4*/
.home_sec1_wrap.home_sec4_wrap{
  margin-top: 0;
}
.home_sec4_wrap .home_sec1_box1{

}
.home_sec4_wrap .home_sec1_box1_img:before{
  padding-top: 66.66%;
}
.home_sec4_wrap .home_sec1_box1_inner{

}
.home_sec4_wrap .home_sec1_box2{

}


/*sec5*/
.home_sec5_head{
  padding-bottom: 40px;
}
.home_sec5_head_box1{
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
}
.home_sec5_head_box1_en{
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
  font-family: var(--font-en);
  letter-spacing: 0;
  color: #113673;
  margin-right: 31px;
}
.home_sec5_head_box1_ja{
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.025em;
}
.home_sec5_head_box2{

}
.home_sec5_head_box2 .read_more{

}
.news_list{

}
.home_sec5_wrap .news_list .webgene-item .img.img_fit:before{
  padding-top: 75%;
}
.home_sec5_wrap .news_list .webgene-item .title{
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 2em;
}
.news_list .webgene-item .box1{
  width: 100%;
}
.news_list .webgene-item .box2{
  width: 100%;
}

.home_sec5_wrap .news_list .webgene-item:last-child a{
  border-bottom: 1px solid #000;
}
@media (max-width:374px){

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

}
@media (max-width:767px){
  .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:after{
    display: none;
  }
}
@media (min-width:768px){
  /*sec1*/
  .home_sec1_wrap{
    margin-top: -120px;
  }
  .home_sec1_box1{
    margin-top: 30px;
  }
  .home_sec1_box1_img:before{

  }
  .home_sec1_box2{

  }
  .home_sec1_box2 .tt2_en{

  }
  .home_sec1_box2_tt{
    margin-top: 46px;
  }
  .home_sec1_box2 .sub_tt{
    margin-top: 11px;
  }
  .home_sec1_box2 .content_desc{
    margin-top: 35px;
  }

  /*トラブル*/
  .home_sec1_trouble{
    margin-top: 100px;
  }
  .home_sec1_trouble_box{
    padding: 40px 20px 52px;
  }
  .cover_tt{
    padding: 22px 0 51px;
  }
  .cover_tt_ja{
    font-size: 30px;
  }
  .cover_tt_en{

  }
  .home_sec1_trouble_items{
    margin-inline:-2.5px;
  }
  .home_sec1_trouble_item{
    width: 50%;
    padding-inline:2.5px;
  }
  .home_sec1_trouble_item:nth-child(n+2){
    margin-top: 0;
  }
  .home_sec1_trouble_item:nth-child(n+3){
    margin-top: 5px;
  }
  .home_sec1_trouble_item_inner{
    font-size: 18px;
  }
  .home_sec1_trouble_item_inner p{

  }

  /*sec2*/
  .home_sec2_wrap{

  }
  .home_sec2_box1{

  }
  .home_sec2_box1 .sub_tt{

  }
  .bg_ye_txt{
    font-size: 20px;
  }
  .bg_ye_txt p{
    padding: 8px 20px;
  }

  .content_desc.sm{

  }
  .content_perse_items{

  }
  .content_perse_item{
    display: inline-block;
  }
  .home_sec2_box1 .content_desc{

  }
  .home_sec2_box1 .content_desc.sm{
    margin-top: 46px;
  }
  .home_sec2_box2{

  }
  .home_sec2_box2_img{

  }


  /*sec3*/
  .home_sec1_wrap.home_sec3_wrap{

  }
  .home_sec3_wrap .home_sec1_box1{

  }
  .home_sec3_wrap .home_sec1_box1_img:before{

  }
  .home_sec3_wrap .home_sec1_box2{

  }
  .home_sec3_wrap .home_sec1_box2 .sub_tt{
    margin-top: 55px;
  }
  .home_sec3_wrap .home_sec1_box2 .content_desc{
    margin-top: 46px;
    padding-left: 0;
  }

  .home_sec3_items{
    margin-inline:-5px;
    margin-top: 75px;
  }
  .home_sec3_item{
    width: 50%;
    padding-inline:5px;
  }
  .home_sec3_item:nth-child(n+2){
    margin-top: 0;
  }
  .home_sec3_item:nth-child(n+3){
    margin-top: 10px;;
  }
  .home_sec3_item_inner{
    height: 100%;
    padding: 33px 36px;
  }
  .home_sec3_item_num{
    font-size: 60px;
  }
  .home_sec3_item_img{

  }
  .home_sec3_item_tt{
    font-size: 20px;
  }
  .home_sec3_item .content_desc{

  }

  /*sec4*/
  .home_sec1_wrap.home_sec4_wrap{

  }
  .home_sec4_wrap .home_sec1_box1{

  }
  .home_sec4_wrap .home_sec1_box1_inner{

  }
  .home_sec4_wrap .home_sec1_box2{

  }
  .home_sec4_wrap .sub_tt{
    margin-top: 40px;
  }

  .home_sec4_wrap .read_more{
    margin-top: 22px;
  }

  /*sec5*/
  .home_sec5_head{
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 50px;
  }
  .home_sec5_head_box1{

  }
  .home_sec5_head_box1_en{
    font-size: 60px;
  }
  .home_sec5_head_box1_ja{
    font-size: 20px;
  }
  .home_sec5_head_box2{

  }
  .home_sec5_head_box2 .read_more{

  }
  .news_list{

  }
  .news_list .webgene-blog{

  }
  .news_list .webgene-item .inner{
    padding: 40px 20px 39px;
  }
  .news_list .webgene-item .box1{
    width: 10.81%;
  }
  .news_list .webgene-item .box2{
    width:84.45%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .home_sec5_wrap .news_list .webgene-item .box2{
    width: 81.45%;
    justify-content: space-between;
  }
  .home_sec5_wrap .news_list .webgene-item .meta{
        width: 21.2%;
        padding-left: 30px;
  }
  .home_sec5_wrap .news_list .webgene-item .meta .date{
    font-size: 22px;
  }
  .home_sec5_wrap .news_list .webgene-item .title{
    width: calc(100% - 30.12%);
    padding-right: 20px;
  }
}  
@media (min-width:1024px){
  /*sec1*/
  .home_sec1_wrap{
    margin-top: -160px;
  }

  .home_sec1_trouble_box{
    padding: 40px 50px 52px;
  }

  /*sec5*/
  .home_sec5_head{
    display: flex;
    justify-content: space-between;
  }
  .home_sec5_head_box1{

  }
  .home_sec5_head_box2{

  }
  .home_sec5_wrap .news_list .webgene-item .meta .date{
    font-size: 24px;
  }
  .home_sec5_wrap .news_list .webgene-item .meta{
    padding-inline:0;
    width: 21.2%;
  }
  .home_sec5_wrap .news_list .webgene-item .title{
    font-size: 18px;
    width: calc(100% - 21.12%);
  }
  .home_sec5_wrap .news_list .webgene-item .box2{
    width: 84.45%;
    justify-content: space-between;
    padding-left: 20px;
  }
}
@media (min-width:1200px){
  /*sec1*/
  .home_sec1_wrap{
    margin-top: -120px;
  }
  .home_sec1_box1{
    width: 42.76%;
    order: 1;
    margin-top: 0;
  }
  .home_sec1_box1_img:before{

  }
  .home_sec1_box2{
    width: 53.94%;
    order: 2;
  }
  .home_sec1_box2 .tt2_en{

  }
  .home_sec1_box2_tt{

  }
  .home_sec1_box2 .sub_tt{

  }
  .home_sec1_box2 .content_desc{
    padding-left: 10px;
  }

  /*トラブル*/
  .home_sec1_trouble{

  }
  .home_sec1_trouble_box{

  }
  .cover_tt{

  }
  .cover_tt_ja{
    font-size: 36px;
  }
  .cover_tt_en{

  }
  .home_sec1_trouble_items{

  }
  .home_sec1_trouble_item{
    width: 33.333%;
  }
  .home_sec1_trouble_item:nth-child(n+3){
    margin-top:0;
  }
  .home_sec1_trouble_item:nth-child(n+4){
    margin-top: 5px;
  }
  .home_sec1_trouble_item_inner{
    font-size: 18px;
  }
  .home_sec1_trouble_item_inner p{

  }

  /*sec2*/
  .home_sec2_wrap{

  }
  .home_sec2_box1{
    width: 55.26%;
  }
  .home_sec2_box1 .sub_tt{
    margin-top: 41px;
  }
  .bg_ye_txt{
    font-size: 18px;
  }
  .content_desc.sm{

  }
  .content_perse_items{

  }
  .content_perse_item{
    font-size: 20px;
  }
  .home_sec2_box1 .content_desc{

  }
  .home_sec2_box2{
    width: 42.76%;
  }
  .home_sec2_box2_img{

  }

  /*sec3*/
  .home_sec1_wrap.home_sec3_wrap{

  }
  .home_sec3_wrap .home_sec1_box1{
    width: 39.47%;
  }
  .home_sec3_wrap .home_sec1_box1_img:before{

  }
  .home_sec3_wrap .home_sec1_box2{
    width: 57.23%;
  }

  .home_sec3_items{
    margin-top: 75px;
  }
  .home_sec3_item{
    width: 33.33%;
  }
  .home_sec3_item:nth-child(n+3){
    margin-top: 0;
  }
  .home_sec3_item:nth-child(n+4){
    margin-top: 10px;;
  }
  .home_sec3_item_inner{

  }
  .home_sec3_item_num{
    font-size: 72px;
  }
  .home_sec3_item_img{

  }
  .home_sec3_item_tt{
    font-size: 22px;
  }
  .home_sec3_item .content_desc{

  }

  /*sec4*/
  .home_sec1_wrap.home_sec4_wrap{

  }
  .home_sec4_wrap .home_sec1_box1{
    width: 46.05%;
  }
  .home_sec4_wrap .home_sec1_box1_inner{
    margin-left: var(--margin-for-device-side-w);
  }
  .home_sec4_wrap .home_sec1_box2{
    width: 50.32%;
  }

  /*sec5*/
  .home_sec5_head{

  }
  .home_sec5_head_box1{

  }
  .home_sec5_head_box1_en{
    font-size: 100px;
  }
  .home_sec5_head_box1_ja{
    font-size: 24px;
  }
  .home_sec5_head_box2{

  }
  .home_sec5_head_box2 .read_more{

  }
  .news_list{

  }
  .home_sec5_wrap .news_list .webgene-item .inner{
    padding: 40px 20px 39px;
    justify-content: space-between;
  }
  .home_sec5_wrap .news_list .webgene-item .title{
    font-size: 20px;
    width: 74.3%;
  }

}
@media (min-width:1470px){
  /*sec1*/
  .home_sec1_wrap{
    margin-top: -160px;
  }

  .home_sec1_trouble_item_inner{
    font-size: 24px;
  }

  .home_sec3_item_tt{
    font-size: 30px;
  }

  .home_sec5_wrap .news_list .webgene-item .box2{
    width: calc(100% - 10.81%);
    width: 85.47%;
    padding-left: 0;
  }
  .home_sec5_wrap .news_list .webgene-item .meta{
    width: 27.07%;
  }
  .home_sec5_wrap .news_list .webgene-item .title{
    width: 74.3%;
    padding-left: 63px;
    padding-right: 64px;
  }
  
   .bg_ye_txt{
    font-size: 20px;
  }
}
@media (min-width:1720px){
  .home_sec1_trouble_item_inner{
    font-size: 24px;
  }

  .home_sec5_wrap .news_list .webgene-item .box2{
    width: calc(100% - 10.81%);
    width: 85.47%;
  }
  .home_sec5_wrap .news_list .webgene-item .meta{
    width: 21.34%;
  }
  .home_sec5_wrap .news_list .webgene-item .title{
    width: calc(100% - 20.13% - 50px);
        padding-left: 28px;
    padding-right: 64px;
  }

   .bg_ye_txt{
    font-size: 24px;
  }
}




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

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


}


/* メイン部分 */




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


}
