@charset "UTF-8";

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

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

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


/* ******************************
   全体設定
   ****************************** */
body{
  font-family:  'Noto Sans JP', "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.075em;
  color: var(--txt-color);
  background: #f5f2ea;
  -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;*/
  letter-spacing: inherit;
}
p{

}
h1, h2, h3, h4, h5, h6{
  line-height: 1.5;
}

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

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

.img_fit{
  position: relative;
  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: 60px;
}
.hdr1{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px;
}

/* ロゴ */
.hdr_logo{

}
.hdr_logo img{
  display: block;
  width: auto;
  height: var(--logo-height);
  transition: 0.2s all;
}

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

/* TELボタン */
.hdr_tel{

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

}
.hdr_tel_link p{

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


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

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


@media (min-width:375px){

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

  .hdr1 {
    justify-content: center;
  }

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

  .hdr_contact_btn{
    display: none;
  }

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

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

    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }

  .hdr1{
    padding: 0 15px 0;
  }

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

  /* ヘッダースリム */
  .header.slim{
        background: rgba(255, 255, 255, 0.9);
  }
  .header.slim .hdr_logo img{
    height: calc(var(--logo-height) * 0.6);
  }
  .header.slim .hdr_contact_btn{
    padding: 27px 0;
  }

  /* TELボタン */
  .hdr_tel{

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

  .hdr_contact_btn{
    display: block;
    width: 225px;
    background: #5dafdc;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    border-radius: 0 0 0 20px;
    text-align: center;
    padding: 37px 0;
    border: 1px solid #5dafdc;
  }
  .hdr_contact_btn p{
    letter-spacing: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hdr_contact_btn p:before{
    content: "\f0e0";
    font-family: "fontAwesome";
    margin-right: 5px;
  }
  .hdr_contact_btn:hover{
    background: #fff;
    color: #5dafdc;;
  }

  .hdr_center{
    margin-top: 34px;
  }
  .hdr_right{
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
}
@media (min-width:1024px){

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

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

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

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

  }
  .header.slim .hdr_logo img{
  }




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

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

}
.mv_txt_p2{

}

.mv_box{
  position: relative;
  padding: 40px 0;
  height: calc(100vh - 54px - 60px);
}
.mv_box:before{
  content: "";
  display: block;
  width: 40.888%;
  height: 100%;
  background: #719c5d;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 0 0 0 50px;
}
.mv_inner{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.mv_left{
  width: 100%;
    margin-top: 5px;
  order: 2;
}
.mv_inner_txt{
  font-size: 38px;
  font-weight: 700;
  line-height: 1.52em;
}
.mv_inner_txt p{
  letter-spacing: 0.075em;
}
.mv_right{
  width: 100%;
  order: 1;
}
.mv_right_inner{

}
.mv_right_img{

}
.mv_desc{
  font-size: 16px;
  font-weight: 500;
  line-height: 2em;
  order: 3;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  margin-top: 40px;
}
.mv_desc p{
  letter-spacing: 0.075em;
}


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

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

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

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

  /* MVテキスト */
  .mv_txt{
    left: 30px;
    font-size: 32px;
  }
  .mv_txt_p1{

  }
  .mv_txt_p2{

  }

  .mv_box{
    padding: 130px 0;
  }
  .mv_inner{

  }
  .mv_left{
    margin-top: 40px;
  }
  .mv_inner_txt{
    font-size: 50px;
  }
  .mv_right{

  }
  .mv_right_inner{

  }
  .mv_right_img{

  }
  .mv_desc{
    font-size: 18px;
    position: absolute;
    bottom: -11px;
    left: 0;
    width: 100%;
    margin-top: 40px;
    z-index: 1;
  }
}
@media (min-width:1024px){


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

  /* MVテキスト */
  .mv_txt{
    left: 30px;
    font-size: 32px;
  }
  .mv_txt_p1{

  }
  .mv_txt_p2{

  }
  .mv_box{
    height: 100vh;
    height: auto;
    display: flex;
    align-items: center;
    padding: 158px 0 119px;
  }


  .mv_inner{
    align-items: center;
  }
  .mv_left{
    width: 13.48%;
    padding-top: 56px;
    margin-left: -24px;
    order: 1;
    margin-top: 0;
  }
  .mv_inner_txt{
    font-size: 50px;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
  .mv_right{
    width: 75.98%;
    order: 2;
  }
  .mv_right_inner{
    margin-right: var(--margin-for-device-side-w);
  }

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

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

  /* MVテキスト */
  .mv_txt{
    left: 30px;
    font-size: 32px;
  }
  .mv_txt_p1{

  }
  .mv_txt_p2{

  }

  .mv_box{

  }
  .mv_inner{

  }
  .mv_left{

  }
  .mv_inner_txt{
    font-size: 75px;
  }
  .mv_right{

  }
  .mv_right_inner{

  }
  .mv_right_img{

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

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

}
@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;
  padding: 30px 0;
}
.pg_header:after{
  content: "";
  display: block;
  width: 40.888%;
  height: 80%;
  background: #719c5d;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 0 0 0 50px;
}
.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_inner{
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.pg_header_txt_box{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 13.5%;
}
.pg_header_txt_en{
  font-size: 36px;
  font-weight: 200;
  font-family: var(--font-en);
  line-height: 1.1;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #bfbfbf;
}
.pg_header_txt_en:first-letter{
  font-weight: 500;
  color: #488838;
}
.pg_header_txt_ja{
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-top: 5px;
}
.pg_header_img_box{
  width: 50.98%;
}
.pg_header_img_mask{
  width: 106.7%;
  aspect-ratio: 836 / 670;
  position: relative;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
}
.pg_header_img_mask img{
  max-width: none;
  position: absolute;
  z-index: 1;
  top: 0;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  -webkit-mask-image: url(/system_panel/uploads/images/mask.png);
}


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

  .pg_header_title_txt{

  }

  .pg_header_inner{

  }
  .pg_header_txt_box{

  }
  .pg_header_txt_en{
    font-size: 40px;
  }
  .pg_header_txt_ja{
    font-size: 18px;
  }
  .pg_header_img_box{

  }
  .pg_header_img_mask{

  }
  .pg_header_img_mask img{

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

  .pg_header_title_txt{

  }

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

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

  .pg_header_title_txt{

  }

  .pg_header_inner{

  }
  .pg_header_txt_box{

  }
  .pg_header_txt_en{
    font-size: 68px;
  }
  .pg_header_txt_ja{

  }
  .pg_header_img_box{

  }
  .pg_header_img_mask{

  }
  .pg_header_img_mask img{

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

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

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

}


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

.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;
  background: #496c56;
  color: #fff;
  padding: 8px 0;
}
.ftr_copy p{
  letter-spacing: 0;
}
.ftr_copy a:hover{
  color: #fff;
  opacity: .6;
}

/* 追尾スマホメニュー */
.footer_fix{
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #7ecef4;
  /*z-index: 1000;*/
  z-index: 5; /* チャットボットがある場合 */
  flex-wrap: wrap;
}
.footer_fix > a{
  font-size: 12px;
  text-align: center;
  display: block;
  padding: 10px 5px 5px;
  background: #fff;
  text-decoration: none;
  line-height: 1.2;
}
.footer_fix .footer_fix_item_1{
  width: 38%;
  border-right: 1px solid #5dafdc;
}
.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;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #bfbfbf;
  border-bottom: 1px solid #bfbfbf;
  padding: 30px 0;
}
.ftr_contact_box1{
  width: 100%;
}
.ftr_contact_box1 .tt2_en{
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0;
  color: #5dafdc;
}
.ftr_contact_box1 .content_desc{
  font-size: 15px;
  line-height: 2em;
  margin-top: 30px;
}
.ftr_contact_box1 .content_desc p{
  letter-spacing: 0;
}
.ftr_contact_box2{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.ftr_contact_box2_item{
  width: 100%;
  text-align: center;
}
.ftr_contact_box2_item_tt{
  position: relative; 
  text-align: center;
}
.ftr_contact_box2_item_tt:after{
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background: #a39c92;
  margin: 25px auto 0;
}
.ftr_contact_box2_item_tt:before{
  content: "";
  display: block;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  min-height: 24px;
  margin-inline:auto;
  margin-bottom: 16px;
}
.ftr_contact_box2_item.mail .ftr_contact_box2_item_tt:before{
  width: 25px;
  aspect-ratio:25 / 24;
  background-image: url(/system_panel/uploads/images/tel.png);

}
.ftr_contact_box2_item.tel .ftr_contact_box2_item_tt:before{
  width: 25px;
  aspect-ratio:25 / 18;

  background-image: url(/system_panel/uploads/images/mail.png);
}
.ftr_contact_box2_item_h2{
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
}
.ftr_contact_box2_item_link{
  margin-top: 26px;
}
.ftr_contact_box2_ite_tel{
  text-align: center;
}
.ftr_contact_box2_ite_tel1{
  font-size: 28px;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.075em;
  line-height: 1;
}
.ftr_contact_box2_ite_tel2{
  font-size: 14px;
  font-weight: 400;
  margin-top: 10px;
}
.link_1{
  display: block;
  width: 100%;
  max-width: 202px;
  background: #5dafdc;
  color: #fff;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  border-radius: 5px;
  border: 1px solid  transparent;
  margin-inline:auto;
  padding: 13px 0;
}
.link_1:hover{
  background: #fff;
  color: #181818;
  border: 1px solid #5dafdc;
}
.link_1 p{
  letter-spacing: 0;
}

.ftr_1{
  text-align: center; 
  padding-top: 30px;
}
.ftr_logo{

}
.ftr_add{
  font-size: 16px;
  font-weight: 400;
  line-height: 1.875em;
  margin-bottom: 48px;
}
.ftr_add p{
  letter-spacing: 0.075em;
}
.ftr_links{

}
.ftr_link{

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

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

  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_contact_box2_item{
    border-top: 1px solid #bfbfbf;
    padding-top: 30px;
  }
  .ftr_contact_box2_item{
    margin-top: 30px;
  }

  .ftr_links{
    display: none;
  }
}
@media (min-width:768px){
  body.body_home{
    padding-top: 0;
  }
  .footer{
    margin-top: 100px;
  }

  .ftr_contact_wrap{

  }
  .ftr_contact_box{

  }
  .ftr_contact_box1{

  }
  .ftr_contact_box1 .tt2_en{
    font-size: 36px;
  }
  .ftr_contact_box1 .content_desc{

  }
  .ftr_contact_box2{
    margin-top: 40px;
  }
  .ftr_contact_box2_item{
    width: 50%;
    position: relative;
    padding: 44px 0 40px;
  }
  .ftr_contact_box2_item:before{
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background: #bfbfbf;
    position: absolute;
    top: 0;
    left: 0;
  }
  .ftr_contact_box2_item:last-child:after{
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background: #bfbfbf;
    position: absolute;
    top: 0;
    right: 0;
  }
  .ftr_contact_box2_item_tt{

  }
  .ftr_contact_box2_item_h2{

  }
  .ftr_contact_box2_item_link{

  }
  .ftr_contact_box2_ite_tel{

  }
  .ftr_contact_box2_ite_tel1{
    font-size: 30px;
  }
  .ftr_contact_box2_ite_tel2{

  }
  .link_1{

  }

  .ftr_1{

  }
  .ftr_logo{

  }
  .ftr_add{

  }
  .ftr_add p{

  }
  .ftr_links{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 74px;
  }
  .ftr_link{
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    border-right: 1px solid #a09e99;
    padding: 0 10px;
  }
  .ftr_link:last-child{
    border-right:none;
  }

  .ftr_link p{
    letter-spacing: 0;
  }
}
@media (min-width:1024px){
  .footer{
    margin-top: 196px;
  }

  .ftr_contact_wrap{

  }
  .ftr_contact_box{

  }
  .ftr_contact_box1{
    width: 36.23%;
  }
  .ftr_contact_box1 .tt2_en{
    font-size: 42px;
  }
  .ftr_contact_box1 .content_desc{

  }
  .ftr_contact_box2{
    width: 50.98%;
    margin-top:0;
  }
  .ftr_contact_box2_item{

  }
  .ftr_contact_box2_item_tt{

  }
  .ftr_contact_box2_item_h2{

  }
  .ftr_contact_box2_item_link{

  }
  .ftr_contact_box2_ite_tel{

  }
  .ftr_contact_box2_ite_tel1{
    font-size: 30px;
  }
  .ftr_contact_box2_ite_tel2{

  }
  .link_1{

  }

  .ftr_1{

  }
  .ftr_logo{

  }
  .ftr_add{

  }
  .ftr_add p{

  }
  .ftr_links{

  }
  .ftr_link{
    padding: 0 16px;
  }
}
@media (min-width:1200px){

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

}
@media (min-width:1536px){
  .ftr_link{
    padding: 0 52px;
  }
}
@media (min-width:1720px){

}

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


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

}


/* テーブル用 */
.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: #FFF;
  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 #315aa4;
  background: #ffffff;
  font-weight: 500;
}
.webgene-pagination li.selected{
  border: 0;
  background: #315aa4;
  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{
  max-width: 350px;
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-en);
  line-height: 1.2;
  text-align: center;
  border: 1px solid #5dafdc;
  background: #5dafdc;
  border-radius: 26px;
  color: #FFF;
  padding: 16px 20px;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.read_more.ja a{
  font-weight: 700;
}
.read_more a p{
  /*letter-spacing: 0;*/
}
.read_more a:after{
  content: "\f138";
  font-family: 'FontAwesome';
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 18px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.read_more a:hover{
  color: #5dafdc;
  background: #fff;
}
.read_more a:hover:after{
  margin-right: -5px;
}


/* 見出し */
.tt2{
  text-align: center;
  margin-bottom: 30px;
}
.tt2.left{
  text-align: left;
}
.tt2_en{
  font-size: 20px;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  letter-spacing: 0.075em;
}
.tt2_ja{
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
  letter-spacing: 0;
}

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

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



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

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

  /* ボタン */
  .read_more{
    margin-top: 35px;
  }
  .read_more.center{
    justify-content: center;
  }
  .read_more.left{
    justify-content: flex-start;
  }
  .read_more.right{
    justify-content: flex-end;
  }
  .read_more a{
    min-width: 285px;
    font-size: 16px;
    padding: 16px 20px;
    margin: 5px 5px;
  }
  .read_more a:after{
    right: 26px;
    font-size: 20px;
  }

  /* 見出し */



  .table_rows_th{
    width: 200px;
  }
  .table_rows_td{

  }

  .tt2_en{
    font-size: 21px;
  }
  .tt2_ja{
    font-size: 24px;
    margin-top: 13px;
  }


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

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


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


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


  .table_rows_th{
    width: 285px;
  }
  .table_rows_td{

  }

  .tt2_en{
    font-size: 21px;
  }
  .tt2_ja{
    font-size: 28px;
  }
  .tt2_ja.lg{
    font-size: 36px;
  }
}


@media (min-width:1366px){
  .tt2_ja.lg{
    font-size: 40px;
  }

}

@media (min-width:1470px){

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

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

}



/*******************************
*　HOME
********************************/
.pg_home{
  position: relative;
  z-index: 1;
}
.pg_home .section.sec1{
  position: relative;
  padding-bottom: 50px;
  padding-top: 100px;
}
.pg_home .section.sec2{
  background: #719c5d;
  position: relative;
}

.pg_home .section.sec3{
  position: relative;
  padding-bottom: 104px;
  padding-top: 120px;
}
.pg_home .section.sec4{

}
.pg_home .section.sec5{

}
.pg_home .section.sec6{

}
.pg_home .section.sec7{
  position: relative;
}
.pg_home .section.sec8{
  padding-bottom: 170px;
}

@media (max-width:767px){

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

  .pg_home .section.sec1{
    padding-bottom: 90px;
    padding-top: 100px;
  }
  .pg_home .section.sec2{
    padding-bottom: 111px;
  }
  .pg_home .section.sec3{
    padding-top: 114px;
  }
  .pg_home .section.sec4{

  }
  .pg_home .section.sec5{

  }
  .pg_home .section.sec6{
    padding-top: 68px;
    padding-bottom: 164px;
  }
  .pg_home .section.sec7{
    padding-bottom: 0;
  }
  .pg_home .section.sec8{
    padding-bottom: 210px;
  }

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


}
@media (min-width:1200px){
  .pg_home .section.sec1{
    padding-bottom: 90px;
    padding-top: 100px;
  }
  .pg_home .section.sec2{
    padding-bottom: 111px;
  }
  .pg_home .section.sec3{
    padding-top: 114px;
  }
  .pg_home .section.sec4{

  }
  .pg_home .section.sec5{

  }
  .pg_home .section.sec6{
    padding-bottom: 164px;
  }
  .pg_home .section.sec7{
    padding-bottom: 0;
  }
  .pg_home .section.sec8{
    padding-bottom: 210px;
  }

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


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


}
.top_il{
  position: relative;
}
.top_il:before{
  content: "";
  display: block;
  width: 1920px;
  aspect-ratio:1920 / 84;
  background-image: url(/system_panel/uploads/images/top_il.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -84px;
  left: 50%;
  transform: translateX(-50%);
}

/*イラスト*/
.pos{
  position: absolute;
  z-index: 1;
}
.il1{
  width: 48px;
  /*  width: 2.5%;*/
  aspect-ratio:48 / 138;
  top: -117px;
  left: 0;
}
.il2{
  width: 145px;
  /*  width: 7.55%;*/
  top: -132px;
  left: calc(50% - 27.5%);
  aspect-ratio:145 / 158;
}
.il5{
  width: 382px;
  /*  width: 7.55%;*/
  top: -63px;
  left: calc(50% - 32.5%);
  aspect-ratio:382 / 118;
}

/*main*/
/*sec1*/
.home_sec1_wrap{
  position: relative;
  z-index: 1;
}
.home_sec1_tt{
  text-align: center;
}
.home_sec1_tt_en{
  font-size: clamp(1.688rem, 0.325rem + 6.81vw, 8.5rem);
  font-weight: 400;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0;
  color: #796d6d;
}
.home_sec1_tt_ja{
  font-size: 18px;;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  margin-top: 16px;
}
.content_desc{
  font-size: 16px;;
  font-weight: 500;
  line-height: 2.25em;
  text-align: justify;
}
.content_desc p{
  letter-spacing: 0;
}
.home_sec1_wrap .content_desc{
  margin-top: 20px;
}
.home_sec1_wrap .read_more{

}
.home_sec1_wrap .read_more a{

}
.home_sec1_bg{
  width: 70%;
  margin-inline:auto;
}

/*sec2*/
.home_sec2_wrap{
  color: #fff;
}
.home_sec2_wrap .content_desc.center{

}
.home_sec2_items{
  display:flex;
  flex-wrap: wrap;
  gap:20px 0;
  margin-top: 40px;
}
.home_sec2_item{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_sec2_item_left{
  width: 100%;
}
.home_sec2_item_left_num{
  font-size: clamp(2.5rem, 2.25rem + 1.25vw, 3.75rem);
  font-weight: 400;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0.05em;
  margin-right: 14px;;
}
.home_sec2_item_left_txt{
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5em;
}
.home_sec2_item_left_txt p{
  letter-spacing: 0.05em;
}
.home_sec2_item_right{
  width: 100%;
}
.home_sec2_item_left_img{
  text-align: center;
}

/*sec3*/
.home_sec1_bg.sec3{
  width: 32.08%;
  aspect-ratio:616 / 423;
  right: auto;
  left: 0%;
  top: -4.5%;
  transform: none;
  position: absolute
}
.tt2_sub{
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;

}

.home_sec3_wrap .content_desc.center{
  margin-top: 11px;
}
.home_sec3_items{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap:30px 0;
  margin-top:40px;
}
.home_sec3_item{
  width: 100%;
  position: relative;
}
.home_sec3_item_num{
  font-size: 40px;
  font-weight: 400;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0.05em;
  position: absolute;
  top: -7px;
  left: 9px;
  background: #f5f2ea;
  color: #436554;
  padding: 0 10px;
}
.pg_about .home_sec3_item_num{
  background: #f5f2ea;
}
.home_sec3_item_tt{
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding-left: 94px;
}
.home_sec3_item_outer{
  border: 1px dashed #406251;
  border-radius: 20px;
  padding: 10px;
}
.home_sec3_item_inner{
  display: block;
  background: #eee8df;
  border-radius: 20px;
  padding: 10px 10px 30px;
  transition: all .2s;
}
.home_sec3_item_inner:hover{
  background: #dacfbd;
  color: #fff;
}
.home_sec3_item_img:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 20px;
  opacity: 0;
  transition: all .2s;
  z-index: 1;
  pointer-events: none;
}
.home_sec3_item_inner:hover .home_sec3_item_img:after{
  opacity: 1;
}
.home_sec3_item_inner:hover{
/*  background: #cabba3;
  color: #fff;*/
}
.home_sec3_item_img,
.home_sec3_item_img img{
  border-radius: 20px;
  transition: all .2s;
}
.home_sec3_item_inner:hover .home_sec3_item_img img{
  transform: scale(1.05);
}
.home_sec3_item_img:before{
  padding-top: 65.62%;
}
.home_sec3_item_sub{
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5em;
  margin-top: 10px;
}
.home_sec3_item .content_desc{
  font-size: 16px;
  font-weight: 400;
  line-height: 1.875em;
  padding: 0 10px;
  margin-top: 15px;
}

/*sec4*/
.il3{
  width: 60px;
  aspect-ratio: 86 / 159;
  right: 40px;
  left: auto;
  top: -100px;
}
.home_sec4_wrap{
  position: relative;
}
.home_sec4_box{
  background: #d9ebd1;
  border-radius: 20px;
  padding: 30px 16px;

}
.home_sec4_box1{

}
.home_sec4_box1 .tt2{

}
.home_sec4_box1 .content_desc{

}
.home_sec4_box2{
  
}
.property_list_guide{
  overflow: hidden;
}
.property_list{

}
.property_list .webgene-blog{

}
.property_list .webgene-item{

}
.property_list .webgene-item a{

}
.link_2{
  display: block;
  max-width: 235px;
  width: 100%;
  font-size: 16px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.2;
  text-align: center;
  border: 1px solid transparent;
  background: #5dafdc;
  border-radius: 26px;
  border: 1px solid #5dafdc;
  color: #FFF;
  padding: 16px 20px;
  margin: 5px auto;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.link_2 p{
  display: flex;
  align-items: center;
  justify-content: center;
}
.link_2 p:before{
  content: "\f002";
  font-family: "fontAwesome";
  margin-right: 5px;
}
.link_2:hover{
  background: #fff;
  color: #5dafdc;
}
  .body_home .property_list .webgene-blog{
    gap:0;
     display: flex;
     flex-wrap: nowrap;
  }
  .body_home .property_list .webgene-item{
    width: auto;
  }
  .body_home .property_list .swiper-slide{
    width: 360px;
    width: 100%;
  }
  .home_sec4_box2{
    position: relative;
        margin-top: 36px;
  }
  .home_sec4_box2 .slide-prev,
  .home_sec4_box2 .slide-next{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 40px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #fff;
    border: 1px solid transparent;
    color: #496c56;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    cursor: pointer;
    transition: all .2s;
    box-shadow: 0px 0px 14.4px 1.6px rgba(0, 0, 0, 0.1);
  }
  .home_sec4_box2 .slide-prev:before{
    content: "\f060";
    font-family: "fontAwesome";
  }
  .home_sec4_box2 .slide-next:before{
    content: "\f061";
    font-family: "fontAwesome";
  }
  .home_sec4_box2 .slide-prev{
    left: -1.2rem;
  }
  .home_sec4_box2 .slide-next{
    right:-1.2rem;
  }
  .home_sec4_box2 .swiper-button-lock{
    display: none;
  }


/*sec5*/
.il4{
  margin-top: 40px;
}
.home_sec5_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_sec5_box1{
  width: 100%;
}
.home_sec5_box2{
  width: 100%;
  margin-top: 0;
}
.home_sec5_box3{
  width: 100%;
}
.home_sec5_side{

}
.home_sec5_box1_img{
  width: 50%;
  position: relative;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
}
.home_sec5_box1 .home_sec5_box1_img:last-child,
.home_sec5_box2 .home_sec5_box1_img:last-child{
  display: none;
}
.home_sec5_box1_img img{
  max-width: none;
  position: absolute;
  z-index: 1;
  top: 0;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}
.home_sec5_box1 .home_sec5_box1_img.no1{
  /*  width: 87.19%;*/
  aspect-ratio:317 / 275;
}
.home_sec5_box1 .home_sec5_box1_img.no1 img{
  -webkit-mask-image: url(/system_panel/uploads/images/no1.png);
}
.home_sec5_box1 .home_sec5_box1_img.no2{
  aspect-ratio:370 / 332;
}
.home_sec5_box1 .home_sec5_box1_img.no2 img{
  -webkit-mask-image: url(/system_panel/uploads/images/no2.png);
}
.home_sec5_box1 .home_sec5_box1_img.no3{
  /*  width: 84.19%;*/
  aspect-ratio:312 / 321;
}
.home_sec5_box1 .home_sec5_box1_img.no3 img{
  -webkit-mask-image: url(/system_panel/uploads/images/no3.png);
}
.home_sec5_box2 .home_sec5_box1_img.no1{
  /*  width: 87.71%;*/
  aspect-ratio:302 / 272;
}
.home_sec5_box2 .home_sec5_box1_img.no1 img{
  -webkit-mask-image: url(/system_panel/uploads/images/no4.png);
}
.home_sec5_box2 .home_sec5_box1_img.no2{
  aspect-ratio:344 / 330;
}
.home_sec5_box2 .home_sec5_box1_img.no2 img{
  -webkit-mask-image: url(/system_panel/uploads/images/no5.png);
}
.home_sec5_box2 .home_sec5_box1_img.no3{
  /*  width: 98.83%;*/
  aspect-ratio:338 / 270;
}
.home_sec5_box2 .home_sec5_box1_img.no3 img{
  -webkit-mask-image: url(/system_panel/uploads/images/no6.png);
}

/*sec6*/
.home_sec6_wrap .content_desc.center{
  margin-top: 10px;
}
.home_sec6_items{
  margin-top: 40px;
}
.home_sec6_item{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_sec6_item:nth-child(n+2){
  margin-top: 50px;
}
.home_sec6_item_box1{
  width: 100%;
  order: 2;
  margin-top: 20px;
}
.home_sec6_item_num{

}
.home_sec6_item_tt{
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
}
.home_sec6_item_box1 .content_desc{
  margin-top: 23px;
}
.home_sec6_item_box1 .content_desc p{
  letter-spacing: 0.075em;
}
.home_sec6_item_box2{
  width: 100%;
  position: relative;
  order: 1;
}
.home_sec6_item_box2:before{
  content: "";
  display: block;
  width: 104.02%;
  height: 65.64%;
  background: #719c5d;
  position: absolute;
  top: -11.37%;
  border-radius: 0 20px 0 20px;
}
.home_sec6_item:nth-child(odd) .home_sec6_item_box2:before{
  right: 0;
}
.home_sec6_item:nth-child(even) .home_sec6_item_box2:before{
  left: 0;
}
.home_sec6_item_box2_img{
  width: 82.55%;
  position: relative;
  z-index: 1;
}
.home_sec6_item:nth-child(even) .home_sec6_item_box2_img{
  margin-left: auto;
}
.home_sec6_item_box2_img:before{
  padding-top: 73.17%;
}
.home_sec6_item_box2_img img{
  border-radius: 20px;
}

/*sec7*/

.home_sec1_bg.sec7{
  width: 39.01%;
  aspect-ratio:749 / 322;
  top: -9%;
  right: 10%;
  position: absolute;
}
.home_sec7_wrap{
  background: #d9ebd1;
  border-radius: 20px;
  padding: 36px 16px;
}
.home_sec7_wrap .tt2{
  margin-bottom: 7px;
}
.column_list{
  margin-top: 21px;
}
.column_list .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  margin-inline:-5px;
}
.column_list .webgene-item{
  width: 50%;
  padding-inline:5px;
}
.column_list .webgene-item:nth-child(n+3){
  margin-top: 20px;
}
.column_list .webgene-item a{

}
.column_list .webgene-item .img:before{
  padding-top: 75%;
}
.column_list .webgene-item .img,
.column_list .webgene-item .img img{
  border-radius: 5px;
  display: block;
  border: 1px solid #ededed
}
.column_list .webgene-item .box2{
  margin-top: 19px;
}
.column_list .webgene-item .meta{
  display: flex;
  align-items: center;
}
.column_list .webgene-item .category{
  font-size: 14px;
  font-weight: 700;
  display: inline-block;
  background: #fff;
  border: 1px solid #000000;
  border-radius: 12px;
  text-align: center;
  padding: 2px 10px;
}
.column_list .webgene-item .date{
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0;
  margin-right: 14px;
}
.column_list .webgene-item .title{
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 2em;
  margin-top: 8px;
}

/*sec8*/
.home_sec8_head{
  margin-bottom: 16px;
}
.home_sec8_head_en{
  font-size: clamp(3.125rem, 2.5rem + 3.13vw, 6.25rem);
  font-weight: 400;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0;
}
.news_list{

}
.news_list .webgene-blog{

}
.news_list .webgene-item{

}
.news_list .webgene-item a{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-top: 1px solid #1c1c1c;
  padding: 16px 0;
  position: relative;
  padding-right: 4%;
}
.news_list .webgene-item:last-child a{
  border-bottom: 1px solid #1c1c1c;
}
.news_list .webgene-item a:after {
  content: "\f061";
  font-family: "fontAwesome";
  position: absolute;
  top: 50%;
  right: 4%;
  transform: translateY(-50%);
}
.news_list .webgene-item .date{
  font-size: 16px;
  font-weight: 400;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0;
  margin-right: 16px;
}
.news_list.kasou .webgene-item .date{
  font-weight: 400;
  color: #32333d;
}

.news_list .webgene-item .category{
  font-size: 14px;
  font-weight: 400;
  display: inline-block;
  background: #fff;
  border: 1px solid #000000;
  border-radius: 12px;
  text-align: center;
  padding: 2px 10px;
}
.news_list .webgene-item .title{
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 2em;
  padding-right: 8%;
  margin-top: 10px;
}
@media (max-width:374px){

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

}
@media (max-width:767px){
  .top_il:before{
    width: 1000px;
  }
  .il1{
    width: 34px;
    /* width: 2.5%; */
    aspect-ratio: 48 / 138;
    top: -109px;
    left: 20px;
  }
  .il2{
    width: 80px;
    /* width: 7.55%; */
    top: -100px;
  }
  .il5{
        width: 100px;
    /* width: 7.55%; */
    top: 6px;
    left: 30px;

  }

  .home_sec1_bg.sec3{
    width: 220px;
    top: -1.5%;
  }

  .home_sec1_bg.sec7{
        width: 200px;
        top: -2%;
    right: 4%;
  }

  .home_sec2_item_left{
    display: flex;
    align-items: center;
  }
  .home_sec2_item_left_txt{
    font-size: 22px;
  }
  
  .home_sec3_item_tt{
        font-size: 20px;
    padding-left: 75px;
  }
  .home_sec3_item_num{
        top: -4px;
  }
  .home_sec5_box1_img{
    width: 80%;
  }

  .home_sec5_box1 .home_sec5_box1_img.no1,
  .home_sec5_box2 .home_sec5_box1_img.no1{
    margin-left: auto;
  }
  .home_sec5_box3{
    margin-top: 30px;
  }

  .home_sec6_item_num{
    width: 50px;
  }
  .home_sec5_side.home_sec5_box2{
    margin-top: 50px;
  }

  .column_list .webgene-item .meta{
    flex-wrap: wrap;
  }
  .column_list .webgene-item .category{
    margin-top: 10px;
  }
  
  
  .link_2{
   margin-top: 36px; 
  }
}
@media (min-width:768px){
  /*イラスト*/
  .il1{
    width: 48px;
    /*  width: 2.5%;*/
    aspect-ratio:48 / 138;
    top: -117px;
    left: 0;
  }
  .il2{
    width: 145px;
    /*  width: 7.55%;*/
    top: -132px;
    left: calc(50% - 27.5%);
    aspect-ratio:145 / 158;
  }
  .il5{
    width: 250px;
    /* width: 7.55%; */
    top: -25px;
    left: 80px;
    aspect-ratio:382 / 118;
  }

  /*sec1*/
  .home_sec1_wrap{

  }
  .home_sec1_tt{

  }
  .home_sec1_tt_en{

  }
  .home_sec1_tt_ja{
    font-size: 24px;;
    margin-top: 22px;
  }
  .content_desc{

  }
  .home_sec1_wrap .content_desc{
    margin-top: 42px;
  }
  .home_sec1_wrap .read_more{

  }
  .home_sec1_wrap .read_more a{

  }
  .home_sec1_bg{
    width: 350px;;
  }

  /*sec2*/
  .home_sec2_wrap{

  }
  .home_sec2_wrap .tt2{
    margin-bottom: 14px;
  }
  .home_sec2_wrap .content_desc.center{
    line-height: 1.875em;
  }
  .home_sec2_items{
    gap: 52px 30px;
    margin-top: 60px;
  }
  .home_sec2_item{
    width: calc(50% - 15px);
  }
  .home_sec2_item_left{
    width: auto;
  }
  .home_sec2_item_left_num{
    margin-right: 0;
  }
  .home_sec2_item_left_txt{
    font-size: 18px;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    margin-top: 16px;
  }
  .home_sec2_item_right{
    width: auto;
  }
  .home_sec2_item_left_img{

  }

  /*sec3*/
  .home_sec1_bg.sec3{
    width: 40.08%;
  }
  .tt2_sub{
    font-size: 18px; 
  }
  .home_sec3_items{
    gap: 94px 27px;
    margin-top: 65px;
  }
  .home_sec3_item{
    width: calc(50% - 13.5px);
  }
  .home_sec3_item_num{
    font-size: 50px;
            top: -19px;
  }
  .home_sec3_item_tt{
    font-size: 20px;
  }
  .home_sec3_item_outer{
    height: 100%;
    height: auto;
  }
  .home_sec3_item_inner{
    height: 100%;
    height: auto;
  }
  .home_sec3_item_img img{

  }
  .home_sec3_item_img:before{

  }
  .home_sec3_item_sub{
    font-size: 20px;
    margin-top: 7px;
    margin-left: 10px;
  }
  .home_sec3_item .content_desc{

  }

  /*sec4*/
  .il3{
    width: 10.6%;
    aspect-ratio:86 / 159;
    right: 70px;
    left: auto;
    top: -130px;
  }
  .home_sec4_wrap{

  }
  .home_sec4_box{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 52px 0 52px 30px;
  }
  .home_sec4_box1{
    width: 100%;
  }
  .home_sec4_box1 .tt2{
    margin-bottom: 37px;
  }
  .home_sec4_box1 .content_desc{
    line-height: 2.5em;
  }
  .link_2{
    margin-top: 50px;
    margin-inline:auto;
  }
  .home_sec4_box2{
    width: 100%;
    margin-top: 36px;
  }
  .property_list{

  }
  .property_list .webgene-blog{

  }
  .property_list .webgene-item{

  }
  .property_list .webgene-item a{

  }
  .body_home .property_list .swiper-slide{
    width: 360px;
  }
  

  /*sec5*/
  .home_sec5_box1_img{
    width: 37%;
  }
  .home_sec5_box1 .home_sec5_box1_img.no1{
    /*    width: 87.19%;*/
    aspect-ratio:317 / 275;
    margin-left: auto;
    margin-right: 0;
  }

  .home_sec5_box1 .home_sec5_box1_img.no2{
    aspect-ratio:370 / 332;
  }

  .home_sec5_box1 .home_sec5_box1_img.no3{
    /*    width: 84.19%;*/
    aspect-ratio:312 / 321;
    margin-left: auto;
    margin-right:0;
    margin-top: -22%;
  }

  .home_sec5_box2 .home_sec5_box1_img.no1{
    /*    width: 87.71%;*/
    aspect-ratio:302 / 272;
    margin-right: auto;
    margin-left: 0;
  }

  .home_sec5_box2 .home_sec5_box1_img.no2{
    aspect-ratio:344 / 330;
    margin-top: -8%;
    margin-left: auto;
  }

  .home_sec5_box2 .home_sec5_box1_img.no3{
    /*    width: 98.83%;*/
    aspect-ratio:338 / 270;
    margin-left: 0;
  }
  .home_sec5_box3 .read_more{
    margin-top: 45px;
  }
  .il4{
    text-align: center;
    margin-top: 71px;
  }

  /*sec6*/
  .home_sec6_items{
    margin-top: 120px;
  }
  .home_sec6_item{

  }
  .home_sec6_item:nth-child(n+2){
    margin-top: 150px;
  }
  .home_sec6_item_box1{
    margin-top: 30px;
  }
  .home_sec6_item_num{

  }
  .home_sec6_item_tt{
    font-size: 22px;
  }
  .home_sec6_item_box1 .content_desc{

  }
  .home_sec6_item_box2{

  }
  .home_sec6_item_box2_img:before{

  }
  .home_sec6_item_box2_img img{

  }

  /*sec7*/
  .home_sec7_wrap{
    padding: 36px 60px 48px;
  }
  .home_sec1_bg.sec7{
    width: 39.01%;
    aspect-ratio:749 / 322;
    top: -6%;
    right: 0;
    position: absolute;
  }
  .column_list{

  }
  .column_list .webgene-blog{
    margin-inline:-20px;
  }
  .column_list .webgene-item{
    width: 50%;
    padding-inline:20px
  }
  .column_list .webgene-item:nth-child(n+3){
    margin-top: 30px;
  }
  .column_list .webgene-item a{

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

  }
  .column_list .webgene-item .box2{

  }
  .column_list .webgene-item .meta{

  }
  .column_list .webgene-item .category{

  }
  .column_list .webgene-item .date{

  }
  .column_list .webgene-item .title{
    font-size: 18px;
  }
  .home_sec7_wrap .read_more{
    margin-top: 48px;
  }

  /*sec8*/
  .home_sec8_head{

  }
  .home_sec8_head_en{

  }
  .news_list{

  }
  .news_list .webgene-blog{

  }
  .news_list .webgene-item{

  }
  .news_list .webgene-item a{

  }
  .news_list .webgene-item .date{
    font-size: 20px;
    margin-right: 33px;
  }
  .news_list .webgene-item .category{
    font-size: 15px;

  }
  .news_list .webgene-item .title{
    font-size: 18px;
  }
} 
@media (min-width:1024px){
  .il3{
    width: 5.6%;
    aspect-ratio:86 / 159;
    right: 70px;
    left: auto;
    top: -100px;
  }

  /*sec8*/
  .home_sec8_head{

  }
  .home_sec8_head_en{

  }
  .news_list{

  }
  .news_list .webgene-blog{

  }
  .news_list .webgene-item{

  }
  .news_list .webgene-item a{
    padding: 41px 0;
  }
  .news_list .webgene-item .date{
    width: 110px;
    font-size: 24px;
  }
  .news_list .webgene-item .category{
    width:100px;
  }
  .news_list .webgene-item .title{
    width: calc(100% - 110px - 100px - 33px);
    padding-left: 29px;
    margin-top: 0;
  }
}
@media (min-width:1200px){
  /*イラスト*/
  .il1{
    width: 48px;
    /*  width: 2.5%;*/
    aspect-ratio:48 / 138;
    top: -117px;
    left: 50px;
  }
  .il2{
    width: 145px;
    /*  width: 7.55%;*/
    top: -132px;
    left: calc(50% - 27.5%);
    aspect-ratio:145 / 158;
  }
  .il5{
    width: 382px;
    /*  width: 7.55%;*/
    top: -63px;
    left: calc(50% - 32.5%);
    aspect-ratio:382 / 118;
  }

  /*sec1*/
  .home_sec1_wrap{

  }
  .home_sec1_tt{

  }
  .home_sec1_tt_en{

  }
  .home_sec1_tt_ja{
    font-size: 38px;;
  }
  .content_desc{

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

  }
  .home_sec1_wrap .read_more{

  }
  .home_sec1_wrap .read_more a{

  }
  .home_sec1_bg{
    width: 26.56%;
    aspect-ratio:510 / 831; 
    position: absolute;
    top: 38%;
    right: 4.5%;
    transform: translateY(-50%);
    margin-inline:0;
  }

  /*sec2*/
  .home_sec2_wrap{

  }
  .home_sec2_wrap .content_desc.center{

  }
  .home_sec2_items{
    margin-top: 84px;
  }
  .home_sec2_item{
    width: calc(33.333% - 20px);
  }
  .home_sec2_item_left{

  }
  .home_sec2_item_left_num{

  }
  .home_sec2_item_left_txt{
    font-size: 20px;
  }
  .home_sec2_item_right{
    width: auto;
  }
  .home_sec2_item_left_img{

  }

  /*sec3*/
  .home_sec3_wrap{

  }
  .home_sec1_bg.sec3{
    width: 32.08%;
    aspect-ratio:616 / 423;
    right: auto;
    left: 0%;
    top: -6.5%;
    transform: none;
  }
  .home_sec3_wrap .tt2{
    margin-bottom: 37px;
  }
  .home_sec3_items{

  }

  .home_sec3_item_num{
    font-size: 60px;
  }
  .home_sec3_item_tt{
    font-size: 20px;
  }
  .home_sec3_item_outer{

  }
  .home_sec3_item_inner{

  }
  .home_sec3_item_img img{

  }
  .home_sec3_item_img:before{

  }
  .home_sec3_item_sub{
    font-size: 20px;

  }
  .home_sec3_item .content_desc{

  }

  /*sec4*/
  .il3{
    width: 5.6%;
    aspect-ratio:86 / 159;
    right: 70px;
    left: auto;
    top: -130px;
  }
  .home_sec4_wrap{

  }
  .home_sec4_box{

  }
  .home_sec4_box1{
    width: 30.26%;
    padding: 0 0px 0 56px;
  }
  .home_sec4_box1 .tt2{

  }
  .home_sec4_box1 .content_desc{

  }
  .link_2{
    margin-top: 44px;
    margin-left: 0;
  }
  .home_sec4_box2{
    width: 64.8%;
    margin-top: 0;
  }
  .property_list{

  }
  .property_list .webgene-blog{

  }
  .body_home .property_list .webgene-blog{
   
  }
  .body_home .property_list .webgene-blog{
    gap:0;
  display: flex;
        flex-wrap: nowrap;
  }
  .body_home .property_list .webgene-item{
    
  }
  .body_home .property_list .swiper-slide{
    width: 360px;
  }
  .property_list .webgene-item{

  }
  .property_list .webgene-item a{

  }
  .property_list_outer{
   margin-right: var(--margin-for-device-side-w);
  }
  home_sec4_box2 .slide-next {
    right: -3rem;
}

  /*sec5*/
  .home_sec5_box1 .home_sec5_box1_img.no1{
    /*    width: 87.19%;*/
    aspect-ratio:317 / 275;
    margin-left: auto;
    margin-right: 0;
  }

  .home_sec5_box1 .home_sec5_box1_img.no2{
    aspect-ratio:370 / 332;
  }

  .home_sec5_box1 .home_sec5_box1_img.no3{
    /*    width: 84.19%;*/
    aspect-ratio:312 / 321;
    margin-left: auto;
    margin-right:0;
    margin-top: -22%;
  }

  .home_sec5_box2 .home_sec5_box1_img.no1{
    /*    width: 87.71%;*/
    aspect-ratio:302 / 272;
    margin-right: auto;
    margin-left: 0;
  }

  .home_sec5_box2 .home_sec5_box1_img.no2{
    aspect-ratio:344 / 330;
    margin-top: -8%;
  }

  .home_sec5_box2 .home_sec5_box1_img.no3{
    /*    width: 98.83%;*/
    aspect-ratio:338 / 270;
    margin-left: 0;
  }

  /*sec6*/
  .home_sec6_items{
    margin-top: 126px;
  }
  .home_sec6_item{

  }    
  .home_sec6_item:nth-child(n+2){
    margin-top: 111px;
  }
  .home_sec6_item_box1{
    width: 44.73%;
    margin-top: 0;
  }
  .home_sec6_item:nth-child(odd) .home_sec6_item_box1{
    order: 1;
  }
  .home_sec6_item:nth-child(odd) .home_sec6_item_box2{
    order: 2;
  }
  .home_sec6_item:nth-child(even) .home_sec6_item_box1{
    order: 2;
  }
  .home_sec6_item:nth-child(even) .home_sec6_item_box2{
    order: 1;
  }
  .home_sec6_item_num{

  }
  .home_sec6_item_tt{
    font-size: 26px;
  }
  .home_sec6_item_box1 .content_desc{

  }
  .home_sec6_item_box2{
    width: 49.01%;
  }
  .home_sec6_item_box2_img:before{

  }
  .home_sec6_item_box2_img img{

  }

  /*sec7*/
  .home_sec1_bg.sec7{
    width: 39.01%;
    aspect-ratio:749 / 322;
    top: -6%;
    right: 10%;
  }
  .column_list{

  }
  .column_list .webgene-blog{

  }
  .column_list .webgene-item{
    width: 25%;

  }
  .column_list .webgene-item:nth-child(n+3){
    margin-top: 0;
  }

  .column_list .webgene-item a{

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

  }
  .column_list .webgene-item .box2{

  }
  .column_list .webgene-item .meta{

  }
  .column_list .webgene-item .category{

  }
  .column_list .webgene-item .date{

  }
  .column_list .webgene-item .title{

  }

  /*sec8*/
  .home_sec8_head{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .home_sec8_head_en{

  }
  .home_sec8_head .read_more{
    margin-top: 0;
  }
  .home_sec8_head .read_more a{
    width: 350px;
  }
  .news_list{

  }
  .news_list .webgene-blog{

  }
  .news_list .webgene-item{

  }
  .news_list .webgene-item a{

  }
  .news_list .webgene-item .date{

  }
  .news_list .webgene-item .category{

  }
  .news_list .webgene-item .title{

  }
}
@media (min-width:1470px){
  /*イラスト*/
  .il1{
    width: 48px;
    /*  width: 2.5%;*/
    aspect-ratio:48 / 138;
    top: -117px;
    left: 255px;
  }
  .il2{
    width: 145px;
    /*  width: 7.55%;*/
    top: -132px;
    left: calc(50% - 27.5%);
    aspect-ratio:145 / 158;
  }
  .il3{
    width: 5.6%;
    aspect-ratio:86 / 159;
    right: 70px;
    left: auto;
    top: -154px;
  }

  /*sec3*/
  .home_sec3_item{
    width: calc(25% - 20.25px);
  }

  /*sec5*/
  .home_sec5_box{
    display: flex;
    flex-wrap: wrap;
  }
  .home_sec5_box1{
    width: 24.01%;
  }
  .home_sec5_box2{
    width: 22.56%;
    margin-top: 0;
  }
  .home_sec5_box3{
    width: 35.52%;
    padding-top: 131px;
  }
  .home_sec5_box1 .home_sec5_box1_img:last-child,
  .home_sec5_box2 .home_sec5_box1_img:last-child{
    display: block;
  }
  .home_sec5_box1_img{
    width: 100%;
  }
  .home_sec5_box1 .home_sec5_box1_img.no1{
    width: 87.19%;
    aspect-ratio:317 / 275;
    margin-left: auto;
    margin-right: -35%;
  }

  .home_sec5_box1 .home_sec5_box1_img.no2{
    aspect-ratio:370 / 332;
  }

  .home_sec5_box1 .home_sec5_box1_img.no3{
    width: 84.19%;
    aspect-ratio:312 / 321;
    margin-left: auto;
    margin-right: -52%;
    margin-top: -22%;
  }

  .home_sec5_box2 .home_sec5_box1_img.no1{
    width: 87.71%;
    aspect-ratio:302 / 272;
    margin-right: auto;
    margin-left: -33%;
  }

  .home_sec5_box2 .home_sec5_box1_img.no2{
    aspect-ratio:344 / 330;
    margin-top: -8%;
    margin-left: 0;
  }

  .home_sec5_box2 .home_sec5_box1_img.no3{
    width: 98.83%;
    aspect-ratio:338 / 270;
    margin-left: -52%;
  }
  .home_sec5_box3 .read_more{
    margin-top: 45px;
  }

  /*sec6*/
  .home_sec6_item_tt{
    font-size: 30px;
  }

  /*sec7*/
  .home_sec1_bg.sec7{
    width: 39.01%;
    aspect-ratio:749 / 322;
    top: -9%;
    right: 10%;
  }

}
@media (min-width:1720px){
  /*sec3*/
  .home_sec3_item_tt{
    font-size: 24px;
  }


}




/*******************************
*　ABOUT
********************************/

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

}
.pg_about .section.sec1{
  padding-bottom: 80px;
}
.pg_about .section.sec2{
  background: #719c5d;
  color: #fff;
  padding-bottom: 30px;
}
.pg_about .section.sec3{
  background: #eee8df;
}
.pg_about .section.sec4{
padding-bottom: 90px;
}
.pg_about .section.sec5{
  background: #e5ded4;
  padding-bottom: 60px;
}
.pg_xxx .section.sec6{

}


@media (max-width:374px){

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

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

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

  }
  .pg_about .section.sec1{
    padding-bottom: 180px;

  }
  .pg_about .section.sec2{
    padding-bottom: 66px;
  }
  .pg_about .section.sec3{
    padding: 149px 0 109px;
  }
  .pg_about .section.sec4{
    padding: 115px 0;
    padding-bottom: 180px;
  }
  .pg_about .section.sec5{
    padding: 95px 0;
  }
  .pg_xxx .section.sec6{

  }

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


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

  }
  .pg_about .section.sec1{
    padding-bottom: 180px;
  }
  .pg_about .section.sec2{

  }
  .pg_about .section.sec3{
    padding: 149px 0 109px;
  }
  .pg_about .section.sec4{
    padding: 115px 0;
    padding-bottom: 180px;
  }
  .pg_about .section.sec5{
    padding: 95px 0 117px;
  }
  .pg_xxx .section.sec6{

  }

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


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


}

/*イラスト*/
.about1{
  width: 325px;
  /* width: 7.55%; */
  top: -132px;
  right: calc(50% - 39%);
  aspect-ratio: 325 / 158;
}
.top_il.be:before{
  background-image: url(/system_panel/uploads/images/be.png);
}
.b1{
  width: 120px;
  /* width: 7.55%; */
  top: -47px;
  left: calc(50% - 39%);
  aspect-ratio: 321 / 152;
}

/* メイン部分 */
/*sec1*/
.about_sec1_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.about_sec1_box1{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.about_sec1_box1_txt{
  font-size: 20px;
  font-weight: 700;
  line-height: 1.65em;
}
.about_sec1_box1_txt p{
  display: inline-block;
  background: #c4b6a4;
  color: #fff;
}
.about_sec1_box1_img_outer{
  width: 100%;
  position: relative;
  margin-top: 20px;
}
.about_sec1_box1_img_outer:before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border: 2px dashed #a2a09d;
  position: absolute;
  top: 10px;
  left: 10px;
  border-radius: 20px;
}
.about_sec1_box1_img img{
  border-radius: 20px;
}
.about_sec1_box1_img:before{
  padding-top: 79.16%; 
}
.about_sec1_box2{
  width: 100%;
  margin-top: 30px;
}

.about_sec1_box2 .content_desc p{
  letter-spacing: 0;
}
.content_desc.lg{

}

/*sec2*/
.about_sec2_wrap{

}
.about_sec2_wrap .tt2{
  margin-bottom: 12px;
}
.about_sec2_items{
  display: flex;
  flex-wrap: wrap;
  gap:10px 0;
  margin-top: 24px;
  margin-bottom: 19px;
}
.about_sec2_item{
  width: 100%;
  background: #fff;
  border-radius: 10px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #f76e0a;
  padding: 12px 0;
}
.about_sec2_item p{
  letter-spacing: 0;
}

/*sec3*/
.about_sec3_wrap{
  display:flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.about_sec3_box1{
  display: flex;
  justify-content: space-between;
  order: 2;
  margin-top: 30px;
}
.about_sec3_box1_en{
  font-size: 21px;
  font-weight: 400;
  letter-spacing: 0.075em;
  font-family: var(--font-en);
  line-height: 1;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  border-right: 1px solid #bfbfbf;
  padding-right: 13px;
}
.about_sec3_box1_right{
  width: 85.02%;
}
.about_sec3_box1_h2{
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.075em;
}
.about_sec3_box1 .contnet_desc{
  margin-top: 26px;
}
.about_sec3_box2{
  width: 100%;
  order: 1;
}
.about_sec3_box2_outer{
  position: relative;
}
.about_sec3_box2_outer:before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border: 2px dashed #a2a09d;
  position: absolute;
  top: 10px;
  left: -10px;
  border-radius: 20px;
}
.about_sec3_box2_img img{
  border-radius: 20px;
}
.about_sec3_box2_img:before{
  padding-top: 79.16%;
}

/*sec4*/
.about_sec4_wrap .content_desc.center{
  margin-top: 13px;
}
.about_sec4_wrap .home_sec3_items{
  justify-content: flex-start;
}
.about_sec4_wrap .home_sec3_item .home_sec3_item_img:before{
  padding-top: 75%;
}
.about_sec4_wrap .home_sec3_item .content_desc{
  line-height: 2.125em;
}
.about_sec4_wrap .home_sec3_item_tt{
    padding-left: 90px;
}

/*sec5*/
.about_sec5_cate{
  display: flex;
  flex-wrap: wrap;
  gap:16px 0;
  margin-top: 40px;
}
.about_sec5_wrap .content_desc.center{
  margin-top: 14px;
}
.about_sec5_cate_item{
  width: 100%;
}
.about_sec5_cate_item a{
  display: block;
  background: #5dafdc;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  border-radius: 26px;
  position: relative;
  padding: 12px 0;
  border: 1px solid #5dafdc;
}
.about_sec5_cate_item a:hover{
  background: #fff;
  color: #5dafdc;
}
.about_sec5_cate_item a:after{
  content: "\f138";
  font-family: "fontAwesome";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 18px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.about_sec5_cate_item p{
  letter-spacing: 0.075em;
}

/*sec6*/
.about_sec5_items{
  margin-top: 50px;
}
.about_sec5_item{

}
.about_sec5_item:nth-child(n+2){
  margin-top: 40px;
}
.about_sec5_item_head{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.about_sec5_item_head_left{
  order: 2;
  margin-top: 20px;
}
.about_sec5_item_head_tt{
  display: flex;
  align-items: center;

}
.about_sec5_item_head_h3{
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0;
  color: #719c5d;
  margin-left: 12px;
}
.about_sec5_item_head .home_sec6_item_tt{
  margin-top: 7px;
}
.about_sec5_item_head_left .content_desc{
  margin-top: 22px;
}
.about_sec5_item_head_left .content_desc p{
  letter-spacing: 0.075em;
}
.about_sec5_item_head_right.home_sec6_item_box2{
  order: 1;
}
.about_sec5_item_head_right.home_sec6_item_box2:before{
  width: 100%;
  top: auto;
  bottom: -4.5%;
}
.about_sec5_item_head_right .home_sec6_item_box2_img{
  margin-left: auto;
  margin-right: 16px;
}
.about_sec5_item_head_right .home_sec6_item_box2_img:before{

}

.about_sec5_item_main{
  margin-top: 30px;
  border-bottom: 1px solid #747986;
  padding-bottom: 30px;
}
.about_sec5_item_main_tt_box{
  position: relative;
}
.about_sec5_item_main_tt_box:before{
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #747986;
  position: absolute;
  left:0;
  top: 50%;
  transform: translateY(-50%);
}
.about_sec5_item_main_tt{
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.075em;
  background: #e5ded4;
  position: relative;
  z-index: 2;
  padding-right: 16px;
}
.about_sec5_item_main_lists{
  display: flex;
  flex-wrap: wrap;
  gap:16px 0;
  margin-top: 32px;

}
.about_sec5_item_main_list{
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  background: #a38b78;
  color: #fff;
  border-radius: 10px;
  padding: 10px 7px;
}
.about_sec5_item_main_lists p{
  letter-spacing: 0.025em;
  display: flex;
  align-items: center;
}
.about_sec5_item_main_lists p:before{
  content: "";
  display: block;
  width: 29px;
  min-width: 29px;
  aspect-ratio:29 / 32;
  background-image: url(/system_panel/uploads/images/che.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 15px;
}
@media (max-width:767px){
  .pg_about .top_il:before{
    top: -41px;
  }
  .about1{
    width: 170px;
    /* width: 7.55%; */
    top: -76px;
    right: calc(50% - 39%);
    aspect-ratio: 325 / 158;
  }

  /*sec1*/
  .about_sec1_box1_txt{
    display: flex;
    flex-direction: column;
        font-size: 28px;
  }
  .about_sec1_box1_txt p{
    padding: 0 10px;
  }
  .about_sec1_box1_txt p:nth-child(n+2){
    margin-top: 5px;
  }

  /*sec4*/
  .about_sec4_wrap .home_sec3_item_num{
        top: 9px;
        font-size: 53px;
  }
  .about_sec4_wrap .home_sec3_item_tt{
           padding-left: 90px;
  }
}
@media (min-width:768px){
  /*イラスト*/
  .about1{
    width: 325px;
    /* width: 7.55%; */
    top: -132px;
    right:50px;;
    aspect-ratio: 325 / 158;
  }
  .b1{
    width: 250px;
    /* width: 7.55%; */
    top: -100px;
    left: calc(50% - 39%);
    aspect-ratio: 321 / 152;
  }

  /*sec1*/
  .about_sec1_wrap{

  }
  .about_sec1_box1{
    align-items: flex-start;
    justify-content:flex-start;
  }
  .about_sec1_box1_txt{
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    font-size: 24px;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    width: 13%;
  }
  .about_sec1_box1_txt p{
    padding: 10px 0;
  }

  .about_sec1_box1_img_outer{
    width: 74.61%;
    margin-top: 112px;
    margin-left: 30px;
  }
  .about_sec1_box1_img img{

  }
  .about_sec1_box1_img:before{

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

  }
  .content_desc.lg{

  }

  /*sec2*/
  .about_sec2_wrap{

  }
  .about_sec2_wrap .content_desc.center{

  }
  .about_sec2_wrap .content_desc.center{
    text-align: center;
  }
  .about_sec2_items{
    gap: 20px 15px;
  }
  .about_sec2_item{
    font-size: 21px;
    width: calc(50% - 11.5px);

  }

  /*sec3*/
  .about_sec3_wrap{

  }
  .about_sec3_box1{
    margin-top: 30px;
  }
  .about_sec3_box1_en{

  }
  .about_sec3_box1_right{
    width: 88.02%;
  }
  .about_sec3_box1_h2{
    font-size: 22px;
  }
  .about_sec3_box1 .contnet_desc{
    margin-top: 26px;
  }
  .about_sec3_box2{

  }
  .about_sec3_box2_outer{

  }
  .about_sec3_box2_outer:before{

  }
  .about_sec3_box2_img img{

  }
  .about_sec3_box2_img:before{

  }

  /*sec4*/
  .about_sec4_wrap .home_sec3_items{
    gap: 90px 27px;
  }
  .about_sec4_wrap .home_sec3_item_num{
    top: 14px;
  }
  .about_sec4_wrap .home_sec3_item_tt{
    padding-left: 89px;
  }

  /*sec5*/
  .about_sec5_cate{
    gap: 20px 24px;
    margin-top: 42px;
  }
  .about_sec5_cate_item{
    width: calc(50% - 12px);
  }
  .about_sec5_cate_item a{

  }
  .about_sec5_cate_item p{

  }

  /*sec6*/
  .about_sec5_items{
    margin-top: 140px;
  }
  .about_sec5_item{

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

  }
  .about_sec5_item_head_left{
    margin-top: 30px;
  }
  .about_sec5_item_head_tt{

  }
  .about_sec5_item_head_h3{
    font-size: 24px;
  }
  .about_sec5_item_head .home_sec6_item_tt{

  }
  .about_sec5_item_head_left .content_desc{

  }
  .about_sec5_item_head_right.home_sec6_item_box2{

  }
  .about_sec5_item_head_right .home_sec6_item_box2_img:before{

  }

  .about_sec5_item_main{
    margin-top: 70px;
    padding-bottom: 48px;
  }
  .about_sec5_item_main_tt_box{

  }
  .about_sec5_item_main_tt{
    font-size: 21px;
  }
  .about_sec5_item_main_lists{
    gap:27px;
  }
  .about_sec5_item_main_list{
    font-size: 17px;
    width: calc(50% - 13.5px);
    display: flex;
    align-items: center;
  }
  .about_sec5_item_main_lists p{

  }
}
@media (min-width:1024px){
  .b1{
    width: 250px;
    /* width: 7.55%; */
    top: -100px;
    left: calc(50% - 39%);
    aspect-ratio: 321 / 152;
  }

  /*sec1*/
  .about_sec1_box1_txt{
    width: 9%;
  }

  /*sec4*/
}
@media (min-width:1200px){
  .b1{
    width: 321px;
    /* width: 7.55%; */
    top: -132px;
    left: calc(50% - 39%);
    aspect-ratio: 321 / 152;
  }

  /*sec1*/
  .about_sec1_wrap{

  }
  .about_sec1_box1{
    width: 42.76%;
    justify-content: space-between;
  }
  .about_sec1_box1_txt{
    font-size: 26px;
    width: 20%;
  }
  .about_sec1_box1_img_outer{
    margin-left: 0;
  }
  .about_sec1_box1_img img{

  }
  .about_sec1_box1_img:before{

  }
  .about_sec1_box2{
    width: 50.98%;
    padding-top: 53px;
    margin-top: 0;
  }
  .about_sec1_box2 .content_desc{

  }
  .contnet_desc.lg{
    line-height: 3.75em;
  }

  /*sec2*/
  .about_sec2_wrap{

  }
  .about_sec2_wrap .content_desc.center{

  }
  .about_sec2_items{

  }
  .about_sec2_item{
    width: calc(25% - 11.5px);
  }

  /*sec3*/
  .about_sec3_wrap{

  }
  .about_sec3_box1{
    width: 61.51%; 
    margin-top: 0;
    order: 1;
  }
  .about_sec3_box1_en{

  }
  .about_sec3_box1_right{

  }
  .about_sec3_box1_h2{
    font-size: 28px;
  }
  .about_sec3_box1 .content_desc{

  }
  .about_sec3_box2{
    width: 31.57%; 
    order: 2;
  }
  .about_sec3_box2_outer{

  }
  .about_sec3_box2_outer:before{

  }
  .about_sec3_box2_img img{

  }
  .about_sec3_box2_img:before{

  }

  /*sec4*/
  .about_sec4_wrap .home_sec3_item_num{
    top: -14px;
  }
  .about_sec4_wrap .home_sec3_item_tt{
    padding-left: 108px;
  }

  /*sec5*/
  .about_sec5_cate{

  }
  .about_sec5_cate_item{
    width: calc(25% - 18px);
  }
  .about_sec5_cate_item a{

  }
  .about_sec5_cate_item p{

  }

  /*sec6*/
  .about_sec5_items{
    margin-top: 206px;
  }
  .about_sec5_item{

  }   
  .about_sec5_item:nth-child(n+2){
    margin-top: 150px;
  }
  .about_sec5_item_head{

  }
  .about_sec5_item_head_left{
    width: 46.05%;
    order: 1;
    margin-top: 0;
  }
  .about_sec5_item_head_tt{

  }
  .about_sec5_item_head_h3{
    font-size: 32px;
    padding-bottom: 10px;
  }
  .about_sec5_item_head .home_sec6_item_tt{

  }
  .about_sec5_item_head_left .content_desc{

  }
  .about_sec5_item_head_right.home_sec6_item_box2{
    order: 2;
  }
  .about_sec5_item_head_right .home_sec6_item_box2_img:before{

  }

  .about_sec5_item_main{

  }
  .about_sec5_item_main_tt_box{

  }
  .about_sec5_item_main_tt{

  }
  .about_sec5_item_main_lists{
    gap:27px;
  }
  .about_sec5_item_main_list{
    font-size: 15px;
    width: calc(25% - 20.25px);
  }
  .about_sec5_item_main_lists p{

  }

  .about_sec5_wrap .home_sec6_item_tt{
    font-size: 22px;
  }
}
@media (min-width:1470px){
  /*イラスト*/
  .about1{
    width: 325px;
    /* width: 7.55%; */
    top: -132px;
    right: calc(50% - 39%);
    aspect-ratio: 325 / 158;
  }

  .about_sec1_box1_txt{
    font-size: 38px;
  }

  /*sec4*/
  .about_sec4_wrap .home_sec3_items{
    gap: 50px 30px;
    justify-content: flex-start;
    margin-top: 43px;
  }
  .about_sec4_wrap .home_sec3_item{
    width: calc(50% - 15px);
  }
  .about_sec4_wrap .home_sec3_item .home_sec3_item_outer{
    height: auto;
  }
  .about_sec4_wrap .home_sec3_item .home_sec3_item_inner{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding: 11px 10px 30px;
    height: auto;
  }
  .about_sec4_wrap .home_sec3_item .home_sec3_item_img{
    width: 45.44%;
    margin-top: 8px;
  }
  .about_sec4_wrap .home_sec3_item .content_desc{
    width: 53%;
    padding-right: 26px;
    margin-top: 0;
  }
  .about_sec5_wrap .home_sec6_item_tt{
    font-size: 30px;
  }
}
@media (min-width:1720px){

  .about_sec5_item_main_list{
    font-size: 17px;
  }
}




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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}
.pg_xxx .section.sec6{

}


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

  }
  .pg_xxx .section.sec6{

  }

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


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

  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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


}

/* メイン部分 */

.contact_main{
  border-top: 1px solid #9c826e;
  margin-bottom: 50px;
  padding-top: 50px;
}
.contact_main_tt{
  display: flex;
  flex-direction: column;
  align-items: flex-start;

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

}
@media (min-width:768px){
  .contact_main{
    margin-bottom: 116px;
    padding-top: 140px;
  }
}
@media (min-width:1024px){


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


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


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


}



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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}
.pg_xxx .section.sec6{

}


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

  }
  .pg_xxx .section.sec6{

  }

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


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

  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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


}

/* メイン部分 */

@media (max-width:767px){

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

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


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


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


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


}



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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}
.pg_xxx .section.sec6{

}


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

  }
  .pg_xxx .section.sec6{

  }

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


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

  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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


}

/* メイン部分 */

@media (max-width:767px){

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

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


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


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


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


}



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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}
.pg_xxx .section.sec6{

}


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

  }
  .pg_xxx .section.sec6{

  }

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


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

  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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


}

/* メイン部分 */

@media (max-width:767px){

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

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


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


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


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


}



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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}
.pg_xxx .section.sec6{

}


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

  }
  .pg_xxx .section.sec6{

  }

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


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

  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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


}

/* メイン部分 */

@media (max-width:767px){

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

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


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


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


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


}



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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}
.pg_xxx .section.sec6{

}


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

  }
  .pg_xxx .section.sec6{

  }

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


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

  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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

}


.tt2.wh{
  color: #fff;
}
 .pg_company .section.sec0{
    background: #719c5d;
  }
  .pg_company .section.sec0 .tt2{
    margin-bottom: 60px;
  }
@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{
    padding-top: 98px;
  }
 
  .pg_company .section.sec0{
        padding: 80px 0 100px;
  }
}
@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: #888888;
  padding: 10px 10px;
}
.company_tbl .table_rows_th{
  background: #e1f2f4;
  font-weight: 500;
}
.company_tbl .table_rows_td{
  background: #FFF;
  line-height: 1.88em;
}

/* マップ */
.company_map{

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

/* ギャラリー */
.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%;
}

@media (max-width:767px){
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    display: block;
    width: 100%;
    border: 1px solid #888888;
    border-bottom: none;
  }
  .company_tbl .table_rows_tr:last-child .table_rows_td{
    border-bottom: 1px solid #888888;
  }
}
@media (min-width:768px){

  /* 会社概要 */
  .company_tbl{

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

  /* マップ */
  .company_map{

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

  .gmap{
    margin-top: 52px;
  }
  .access_map iframe{
    height: 450px;
  }


  /* ギャラリー */
  .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;
  }


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


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

  /* 会社概要 */
  .company_tbl{

  }
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    padding: 16px 16px 16px;
  }
  .company_tbl .table_rows_th{
    width: 284px;
  }
  .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{

}

.pg_column .posts_layout_box1{

}
.pg_column .posts_layout_box2{

}
.column_list.kasou .webgene-item{
  border-right: 1px solid #bfbfbf;
}
.column_list.kasou .webgene-item:nth-child(even){
  border-right: none;
}

.pg_column img{
  border-radius: 5px;
}
.news_list.kasou{

}
.news_list.kasou .webgene-item:nth-last-child(2) a{
  border-bottom: 1px solid #1c1c1c;
}
.news_detail{
  border-bottom: 1px solid #181818;
  padding-bottom: 22px;
}
.news_detail .webgene-item{

}  
.news_detail .webgene-item .meta{
  display: flex;
  align-items: center;
}
.news_detail .webgene-item .date{
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0;
  margin-right: 20px;
}
.news_detail .webgene-item .category{
  font-size: 14px;
  font-weight: 400;
  display: inline-block;
  background: #fff;
  border: 1px solid #000000;
  border-radius: 12px;
  text-align: center;
  padding: 2px 10px;
}
.news_detail .webgene-item .title{
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  border-bottom: 1px solid #181818;
  padding-bottom: 10px;
  margin-top: 5px;
}
.news_detail .webgene-item .post_content{
  font-size: 16px;
  font-weight: 500;
  line-height: 2.125em;
  padding-top: 30px;
}
@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{

  }

  .news_detail .webgene-item{

  }
  .news_detail .webgene-item .meta{

  }
  .news_detail .webgene-item .date{

  }
  .news_detail .webgene-item .category{

  }
  .news_detail .webgene-item .title{
    font-size: 20px;
    margin-top: 11px;
    padding-bottom: 13px;
  }
  .news_detail .webgene-item .post_content{

  }

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


  .pg_column .posts_layout_box1{
    width: 74.01%;
  }
  .pg_column .posts_layout_box2{
    width: 17.76%;
  }
  .column_list.kasou .webgene-blog{
    margin-inline:-40px;
  }
  .column_list.kasou .webgene-item{
    width: 33.33%;
    padding-inline:40px;
  }
  .column_list.kasou .webgene-item:nth-child(even){
    border-right: 1px solid #bfbfbf;
  }
  .column_list.kasou .webgene-item:nth-child(n+4){
    margin-top: 50px;
  }
  .column_list.kasou .webgene-item:nth-child(3n){
    border-right: none;
  }
}
@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: 80px;
}

.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: #488837;
  color: #FFF;
  padding: 10px 10px;
  font-weight: 500;
  letter-spacing: 0.025em;
  text-align: center;
  margin-bottom: 20px;
  border-radius: 5px;
}

.posts_cat_item{
  padding-left: 0;
}
.posts_cat_item + .posts_cat_item{
  margin-top: 7px;
}
.posts_cat_item a{
  display: block;
  position: relative;
  padding-left: 31px;
  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;
}

.column_detail{
  border-bottom: 1px solid #b9b9b9;
  padding-bottom: 30px;
}
.column_detail .webgene-item{

}
.column_detail .webgene-item .meta{
  display: flex;
  align-items: center;
}
.column_detail .webgene-item .date{
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0;
  margin-right: 35px;
}
.column_detail .webgene-item .category{
  font-size: 14px;
  font-weight: 400;
  display: inline-block;
  background: #fff;
  border: 1px solid #000000;
  border-radius: 12px;
  text-align: center;
  padding: 2px 10px;
}
.column_detail .webgene-item .title{
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.075em;
  border-bottom: 1px solid #b9b9b9;
  padding-bottom: 12px;
  margin-top: 6px;
}
.column_detail .webgene-item .post_content{
  padding-top: 30px;
}
.column_detail .webgene-item .post_content .txt{
  font-size: 16px;
  font-weight: 500;
  line-height: 2.125em;
}
.column_detail .webgene-item .post_content h2,
.column_detail .webgene-item .post_content h3{
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.075em;
  background: #cce1b1;
  padding: 10px 6px;
  margin-bottom: 20px;
}
.column_detail .webgene-item .txt h2:not(:first-of-type),
.column_detail .webgene-item .txt h3:not(:first-of-type){
  margin-top: 38px;
}
.column_detail .webgene-item .post_content img{
  argin-bottom: 30px;
} 
/* コピー用 */
@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: 157px;
  }

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

  .column_detail{
    padding-bottom: 34px;
  }
  .column_detail .webgene-item{

  }
  .column_detail .webgene-item .meta{

  }
  .column_detail .webgene-item .date{

  }
  .column_detail .webgene-item .category{

  }
  .column_detail .webgene-item .title{
    font-size: 18px;
  }
  .column_detail .webgene-item .post_content{

  }
  .column_detail .webgene-item .post_content h2,
  .column_detail .webgene-item .post_content h3{
    font-size: 18px;
    padding: 9px 21px;

  }
  .column_detail .webgene-item .txt h3:not(:first-of-type){
    margin-top: 38px;
  }
  .column_detail .webgene-item .post_content img{
    margin-bottom: 53px;
  } 
  .pg_column .read_more{
    margin-top: 57px;
  }
  .body_newsDetail .read_more{
    margin-top: 96px;
  }
}
@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 #7e7e7e;
  background: #ffffff;
}
.form.formWrap {
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}
.formRow + .formRow{
  border-top: 1px solid #7e7e7e;
}
.formTh {
  padding: 16px 15px 16px 20px;
  background: #e1f2f4;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.formTh label{
  margin: 0;
}
.d-inline-block.requiredText {
  font-size: 13px;
  padding: 3px 12px;
  margin-top: 3px;
  float: right;
  font-weight: 500;
  letter-spacing: 0.05em;
  background: #b80000;
  color: #ffffff;
}
.d-inline-block.requiredText.nini{
  background: #fff;
  color: #b80000;;
  border: 1px solid #b80000;;
}
.formTd {
  font-size: 15px;
  padding: 10px 16px;
}
.formTd.a-center{
  display: flex;
  align-items: center;
}
.formTd input[type="text"],
.formTd input[type="tel"],
.formTd input[type="email"]{
  max-width: 461px;
  height: 39px;
  width: 100%;
  font-size: 15px;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
  letter-spacing: 0.16em;
}
.formTd select{
  border-radius: 0;
}
.formTd input[name="zip1"]{
  max-width: 120px;
}
.formTd input[name="zip2"]{
  max-width: 150px;
}
.formTd select[name="pref"]{
  max-width: 225px;
  width: 100%;
  font-size: 16px;
  padding: 7px 10px;
  border: 1px solid #d6d8d8;
}
.formTd input[name="city"]{
  max-width: 425px;
}
.formTd .addArea + .addArea{
  margin-top: 8px;
}
.formTd .addArea .labelText02{
  width: 75px;
}
.formTd textarea{
  width: 100%;
  height: 280px;
  font-size: 15px;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
  letter-spacing: 0.16em;
}
.formWrap .text-center{
  padding-top: 40px;
}
.formWrap input[name="privacy"]{
  margin-right: 7px;
}
.formWrap .privacyLabel{
  font-size: 17px;
  font-weight: 600;
  display: inline;
}
.formWrap .privacyLabel a{
  color: #3159a3;
}
.formBtn.formSend {
  display: block;
  max-width: 350px;
  width: 100%;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  border: 1px solid transparent;
  background: #5dafdc;
  border-radius: 26px;
  color: #FFF;
  padding: 16px 20px;
  margin: 22px auto 0;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
  cursor: pointer;
}
.formBtn.formSend:after{
  content: "→";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 18px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.formBtn.formSend:hover{
  background: #fff;
  border: 1px solid #5dafdc;
  color: #5dafdc;
}
.formWrap label {
  display: inline-block;
  margin-bottom: 0;
}
.radioArea{
  padding: 0;
}
.radioArea .d-inline-block .label{
  margin-left: 9px;
  letter-spacing: 0;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.radioArea .d-inline-block{
  margin-right: 10px;
}
.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;
  line-height: 1.8em;
}

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

  .thanks_text{
    text-align: center;
  }
}


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

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

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

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

.contact_tt.privacy {
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 0.2em;
  margin-bottom: 47px;
}
.contact_tt.privacy br{
  display: none;
}
.formWrap .d-inline{
  display: inline-block!important;
}
.formWrap .d-inline-block {
  vertical-align: middle;
}

.privacy_item_box{
  padding: 36px 43px 30px 27px;
  height: 397px;
  overflow: auto;
  background: #fff;
  border: 1px solid #bfbfbf;
  margin-top: 0;
  color: #000000;
  margin-top: 58px;
}
@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;
  }

  .privacy_item_box{
    padding: 30px 10px;
  }

  .contact_info_bg {
    padding: 18px 10px;
  }

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

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

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


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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}


@media (max-width:374px){

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

}
@media (max-width:767px){
  .property_layout_box1{
    margin-top: 60px;
  }
}
@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){


}
