@charset "UTF-8";

:root {
  --main-color: #346248;
  --sub-color: #c8d2cc;
  --grade-color:linear-gradient(180deg,rgba(15, 76, 41, 1) 0%, rgba(21, 115, 62, 1) 100%);
  --grade-color-rvs:linear-gradient(90deg,rgba(15, 76, 41, 1) 0%, rgba(21, 115, 62, 1) 100%);
}
#root{
  overflow: hidden;
}

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

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  /* 画面端までの余白 */

}

@media (min-width:768px){
  :root {
    --margin-for-device-side: calc(345px - 50vw);
  }
}
@media (min-width:992px){
  :root {
    --margin-for-device-side: calc(465px - 50vw);
  }
}
@media (min-width:1200px){
  :root {
    --margin-for-device-side: calc(555px - 55vw);
  }
}
@media (min-width:1536px){
  :root {
    --margin-for-device-side: calc(668px - 50vw);
  }
}
@media (min-width:1720px){
  :root {
    --margin-for-device-side: 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;*/
  /*color: var(--main-color);*/
}
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:1720px){
  .fw_nobr br{
    display: none !important;
  }
}
@media (min-width:1536px){
  .lg_nobr br{
    display: none !important;
  }
}
@media (min-width:1200px){
  .pc_nobr br{
    display: none !important;
  }
}
@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{
  display: block;
  width: 150px;
}

/* メニュー全般 */
.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){
  body{
    padding-top: 40px;
  }

  .hdr1 {
    justify-content: center;
  }

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

  .hdr_logo{
    display: block;
    width: 50px;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    filter: drop-shadow(0px 0px 4px #FFF);
  }
  .hdr_contact_btn{
    display: none;

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

  /* ヘッダー固定 */
  body{
    /* ヘッダーの高さに応じて */
    padding-top: 140px;
  }
  .header{
    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  .hdr_outer{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
  }
  .hdr_contact_btn{
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    aspect-ratio:1 / 1;
    background: var(--grade-color);
    color: #fff;
    padding-top: 25px;
    margin-left: 26px;
  }
  .hdr_contact_btn:hover{
    color: #fff;
    background: linear-gradient(180deg,rgba(47, 163, 96, 1) 0%, rgba(36, 112, 68, 1) 40%, rgba(17, 82, 44, 1) 100%);
  }
  .hdr_contact_btn p:before{
    content: "";
    display: block;
    width: 36px;
    height: 26px;
    background-image: url(/system_panel/uploads/images/fff.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: all .2s;
    margin: 0 auto 18px;
  }
  /*  .hdr_contact_btn:hover p:before{
      background-image: url(/system_panel/uploads/images/gr.svg);
    }*/

  .hdr1{
    padding: 0 15px 0;
  }

  /* ロゴ */
  .hdr_logo{
    width: 6.8%;
    width: 8.8%;
    /*aspect-ratio: 132 / 148;*/
    aspect-ratio: 362 / 246;
    position: absolute;
    position: static;
    top: 36px;
    top: 10px;
    left: 1.8%;
    margin-left: 15px;
    ;
  }
  .hdr_logo img{
    width: 180px;
  }

  /* ヘッダースリム */
  .header.slim{
    background: #FFF;
  }

  /* TELボタン */
  .hdr_tel{

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


}
@media (min-width:1024px){
  body{
    /* ヘッダーの高さに応じて */
    padding-top: 170px;
  }
  /* ロゴ */
  .hdr_logo img{
    width: 200px;
  }

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

  }

  /* TELボタン */
  .hdr_tel{

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

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

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

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

  }

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

  /* ロゴ */
  .hdr_logo{
    width: 7.5%;
  }
}

/*******************************
*　メインビジュアル
********************************/
/* MV */
.mv{
  display: flex;
  position: relative;
  z-index: 1;
}
.mv_img{
  position: relative;
  z-index: 1;
}
.mv_img.img_fit:before{
  padding-top: 50vh;
}
.mv_item_img:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}

.mv_left{
  width:10.41%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding-right:2.3%;
  ;
  padding-bottom: 29px;
}
.mv_scroll{
  font-size: 16px;
  font-family: "Outfit", sans-serif;
  line-height: 1;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;

}
.mv_scroll p{
  display: flex;
  align-items: center;
  letter-spacing: 0.1em;
}
.mv_scroll p:after{
  content: "";
  display: block;
  width: 1px;
  height: 100px;
  background-image: url(/system_panel/uploads/images/line.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-top: 16px;
}
.mv_inner{
  width: calc(100% - 10.41%);
}
.mv_items{

}
.mv_item{
  position: relative;
}
.mv_item_img:before{

}
.mv_item_txt{
  font-size: 20px;
  font-weight: 700;
  position: absolute;
  top: 50%;
  left: 5.17%;
  transform: translateY(-50%);
  z-index: 1;
  color: #fff;
}
.mv_item_txt .sm{
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
}
.mv_item_txt .sm:after{
  content: "";
  display: block;
  width: 103px;
  height: 1px;
  background: #fff;
  margin-left: 20px;
}
.mv_item_txt .eng{
  font-size: 16px;
  font-weight: 400;
  font-family: "Outfit", sans-serif;
  line-height: 1;
}
.mv_item_txt p{
  letter-spacing: 0.1em;
}


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

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

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

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

  }
  .mv_items{

  }
  .mv_item{

  }
  .mv_item_img:before{
    padding-top: 400px;
  }
  .mv_item_txt{
    font-size: 30px;
  }
  .mv_item_txt .sm{
    font-size: 20px;
  }
  .mv_item_txt .eng{
    font-size: 18px;
  }



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


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

  }
  .mv_items{

  }
  .mv_item{

  }
  .mv_item_img:before{
    padding-top: 600px;
  }
  .mv_item_txt{
    font-size: 46px;
  }
  .mv_item_txt .sm{
    font-size: 40px;
  }
  .mv_item_txt .eng{
    font-size: 30px;
  }


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

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

  }
  .mv_items{

  }
  .mv_item{

  }
  .mv_item_img:before{
    padding-top: 900px;
  }
  .mv_item_txt{
    font-size: 52px;
  }
  .mv_item_txt .sm{
    font-size: 47px;
  }
  .mv_item_txt .eng{
    font-size: 40px;
  }


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

}
@media (min-width:1536px){
  .mv_item_txt{
    font-size: 60px;
  }
}
/*******************************
*　サイドバー
********************************/

/* サイドバー */
.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;
}
.pg_header_mv{
  /*height: 150px;*/
  /*overflow: hidden;*/
}
.pg_header_mv_img{

}
.pg_header_mv_img.img_fit:before{
  padding-top: 150px;
}

.pg_header_inner{
  width:89.58%;
  margin-left: auto;
  position: relative;
}
.pg_header_img:before{
  padding-top: 180px;
}
.pg_header_img:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}

.pg_header_img.noFilter:after{
  display: none;
}
.pg_header_text{
  position: absolute;
  top: 50%;
  left:5.2%;
  ;
  transform: translateY(-50%);
  z-index: 2;
}

.pg_header_txt{
  font-size:20px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
}
.pg_header_text.company .pg_header_txt{
  color: #181818;
}


@media (max-width:767px){
  
  .pg_header_text.company{
    top: 84%;
  }
  
}
@media (min-width:768px){
  .pg_header{
    margin-bottom: 100px;
  }
  .pg_header_mv{
    /*height: 350px;*/
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 350px;
  }

  .pg_header_inner{

  }
  .pg_header_img:before{
    padding-top: 300px;
  }
  .pg_header_text{

  }
  .pg_header_text.company{
    top: 84%;
  }

  .pg_header_txt{
    font-size:30px;
  }
}
@media (min-width:1024px){
  .pg_header{
    margin-bottom: 175px;
  }
  .pg_header_mv{
    /*height: 550px;*/
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 350px;
  }

  .pg_header_inner{

  }
  .pg_header_img:before{
    padding-top: 400px;
  }
  .pg_header_text{

  }

  .pg_header_txt{
    font-size:50px;

  }
}
@media (min-width:1200px){
  .pg_header_img:before{
    padding-top: 600px;
  }

  .pg_about .section.sec1 .home_contents3_box2_img:before{
    padding-top: 71.79%;
  }
}



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

.footer{
  background: #c8d2cc;
  margin-top: 50px;
  padding-top: 59px;
}

.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_1{
  text-align: center;
}
.ftr_add{
  font-size: 16px;
  font-weight: 500;
  line-height: 2em;
  margin-top: 29px;
}
.ftr_contact_btn{
  font-size: 15px;
  font-weight: 700;
  display: block;
  width: 262px;
  background: var(--grade-color);
  color: #fff;
  margin: 22px auto 0;
  position: relative;
  padding: 16px 0;
  transition: 0.2s all;
}
.ftr_contact_btn:hover{
  background: var(--grade-color-rvs);
  color: #FFF;
  color: gold;
}
.ftr_contact_btn p{
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
}
.ftr_contact_btn p:before{
  content: "";
  display:block;
  width: 15px;
  height: 12px;
  background-image: url(/system_panel/uploads/images/fff.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  /*  position: absolute;
    left: 20px;;
    top: 50%;
    transform: translateY(-50%);*/
  margin-right: 15px;
}
.ftr_contact_btn:hover p:before{
  background-image: url(/system_panel/uploads/images/gold.svg);
}

.ftr_contact_btn:after{
  content: "▶";
  font-size: 12px;
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
}


.ftr_2{
  background: var(--main-color);
  color: #fff;
}
.ftr_links{

}
.ftr_link{

}
.ftr_link:hover{
  color: gold;
}

.ftr_logo{
  margin-bottom: 25px;
}
.ftr_logo img{
  width: 120px;
}
.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: 15px;
  font-weight: 500;
  text-align: center;
  padding: 20px;
}
.ftr_copy a:hover{
  color: var(--main-color);
}
.ftr_add a:hover{
  color: var(--main-color);
}

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



@media (min-width:375px){

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

  body{
    padding-bottom: 56px;
  }

  .footer_fix{
    display: flex;
  }

  .ftr_2{
    display: none;
  }

}
@media (min-width:768px){
  .footer{
    margin-top: 100px;
    padding-top: 59px;
  }
  .ftr_copy{
    padding: 22px;
  }

  .ftr_2{
    background: var(--main-color);
    color: #fff;
    padding: 11px;
    margin-top: 79px;
  }
  .ftr_links{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .ftr_link{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 20%;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    border-right: 1px solid #fff;
    padding: 0;
  }
  .ftr_link:after{
    content: "";
    display: block;


  }
  .ftr_link:last-child{
    border-right: 0;
  }
  .ftr_link:nth-child(n+6){
    margin-top: 10px;
  }
  .ftr_link p{
    letter-spacing: 0;
  }
  
  .ftr_logo img{
    width: 150px;
  }
}
@media (min-width:1024px){
  .footer{
    margin-top: 180px;
  }

  .ftr_2{
    background: var(--main-color);
    color: #fff;
  }
  .ftr_links{

  }
  .ftr_link{
    
    font-size: 15px;
    padding: 0 5px;
  }
  .ftr_link p{
    letter-spacing: 0.075em;
  }
}
@media (min-width:1200px){
  .ftr_link{
    display: block;
    width: auto;
    text-align: left;
    padding: 0 14px;
  }
  .ftr_link:nth-child(n+6){
    margin-top: 0;
  }
}
@media (min-width:1440px){
  .ftr_link{
    padding: 0 22px;
  }
}

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


/* テーブル用 */
.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: 30px 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: var(--main-color);
  color: #FFF;
}
.webgene-pagination li.next a:after{
  content: "\f101";
  font-family: 'FontAwesome';
  font-weight: 900;
  display: inline-block;
  margin-left: 10px;
}
.webgene-pagination li.prev a:before{
  content: "\f100";
  font-family: 'FontAwesome';
  font-weight: 900;
  display: inline-block;
  margin-right: 10px;
}

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

/* ボタン */
.read_more{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
  margin-left: -5px;
  margin-right: -5px;
}
.read_more a{
  width: auto;
  font-size: 16px;
  font-weight: 900;
  text-align: center;
  border: none;
  ;
  background: none;
  ;
  /*border-radius: 27px;*/
  color:var(--main-color);
  padding: 0;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
  display: flex;
  align-items: center;
}
.read_more a p{
  /*letter-spacing: 0;*/
}
.read_more a:after{
  content: "";
  width: 87px;
  aspect-ratio:1;
  position:relative;
  z-index: 1;
  background-image: url(/system_panel/uploads/images/btn.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 50%;
  /*  top: 50%;
    right: 18px;
    -webkit-transform: translate(0, -50%);*/
  /*  transform: translate(0, -50%);*/
  transition: 0.2s all;
  margin-left: 10px;
}
.read_more a:hover{
  /*color: #FFF;*/
  /*background: var(--sub-color);*/
}
.read_more a:hover:after{
  /*margin-right: -5px;*/
  transform: translateX(5px);
  border-radius: 50%;
}

.read_more.wh a{
  color: #fff;
}
.read_more.wh a:after{
  background-image:url(/system_panel/uploads/images/btn_wh.png);
}

/*.read_more a:hover:after{
  background-color: #FFF;
  background-color: var(--main-color);
  background-image:url(/system_panel/uploads/images/btn_wh.png);
}
.read_more.wh a:hover:after{
  background-color: var(--main-color);
}*/

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


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

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

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

}

/*見出し*/
.sec_tt{
  font-size: 18px;
  font-weight: 500;
  display: flex;
  align-items: center;
}
.sec_tt.wh{
  color: #fff;
}
.sec_tt:before{
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background-image: url(/system_panel/uploads/images/green.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 10px;
}
.sec_tt.wh:before{
  background-image:url(/system_panel/uploads/images/wh_ai.png);
}
.sec_tt_en{
  font-size: 60px;
  font-weight: 600;
  font-family: "Outfit", sans-serif;
  line-height: 1;
  color: #346248;
  margin-top: 10px;
}
.sec_tt_en.wh{
  color: #fff;
}
.sec_tt_en p{
  letter-spacing: 0;
}
.sec_sub_tt{
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5em;
}
.sec_sub_tt.center{
  text-align: center;
}

/*説明*/
.content_desc{
  font-size: 16px;
  font-weight: 500;
  line-height: 2.11em;
  text-align: justify;
  margin-top: 20px;
}


/*上下分断テキスト*/
.half_txt{
  position: absolute;
  top: -29px;
  left: 50%;
  transform:translateX(-50%);
}
.half_txt_inner{
  position: relative;
}
.half{
  /*  font-size: clamp(3.125rem, 1.112rem + 10.06vw, 13.188rem);*/
  font-size: 60px;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  white-space: nowrap;
  letter-spacing: 0;
  display: inline-block;
  line-height: 1;
}
.top-half{
  color: #c8d2cc;
  clip-path: inset(0 0 50% 0);
}
.btm-half{
  color: #fff;
  position: absolute;
  clip-path: inset(50% 0 0 0);
  bottom: 0;
  left: 0;
}
@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;
  }

  .read_more a:after{
    width: 60px;
  }

  .sec_tt{
    font-size: 16px;
    margin-bottom: 10px;
  }
}
@media (min-width:768px){

  .anchor{
    top: -150px;
  }

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

  /* ボタン */
  .read_more{
    margin-top: 43px;
  }
  .read_more.center{
    justify-content: center;
  }
  .read_more.left{
    justify-content: center;
  }
  .read_more.right{
    justify-content: flex-end;
  }
  .read_more a{
    width: auto;
    font-size: 17px;
    padding:0;
    margin: 5px 5px;
  }
  .read_more a:after{
    content: "";
    /*    top: 50%;
        right: -100px;*/
  }
  .read_more a:hover:after{
    margin-right: -5px;
  }

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

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

  /*見出し*/
  .sec_tt{
    font-size: 20px;
  }
  .sec_tt:before{

  }
  .sec_tt_en{
    font-size: 80px;
    margin-top: 10px;

  }
  .sec_sub_tt{
    font-size: 32px;
  }

  /*説明*/
  .content_desc{
    font-size: 16px;
  }

  /*上下分断テキスト*/
  .half_txt{
    position: absolute;
    top: -38px;
    left: 50%;
    transform:translateX(-50%);
  }
  .half_txt_inner{
    position: relative;
  }
  .half{
    font-size: 80px;
  }
}
@media (min-width:1024px){

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

  .read_more.left{
    justify-content: flex-start;
  }

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

  /*見出し*/
  .sec_tt{
    font-size: 20px;
  }
  .sec_tt:before{

  }
  .sec_tt_en{
    font-size: 80px;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    margin-top: 31px;
  }
  .sec_tt_en.yoko{
    writing-mode: inherit;
  }
  .sec_sub_tt{
    font-size: 32px;
  }

  /*説明*/
  .content_desc{

  }
  .content_desc.center{
    text-align: center;
  }

  /*上下分断テキスト*/
  .half_txt{
    position: absolute;
    top: -61px;
    /*top: -50px;*/
    left: 50%;
    transform:translateX(-50%);
  }
  .half_txt_inner{
    position: relative;
  }
  .half{
    font-size: 120px;
    /*font-size: 100px;*/
  }
}
@media (min-width:1200px){
  /*見出し*/
  .sec_tt_en{
    font-size: 100px;
  }
  .sec_sub_tt{
    font-size: 40px;
  }
  
  /*説明*/
  .content_desc{
    font-size: 18px;
  }

  /*上下分断テキスト*/
  .half_txt{
    position: absolute;
    top: -74px;
    top: -65px;
    left: 50%;
    transform:translateX(-50%);
  }
  .half_txt_inner{
    position: relative;
  }
  .half{
    font-size: 130px;
  }
}
@media (min-width:1366px){

  /* コンテナ */
  .container.wide{
    /*max-width: calc(1600px + 100px);*/
    max-width: calc(1250px + 70px);
    padding-left: 35px;
    padding-right: 35px;
  }


  /*見出し*/
  .sec_tt{
    font-size: 25px;
  }
  .sec_tt_en{
    font-size: 100px;
  }

  /*上下分断テキスト*/
  .half_txt{
    position: absolute;
    top: -79px;
    left: 50%;
    transform:translateX(-50%);
  }
  .half_txt_inner{
    position: relative;
  }
  .half{
    font-size: 160px;
  }
}
@media (min-width:1450px){

  .container.wide{
    /*max-width: calc(1600px + 100px);*/
    max-width: calc(1370px + 80px);
    padding-left: 40px;
    padding-right: 40px;
  }

  /*見出し*/
  .sec_tt_en{
    font-size: 100px;
  }
  .sec_sub_tt{
    font-size: 40px;
  }

  /*上下分断テキスト*/
  .half_txt{
    position: absolute;
    top: -88px;
    left: 50%;
    transform:translateX(-50%);
  }
  .half_txt_inner{
    position: relative;
  }
  .half{
    font-size: 180px;
  }
}

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

  /*見出し*/
  .sec_tt_en{
    font-size: 130px;
  }
  .sec_sub_tt{
    font-size: 60px;
  }

  /*上下分断テキスト*/
  .half_txt{
    position: absolute;
    top: -105px;
    left: 50%;
    transform:translateX(-50%);
  }
  .half_txt_inner{
    position: relative;
  }
  .half{
    font-size: 210px;
  }
}


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

}
.pg_home .section.sec1{
  padding-top: 50px;
  position: relative;
}
.pg_home .section.sec1:before{
  content: "";
  display: block;
  width: 1906px;
  aspect-ratio:1906 / 1759;
  background-image: url(/system_panel/uploads/images/top_bg1.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -26px;
  left: 50%;
  transform:translateX(-50%);
}
.pg_home .section.sec2{

}
.pg_home .section.sec3{
  position: relative;
}
.pg_home .section.sec3:before{
  content: "";
  display: block;
  width: 1915px;
  aspect-ratio:1915 / 1136;
  background-image: url(/system_panel/uploads/images/top_bg2.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -50px;
  left: 50%;
  transform:translateX(-50%);
}
.pg_home .section.sec4{
  background: #c8d2cc;
  position: relative;
  padding-bottom: 50px;
}
.pg_home .section.sec5{
  position: relative;
}
.pg_home .section.sec5:before{
  content: "";
  display: block;
  width: 1519px;
  aspect-ratio:1519 / 1324;
  background-image: url(/system_panel/uploads/images/top_bg3.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -129px;
  left: 60.45%;
  transform:translateX(-50%);
  z-index: -1;
}
.pg_home .section.sec6{

}
.pg_home .section.sec7{
  position: relative;
}
.pg_home .section.sec7:before{
  content: "";
  display: block;
  width: 1449px;
  aspect-ratio:1449 / 1254;
  background-image: url(/system_panel/uploads/images/top_bg4.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -168px;
  left: 37.5%;
  transform:translateX(-50%);
}
.pg_home .section.sec8{

}

.pg_home .section.sec2 .container{
  position: relative;
}
@media (max-width:1023px){
  .pg_home .section.sec7 .sec_tt_en{
    display: flex;
  }
}
@media (max-width:767px){
  .pg_home .section.sec7:before{
    left: 78.5%;
  }
  .pg_home .section.sec7 .sec_tt_en{
    display: flex;
  }
}
@media (min-width:768px){

  .pg_home .section.sec1{
    padding-top: 80px;
  }
  .pg_home .section.sec2{
    padding-top: 100px;
  }
  .pg_home .section.sec3{
    padding-top: 80px;
  }
  .pg_home .section.sec4{
    padding-top: 100px;
    padding-bottom: 80px;
    margin-top: 120px;
  }
  .pg_home .section.sec5{
    padding-top: 100px;
  }
  .pg_home .section.sec6{
    padding-top: 100px;
  }
  .pg_home .section.sec7{
    padding-top: 85px;
  }
  .pg_home .section.sec8{

  }
  
  .pg_home .section.sec3:before{
    width: 1500px;
    top: 325px;
    left: -80px;
    transform:translateX(0);
  }

}
@media (min-width:1024px){
  .pg_home .section.sec1{
    padding-top: 100px;
  }
  .pg_home .section.sec2{
    padding-top: 150px;
  }
  .pg_home .section.sec3{
    padding-top: 100px;
  }
  .pg_home .section.sec4{
    padding-top: 140px;
    padding-bottom: 80px;
    margin-top: 175px;
  }
  .pg_home .section.sec5{
    padding-top: 145px;
  }
  .pg_home .section.sec6{
    padding-top: 100px;
  }
  .pg_home .section.sec7{
    padding-top: 85px;
  }
  .pg_home .section.sec8{

  }

  .pg_home .section.sec3:before{
    width: 1500px;
    top: -50px;
    left: -80px;
    transform:translateX(0);
  }
  
}
@media (min-width:1200px){

  .pg_home .section.sec3:before{
    width: 1915px;
    top: -50px;
    left: 50%;
    transform:translateX(-50%);
  }
  
}


/*メイン*/

/*about*/
.home_contents1_wrap{
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.home_contents1_box1{
  width: 100%;
}
.home_contents1_box2{
  width: 100%;
  margin-top: 20px;
  ;
}

/*代表インタビュー*/
.home_contents2_wrap{

}
.home_contents2_wrap_inner{
  position: relative;
}
.home_contents2_img{

}
.home_contents2_img.left{

}
.home_contents2_img:before{
  padding-top: 900px;
}
.home_contents2_img:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}
.contents_inner{
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.contents_inner .sec_tt_en{
  margin-top: 13px;
}
.contents_inner_btm{
  padding-left: 20px;
  position: relative;
  margin-top: 30px;
}
.contents_inner_btm:before{
  content: "";
  display: block;
  width: 5px;
  height: 100%;
  background: #fff;
  position: absolute;
  top: 25px;
  top: 15px;
  left: 0;
}
.contents_inner_btm.wh{
  color: #fff;
}
.contents_inner_btm .sec_sub_tt{

}
.contents_inner_btm .content_desc{

}
.contents_inner_btm .read_more{

}

/*事業内容*/
.home_contents3_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.home_contents3_box1{
  width: 100%;
  order: 2;
  margin-top: 20px;
}
.home_contents3_box1 .content_desc{

}
.home_contents3_box1 .read_more{

}
.home_contents3_box2{
  width: 100%;
  position: relative;
  order: 1;
}
.home_contents3_box2_en{
  position: absolute;
  display: inline-block;
  background: #fff;
  bottom: 0;
  z-index: 2;
}
.home_contents3_box2_en.left{
  left: 0;
}
.home_contents3_box2_en.right{
  right: 0;
}
.home_contents3_box2_en .sec_tt_en{
  line-height: 0.9em;
}
.home_contents3_box2_en .sec_tt_en p{
  letter-spacing: -0.025em;
}
.home_contents3_box2_img{

}
.home_contents3_box2_img:before{
  padding-top: 84.1%;
}

/*扱うモノが広いから、応えられる現場も多い。*/
.home_contents4_wrap{

}
.home_contents4_wrap .content_desc{

}
.home_contents4_items{
  display: flex;
  flex-wrap: wrap;
  margin-inline:0;
  margin-top: 30px;
}
.home_contents4_item{
  width: 100%;
  padding-inline:0;
}
.home_contents4_item:nth-child(n+2){
  margin-top: 20px;
}
.home_contents4_item_inner{
  position: relative;
}
.home_contents4_item_img:before{
  padding-top: 54.32%;
}
.home_contents4_item_ttl{
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  background: rgba(255,255,255,0.9);
  padding: 11px;
}
.home_contents4_item_tt{
  font-size: 16px;
  font-weight: 600;
}

/*お知らせ*/
.home_contents7_wrap{

}
.home_contents7_wrap .home_contents1_box1{

}
.home_contents7_wrap .home_contents1_box2{

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

}
.news_list .webgene-item .img{
  overflow: hidden;
}
.news_list .webgene-item .img:before{
  padding-top: 76.71%;
}
.news_list .webgene-item .category{
  width: 142px;
  background: var(--main-color);
  color: #fff;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  margin-top: 10px;
  padding: 3px;
}
.news_list .webgene-item .date{
  font-size: 15px;
  font-weight: 400;
  font-family: "Outfit", sans-serif;
  line-height: 1;
  letter-spacing: 0.075em;
  margin-top: 10px;
}
.news_list .webgene-item .title{
  font-size: 16px;
  font-weight: 500;
  line-height: 1.875em;
  margin-top: 16px;
}
@media (max-width:374px){

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

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

  .sec_sub_tt p{
    letter-spacing: 0;
  }
  .contents_inner_btm:before{
    top: 0;
  }
  .home_contents7_wrap .sec_sub_tt{
    margin-bottom: 30px;
  }
}
@media (min-width:768px){
  /*about*/
  .home_contents1_wrap{

  }
  .home_contents1_box1{
    padding-top: 10px;
  }
  .home_contents1_box1 .sec_tt_en{
    margin-left: -12px;
  }
  .home_contents1_box2{
    margin-top: 0;
  }
  .home_contents1_box2 .content_desc{
    margin-top: 57px;
  }

  /*代表インタビュー*/
  .home_contents2_wrap{

  }
  .home_contents2_img{

  }
  .home_contents2_img.left{
    margin-left: var(--margin-for-device-side);
    margin-right: var(--margin-for-device-side);
  }
  .home_contents2_img.right{
    margin-right: var(--margin-for-device-side);
  }
  .home_contents2_img:before{
    padding-top: 790px;
  }
  .home_contents2_img:after{

  }
  .contents_inner{
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
  }
  .contents_inner.right{
    right: 0;
    padding-right: 0;
  }
  .contents_inner_btm{
    padding-left: 50px;
    margin-top: 50px;
  }
  .contents_inner_btm .sec_sub_tt{

  }
  .contents_inner_btm .content_desc{

  }
  .contents_inner_btm .read_more{

  }

  /*事業内容*/
  .home_contents3_wrap{

  }
  .home_contents3_box1{
    margin-top: 30px;
  }
  .home_contents3_box1 .content_desc{

  }
  .home_contents3_box1 .read_more{

  }
  .home_contents3_box2{

  }
  .home_contents3_box2_en{

  }
  .home_contents3_box2_img{

  }
  .home_contents3_box2_img:before{

  }

  /*扱うモノが広いから、応えられる現場も多い。*/
  .home_contents4_wrap{

  }
  .home_contents4_wrap .content_desc{
    margin-top: 34px;
  }
  .home_contents4_items{
    margin-inline:-15.5px;
    margin-top: 40px;
  }
  .home_contents4_item{
    padding-inline:15.5px;
  }
  .home_contents4_item:nth-child(n+2){
    margin-top: 0;
  }
  .home_contents4_item:nth-child(n+3){
    margin-top: 30px;
  }
  .home_contents4_item_inner{

  }
  .home_contents4_item_img:before{

  }
  .home_contents4_item_ttl{

  }
  .home_contents4_item_tt{
    font-size: 18px;
  }

  /*採用*/
  .pg_home .section.sec6 .home_contents2_img:before{
    padding-top: 943px;
  }
  .pg_home .section.sec6 .contents_inner{
    padding-left: 43px;
  }

  /*お知らせ*/
  .home_contents7_wrap{

  }
  .home_contents7_wrap .home_contents1_box1{

  }
  .home_contents7_wrap .sec_sub_tt{
    margin-bottom: 55px;
  }
  .home_contents7_wrap .home_contents1_box2{

  }
  .news_list .webgene-blog{

  }
  .news_list .webgene-item{

  }
  .news_list .webgene-item:nth-child(n+3){
    margin-top:30px;
  }
  .news_list .webgene-item a{

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

  }
  .news_list .webgene-item .category{

  }
  .news_list .webgene-item .date{

  }
  .news_list .webgene-item .title{

  }
}
@media (min-width:1024px){
  /*about*/
  .home_contents1_wrap{
    justify-content: space-between;
  }
  .home_contents1_box1{
    width: 20.76%;
  }
  .home_contents1_box2{
    width: 75%;
  }

  /*代表インタビュー*/
  .home_contents2_wrap{

  }
  .home_contents2_img{

  }
  .home_contents2_img.left{
    margin-right: 0;
  }
  .contents_inner.right{
    /*padding-right: 0;*/
  }
  .contents_inner.right{
    padding-right: 72px;
  }
  .home_contents2_img:before{

  }
  .home_contents2_img:before{
    padding-top: 982px;
  }
  .home_contents2_img:after{

  }
  .contents_inner{
    width: 67.76%;
  }
  .contents_inner_btm{

  }
  .contents_inner_btm.right{
    margin-left: auto;
  }
  .contents_inner_btm .sec_sub_tt{

  }
  .contents_inner_btm .content_desc{

  }
  .contents_inner_btm .read_more{

  }

  /*事業内容*/
  .home_contents3_wrap{
    align-items: flex-start;
  }
  .home_contents3_box1{
    width: 43.73%;
    order: 1;
    margin-top: 0;
  }
  .home_contents3_box1 .sec_sub_tt{
    margin-right: -45px;
    margin-top: 13px;
  }
  .home_contents3_box1 .content_desc{
    margin-top: 40px;
  }
  .home_contents3_box1 .read_more{

  }
  .home_contents3_box2{
    width: 50.98%;
    order: 2;
  }
  .home_contents3_box2_en{

  }

  .home_contents3_box2_img{
    margin-right: var(--margin-for-device-side);
  }
  .home_contents3_box2_img.left{
    margin-right:0;
    margin-left: var(--margin-for-device-side);
  }
  .home_contents3_box2_img:before{
    padding-top: 820px;
    ;
  }

  /*扱うモノが広いから、応えられる現場も多い。*/
  .home_contents4_wrap{

  }
  .home_contents4_wrap .content_desc{

  }
  .home_contents4_items{

  }
  .home_contents4_item{
    width: 33.333%;
  }

  .home_contents4_item:nth-child(n+3){
    margin-top: 0;
  }
  .home_contents4_item:nth-child(n+4){
    margin-top: 30px;
  }
  .home_contents4_item_inner{

  }
  .home_contents4_item_img:before{

  }
  .home_contents4_item_ttl{

  }
  .home_contents4_item_tt{
    font-size: 20px;
  }

  /*サステナビリティについて*/
  .home_contents5_wrap{

  }
  .home_contents5_wrap .home_contents3_box1{
    order: 2;
  }
  .home_contents5_wrap .home_contents3_box2{
    order: 1;
  }


  .pg_home .section.sec6 .contents_inner{
    width: 100%;
    padding-left: 130px;
  }

  /*お知らせ*/
  .home_contents7_wrap{

  }
  .home_contents7_wrap .home_contents1_box1{

  }
  .home_contents7_wrap .home_contents1_box2{
    width: 75.98%;
  }
  .home_contents7_wrap .sec_sub_tt{
    margin-right: -20px;
    margin-bottom: 55px;
  }
  .news_list .webgene-blog{
    margin-inline:-15.5px;
  }
  .news_list .webgene-item{
    width: 33.33%;
    padding-inline:15.5px;
  }
  .news_list .webgene-item:nth-child(n+3){
    margin-top:0;
  }
  .news_list .webgene-item a{

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

  }
  .news_list .webgene-item .category{

  }
  .news_list .webgene-item .date{

  }
  .news_list .webgene-item .title{

  }
}
@media (min-width:1200px){
  .home_contents1_box1{
    width: 17.76%;
  }
  .home_contents1_box2{
    width: 82.23%;
    width: 80%;
  }
  .home_contents3_box2_img:before{
    padding-top: 820px;
    ;
  }

}
@media (min-width:1366px){
  .home_contents3_box2_img:before{
    padding-top: 84.1%;
  }
}
@media (min-width:1450px){

}

@media (min-width:1700px){
  .home_contents1_box1{
    width: 17.76%;
  }
  .home_contents1_box2{
    width: 82.23%;
  }
}




/*******************************
*　aboutus
********************************/

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

}
.pg_about .section.sec1{
  position: relative;
}
.pg_about .section.sec1:before{
  content: "";
  display: block;
  width: 1825px;
  aspect-ratio:1610 / 1050;
  background-image: url(/system_panel/uploads/images/about_bg1.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -270px;
  left: 47%;
  transform:translateX(-50%);
}
.pg_about .section.sec2{
  background: #c8d2cc;
  position: relative;
}
.pg_about .section.sec3{
  position: relative;
}
.pg_about .section.sec3:before{
  content: "";
  display: block;
  width: 1610px;
  aspect-ratio:1610 / 1759;
  background-image: url(/system_panel/uploads/images/about_bg2.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -17px;
  left: 58%;
  transform:translateX(-50%);
  z-index: -1;
}


@media (max-width:374px){

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

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

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

  }
  .pg_about .section.sec1{

  }
  .pg_about .section.sec2{
    padding-top: 140px;
    padding-bottom: 95px;
    margin-top: 100px;
  }
  .pg_about .section.sec3{
    padding-top: 80px;
  }
  
  .pg_about .section.sec1:before{
    width: 1825px;
    top: 0;
    left: 0;
    transform:translateX(0);
  }

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

  }
  .pg_about .section.sec1{

  }
  .pg_about .section.sec2{
    padding-top: 140px;
    padding-bottom: 95px;
    margin-top: 170px;
  }
  .pg_about .section.sec3{
    padding-top: 80px;
  }

  .pg_about .section.sec1:before{
    
  }
  
}
@media (min-width:1200px){

  .pg_about .section.sec1:before{
    width: 1825px;
    /*top: -270px;*/
    left: 0%;
    transform:translateX(0);
  }

}

@media (min-width:1470px){
 
  .pg_about .section.sec1:before{
    width: 1825px;
    top: -270px;
    /*left: 47%;*/
    /*transform:translateX(-50%);*/
  }
  
}
@media (min-width:1720px){
 
  .pg_about .section.sec1:before{
    width: 1825px;
    top: -270px;
    left: 47%;
    transform:translateX(-50%);
  }
  
}

/* メイン部分 */

/*プラスワンを動かす、5つの信念*/
.page_content_items{
  margin-top: 40px;
}
.page_content_item{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.page_content_item:nth-child(n+2){
  margin-top:54px;
}
.page_content_box1{
  width: 100%;
  position: relative;
  z-index: 1;
}
.page_content_box1_img:before{
  padding-top: 77.41%;
}
.page_content_box1_icon{
  width: 21.93%;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
}
.page_content_box1_icon.img_fit:before{
  padding-top: 100%;
}
.page_content_box2{
  width: 100%;
  margin-top: 20px;
}
.sec_tt .en{
  font-size: 28px;
  font-weight: 600;
  font-family: "Outfit", sans-serif;
  line-height: 1;
  letter-spacing: 0;
  color: #346248;
}


/*許可証*/
.aboutus_contents2_wrap .home_contents1_box2{

}
.sec_sub_desc{
  font-size: 20px;
  font-weight: 700;
  line-height: 1.71em;
}
.aboutus_contents2_items{
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}
.aboutus_contents2_item{
  width: 100%;
}
.aboutus_contents2_item:nth-child(n+2){
  margin-top: 50px;
}
.aboutus_contents2_item_inner{

}

.aboutus_contents2_item_tt{
  font-size: 22px;
  font-weight: 600;
  background: #346248;
  color: #fff;
  text-align: center;
  padding: 8px;
}
.aboutus_contents2_item_contents{
  margin-top: 28px;
}
.aboutus_contents2_item_contents:nth-child(n+3){
  margin-top: 30px;
}
.aboutus_contents2_item_contents_tt{
  font-size: 18px;
  font-weight: 700;
  color: #346248;
}
.aboutus_contents2_item_btn{
  font-size: 18px;
  font-weight: 700;
  display: block;
  width: 100%;
  background: #fff;
  border: 1px solid var(--main-color);
  text-align: center;
  color: var(--main-color);
  border-radius: 20px;
  padding: 16px;
  margin-top: 21px;
}
.aboutus_contents2_item_btn:hover{
  background: var(--main-color);
  color: #fff;
}
.aboutus_contents2_item_btn p{
  display: flex;
  align-items: center;
  justify-content: center;
}
.aboutus_contents2_item_btn p:before{
  content: "";
  display: block;
  width: 33px;
  height: 27px;
  background-image: url(/system_panel/uploads/images/pdf_gr.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 5px;
  transition: 0.2s all;
}
.aboutus_contents2_item_btn:hover p:before{
  background-image: url(/system_panel/uploads/images/pdf_wh.svg);
  
}

@media (max-width:767px){

}
@media (min-width:768px){
  /*プラスワンを動かす、5つの信念*/
  .page_content_items{
    margin-top: 60px;
  }
  .page_content_item{

  }
  .page_content_item:nth-child(n+2){
    margin-top:54px;
  }
  .page_content_box1{

  }
  .page_content_box1_img:before{

  }
  .page_content_box2{
    margin-top: 30px;
  }
  .sec_tt .en{
    font-size: 30px;
  }
  .sec_sub_desc{
    font-size: 28px;
  }

  .aboutus_contents2_items{
    margin-inline:-15px;
    margin-top: 60px;
  }
  .aboutus_contents2_item{
    width: 50%;
    padding-inline:15px;
  }
  .aboutus_contents2_item:nth-child(n+2){
    margin-top: 0;
  }
  .aboutus_contents2_item:nth-child(n+3){
    margin-top: 100px;
  }
  .aboutus_contents2_item_inner{

  }
  .aboutus_contents2_item_tt{
    font-size: 24px;
    margin-bottom: 44px;
  }
  .aboutus_contents2_item_contents{
  }
  .aboutus_contents2_item_contents:nth-child(n+3){
    margin-top: 67px;
  }
  .aboutus_contents2_item_contents_tt{
    font-size: 20px;
  }
  .aboutus_contents2_item_btn{
    font-size: 20px;
    padding: 25px;
    margin-top: 21px;
  }
}
@media (min-width:1024px){
  /*プラスワンを動かす、5つの信念*/
  .aboutus_contents1_wrap .content_desc.center{
    margin-top: 30px;
  }
  .page_content_items{
    margin-top: 80px;
  }
  .page_content_item{

  }
  .page_content_item:nth-child(n+2){
    margin-top:54px;
  }
  .page_content_item:nth-child(odd) .page_content_box1{
    order: 1;
  }
  .page_content_item:nth-child(odd) .page_content_box2{
    order: 2;
  }
  .page_content_item:nth-child(even) .page_content_box1{
    order: 2;
  }
  .page_content_item:nth-child(even) .page_content_box2{
    order: 1;
  }
  .page_content_box1{
    width: 50.985%;
    padding-top: 10px;
  }
  .page_content_box1_img:before{

  }
  .page_content_box2{
    width: 42.76%;
    margin-top: 0;
  }
  .page_content_box2 .content_desc{
    margin-top: 25px;
  }
  .page_content_box2 .read_more{
    margin-top: 36px;
  }

  .sec_tt .en{
    font-size: 50px;
  }

  /*許可証*/
  .aboutus_contents2_wrap .home_contents1_box2{
    width: 67.76%;
  }
  .sec_sub_desc{
    font-size: 35px;
    margin-right: -20px;
    padding-top: 27px;
  }
  .aboutus_contents2_items{

  }
  .aboutus_contents2_item{

  }
  .aboutus_contents2_item_inner{

  }
  .aboutus_contents2_item_tt{
    font-size: 30px;
  }
  .aboutus_contents2_item_contents{

  }
  .aboutus_contents2_item_contents_tt{
    font-size: 25px;
  }
  .aboutus_contents2_item_btn{
    font-size: 25px;
  }
}
@media (min-width:1200px){


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

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

}

@media (min-width:1700px){

}



/*******************************
*　事業
********************************/

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

}
.pg_business .section.sec1{
  position: relative;
}
.pg_business .section.sec1:before{
  content: "";
  display: block;
  width: 1818px;
  aspect-ratio:1818 / 1219;
  background-image: url(/system_panel/uploads/images/bisinee_bg1.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -284px;
  left: 53%;
  transform:translateX(-50%);
  pointer-events: none;
}
.pg_business .section.sec2{

}
.pg_business .section.sec3{
  position: relative;
  background: #c8d2cc;
  padding: 80px 0 50px;
  margin-top: 50px;
}



@media (max-width:374px){

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

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

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

  }
  .pg_business .section.sec1{

  }
  .pg_business .section.sec2{

  }
  .pg_business .section.sec3{
    padding: 100px 0 90px;
    margin-top: 100px;
  }
  
  .pg_business .section.sec1:before{
    width: 1818px;
    top: 0;
    left: 0;
    transform:translateX(-50%);
  }

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

  }
  .pg_business .section.sec1{

  }
  .pg_business .section.sec2{
    padding-top: 77px;
  }
  .pg_business .section.sec3{
    padding: 140px 0 113px;
    margin-top: 170px;
  }
  
  .pg_business .section.sec1:before{
    width: 1500px;
    top: 0;
    left: 0;
    transform:translateX(-25%);
  }

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

  .pg_business .section.sec1:before{
    width: 1500px;
    top: 0;
    left: 0;
    transform:translateX(0%);
  }

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

  .pg_business .section.sec1:before{
    width: 1500px;
    top: -150px;
    left: 5%;
    transform:translateX(0%);
  }

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

  .pg_business .section.sec1:before{
    width: 1818px;
    top: -284px;
    left: 53%;
    transform:translateX(-50%);
  }

}

/* メイン部分 */

/*見出し*/
.business_contents1_wrap{

}
.business_contents1_wrap .home_contents3_box1{

}
.business_contents1_wrap .home_contents3_box2{

}
.business_contents1_wrap .home_contents3_box2_img{

}

/*取り組み*/
.normal_lg_en{
  text-align: center;
  font-size:50px;
  font-weight: 600;
  font-family: "Outfit", sans-serif;
  line-height: 0.9em;
  color: var(--main-color);
  margin-bottom: 30px;
}
.normal_lg_en p{
  letter-spacing: 0;
}
.page_content_items.type2{

}
.page_content_items.type2 .page_content_item{
  background: #c8d2cc
}
.page_content_items.type2 .page_content_item .anchor{
  width: 100%;
}
.page_content_items.type2 .page_content_box1{

}
.page_content_items.type2 .page_content_box1_img{

}
.page_content_items.type2 .page_content_box1_img:before{

}
.page_content_items.type2 .page_content_box2{
  padding: 0 16px 30px;
}
.page_content_box2_meta{
  display: flex;
  align-items: center;
}
.page_content_items.type2 .sec_sub_tt{
  color: var(--main-color);
  font-size: 22px;
  font-weight: 700;

  line-height: 1.37em;
}
.page_content_items.type2 .sec_sub_tt p{
  letter-spacing: 0;
}
.page_content_box_num_lg{
  font-size: 65px;
  font-weight: 600;
  font-family: "Outfit", sans-serif;
  line-height: 1;
  letter-spacing: 0;
  color: #fff;
  margin-right: 10px;
}
.page_content_box_num_lg.merit{
  font-size: 50px;
  letter-spacing: -0.025em;
  line-height: 0.8;
}
.page_content_box_num_lg em{
  display: block;
  font-size: 0.3076em;
  font-style: normal;
  font-weight: inherit;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 5px;
}
.page_content_items.type2 .content_desc{

}

/*お取引と適正処理の流れについて*/
.business_contents3_wrap{

}
.business_contents3_cate{
  display: flex;
  flex-wrap: wrap;
  margin-top:40px;
  margin-bottom: 50px;
}
.business_contents3_cate_item{
  width: 100%;
}
.business_contents3_cate_item:nth-child(n+2){
  margin-top: 16px;
}
.business_contents3_cate_item a{
  display: block;
  border: 1px solid var(--main-color);
  background: #fff;
  color: var(--main-color);
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  padding: 16px;
  position: relative;
}
.business_contents3_cate_item a:after{
  content: "→";
  display: block;
  font-size: 18px;
  position: absolute;
  top: 50%;
  right:45px;
  transform: translateY(-50%);
}
.business_contents3_cate_item a:hover{
  background: var(--main-color);
  border: 1px solid transparent;
  color: #fff;
  opacity: 1;
}
.business_contents3_cate_item a:after{

}

.business_contents3_content{

}
.business_contents3_content:nth-child(n+3){
  margin-top: 60px;
}
.business_contents3_content_tt{
  display: flex;
  align-items: center;
  font-size: 22px;
  font-weight: 700;
  color: #346248;
}
.business_contents3_content_tt:before{
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background-image: url(/system_panel/uploads/images/green.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 20px;
}
.business_contents3_items{
  margin-top: 20px;
}
.business_contents3_item{
  background: #346248;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}
.business_contents3_item.half_block{
  background: none;
}
.business_contents3_item.type2{
  background: #8fad68;
}
.business_contents3_item.type3{
  background: #3ba986;
}
.business_contents3_item:after{
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 40px solid transparent;
  border-left: 40px solid transparent;
  border-top: 40px solid #3a3a3a;
  border-bottom: 0;
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform:translateX(-50%);
}
.half_item{
  position: relative;
}
.half_item:before{
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 40px solid transparent;
  border-left: 40px solid transparent;
  border-top: 40px solid #3a3a3a;
  border-bottom: 0;
  position: absolute;
  top: -50px;
  left: 50%;
  transform:translateX(-50%);
}
.business_contents3_item.single:after,
.business_contents3_item:last-child:after{
  display: none;
}
.business_contents3_outer,
.business_contents3_item:nth-child(n+2){
  margin-top: 60px;
}
.business_contents3_box1{
  width: 100%;
  padding: 50px 24px 50px 24px;
  order: 2;
}
.business_contents3_item_tt{
  font-size: 22px;
  font-weight: 700;
  border-left: 5px solid #fff;
  padding-left: 16px;
}
.business_contents3_box1 .content_desc{
  font-size: 16px;
  font-weight: 500;
  line-height: 1.875;
}
.business_contents3_contact{
  display: flex;
  flex-wrap: wrap;
  
  align-items: center;
  margin-top: 11px;
}
.business_contents3_contact + .business_contents3_contact{
  margin-top: 20px;
}
.business_contents3_contact a{
  
}
.business_contents3_contact .ftr_contact_btn{
  background: #fff;
  color: var(--main-color);
  padding: 14px 0;
}
.business_contents3_contact .ftr_contact_btn p:before{
  background-image: url(/system_panel/uploads/images/gr.svg);
}
.business_contents3_contact .ftr_contact_btn:hover{
  background: gold;
}
.business_contents3_contact .ftr_contact_btn:hover p:before{

}
.business_contents3_contact .ftr_contact_btn:hover:after{

}
.business_contents3_contact_tel{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.business_contents3_contact_tel1{
  font-size: 16px;
  font-weight: 600;
}
.business_contents3_contact_tel2{
  font-size: 28px;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  letter-spacing: 0.2em;
}
.business_contents3_contact_tel2 a{
  
}
.business_contents3_contact_tel2 a:hover{
  color: gold;
}

.business_contents3_box2{
  width: 100%;
  order: 1;
}
.business_contents3_box2_img{

}
.business_contents3_box2_img:before{
  padding-top: 69.19%;
}
.business_contents3_item.half_block:after{
  display: none;
}
.business_contents3_item.half_block .business_contents3_box2_img:before{
  padding-top: 319px;
}
.business_contents3_item.half_block .business_contents3_item:last-child:after{
  display: none;
}
.business_contents3_item.type2:last-child:after,
.business_contents3_item.type3:last-child:after{
  display: none;
}

.content_desc.lg{
  font-size: 17px;
  font-weight: 600;
  line-height: 1.95em;
  margin-top: 30px;
}


/*list*/
.waste_contents4_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
.waste_contents4_wrap .home_contents1_box1{

}
.waste_contents4_wrap .home_contents1_box2{

}
.waste_contents4_wrap .home_contents1_box1 .sec_tt_en{
  margin-top: 2px;
  white-space: nowrap;
}

.waste_contents4_items{
  margin-top: 50px;
  position: relative;
  z-index: 2;
}
.waste_contents4_item{

}
.waste_contents4_item:nth-child(n+2){
  margin-top: 50px
}
.waste_contents4_item_tt{
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.075em;
  line-height: 1;
  border-left: 8px solid var(--main-color);
  color: var(--main-color);
  padding-left: 22px;
}
.waste_contents4_chidren{
  margin-top: 50px;
}
.waste_contents4_chid{

}
.waste_contents4_chid_inner{

}
.waste_contents4_chid_tt{
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0;
  color: var(--main-color);
  border-bottom: 2px solid var(--main-color);
  padding-bottom: 10px;
}
.waste_contents4_chid .content_desc{

}
@media (max-width:767px){
  .business_contents3_contact{
    margin-top: 30px;
  }
  .business_contents3_contact .ftr_contact_btn{
    margin-top: 0;
  }
  .business_contents3_contact_tel{
    justify-content: center;
    margin-top: 20px;
  }

  .business_contents3_item.half_block{
    display: block;
  }
  .swiper-button-prev, .swiper-rtl .swiper-button-next,
  .swiper-button-next, .swiper-rtl .swiper-button-prev{
    color: #fff;
  }
}
@media (min-width:768px){
  /*見出し*/
  .business_contents1_wrap{

  }
  .business_contents1_wrap .home_contents3_box1{

  }
  .business_contents1_wrap .home_contents3_box2{

  }
  .business_contents1_wrap .home_contents3_box2_img{

  }

  /*取り組み*/
  .normal_lg_en{
    font-size: 95px;
    margin-bottom: 32px;
  }
  .page_content_items.type2{

  }
  .page_content_items.type2 .page_content_box1{

  }
  .page_content_items.type2 .page_content_box1_img{

  }
  .page_content_items.type2 .page_content_box1_img:before{

  }
  .page_content_items.type2 .page_content_box2{
    padding: 0 30px 40px;
  }
  .page_content_box2_meta{

  }
  .page_content_box2_meta .sec_sub_tt{
    font-size: 32px;
  }

  .page_content_box_num_lg{
    font-size: 100px;
  }
  .page_content_box_num_lg.merit{
    font-size: 60px;
  }
  .page_content_items.type2 .content_desc{

  }

  /*お取引と適正処理の流れについて*/
  .business_contents3_wrap{

  }
  .business_contents3_cate{
    margin-inline:-15px;
    margin-top:60px;
    margin-bottom: 120px;
  }
  .business_contents3_cate_item{
    width: 50%;
    padding-inline:15px;
  }
  .business_contents3_cate_item:nth-child(n+2){
    margin-top: 0;
  }
  .business_contents3_cate_item a{
    font-size: 20px;
  }
  .business_contents3_cate_item a:after{

  }

  .business_contents3_content{

  }
  .business_contents3_content:nth-child(n+3){
    margin-top: 120px;
  }
  .business_contents3_content_tt{
    font-size: 32px;
  }
  .business_contents3_items{

  }
  .business_contents3_item{

  }
  .business_contents3_item:after{
    bottom: -66px;
  }
  .half_item:before{
    top: -66px;
  }
  .business_contents3_item:nth-child(n+2),
  .business_contents3_outer{
    margin-top: 100px;
  }
  .business_contents3_box1{
    padding: 50px 24px 50px 24px;
  }
  .business_contents3_item_tt{
    font-size: 30px;
    padding-left: 20px;
  }
  .business_contents3_box1 .content_desc{
    margin-top: 30px;
    line-height: 2.5;
  }
  .business_contents3_contact{
    justify-content: center;
  }
  .business_contents3_contact .ftr_contact_btn{

  }
  .business_contents3_contact .ftr_contact_btn:hover{

  }
  .business_contents3_contact .ftr_contact_btn:hover p:before{

  }
  .business_contents3_contact .ftr_contact_btn:hover:after{

  }
  .business_contents3_contact_tel{
    margin-top: 5px;
    margin-bottom: 5px;
  }
  .business_contents3_contact_tel1{
    margin-right: 5px;
    
  }
  .business_contents3_contact_tel + .business_contents3_contact_tel{
    
  }
  .business_contents3_contact_tel2{
    font-size: 30px;
    border-left: 1px solid #fff;
    padding-left: 13px;
  }
  .business_contents3_box2{

  }
  .business_contents3_box2_img{

  }
  .business_contents3_box2_img:before{

  }

  .business_contents3_outer{
    display: flex;
    flex-wrap: wrap;
    margin-inline:-15px;
  }
  .business_contents3_item.half_block{
    width: 50%;
    padding-inline:15px;
    margin-top: 0;
  }

  .content_desc.lg{
    font-size: 18px;
    margin-top: 70px;
  }

  /*list*/
  .waste_contents4_wrap{
    display: flex;
    flex-wrap: wrap;
  }
  .waste_contents4_wrap .home_contents1_box1{

  }
  .waste_contents4_wrap .home_contents1_box2{

  }
  .waste_contents4_items{
    display: flex;
    flex-wrap: wrap;

    margin-top: 60px;
  }
  .waste_contents4_item{

  }
  .waste_contents4_item:nth-child(n+2){
    margin-top: 120px
  }
  .waste_contents4_item_tt{
    font-size: 36px;
  }
  .waste_contents4_chidren{
    display: flex;
    flex-wrap: wrap;
    margin-top: 50px;
    margin-inline:-15px;
  }
  .waste_contents4_chid{
    width: 50%;
    padding-inline:15px;
  }
  .waste_contents4_chid:nth-child(n+3){
    margin-top: 50px;
  }
  .waste_contents4_chid_inner{

  }
  .waste_contents4_chid_tt{
    font-size: 20px;
  }
  .waste_contents4_chid .content_desc{

  }
}
@media (min-width:1024px){
  /*見出し*/
  .business_contents1_wrap{

  }
  .business_contents1_wrap .home_contents3_box1{
    order: 2;
  }
  .business_contents1_wrap .home_contents3_box2{
    order: 1;
  }
  .business_contents1_wrap .home_contents3_box2_img{
    margin-right: 0;
    margin-left: var(--margin-for-device-side);
  }

  /*取り組み*/
  .business_contents2_wrap .content_desc.center{
    margin-top: 36px;
  }
  .normal_lg_en{
    font-size: 140px;
    margin-bottom: 30px;
  }
  .page_content_items.type2{
    margin-top: 90px;
  }
  .page_content_items.type2 .page_content_item:nth-child(n+2){
    margin-top: 80px;
  }
  .page_content_items.type2 .page_content_box1{
    width: 44.73%;
    padding-top: 0;
  }
  .page_content_items.type2 .page_content_box1_img{

  }
  .page_content_items.type2 .page_content_box1_img:before{
    padding-top: 1000px;
  }
  .page_content_items.type2 .page_content_box2{
    width: 50.98%;
    padding: 0 20px 40px;
  }
  .page_content_items.type2 .page_content_item:nth-child(odd) .page_content_box2{
    padding: 30px 30px 30px 0;
  }
  .page_content_items.type2 .page_content_item:nth-child(even) .page_content_box2{
    padding: 30px 0 30px 30px;
  }
  .page_content_box2_meta{

  }
  .page_content_box_num_lg{
    font-size: 100px;
  }
  .page_content_items.type2 .sec_sub_tt{
    font-size: 40px;
    margin-right: -40px;
  }
  .page_content_items.type2 .content_desc{
    margin-top: 36px;
  }
  
  .page_content_box_num_lg.merit{
    font-size: 80px;
  }
  

  /*お取引と適正処理の流れについて*/
  .business_contents3_wrap{

  }
  .business_contents3_wrap .content_desc.center{
    margin-top: 33px;
  }
  .business_contents3_cate{
    margin-bottom: 210px;
  }
  .business_contents3_cate_item{

  }
  .business_contents3_cate_item a{

  }
  .business_contents3_cate_item a:after{

  }

  .business_contents3_content{

  }
  .business_contents3_content_tt{
    font-size: 40px;
  }
  .business_contents3_items{

  }
  .business_contents3_item{

  }
  .business_contents3_content:nth-child(n+3){
    margin-top: 150px;
  }
  .business_contents3_box1{
    width: 69.73%;
    padding: 50px 47px 50px 47px;
    order: 1;
    margin-top: 0;
  }
  .business_contents3_item.half_block{
    width: 50%;
  }
  .business_contents3_item.half_block .business_contents3_box1{
    width: 100%;
    order: 2;
  }
  .business_contents3_item.half_block .business_contents3_box2{
    width: 100%;
    order: 1;
  }
  .business_contents3_item_tt{
    font-size: 30px;
    line-height: 1;
    padding-left: 38px;
  }
  .business_contents3_box1 .content_desc{

  }
  .business_contents3_contact{
    justify-content: space-between;
  }
  .business_contents3_contact .ftr_contact_btn{
    margin: 0 48px 0 0;
  }
  .business_contents3_contact .ftr_contact_btn:hover{

  }
  .business_contents3_contact .ftr_contact_btn:hover p:before{

  }
  .business_contents3_contact .ftr_contact_btn:hover:after{

  }
  .business_contents3_contact_tel{

  }
  .business_contents3_contact_tel1{

  }
  .business_contents3_contact_tel2{
    font-size: 34px;
  }
  .business_contents3_box2{
    width: 30.26%;
    order: 2;
  }
  .business_contents3_box2_img{

  }
  .business_contents3_box2_img:before{
    padding-top: 350px;
  }

  .half_item .business_contents3_item_tt{
    font-size: 39px;
    line-height: 1.3;
  }

  .content_desc.lg{
    font-size: 23px;
  }

  /*list*/
  .waste_contents4_wrap{
    display: flex;
    flex-wrap: wrap;
  }
  .waste_contents4_wrap .home_contents1_box1{
    width: 38.48%;
  }
  .waste_contents4_wrap .home_contents1_box2{
    width: 55.26%;
  }
  .waste_contents4_items{
    margin-top: 85px;
  }
  .waste_contents4_item{
  }
  .waste_contents4_item:nth-child(n+3){
    margin-top: 0;
  }

  .waste_contents4_item_tt{
    font-size: 45px;
  }
  .waste_contents4_chidren{

  }
  .waste_contents4_chid{
    width: 33.33%;
  }
  .waste_contents4_chid:nth-child(n+3){
    margin-top: 0;
  }
  .waste_contents4_chid:nth-child(n+4){
    margin-top: 30px;
    ;
  }
  .waste_contents4_chid_inner{

  }
  .waste_contents4_chid_tt{
    font-size: 25px;
  }
  .waste_contents4_chid .content_desc{

  }
}
@media (min-width:1200px){
  
  .normal_lg_en{
    font-size: 160px;
    margin-bottom: 47px;
  }
  
  .business_contents1_wrap .home_contents3_box2_img:before{
    padding-top: 71.79%;
  }
  .page_content_items.type2 .page_content_box1_img:before{
    padding-top: 900px;
  }
  .page_content_items.type2 .page_content_item:nth-child(odd) .page_content_box2{
    padding: 30px 75px 30px 0;
  }
  .page_content_items.type2 .page_content_item:nth-child(even) .page_content_box2{
    padding: 30px 0 30px 75px;
  }

  /*お取引と適正処理の流れについて*/
  .business_contents3_item_tt{
    font-size: 40px;
  }
  .business_contents3_box2_img:before{
    padding-top: 350px;
  }

  .half_item .business_contents3_box1{
    width: 69.73%;
    padding: 50px 10px 50px 20px;
  }
  .half_item .business_contents3_item_tt{
    font-size: 36px;
  }
  .business_contents3_item.half_block .business_contents3_box1{
    width: 65.77%;
    order: 1;
  }
  .business_contents3_item.half_block .business_contents3_box2{
    width: 34.22%;
    order: 2;
  }

  .waste_contents4_item{
    width:auto;
  }
  .waste_contents4_chid{
    width: 25%;
  }
  .waste_contents4_chid:nth-child(n+4){
    margin-top: 0;
    ;
  }
  .waste_contents4_chid:nth-child(n+5){
    margin-top: 41px;
    ;
  }
}
@media (min-width:1366px){
  /*取り組み*/
  .page_content_box_num_lg{
    font-size: 120px;
  }
  .page_content_box_num_lg.merit{
    font-size: 80px;
  }
  .page_content_items.type2 .sec_sub_tt{
    font-size: 50px;
  }
  .page_content_items.type2 .page_content_box1_img:before{
    padding-top: 823px;
  }

  /*お取引と適正処理の流れについて*/
  .business_contents3_item_tt{
    font-size: 46px;
  }
  .business_contents3_box2_img:before{
    padding-top: 500px;
  }

  .half_item .business_contents3_box1{
    width: 69.73%;
    padding: 50px 10px 50px 20px;
  }
  .half_item .business_contents3_item_tt{
    font-size: 36px;
  }

  .waste_contents4_chid_tt{
    font-size: 22px;
  }
}
@media (min-width:1450px){
  /*取り組み*/
  .page_content_box_num_lg{
    font-size: 140px;
  }
  .page_content_box_num_lg.merit{
    font-size: 100px;
  }
  .page_content_items.type2 .sec_sub_tt{
    font-size: 50px;
  }

  /*お取引と適正処理の流れについて*/
  .business_contents3_box2_img:before{
    padding-top: 450px;
  }
  .half_item .business_contents3_item_tt{
    font-size: 32px;
  }
  
  .normal_lg_en{
    font-size: 170px;
    margin-bottom: 47px;
  }
}

@media (min-width:1700px){
  /*取り組み*/
  .page_content_box_num_lg{
    font-size: 190px;
  }
  .page_content_box_num_lg.merit{
    font-size: 130px;
  }
  .page_content_items.type2 .sec_sub_tt{
    font-size: 58px;
  }

  /*お取引と適正処理の流れについて*/
  .business_contents3_box2_img:before{
    padding-top: 69.19%;
  }

  .half_item .business_contents3_box1{
    width: 69.73%;
    padding: 50px 10px 50px 47px;
  }
  .half_item .business_contents3_item_tt{
    font-size: 46px;
  }

  .waste_contents4_chid_tt{
    font-size: 25px;
  }
  
  .normal_lg_en{
    font-size: 196px;
    margin-bottom: 47px;
  }
}






/*******************************
*　産業廃棄物について
********************************/

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

}
.pg_waste .section.sec1{

}
.pg_waste .section.sec2{

}
.pg_waste .section.sec3{
  position: relative;
  background: #c8d2cc;
  margin-top: 60px;
  padding-bottom: 50px;
}
.pg_waste .section.sec4{
  position: relative;
}
.pg_waste .section.sec4:before{
  content: "";
  display: block;
  width: 1703px;
  aspect-ratio:1703 / 1759;
  background-image: url(/system_panel/uploads/images/wate_bg1.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top:0;
  left: 55.5%;
  transform:translateX(-50%);
  pointer-events: none;
}


@media (max-width:374px){

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

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

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

  }
  .pg_waste .section.sec1{

  }
  .pg_waste .section.sec2{

  }
  .pg_waste .section.sec3{
    padding-top: 100px;
    padding-bottom: 100px;
    margin-top: 120px;
  }
  .pg_waste .section.sec4{
    padding-top: 100px;
  }

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

  }
  .pg_waste .section.sec1{

  }
  .pg_waste .section.sec2{

  }
  .pg_waste .section.sec3{
    padding-top: 135px;
    padding-bottom: 150px;
    margin-top: 170px;
  }
  .pg_waste .section.sec4{
    padding-top: 140px;
  }

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


}

/* メイン部分 */

/*車両*/
.waste_contents3_items{
  margin-top: 50px;
}
.waste_contents3_item{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.waste_contents3_item:nth-child(n+2){
  margin-top: 50px;
}
.waste_contents3_box1{
  width: 100%;
}
.waste_contents3_box1_img:before{
  padding-top: 71.51%;
}
.waste_contents3_box2{
  width: 100%;
  margin-top: 20px;
  ;
}
.waste_contents3_box2 .sec_tt .en{
  font-weight: 700;
  color: #181818;
  letter-spacing: 0.075em;
  font-family: "Noto Sans JP", sans-serif;
}
.waste_contents3_box2 .sec_tt:before{
  width: 32px;
  height: auto;
  aspect-ratio:1;
  background-image: url(/system_panel/uploads/images/nh.png);
  margin-right: 23px;
}
.waste_contents3_box2 .content_desc{

}

/*テーブル*/
.waste_contents3_tbl{
  margin-top: 33px;
}
.waste_contents3_tbl .table_rows_th,
.waste_contents3_tbl .table_rows_td{
  font-size: 16px;
  font-weight: 500;
  border: 1px solid var(--main-color);
  padding: 8px 17px;
}
.waste_contents3_tbl .table_rows_th{
  background: #346248;
  color: #fff;
}
.waste_contents3_tbl .table_rows_th p{
  letter-spacing: 0.075em;
}

.waste_contents3_tbl .table_rows_td{
  background: #fff;
}
.waste_contents3_tbl .table_rows_td p{
  letter-spacing: 0;
}

@media (max-width:767px){
  .waste_contents3_box2 .sec_tt .en{
    font-size: 24px;
  }
  .waste_contents4_chid:nth-child(n+2){
    margin-top: 24px;
  }
  .waste_contents4_item_tt{
    font-size: 24px;
  }

  /*テーブル*/
  .waste_contents3_tbl{

  }
  .waste_contents3_tbl .table_rows_th,
  .waste_contents3_tbl .table_rows_td{
    width: 100%;
    display: block;
    border-bottom: 0;
  }
  .waste_contents3_tbl .table_rows_th{

  }
  .waste_contents3_tbl .table_rows_td{

  }
  .waste_contents3_tbl .table_rows_tr:last-child .table_rows_td{
    border-bottom: 1px solid var(--main-color);
  }
}
@media (min-width:768px){
  /*車両*/
  .waste_contents3_items{
    margin-top: 70px;
  }
  .waste_contents3_item{

  }
  .waste_contents3_box1{

  }
  .waste_contents3_box1_img:before{

  }
  .waste_contents3_box2{
    margin-top: 30px;
    ;
  }
  .waste_contents3_box2 .sec_tt .en{

  }
  .waste_contents3_box2 .content_desc{

  }

  /*テーブル*/
  .waste_contents3_tbl{

  }
  .waste_contents3_tbl .table_rows_th,
  .waste_contents3_tbl .table_rows_td{
    font-size: 18px;
  }
  .waste_contents3_tbl .table_rows_th{
    width: 190px;
  }
  .waste_contents3_tbl .table_rows_td{

  }
}
@media (min-width:1024px){
  /*車両*/
  .waste_contents3_wrap .content_desc.center{
    margin-top: 38px;
  }
  .waste_contents3_items{
    margin-top: 90px;
  }
  .waste_contents3_item{

  }
  .waste_contents3_item:nth-child(n+2){
    margin-top: 85px;
  }
  .waste_contents3_box1{
    width: 55.26%;
  }
  .waste_contents3_box1_img:before{

  }
  .waste_contents3_box2{
    width: 38.48%;
    margin-top: 0;
  }
  .waste_contents3_box2 .sec_tt .en{

  }
  .waste_contents3_box2 .content_desc{

  }

  /*テーブル*/
  .waste_contents3_tbl{

  }
  .waste_contents3_tbl .table_rows_th,
  .waste_contents3_tbl .table_rows_td{

  }
  .waste_contents3_tbl .table_rows_th{
    width: 190px;
  }
  .waste_contents3_tbl .table_rows_td{

  }

}
@media (min-width:1200px){
  .waste_contents3_box2 .sec_tt .en{
    font-size: 40px;
  }

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

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

}

@media (min-width:1700px){
  .waste_contents3_box2 .sec_tt .en{
    font-size: 50px;
  }
}

/*******************************
*　インタビュー
********************************/

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

}
.pg_interview .section:nth-child(odd){

}
.pg_interview .section:nth-child(even){
  background: #c8d2cc;
}
.pg_interview .section.sec1{
  position: relative;
}
.pg_interview .section.sec1:before{
  content: "";
  display: block;
  width: 1802px;
  aspect-ratio:1802 / 1138;
  background-image: url(/system_panel/uploads/images/interview_bg1.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -117px;
  left: 53%;
  transform:translateX(-50%);
  pointer-events: none;
}
.pg_interview .section.sec2{

}


@media (max-width:374px){

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

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

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

  }
  .pg_interview .section.sec1{

  }
  .pg_interview .section.sec2{
    padding: 70px 0;
    margin-top: 45px;
  }
  .pg_interview .section.sec3{
    padding-top: 60px;
    padding-bottom: 80px;
  }
  .pg_interview .section.sec4{
    padding: 70px 0;
  }
  .pg_interview .section.sec5{
    padding: 60px 0 0;
  }

  .pg_interview .section.sec1:before{
    width: 1802px;
    top: 550px;
    left: 0%;
    transform:translateX(-50%);
  }
}
@media (min-width:1024px){
  /* セクション設定 */
  .pg_interview{

  }
  .pg_interview .section.sec1{

  }
  .pg_interview .section.sec2{
    padding: 90px 0 102px;
  }
  .pg_interview .section.sec3{
    padding-top: 82px;
    padding-bottom: 112px;
  }
  .pg_interview .section.sec4{
    padding: 90px 0;
  }
  .pg_interview .section.sec5{
    padding: 85px 0 0;
  }
  
  .pg_interview .section.sec1:before{
    width: 1500px;
    top: 250px;
    left: 0%;
    transform:translateX(-25%);
  }

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

  .pg_interview .section.sec1:before{
    width: 1500px;
    top: 250px;
    left: -10%;
    transform:translateX(0%);
  }

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

  .pg_interview .section.sec1:before{
    width: 1500px;
    top: 250px;
    left: 5%;
    transform:translateX(0%);
  }

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

  .pg_interview .section.sec1:before{
    width: 1802px;
    top: -117px;
    left: 53%;
    transform:translateX(-50%);
  }

}

/* メイン部分 */
.interview_tt{
  font-size: 22px;
  font-weight: 700;
  line-height: 1.57em;
  text-indent: -1.2em;
  padding-left: 1.2em;
}
.pg_interview .section.sec1 .waste_contents4_wrap{
  margin-bottom: 40px;
}

.interview_comment_items{

}
.interview_comment_item{

}
.interview_comment_item:nth-child(n+2){
  margin-top: 50px;
}
.interview_comment_item .interview_tt{

}
.interview_comment_item .content_desc{

}
.home_contents3_wrap.interview .home_contents3_box1 .content_desc strong,
.interview_comment_item .content_desc strong{
  font-size: 18px;
  font-weight: 900;
  color: var(--main-color);
}

.interview_comment_img{
  margin-top: 30px;
}
.interview_comment_img:before{
  padding-top: 29.6%;
}
.pg_interview .section.sec3 .home_contents3_box2_img:before{
  padding-top: 71.79%;
}

@media (max-width:767px){
  .interview_tt{
    font-size: 20px;
  }
}
@media (min-width:768px){
  .interview_tt{
    font-size: 28px;
  }
  .pg_interview .section.sec1 .waste_contents4_wrap{
    margin-bottom: 60px;
  }

  .interview_comment_items{

  }
  .interview_comment_item{

  }
  .interview_comment_item:nth-child(n+2){
    margin-top: 80px;
  }
  .interview_comment_item .interview_tt{

  }
  .interview_comment_item .content_desc{
    margin-top: 30px;
  }
  .home_contents3_wrap.interview .home_contents3_box1 .content_desc strong,
  .interview_comment_item .content_desc strong{
    font-size: 20px;
  }
  .interview_comment_img{
    margin-top: 80px;
  }
}
@media (min-width:1024px){
  .interview_tt{
    font-size: 35px;
    margin-right: -20px;
  }
  .pg_interview .section.sec1 .waste_contents4_wrap{
    margin-bottom: 75px;
  }
  .home_contents3_box1{

  }
  .home_contents3_wrap.interview .home_contents3_box1{
    width: 44.73%;
  }
  .home_contents3_wrap.interview .home_contents3_box2{
    padding-top: 12px;
  }
  .home_contents3_wrap.interview .home_contents3_box1 .content_desc{
    margin-top: 29px;
  }

  .interview_comment_items{

  }
  .interview_comment_item{

  }
  .interview_comment_item .interview_tt{

  }
  .interview_comment_item .content_desc{

  }
  .home_contents3_wrap.interview .home_contents3_box1 .content_desc strong,
  .interview_comment_item .content_desc strong{
    font-size: 23px;
  }
}
@media (min-width:1200px){


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

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

}

@media (min-width:1700px){

}

/*******************************
*　サスティナ
********************************/

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

}
.pg_sustainable .section.sec1{
  position: relative;
  z-index: 2;
}
.pg_sustainable .section.sec2{
  position: relative;
  z-index: 1;
}
.pg_sustainable .section.sec2:before{
  content: "";
  display: block;
  width: 1836px;
  aspect-ratio:1836 / 1851;
  background-image: url(/system_panel/uploads/images/wq.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: -1;
  top: -690px;
  left: 48%;
  transform:translateX(-50%);
  pointer-events: none;
}
.pg_sustainable .section.sec3{
  position: relative;
  z-index: 1;
  background: var(--sub-color);
}
.pg_sustainable .section.sec4{
  position: relative;
  z-index: 1;
}
.pg_sustainable .section.sec5{
  position: relative;
  z-index: 1;
}
.pg_sustainable .section.sec6{
  position: relative;
  z-index: 1;
}

.pg_sustainable .section.sec4 .page_content_items.type2 .sec_sub_tt p{
  letter-spacing: 0.075em;
}

@media (max-width:374px){

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

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

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

  }
  .pg_sustainable .section.sec1{

  }
  .pg_sustainable .section.sec2{
    padding-top: 75px;
    padding-bottom: 125px;
  }
  .pg_sustainable .section.sec3{
    padding-top: 75px;
    padding-bottom: 75px;
  }
  .pg_sustainable .section.sec4{
    padding-top: 75px;
    padding-bottom: 75px;
  }
  .pg_sustainable .section.sec5{
    padding-top: 75px;
    padding-bottom: 75px;
  }
  .pg_sustainable .section.sec6{
    padding-top: 75px;
    padding-bottom: 50px;
  }
  .pg_sustainable .section.sec7{
    
  }

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

  }
  /*.pg_sustainable .section.sec1{

  }
  .pg_sustainable .section.sec2{
    padding-top: 75px;
    padding-bottom: 235px;
  }
  .pg_sustainable .section.sec3{
    padding-top: 125px;
    padding-bottom: 155px;
  }
  .pg_sustainable .section.sec4{
    padding-top: 125px;
    padding-bottom: 150px;
  }
  .pg_sustainable .section.sec5{
    padding-top: 90px;
    padding-bottom: 95px;
  }
  .pg_sustainable .section.sec6{
    padding-top: 130px;
    padding-bottom: 50px;
  }
  .pg_sustainable .section.sec7{
    
  }*/
  
  .pg_sustainable .section.sec3 .page_content_item:nth-child(n+2){
    margin-top: 70px;
  }
  .pg_sustainable .section.sec4 .page_content_items.type2 .content_desc {
    margin-top: 48px;
  }
}
@media (min-width:1200px){

  .pg_sustainable .section.sec1{

  }
  .pg_sustainable .section.sec2{
    padding-top: 75px;
    padding-bottom: 235px;
  }
  .pg_sustainable .section.sec3{
    padding-top: 125px;
    padding-bottom: 155px;
  }
  .pg_sustainable .section.sec4{
    padding-top: 125px;
    padding-bottom: 150px;
  }
  .pg_sustainable .section.sec5{
    padding-top: 90px;
    padding-bottom: 95px;
  }
  .pg_sustainable .section.sec6{
    padding-top: 130px;
    padding-bottom: 50px;
  }
  .pg_sustainable .section.sec7{
    
  }
  
  .pg_sustainable .section.sec4 .page_content_items.type2 .page_content_item:nth-child(odd) .page_content_box2{
    padding: 45px 75px 30px 0;
  }
  .pg_sustainable .section.sec4 .page_content_items.type2 .page_content_item:nth-child(even) .page_content_box2 {
    padding: 45px 0 30px 75px;
  }
  .pg_sustainable .section.sec4 .page_content_items .page_content_box2{
    min-height: 607px;
  }
    
}
@media (min-width:1720px){
  .pg_sustainable .section.sec4 .page_content_items.type2 .sec_sub_tt p{
    margin-left: 10px;
  }
}
  


/* メイン部分 */
.pg_sustainable .section.sec1 .business_contents3_cate{
  margin-bottom: 50px;
}
.pg_sustainable .section.sec1 .home_contents3_box2_img:before{
  padding-top: 71.79%;
}
.sdgs_img{
  text-align: center;
}


/* 福利厚生 */
.sustainable_benefit_bg{
  position: absolute;
  z-index: -1;
  inset: 0;
}
.sustainable_benefit_bg.img_fit:before{
  padding-top: 0;
  height: 100%;
}
.sustainable_benefit_bg:after{
  content: "";
  background: rgba(0,0,0,0.3);
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}
.sustainable_benefit{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
}
.sustainable_benefit_box1{
  
}
.sustainable_benefit_box2{
  margin-top: 10px;
}
.sustainable_benefit .sec_tt_en{
  margin-top: 10px;
}
.sustainable_benefit_txt{
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  color: #FFF;
}

.sustainable_benefit_list{
}
.sustainable_benefit_list_item{
  width: 100%;
}
.sustainable_benefit_list_item_inner{
  background: #FFF;
  padding: 30px 22px;
  height: 100%;
}
.sustainable_benefit_list_item_title{
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  line-height: 1.4545;
  color: var(--main-color);
  margin-bottom: 16px;
}
.sustainable_benefit_list_item_title:after{
  content: "";
  display: block;
  margin: 20px auto 0;
  width: 50px;
  height: 1px;
  background: var(--main-color);
}
.sustainable_benefit_list_item_txt{
  font-size: 16px;
  line-height: 1.875;
  text-align: justify;
}

/* 求める人物像 */
.sustainable_personality{
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
* + .sustainable_personality{
  margin-top: 30px;
}
.sustainable_personality_item{
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}
.sustainable_personality_item:nth-child(n+2){
  margin-top: 40px;
}
.sustainable_personality_item_img{
  
}
.sustainable_personality_item_img.img_fit:before{
  padding-top: 67.114%;
}
.sustainable_personality_item_title{
  font-size: 20px;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--main-color);
  border-bottom: 2px solid;
  padding-bottom: 10px;
  margin-top: 15px;
  margin-bottom: 10px;
}
.sustainable_personality_item_txt{
  font-size: 16px;
  font-weight: 500;
  line-height: 1.875;
  text-align: justify;
}


/* 求人情報 */
.recruit_entry{
  margin-top: 65px;
}
* + .recruit_entry{
  
}
.recruit_entry_row{
  
}
.recruit_entry_row + .recruit_entry_row{
  margin-top: 50px;
}
.recruit_entry_title{
  font-size: 22px;
  font-weight: 900;
  line-height: 0.9;
  color: var(--main-color);
  border-left: 4px solid ;
  position: relative;
  z-index: 1;
  padding-left: 10px;
  padding-bottom: 2px;
  margin-bottom: 15px;
}

.recruit_tbl{
}
.recruit_tbl .table_rows_th,
.recruit_tbl .table_rows_td{
  background: #FFF;
  border-color: #dbdbdb;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.777;
  padding: 10px 10px 10px;
}
.recruit_tbl .table_rows_th{
  background: #f3f1f1;
}
.recruit_tbl .table_rows_td{
  
}


@media (max-width:767px){

}
@media (min-width:768px){
  
  /* メイン部分 */
  .pg_sustainable .section.sec1 .business_contents3_cate{
    margin-bottom: 100px;
  }
  .sdgs_img{
    margin-top: 90px;
  }
  
  /* 福利厚生 */
  .sustainable_benefit_bg{
  }
  
  .sustainable_benefit{
    margin-bottom: 30px;
  }
  .sustainable_benefit_box1{

  }
  .sustainable_benefit_box2{
    margin-top: 0;
  }
  .sustainable_benefit_txt{
    font-size: 36px;
  }

  .sustainable_benefit_list{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-left: -9px;
    margin-right: -9px;
  }
  .sustainable_benefit_list_item{
    width: 33.333%;
    padding: 0 9px;
  }
  .sustainable_benefit_list_item:nth-child(n+4){
    margin-top: 20px;
  }
  .sustainable_benefit_list_item_inner{
    padding: 30px 15px;
    height: 100%;
  }
  .sustainable_benefit_list_item_title{
    font-size: 20px;
    margin-bottom: 16px;
  }
  .sustainable_benefit_list_item_title:after{
    margin: 20px auto 0;
    width: 50px;
  }
  .sustainable_benefit_list_item_txt{
    font-size: 16px;
    /*line-height: 2;*/
  }
  
  /* 求める人物像 */
  .sustainable_personality{
    margin-left: -10px;
    margin-right: -10px;
  }
  * + .sustainable_personality{
    margin-top: 45px;
  }
  .sustainable_personality_item{
    width: 50%;
    padding-left: 10px;
    padding-right: 10px;
  }
  .sustainable_personality_item:nth-child(n+2){
    margin-top: 0;
  }
  .sustainable_personality_item:nth-child(n+3){
    margin-top: 40px;
  }
  .sustainable_personality_item_img{

  }
  .sustainable_personality_item_title{
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 10px;
  }
  .sustainable_personality_item_txt{
    font-size: 16px;
    /*line-height: 2.111;*/
  }
  
  /* 求人情報 */
  .recruit_entry{
    margin-top: 65px;
  }
  * + .recruit_entry{

  }
  .recruit_entry_row{

  }
  .recruit_entry_row + .recruit_entry_row{
    margin-top: 70px;
  }
  .recruit_entry_title{
    font-size: 36px;
    border-left: 8px solid ;
    padding-left: 25px;
    padding-bottom: 3px;
    margin-bottom: 30px;
  }

  .recruit_tbl{
  }
  .recruit_tbl .table_rows_th,
  .recruit_tbl .table_rows_td{
    font-size: 18px;
    line-height: 1.777;
    padding: 15px 15px 16px;
  }
  .recruit_tbl .table_rows_th{
    width: 220px;
  }
  .recruit_tbl .table_rows_td{

  }
  
}
@media (min-width:1024px){
  
  .sdgs_img{
    margin-top: 110px;
  }
  .pg_sustainable .section.sec2 .business_contents2_wrap .content_desc.center{
    text-align: justify;
  }
  
  .pg_sustainable .section.sec4 .page_content_items.type2 .page_content_box1_img{
    height: 100%;
  }
  .pg_sustainable .section.sec4 .page_content_items.type2 .page_content_box1_img:before{
    padding-top: 0;
    height: 100%;
  }
  
  * + .sustainable_personality{
    /*margin-top: 50px;*/
  }
  .sustainable_personality_item_title{
    font-size: 24px;
  }
  
  
  
}
@media (min-width:1200px){
  
  .pg_sustainable .section.sec2 .business_contents2_wrap .content_desc.center{
    text-align:center;
  }
  
  /* 福利厚生 */
  .sustainable_benefit_bg{
  }
  
  .sustainable_benefit{
    margin-bottom: 30px;
  }
  .sustainable_benefit_box1{

  }
  .sustainable_benefit_box2{

  }
  .sustainable_benefit_txt{
    font-size: 40px;
  }

  
  .sustainable_benefit_list{
    margin-left: -5px;
    margin-right: -5px;
  }
  .sustainable_benefit_list_item{
    width: 20%;
    padding: 0 5px;
  }
  .sustainable_benefit_list_item:nth-child(n+4){
    margin-top: 0;
  }
  .sustainable_benefit_list_item:nth-child(n+6){
    margin-top: 20px;
  }
  .sustainable_benefit_list_item_inner{
    padding: 30px 15px;
  }
  .sustainable_benefit_list_item_title{
    font-size: 18px;
    margin-bottom: 16px;
  }
  .sustainable_benefit_list_item_txt{
    line-height: 2;
  }
  
  /* 求める人物像 */
  .sustainable_personality{
    margin-left: -15px;
    margin-right: -15px;
  }
  * + .sustainable_personality{
    /*margin-top: 45px;*/
  }
  .sustainable_personality_item{
    width: 50%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .sustainable_personality_item:nth-child(n+3){
    margin-top: 40px;
  }
  .sustainable_personality_item_img{

  }
  .sustainable_personality_item_title{
    font-size: 30px;
    margin-top: 25px;
    margin-bottom: 10px;
  }
  .sustainable_personality_item_txt{
    font-size: 18px;
    line-height: 2.111;
  }
  
  /* 求人情報 */
  .recruit_entry{
    margin-top: 65px;
  }
  * + .recruit_entry{

  }
  .recruit_entry_row{

  }
  .recruit_entry_row + .recruit_entry_row{
    margin-top: 70px;
  }
  .recruit_entry_title{
    font-size: 45px;
    border-left: 8px solid ;
    padding-left: 25px;
    padding-bottom: 3px;
    margin-bottom: 50px;
  }

  .recruit_tbl{
  }
  .recruit_tbl .table_rows_th,
  .recruit_tbl .table_rows_td{
    font-size: 18px;
    line-height: 1.777;
    padding: 15px 15px 16px;
  }
  .recruit_tbl .table_rows_th{
    width: 285px;
  }
  .recruit_tbl .table_rows_td{

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

  /* 福利厚生 */
  .sustainable_benefit_bg{
  }
  
  .sustainable_benefit{
    margin-bottom: 70px;
  }
  .sustainable_benefit_box1{

  }
  .sustainable_benefit_box2{

  }
  .sustainable_benefit_txt{
    font-size: 60px;
  }
  
  .sustainable_benefit_list{
    margin-left: -9px;
    margin-right: -9px;
  }
  .sustainable_benefit_list_item{
    width: 20%;
    padding: 0 9px;
  }
  .sustainable_benefit_list_item:nth-child(n+4){
    margin-top: 0;
  }
  .sustainable_benefit_list_item:nth-child(n+6){
    margin-top: 20px;
  }
  .sustainable_benefit_list_item_inner{
    padding: 30px 22px;
  }
  .sustainable_benefit_list_item_title{
    font-size: 22px;
  }
  .sustainable_benefit_list_item_title:after{
    margin-top: 25px;
  }
  
  .recruit_entry_row + .recruit_entry_row{
    margin-top: 115px;
  }
  
}
@media (min-width:1450px){

}

@media (min-width:1700px){

}

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

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

}
.pg_company .section.sec1{

}
.pg_company .section.sec2{

}


@media (max-width:374px){

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

}
@media (max-width:767px){
  
  .pg_company{
    
  }
  
}
@media (min-width:768px){

  .pg_company{

  }
  .pg_company .section.sec1{

  }
  .pg_company .section.sec2{

  }

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


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


}


/* メイン部分 */
.company_map{
  
}
* + .company_map{
  margin-top: 30px;
}
.company_map iframe{
  width: 100%;
  height: 300px;
  border: 0;
}

/* ギャラリー */
.company_gallery_items{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}
* + .company_gallery_items{
  margin-top: 30px;
}
.company_gallery_item{
  width: 50%;
  padding: 0 5px;
}
.company_gallery_item:nth-child(n+3){
  margin-top: 10px;
}
.company_gallery_item_img{
  
}
.company_gallery_item_img.img_fit:before{
  padding-top: 71.42%;
}

@media (max-width:767px){

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


  /* メイン部分 */
  .company_map{

  }
  * + .company_map{
    margin-top: 50px;
  }
  .company_map iframe{
    height: 350px;
  }
  
  /* ギャラリー */
  .company_gallery_items{
    margin: 0 -10px;
  }
  * + .company_gallery_items{
    margin-top: 50px;
  }
  .company_gallery_item{
    width: 33.333%;
    padding: 0 10px;
  }
  .company_gallery_item:nth-child(n+3){
    margin-top: 0;
  }
  .company_gallery_item:nth-child(n+4){
    margin-top: 20px;
  }
  
}
@media (min-width:1024px){

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

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

  /* メイン部分 */
  .company_map{

  }
  * + .company_map{
    margin-top: 80px;
  }
  .company_map iframe{
    height: 400px;
  }

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

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

}

@media (min-width:1700px){

}


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

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


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

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

}

@media (min-width:1700px){

}


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

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


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

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

}

@media (min-width:1700px){

}




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

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

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

/* リスト */
.posts_list{

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

}


/* サイド */
.posts_side_wrap{

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

.posts_cat_item{
  padding-left: 0;
}
.posts_cat_item + .posts_cat_item{
  margin-top: 15px;
}
.posts_cat_item a{
  display: block;
  position: relative;
  padding-left: 30px;
  line-height: 1.5;
}
.posts_cat_item a:before{
  content: "■";
  position: absolute;
  left: 0;
  color: #c8d2cc;
}

/* 詳細 */
.posts_detail{
  border: none;
  border-bottom: 1px solid #b9b9b9;
  padding: 0 0 30px;
}
.posts_detail .webgene-item{

}
.posts_detail .meta{
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 12px;
}
.posts_detail .meta .category{
  width: 120px;;
  margin-left: 15px;
}
.posts_detail .meta .category span{
  font-size: 13px;
  padding: 2px 5px;
}
.posts_detail .meta .date{
  width: 110px;
  border-right: 1px solid #dddddd;
}
  
  
.posts_detail .meta{
  display: flex;
  align-items: center;
  border-bottom:none;
  padding-bottom: 5px;
  margin-bottom: 15px;
}
.posts_detail .meta .category{
  width: 120px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.075em;
  text-align: center;
  background: var(--main-color);
  color: #fff;
  border-radius: 0;
  padding: 1px 0;
  margin-bottom: 0;
}
.posts_detail .meta .category span{
  display: inline-block;
  background: #0069ba;
  border-radius: 5px;
  color: #FFF;
  min-width: 150px;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  padding: 2px 5px;
  line-height: 1.2;
}
.posts_detail .meta .date{
  font-size: 16px;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.075em;
}
.posts_detail .title{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.075em;
  border-bottom: 1px solid #b9b9b9;
  padding-bottom: 12px;
}
.posts_detail .post_content{
  font-size: 14px;
  font-weight: 500;
  line-height: 2.42em;;
  letter-spacing: 0.065em;
  text-align: justify;
  word-break: break-all;
}
.posts_detail .thumb{
  margin-bottom: 10px;
}

.posts_back_list{

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

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


/* 動画 */
.post_video{

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

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

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

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

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

  .posts_category_sp{
    display: none;
  }

  /* リスト */
  .posts_list{

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

  }

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

  /* 詳細 */
  .posts_detail{
    padding: 0 0 60px;
  }
  .posts_detail .webgene-item{

  }
  .posts_detail .meta{
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin-bottom: 12px;
  }
  .posts_detail .meta .category{
    width: 120px;;
    margin-left: 34px;
  }
  .posts_detail .meta .category span{
    font-size: 13px;
    padding: 2px 5px;
  }
  .posts_detail .meta .date{
    width: 125px;
    border-right: 1px solid #dddddd;
  }
  .posts_detail .title{
    padding-bottom: 12px;
  }
  .posts_detail .post_content{
    padding: 0;
  }
  .posts_detail .thumb{
    margin-bottom: 20px;
  }

  .pg_news .read_more{
    margin-top: 75px;
  }
}
@media (min-width:1024px){

  /* リスト */
  .posts_list{

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

  }

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

  .pg_news{
  }

}



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

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

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

/* メイン */
.gallery_main{

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

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

}


/* 詳細 */
.gallery_detail{

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

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


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

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

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

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

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

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

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

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

  }

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

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

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


}





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

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

@media (max-width:1023px){

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

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

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


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

/* フォーム */
.pg_contact .formTbl{
  border: 1px solid #b2b2b2;
  background: #ffffff;
}
.pg_contact .form.formWrap {
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}
.pg_contact .formRow + .formRow{
  border-top: 1px solid #b2b2b2;
}
.pg_contact .formTh {
  padding: 12px 15px 16px 20px;
  background: #e5e5e5;
  letter-spacing: 0.08em;
}
.pg_contact .formTh label{
  margin: 0;
}
.d-inline-block.requiredText {
  font-size: 13px;
  padding: 0 12px;
  margin-top: 3px;
  float: right;
  font-weight: 500;
  letter-spacing: 0.05em;
  background: #b80000;
  color: #ffffff;
}
.d-inline-block.requiredText.un_requiredText {
  background: #ffffff;
  color: #b80000;
  border: 1px solid #b80000;
}
.pg_contact .formTd {
  font-size: 15px;
  padding: 10px 16px;
}
.pg_contact .formTd input[type="text"],
.pg_contact .formTd input[type="tel"],
.pg_contact .formTd input[type="email"]{
  max-width: 461px;
  height: 39px;
  width: 100%;
  font-size: 16px;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
  letter-spacing: 0.18em;
}
.pg_contact .formTd select{
  border-radius: 0;
}
.pg_contact .formTd input[name="zip1"]{
  max-width: 120px;
}
.pg_contact .formTd input[name="zip2"]{
  max-width: 150px;
}
.pg_contact .formTd select[name="pref"]{
  max-width: 225px;
  width: 100%;
  font-size: 16px;
  padding: 7px 10px;
  border: 1px solid #d6d8d8;
}
.pg_contact .formTd input[name="city"]{
  max-width: 425px;
}
.pg_contact .formTd .addArea + .addArea{
  margin-top: 8px;
}
.pg_contact .formTd .addArea .labelText02{
  width: 75px;
}
.pg_contact .formTd textarea{
  width: 100%;
  height: 280px;
  font-size: 16px;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
}
.pg_contact .formWrap .text-center{
  padding-top: 40px;
}
.pg_contact input[name="privacy"]{
  margin-right: 7px;
}
.pg_contact .privacyLabel{
  font-size: 17px;
  font-weight: 500;
  display: inline;
}
.pg_contact .privacyLabel a{
  
  color: var(--main-color);
}
.pg_contact .formBtn.formSend {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  max-width: 314px;
  width: 100%;
  font-size: 18px;
  padding: 10px;
  margin: 32px auto 0;
  border: 0;
  letter-spacing: 0.1em;
  font-weight: 500;
/*  background: #b80000;
  color: #ffffff;
  */
  background: none;
  color: var(--main-color);
  cursor: pointer;
}
.pg_contact .formBtn.formSend:after{
  content: "";
  width: 87px;
  aspect-ratio:1;
  position:relative;
  z-index: 1;
  background-image: url(/system_panel/uploads/images/btn.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 50%;
  /*  top: 50%;
    right: 18px;
    -webkit-transform: translate(0, -50%);*/
  /*  transform: translate(0, -50%);*/
  transition: 0.2s all;
  margin-left: 10px;
}
.pg_contact .formBtn.formSend:hover:after{
  transform: translateX(10px);
}
.pg_contact label {
  display: inline-block;
  margin-bottom: 0;
}
.radioArea{
  padding: 0 0;
}
.radioArea .d-inline-block .label{
  margin: 3px 0;
  margin-left: 9px;
  letter-spacing: 0;
}
.radioArea .d-inline-block{
  margin-right: 40px;
}
.radioArea .d-inline-block:last-child{
  margin-right: 0;
}
label.label.zipcode_i {
  height: 39px;
  padding: 5px;
  background: #cccccc;
  margin: 0;
  display: inline-block;
  border: 1px solid #d6d8d8;
  border-right: 0;
  vertical-align: top;
}
.pg_contact .section.sec1 {
  padding: 0 0 0;
}

.pg_contact .formTd textarea::placeholder{
  letter-spacing: 0.16em;
}

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


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

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

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

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

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


.privacy_item_box {
  padding: 27px 49px 30px 30px;
  height: 397px;
  overflow: auto;
  background: #fff;
  border: 1px solid #dbdbdb;
  margin-top: 148px;
}


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


  .privacy_ttl{
    font-size: 18px;
  }

}

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

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

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

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


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

  .pg_contact .section.sec2{
    padding: 65px 0 30px;
  }
  
  .pg_contact .formBtn.formSend:after{
    width: 60px;
  }
  
  .privacy_item_box{
    margin-top: 50px;
  }
  .privacy_ttl {
    font-size: 15px;
    padding-left: 10px;
  }
  
  .privacy_item_box{
    padding: 27px 10px 30px 10px;
  }
}

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

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


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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}


@media (max-width:374px){

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

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

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

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }


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


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


}


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

.infiniteslide_wrap {
  /*overflow: hidden;*/
  white-space: nowrap;        /* 必須：途中で折り返させない */
  /*will-change: transform;*/   
}
.infiniteslide_wrap .half_txt{
  left: 0;
  right: 0;
  transform: none;
}
.infiniteslide_wrap .half_txt_inner + .half_txt_inner{
  margin-left: 30px;
}


/* 一文字ずつ表示するアニメーション */
.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);
}

