@charset "UTF-8";

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

  /* カラー(ボタン背景色など) */
  --main-color: #023a8c;
  --sub-color: #e83344;
  --txt-color: #181818;

  /* フォント関連 */
  --font-ja: "Noto Sans JP", sans-serif;
  /*--font-en: "Outfit",'Noto Sans JP', sans-serif;*/
  /*--font-en: "Oswald", 'Noto Sans JP',sans-serif;*/
  --font-en: "Cardo", 'Noto Sans JP', sans-serif;
  --font-mincho: 'Noto Serif JP', serif;
}


/* ******************************
   全体設定
   ****************************** */
body{
  font-family:  'Noto Sans JP', "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.075em;
  color: var(--txt-color);

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

#root{
  overflow: hidden;
}


/* ******************************
   コンテナ設定＋画面端までの距離
   ****************************** */
:root {

  /* 画面端までの距離（通常） */
  --margin-for-device-side: -15px;

  /* 画面端までの距離（ワイド） */
  --margin-for-device-side-w: -15px;

}
@media (min-width:768px){
  :root {
    --margin-for-device-side: calc(345px - 50vw);
    --margin-for-device-side-w: calc(345px - 50vw);
  }
}
@media (min-width:992px){
  :root {
    --margin-for-device-side: calc(465px - 50vw);
    --margin-for-device-side-w: calc(465px - 50vw);
  }
}
@media (min-width:1200px){
  :root {
    --margin-for-device-side: calc(555px - 50vw);
    --margin-for-device-side-w: calc(555px - 50vw);
  }
}
@media (min-width:1366px){

  /* コンテナサイズ:1286px */
  .container.wide{
    max-width: calc(1286px + 80px);
    padding-left: 40px;
    padding-right: 40px;
  }

  :root {
    --margin-for-device-side-w: calc(643px - 50vw);
  }

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

  /* コンテナサイズ:1370px */
  .container.wide{
    max-width: calc(1370px + 100px);
    padding-left: 50px;
    padding-right: 50px;
  }
  :root {
    --margin-for-device-side-w: calc(685px - 50vw);
  }

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

  /* コンテナサイズ:1520px */
  .container.wide{
    max-width: calc(1520px + 200px);
    padding-left: 100px;
    padding-right: 100px;
  }
  :root {
    --margin-for-device-side-w: calc(760px - 50vw);
  }
}


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

/* 管理画面の余白調整 */
.gjs-dashed #wrapper{
  padding-bottom: 150px;
}

@media (max-width:767px){
  #chatbot-btn {
    bottom: 55px!important;
    z-index: 5;
  }
}

.mincho{
  font-family: 'Noto Serif JP', serif;
}

p,
h1, h2, h3, h4, h5, h6{
  margin: 0;
  letter-spacing: 0.075em;
}
h1, h2, h3, h4, h5, h6{
  line-height: 1.5;
}

a{
  color: inherit;
  transition: 0.3s;
}
a:hover{
  text-decoration: none;
  /*opacity: 0.7;*/
  /*color: inherit;*/
}
img{
  max-width: 100%;
  width: auto;
}

ul, ol, li{
  margin: 0;
  padding: 0;
  list-style: none;
}

.img_fit{
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.img_fit:before{
  content: "";
  display: block;
  padding-top: 100%;
}
.img_fit img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: 'object-fit: cover';
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
}

a.img_fit{
  display: block;
}
a .img.img_fit img{
  transition: 0.2s all;
}
a:hover .img.img_fit img{
  transform: scale(1.05);
}

/* 動画埋め込みのレスポンシブ対応 */
iframe{
  max-width: 100%;
}
.responsive_video {
  position: relative;
}

.responsive_video:before{
  content: "";
  display: block;
  padding-top:56.25%;
}
.responsive_video video,
.responsive_video iframe,
.responsive_video object,
.responsive_video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.gjs-dashed .responsive_video:before{
  display: none;
}
.gjs-dashed .responsive_video [data-gjs-type="video"]:before{
  content: "";
  display: block;
  padding-top:56.25%;
  pointer-events: none;
}


/* 指定デバイスのみで表示するclass */
@media (min-width:1200px){
  .md:not(.pc){
    display: none!important;
  }
  .tb:not(.pc){
    display: none!important;
  }
  .sp:not(.pc){
    display: none!important;
  }
}
@media (min-width:1024px) and (max-width:1199px){
  .pc:not(.md){
    display: none!important;
  }
  .tb:not(.md){
    display: none!important;
  }
  .sp:not(.md){
    display: none!important;
  }
}
@media (min-width:768px) and (max-width:1023px){
  .pc:not(.tb){
    display: none!important;
  }
  .md:not(.tb){
    display: none!important;
  }
  .sp:not(.tb){
    display: none!important;
  }
}
@media (max-width:767px){
  .pc:not(.sp){
    display: none!important;
  }
  .md:not(.sp){
    display: none!important;
  }
  .tb:not(.sp){
    display: none!important;
  }
}


/* 指定デバイスで改行を消す */
@media (min-width:1720px){
  .fw_nobr br{
    display: none !important;
  }
}
@media (min-width:1520px){
  .lg_nobr br{
    display: none !important;
  }
}
@media (min-width:1200px){
  .pc_nobr br{
    display: none !important;
  }
}

@media (min-width:1024px) and (max-width:1199px){
  .md_nobr br{
    display: none !important;
  }
}
@media (min-width:768px) and (max-width:1023px){
  .tb_nobr br{
    display: none !important;
  }
}
@media (max-width:767px){
  .sp_nobr br{
    display: none !important;
  }
}


/* 指定した行数での切り取り */
.txt_ellipsis_line1,
.txt_ellipsis_line2,
.txt_ellipsis_line3,
.txt_ellipsis_line4,
.txt_ellipsis_line5,
.txt_ellipsis_line6,
.txt_ellipsis_line7,
.txt_ellipsis_line8,
.txt_ellipsis_line9,
.txt_ellipsis_line10{
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
.txt_ellipsis_line1{
  -webkit-line-clamp: 1;
}
.txt_ellipsis_line2{
  -webkit-line-clamp: 2;
}
.txt_ellipsis_line3{
  -webkit-line-clamp: 3;
}
.txt_ellipsis_line4{
  -webkit-line-clamp: 4;
}
.txt_ellipsis_line5{
  -webkit-line-clamp: 5;
}



/*******************************
*　ヘッダー
********************************/
.header{
  --logo-height: 30px;
}
.mv:before{
  content: "";
  display: block;
  width: 26.04%;
  aspect-ratio: 500 / 342;
  background-image: url(/system_panel/uploads/images/daikei.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.hdr1{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px;
}

/* ロゴ */
.hdr_logo{

}
.hdr_logo img{
  display: block;
  width: auto;
  height: auto;
  transition: 0.2s all;
}

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

/* TELボタン */
.hdr_tel{

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

}
.hdr_tel_link p{

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


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

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


@media (min-width:375px){

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

  .hdr1 {
    justify-content: center;
  }

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

  .hdr_logo{
    display: block;
    width: 17%;
    position: absolute;
    left: 0.8em;
    top: 0.5em;
    z-index: 3;
  }
  .hdr_contact_btn{
    display: none;
  }
}
@media (min-width:768px){

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

    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    padding: 16px 20px;
  }
  .hdr_outer{
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .hdr_contact_btn{
    text-align: center;
    display: block;
    width: 200px;
    border: 1px solid #023a8c;
    border-radius: 23px;
    background: #023a8c;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    padding: 11px;
    margin-left: 12px;
  }
  .hdr_contact_btn:hover{
    background: #fff;
    color: #023a8c;
  }
  .hdr_contact_btn p{
    letter-spacing: 0.025em;
  }
  .hdr_contact_btn p:before{
    content: "\f0e0";
    font-family: "fontAwesome";
    margin-right: 14px;
  }

  .hdr1{
    padding: 0 15px 0;
  }

  /* ロゴ */
  .hdr_logo{
    position: absolute;
    left: 2.8em;
    top: 1.5em;
    width: 11.87%;
    transition: all .2s;
  }
  .hdr_logo img{
    /*width: 180px;*/
  }

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

  }
  .header.slim .hdr_logo img{
    height: calc(var(--logo-height) * 0.8);
  }
  .header.slim .hdr_logo{
    width: 6.87%;
  }

  /* TELボタン */
  .hdr_tel{

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


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

  .header{
    --logo-height: 48px;
    padding: 24px 30px;
  }

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

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

  }
  .header.slim .hdr_logo img{
  }

  /* TELボタン */
  .hdr_tel{

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

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

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

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

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

  }
  .header.slim .hdr_logo img{
  }

}

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

.mv_outer{

}
.mv_items{

}
.mv_item{

}
.mv_item_img:before{
  padding-top: calc(100vh - 54px - 50px);
}

/* MVテキスト */
.mv_txt_box{
  width: 100%;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 2;
  color: #fff;
  text-shadow: 1.231px 1.576px 6px rgba(29, 29, 29, 1); 
}
.mv_txt_1{
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 0;
  font-style: italic;
}
.mv_txt_2{
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.025em;;
  line-height: 1.888em;
  margin-top: 10px;
}
.mv_txt_2 p{
  letter-spacing: 0.025em;;
}


/* スライダーの場合 */
.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:before{
    width: 250px;;
  }
  .mv_img{
  }
  .mv_img.img_fit:before{
    padding-top: 400px;
  }

  .mv_outer{

  }
  .mv_items{

  }
  .mv_item{

  }
  .mv_item_img:before{
    padding-top: 500px;
  }

  /* MVテキスト */
  .mv_txt_box{

  }
  .mv_txt_1{
    font-size: 42px;
  }
  .mv_txt_2{
    font-size: 18px;
  }

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


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

  .mv_outer{

  }
  .mv_items{

  }
  .mv_item{

  }
  .mv_item_img:before{
    padding-top: 500px;
  }

  /* MVテキスト */
  .mv_txt_box{

  }
  .mv_txt_1{
    font-size: 60px;
  }
  .mv_txt_2{

  }

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

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

  .mv_outer{

  }
  .mv_items{

  }
  .mv_item{

  }
  .mv_item_img:before{
    padding-top: calc(100vh - 65px);
    /*    padding-top: 880px;*/
  }

  /* MVテキスト */
  .mv_txt_box{

  }
  .mv_txt_1{
    font-size: 70px;
  }
  .mv_txt_2{

  }

}
@media (min-width:1536px){
  .mv_txt_1{
    font-size: 79px;
  }
}
@media (min-width:1720px){

}

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

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

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

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


@media (min-width:768px){

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

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


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

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

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

}


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

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

.pg_header:before{
  content: "";
  display: block;
  width: 26.04%;;
  aspect-ratio:500 / 342;
  background-image: url(/system_panel/uploads/images/daikei.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.pg_header_title_ja{
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 1.231px 1.576px 6px rgba(29, 29, 29, 1);
  font-style: italic;
  color: #fff;
}
@media (min-width:768px){
  .pg_header{
    margin-bottom: 40px;
  }
  .pg_header:before{
    content: "";
    display: block;
    width: 250px;;
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 350px;
  }

  .pg_header_title_txt{

  }

  .pg_header_title_ja{
    font-size: 40px;
  }
}
@media (min-width:1024px){
  .pg_header{
    margin-bottom: 70px;
  }
  .pg_header:before{
    content: "";
    display: block;
    width: 26.04%;;
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 350px;
  }

  .pg_header_title_txt{

  }

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

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

  .pg_header_title_txt{

  }

}



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

.footer{
  margin-top: 80px;
}

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

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

}
.ftr1_box2{

}

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


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

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

.ftr_addr em{
  font-style: normal;
}
.ftr_copy{
  font-size: 14px;
  text-align: center;
  border-top: 1px solid #fff;
  padding: 16px;
  color: #fff;
  margin-top: 30px;
}
.ftr_copy a:hover{
  color: var(--sub-color);
}

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

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


.ftr_contact_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #bfbfbf;
  border-bottom: 1px solid #bfbfbf;
  padding: 30px 0;
}
.ftr_contact_box1{
  width: 100%;
  text-align: center;
}
.ftr_contact_box2 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.ftr_contact_box1_en{
  font-size: 30px;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0;
  line-height: 1;
  color: #023a8c;
}
.ftr_contact_box1 .content_desc{
  text-align: justify;
  font-size: 15px;
  font-weight: 400;
  line-height: 2;
  font-family: "Noto Sans JP", sans-serif;
  margin-top: 20px;
}
.ftr_contact_box2_item{
  width: 100%;
}
.ftr_contact_box2_head{
  text-align: center;
}
.ftr_contact_box2_item_head_tt{
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
}
.ftr_contact_box2_item_head_tt:before{
  content: "";
  display: block;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-inline: auto;
  min-height: 24px;
  margin-bottom: 19px;
}
.ftr_contact_box2_item.tel .ftr_contact_box2_item_head_tt:before{
  background-image: url(/system_panel/uploads/images/tel.png);
  width: 25px;
  aspect-ratio: 25 / 24;
}
.ftr_contact_box2_item.mail .ftr_contact_box2_item_head_tt:before{
  background-image: url(/system_panel/uploads/images/mail.png);
  width: 25px;
  aspect-ratio: 25 / 18;
}
.ftr_contact_box2_item_head_tt:after{
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background: #a39c92;
  margin: 20px auto 31px;
}
.ftr_contact_box2_item_tel{
  text-align: center;
}
.ftr_contact_box2_item_tel1{
  font-size: 30px;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.075em;
  line-height: 1;
}
.ftr_contact_box2_item_tel1 a:hover{
  color: var(--sub-color);
}
.ftr_contact_box2_item_tel2{
  font-size: 14px;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.075em;
  margin-top: 7px;
}
.link_1{
  text-align: center;
  display: block;
  font-size: 15px;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  background: #e83344;
  color: #fff;
  width: 100%;
  max-width: 202px;
  margin-inline: auto;
  border: 1px solid transparent;
  transition: all .2s;
  border-radius: 0;
  padding: 12px;
}
.link_1:hover{
  background: #fff;
  border: 1px solid #e83344;
  color: #e83344;
}
.link_1 p{
  letter-spacing: 0;
}

.ftr_1{
  background: var(--main-color);
  margin-top: 50px;
  padding-top: 40px;
}
.ftr_1_box{
  display: flex;
  flex-wrap: wrap; 
  justify-content: space-between;
}
.ftr_1_box1{
  text-align: center;
  width: 100%;
  margin-bottom: 40px;
}
.ftr_logo{

}
.ftr_1_box2{
  width: 100%;
  color: #fff;
}
.ftr_1_add{

}
.ftr_1_add_item{
  display: flex;
  align-items: center;
}
.ftr_1_add_txt{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.025em;
  line-height: 2.25em;
}
.ftr_1_add_txt a:hover{
  color: var(--sub-color);
}
.ftr_1_add_txt.left{
  position: relative;
  padding-right: 10px;
  margin-right: 13px;
}
.ftr_1_add_txt.left:after{
  content: "";
  display: block;
  width: 1px;
  height: 18px;
  background: #fff;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.ftr_1_box3{
  width: 100%;
}
.ftr_1_box2_inner{

}
.ftr_links{

}

@media (min-width:375px){

}
@media (max-width:767px){
  .mv:before{
    width: 220px;
    left: -1px;
  }
  .pg_header:before{
    width: 150px;
  }

  body{
    padding-bottom: 56px;
  }

  .footer_fix{
    display: flex;
  }

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

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

  .ftr_logo{
    display: block;
    width: 46%;
    margin-inline: auto;
    margin-bottom: 0
  }


  .ftr_contact_box1 .content_desc{
    text-align: center;
  }
  .ftr_contact_box2_item {
    border-top: 1px solid #bfbfbf;
    padding: 30px 0;
  }
  .ftr_contact_box2_item:first-child {
    margin-top: 30px;
  }

  .ftr_1_box2{
    text-align: center;
  }
  .ftr_1_box3{
    display: none;
  }
  .ftr_1_add_item{
    width: 54%;
    margin: 0 auto;
  }
}
@media (min-width:768px){
  .footer{
    margin-top: 100px;
  }

  .ftr_contact_box1 .content_desc{
    margin-top: 30px;
  }
  .ftr_contact_box2 {
    margin-top: 40px;
  }
  .ftr_contact_box2_item {
    width: 50%;
    border-left: 1px solid #bfbfbf;
    padding: 20px 0;
  }
  .ftr_contact_box2_item:last-child{
    border-right: 1px solid #bfbfbf;
  }
  .ftr_contact_box1_en {
    font-size: 36px;
  }

  .ftr_copy{
    margin-top: 90px;
  }


  .ftr_1{
    margin-top: 72px;
    padding-top: 76px;
  }
  .ftr_1_box{

  }
  .ftr_1_box1{
    margin-bottom: 62px;
  }
  .ftr_logo{

  }
  .ftr_1_box2{
    width: 34.98%;
  }
  .ftr_1_add{

  }
  .ftr_1_add_txt{

  }
  .ftr_1_add_txt.left{

  }
  .ftr_1_box3{
    width:63.72%;
  }
  .ftr_1_box2_inner{
    background: #eeeeee;
    padding: 20px;
  }
  .ftr_links {
    display: flex;
    flex-wrap: wrap;
    margin-inline: -30px;
    position: relative;
  }
  .ftr_links:before {
    content: "";
    display: block;
    width: 1px;
    height: 265px;
    border-right: 1px dashed #b3b3b3;
    position: absolute;
    top: 5px;
    left: 50%;
    /* transform: translateY(-50%) translateX(-50%); */
  }
  .ftr_link{
    width: 50%;
    font-size: 16px;
    font-weight: 700;
    padding-bottom: 10px;
    padding-inline: 16px;
  }
  .ftr_link:hover{
    color: var(--sub-color);
  }
  .ftr_link:nth-child(n+3){
    margin-top: 20px;
  }
  .ftr_link p{
    position: relative;
    display: flex;
    align-items: center;
    padding-bottom: 6px;
    letter-spacing: 0.025em;
  }
  .ftr_link p:before{
    content: "";
    display: block;
    width: 22px;
    aspect-ratio: 1;
    background-image: url(/system_panel/uploads/images/btn_bk.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 9px;
  }
  .ftr_link p:after{
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #000;
    position: absolute;
    left: 0;
    bottom: 0;
  }
}
@media (min-width:1024px){
  .footer{
    margin-top: 200px;
  }

  .ftr_links:before{
    height: 265px;
  }

  .ftr_1_box3{
    width:60.72%;
  }
}
@media (min-width:1200px){
  .ftr_contact_box1 {
    width: 49.01%;
    text-align: left;
  }
  .ftr_contact_box2 {
    width: 50.98%;
    margin-top: 0;
  }
  .ftr_contact_box1 .content_desc{
    margin-top: 30px;
    text-align: justify;
  }
  .ftr_contact_box2_item{
    padding: 43px 0;
  }
  .ftr_contact_box2_item:last-child {
    border-right: none;
  }
  .ftr_contact_box1_en{
    font-size: 42px;
  }

  .ftr_1_box{

  }
  .ftr_1_box1{

  }
  .ftr_logo{

  }
  .ftr_1_box2{
    width: 25.98%;
    margin-left: 14px;
  }
  .ftr_1_add{

  }
  .ftr_1_add_txt{

  }
  .ftr_1_add_txt.left{

  }
  .ftr_1_box3{
    width: 70.72%;
    padding-top: 12px;
  }
  .ftr_1_box2_inner{
    padding: 37px 40px 30px;
  }
  .ftr_links{
    position: relative;
  }
  .ftr_links:before{
    content: "";
    display: block;
    width: 1px;
    height: 125px;
    border-right: 1px dashed #b3b3b3;
    position: absolute;
    top: 5px;
    left: 33.333%;
  }
  .ftr_links:after{
    content: "";
    display: block;
    width: 1px;
    height: 125px;
    border-right: 1px dashed #b3b3b3;
    position: absolute;
    top: 5px;
    right: 33.333%;
  }
  .ftr_link{
    width: 33.333%;
    padding-inline: 30px;
  }
  .ftr_link:nth-child(n+3) {
    margin-top: 0;
  }
  .ftr_link:nth-child(n+4) {
    margin-top: 8px;
  }
}
@media (min-width:1536px){
  .ftr_1_box3{
    width:60.72%;
  }
}

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


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

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

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


/* ページネーション */
.webgene-pagination {
  width: 100%;
  margin: 50px 0 0;
  line-height: 1.85;
}
.webgene-pagination ul{
  display: flex;
  justify-content: center;
  align-items: center;
}
.webgene-pagination li{
  padding: 4px 13px;
  margin: 0 4px;
  border: 1px solid #c0c0c0;
  background: #ffffff;
  font-weight: 500;
}
.webgene-pagination li.selected{
  border: 0;
  background: 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{
  min-width: 250px;
  font-size: 16px;
  font-weight:700;
  line-height: 1.2;
  text-align: left;
  border: 1px solid transparent;
  background: var(--sub-color);
  /*border-radius: 27px;*/
  color: #FFF;
  padding: 16px 20px;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.read_more a p{
  letter-spacing: 0;
}
.read_more a:after{
  content: "→";
  display: block;
  width: 28px;
  aspect-ratio:1;
  background: #fff;
  color: #181818;
  border-radius: 50%;
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 18px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
  display: flex;
  align-items: center;
  justify-content: center;
}
.read_more a:hover{
  color: #FFF;
  background: var(--main-color);
}
.read_more a:hover:after{
  margin-right: -5px;
}
.read_more.red a{
  background: #e83344;
}
.read_more.red a:hover{
  background: var(--main-color);
}


/* 見出し */
.tt2{
  text-align: center;
  margin-bottom: 30px;
}
.tt2_en{
  font-size: clamp(3.125rem, 1.338rem + 8.94vw, 12.063rem);
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  letter-spacing: 0;
  color: var(--main-color);
}
.tt2_ja{
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.075em;
  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{

}

/*流れる文字*/
.body_home .infiniteslide_wrap{
  margin-top: -2rem;
  position: relative;
  z-index: 2;
}
.flowing_letters{
  font-size: clamp(3.75rem, 2.5rem + 6.25vw, 10rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  font-family: "Oswald", sans-serif;
  color: #e83344;
}
.flowing_letters p{
  letter-spacing: 0;
}
.flowing_letters.no_active{
  text-align: center;
  white-space: nowrap;
  position: relative;

  z-index: 1;
}
.flowing_letters.no_active p{
  position: absolute;
  left: 50%;
  transform:translateX(-50%);
}
@media (max-width:374px){

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

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

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

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

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

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

  .anchor{
    top: -100px;
  }

  /*流れる文字*/
  .body_home .flowing_letters.no_active{
    margin-top: -3rem;
  }

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

  /* ボタン */
  .read_more{
    margin-top: 25px;
  }
  .read_more.center{
    justify-content: center;
  }
  .read_more.left{
    justify-content: flex-start;
  }
  .read_more.right{
    justify-content: flex-end;
  }
  .read_more a{
    max-width: 285px;
    width: 100%;
    font-size: 16px;
    padding: 18px 27px;
    margin: 5px 5px;
  }
  .read_more a:after{
    right: 18px;
  }

  /* 見出し */
  .tt2{
    margin-bottom: 50px;
  }
  .tt2_en{

  }
  .tt2_ja{
    font-size: 20px;
    margin-top: 24px;
  }

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


}
@media (min-width:1024px){
  /*流れる文字*/
  .body_home .flowing_letters.no_active{
    margin-top: -3.5rem;
  }
  /* ページネーション */
  .webgene-pagination{
    margin-top: 77px;
  }
  .posts_list .webgene-pagination{
    margin-top: 80px;
  }

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

}
@media (min-width:1200px){
  /*流れる文字*/
  .body_home .flowing_letters.no_active{
    margin-top: -4rem;
  }

}


@media (min-width:1366px){
  /*流れる文字*/
  .body_home .flowing_letters.no_active{
    margin-top: -4rem;
  }
  /* 見出し */
  .tt2{
    margin-bottom: 50px;
  }
  .tt2_en{

  }
  .tt2_en.mid{
    font-size: 20px;
  }
  .tt2_ja{
    font-size: 24px;
  }

}


@media (min-width:1536px){
  /*流れる文字*/
  .body_home .flowing_letters.no_active{
    margin-top: -4.5rem;
  }
}
@media (min-width:1720px){
  /*流れる文字*/
  .body_home .flowing_letters.no_active{
    margin-top: -5.5rem;
  }
}
.swiper-pagination{
  position: static;
  margin-top: 5px;
}
.swiper-pagination-bullet{
  background-color: var(--main-color);
}
.swiper-pagination-bullet-active{
  background-color: var(--sub-color);
}



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

}
.pg_home .section.sec1{
  padding-top: 100px;
}
.pg_home .section.sec2{
  position: relative;
}
.pg_home .section.sec3{
  margin-top: 65px;
}
.pg_home .section.sec4{
  position: relative;
  z-index: 1;
}
.pg_home .section.sec5{
  position: relative;
}
.pg_home .section.sec6{

}
.pg_home .section.sec7{

}
.pg_home .section.sec8{

}

@media (max-width:767px){

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

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

  }
  .pg_home .section.sec3{
    margin-top: 65px;
  }
  .pg_home .section.sec4{
    margin-top: 100px;
  }
  .pg_home .section.sec5{

  }
  .pg_home .section.sec6{

  }
  .pg_home .section.sec7{

  }
  .pg_home .section.sec8{

  }

}
@media (min-width:1024px){
  .pg_home .section.sec1{
    padding-top: 200px;
  }

}
@media (min-width:1200px){
  .pg_home .section.sec1{
    padding-top: 246px;
  }
  .pg_home .section.sec2{
    padding-top: 45px;
  }
  .pg_home .section.sec3{

  }
  .pg_home .section.sec4{
    margin-top: 146px;
  }
  .pg_home .section.sec5{
    padding-top: 123px;
  }
  .pg_home .section.sec6{
    padding-top: 130px;
  }
  .pg_home .section.sec7{

  }
  .pg_home .section.sec8{

  }

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


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


}


/*見出し*/

.home_contents1_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_contents1_box1{
  width: 100%;
  position: relative;
  order: 2;
  margin-top: 20px;;
}
.home_contents1_box1_item{
  width: 62.79%;
}
.home_contents1_box1_item.no1{

}
.home_contents1_box1_item.no1 .img{
  aspect-ratio: 537 / 539;
  position: relative;
}
.home_contents1_box1_item .img img{
  width: 100%;
  -webkit-mask-image: url(/system_panel/uploads/images/cover1.png);
  aspect-ratio: 537 / 539;
  max-width: none;
  position: absolute;
  z-index: 1;
  top: 0;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
}
.home_contents1_box1_item .img_fit:before{

}
.home_contents1_box1_item.no2{
  position: absolute;
  right: 0;
  top: 4.5em;
}
.cover_tt{
  font-size: 40px;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0;
  line-height: 1;
  padding-bottom: 16px;
  padding-right: 10px;
  color: #023a8c;
  position: relative;
  z-index: 2;
  padding-left:0;
}
.cover_tt.right{
  text-align: right;
}
.cover_tt p{
  width: 100%;
  letter-spacing: 0;
  display: inline-block;
  border-bottom: 5px solid #e83344;
}
.home_contents1_box2{
  width: 100%;
  order: 1;
}
.sub_txt{
  font-size: 22px;
  font-weight: 900;
  line-height: 1.26em;
}
.sub_txt p{
  letter-spacing: 0;
}
.sub_txt2{
  font-size: 17px;
  font-weight: 900;
  margin-top: 20px;
}
.sub_txt2 p{
  background: #023a8c;
  color: #fff;
  letter-spacing: 0.075em;
  padding: 5px 19px;
  width: 87.17%;
}
.content_desc{
  font-size: 16px;
  font-weight: 400;
  line-height: 2.125em;
  text-align: justify;
}
.content_desc p{
  letter-spacing: 0;
}
.home_contents1_box2 .content_desc{
  margin-top: 20px;
}
.home_contents1_box2 .read_more{

}

/*about*/
.home_contents2_bg_outer{
  width: 1920px;;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
.home_contents2_bg{
  aspect-ratio: 1920 / 1316;
  position: relative;
}
.home_contents2_bg img{
  width: 100%;
  -webkit-mask-image: url(/system_panel/uploads/images/hhh.png);
  aspect-ratio: 1920 / 1316;
  max-width: none;
  position: absolute;
  z-index: 1;
  top: 0;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
}
.home_contents2_wrap{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
.home_contents2_box1{
  width: 47%;
  order: 2;
  position: relative;
}
.home_contents2_box1_img:before{
  padding-top: 146.83%;
}
.home_contents2_box1_txt{
  position: absolute;
  bottom: 1px;
  right: -10px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  z-index: 2;

}
.bl_txt{
  font-size: 42px;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  letter-spacing: 0;
  color: #023a8c;
}
.home_contents2_box2{
  width: 100%;
  order: 1;
  margin-bottom: 50px;
  position: relative;
}
.home_contents2_box2_tt{
  font-size: 28px;
  font-weight: 900;
  line-height: 1.15em;
  margin-right: -20px;
}
.home_contents2_box2 .content_desc{
  margin-top: 20px;
}
.home_contents2_box2 .content_desc p{
  letter-spacing: 0.075em;
}
.content_block{

}
.content_block:nth-child(n+2){
  margin-top: 16px;
}
.home_contents2_box2 .read_more{

}
.home_contents2_box3{
  width: 47%;
  order: 3;
}
.home_contents2_box3_img:before{
  padding-top: 146.83%;
}

/*recrut*/
.home_contents3_wrap{

}
.home_contents3_head{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_contents3_head_box1{
  width: 100%;
}
.lg_ja_txt{
  font-size: 30px;
  font-weight: 900;
  line-height: 1.3em;
  font-style: italic;
}
.lg_ja_txt p{
  letter-spacing: 0;
}
.lg_ja_txt.sm {
  text-align: center;
}
.lg_ja_txt.sm p{
  border-bottom: 5px solid #e83344;
  padding-bottom: 10px;
}

.home_contents3_head_box2{
  width: 100%;
  margin-top: 20px;
}
.home_contents3_head_box2_desc{
  font-size: 15px;
  font-weight: 900;

}
.home_contents3_head_box2_desc p{
  display:inline-block;
  background: var(--main-color);
  color: #fff;
  padding: 2px 4px;
}
.home_contents3_head_box2_desc p:nth-child(n+2){
  margin-top: 5px;;
}

/*recruit*/
.home_contents3_main{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 40px;

}
.home_contents3_main_box1{
  width: 100%;
  position: relative;
  order: 1;

}
.home_contents3_main_box1_img{
  width: 92.88%;
  position: relative;
  aspect-ratio: 692 / 318;
}
.home_contents3_main_box1_img img{
  width: 100%;
  -webkit-mask-image: url(/system_panel/uploads/images/re.png);
  aspect-ratio: 692 / 318;
  max-width: none;
  position: absolute;
  z-index: 1;
  top: 0;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
}
.home_contents3_main_box1_img.no2{
  margin-left: auto;
  margin-top: 10px;
}
.home_contents3_main_box1_txt{
  position: absolute;
  top: 0;
  right: -12px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  z-index: 2;
}
.home_contents3_main_box2{
  width: 100%;
  order: 2;
  margin-top: 20px;
}
.home_contents3_main_box2 .content_desc{
  margin-top: 20px;
}

/*work*/
.home_contents4_bg_outer{
  width: 1600px;;
  position: absolute;
  top: 51%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
.home_contents4_bg:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.72) 59%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}
.home_contents4_bg{
  aspect-ratio: 1920 / 934;
  position: relative;
  -webkit-mask-image: url(/system_panel/uploads/images/hyu.png);
}
.home_contents4_bg img{
  width: 100%;

  aspect-ratio: 1920 / 934;
  max-width: none;
  position: absolute;
  z-index: 1;
  top: 0;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
}
.home_contents4_wrap{
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.home_contents4_box1{
  width: 100%;
}
.home_contents4_box1 .home_contents4_box1_txt{
  font-size: clamp(3.125rem, 1.338rem + 8.94vw, 12.063rem);
}
.home_contents4_box2{
  width: 100%;
}
.home_contents4_box2 .sub_txt{
  line-height: 1.4em;
}
.home_contents4_box2 .content_desc{
  margin-top: 20px;
}

/*staff*/
.home_contents5_bg:before{
  padding-top: 68.46%;
}
.home_contents4_wrap.staff{

}
.home_contents4_bg_outer.staff:after{
  display: none;
}
.home_contents4_bg_outer.staff:before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  right: -1px;
  pointer-events: none;
  background: linear-gradient(94deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15) 68%, rgba(255, 255, 255, 1) 95%);
  z-index: 2;
}
.home_contents4_bg_outer.staff:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 79%, rgba(255, 255, 255, 1) 100%);
  bottom: -1px;
  right: 0;
  z-index: 2;
}
.home_contents4_wrap.staff.home_contents4_box1{

}
.home_contents4_bg_outer.staff .bl_txt{
  font-size: clamp(3.125rem, 2rem + 5.63vw, 8.75rem);
  position: absolute;
  bottom: 0;
  right: 0.5em;
  z-index: 3;
}
.home_contents4_wrap.staff .home_contents4_box2{

}


/*topics*/
.home_contents6_head{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_contents6_head_box1{
  width: 100%;
}
.home_contents6_head_box1 .cover_tt{
  padding-right: 0;
}
.home_contents6_head_box1 .cover_tt p{

}
.home_contents6_head_box2{
  width: 100%;
}
.home_contents6_head_box2 .read_more{

}
.news_list{
  margin-top: 38px;
}
.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: 16px;
}
.news_list .webgene-item a{

}
.news_list .webgene-item a:hover{
  color: var(--sub-color);
}
.news_list .webgene-item .img:before{
  padding-top: 80%;
}
.news_list .webgene-item .box2{
  padding-top: 13px;
}
.news_list .webgene-item .category{
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  display: inline-block;
  text-align: center;
  border: 1px solid #bababa;
  padding: 2px 10px;
}
.news_list .webgene-item .title{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.75em;
  margin-top: 16px;
}
@media (max-width:374px){

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

}
@media (max-width:767px){
  .flowing_letters.no_active{
    margin-top: -0.6em;
  }

  .home_contents4_bg_outer{
    left: -32%;
  }

  .home_contents4_bg_outer.staff{
    position: relative;
    transform: none;
    width: 100%;
    top: 0;
    left: 0;
  }
  .home_contents4_wrap.staff .home_contents4_box1{
    margin-top: 20px;
  }
  .home_contents4_wrap.staff .home_contents4_box2{
    margin-top: 20px;
  }
}
@media (min-width:768px){
  /*見出し*/

  .home_contents1_wrap{

  }
  .home_contents1_box1{
    margin-top:50px;;
  }
  .home_contents1_box1_item{

  }
  .home_contents1_box1_item.no1{

  }
  .home_contents1_box1_item.no1 .img img{

  }
  .home_contents1_box1_item .img_fit:before{

  }
  .home_contents1_box1_item.no2{

  }
  .cover_tt{
    font-size: 60px;
    padding-left: 2em;
  }
  .cover_tt p{
    padding-bottom: 19px;
  }
  .home_contents1_box2{

  }
  .sub_txt{
    font-size: 30px;
  }
  .sub_txt2{
    font-size:18px;
    margin-top: 25px;
  }
  .content_desc{

  }
  .home_contents1_box2 .content_desc{
    margin-top: 41px;
  }
  .home_contents1_box2 .read_more{

  }

  /*about*/
  .home_contents2_bg{

  }
  .home_contents2_bg img{

  }
  .home_contents2_wrap{

  }
  .home_contents2_box1{

  }
  .home_contents2_box1_img:before{

  }
  .home_contents2_box1_txt{
    bottom: 1px;
    right: -36px;
  }
  .bl_txt{
    font-size: 50px;
  }
  .home_contents2_box2{
    margin-bottom: 80px;
  }
  .home_contents2_box2_tt{
    font-size: 40px;
  }
  .home_contents2_box2 .content_desc{
    margin-top: 41px;
  }
  .content_block{

  }
  .content_block:nth-child(n+2){
    margin-top: 35px;
  }
  .home_contents2_box2 .read_more{

  }
  .home_contents2_box3{

  }
  .home_contents2_box3_img:before{

  }

  /*recrut*/
  .home_contents3_wrap{

  }
  .home_contents3_head{

  }
  .home_contents3_head_box1{
    width: 70.51%;
  }
  .lg_ja_txt{
    font-size: 53px;
  }
  .lg_ja_txt.sm p{
    padding-bottom: 23px;
  }
  .lg_ja_txt.sm{
    font-size: 45px;
  }

  .home_contents3_head_box2{
    width: 25.48%;
    margin-top: 0;
  }
  .home_contents3_head_box2_desc{
    font-size: 16px;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .home_contents3_head_box2_desc p{
    padding: 5px 4px;
    margin-left: 10px;
  }
  .home_contents3_head_box2_desc p:nth-child(n+2){
    margin-top: 0;
  }

  /*recruit*/
  .home_contents3_main{
    margin-top: 60px;
  }
  .home_contents3_main_box1{

  }
  .home_contents3_main_box1_img{

  }
  .home_contents3_main_box1_img img{

  }
  .home_contents3_main_box1_txt{

  }
  .home_contents3_main_box2{
    margin-top: 30px;
  }
  .home_contents3_main_box2 .content_desc{
    margin-top: 38px;
  }
  .home_contents3_main_box2 .read_more{
    margin-top: 36px;
  }

  /*work*/
  .home_contents4_bg_outer{
    width: 1920px;;
    top: 44%;
    left: 20%;
  }

  .home_contents4_bg:after{
    height: 100%;
    top: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) -9%, rgba(255, 255, 255, 0.25) 58%, rgba(255, 255, 255, 0) 100%);
  }
  .home_contents4_bg:after{

  }
  .home_contents4_bg{

  }
  .home_contents4_bg img{

  }
  .home_contents4_wrap{

  }
  .home_contents4_box1{
    width: 13.48%;
    padding-top: 10px;
  }
  .home_contents4_box1 .home_contents4_box1_txt{
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
  .home_contents4_box2{
    width: 55.52%;
  }
  .home_contents4_box2 .content_desc{
    margin-top: 30px;
  }
  .home_contents4_box2 .read_more{
    margin-top: 37px;
  }

  /*staff*/

  .home_contents4_bg_outer.staff{
    width: 72.16%;
    left: calc(50% - 250px);
    transform: translateX(-50%);
    top: 0;
  }
  .home_contents4_wrap.staff{
    justify-content: flex-end;
    align-items: flex-end;

  }
  .home_contents4_wrap.staff .home_contents4_box1{
    width: auto;
    margin-right: 4%;
  }
  .home_contents4_wrap.staff .home_contents4_box2{
    width: 38.25%;
  }

  /*topics*/
  .home_contents6_head{
    align-items: flex-start;
  }
  .home_contents6_head_box1{
    width: 47.03%;
  }
  .home_contents6_head_box1 .cover_tt{
    padding-right: 0;
    padding-left: 0;
  }
  .home_contents6_head_box1 .cover_tt p{

  }
  .home_contents6_head_box2{
    width: auto;
    margin-top: 6px;
  }
  .home_contents6_head_box2 .read_more{

    margin-top: 0;
  }
  .news_list{

  }
  .news_list .webgene-blog{
    margin-inline:-10px;
  }
  .news_list .webgene-item{
    width: 50%;
    width: 25%;
    padding-inline:10px;
  }
  .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 .box2{

  }
  .news_list .webgene-item .category{
    padding: 2px 40px;
  }
  .news_list .webgene-item .title{
    margin-top: 20px;
  }
} 
@media (min-width:1024px){
  .home_contents4_bg_outer{
    left: 50%;  
  }

  /*staff*/
  .home_contents4_bg_outer.staff{
    width: 54.16%;
    left: calc(50% - 250px);
  }

  .news_list{

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


  .home_contents5_bg:before{
    padding-top: 85.46%;
  }
}
@media (min-width:1200px){
  /*見出し*/

  .home_contents1_wrap{

  }
  .home_contents1_box1{
    width: 57.23%;
    order: 1;
    margin-top: 0;
  }
  .home_contents1_box1_item{

  }
  .home_contents1_box1_item.no1{

  }
  .home_contents1_box1_item.no1 .img img{

  }
  .home_contents1_box1_item .img_fit:before{

  }
  .home_contents1_box1_item.no2{

  }
  .cover_tt{
    font-size: 68px;
    padding-right: 28px;
  }
  .home_contents1_box2{
    width: 38.48%;
    padding-top: 5px;
    order: 2;
  }
  .sub_txt{
    font-size: 40px;
  }
  .sub_txt2{
    font-size: 22px;
  }
  .content_desc{

  }
  .home_contents1_box2 .content_desc{

  }
  .home_contents1_box2 .read_more{

  }

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


  /*about*/
  .home_contents2_bg{

  }
  .home_contents2_bg img{

  }
  .home_contents2_wrap{

  }
  .home_contents2_box1{
    width: 25.98%;
    order: 1;
    padding-top: 270px;
  }
  .home_contents2_box1_img:before{

  }
  .home_contents2_box1_txt{
    bottom: 1px;
    right: -36px;
  }
  .bl_txt{
    font-size: 68px;
  }
  .home_contents2_box2{
    width: 35.52%;
    margin-bottom: 0;
    order: 2;
    padding-top: 102px;
  }
  .home_contents2_box2_tt{
    font-size: 47px;
    margin-right: -48px;
  }
  .home_contents2_box2 .content_desc{
    margin-top: 41px;
  }
  .content_block{

  }
  .home_contents2_box2 .read_more{
    margin-top: 43px;
  }
  .home_contents2_box3{
    width: 25.98%;
    order: 3;
  }
  .home_contents2_box3_img:before{

  }

  /*recrut*/
  .home_contents3_wrap{

  }
  .home_contents3_head{

  }
  .home_contents3_head_box1{

  }
  .lg_ja_txt{
    font-size: 90px;
  }
  .lg_ja_txt p{
    margin-right: -50px;
  }
  .lg_ja_txt.sm{
    font-size: 70px;
  }

  .home_contents3_head_box2{
    width: 20.48%;
    position: relative;
    left: 0;
    margin-top: 20px;
  }
  .home_contents3_head_box2_desc{

  }
  .home_contents3_head_box2_desc p{

  }
  .home_contents3_head_box2_desc p{
    margin-left: 25px;
  }

  /*recruit*/
  .home_contents3_main{
    margin-top: 70px;
  }
  .home_contents3_main_box1{
    width: 49.01%;
    margin-top: 0;
    margin-top: 10px;
    order: 1;

  }
  .home_contents3_main_box1_img{

  }
  .home_contents3_main_box1_img img{

  }
  .home_contents3_main_box1_txt{

  }
  .home_contents3_main_box2{
    width: 44.73%;
    order: 2;
    margin-top: 0;
  }

  /*work*/
  .home_contents4_bg_outer.staff{
    left: calc(50% - 450px);
  }
  .home_contents4_bg_outer.staff .home_contents4_bg:after{
    height: 95.5%;
    top: 0;

  }
  .home_contents4_bg_outer.staff{
    width: 70.16%;
  }
  .home_contents4_bg{

  }
  .home_contents4_bg img{

  }
  .home_contents4_wrap{
    display: flex;
    flex-wrap: wrap;
  }
  .home_contents4_box1{

  }
  .home_contents4_box1 .home_contents4_box1_txt{

  }
  .home_contents4_box2{
    width: 35.52%;
  }
  .home_contents4_box2 .sub_txt{
    margin-right: -30px;
  }

  /*staff*/
  .home_contents4_bg_outer.staff{
    top: 40%;
    transform: translateY(-50%) translateX(-50%);
  }

  /*staff*/
  .home_contents5_bg:before{
    padding-top: 80.46%;
  }
  .home_contents4_wrap.staff{

  }
  .home_contents4_wrap.staff .home_contents4_box1{

  }
  .home_contents4_wrap.staff .home_contents4_box2{
    width: 31.25%;
    margin-right: 14%;
  }

  /*topics*/
  .home_contents6_head{

  }
  .home_contents6_head_box1{

  }
  .home_contents6_head_box1 .cover_tt{
    padding-left: 0;
    padding-right: 0;
  }
  .home_contents6_head_box1 .cover_tt p{

  }
  .home_contents6_head_box2{
    width: 18.75%;
  }
  .home_contents6_head_box2 .read_more{

  }
  .news_list{

  }
  .news_list .webgene-blog{

  }
  .news_list .webgene-item{

  }
  .news_list .webgene-item a{

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

  }
  .news_list .webgene-item .box2{

  }
  .news_list .webgene-item .category{

  }
  .news_list .webgene-item .title{

  }
  .home_contents4_bg:after{
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) -9%, rgba(255, 255, 255, 0.5) 58%, rgba(255, 255, 255, 0) 100%);
  }

}
@media (min-width:1470px){
  /*見出し*/
  .sub_txt{
    font-size: 46px;
  }
  .sub_txt2{
    font-size: 22px;
  }

  /*about*/
  .home_contents2_box2_tt{
    font-size: 55px;
  }

  /*recrut*/
  .lg_ja_txt{
    font-size: 120px;
  }
  .lg_ja_txt.sm{
    font-size: 70px;
  }

  .home_contents3_head_box1{
    width: 86.51%;
  }
  .home_contents3_head_box2{
    width: 13.48%;
    position: relative;
    left: -22px;
    margin-top: 20px;
  }

  .home_contents4_bg:after{
    height: 100%;
    top: 22px;
  }

  .home_contents5_bg:before{
    padding-top: 80.46%;
  }
  .home_contents4_bg_outer.staff{
    width: 54.16%;
  }
}
@media (min-width:1720px){
  /*見出し*/
  .sub_txt{
    font-size: 60px;
  }

  .sub_txt2{
    font-size: 24px;
  }

  /*about*/
  .home_contents2_box2_tt{
    font-size: 78px;
  }

  /*recrut*/
  .lg_ja_txt{
    font-size: 150px;
  }

  .lg_ja_txt.sm{
    font-size: 100px;
  }

  .home_contents4_bg:after{
    height: 90%;
    top: 100px;
    background: linear-gradient(90deg,rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.13) 59%, rgba(255, 255, 255, 0) 100%);
  }

  .home_contents4_bg_outer.staff{
    top: 44%;
    transform: translateY(-50%) translateX(-50%);
  }

  /*staff*/
  .home_contents5_bg:before{
    padding-top: 81.46%;
  }
}

@media (min-width:1920px){
  .home_contents5_bg:before {
    padding-top: 68.46%;
  }
}


/*******************************
*　about
********************************/

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

}
.pg_aboutus .section.sec1{
  padding-bottom: 60px;
  position: relative;
  z-index: 2;
}
.pg_aboutus .section.sec2{
  position: relative;
  padding-top: 0;
  margin-top: 30px;
}
.pg_aboutus .section.sec6{
  background: #023a8c; 
  padding-bottom: 40px;
}

.pg_aboutus .infiniteslide_wrap{
  position: relative;
  z-index: 2;
}

@media (max-width:374px){

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

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

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

  }
  .pg_aboutus .section.sec1{
    padding-bottom: 80px;
  }
  .pg_aboutus .section.sec2{
    margin-top: 40px;
  }
  .pg_aboutus .section.sec3{
    padding: 116px 0 100px;
  }
  .pg_aboutus .section.sec5{
    padding-top: 70px;
  }
  .pg_aboutus .section.sec6{
    padding: 70px 0;
  }

}
@media (min-width:1024px){
  .pg_aboutus .section.sec2{
    margin-top: 50px;
  }

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

  }
  .pg_aboutus .section.sec1{
    padding-bottom: 88px;
  }
  .pg_aboutus .section.sec2{
    margin-top: 72px;

  }
  .pg_aboutus .section.sec3{
    padding: 116px 0 100px;
  }
  .pg_aboutus .section.sec5{
    padding-top: 100px;
  }
  .pg_aboutus .section.sec6{
    padding: 106px 0 185px;
    margin-top: 75px;
  }
}
@media (min-width:1470px){
  .pg_aboutus .section.sec2{
    margin-top: 0;
    margin-top: 72px;
  }

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


}

.flowing_letters.sm .flowing_letters{
  font-size: clamp(3.125rem, 2.063rem + 5.31vw, 8.438rem)!important;
}
.pg_aboutus .section.sec1 .infiniteslide_wrap{
  margin-top: 50px;
}

.home_contents1_wrap.aboutus .home_contents1_box1_item.no1{
  width: 100%;
}
.home_contents1_wrap.aboutus .home_contents1_box1_item.no1 .img{
  aspect-ratio: 858 / 609;
}
.home_contents1_wrap.aboutus .home_contents1_box1_item.no1 .img img{
  -webkit-mask-image: url(/system_panel/uploads/images/d.png);
  aspect-ratio: 858 / 609;
}
.home_contents1_wrap.aboutus .cover_tt{
  margin-top: -1.1em;
}
.home_contents1_wrap.aboutus .sub_txt2 p{
  width: 100%;
  padding: 5px 7px;
}

/* メイン部分 */
.aboutus_contants1_outer{
  width: 100%;
  position: absolute;
  top: 47%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 2;
}
.aboutus_contants1_wrap{

}
.aboutus_contants1_bg:before{
  padding-top: 1750px;
}
.aboutus_contants1_tt{
  text-align: center;
  font-size: 30px;
  font-weight: 900;
}
.aboutus_contants1_wrap .content_desc.center{
  margin-top: 31px;
}
.aboutus_contants1_wrap .content_desc.center p{
  letter-spacing: 0.075em;
}
.aboutus_contants1_items{
  display: flex;
  flex-wrap: wrap;
  margin-top:40px;
}
.aboutus_contants1_item{
  width: 100%;
}
.aboutus_contants1_item:nth-child(n+2){
  margin-top: 30px;;
}
.aboutus_contants1_item_inner{
  background: var(--main-color);
  color: #fff;
  position: relative;
  padding: 30px 16px;;
}
.aboutus_contants1_item_tt{
  text-align: center;

}
.aboutus_contants1_item_h3{
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.075em;
  line-height: 1.666em;
}
.aboutus_contants1_item .content_desc{
  margin-top: 23px;
}
.aboutus_contants1_item_en{
  font-size: clamp(3.125rem, 2.25rem + 4.38vw, 7.5rem);
  font-weight: 900;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0;
  line-height: 1;
  position: absolute;
  top: 50%;
  left: -10px;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.1);
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

/*繰り返し*/
.page_contents_items{
  margin-top: 40px;
}
.page_contents_item{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
.page_contents_item:nth-child(n+2){
  margin-top: 40px;
}
.page_contents_item_box1{
  width: 100%;
  order: 2;
  margin-top: 20px;
}
.page_contents_item_box1 .sub_txt2 p{
  width: 100%;

}
.page_contents_item_box1 .sub_txt{

}
.page_contents_item_box1 .sub_txt2{

}
.page_contents_item_box1 .content_desc{
  margin-top: 20px;
}
.page_contents_item_box2{
  width: 100%;
  order: 1;
  position: relative;
}
.page_contents_item_box2_img:before{
  padding-top: 69.39%;
}
.home_contents2_box1_txt.red{
  color: #e83344;
}
.page_contents_item:nth-child(odd) .home_contents2_box1_txt.red{
  right: auto;
  left: -10px;
}
.page_contents_item:nth-child(even) .home_contents2_box1_txt.red{
  right: -12px;
}

/*社会の中での水道業界の使命とは*/
.aboutus_contants2_items{
  margin-top: 40px;
}
.aboutus_contants2_item{
  position: relative;
}
.aboutus_contants2_item:nth-child(n+2){
  margin-top: 30px;
}
.aboutus_contants2_item:before{
  content: "";
  display: block;
  width: 8.4%;
  height: 100%;
  background: #e6e6e6;
  position: absolute;
  top: 0;
  left: 0;
  clip-path: polygon(100% 0%, 100% 100%, 0% 100%);
}
.aboutus_contants2_item:nth-child(even):before{
  content: "";
  display: block;
  width: 8.4%;
  height: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  right: 0;
  left: auto;
  clip-path: polygon(100% 0%, 100% 100%, 0% 100%);
}
.aboutus_contants2_item:nth-child(odd){

}
.aboutus_contants2_item:after{
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background: #e6e6e6;
  position: absolute;
  top: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  z-index: -1;
}
.aboutus_contants2_item_inner{
  background: #e6e6e6;
  padding: 30px 0px;
}
.aboutus_contants2_item_tt{
  display: flex;
  align-items: center;
}
.aboutus_contants2_item_num{
  font-size: 40px;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  letter-spacing: 0;
  color: #e83344;

}
.aboutus_contants2_item_h3{
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0;
  margin-left: 17px;
}
.aboutus_contants2_item_h3 strong{
  color: #e83344;
}
.aboutus_contants2_item .content_desc{
  margin-top: 20px;
}

/*MVV*/
.mvv_wrap{

}
.mvv_items{

}
.mvv_item{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.mvv_item .sub_txt2{
  width: 100%;
  margin-bottom: 20px;
}
.mvv_item .sub_txt2 p{
  width: 100%;
}
.mvv_item:nth-child(n+2){
  margin-top: 30px;
}
.mvv_item_box1{
  display: none;
}
.mvv_item.block .mvv_item_box1{
  display: block;
}
.mvv_item_box1_img{
  text-align: center;
}
.mvv_item_box2{
  width: 100%;
}
.mvv_tt{
  font-size: 17px;
  font-weight: 900;
  line-height: 1.25em;
}
.mvv_tt p{
  letter-spacing: 0;
}
.mvv_item_box2 .content_desc{
  margin-top: 20px;
}
.mvv_item_lists{
  display: flex;
  flex-wrap: wrap;
}
.mvv_item_list{
  width: 100%;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.56em;
  letter-spacing: 0;
}

/*value*/
.value_wrap{
  background: #fff;
  padding: 30px 16px;
}
.value_wrap .business_sub_tt{

}
.value_items{
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
}
.value_item{
  width: 100%;
}
.value_item:nth-child(n+2){
  margin-top: 20px;;
}
.value_item_inner{

}
.value_item_tt{
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0;
  background: #e83344;
  color: #fff;
  padding: 0 16px;
  margin-bottom: 17px;
}
.value_item .content_desc{

}
@media (max-width:767px){
  .page_contents_item_box1 .sub_txt2 p{
    padding: 5px 7px;
  }

  .aboutus_contants2_item:before,
  .aboutus_contants2_item:nth-child(even):before{
    display: none;
  }

  .aboutus_contants1_outer{
    top: 49%;
  }
  .aboutus_contants1_bg:before{
    padding-top: 1680px;
  }

  .value_item_tt{
    text-indent: -1.1em;
    padding-left: 1.95em;
  }
}
@media (min-width:768px){
  .pg_aboutus .section.sec1 .infiniteslide_wrap{
    margin-top: 90px;
  }
  .home_contents1_wrap.aboutus .cover_tt{
    margin-top: -1.6em;
  }
  .home_contents1_wrap.aboutus .sub_txt2 p{
    padding: 5px 19px;
  }

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

  }
  .aboutus_contants1_wrap{

  }
  .aboutus_contants1_bg:before{
    padding-top: 1500px;
  }
  .aboutus_contants1_tt{
    font-size: 50px;
  }
  .aboutus_contants1_wrap .content_desc.center{
    text-align: center;
  }
  .aboutus_contants1_items{
    margin-inline:-16px;
    margin-top: 66px;
  }
  .aboutus_contants1_item{
    width: 50%;
    padding-inline:16px;
  }
  .aboutus_contants1_item:nth-child(n+2){
    margin-top: 0;;
  }
  .aboutus_contants1_item:nth-child(n+3){
    margin-top: 30px;;
  }
  .aboutus_contants1_item_inner{
    padding: 30px;
    height: 100%;
  }
  .aboutus_contants1_item_tt{

  }
  .aboutus_contants1_item_h3{
    font-size: 24px;
  }
  .aboutus_contants1_item .content_desc{

  }
  .aboutus_contants1_item_en{

  }

  /*繰り返し*/
  .page_contents_items{
    margin-top:80px;
  }
  .page_contents_item{

  }
  .page_contents_item:nth-child(n+2){
    margin-top: 60px;
  }
  .page_contents_item_box1{
    margin-top: 30px;
  }
  .page_contents_item_box1 .sub_txt{

  }
  .page_contents_item_box1 .sub_txt2{

  }
  .page_contents_item_box1 .content_desc{
    margin-top: 38px;
  }
  .page_contents_item_box2{

  }
  .page_contents_item_box2_img:before{

  }
  .home_contents2_box1_txt.red{

  }
  .page_contents_item:nth-child(odd) .home_contents2_box1_txt.red{
    right: auto;
    left: -21px;
  }
  .page_contents_item:nth-child(even) .home_contents2_box1_txt.red{
    right: -27px;
  }

  /*社会の中での水道業界の使命とは*/
  .aboutus_contants2_items{
    margin-top: 60px;
  }
  .aboutus_contants2_item{

  }
  .aboutus_contants2_item:nth-child(n+2){
    margin-top:53px;
  }
  .aboutus_contants2_item:nth-child(odd):after{
    margin-left: 0;
  }
  .aboutus_contants2_item:nth-child(even):after{
    margin-right: 0;
    right: 8.4%;
  }
  .aboutus_contants2_item_inner{
    padding: 47px 0 38px 5.4%;
    padding: 47px 10% 38px 8.4%;
  }
  .aboutus_contants2_item_tt{
    position: relative;
    z-index: 2;
  }
  .aboutus_contants2_item_num{
    font-size: 60px;
  }
  .aboutus_contants2_item_h3{
    font-size: 27px;
  }
  .aboutus_contants2_item .content_desc{

  }

  /*MVV*/
  .mvv_wrap{

  }
  .mvv_items{

  }
  .mvv_item{

  }
  .mvv_item_box1{

  }
  .mvv_item_box1_img{

  }
  .mvv_item_box2{

  }
  .mvv_tt{
    font-size: 24px;
  }
  .mvv_item_box2 .content_desc{

  }
  .mvv_item_lists{

  }
  .mvv_item_list{
    font-size: 20px;
    width: auto;
  }
  .mvv_item_list:nth-child(odd){
    width: 47.64%;
  }

  /*value*/
  .value_wrap{
    padding: 30px 24px;
  }
  .value_wrap .business_sub_tt{

  }
  .value_items{
    margin-inline:-15px;
  }
  .value_item{
    width: 50%;
    padding-inline:15px;
  }
  .value_item:nth-child(n+2){
    margin-top: 0;
  }
  .value_item:nth-child(n+3){
    margin-top: 54px;
  }
  .value_item_inner{

  }
  .value_item_tt{
    font-size: 20px;
    padding: 0 10px;
  }
  .value_item .content_desc{

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


  .aboutus_contants1_bg:before{
    padding-top: 1300px;
  }
  .page_contents_item:nth-child(odd) .home_contents2_box1_txt.red{
    right: auto;
    left: -21px;
  }
  .page_contents_item:nth-child(even) .home_contents2_box1_txt.red{
    right: -27px;
  }

  /*社会の中での水道業界の使命とは*/
  .aboutus_contants2_item_h3{
    font-size: 32px;
  }

  /*MVV*/
  .mvv_wrap{

  }
  .mvv_items{

  }
  .mvv_item{
    align-items: flex-end;
    position: relative;
  }
  .mvv_item.center{
    align-items: center;
  }
  .mvv_item:nth-child(n+2){
    margin-top: 40px;
  }
  .mvv_item:before{
    content: "";
    display: block;
    width: 90.78%;
    height: 1px;
    position: absolute;
    bottom: 0;
    right: 0;
  }
  .mvv_item:nth-child(2):before{
    background: #33c4e8;
  }
  .mvv_item:nth-child(3):before{
    background: #3ba8a4;
  }
  .mvv_item:nth-child(4):before{
    background: #3085c6;
  }

  .mvv_item_box1{
    display: block;
    width: 26.97%;  
  }
  .mvv_item:nth-child(n+2) .mvv_item_box1{
    padding-top: 11px;
  }
  .mvv_item_box1_img{

  }
  .mvv_item_box2{
    width: 69.73%;
    padding-bottom: 40px;;
  }
  .mvv_tt{
    font-size: 30px;
  }
  .mvv_item_box2 .content_desc{
    margin-top: 20px;
  }
  .mvv_item_lists{

  }
  .mvv_item_list{
    font-size: 18px;
  }
  .mvv_item_list:nth-child(odd){
    width: 47.64%;
  }

  /*value*/
  .value_wrap{
    padding: 30px 60px;
  }
}
@media (min-width:1200px){
  .pg_staff .tt2{
    margin-bottom: 68px;
  }

  .home_contents1_wrap.aboutus .home_contents1_box1{
    margin-top: 16px;
  }
  .home_contents1_wrap.aboutus .cover_tt{
    margin-top: -1.1em;
  }

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

  }
  .aboutus_contants1_wrap{

  }
  .aboutus_contants1_bg:before{
    padding-top: 979px;
  }
  .aboutus_contants1_tt{
    font-size: 78px;
  }
  .aboutus_contants1_wrap .content_desc.center{

  }
  .aboutus_contants1_items{

  }
  .aboutus_contants1_item{
    width: 33.33%;

  }
  .aboutus_contants1_item:nth-child(n+3){
    margin-top: 0;
  }
  .aboutus_contants1_item:nth-child(n+4){
    margin-top: 30px;;
  }
  .aboutus_contants1_item_inner{
    padding: 52px 30px;
  }
  .aboutus_contants1_item_tt{

  }
  .aboutus_contants1_item_h3{

  }
  .aboutus_contants1_item .content_desc{

  }
  .aboutus_contants1_item_en{

  }

  /*繰り返し*/
  .page_contents_items{
    margin-top: 107px;
  }
  .page_contents_item{

  }
  .page_contents_item:nth-child(n+2){
    margin-top: 103px;
  }
  .page_contents_item:nth-child(odd) .page_contents_item_box1{
    order: 1;
  }
  .page_contents_item:nth-child(odd) .page_contents_item_box2{
    order: 2;
  }
  .page_contents_item:nth-child(even) .page_contents_item_box1{
    order: 2;
  }
  .page_contents_item:nth-child(even) .page_contents_item_box2{
    order: 1;
  }
  .page_contents_item_box1{
    width: 42.76%;
    margin-top: 0;
  }
  .page_contents_item_box1 .sub_txt{

  }
  .page_contents_item_box1 .sub_txt2{

  }
  .page_contents_item_box1 .content_desc{
    margin-top: 38px;
  }
  .page_contents_item_box2{
    width: 49.01%;
    padding-top: 12px;
  }
  .page_contents_item_box2_img:before{

  }
  .home_contents2_box1_txt.red{

  }
  .page_contents_item:nth-child(odd) .home_contents2_box1_txt.red{
    right: auto;
    left: -36px;
  }
  .page_contents_item:nth-child(even) .home_contents2_box1_txt.red{
    right: -36px;
  }

  /*社会の中での水道業界の使命とは*/
  .aboutus_contants2_items{
    margin-top: 75px;
  }
  .aboutus_contants2_item{
    padding-left: 8.4%;
  }
  .aboutus_contants2_item_inner{

  }
  .aboutus_contants2_item_tt{

  }
  .aboutus_contants2_item_num{
    font-size: 85px;
  }
  .aboutus_contants2_item_h3{
    font-size: 32px;
  }
  .aboutus_contants2_item .content_desc{

  }

  /*MVV*/
  .mvv_wrap{

  }
  .mvv_items{

  }
  .mvv_item{
    align-items: flex-end;

  }
  .mvv_item_box1{

  }
  .mvv_item_box1_img{

  }
  .mvv_item_box2{
    padding-bottom: 30px;
  }
  .mvv_tt{
    font-size: 36px;
  }
  .mvv_item_box2 .content_desc{

  }
  .mvv_item_lists{

  }
  .mvv_item_list{
    font-size: 22px;
  }

  /*value*/
  .value_wrap{
    padding: 35px 90px 90px;
  }
  .value_wrap .business_sub_tt{

  }
  .value_items{

  }
  .value_item{

  }
  .value_item_inner{

  }
  .value_item_tt{
    font-size: 22px;
    padding: 0 20px;
  }
  .value_item .content_desc{

  }
}
@media (min-width:1470px){
  /* メイン部分 */
  .aboutus_contants1_item_inner{
    padding: 52px 54px;
  }

  .mvv_tt{
    font-size: 40px;
  }
  .mvv_item_list{
    font-size: 22px;
  }
}
@media (min-width:1720px){
  /*社会の中での水道業界の使命とは*/
  .aboutus_contants2_item_h3{
    font-size: 53px;
  }

  .aboutus_contants2_item_inner{
    padding: 47px 0 38px 5.4%;
  }

  .mvv_item_list{
    font-size: 28px;
  }

  .value_item_tt{
    font-size: 28px;
    padding: 0 33px;
  }
}
@media (min-width:768px) and (max-width:1199px){
  .aboutus_contants2_item:before{
    clip-path: polygon(0% 0%, 100% 0, 0 100%);
    background: #fff;
  }
}


/*******************************
*　サービス
********************************/

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

}
.pg_business .section.sec1{

}
.pg_business .section.sec2{
  background: #e0e2e9;
  padding-bottom: 50px;
}


@media (max-width:374px){

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

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

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

  }
  .pg_business .section.sec1{
    padding-bottom: 107px;
  }
  .pg_business .section.sec2{
    padding: 100px 0;
  }

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


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

  }
  .pg_business .section.sec1{
    padding-bottom: 107px;
  }
  .pg_business .section.sec2{
    padding: 124px 0;
  }

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


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


}

/* メイン部分 */

/*見出し*/

/*カテゴリ*/
.business_contents_cate{
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}
.business_contents_cate_item{
  width:100%;
}
.business_contents_cate_item:nth-child(n+2){
  margin-top: 10px;;
}
.business_contents_cate_item_inner{
  display: block;
  background: #e83344;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border: 1px solid transparent;
  position: relative;
  padding: 15px 32px; 
}
.business_contents_cate_item_inner:hover{
  background: #fff;
  color: #e83344;
  border: 1px solid #e83344;
}
.business_contents_cate_item_inner:after{
  content: "→";
  display: block;
  width: 28px;
  aspect-ratio: 1;
  background: #fff;
  color: #181818;
  border-radius: 50%;
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 30px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
  display: flex;
  align-items: center;
  justify-content: center;
}
.business_contents_cate_item_inner p{
  letter-spacing: 0;
}

.business_contents_item .home_contents1_wrap{
  margin-bottom: 40px;
}
.business_contents_item:nth-child(n+2){
  margin-top: 40px;
}
.business_contents_items{
  margin-top: 40px;
}
.business_contents_items .business_contents_item_img:before{
  padding-top: 80.4%;
}
.business_contents_tt{
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 0;
  color: var(--main-color);
  margin-bottom: 20px;
}
.business_contents_items .sub_txt2 p{
  width: 100%;
}
.business_contents_item .content_desc{

}
.business_sub_tt{
  text-align: center;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0;
  border-bottom: 2px solid #181818;
  padding-bottom: 16px;
}
.business_contents_sub_img:before{
  padding-top: 54.71%; 
}
.business_contents_item .aboutus_contants1_item_tt{
  margin-bottom: 12px;
}
.business_contents_items .home_contents1_box1{
  order: 1;
}
.business_contents_items .home_contents1_box2{
  order: 2;
  margin-top: 20px;
}



@media (max-width:767px){

}
@media (min-width:768px){
  /*カテゴリ*/
  .business_contents_cate{
    margin-inline:-15.5px;
    margin-top: 50px;
  }
  .business_contents_cate_item{
    width: 50%;
    padding-inline:15.5px;
  }
  .business_contents_cate_item:nth-child(n+2){
    margin-top: 0;
  }
  .business_contents_cate_item:nth-child(n+3){
    margin-top: 16px;
  }
  .business_contents_cate_item_inner{

  }
  .business_contents_cate_item_inner:after{

  }

  .business_contents_item .home_contents1_wrap{
    margin-bottom: 80px;
  }
  .business_contents_items{
    margin-top: 70px;
  }
  .business_contents_item:nth-child(n+2){
    margin-top: 60px;
  }
  .business_contents_tt{
    font-size: 50px;
  }
  .business_contents_item .content_desc{

  }
  .business_sub_tt{
    font-size: 36px;
    padding-bottom: 21px;
  }
  .business_contents_item .aboutus_contants1_items{
    margin-top: 51px;
  }
  .business_contents_sub_img:before{

  }

  .business_contents_item .read_more{
    margin-top: 50px;
  }
  .business_contents_items .home_contents1_box2{
    order: 2;
    margin-top: 30px;
  }



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


}
@media (min-width:1200px){
  /*カテゴリ*/
  .business_contents_cate{
    margin-top: 77px;
  }
  .business_contents_cate_item{
    width: 33.333%;
  }
  .business_contents_cate_item:nth-child(n+3){
    margin-top: 0;
  }
  .business_contents_cate_item_inner{

  }
  .business_contents_cate_item_inner:after{

  }

  .home_contents1_wrap.business .home_contents1_box1{
    order: 2;
  }
  .home_contents1_wrap.business .home_contents1_box2{
    order: 1;
    margin-top: 0;
  }

  .business_contents_items{
    margin-top: 94px;
  }
  .business_contents_items .home_contents1_box1{
    width: 49.01%;
    padding-top: 24px;
  }
  .business_contents_items .home_contents1_box2{
    width: 44.73%;
  }
  .business_contents_item:nth-child(odd) .home_contents1_box1{
    order: 1;
  }
  .business_contents_item:nth-child(odd) .home_contents1_box2{
    order: 2;
  }
  .business_contents_item:nth-child(even) .home_contents1_box1{
    order: 2;
  }
  .business_contents_item:nth-child(even) .home_contents1_box2{
    order: 1;
  }

  .business_contents_item .home_contents1_wrap{
    margin-bottom: 107px;
  }
  .business_contents_item:nth-child(n+2) {
    margin-top: 123px;
  }
  .business_contents_tt{
    font-size: 50px;
  }
  .business_contents_item .content_desc{
    margin-top: 40px;
  }
  .business_sub_tt{
    font-size: 50px;
  }
  .business_contents_sub_img:before{

  }

  .business_contents_item .aboutus_contants1_item_h3{
    margin-inline:-20px;
  }

  /*バナー*/
  .bnr_items{

  }
  .bnr_item{

  }
  .bnr_item a{

  }

}
@media (min-width:1470px){
  .business_contents_item .aboutus_contants1_item_inner{
    padding: 39px 49px;
  }


  .business_contents_item .sub_txt{
    margin-right: -41px;
  }



}
@media (min-width:1720px){
  .business_contents_tt{
    font-size: 75px;
  }

}







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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}


@media (max-width:374px){

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

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

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

  .pg_xxx{

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }

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


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


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


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


}

/* メイン部分 */


/*リスト*/
.staff_block:nth-child(n+2){
  margin-top: 50px;
}
.staff_block:nth-child(n+2) .box2_inner{
  display: none;
}
.staff_block_tt{
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0;
  border-bottom: 2px solid #181818;
  padding-bottom: 16px;
  margin-bottom: 40px;
}
.staff_list{
  margin-top: 5.5em;
}
.staff_list .webgene-blog{

}
.staff_list .staff_list_item{
  position: relative
}
.pg_staff .staff_list .staff_list_item + .staff_list_item{
  margin-top: 50px;
}
.staff_list .staff_list_item:nth-child(n+2){
  margin-top: 50px;
}
.staff_list .staff_list_item {
  padding: 30px 0;
}
.staff_list .staff_list_item .inner{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.staff_list .staff_list_item .box1{
  width: 100%;
}
.staff_list .staff_list_item .img:before{
  padding-top: 118.98%; 
}
.staff_list .staff_list_item .box2{
  width: 100%;
  margin-top: 20px;;
}
.staff_list .staff_list_item .title{
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.075em;
  background: #023a8c;
  color: #fff;
  display: inline-block;
  padding: 9px 6px 9px 6px;
}
.staff_list .staff_list_item .box2 .meta{
  font-size: 16px;
  font-weight: 400;
  line-height: 1.875em;
  letter-spacing: 0.075em;
  margin-top: 20px;
}
.staff_list .staff_list_item .box2_inner{
  margin-top: 20px;
}
.staff_list .staff_list_item .box2_tt{
  font-size: 30px;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  color: var(--main-color);
  margin-bottom: 20px;
}
.staff_list .staff_list_item .box2_desc{
  font-size: 16px;
  font-weight: 400;
  line-height: 1.875em;
  letter-spacing: 0.075em;
}

.staff_cate{
  display: flex;
  flex-wrap: wrap;
}
.staff_cate .staff_cate_item{
  width: 100%;
}
.staff_cate .staff_cate_item:nth-child(n+3) {
  margin-top:0;
}
.staff_cate .staff_cate_item a{
  display: block;
  background: #e83344;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border: 1px solid transparent;
  position: relative;
  padding: 15px 32px;
}
.staff_cate .staff_cate_item a:after{
  content: "→";
  display: block;
  width: 28px;
  aspect-ratio: 1;
  background: #fff;
  color: #181818;
  border-radius: 50%;
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 30px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
  display: flex;
  align-items: center;
  justify-content: center;
}
.staff_cate .staff_cate_item a:hover {
  background: #fff;
  color: #e83344;
  border: 1px solid #e83344;
}
.staff_cate .staff_cate_item a:hover:after {
  background:#e83344;
  color: #fff;
}
@media (max-width:767px){
  .staff_cate_outer{
    margin-top: 30px;
  }
  .staff_cate .staff_cate_item:nth-child(n+3) {
    margin-top:0;
  }
  .staff_cate .staff_cate_item:nth-child(n+2){
    margin-top: 10px;
  }
  .staff_list_item:before{
    content: "";
    display: block;
    width: 100vw;;
    height: 100%;
    background: #f0f0f0;
    position: absolute;
    top: 0;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    z-index: -1;
  }
}
@media (min-width:768px){
  .staff_cate{
    margin-top: 40px;
  }

  .staff_cate{
    display: flex;
    flex-wrap: wrap;
    margin-inline: -15.5px;
  }
  .staff_cate .staff_cate_item{
    width: 50%;
    padding-inline: 15.5px;
  }
  .staff_cate .staff_cate_item:nth-child(n+3) {
    margin-top: 16px;
  }
  .staff_cate .staff_cate_item a{
    display: block;
    background: #e83344;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: 1px solid transparent;
    position: relative;
    padding: 15px 32px;
  }
  .staff_cate .staff_cate_item a:after{
    content: "→";
    display: block;
    width: 28px;
    aspect-ratio: 1;
    background: #fff;
    color: #181818;
    border-radius: 50%;
    position: absolute;
    z-index: 1;
    top: 50%;
    right: 30px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    transition: 0.2s all;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .staff_cate .staff_cate_item a:hover {
    background: #fff;
    color: #e83344;
    border: 1px solid #e83344;
  }
  .staff_cate .staff_cate_item a:hover:after {
    background:#e83344;
    color: #fff;
  }

  /*リスト*/
  .staff_block:nth-child(n+2){
    margin-top: 75px;
  }
  .staff_block_tt{
    font-size: 30px;
    margin-bottom: 100px;
    padding-bottom: 16px;
  }
  .staff_list{
    margin-top: 5.5em;
  }
  .staff_list .webgene-blog{

  }
  .staff_list .staff_list_item{
    position: relative;
  }
  .staff_list .staff_list_item:before{
    content: "";
    display: block;
    width: 80.26%;
    height: 100%;
    background: #f0f0f0;
    position: absolute;
    top: 0;
    right:0;
    z-index: -1;
  }
  .staff_list .staff_list_item {
    padding: 63px 16px 63px 0;
  }
  .pg_staff .staff_list .staff_list_item + .staff_list_item{
    margin-top: 180px;
  }
  .staff_list .staff_list_item:nth-child(n+2){
    margin-top: 0;
  }
  .staff_list .staff_list_item .inner{

  }
  .staff_list .staff_list_item .box1{
    width: 25.98%;
    position: relative;
    top: -8.8em;
  }
  .staff_list .staff_list_item .img:before{

  }
  .staff_list .staff_list_item .box2{
    width:69.73%;
    margin-top: 0;
  }
  .staff_list .staff_list_item .title{
    font-size: 24px;
  }
  .staff_list .staff_list_item .box2 .meta{

  }
  .staff_list .staff_list_item .box2_inner{
    margin-top: 38px;
  }
  .staff_list .staff_list_item .box2_tt{
    font-size: 30px;
    margin-bottom: 25px;
  }
  .staff_list .staff_list_item .box2_desc{

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


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

  }

  .staff_cate .webgene-blog{

  }
  .staff_cate .staff_cate_item{
    width: 33.333%;
  }
  .staff_cate .staff_cate_item:nth-child(n+3){
    margin-top: 0;
  }
  .staff_cate .staff_cate_item:nth-child(n+4){
    margin-top: 30px;
  }
  .staff_cate .webgene-item a{

  }

  /*リスト*/
  .staff_block_tt{
    font-size: 35px;
    margin-bottom: 120px;
  }
  .staff_list{
    margin-top: 5.5em;
  }
  .staff_list .webgene-blog{

  }
  .staff_list .staff_list_item{
    padding: 63px 16px 63px 0;
  }
  .pg_staff .staff_list .staff_list_item + .staff_list_item{
    margin-top: 220px;
  }
  .staff_list .staff_list_item:nth-child(n+2){
    margin-top: 0;
  }
  .staff_list .staff_list_item {

  }
  .staff_list .staff_list_item .inner{

  }
  .staff_list .staff_list_item .box1{

  }
  .staff_list .staff_list_item .img:before{

  }
  .staff_list .staff_list_item .box2{

  }
  .staff_list .staff_list_item .title{
    font-size: 30px;
  }
  .staff_list .staff_list_item .box2 .meta{

  }
  .staff_list .staff_list_item .box2_inner{

  }
  .staff_list .staff_list_item .box2_tt{
    font-size: 40px;
  }
  .staff_list .staff_list_item .box2_desc{

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


}
@media (min-width:1720px){
  .staff_list .staff_list_item{
    padding: 63px 0 63px 0;
  }

}




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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}

/*テキストアニメーション*/
.txt_cover3:not(.off){
  color: transparent !important;
  background: none !important;
  text-shadow: none !important;
}
.txt_cover3:after{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 100%;
  background: var(--main-color);
  transition: 0.8s all;
}
.txt_cover3.bk:after{
  background: #0d0d0d;
}
.txt_cover3.on:after {
  right: 0;
}
.txt_cover3.off:after{
  right: 0;
  left: 100%;
}
@media (max-width:374px){

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

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

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

  .pg_xxx{

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }

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


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


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


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


}

/* メイン部分 */

@media (max-width:767px){

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

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


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


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


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


}


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

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

}
.pg_company .section.sec1{

}
.pg_company .section.sec2{

}


@media (max-width:374px){

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

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

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

  .pg_company{

  }
  .pg_company .section.sec1{

  }
  .pg_company .section.sec2{

  }

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


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


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


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


}


/* メイン部分 */


/* 会社概要 */
.company_tbl{

}
.company_tbl .table_rows_th,
.company_tbl .table_rows_td{
  color: #000;
  border-color: #808080;
  padding: 10px 10px;
}
.company_tbl .table_rows_th{
  background: #e6e6e6;
  font-weight: 500;
}
.company_tbl .table_rows_td{
  background: #FFF;
}

/* マップ */
.company_map{

}
* + .company_map{
  margin-top: 50px;
}
.company_map iframe{
  border: 0;
  width: 100%;
  height: 250px;
}

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

}
.company_gallery_item_img.img_fit:before{
  padding-top: 71.400%;
}

.company_tbl:first-child{
  margin-bottom: 60px;
}
@media (max-width:767px){
  .pg_company .company_tbl .table_rows_tr:last-child{
    border-bottom: none;
  }
  .pg_company .company_tbl .table_rows_tr:last-child .table_rows_td{
    border-bottom: 1px solid #808080;
  }
}
@media (min-width:768px){

  /* 会社概要 */
  .company_tbl{

  }
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    padding: 17px 30px 18px;
  }
  .company_tbl .table_rows_th{
    width: 200px;
  }
  .company_tbl .table_rows_td{
  }

  /* マップ */
  .company_map{

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


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

  .company_tbl:first-child{
    margin-bottom: 120px;
  }
}
@media (min-width:1024px){


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

  /* 会社概要 */
  .company_tbl{

  }
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    padding: 17px 30px 18px;
  }
  .company_tbl .table_rows_th{
    width: 300px;
  }
  .company_tbl .table_rows_td{
  }

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

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


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


}



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

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

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

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

@media (max-width:767px){

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

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

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

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

  }

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

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

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

  }

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

}


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

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

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

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

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


.news_list_thumb.col3{

}
.news_list_thumb.col4{

}

.topics_detail{

}
.topics_detail .webgene-item{

}
.topics_detail{
  border-bottom: 1px solid #b9b9b9;
  padding-bottom: 37px;
}
.topics_detail .meta{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.topics_detail .date{
  font-size: 17px;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0;
  line-height: 1;
  margin-right: 21px;
}
.topics_detail .category{
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  display: inline-block;
  text-align: center;
  border: 1px solid #bababa;
  padding: 3px 31px;
}
.topics_detail .title{
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.075em;;
  border-bottom: 1px solid #b9b9b9;
  margin-top: 8px;
  padding-bottom: 10px;
}
.topics_detail .post_content{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 2.125em;
  padding-top:30px;
}
.topics_detail .post_content h3{
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.075em;;
  background: var(--main-color);
  color: #fff;
  padding: 8px 20px;
  margin-bottom: 34px;
}
.topics_detail .post_content img{
  margin-bottom: 20px;
}
@media (max-width:767px){

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

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

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

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

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

  }

  .topics_detail{

  }
  .topics_detail .webgene-item{

  }
  .topics_detail .topics_detail{

  }
  .topics_detail .topics_detail .meta{

  }
  .topics_detail .topics_detail .date{

  }
  .topics_detail .topics_detail .category{

  }
  .topics_detail .title{
    font-size: 18px;
  }
  .topics_detail .post_content{
    padding-top: 40px;
  }
  .topics_detail .post_content h3{
    font-size: 18px;
  }

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

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


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

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

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

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

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

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

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



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


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


}


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

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

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

/* リスト */
.posts_list{

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

}


/* サイド */
.posts_side_wrap{

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

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

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

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

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

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

.posts_back_list{

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

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


/* 動画 */
.post_video{

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

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

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

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

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

  .posts_category_sp{
    display: none;
  }

  /* リスト */
  .posts_list{

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

  }

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

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

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


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

  /* リスト */
  .posts_list{

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

  }

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

  .pg_news{
    padding-top: 100px;
  }

}



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

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

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

/* メイン */
.gallery_main{

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

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

}


/* 詳細 */
.gallery_detail{

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

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


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

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

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

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

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

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

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

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

  }

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

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

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


}





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

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

@media (max-width:1023px){

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

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

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


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

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

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


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

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

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

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

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


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


  .privacy_ttl{
    font-size: 18px;
  }

}

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

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

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

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



  .contact_info_bg {
    padding: 18px 10px;
  }

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

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

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


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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}

.staff_list .staff_list_item .title strong{
  font-weight: 600;
  font-family: "Noto Sans SC", sans-serif;
}
.company_tbl .table_rows_td strong{
  font-weight: 500;
  font-family: "Noto Sans SC", sans-serif;
}
.privacy_item .privacy_txt strong{
  font-weight: 400;
  font-family: "Noto Sans SC", sans-serif;
}
.staff_list .staff_list_item .box2 strong{
  font-weight: 400;
  font-family: "Noto Sans SC", sans-serif;
}
@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){


}
