@charset "UTF-8";

:root {
  --main-color: #be9d5d;
  --sub-color: #d8cbb3;
  --bg1-color: #fbf7f0;
  
  /* 画面端までの余白 */
  --margin-for-device-side: -15px;
}
#root{
  overflow: hidden;
}

/* 基本フォント: ゴシック */
body{
  font-family:  'Noto Sans JP', "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #555555;
  
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}



@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){
  :root {
    /*--margin-for-device-side: calc(555px - 50vw);*/
    --margin-for-device-side-w: calc(625px - 50vw);
  }
}
@media (min-width:1450px){
  :root {
    /*--margin-for-device-side: calc(555px - 50vw);*/
    --margin-for-device-side-w: calc(685px - 50vw);
  }
}
@media (min-width:1700px){
  :root {
    --margin-for-device-side-w: calc(800px - 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{
  color: var(--main-color);
  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;
}
.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: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{
  
}
.hdr1{
  display: flex;
  /*flex-wrap: wrap;*/
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px;
  background: #FFF;
}

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

/* メニュー全般 */
.hdr_menu{
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* TELボタン */
.hdr_tel{
  
}
.hdr_tel_txt1{
  display: flex;
  font-size: 20px;
  font-weight: 700;
  font-family: "Outfit", 'Noto Sans JP', sans-serif;
  line-height: 1;
  white-space: nowrap;
}
.hdr_tel_txt1:before{
  content: "\f095";
  font-size: 1.2em;
  font-family: "FontAwesome";
  color: var(--main-color);
  /*margin-top: -3px;*/
  margin-right: 12px;
}
.hdr_tel_txt2{
  font-size: 15px;
  font-weight: 500;
}

.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: 25px;
}
.hdr_contact a{
  background: var(--main-color);
  color: #FFF;
  width: 185px;
  padding: 12px 5px;
  border-radius: 25px;
  border: 1px solid var(--main-color);
  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{
  opacity: 1;
  background: #FFF;
  color: var(--main-color);
}

/* 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;
  }
  
  /* SNSボタン */
  .hdr_menu > .hdr_sns{
    display: none;
  }
  .hdr_sns a img{
    height: 30px;
  }
  .hdr_tel{
    display: none;
  }
  
  
}
@media (min-width:768px){
  
  /* ヘッダー固定 */
  body{
    /* ヘッダーの高さに応じて */
    padding-top: 86px;
  }
  .header{
    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    right: 0;
  }
  
  .hdr1{
    padding: 10px 15px;
  }
  
  /* ロゴ */
  .hdr_logo img{
    width: 150px;
  }
  
  /* ヘッダースリム */
  .header.slim{
    
  }
  
  /* TELボタン */
  .hdr_tel{
    
  }
  .hdr_tel_txt1{
    font-size: 22px;
  }
  .hdr_tel_link p:before{
    margin-right: 6px;
  }
  .hdr_tel_txt2{
    font-size: 12px;
  }
  
  
}
@media (min-width:1024px){
  
  /* ロゴ */
  .hdr_logo img{
    width: 150px;
  }

  /* ヘッダースリム */
  .header.slim{
    
  }
  
  .hdr_sns a{
    width: 40px;
  }
  
  /* TELボタン */
  .hdr_tel{
    margin-left: 55px;
  }
  .hdr_tel_txt1{
    font-size: 30px;
  }
  .hdr_tel_txt2{
    font-size: 15px;
    font-weight: 500;
  }
  
}
@media (min-width:1200px){

  /* ロゴ */
  .hdr_logo{

  }
  .hdr_logo img{
    width: 150px;
  }
  
  /* ヘッダースリム */
  .header.slim{
    
  }
  
  /* TELボタン */
  .hdr_tel{
    margin-left: 20px;
  }
  .hdr_tel_txt1{
    font-size: 22px;
  }
  .hdr_tel_txt2{
    font-size: 10px;
  }
  
  /* SNSボタン */
  .hdr_sns{
    margin-left: 10px;
  }
  .hdr_sns a{
    width: 25px;
  }
  
  /* お問い合わせボタン */
  .hdr_contact{
    margin-left: 10px;
  }
  .hdr_contact a{
    width: 170px;
    padding: 10px 5px;
    font-size: 15px;
  }
  
}
@media (min-width:1470px){
  .hdr1{
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width:1536px){
  
}
@media (min-width:1720px){
  
  .hdr_logo img{
    width: 235px;
  }
  
  /* TELボタン */
  .hdr_tel{
    margin-left: 55px;
  }
  .hdr_tel_txt1{
    font-size: 30px;
  }
  .hdr_tel_txt2{
    font-size: 15px;
  }
  
  /* SNSボタン */
  .hdr_sns{
    margin-left: 20px;
  }
  .hdr_sns a{
    width: 40px;
  }
  
  /* お問い合わせボタン */
  .hdr_contact{
    margin-left: 25px;
  }
  .hdr_contact a{
    width: 185px;
    padding: 12px 5px;
    font-size: 16px;
  }
  
}


/*******************************
*　メインビジュアル
********************************/
/* MV */
.mv{
  position: relative;
  z-index: 1;
}
.mv_img{
  position: relative;
  z-index: 1;
}
.mv_img.img_fit:before{
  padding-top: 500px;
}
.mv_img:after{
  content: "";
  background: rgba(0,0,0,0.2);
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}

.gjs-dashed .mv_img{
  border: 10px solid #CCC;
}

/* MVテキスト */
.mv_box{
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.mv_box_inner{
  /*display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;*/
}
.mv_catch{
  
}
.mv_catch_txt1{
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.075em;
  line-height: 1.4166;
  color: #FFF;
  /*margin-left: -0.588em;*/
  margin-bottom: 30px;
}
.mv_catch_txt1 strong,
.mv_catch_txt1 em{
  display: block;
  font-weight: inherit;
  font-style: normal;
}
.mv_catch_txt2{
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  color: #FFF;
  margin-top: 15px;
  /*margin-left: 38px;*/
}
.mv_catch_msg{
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
  color: #FFF;
  margin-top: 20px;
}
.mv_catch_msg2{
  font-size: 42px;
  font-weight: 900;
  letter-spacing: 0.075em;
  line-height: 1.4166;
  color: #FFF;
  margin-top: 0;
  margin-bottom: 50px;
}

.mv_box .read_more{
  
}

/* スライダーの場合 */
.mv_slider{
  
}
.mv_slider_item{
  position: relative;
  z-index: 1;
}

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

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

  
  /* MVテキスト */
  .mv_box{
  }
  .mv_catch{

  }
  .mv_catch_txt1{
    font-size: 24px;
  }
  .mv_catch_txt2{
    font-size: 20px;
    margin-top: 15px;
  }
  .mv_catch_msg{
    font-size: 15px;
    line-height: 1.875;
    margin-top: 20px;
  }

  .mv_box .read_more{

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

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

  /* MVテキスト */
  
}
@media (min-width:1200px){

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

  /* MVテキスト */
  .mv_catch_txt1{
    font-size: 32px;
  }
  
}

@media (min-width:1470px){
  
  /* MV */
  .mv{
  }
  .mv_img{
  }
  .mv_img.img_fit:before{
    padding-top: 700px;
  }
  
  /* MVテキスト */
  .mv_box{
  }
  .mv_catch{

  }
  .mv_catch_txt1{
    font-size: 42px;
    margin-bottom: 50px;
  }
  .mv_catch_txt2{
    font-size: 26px;
    margin-top: 15px;
  }
  .mv_catch_msg{
    font-size: 18px;
    margin-top: 20px;
  }
  .mv_box .read_more{

  }
  
}
@media (min-width:1536px){
  
}
@media (min-width:1720px){
  .mv_img.img_fit:before{
    padding-top: 800px;
  }
}


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

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





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


/* テーブル用 */
.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: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
  border: 1px solid var(--main-color);
  border-radius: 30px;
  background: var(--main-color);
  /*border-radius: 27px;*/
  color: #FFF;
  padding: 16px 60px 16px 20px;
  margin: 5px 5px 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.read_more a p{
  /*letter-spacing: 0;*/
}
.read_more a:after{
  content: "";
  width: 40px;
  aspect-ratio: 1 / 1;
  background-image: url('/system_panel/uploads/images/arr_gl.svg');
  background-color: #FFF;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px auto;
  border-radius: 50%;
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 6px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.read_more a:hover{
  color: #FFF;
  background: var(--main-color);
  opacity: 1;
}
.read_more a:hover:after{
  margin-right: -3px;
}


/* 見出し */
.tt2{
  text-align: center;
  margin-bottom: 30px;
}
.tt2_en{
  font-size: 60px;
  font-size: 52px;
  font-weight: 700;
  font-family: "Outfit", 'Noto Sans JP', sans-serif;
  line-height: 1;
  color: #f9f6f2;
}
.tt2_ja{
  font-size: 18px;
  font-weight: 900;
  line-height: 1.5;
  /*margin-top: -35px;*/
}
* + .tt2_ja{
  margin-top: -1.166em;
}
.tt2_ja.brown{
  color: #830505;
}



/* セクション */
.section{
  padding-top: 50px;
  padding-bottom: 50px;
}
.section.beige{
  background-color: var(--bg1-color);
}

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

}

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

  
@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.sp_center{
    text-align: center !important;
  }
  
}
@media (min-width:768px){
  
  /* セクション */
  .section{
    padding-top: 75px;
    padding-bottom: 75px;
  }
  
  .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: 340px;
    font-size: 16px;
    padding: 19px 20px 20px;
    padding-left: 38px;
    margin: 5px 5px;
  }
  .read_more a:after{
    width: 50px;
    /*right: 18px;*/
  }
  
  /* 見出し */
  .tt2{
    margin-bottom: 30px;
  }
  .tt2_en{
    font-size: 80px;
  }
  .tt2_ja{
    font-size: 20px;
    /*margin-top: -35px;*/
    margin-right: -20px;
  }

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

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

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

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

  /* 文章 */
  .cmn_txt{
    font-size: 18px;
  }

}

@media (min-width:1366px){

  /* コンテナ */
  .container.wide{
    /*max-width: calc(1600px + 100px);*/
    max-width: calc(1250px + 70px);
    padding-left: 35px;
    padding-right: 35px;
  }
  
}
@media (min-width:1450px){
  
  /* セクション */
  .section{
    padding-top: 90px;
    padding-bottom: 90px;
  }
  
  .container.wide{
    max-width: calc(1370px + 80px);
    padding-left: 40px;
    padding-right: 40px;
  }
  
  /* 見出し */
  .tt2{
    margin-bottom: 50px;
  }
  .tt2_en{
    font-size: 120px;
  }
  .tt2_ja{
    font-size: 30px;
    margin-right: -30px;
  }
  * + .tt2_ja{
    margin-top: -35px;
  }
  
  /* 文章 */
  .cmn_txt{
    font-size: 18px;
  }
  
}

@media (min-width:1720px){
  .container.wide{
    max-width: calc(1520px + 100px);
    padding-left: 50px;
    padding-right: 50px;
  }
}


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

}
.pg_home .section.sec1{
  
}
.pg_home .section.sec2{
}
.pg_home .section.sec3{
  
}
.pg_home .section.sec4{
  
}

@media (max-width:767px){
  .pg_home .section.sec1{
    padding-bottom: 0;
  }
  .pg_home .section.sec2{
    padding-bottom: 0;
  }
  .pg_home .section.sec3{
    padding-bottom: 0;
  }
  .pg_home .section.sec4{

  }
  
  .pg_home .section.sec2 .page_hdr_wrap .page_hdr_box1{
    margin-top: 30px;
  }
}
@media (min-width:768px){

  .pg_home .section.sec1{
  }
  .pg_home .section.sec2{
    
  }
  .pg_home .section.sec3{
    
  }
  .pg_home .section.sec4{
    
  }
  .pg_home .section.sec2 .tt2_en{
    white-space: nowrap;
  }

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

  .pg_home .section.sec2 .page_hdr_box2{
    width: calc(100% - 59.21% + 60px);
    padding-top: 0;
  }
  .pg_home .page_hdr_box2 .tt2{
    margin-top: 20px;
    margin-bottom: 30px;
  }
  .pg_home .section.sec2 .page_hdr_box1:before{
    top: -16.33%;
  }
  
  .pg_home .page_hdr_wrap.img_left .page_hdr_box1_img:after{
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 55%, rgba(255, 255, 255, 1) 100%, rgba(255, 255, 255, 1) 100%, rgba(255, 255, 255, 1) 100%);
  }
  .page_hdr_wrap.img_left .page_hdr_box1_img:after{
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 55%, rgba(255, 255, 255, 1) 100%, rgba(255, 255, 255, 1) 100%, rgba(255, 255, 255, 1) 100%) !important;
  }
  .page_hdr_wrap.img_right .page_hdr_box1_img:after{
    background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 55%, rgba(255, 255, 255, 1) 100%, rgba(255, 255, 255, 1) 100%, rgba(255, 255, 255, 1) 100%) !important;
  }
}
@media (min-width:1200px){
  
  .pg_home .section.sec1{
    padding-top: 165px;
    padding-bottom: 155px;
  }
  
  .pg_home .section.sec1 .read_more{
    margin-top: 85px;
  }
  .pg_home .section.sec2 .read_more{
    margin-top: 50px;
  }
  .pg_home .section.sec4 .tt2{
    margin-bottom: 75px;
  }
  .home_service_wrap1 .tt2{
    margin-bottom: 75px;
  }

}



.read_more_s{
  display: flex;
  justify-content: center;
}
.read_more_s.right{
  justify-content: flex-end;
}
.read_more_s.left{
  justify-content: flex-start;
}
.read_more_s_a{
  width: 50px;
  aspect-ratio: 1 / 1;
  background: var(--main-color);
  background-image: url('/system_panel/uploads/images/arr_wh.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px auto;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}
.read_more_s_a:after{
  
}
.read_more_s_a:hover{
  transform: scale(1.1);
  filter: brightness(1.05);
}


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




/* Our Service */
.home_service_wrap1{
  
}
.home_service_wrap2{
  
}
* + .home_service_wrap2{
  margin-top: 50px;
}
.home_service{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.home_service_box1{
  width: 42.76%;
  width: 90%;
  position: relative;
  z-index: 2;
  /*position: absolute;
  z-index: 2;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);*/
  background: #FFF;
  box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.14);
  border-radius: 15px 50px 15px 50px;
  padding: 25px 15px;
}
.home_service_box2{
  /*width: 67.10%;*/
  width: 100%;
  margin-left: auto;
}
.home_service_title{
  font-size: 20px;
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 10px;
}
.home_service_txt{
  
}
.home_service_img{
  border-radius: 15px;
  overflow: hidden;
}
.home_service_img.img_fit:before{
  /*padding-top: 49.020%;*/
  padding-top: 300px;
}


/* Other Service */
.home_other_service{
}
.home_other_service_item{
  width: 100%;
}
.home_other_service_item{
  position: relative;
  z-index: 1;
}
.home_other_service_item_img{
  border-radius: 30px;
  overflow: hidden;
}
.home_other_service_item_img.img_fit:before{
  padding-top: 123.404%;
}
.home_other_service_item_img:after{
  content: "";
  background: rgba(0,0,0,0.25);
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}
.home_other_service_item_box{
  width: 85.1%;
  margin: -170px auto 0;
  position: relative;
  z-index: 2;
  min-height: 234px;
  background: #FFF;
  box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.14);
  border-radius: 15px 50px 15px 50px;
  padding: 25px 15px;
}
.home_other_service_item_title{
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 10px;
}
.home_other_service_item_txt{
  
}
.home_other_service_item .read_more_s{
  margin-top: 0;
}

/* Instagram */
.home_insta{
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.home_insta_box1{
  width: 95%;
  margin: -50px auto 0;
  background-image: url('/system_panel/uploads/images/insta_bg.jpg');
  background-size: cover;
  border-radius: 15px 50px 15px 50px;
  padding: 25px 15px;
  color: #FFF;
  position: relative;
  z-index: 2;
  /*top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);*/
  order: 2;
}
.home_insta_box2{
  width: 100%;
  margin-left: auto;
  position: relative;
  z-index: 1;
  order: 1;
}
.home_insta_title{
  font-size: 18px;
  font-weight: 900;
  line-height: 1.666;
  margin-bottom: 10px;
}
.home_insta_txt{
  
}
.home_insta_link{
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.home_insta_link_a{
  width: 80%;
}
.home_insta_link_a:hover{
  transform: scale(1.02);
}
.home_insta_imgs{
  display: flex;
  flex-wrap: wrap;
}
.home_insta_imgs_item{
  width: 33.33333%;
}
.home_insta_imgs_item.img_fit:before{
  padding-top: 81.967%;
}

@media (max-width:767px){

  .home_service_box1{
    order: 2;
    margin-top: -100px;
    margin-left: auto;
    margin-right: auto;
  }
  .home_service_box2{
    order: 1;
  }
  
  
  .reform_contents1_item_main_child:nth-child(n+2){
    margin-top: 0!important;
  }
}
@media (min-width:768px){

  /* Our Service */
  .home_service_wrap1{

  }
  .home_service_wrap2{

  }
  * + .home_service_wrap2{
    margin-top: 90px;
  }
  .home_service{
  }
  .home_service_box1{
    width: 70%;
    border-radius: 20px 70px 20px 70px;
    padding: 25px 25px;
    
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 0;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  .home_service_box2{
    width: 67.10%;
    margin-left: auto;
  }
  .home_service_title{
    font-size: 24px;
    margin-bottom: 10px;
  }
  .home_service_txt{

  }
  .home_service_img{
    border-radius: 30px;
  }
  .home_service_img.img_fit:before{
    padding-top: 500px;
  }
  
  /* Other Service */
  .home_other_service{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-left: -10px;
    margin-right: -10px;
  }
  .home_other_service_item{
    width: 50%;
    padding: 0 10px;
  }
  .home_other_service_item:nth-child(n+3){
    margin-top: 30px;
  }
  .home_other_service_item_img{
    border-radius: 30px;
  }
  .home_other_service_item_box{
    /*width: 85.1%;*/
    margin: -120px auto 0;
    min-height: 234px;
    border-radius: 20px 50px 20px 50px;
    padding: 20px 20px;
  }
  .home_other_service_item_title{
    font-size: 24px;
    margin-bottom: 10px;
  }
 
  /* Instagram */
  .home_insta{
  }
  .home_insta_box1{
    width: 42.76%;
    width: 65%;
    border-radius: 20px 50px 20px 50px;
    padding: 25px 15px;
    color: #FFF;
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 0;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    margin: 0;
  }
  .home_insta_box2{
    width: 60.197%;
    margin-left: auto;
  }
  .home_insta_title{
    font-size: 24px;
    margin-bottom: 10px;
  }
  .home_insta_txt{

  }
  .home_insta_link{
    justify-content: flex-start;
    margin-top: 20px;
  }
  .home_insta_imgs_item{
    width: 50%;
  }
}
@media (min-width:768px) and (max-width: 1023px){
  
 
  .pg_home .news_list.col4 .webgene-item:nth-child(n+4){
    display: none;
  }
  
}
@media (min-width:1024px){

  
  
  
  /* Other Service */
  .home_other_service{
    margin-left: -15px;
    margin-right: -15px;
  }
  .home_other_service_item{
    width: 33.333%;
    padding: 0 15px;
  }
  .home_other_service_item:nth-child(n+3){
    margin-top: 0;
  }
  .home_other_service_item:nth-child(3n+2){
    margin-top: 50px;
  }
  .home_other_service_item_title{
    font-size: 20px;
  }
  
  
  .home_insta_box1{
    width: 50%;
  }
  .home_insta_imgs_item{
    width: 33.33333%;
  }

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

  /* Our Service */
  .home_service_wrap1{

  }
  .home_service_wrap2{

  }
  * + .home_service_wrap2{
    margin-top: 90px;
  }
  .home_service{
  }
  .home_service_box1{
    width: 42.76%;
    border-radius: 20px 70px 20px 70px;
    padding: 35px 45px;
  }
  .home_service_box2{
    width: 67.10%;
  }
  .home_service_title{
    font-size: 30px;
    margin-bottom: 20px;
  }
  .home_service_txt{

  }
  .home_service_img{
    border-radius: 30px;
  }
  .home_service_img.img_fit:before{
    padding-top: 500px;
  }
  
  .home_service .read_more{
    margin-top: 20px;
  }
  
  
  /* Other Service */
  .home_other_service{
    display: flex;
    flex-wrap: wrap;
    /*margin-left: -20px;*/
    /*margin-right: -20px;*/
  }
  .home_other_service_item{
    width: 33.333%;
    /*padding: 0 20px;*/
  }
  .home_other_service_item:nth-child(3n+2){
    margin-top: 75px;
  }
  .home_other_service_item_img{
    border-radius: 30px;
  }
  .home_other_service_item_box{
    /*width: 85.1%;*/
    margin: -170px auto 0;
    min-height: 234px;
    border-radius: 20px 70px 20px 70px;
    /*padding: 30px 30px;*/
  }
  .home_other_service_item_title{
    font-size: 24px;
  }
  
  /* Instagram */
  .home_insta{
  }
  .home_insta_box1{
    width: 42.76%;
    border-radius: 20px 70px 20px 70px;
    padding: 25px 25px 25px 25px;
  }
  .home_insta_box2{
    width: 60.197%;
    margin-left: auto;
  }
  .home_insta_title{
    font-size: 26px;
    margin-bottom: 15px;
  }
  .home_insta_txt{

  }
  .home_insta_link{
    margin-top: 30px;
  }

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


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

  /* Other Service */
  .home_other_service{
    margin-left: -28px;
    margin-right: -28px;
  }
  .home_other_service_item{
    width: 33.333%;
    padding: 0 28px;
  }
  .home_other_service_item:nth-child(3n+2){
    margin-top: 100px;
  }
  .home_other_service_item_box{
    /*width: 85.1%;*/
    margin: -170px auto 0;
    min-height: 234px;
    border-radius: 20px 70px 20px 70px;
    padding: 30px 30px;
  }
  .home_other_service_item_title{
    font-size: 30px;
  }
  
  /* Instagram */
  .home_insta{
  }
  .home_insta_box1{
    width: 45%;
    border-radius: 20px 70px 20px 70px;
    padding: 25px 42px 40px 62px;
  }
  .home_insta_box2{
    width: 60.197%;
    margin-left: auto;
  }
  .home_insta_title{
    font-size: 30px;
    margin-bottom: 15px;
  }
  .home_insta_txt{

  }
  .home_insta_link{
    margin-top: 50px;
  }
  

}
@media (min-width:1720px){
  
  /* Instagram */
  .home_insta{
  }
  .home_insta_box1{
    width: 42.76%;
  }

}





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


.news_list.col4{
  
}
.news_list.col4 .webgene-item{
  
}
.news_list.col4 .webgene-item{
  
}

.news_list.col4 .webgene-item .img:before{
  padding-top: 63.888%;
}

@media (max-width:767px){

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

  .news_list.col4{
    
  }
  .news_list.col4 .webgene-item{
    width: 33.333%;
  }
  .news_list.col4 .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .news_list.col4 .webgene-item:nth-child(n+4){
    margin-top: 20px;
  }
  
}
@media (min-width:1024px){

  .news_list.col4{
    
  }
  .news_list.col4 .webgene-item{
    width: 25%;
  }
  .news_list.col4 .webgene-item:nth-child(n+4){
    margin-top: 0;
  }
  .news_list.col4 .webgene-item:nth-child(n+5){
    margin-top: 50px;
  }
  

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


}




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

/* セクション設定 */
.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 (max-width:767px){

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

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


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


}







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

/* セクション設定 */
.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 (max-width:767px){

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

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


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


}




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

/* セクション設定 */
.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 (max-width:767px){

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

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


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


}



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


}

.pg_property .section.sec3{
  padding-bottom: 20px;
}
.pg_property .section.sec4{
  padding-top: 0;
}

.cate_btn_item.active a {
    background: #fff;
    color: #be9d5d;
    border: 1px solid #be9d5d;
}
.cate_btn_item.active a:after{
  background-image: url(/system_panel/uploads/images/arr_gl.svg);
}


/* 一文字ずつ表示するアニメーション */
.js-txt-up{
  opacity: 0;
}
.js-txt-up.animeStart{
  opacity: 1;
  animation-delay: 0.5s;
}
.js-txt-up.animeStart ._txt{
  opacity: 1;
  -ms-transform: translateY(0);
  transform: translateY(0);
  transform: translateY(0) skewX(0);
  -webkit-clip-path: inset(0 0 0 0);
  /*clip-path: inset(0 0 0 0);*/
}

.js-txt-up ._txt {
  will-change: transform, opacity;
  display: inline-block;
  font-weight: inherit;
  opacity: 0;
  /*-ms-transform: translateY(80%);*/
  transform: translateY(80%) rotate(30deg);
  transform: translate(-30px, 20px) skewX(-40deg);
  /*-webkit-clip-path: inset(0% 0% 0% 100%);*/
  /*clip-path: inset(0% 0% 0% 100%);*/
  /*transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1), transform 1s cubic-bezier(0.19, 1, 0.22, 1), -webkit-clip-path 1s cubic-bezier(0.19, 1, 0.22, 1);*/
  /*transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1), clip-path 1s cubic-bezier(0.19, 1, 0.22, 1), transform 1s cubic-bezier(0.19, 1, 0.22, 1);*/
  /*transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1), clip-path 1s cubic-bezier(0.19, 1, 0.22, 1), transform 1s cubic-bezier(0.19, 1, 0.22, 1), -webkit-clip-path 1s cubic-bezier(0.19, 1, 0.22, 1);*/
  transition: opacity .5s  cubic-bezier(0, .47, .53, 1),
              transform .5s cubic-bezier(0, .47, .53, 1);
}
:root {
  --js-txt-up-delay-st: 0.3s;    /* 最初のディレイ */
  --js-txt-up-delay-step: 0.08s; /* 1文字ごとの遅延刻み */
}

.js-txt-up ._txt:nth-child(1) {
  transition-delay: var(--js-txt-up-delay-st);
}
.js-txt-up ._txt:nth-child(2) {
  transition-delay: calc(var(--js-txt-up-delay-st) + var(--js-txt-up-delay-step) * 1);
}
.js-txt-up ._txt:nth-child(3) {
  transition-delay: calc(var(--js-txt-up-delay-st) + var(--js-txt-up-delay-step) * 2);
}
.js-txt-up ._txt:nth-child(4) {
  transition-delay: calc(var(--js-txt-up-delay-st) + var(--js-txt-up-delay-step) * 3);
}
.js-txt-up ._txt:nth-child(5) {
  transition-delay: calc(var(--js-txt-up-delay-st) + var(--js-txt-up-delay-step) * 4);
}
.js-txt-up ._txt:nth-child(6) {
  transition-delay: calc(var(--js-txt-up-delay-st) + var(--js-txt-up-delay-step) * 5);
}
.js-txt-up ._txt:nth-child(7) {
  transition-delay: calc(var(--js-txt-up-delay-st) + var(--js-txt-up-delay-step) * 6);
}
.js-txt-up ._txt:nth-child(8) {
  transition-delay: calc(var(--js-txt-up-delay-st) + var(--js-txt-up-delay-step) * 7);
}
.js-txt-up ._txt:nth-child(9) {
  transition-delay: calc(var(--js-txt-up-delay-st) + var(--js-txt-up-delay-step) * 8);
}
.js-txt-up ._txt:nth-child(10) {
  transition-delay: calc(var(--js-txt-up-delay-st) + var(--js-txt-up-delay-step) * 9);
}
.js-txt-up ._txt:nth-child(11) {
  transition-delay: calc(var(--js-txt-up-delay-st) + var(--js-txt-up-delay-step) * 10);
}
.js-txt-up ._txt:nth-child(12) {
  transition-delay: calc(var(--js-txt-up-delay-st) + var(--js-txt-up-delay-step) * 11);
}
.js-txt-up ._txt:nth-child(13) {
  transition-delay: calc(var(--js-txt-up-delay-st) + var(--js-txt-up-delay-step) * 12);
}
.js-txt-up ._txt:nth-child(14) {
  transition-delay: calc(var(--js-txt-up-delay-st) + var(--js-txt-up-delay-step) * 13);
}
.js-txt-up ._txt:nth-child(15) {
  transition-delay: calc(var(--js-txt-up-delay-st) + var(--js-txt-up-delay-step) * 14);
}
.js-txt-up ._txt:nth-child(16) {
  transition-delay: calc(var(--js-txt-up-delay-st) + var(--js-txt-up-delay-step) * 15);
}
.js-txt-up ._txt:nth-child(17) {
  transition-delay: calc(var(--js-txt-up-delay-st) + var(--js-txt-up-delay-step) * 16);
}
.js-txt-up ._txt:nth-child(18) {
  transition-delay: calc(var(--js-txt-up-delay-st) + var(--js-txt-up-delay-step) * 17);
}
.js-txt-up ._txt:nth-child(19) {
  transition-delay: calc(var(--js-txt-up-delay-st) + var(--js-txt-up-delay-step) * 18);
}
.js-txt-up ._txt:nth-child(20) {
  transition-delay: calc(var(--js-txt-up-delay-st) + var(--js-txt-up-delay-step) * 19);
}
.js-txt-up ._txt:nth-child(21) {
  transition-delay: calc(var(--js-txt-up-delay-st) + var(--js-txt-up-delay-step) * 20);
}
.js-txt-up ._txt:nth-child(22) {
  transition-delay: calc(var(--js-txt-up-delay-st) + var(--js-txt-up-delay-step) * 21);
}
.js-txt-up ._txt:nth-child(23) {
  transition-delay: calc(var(--js-txt-up-delay-st) + var(--js-txt-up-delay-step) * 22);
}
.js-txt-up ._txt:nth-child(24) {
  transition-delay: calc(var(--js-txt-up-delay-st) + var(--js-txt-up-delay-step) * 23);
}
.js-txt-up ._txt:nth-child(25) {
  transition-delay: calc(var(--js-txt-up-delay-st) + var(--js-txt-up-delay-step) * 24);
}
.js-txt-up ._txt:nth-child(26) {
  transition-delay: calc(var(--js-txt-up-delay-st) + var(--js-txt-up-delay-step) * 25);
}
.js-txt-up ._txt:nth-child(27) {
  transition-delay: calc(var(--js-txt-up-delay-st) + var(--js-txt-up-delay-step) * 26);
}
.js-txt-up ._txt:nth-child(28) {
  transition-delay: calc(var(--js-txt-up-delay-st) + var(--js-txt-up-delay-step) * 27);
}
.js-txt-up ._txt:nth-child(29) {
  transition-delay: calc(var(--js-txt-up-delay-st) + var(--js-txt-up-delay-step) * 28);
}
.js-txt-up ._txt:nth-child(30) {
  transition-delay: calc(var(--js-txt-up-delay-st) + var(--js-txt-up-delay-step) * 29);
}
.js-txt-up ._txt:nth-child(31) {
  transition-delay: calc(var(--js-txt-up-delay-st) + var(--js-txt-up-delay-step) * 30);
}
.js-txt-up ._txt:nth-child(32) {
  transition-delay: calc(var(--js-txt-up-delay-st) + var(--js-txt-up-delay-step) * 31);
}
.js-txt-up ._txt:nth-child(33) {
  transition-delay: calc(var(--js-txt-up-delay-st) + var(--js-txt-up-delay-step) * 32);
}
.js-txt-up ._txt:nth-child(34) {
  transition-delay: calc(var(--js-txt-up-delay-st) + var(--js-txt-up-delay-step) * 33);
}
.js-txt-up ._txt:nth-child(35) {
  transition-delay: calc(var(--js-txt-up-delay-st) + var(--js-txt-up-delay-step) * 34);
}
.js-txt-up ._txt:nth-child(36) {
  transition-delay: calc(var(--js-txt-up-delay-st) + var(--js-txt-up-delay-step) * 35);
}
.js-txt-up ._txt:nth-child(37) {
  transition-delay: calc(var(--js-txt-up-delay-st) + var(--js-txt-up-delay-step) * 36);
}
.js-txt-up ._txt:nth-child(38) {
  transition-delay: calc(var(--js-txt-up-delay-st) + var(--js-txt-up-delay-step) * 37);
}
.js-txt-up ._txt:nth-child(39) {
  transition-delay: calc(var(--js-txt-up-delay-st) + var(--js-txt-up-delay-step) * 38);
}
.js-txt-up ._txt:nth-child(40) {
  transition-delay: calc(var(--js-txt-up-delay-st) + var(--js-txt-up-delay-step) * 39);
}
.js-txt-up ._txt:nth-child(41) {
  transition-delay: calc(var(--js-txt-up-delay-st) + var(--js-txt-up-delay-step) * 40);
}
.js-txt-up ._txt:nth-child(42) {
  transition-delay: calc(var(--js-txt-up-delay-st) + var(--js-txt-up-delay-step) * 41);
}
.js-txt-up ._txt:nth-child(43) {
  transition-delay: calc(var(--js-txt-up-delay-st) + var(--js-txt-up-delay-step) * 42);
}
.js-txt-up ._txt:nth-child(44) {
  transition-delay: calc(var(--js-txt-up-delay-st) + var(--js-txt-up-delay-step) * 43);
}
.js-txt-up ._txt:nth-child(45) {
  transition-delay: calc(var(--js-txt-up-delay-st) + var(--js-txt-up-delay-step) * 44);
}
.js-txt-up ._txt:nth-child(46) {
  transition-delay: calc(var(--js-txt-up-delay-st) + var(--js-txt-up-delay-step) * 45);
}
.js-txt-up ._txt:nth-child(47) {
  transition-delay: calc(var(--js-txt-up-delay-st) + var(--js-txt-up-delay-step) * 46);
}
.js-txt-up ._txt:nth-child(48) {
  transition-delay: calc(var(--js-txt-up-delay-st) + var(--js-txt-up-delay-step) * 47);
}
.js-txt-up ._txt:nth-child(49) {
  transition-delay: calc(var(--js-txt-up-delay-st) + var(--js-txt-up-delay-step) * 48);
}
.js-txt-up ._txt:nth-child(50) {
  transition-delay: calc(var(--js-txt-up-delay-st) + var(--js-txt-up-delay-step) * 49);
}





.infiniteslide_wrap .clear_txt{
  
}
.infiniteslide_wrap .clear_txt img{
  margin: 0 30px;
}