@charset "UTF-8";

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

  /* カラー(ボタン背景色など) */
  /*--main-color: #f9f4ed;*/
  --main-color: #d1c0a5;
  --sub-color: #f9f4ed;
  --txt-color: #181818;
  --bdr-color: #b9ad98;

  /* フォント関連 */
  --font-ja: "Noto Sans JP", sans-serif;
  /*--font-en: "Outfit",'Noto Sans JP', sans-serif;*/
  --font-en: "Oswald", 'Noto Sans JP',sans-serif;
  --font-en2: "Homemade Apple", 'Noto Sans JP',sans-serif;
  --font-mincho: 'Zen Old Mincho', serif;
}


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

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

#root{
  overflow: hidden;
}


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

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

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

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

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

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

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

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

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

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


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

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

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

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

p,
h1, h2, h3, h4, h5, h6{
  margin: 0;
  letter-spacing: 0;
}
h1, h2, h3, h4, h5, h6{
  line-height: 1.5;
  font-family: var(--font-mincho);
  font-weight: 400;
}

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

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

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

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

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

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

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


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


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

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


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



/*******************************
*　ヘッダー
********************************/
.header{
  --logo-height: 30px;
  padding: 13px 18px;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
}
.hdr1{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px;
}

/* ロゴ */
.hdr_logo{
  display: flex;
  color: #FFF;
}
.hdr_logo img{
  display: block;
  width: auto;
  height: var(--logo-height);
  transition: 0.2s all;
}
.hdr_logo_txt1{
  font-size: 20px;
  font-family: "Bellefair", serif;
  margin-right: 15px;
}
.hdr_logo_txt2{
  font-size: 16px;
  font-family: var(--font-mincho);
}

.body_home .hdr_logo{
  display: none;
}

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

/* TELボタン */
.hdr_tel{

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

}
.hdr_tel_link p{

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


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

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


@media (min-width:375px){

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

  .hdr1 {
    justify-content: center;
  }

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

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

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

    /*position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    right: 0;*/
  }

  .hdr1{
    padding: 0 15px 0;
  }

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

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

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

  /* TELボタン */
  .hdr_tel{

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


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

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

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

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

  }
  .header.slim .hdr_logo img{
  }

  /* TELボタン */
  .hdr_tel{

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

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

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

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

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

  }
  .header.slim .hdr_logo img{
  }

}

/*******************************
*　メインビジュアル
********************************/
/* MV */
.mv{
  display: flex;
  flex-wrap: wrap;
  background: #f9f4ed;
  position: relative;
  z-index: 1;
}
.mv_box1{
  width: 50%;
  order: 2;
}
.mv_box2{
  width: 100%;
  padding: 30px 20px;
  order: 1;
  position: relative;
  z-index: 2;
}
.mv_box3{
  width: 50%;
  order: 3;
}


/* MVサブ */
.mv_sub{
  position: relative;
  z-index: 1;
}
.mv_sub_img{
  border-radius: 10px;
}
.mv_sub_img.img_fit:before{
  padding-top: 117.073%;
}
.mv_sub_logo{
  width: 71.95%;
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  -webkit-transform: translate(19%, -5%);
  transform: translate(19%, -5%);
}

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

}
.mv_slides_img{

}
.mv_slides_img.img_fit:before{
  padding-top: 131.884%;
}

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

/* MVロゴ */
.mv_logo{
  text-align: center;
  padding: 0 30px;
  margin-bottom: 20px;
}

/* MVメニュー */
.mv_menu{
  margin: 20px 0 15px;
  padding: 0 30px;
  text-align: center;
}
.mv_menu_btn{
  display: flex;
  justify-content: center;
  background: #f5f4f4;
  border: 1px solid var(--main-color);
  border-radius: 23px;
  cursor: pointer;
}
.mv_menu_btn_inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100px;
  padding: 11px 0 12px;
}
.mv_menu_btn p{
  font-size: 16px;
  font-family: var(--font-mincho);
  line-height: 1;
}

/* MVタイトル */
.mv_title{
  text-align: center;
  margin-bottom: 10px;
}
* + .mv_title{
}
.mv_title_txt{
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.075em;
}

/* MVテキスト */
.mv_txt{
  font-size: 14px;
  line-height: 2;
  text-align: center;
}
.mv_txt p{

}


@media (min-width:768px){

  /* MV */
  .mv{
  }
  .mv_box1{
  }
  .mv_box2{
    padding: 40px 65px;
  }
  .mv_box3{
  }

  /* MVサブ */
  .mv_sub{
    width: 350px;
    max-width: 100%;
    margin: 0 auto;
  }
  .mv_sub_logo{
    width: 71.95%;
    bottom: 0;
    right: 0;
    -webkit-transform: translate(19%, -5%);
    transform: translate(19%, -5%);
  }

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

  }
  .mv_slides_img{

  }
  .mv_slides_img.img_fit:before{
    padding-top: 131.884%;
  }

  /* MVロゴ */
  .mv_logo{
    margin-bottom: 30px;
  }

  /* MVメニュー */
  .mv_menu{
    margin: 20px 0 15px;
    padding: 0 30px;
  }
  .mv_menu_btn{
    border-radius: 23px;
    max-width: 200px;
    margin: 0 auto;
  }
  .mv_menu_btn_inner{
    width: 125px;
    padding: 11px 0 12px;
  }
  .mv_menu_btn p{
    font-size: 20px;
  }

  /* MVタイトル */
  .mv_title{
    margin-bottom: 20px;
  }
  * + .mv_title{
  }
  .mv_title_txt{
    font-size: 26px;
  }

  /* MVテキスト */
  .mv_txt{
    font-size: 15px;
    line-height: 2;
    text-align: center;
  }





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


  /* MV */
  .mv_box1{
    width: 32%;
    order: 1;
  }
  .mv_box2{
    width: 36%;
    padding: 20px 20px;
    order: 2;
  }
  .mv_box3{
    width: 32%;
    order: 3;
  }

  /* MVサブ */
  .mv_sub{
  }

  /* MVロゴ */
  .mv_logo{
    margin-bottom: 20px;
  }

  /* MVメニュー */
  .mv_menu{
    margin: 20px 0 15px;
    padding: 0 15px;
  }
  .mv_menu_btn{
  }
  .mv_menu_btn_inner{
    width: 100px;
    padding: 11px 0 12px;
  }
  .mv_menu_btn p{
    font-size: 16px;
  }

  /* MVタイトル */
  .mv_title{
    margin-bottom: 10px;
  }
  * + .mv_title{
  }
  .mv_title_txt{
    font-size: 20px;
  }

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

  /* スライダーの場合 */
  .mv_slides_img.img_fit:before{
    padding-top: 100svh;
  }
}
@media (min-width:1200px){


  /* MV */
  .mv_box1{
    width: 35%;
  }
  .mv_box2{
    width: 30%;
    /*padding: 40px 65px;*/
  }
  .mv_box3{
    width: 35%;
  }

  .mv_sub{
    width: 300px;
  }

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

  /* MV */
  .mv_box1{
    width: 35.9375%;
  }
  .mv_box2{
    width: 28.125%;
    padding: 40px 20px;
  }
  .mv_box3{
    width: 35.9375%;
  }

  /* MVサブ */
  .mv_sub{
    width: auto;
  }

  /* MVロゴ */
  .mv_logo{
    margin-bottom: 30px;
  }

  /* MVメニュー */
  .mv_menu{
    margin: 20px 0 15px;
    padding: 0 30px;
  }
  .mv_menu_btn{
    max-width: none;
  }
  .mv_menu_btn_inner{
    width: 125px;
    padding: 11px 0 12px;
  }
  .mv_menu_btn p{
    font-size: 20px;
  }

  /* MVタイトル */
  .mv_title{
    margin-bottom: 20px;
  }
  * + .mv_title{
  }
  .mv_title_txt{
    font-size: 26px;
  }



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

  /* MV */
  .mv_box1{
    width: 35.9375%;
  }
  .mv_box2{
    width: 28.125%;
    padding: 40px 65px;
  }
  .mv_box3{
    width: 35.9375%;
  }

  /* スライダーの場合 */
  .mv_slides_img.img_fit:before{
    padding-top: 131.884%;
  }
}


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

/* サイドバー */
.sidebar{
  display: none;
  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{
  filter: brightness(1.2);
  /*transform: scale(1.05);*/
  /*filter: brightness(1.05);*/
}


@media (max-width:767px){
  .sidebar{
    top: auto;
    bottom: 60px;
  }
  .body_home .sidebar{
    bottom: 130px;
  }
}
@media (min-width:768px){

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

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

  .body_home .sidebar{
    display: none;
  }

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

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

  /* バナー */
  .sidebar_bn{
  }
  .sidebar_bn img{
    width: 45px;
  }
  
}
@media (min-width:1366px){

  /* バナー */
  .sidebar_bn{
  }
  .sidebar_bn img{
    width: 36px;
  }
  
}
@media (min-width:1470px){

  /* バナー */
  .sidebar_bn{
  }
  .sidebar_bn img{
    width: 40px;
  }
  
}
@media (min-width:1536px){

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


/*******************************
*　下層ヘッダー
********************************/
.pg_header{
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.pg_header_mv_img{
  position: relative;
  z-index: 1;
}
.pg_header_mv_img.img_fit:before{
  padding-top: 200px;
}
.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: left;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: #FFF;
}
.pg_header_title_ja{
  font-size: 22px;
  font-weight: 400;
}
.pg_header_title_en{
  font-size: 16px;
  font-weight: 900;
  font-family: var(--font-mincho);
  margin-top: 5px;
}




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

  .pg_header_title_txt{

  }

  .pg_header_title_ja{
    font-size: 48px;
  }
  .pg_header_title_en{
    font-size: 24px;
    margin-top: 10px;
  }
}
@media (min-width:1024px){
  .pg_header{
    margin-bottom: 70px;
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 350px;
  }

  .pg_header_title_txt{

  }

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

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

  .pg_header_title_txt{

  }

}

@media (min-width:1470px){

  .pg_header{
    margin-bottom: 145px;
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 450px;
  }
}

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

.footer{
  margin-top: 50px;
}


/* お問い合わせ */
.ftr_contact{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-top: 1px solid #a39c92;
  border-bottom: 1px solid #a39c92;
  padding: 0 0;
}
.ftr_contact_box1{
  width: 100%;
}
.ftr_contact_box2{
  width: 100%;
}

.ftr_contact_head{
  margin-bottom: 20px;
}
.ftr_contact_head_en{
  font-size: 42px;
  font-weight: 500;
  font-family: var(--font-mincho);
}
.ftr_contact_head_ja{
  font-size: 15px;
  line-height: 2;
  margin-top: 30px;
}

.ftr_contact_btns{
  display: flex;
  flex-wrap: wrap;
}
.ftr_contact_btns_item{
  width: 100%;
  padding: 25px 15px;
  text-align: center;
}
.ftr_contact_btns_item{
}
.ftr_contact_btns_item_title{
  margin-bottom: 20px;
}
.ftr_contact_btns_item_tel{
  text-align: center;
}
.ftr_contact_btns_item_tel_txt1{
  font-size: 24px;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  letter-spacing: 0.075em;
}
.ftr_contact_btns_item_tel_txt2{
  font-size: 14px;
  letter-spacing: 0.075em;
  margin-top: 10px;
}
.ftr_contact_btns_item_link{
  display: flex;
  justify-content: center;
}
.ftr_contact_btns_item_link_a{
  width: 200px;
  background: #181818;
  color: #FFF;
  font-size: 15px;
  font-weight: 500;
  border-radius: 5px;
  padding: 10px 10px;
}
.ftr_contact_btns_item_link_a:hover{
  background-color: var(--main-color);
  color: #FFF;
}

/*  */
.ftr1{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px;
}
.ftr1_box1{
  width: 365px;
}
.ftr1_box2{
  width: 745px;
  margin-top: 10px;
}
.ftr_logo{
  text-align: center;
  margin-bottom: 20px;
}
.ftr_logo img{
  width: 200px;
}
.ftr_addr{
  font-size: 14px;
  line-height: 1.7;
  text-align: center;
}
.ftr_addr + .ftr_addr{
  margin-top: 10px;
}
.ftr_sns{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 0;
}
.ftr_sns_item{
  margin-left: 10px;
}
.ftr_sns_item:first-child{
  margin-left: 0;
}
.ftr_links{
  display: flex;
  flex-wrap: wrap;
}
.ftr_links_item{
  width: 20%;
  text-align: center;
  margin-bottom: 20px;
  /*border-right: 1px solid #a7a7a7;*/
}
.ftr_links_item + .ftr_links_item{
  
}
.ftr_links_item_a{
  font-size: 15px;
  line-height: 1;
}

/**/
.ftr_copy{
  font-size: 14px;
  text-align: center;
  background: #f9f4ed;
  padding: 5px 5px;
  margin-top: 30px;
}

/* 追尾スマホメニュー */
.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: #cab386;
  text-decoration: none;
  line-height: 1.2;
}
.footer_fix > a:hover{
  color: #FFF;
}
.footer_fix .footer_fix_item_1{
  width: 26.666%;
  border-right: 1px solid #FFF;
}
.footer_fix .footer_fix_item_1.recruit{
  background: #eeeeee;
  color: #024b93;
}
.footer_fix .footer_fix_item_2{
  width: 20%;
  background: #cab386;
}
.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;
}



@media (min-width:375px){

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

  body{
    padding-bottom: 56px;
  }

  /**/
  .ftr_contact_head{
    text-align: center;
  }
  .ftr_contact_head_en{
    font-size: 30px;
  }
  .ftr_contact_head_ja{
    margin-top: 15px;
    font-size: 12px;
  }
  .ftr_contact_btns_item{
    border-top: 1px solid #a39c92;
  }
  .ftr_contact_btns_item{
    
  }
  .ftr_contact_btns_item_title img{
    height: 70px;
  }
  
  
  .ftr_links{
    display: none;
  }
  
  .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);
  }
}
@media (min-width:768px){
  .footer{
    margin-top: 100px;
  }
  
  /* お問い合わせ */
  .ftr_contact{
    padding-top: 25px;
    padding-bottom: 25px;
    align-items: center;
  }
  .ftr_contact_box1{
    width: 100%;
  }
  .ftr_contact_box2{
    width: 100%;
  }

  .ftr_contact_head{
    margin-bottom: 20px;
    text-align: center;
  }
  .ftr_contact_head_en{
    font-size: 42px;
  }
  .ftr_contact_head_ja{
    font-size: 15px;
    line-height: 2;
    margin-top: 20px;
  }

  .ftr_contact_btns{
  }
  .ftr_contact_btns_item{
    width: 33.333%;
    padding: 40px 15px;
  }
  .ftr_contact_btns_item{
    border-left: 1px solid #a39c92;
  }
  .ftr_contact_btns_item:nth-child(3n){
    border-right: 1px solid #a39c92;
  }
  .ftr_contact_btns_item_title{
    margin-bottom: 30px;
  }
  .ftr_contact_btns_item_tel{
  }
  .ftr_contact_btns_item_tel_txt1{
    font-size: 30px;
  }
  .ftr_contact_btns_item_tel_txt2{
    font-size: 14px;
    margin-top: 10px;
  }
  .ftr_contact_btns_item_link{
  }
  .ftr_contact_btns_item_link_a{
    width: 200px;
    font-size: 15px;
    padding: 10px 10px;
  }
  
  /*  */
  .ftr1{
    margin-top: 125px;
  }
  .ftr1_box1{
    width: 285px;
  }
  .ftr1_box2{
    width: calc(100% - 285px - 30px);
    margin-top: 10px;
  }
  .ftr_logo{
    text-align: left;
    margin-bottom: 40px;
  }
  .ftr_logo img{
    width: auto;
  }
  .ftr_addr{
    font-size: 16px;
    text-align: left;
  }
  .ftr_addr + .ftr_addr{
    margin-top: 10px;
  }
  .ftr_sns{
    justify-content: flex-end;
    margin-bottom: 40px;
  }
  .ftr_sns_item{
    margin-left: 20px;
  }
  .ftr_links{
  }
  .ftr_links_item{
    width: 33.333%;
    margin-bottom: 20px;
    border-right: 1px solid #a7a7a7;
  }
  .ftr_links_item:nth-child(3n){
    border-right: 0;
  }
  .ftr_links_item_a{
    font-size: 15px;
  }

  /**/
  .ftr_copy{
    font-size: 14px;
    margin-top: 70px;
  }
}
@media (min-width:1024px){
  .footer{
    margin-top: 180px;
  }
  
  /* お問い合わせ */
  .ftr_contact{
    align-items: center;
  }
  .ftr_contact_box1{
    width: 37.5%;
  }
  .ftr_contact_box2{
    width: 62.5%;
  }

  .ftr_contact_head{
    margin-bottom: 20px;
    text-align: left;
  }
  .ftr_contact_head_en{
    font-size: 32px;
  }
  .ftr_contact_head_ja{
    font-size: 12px;
    margin-top: 20px;
  }

  .ftr_contact_btns{
  }
  .ftr_contact_btns_item{
    padding: 25px 15px;
  }
  .ftr_contact_btns_item{
    border-left: 1px solid #a39c92;
  }
  .ftr_contact_btns_item:nth-child(3n){
    border-right: 0;
  }
  .ftr_contact_btns_item_title{
    margin-bottom: 30px;
  }
  .ftr_contact_btns_item_title img{
    height: 60px;
  }
  .ftr_contact_btns_item_tel{
  }
  .ftr_contact_btns_item_tel_txt1{
    font-size: 24px;
  }
  .ftr_contact_btns_item_tel_txt2{
    font-size: 12px;
  }
  .ftr_contact_btns_item_link{
  }
  .ftr_contact_btns_item_link_a{
    width: 200px;
  }
}
@media (min-width:1200px){

  /*  */
  .ftr1{
    margin-top: 125px;
  }
  .ftr1_box1{
    width: 365px;
  }
  .ftr1_box2{
    width: 745px;
    margin-top: 10px;
  }
  .ftr_logo{
    text-align: left;
    margin-bottom: 60px;
  }
  .ftr_logo img{
    width: auto;
  }
  .ftr_addr{
    font-size: 16px;
    text-align: left;
  }
  .ftr_addr + .ftr_addr{
    margin-top: 10px;
  }
  .ftr_sns{
    justify-content: flex-end;
    margin-bottom: 65px;
  }
  .ftr_sns_item{
    margin-left: 20px;
  }
  .ftr_links{
  }
  .ftr_links_item{
    width: 20%;
    margin-bottom: 20px;
    border-right: 1px solid #a7a7a7;
  }
  .ftr_links_item:nth-child(3n){
    border-right: 1px solid #a7a7a7;
  }
  .ftr_links_item:nth-child(5n){
    border-right: 0;
  }
  .ftr_links_item_a{
    font-size: 15px;
  }
  
  #chatbot-btn{
    right: 70px !important;
  }
  
}
@media (min-width:1470px){
  /* お問い合わせ */
  .ftr_contact{
    align-items: center;
  }
  .ftr_contact_box1{
    width: 37.5%;
  }
  .ftr_contact_box2{
    width: 62.5%;
  }

  .ftr_contact_head{
    margin-bottom: 20px;
    text-align: left;
  }
  .ftr_contact_head_en{
    font-size: 42px;
  }
  .ftr_contact_head_ja{
    font-size: 15px;
    margin-top: 20px;
  }

  .ftr_contact_btns{
  }
  .ftr_contact_btns_item{
    padding: 40px 15px;
  }
  .ftr_contact_btns_item{
    border-left: 1px solid #a39c92;
  }
  .ftr_contact_btns_item:nth-child(3n){
    border-right: 0;
  }
  .ftr_contact_btns_item_title{
    margin-bottom: 30px;
  }
  .ftr_contact_btns_item_title img{
    height: 87px;
  }
  .ftr_contact_btns_item_tel{
  }
  .ftr_contact_btns_item_tel_txt1{
    font-size: 30px;
  }
  .ftr_contact_btns_item_tel_txt2{
    font-size: 14px;
  }
  .ftr_contact_btns_item_link{
  }
  .ftr_contact_btns_item_link_a{
    width: 200px;
  }
  
}
@media (min-width:1720px){

}


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


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

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

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


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

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

/* ボタン */
.read_more{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
  margin-left: -5px;
  margin-right: -5px;
}
.read_more a{
  min-width: 265px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  border: 2px solid var(--bdr-color);
  background: #f3f1f1;
  border-radius: 10px;
  color: #181818;
  padding: 16px 20px;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.read_more a p{
  /*letter-spacing: 0;*/
}
.read_more a:after{
  content: "";
  width: 30px;
  aspect-ratio: 3 / 1;
  background-image: url('https://soyokazenoie.com/system_panel/uploads/images/read_more_icon.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
  transform-origin: right center;
}
.read_more a:hover{
  color: #FFF;
  background: var(--bdr-color);
}
.read_more a:hover:after{
  filter: brightness(1.5);
  -webkit-transform: translate(0, -50%) scale(1.2);
  transform: translate(0, -50%) scale(1.2);
}


.read_more2{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
  margin-left: -5px;
  margin-right: -5px;
}
.read_more2 a{
  min-width: 265px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  background: #181818;
  color: #FFF;
  padding: 16px 20px;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}


.read_more2 a:before{
  content: "";
  height: 6px;
  position: absolute;
  z-index: 1;
  top: 100%;
  left: 0;
  right: 0;
  background-image: url(https://soyokazenoie.com/system_panel/uploads/images/read_more2_bdr.png);
  background-size: cover;
  background-position: center;
  transition: 0.2s all;
}

.read_more2 a:after{
  content: "";
  width: 30px;
  aspect-ratio: 3 / 1;
  background-image: url('https://soyokazenoie.com/system_panel/uploads/images/read_more_icon2.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
  transform-origin: right center;
}
.read_more2 a:hover{
  background-color: var(--main-color);
}
.read_more2 a:hover:after{
  filter: brightness(1.5);
  -webkit-transform: translate(0, -50%) scale(1.2);
  transform: translate(0, -50%) scale(1.2);
}
.read_more2 a:hover:before{
  background-image: url(https://soyokazenoie.com/system_panel/uploads/images/read_more2_bdr_on.png);
}

/* 見出し */
.tt2{
  text-align: left;
  margin-bottom: 20px;
}
.tt2_en{
  font-size: 18px;
  font-weight: 900;
  font-family: var(--font-mincho);
}
.tt2_en:after{
  content: "";
  display: block;
  width: 100px;
  height: 1px;
  background: #b9ad98;
  margin-top: 5px;
}
.tt2_ja{
  font-size: 22px;
  font-weight: 400;
  line-height: 1.611;
}
.tt2_en + .tt2_ja{
  margin-top: 5px;
}

.tt2.center{
  text-align: center;
}
.tt2.center .tt2_en:after{
  margin-left: auto;
  margin-right: auto;
}

/* 見出し（tt3） */
.tt3{

  text-align: center;
}
.tt3_ja{
  font-size: 20px;
  font-weight: 400;
}
.tt3_ja strong{
  font-size: 1.666em;
  font-weight: 400;
}
.tt3_en{
  font-size: 14px;
  font-family: var(--font-en2);
  color: #968446;
  text-shadow: 1.231px 1.576px 6px rgba(255, 255, 255, 0.004);
  margin-top: 10px;
}

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

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

/* セクション見出し */
.sec_head{
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.sec_head .tt2{
  margin-bottom: 0;
}
.sec_head_box1{
  width: 100%;
  position: relative;
  z-index: 1;
}
.sec_head_box2{
  width: 100%;
  margin-top: 5px;
}
.sec_head_box1.wide{
  width: 100%;
}
.sec_head_box1.wide + .sec_head_box2{
  width: 100%;
}

.sec_head_title{
  margin-bottom: 10px;
}
.sec_head_txt{
  font-size: 15px;
  line-height: 1.875;
  text-align: justify;
}
.sec_head_txt2{
  margin-top: 20px;
}
.sec_head_txt2 p{
  display: inline;
  font-size: 22px;
  font-weight: 600;
  font-family: var(--font-mincho);
  line-height: 1.875;
  letter-spacing: 0.075em;
  /*border-bottom: 3px dashed #a39c92;*/
  
  padding-bottom: 8px;
  background-image: linear-gradient(to right, #a39c92 60%, transparent 0%);
  background-size: 16px 3px; 
  background-repeat: repeat-x;
  background-position: left bottom;
}

.sec_head_tate{
}
.sec_head_tate_title{
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.075em;
}
.sec_head_tate_illust{
  margin-top: 20px;
}
.sec_head_tate_illust img{
  width: 183px;
}

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

}


@media (max-width:374px){

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

}
@media (max-width:1023px){
  
  .sec_head_txt2 + .sec_head_txt2{
    margin-top: 0;
  }
  .sec_head_tate{
    margin-top: 15px;
  }
  .sec_head_tate_title{
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 0.075em;
  }
  .sec_head_tate_illust{
    margin-top: 20px;
  }
  .sec_head_tate_illust img{
    width: 90px;
  }
  
  
}
@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;
  }

  
  .sec_head_tate{
    margin-top: 5px;
    margin-bottom: 20px;
  }
  .sec_head_tate_title{
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 0.075em;
  }
  .sec_head_tate_illust{
    margin-top: 20px;
    position: absolute;
    z-index: 1;
    top: -50px;
    right: 0;
  }
  .sec_head_tate_illust img{
    width: 90px;
  }
  
  .sec_head_txt2 p{
    background-size: 16px 2px; 
  }
  
}
@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: 300px;
    font-size: 15px;
    padding: 16px 20px;
    margin: 5px 5px;
  }
  .read_more a:after{
    /*top: 50%;*/
  }
  .read_more a:hover:after{
    /*margin-right: -5px;*/
  }
  .read_more2 a{
    min-width: 300px;
  }

  /* 見出し */
  .tt2{
    margin-bottom: 30px;
  }
  .tt2_en{
    font-size: 24px;
    white-space: nowrap;
  }
  .tt2_en:after{
    width: 100px;
    margin-top: 10px;
  }
  .tt2_ja{
    font-size: 28px;
    font-size: 26px;
  }
  .tt2_en + .tt2_ja{
    margin-top: 8px;
  }


  /* 見出し（tt3） */
  .tt3{
  }
  .tt3_ja{
    font-size: 36px;
  }
  .tt3_ja strong{
  }
  .tt3_en{
    font-size: 24px;
    margin-top: 15px;
  }

  /* セクション見出し */
  .sec_head{
    margin-bottom: 30px;
  }
  .sec_head_box1{
    width: 160px;
  }
  .sec_head_box2{
    width: calc(100% - 160px);
    margin-top: 0;
  }
  .sec_head_box1.wide{
    width: 220px;
    margin-right: 20px;
  }
  .sec_head_box1.wide + .sec_head_box2{
    width: calc(100% - 220px - 20px);
  }

  .sec_head_txt{
    font-size: 15px;
  }
  .sec_head_txt2{
    margin-top: 0;
    margin-bottom: 0;
  }
  .sec_head_txt2 p{
    font-size: 22px;
  }

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

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

  .read_more2 a{
    min-width: 480px;
  }
  
  
  /* 見出し */


  .sec_head_tate{
    position: absolute;
    z-index: 1;
    top: 100%;
    left: -20px;
    margin-top: -100px;
  }
  .sec_head_tate_title{
    font-size: 20px;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
  .sec_head_tate_illust{
    margin-top: 100px;
  }
  .sec_head_tate_illust img{
    width: 100px;
  }  

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

  /* 見出し */
  .tt2{
    margin-bottom: 30px;
  }
  .tt2_en{
    font-size: 30px;
  }
  .tt2_en:after{
    width: 100px;
    margin-top: 20px;
  }
  .tt2_ja{
    font-size: 30px;
  }
  .tt2_en + .tt2_ja{
    margin-top: 15px;
  }

  /* セクション見出し */
  .sec_head{
    margin-bottom: 30px;
  }
  .sec_head_box1{
    width: 205px;
  }
  .sec_head_box2{
    width: calc(100% - 205px);
    margin-top: 0;
  }
  .sec_head_box1.wide{
    width: 300px;
    margin-right: 20px;
  }
  .sec_head_box1.wide + .sec_head_box2{
    width: calc(100% - 300px - 20px);
  }

  .sec_head_txt{
    font-size: 15px;
  }
  
  .sec_head_tate{
    left: -10px;
    margin-top: -30px;
  }
  .sec_head_tate_title{
    font-size: 20px;
  }
  .sec_head_tate_illust{
    margin-top: 100px;
    margin-left: -15px;
  }
  .sec_head_tate_illust img{
    width: 100px;
  }  

}


@media (min-width:1470px){

  /* 見出し */
  .tt2{
    margin-bottom: 30px;
  }
  .tt2_en{
    font-size: 30px;
  }
  .tt2_en:after{
    width: 100px;
    margin-top: 20px;
  }
  .tt2_ja{
    font-size: 36px;
  }
  .tt2_en + .tt2_ja{
    margin-top: 15px;
  }

  /* セクション見出し */
  .sec_head{
    margin-bottom: 40px;
  }
  .sec_head_box1{
    width: 205px;
  }
  .sec_head_box2{
    width: calc(100% - 205px);
    margin-top: 5px;
  }
  .sec_head_box1.wide{
    width: 395px;
    margin-right: 0;
  }
  .sec_head_box1.wide + .sec_head_box2{
    width: calc(100% - 395px);
  }

  .sec_head_txt{
    font-size: 15px;
    line-height: 2;
  }
  .sec_head_txt2{
  }
  .sec_head_txt2 p{
    font-size: 36px;
  }
  
  
  .sec_head_tate{
    margin-top: -50px;
  }
  .sec_head_tate_title{
    font-size: 24px;
  }
  .sec_head_tate_illust{
    margin-top: 100px;
  }
  .sec_head_tate_illust img{
    width: 183px;
  }  
}

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

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

/*******************************
*　HOME
********************************/
.pg_home{
  padding-top: 50px;
}
.pg_home .section.sec1{
  background-color: #f9f4ed;
}
.pg_home .section.sec1:after{
  content: "";
  background: #FFF;
  height: 150px;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
}


.pg_home .section.sec2{

}
.pg_home .section.sec3{
  padding-top: 0;
}
.pg_home .section.sec4{
  padding-top: 0;
}
.pg_home .section.sec5{
  padding-top: 0;
}
.pg_home .section.sec6{
  background-color: #f9f4ed;
  padding-top: 0;
  position: relative;
  z-index: 1;
}
.pg_home .section.sec6:after{
  content: "";
  display: block;
  background: #FFF;
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  right: 0;
  height: 300px;
}
.pg_home .section.sec7{
  padding-top: 0;
}
.pg_home .section.sec8{
  padding-top: 0;
}

@media (max-width:767px){
  
  .pg_home .section.sec4 .tt2_ja{
    font-size: 18px;
  }
  
}
@media (min-width:768px){

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

  }
  .pg_home .section.sec2{
    padding-top: 50px;
  }
  .pg_home .section.sec3{
    padding-top: 50px;
  }
  .pg_home .section.sec4{
    padding-top: 50px;
  }
  .pg_home .section.sec5{
    padding-top: 50px;
    padding-bottom: 0;
  }
  .pg_home .section.sec6{

  }
  .pg_home .section.sec6:after{
    height: 300px;
  }
  .pg_home .section.sec7{
    padding-top: 50px;
  }
  .pg_home .section.sec8{
    padding-top: 50px;
  }

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


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


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

  }
  .pg_home .section.sec2{
    padding-top: 135px;
  }
  .pg_home .section.sec3{
    padding-top: 105px;
  }
  .pg_home .section.sec4{
    padding-top: 170px;
  }
  .pg_home .section.sec5{
    padding-top: 110px;
    padding-bottom: 0;
  }
  .pg_home .section.sec6{

  }
  .pg_home .section.sec6:after{
    height: 300px;
  }
  .pg_home .section.sec7{
    padding-top: 135px;
  }
  .pg_home .section.sec8{
    padding-top: 100px;
  }

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


}

.cmn_txt{
  line-height: 1.875;
  text-align: justify;
}
.cmn_txt_li{
  text-indent: -1em;
  padding-left: 1em;
}

/* About */
.home_about{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_about_box1{
  width: 100%;
}
.home_about_box2{
  width: 100%;
  margin-top: 20px;
}
.home_about_txt{

}
.home_about_imgs{
  aspect-ratio: 930 / 655;
  /*margin-right: var(--margin-for-device-side-w);*/
  position: relative;
  z-index: 1;
}
.home_about_imgs_item1{
  width: 81.18%;
  margin-left: auto;
}
.home_about_imgs_item1.img_fit:before{
  padding-top: 63.576%;
}
.home_about_imgs_item2{
  width: 37.63%;
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
}
.home_about_imgs_item2_img{

}
.home_about_imgs_item2_img.img_fit:before{
  padding-top: 100%;
}
.home_about_illust{
  position: absolute;
  z-index: 1;
}
.home_about_illust.pos1{
  width: 44%;
  bottom: calc(100% + 15px);
  left: 0;
}
.home_about_illust.pos2{
  width: 56.85%;
  bottom: 0;
  left: 100%;
}

/* House Building */
.home_house{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-left: -10px;
  margin-right: -10px;
}
.home_house_item{
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
}
.home_house_item:nth-child(n+2){
  margin-top: 30px;
}
.home_house_item_inner{

}
.home_house_item_img{
  border-radius: 10px;
}
.home_house_item_img.img_fit:before{
  padding-top: 47.619%;
}
.home_house_item_label{
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  text-align: center;
}
.home_house_item_label_ja{
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.2em;
  /*filter:
    drop-shadow(0 0 6px #FFF) drop-shadow(0 0 6px #FFF)
    drop-shadow(0 0 6px #FFF) drop-shadow(0 0 6px #FFF);*/
  filter: none;
  text-shadow:
    0 0 6px #fff,
    0 0 6px #fff,
    0 0 6px #fff,
    0 0 6px #fff,
    0 0 6px #fff,
    0 0 6px #fff,
    0 0 6px #fff;
}
.home_house_item_label_ja2{
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-mincho);
  letter-spacing: 0.2em;
  margin-bottom: 10px;
}
.home_house_item_label_en{
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-mincho);
  display: inline-block;
  background: #d9d1c5;
  padding: 2px 10px 3px;
  margin-top: 3px;
}

.home_house_item_label_ja.wh{
  color: #FFF;
  /*filter:
    drop-shadow(0 0 3px #000) drop-shadow(0 0 3px #000) drop-shadow(0 0 3px #000);*/
  filter: none;
  text-shadow:
    0 0 6px #000,
    0 0 6px #000,
    0 0 6px #000,
    0 0 6px #000,
    0 0 6px #000,
    0 0 6px #000,
    0 0 6px #000
    ;
}
.home_house_item_label_ja2.wh{
  color: #FFF;
  /*filter:
    drop-shadow(0 0 3px #000) drop-shadow(0 0 3px #000) drop-shadow(0 0 3px #000);*/
  filter: none;
  text-shadow:
    0 0 6px #000,
    0 0 6px #000,
    0 0 6px #000,
    0 0 6px #000,
    0 0 6px #000,
    0 0 6px #000,
    0 0 6px #000
    ;
}


.home_house_item_title{
  margin-top: 15px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #d1c0a5;
}
.home_house_item_title_link{
  display: block;
  position: relative;
  z-index: 1;
}
.home_house_item_title_link:after{
  content: "";
  width: 20px;
  aspect-ratio: 1 / 1;
  background-image: url('https://soyokazenoie.com/system_panel/uploads/images/arrow_r.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.home_house_item_title_link:hover:after{
  margin-right: -5px;
}

.home_house_item_title_txt{
  font-size: 18px;
  font-weight: 600;
}
.home_house_item_txt{
  font-size: 15px;
}

/* 快適な住まい */

.home_toward_head{
  --home-toward-illust-resize: 0.5;
  position: relative;
  z-index: 1;
}
.home_toward_head_illust{
  display: inline-block;
}
.home_toward_head_illust.pos1{
  width: calc(281px * var(--home-toward-illust-resize));
  left: 0;
  bottom: 15px;
}
.home_toward_head_illust.pos2{
  width: calc(250px * var(--home-toward-illust-resize));
  right: 0;
  top: 55px;
}

.home_toward{
  font-weight: 500;
}
.home_toward_contents{

}
* + .home_toward_contents{
  margin-top: 30px;
}
.home_toward_contents_row{
  display: flex;
  flex-wrap: wrap;
  background: #c4b8a5;
  border-radius: 10px;
  overflow: hidden;
}
.home_toward_contents_row + .home_toward_contents_row{
  margin-top: 20px;
}
.home_toward_contents_row:nth-child(even){
  background: #a39c92;
}
.home_toward_contents_box1{
  width: 100%;
  padding: 25px 20px 25px 20px;
  order: 2;
}
.home_toward_contents_box2{
  width: 100%;
  order: 1;
}
.home_toward_contents_img{

}
.home_toward_contents_img.img_fit:before{
  padding-top: 66.667%;
}

.home_toward_contents_head{
  display: flex;
  align-items: flex-end;
  margin-bottom: 25px;
}
.home_toward_contents_head_icon{
  width: 100px;
  margin-right: 15px;
}
.home_toward_contents_head_title{
  width: calc(100% - 100px - 15px);
}
.home_toward_contents_head_title_txt{
  font-size: 16px;
  font-weight: 600;
}
.home_toward_contents_title{
  font-size: 20px;
  font-weight: 600;
  line-height: 1.533;
  margin-bottom: 10px;
}
.home_toward_contents_txt{
  font-size: 15px;
}

/* モデルハウス */
.home_modelhouse_head{
  margin-bottom: 30px;
}
.home_modelhouse_head.img_fit:before{

}

.home_modelhouse_list{
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}
* + .home_modelhouse_list{
  margin-top: 50px;
}
.home_modelhouse_list_item{
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
}
.home_modelhouse_list_item:nth-child(n+2){
  margin-top: 30px;
}
.home_modelhouse_list_item_inner{
  background: #f8f5f5;
  padding: 0 15px;
  padding-bottom: 75px;
  height: 100%;
  position: relative;
  z-index: 1;
}
.home_modelhouse_list_item_img{
  margin: 0 -15px;
}
.home_modelhouse_list_item_img.img_fit:before{
  padding-top: 75%;
}
.home_modelhouse_list_item_label{
  min-width: 120px;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-mincho);
  text-align: center;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  background: #FFF;
  padding: 2px 5px;
}
.home_modelhouse_list_item_title1{
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  margin-top: 15px;
  margin-bottom: 15px;
}
.home_modelhouse_list_item_title1:after{
  content: "";
  display: block;
  width: 100px;
  height: 1px;
  background: var(--bdr-color);
  margin: 8px auto 0;
}
.home_modelhouse_list_item_title2{
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
}
.home_modelhouse_list_item_txt{


}
.home_modelhouse_list_item_link{
  margin: 0;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  right: 0;
}
.home_modelhouse_list_item_link_a{
  display: block;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  background: #181818;
  color: #FFF;
  padding: 18px 0 20px;
}



.home_modelhouse_list_item_link_a:before{
  content: "";
  height: 6px;
  position: absolute;
  z-index: 1;
  top: 100%;
  left: 0;
  right: 0;
  background-image: url(https://soyokazenoie.com/system_panel/uploads/images/read_more2_bdr.png);
  background-size: cover;
  background-position: center;
  transition: 0.2s all;
}

.home_modelhouse_list_item_link_a:after{
  content: "";
  width: 30px;
  aspect-ratio: 3 / 1;
  background-image: url('https://soyokazenoie.com/system_panel/uploads/images/read_more_icon2.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
  transform-origin: right center;
}
.home_modelhouse_list_item_link_a:hover{
  background-color: var(--main-color);
  color: #FFF;
}
.home_modelhouse_list_item_link_a:hover:after{
  filter: brightness(1.5);
  -webkit-transform: translate(0, -50%) scale(1.2);
  transform: translate(0, -50%) scale(1.2);
}
.home_modelhouse_list_item_link_a:hover:before{
  background-image: url(https://soyokazenoie.com/system_panel/uploads/images/read_more2_bdr_on.png);
}

@media (max-width:374px){

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

}
@media (max-width:1023px){
  .home_toward_head_illusts{
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
@media (max-width:767px){

  .home_toward_head_illusts{
    margin-top: 20px;
    margin-bottom: 20px;
  }
  
}
@media (min-width:768px){

  /* About */
  .home_about{
  }
  .home_about_box1{
    /*width: 44.73%;*/
  }
  .home_about_box2{
    /*width: 48.02%;*/
    margin-top: 30px;
  }

  .home_about_imgs{
    /*margin-right: var(--margin-for-device-side-w);*/
  }
  .home_about_txt{

  }
  .home_about_illust.pos1{
    width: 44%;
    bottom: calc(100% + 50px);
  }
  .home_about_illust.pos2{
    width: 56.85%;
  }


  /* House Building */
  .home_house{
    margin-left: -10px;
    margin-right: -10px;
  }
  .home_house_item{
    width: 50%;
    padding-left: 10px;
    padding-right: 10px;
  }
  .home_house_item:nth-child(n+2){
    margin-top: 0;
  }
  .home_house_item:nth-child(n+3){
    margin-top: 30px;
  }
  .home_house_item_label{
    top: 50%;
  }
  .home_house_item_label_ja{
    font-size: 24px;
  }
  .home_house_item_label_en{
    font-size: 14px;
    padding: 2px 10px 3px;
  }
  .home_house_item_title{
    margin-top: 25px;
    margin-bottom: 16px;
    padding-bottom: 13px;
  }
  .home_house_item_title_link{
  }
  .home_house_item_title_link:after{
    width: 30px;
  }
  .home_house_item_title_txt{
    font-size: 21px;
    padding-right: 30px;
  }
  .home_house_item_txt{
    font-size: 16px;
  }

  
  
  .home_toward_contents{

  }
  * + .home_toward_contents{
    margin-top: 50px;
  }
  .home_toward_contents_row{
  }
  .home_toward_contents_row + .home_toward_contents_row{
    margin-top: 20px;
  }
  .home_toward_contents_box1{
    /*width: 42.76%;*/
  }
  .home_toward_contents_box2{
    /*width:57.24%;*/
  }
  .home_toward_contents_img{

  }
  .home_toward_contents_img.img_fit:before{
    /*padding-top: 66.667%;*/
  }

  .home_toward_contents_head{
    margin-bottom: 25px;
  }
  .home_toward_contents_head_icon{
    width: 148px;
    margin-right: 22px;
  }
  .home_toward_contents_head_title{
    width: calc(100% - 148px - 22px);
  }
  .home_toward_contents_head_title_txt{
    font-size: 18px;
  }
  .home_toward_contents_title{
    font-size: 24px;
    margin-bottom: 15px;
  }
  .home_toward_contents_txt{
    font-size: 16px;
  }

  /* モデルハウス */
  .home_modelhouse_head{

  }
  .home_modelhouse_head.img_fit:before{

  }

  .home_modelhouse_list{
    justify-content: center;
    margin-left: -10px;
    margin-right: -10px;
  }
  * + .home_modelhouse_list{
    margin-top: 50px;
  }
  .home_modelhouse_list_item{
    width: 50%;
    padding-left: 10px;
    padding-right: 10px;
  }
  .home_modelhouse_list_item:nth-child(n+2){
    margin-top: 0;
  }
  .home_modelhouse_list_item:nth-child(n+3){
    margin-top: 30px;
  }
  .home_modelhouse_list_item_inner{
    padding: 0 20px 75px;
  }
  .home_modelhouse_list_item_img{
    margin: 0 -20px;
  }
  .home_modelhouse_list_item_label{
    min-width: 160px;
    /*padding: 2px 2px;*/
  }
  .home_modelhouse_list_item_title1{
    font-size: 24px;
    margin-top: 15px;
    margin-bottom: 22px;
  }
  .home_modelhouse_list_item_title1:after{
    width: 100px;
    margin: 15px auto 0;
  }
  .home_modelhouse_list_item_title2{
    font-size: 18px;
    margin-bottom: 17px;
    margin-left: -20px;
    margin-right: -20px;
  }
  .home_modelhouse_list_item_txt{


  }
  .home_modelhouse_list_item_link{
  }
  .home_modelhouse_list_item_link_a{
    font-size: 15px;
    padding: 20px 0 20px;
  }

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

  /* About */
  .home_about{
  }
  .home_about_box1{
    width: 45%;
  }
  .home_about_box2{
    width: 50%;
    margin-top: 10px;
  }

  .home_about_imgs{
    margin-right: var(--margin-for-device-side-w);
  }
  .home_about_txt{

  }
  .home_about_illust.pos1{
    bottom: calc(100% + 50px);
  }
  .home_about_illust.pos2{
  }


  /* House Building */
  .home_house{
    margin-left: calc(-10px + 80px);
    margin-right: -10px;
  }
  .home_house_item{
    /*width: 50%;*/
    /*padding-left: 10px;*/
    /*padding-right: 10px;*/
  }
  .home_house_item:nth-child(n+3){
    margin-top: 30px;
  }
  .home_house_item_label_ja{
    /*font-size: 36px;*/
  }
  .home_house_item_label_en{
    /*font-size: 14px;*/
    /*padding: 2px 10px 3px;*/
  }
  .home_house_item_title{
    /*margin-top: 25px;*/
    /*margin-bottom: 16px;*/
    /*padding-bottom: 13px;*/
  }
  .home_house_item_title_link{
  }
  .home_house_item_title_link:after{
    width: 30px;
  }
  .home_house_item_title_txt{
    font-size: 21px;
  }

  /* 快適な住まい */
  .home_toward_head{
    --home-toward-illust-resize: 0.4;
  }
  .home_toward_head_illust{
    position: absolute;
    z-index: 1;
  }
  .home_toward_head_illust.pos1{
    bottom: -15px;
  }
  .home_toward_head_illust.pos2{
    top: 55px;
  }
  
  .home_toward{
    text-align: center;
  }
  .home_toward_contents{

  }
  .home_toward_contents_row{
  }
  .home_toward_contents_row + .home_toward_contents_row{
    margin-top: 20px;
  }
  .home_toward_contents_box1{
    width: 42.76%;
    width: 44%;
  }
  .home_toward_contents_box2{
    width:57.24%;
    width:56%;
  }
  .home_toward_contents_img{
    height: 100%;
  }
  .home_toward_contents_img.img_fit:before{
    padding-top: 0;
    height: 100%;
  }
  .home_toward_contents_img.img_fit:before{
    /*padding-top: 66.667%;*/
  }

  /*.home_toward_contents_head{
    margin-bottom: 25px;
  }
  .home_toward_contents_head_icon{
    margin-right: 22px;
  }
  .home_toward_contents_head_title{

  }
  .home_toward_contents_head_title_txt{
    font-size: 18px;
  }
  .home_toward_contents_title{
    font-size: 30px;
    margin-bottom: 25px;
  }
  .home_toward_contents_txt{

  }*/

  .home_toward_contents_row:nth-child(odd) .home_toward_contents_box1{
    order: 1;
    padding: 35px 20px 35px 20px;
  }
  .home_toward_contents_row:nth-child(odd) .home_toward_contents_box2{
    order: 2;
  }
  .home_toward_contents_row:nth-child(even) .home_toward_contents_box1{
    order: 2;
    padding: 35px 20px 35px 20px;
  }
  .home_toward_contents_row:nth-child(even) .home_toward_contents_box2{
    order: 1;
  }

  /* モデルハウス */
  .home_modelhouse_head{

  }
  .home_modelhouse_head.img_fit:before{

  }

  .home_modelhouse_list{
    margin-left: -10px;
    margin-right: -10px;
  }
  * + .home_modelhouse_list{
    margin-top: 50px;
  }
  .home_modelhouse_list_item{
    width: 33.333%;
    padding-left: 10px;
    padding-right: 10px;
  }
  .home_modelhouse_list_item:nth-child(n+3){
    margin-top: 0;
  }
  .home_modelhouse_list_item:nth-child(n+4){
    margin-top: 30px;
  }
  .home_modelhouse_list_item_inner{
    /*padding: 0 30px;*/
  }
  .home_modelhouse_list_item_img{
    /*margin: 0 -30px;*/
  }
  .home_modelhouse_list_item_label{
    /*min-width: 160px;*/
    /*padding: 2px 2px;*/
  }
  .home_modelhouse_list_item_title1{
    font-size: 22px;
    /*margin-top: 15px;*/
    /*margin-bottom: 22px;*/
  }
  .home_modelhouse_list_item_title1:after{
    /*width: 100px;*/
    /*margin: 15px auto 0;*/
  }
  .home_modelhouse_list_item_title2{
    font-size: 17px;
    /*margin-bottom: 17px;*/
  }
  .home_modelhouse_list_item_txt{


  }
  .home_modelhouse_list_item_link{
    /*margin: 15px -30px 0;*/
  }
  .home_modelhouse_list_item_link_a{
    /*font-size: 15px;*/
    /*padding: 20px 0 20px;*/
  }

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


  .home_toward_head{
    --home-toward-illust-resize: 0.5;
  }
  .home_toward_head_illust{
  }
  .home_toward_head_illust.pos1{
    bottom: -30px;
  }
  .home_toward_head_illust.pos2{
    top: 55px;
  }
  
}
@media (min-width:1470px){

  /* About */
  .home_about{
  }
  .home_about_box1{
    width: 44.73%;
  }
  .home_about_box2{
    width: 48.02%;
    margin-top: 10px;
  }
  .home_about_illust.pos1{
    bottom: calc(100% + 50px);
  }
  .home_about_illust.pos2{
  }

  /* House Building */
  .home_house{
    margin-left: calc(-28px + 205px);
    margin-right: -28px;
  }
  .home_house_item{
    width: 50%;
    padding-left: 28px;
    padding-right: 28px;
  }
  .home_house_item:nth-child(n+2){
    margin-top: 0;
  }
  .home_house_item:nth-child(n+3){
    margin-top: 30px;
  }
  .home_house_item_label_ja{
    font-size: 36px;
  }
  .home_house_item_label_en{
    font-size: 14px;
    /*padding: 2px 10px 3px;*/
  }
  .home_house_item_title{
    /*margin-top: 25px;*/
    /*margin-bottom: 16px;*/
    /*padding-bottom: 13px;*/
  }
  .home_house_item_title_link{
  }
  .home_house_item_title_link:after{
    width: 30px;
  }
  .home_house_item_title_txt{
    font-size: 21px;
  }

  /* 快適な住まい */
  .home_toward_head{
    --home-toward-illust-resize: 0.6;
  }
  .home_toward_head_illust{
  }
  .home_toward_head_illust.pos1{
    bottom: 15px;
  }
  .home_toward_head_illust.pos2{
    top: 55px;
  }
  
  .home_toward{
    text-align: center;
  }
  .home_toward_contents{

  }
  * + .home_toward_contents{
    margin-top: 75px;
  }
  .home_toward_contents_row{
  }
  .home_toward_contents_row + .home_toward_contents_row{
    margin-top: 20px;
  }
  .home_toward_contents_box1{
    width: 42.76%;
  }
  .home_toward_contents_box2{
    width:57.24%;
  }
  .home_toward_contents_img{

  }
  .home_toward_contents_img.img_fit:before{
    /*padding-top: 66.667%;*/
  }

  .home_toward_contents_head{
    margin-bottom: 25px;
  }
  .home_toward_contents_head_icon{
    margin-right: 22px;
  }
  .home_toward_contents_head_title{

  }
  .home_toward_contents_head_title_txt{
    font-size: 18px;
  }
  .home_toward_contents_title{
    font-size: 30px;
    margin-bottom: 25px;
  }
  .home_toward_contents_txt{

  }

  .home_toward_contents_row:nth-child(odd) .home_toward_contents_box1{
    padding: 35px 65px 35px 35px;
  }
  .home_toward_contents_row:nth-child(odd) .home_toward_contents_box2{
  }
  .home_toward_contents_row:nth-child(even) .home_toward_contents_box1{
    padding: 35px 50px 35px 65px;
  }
  .home_toward_contents_row:nth-child(even) .home_toward_contents_box2{
  }

  /* モデルハウス */
  .home_modelhouse_head{

  }
  .home_modelhouse_head.img_fit:before{

  }

  .home_modelhouse_list{
    margin-left: -20px;
    margin-right: -20px;
  }
  * + .home_modelhouse_list{
    margin-top: 50px;
  }
  .home_modelhouse_list_item{
    width: 33.333%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .home_modelhouse_list_item:nth-child(n+3){
    margin-top: 0;
  }
  .home_modelhouse_list_item:nth-child(n+4){
    margin-top: 30px;
  }
  .home_modelhouse_list_item_inner{
    padding: 0 30px 75px;
  }
  .home_modelhouse_list_item_img{
    margin: 0 -30px;
  }
  .home_modelhouse_list_item_title1{
    font-size: 28px;
  }
  .home_modelhouse_list_item_title2{
    font-size: 18px;
  }
  .home_modelhouse_list_item_link{
  }

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

  .home_toward_head{
    --home-toward-illust-resize: 1.0;
  }
  .home_toward_head_illust{
  }
  .home_toward_head_illust.pos1{
    bottom: 15px;
  }
  .home_toward_head_illust.pos2{
    top: 55px;
  }
  
  .home_toward{
    font-size: 18px;
  }
  
  /* モデルハウス */
  .home_modelhouse_head{

  }
  .home_modelhouse_head.img_fit:before{

  }

  .home_modelhouse_list{
    margin-left: -20px;
    margin-right: -20px;
  }
  * + .home_modelhouse_list{
    margin-top: 50px;
  }
  .home_modelhouse_list_item{
    width: 33.333%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .home_modelhouse_list_item:nth-child(n+3){
    margin-top: 0;
  }
  .home_modelhouse_list_item:nth-child(n+4){
    margin-top: 30px;
  }
  .home_modelhouse_list_item_inner{
  }
  .home_modelhouse_list_item_img{
    margin: 0 -30px;
  }
  .home_modelhouse_list_item_title1{
    font-size: 28px;
  }
  .home_modelhouse_list_item_title2{
    font-size: 20px;
  }
  .home_modelhouse_list_item_link{
  }

}




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

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

}
.pg_about .section.sec1{

}
.pg_about .section.sec2{

}
.pg_about .section.sec3{
  background-color: #f9f4ed;
}


@media (max-width:374px){

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

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

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

  .pg_about{

  }
  .pg_about .section.sec1{

  }
  .pg_about .section.sec2{

  }
  .pg_about .section.sec3{

  }

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


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


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


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


}

/* メイン部分 */

/* 概要 */
.about_top{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 75px;
  position: relative;
  z-index: 1;
}
.about_top:after{
  content: "";
  background: #f9f4ed;
  width: 1040px;
  position: absolute;
  z-index: -1;
  top: 93px;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.about_top_box1{
  width: 49%;
  margin-top: 0;
}
.about_top_box2{
  width: 100%;
}
.about_top_box3{
  width: 19.73%;
  width: 23.68%;
  width: 49%;
  padding-left: 0;
  margin-top: 0;
}

.about_top_imgs1{
  margin-left: 0;
  aspect-ratio: 460 / 690;
  position: relative;
  z-index: 1;
}
.about_top_imgs1_1{
  width: 86.95%;
  border-radius: 10px;
}
.about_top_imgs1_1.img_fit:before{
  padding-top: 120%;
}
.about_top_imgs1_2{
  width: 69.56%;
  border-radius: 10px;
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
}
.about_top_imgs1_2.img_fit:before{
  padding-top: 100%;
}

.about_top_imgs2{
  margin-right: 0;
  position: relative;
  z-index: 1;
}
.about_top_imgs2_1{
  width: 100%;
  border-radius: 10px;
}
.about_top_imgs2_1.img_fit:before{
  padding-top: 135%;
}

.about_top_head{
  position: relative;
  z-index: 1;
}
.about_top_head_illust1,
.about_top_head_illust2{
  position: absolute;
  z-index: 1;
  bottom: 13px;
}
.about_top_head_illust1{
  width: 154px;
  right: calc(100% + 10px);
}
.about_top_head_illust2{
  width: 199px;
  left: calc(100% + 10px);
}
.top_about_txt{
  margin-top: 0;
}

/* 価値 */
.about_contents{

}
* + .about_contents{
  margin-top: 50px;
}
.about_contents_row{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 15px 15px 15px;
  border-radius: 10px;
  background: #f3f1f1;
}
.about_contents.wh .about_contents_row{
  background: #FFF;
}
.about_contents_row + .about_contents_row{
  margin-top: 20px;
}
.about_contents_box1{
  width: 100%;
  order: 2;
  margin-top: 20px;
}
.about_contents_box2{
  width: 100%;
  order: 1;
}
.about_contents_head{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-bottom: 15px;
  border-bottom: 2px dashed #a39c92;
  margin-bottom: 20px;
}
.about_contents_head.slim{
  padding-bottom: 23px;
}
.about_contents_head_num{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  aspect-ratio: 1 / 1;
  font-size: 18px;
  font-weight: 900;
  font-family: var(--font-mincho);
  text-align: center;
  background: #FFF;
  border: 2px solid var(--bdr-color);
  border-radius: 50%;
  margin-right: 10px;
}
.about_contents_head_num2{
  width: 100%;
  font-size: 16px;
  font-weight: 900;
  font-family: var(--font-mincho);
  color: #a39c92;
}
.about_contents_head_num2 strong{
  font-size: 3em;
  font-weight: 900;
}
.about_contents_head_title{
  width: calc(100% - 42px - 10px);
  font-size: 18px;
  font-size: 24px;
  font-weight: 400;
}
.about_contents_head_num2 + .about_contents_head_title{
  width: 100%;
}
.about_contents_txt{

}
.about_contents_img{
  border-radius: 10px;
}
.about_contents_img.img_fit:before{
  padding-top: 66.667%;
}

.about_contents_row:nth-child(even){
  background: #e6e1d9;
}


@media (max-width:1023px){
  
  .about_top_box1{
    width: 49%;
    order: 2;
    
  }
  .about_top_box2{
    width: 100%;
    order: 1;
    margin-bottom: 30px;
  }
  .about_top_box3{
    width: 49%;
    order: 3;
  }
  
  .about_top_head{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .about_top_head .tt2{
    width: 100%;
  }
  .about_top_head_illust1, 
  .about_top_head_illust2{
    position: static;
  }
  .about_top_head_illust1{
    width: 45%;
    display: none;
  }
  .about_top_head_illust2{
    width: 30%;
  }
  
}
@media (max-width:767px){

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

  


  /* 価値 */
  .about_contents{

  }
  * + .about_contents{
    margin-top: 50px;
  }
  .about_contents_row{
    padding: 30px 30px 30px;
  }
  .about_contents_row + .about_contents_row{
    margin-top: 30px;
  }
  .about_contents_box1{
    margin-top: 30px;
  }
  .about_contents_box2{
  }
  .about_contents_head{
    padding-bottom: 20px;
    border-bottom: 2px dashed #a39c92;
    margin-bottom: 20px;
  }
  .about_contents_head_num{
    width: 60px;
    font-size: 24px;
    margin-right: 20px;
  }
  .about_contents_head_title{
    font-size: 28px;
    width: calc(100% - 60px - 20px);
  }

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

  /* 概要 */
  .about_top{
    padding-bottom: 75px;
  }
  .about_top:after{
    width: 1040px;
    position: absolute;
    z-index: -1;
    top: 93px;
    bottom: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }

  .about_top_box1{
    width: 23.68%;
    margin-top: 215px;
  }
  
  .about_top_box2{
    width: 44.18%;
  }
  .about_top_box3{
    width: 23.68%;
    padding-left: 60px;
    margin-top: 295px;
  }

  .about_top_imgs1{
    margin-left: -100px;
  }
  .about_top_imgs1_1{
    width: 86.95%;
    border-radius: 10px;
  }
  .about_top_imgs1_1.img_fit:before{
    padding-top: 120%;
  }
  .about_top_imgs1_2{
    width: 69.56%;
  }
  .about_top_imgs1_2.img_fit:before{
    padding-top: 100%;
  }

  .about_top_imgs2{
    margin-right: -100px;
  }
  .about_top_imgs2_1{
    width: 100%;
    border-radius: 10px;
  }
  .about_top_imgs2_1.img_fit:before{
    padding-top: 135%;
  }

  .about_top_head{
  }
  .about_top_head_illust1,
  .about_top_head_illust2{
    position: absolute;
    z-index: 1;
    bottom: 13px;
  }
  .about_top_head_illust1{
    width: 154px;
    right: calc(100% + 10px);
  }
  .about_top_head_illust2{
    width: 199px;
    left: calc(100% + 10px);
  }
  .top_about_txt{
    margin-top: 100px;
  }
  

  /* 価値 */
  .about_contents{

  }
  * + .about_contents{
    margin-top: 50px;
  }
  .about_contents_row{
    /*padding: 60px 60px 50px;*/
  }
  .about_contents_row + .about_contents_row{
    margin-top: 60px;
  }
  .about_contents_box1{
    width: 53.21%;
    margin-top: 0;
  }
  .about_contents_box2{
    width: 42.85%;
  }
  .about_contents_head{
    /*padding-bottom: 35px;*/
    /*border-bottom: 4px dashed #a39c92;*/
    /*margin-bottom: 30px;*/
  }
  .about_contents_head_num{
    width: 45px;
    font-size: 20px;
    margin-right: 15px;
  }
  .about_contents_head_title{
    font-size: 25px;
    width: calc(100% - 45px - 15px);
  }

  .about_contents_row:nth-child(odd) .about_contents_box1{
    order: 1;
  }
  .about_contents_row:nth-child(odd) .about_contents_box2{
    order: 2;
  }
  .about_contents_row:nth-child(even) .about_contents_box1{
    order: 2;
  }
  .about_contents_row:nth-child(even) .about_contents_box2{
    order: 1;
  }

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



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

  
  .about_top_box2{
    width: 42.18%;
  }
  
  /* 価値 */
  .about_contents{

  }
  * + .about_contents{
    margin-top: 50px;
  }
  .about_contents_row{
    padding: 60px 60px 50px;
  }
  .about_contents_row + .about_contents_row{
    margin-top: 60px;
  }
  .about_contents_box1{
    width: 53.21%;
  }
  .about_contents_box2{
    width: 42.85%;
  }
  .about_contents_head{
    padding-bottom: 35px;
    border-bottom: 3px dashed #a39c92;
    margin-bottom: 30px;
  }
  .about_contents_head_num{
    width: 60px;
    font-size: 24px;
    margin-right: 20px;
  }
  .about_contents_head_title{
    font-size: 30px;
    width: calc(100% - 60px - 20px);
  }

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

  .about_top_box2{
    width: 36.18%;
  }
  
  .about_contents_head_title{
    font-size: 34px;
    width: calc(100% - 60px - 20px);
  }

}



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

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

}
.pg_reason .section.sec1{

}
.pg_reason .section.sec2{
  background: #f3f1f1;
}


@media (max-width:374px){

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

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

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

  .pg_reason{

  }
  .pg_reason .section.sec1{

  }
  .pg_reason .section.sec2{
    padding-bottom: 60px;
  }

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


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

  .pg_reason .section.sec2{
    padding-bottom: 120px;
  }

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

}
.pg_performance .section.sec1{

}
.pg_performance .section.sec2{

}
.pg_performance .section.sec3{
  background: #f8f5f5;
  padding-top: 50px;
  padding-bottom: 50px;
}
.pg_performance .section.sec4{
  background: #f9f4ed;
  margin-top: 0;
  padding-top: 50px;
  padding-bottom: 50px;
}


@media (max-width:374px){

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

}
@media (max-width:767px){
  .pg_performance .section.sec2{
    padding-top: 0;
  }
}
@media (min-width:768px){

  .pg_performance{

  }
  .pg_performance .section.sec1{

  }
  .pg_performance .section.sec2{
    /*padding-top: 100px;*/
    /*padding-bottom: 145px;*/
  }
  .pg_performance .section.sec3{
    padding-top: 70px;
  }
  .pg_performance .section.sec4{
    margin-top: 50px;
    padding-top: 70px;
  }

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


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

  .pg_performance{

  }
  .pg_performance .section.sec1{

  }
  .pg_performance .section.sec2{
    padding-top: 100px;
    padding-bottom: 145px;
  }
  .pg_performance .section.sec3{

  }
  .pg_performance .section.sec4{

  }

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

  .pg_performance .section.sec3{
    padding-top: 110px;
  }
  .pg_performance .section.sec4{
    margin-top: 70px;
    padding-top: 100px;
    padding-bottom: 100px;
  }

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


}

/* メイン部分 */

/* 住宅性能 */
.performance_comfort{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
* + .performance_comfort{
  margin-top: 30px;
}
.performance_comfort_box1{
  width: 100%;
}
.performance_comfort_box2{
  width: 100%;
  margin-top: 20px;
}
.performance_comfort_img{
  border-radius: 10px;
}
.performance_comfort_img.img_fit:before{
  padding-top: 66.667%;
}

.performance_comfort_txt{

}
* + .performance_comfort_txt{
  margin-top: 20px;
}
.performance_comfort_list{
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}
.performance_comfort_list{
  margin-top: 20px;
}
.performance_comfort_list_item{
  padding: 5px 5px;
}
.performance_comfort_list_item p{
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-mincho);
  background: #e6e1d9;
  padding: 6px 10px 8px;
}

/* 住宅紹介 */
.performance_house{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.performance_house_head{
  width: 100%;
  text-align: center;
  border-bottom: 3px dashed #a39c92;
  padding-bottom: 15px;
  margin-bottom: 30px;
}
.performance_house_head_ja{
  font-size: 28px;
  font-weight: 600;
  font-family: var(--font-mincho);
}
.performance_house_head_en{
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-mincho);
  color: #968446;
  margin-top: 5px;
}

.performance_house_msg{
  width: 100%;
  margin-bottom: 30px;
}
.performance_house_msg_txt1{
  font-size: 18px;
  font-weight: 600;
  font-family: var(--font-mincho);
  line-height: 1.4;
  text-align: center;
}
.performance_house_msg_txt2{
  margin-top: 15px;
  text-align: justify;
}

.performance_house_rows{
  width: 100%;
}
.performance_house_row{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
.performance_house_row + .performance_house_row{
  margin-top: 30px;
}


.performance_house_box1{
  width: 100%;
  margin-top: 20px;
  order: 2;
}
.performance_house_box2{
  width: 100%;
  order: 1;
}
.performance_house_box3{
  width: 100%;
}
* + .performance_house_box3{
  margin-top: 30px;
}
.performance_house_box4{
  width: 100%;
}
* + .performance_house_box4{
  margin-top: 30px;
}
.performance_house_title{
  margin-bottom: 10px;
}
.performance_house_title_line{
  display: flex;
  justify-content: center;
}
.performance_house_title_line_txt{
  font-size: 20px;
  font-weight: 600;
  background: #FFF;
  padding: 10px 10px;
}
.performance_house_txt{

}
* + .performance_house_txt{
  margin-top: 15px;
}
* + .performance_house_txt_list{
  margin-top: 15px;
}
.performance_house_img{
  border-radius: 10px;
}
.performance_house_img.img_fit:before{
  padding-top: 75%;
}

.performance_house_reco{
  background: #FFF;
  border-radius: 10px;
  overflow: hidden;
}
.performance_house_reco_head{
  background: #e6e1d9;
  text-align: center;
  padding: 8px 10px;
}
.performance_house_reco_head_ja{
  font-size: 18px;
  font-weight: 600;
}
.performance_house_reco_inner{
  padding: 20px 20px;
}
.performance_house_reco_inner_row{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.performance_house_reco_inner_row + .performance_house_reco_inner_row{
  margin-top: 20px;
  /*margin-top: 60px;*/
}
.performance_house_reco_box1{
  width: 100%;
}
.performance_house_reco_box2{
  width: 100%;
  margin-top: 15px;
}
.performance_house_reco_img{
  border-radius: 10px;
}
.performance_house_reco_img.img_fit:before{
  padding-top: 55.555%;
}
.performance_house_reco_title{
  display: flex;
  margin-bottom: 10px;
}
.performance_house_reco_title_txt{
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  background: #f8f5f5;
  padding: 8px 10px 8px;
}
.performance_house_reco_txt{

}

.performance_house_sepc{
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}
.performance_house_sepc_item{
  width: 100%;
  padding: 0 10px;
}
.performance_house_sepc_item:nth-child(n+2){
  margin-top: 20px;
}
.performance_house_sepc_item_inner{
  height: 100%;
  background: #e6e1d9;
  border-radius: 10px;
  overflow: hidden;
}
.performance_house_sepc_item_img{
  position: relative;
  z-index: 1;
}
.performance_house_sepc_item_img:after{
  content: "";
  background: rgba(0,0,0,0.6);
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}
.performance_house_sepc_item_img.img_fit:before{
  padding-top: 75px;
}
.performance_house_sepc_item_title{
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  color: #FFF;
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);

}
.performance_house_sepc_item_txt{
  padding: 20px 20px;
}



@media (max-width:767px){

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

  /* 住宅性能 */
  .performance_comfort{
  }
  * + .performance_comfort{
    margin-top: 60px;
  }
  .performance_comfort_box1{
    /*width: 39.47%;*/
    /*margin-top: 5px;*/
  }
  .performance_comfort_box2{
    /*width: 56.57%;*/
    margin-top: 20px;
  }
  .performance_comfort_txt{

  }
  * + .performance_comfort_txt{
    margin-top: 25px;
  }
  .performance_comfort_list{
    margin-top: 25px;
  }
  .performance_comfort_list_item{
  }
  .performance_comfort_list_item p{
    font-size: 16px;
    padding: 10px 10px 12px;
  }

  /* 住宅紹介 */
  .performance_house{
  }
  .performance_house_head{
    border-bottom: 3px dashed #a39c92;
    padding-bottom: 20px;
    margin-bottom: 40px;
  }
  .performance_house_head_ja{
    font-size: 32px;
  }
  .performance_house_head_en{
    font-size: 16px;
    margin-top: 5px;
  }
  
  .performance_house_msg{
    margin-bottom: 30px;
  }
  .performance_house_msg_txt1{
    font-size: 30px;
  }
  .performance_house_msg_txt2{
    margin-top: 25px;
    text-align: center;
  }


  .performance_house_box1{
    /*width: 48.02%;*/
  }
  .performance_house_box2{
    /*width: 47.36%;*/
  }
  .performance_house_box3{
    /*width: 100%;*/
  }
  * + .performance_house_box3{
    margin-top: 40px;
  }
  .performance_house_box4{
    width: 100%;
  }
  * + .performance_house_box4{
    margin-top: 40px;
  }
  .performance_house_title{
    margin-bottom: 15px;
  }
  .performance_house_title_line{
    justify-content: flex-start;
  }
  .performance_house_title_line_txt{
    font-size: 24px;
    padding: 10px 10px;
  }
  .performance_house_txt{

  }
  * + .performance_house_txt{
    margin-top: 15px;
  }
  * + .performance_house_txt_list{
    margin-top: 15px;
  }

  .performance_house_reco{
  }
  .performance_house_reco_head{
    padding: 8px 10px;
  }
  .performance_house_reco_head_ja{
    font-size: 22px;
  }
  .performance_house_reco_inner{
    padding: 30px 20px;
  }
  .performance_house_reco_inner_row + .performance_house_reco_inner_row{
    margin-top: 30px;
  }
  .performance_house_reco_box1{
    width: 100%;
  }
  .performance_house_reco_box2{
    width: 100%;
  }
  .performance_house_reco_img{
  }
  .performance_house_reco_img.img_fit:before{
    padding-top: 55.555%;
  }
  .performance_house_reco_title{
    margin-bottom: 20px;
  }
  .performance_house_reco_title_txt{
    font-size: 24px;
    padding: 8px 10px 8px;
  }
  .performance_house_reco_txt{

  }
  

  .performance_house_sepc{
    margin-left: -10px;
    margin-right: -10px;
  }
  .performance_house_sepc_item{
    width: 50%;
    padding: 0 10px;
  }
  .performance_house_sepc_item:nth-child(n+2){
    margin-top: 0;
  }
  .performance_house_sepc_item:nth-child(n+3){
    margin-top: 20px;
  }
  .performance_house_sepc_item_img.img_fit:before{
    padding-top: 100px;
  }
  .performance_house_sepc_item_title{
    font-size: 24px;
  }
  .performance_house_sepc_item_txt{
    padding: 20px 20px;
  }
  .performance_house_sepc_item_txt .read_more a{
    min-width: 300px;
  }
}
@media (min-width:1024px){

  /* 住宅性能 */
  .performance_comfort{
  }
  * + .performance_comfort{
    margin-top: 60px;
  }
  .performance_comfort_box1{
    width: 39.47%;
    margin-top: 5px;
  }
  .performance_comfort_box2{
    width: 56.57%;
    margin-top: 0;
  }


  /* 住宅紹介 */
  .performance_house{
  }
  .performance_house_head{
    /*padding-bottom: 36px;*/
    /*margin-bottom: 80px;*/
  }
  .performance_house_head_ja{
    /*font-size: 48px;*/
  }
  .performance_house_head_en{
    /*font-size: 18px;*/
    /*margin-top: 10px;*/
  }

  .performance_house_box1{
    width: 48.02%;
    margin-top: 0;
  }
  .performance_house_box2{
    width: 47.36%;
    margin-top: 0;
  }
  .performance_house_box3{
    width: 100%;
  }
  * + .performance_house_box3{
    /*margin-top: 80px;*/
  }
  .performance_house_box4{
    width: 100%;
  }
  * + .performance_house_box4{
    /*margin-top: 80px;*/
  }
  .performance_house_title{
    /*margin-bottom: 30px;*/
  }
  .performance_house_title_line{
  }
  .performance_house_title_line_txt{
    font-size: 24px;
  }
  .performance_house_txt{

  }
  * + .performance_house_txt{
    margin-top: 30px;
  }
  * + .performance_house_txt_list{
    margin-top: 30px;
  }

  .performance_house_reco{
  }
  .performance_house_reco_head{
    /*padding: 8px 10px;*/
  }
  .performance_house_reco_head_ja{
    font-size: 30px;
  }
  .performance_house_reco_inner{
    padding: 40px 40px;
  }
  .performance_house_reco_box1{
    width: 450px;
  }
  .performance_house_reco_box2{
    width: calc(100% - 450px - 40px);
    margin-top: 0;
  }
  
  .performance_house_reco_inner_row:nth-child(odd) .performance_house_reco_box1{
    
  }
  .performance_house_reco_inner_row:nth-child(odd) .performance_house_reco_box2{
    
  }
  .performance_house_reco_inner_row:nth-child(even) .performance_house_reco_box1{
    order: 2;
  }
  .performance_house_reco_inner_row:nth-child(even) .performance_house_reco_box2{
    order: 1;
  }

  .performance_house_sepc_item:nth-child(n+3){
    margin-top: 20px;
  }
  .performance_house_sepc_item_img.img_fit:before{
    padding-top: 100px;
  }
  .performance_house_sepc_item_title{
    font-size: 24px;
  }
  .performance_house_sepc_item_txt{
    padding: 30px 40px 45px;
  }


  .performance_house_rows{

  }
  .performance_house_row{
  }
  .performance_house_row + .performance_house_row{
    margin-top: 75px;
  }
  .performance_house_row:nth-child(odd) .performance_house_box1{
    order: 1;
  }
  .performance_house_row:nth-child(odd) .performance_house_box2{
    order: 2;
  }
  .performance_house_row:nth-child(even) .performance_house_box1{
    order: 2;
  }
  .performance_house_row:nth-child(even) .performance_house_box2{
    order: 1;
  }
  
}
@media (min-width:1200px){


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

  /* 住宅性能 */
  .performance_comfort{
  }
  * + .performance_comfort{
    margin-top: 60px;
  }
  .performance_comfort_box1{
    width: 39.47%;
  }
  .performance_comfort_box2{
    width: 56.57%;
  }
  .performance_comfort_txt{

  }
  * + .performance_comfort_txt{
    /*margin-top: 35px;*/
  }
  .performance_comfort_list{
  }
  .performance_comfort_list{
    /*margin-top: 35px;*/
  }
  .performance_comfort_list_item{
  }
  .performance_comfort_list_item p{
    font-size: 18px;
  }

  /* 住宅紹介 */
  .performance_house{
  }
  .performance_house_head{
    padding-bottom: 36px;
    margin-bottom: 50px;
  }
  .performance_house_head_ja{
    font-size: 48px;
  }
  .performance_house_head_en{
    font-size: 18px;
    margin-top: 10px;
  }
  
  .performance_house_msg{
    margin-bottom: 75px;
  }
  .performance_house_msg_txt1{
    font-size: 30px;
  }
  .performance_house_msg_txt2{
    margin-top: 25px;
    text-align: center;
  }

  .performance_house_box1{
    /*width: 48.02%;*/
    width: 48.42%;
  }
  .performance_house_box2{
    width: 47.36%;
  }
  .performance_house_box3{
    width: 100%;
  }
  * + .performance_house_box3{
    margin-top: 80px;
  }
  .performance_house_box4{
    width: 100%;
  }
  * + .performance_house_box4{
    margin-top: 80px;
  }
  .performance_house_title{
    margin-bottom: 30px;
  }
  .performance_house_title_line{
  }
  .performance_house_title_line_txt{
    font-size: 24px;
  }
  .performance_house_txt{

  }
  * + .performance_house_txt{
    margin-top: 30px;
  }
  * + .performance_house_txt_list{
    margin-top: 30px;
  }

  .performance_house_reco{
  }
  .performance_house_reco_head{
    /*padding: 8px 10px;*/
  }
  .performance_house_reco_head_ja{
    font-size: 30px;
  }
  .performance_house_reco_inner{
    padding: 40px 40px;
  }
  .performance_house_reco_inner_row + .performance_house_reco_inner_row{
    margin-top: 30px;
  }
  .performance_house_reco_box1{
    width: 450px;
  }
  .performance_house_reco_box2{
    width: calc(100% - 450px - 40px);
  }

  .performance_house_sepc_item:nth-child(n+3){
    margin-top: 20px;
  }
  .performance_house_sepc_item_img.img_fit:before{
    padding-top: 100px;
  }
  .performance_house_sepc_item_title{
    font-size: 24px;
  }
  .performance_house_sepc_item_txt{
    padding: 30px 40px 45px;
  }
}
@media (min-width:1720px){


}




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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}


@media (max-width:374px){

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

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

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

  .pg_xxx{

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }

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


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


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


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


}

/* メイン部分 */


/* よくある質問 */
.faq_contents{
  background: #f3f1f1;
  padding: 20px 15px ;
  border-radius: 10px;
}
.faq_contents_head{
  font-size: 20px;
  padding-bottom: 10px;
  border-bottom: 3px dashed #a39c92;
  margin-bottom: 20px;
}

.faq_contents_list{

}
.faq_contents_list_item{
  border-radius: 10px;
  overflow: hidden;
}
.faq_contents_list_item + .faq_contents_list_item{
  margin-top: 20px;
}
.faq_contents_list_item_q,
.faq_contents_list_item_a{
  padding-left: 45px;
  padding-right: 15px;
  position: relative;
  z-index: 1;
}
.faq_contents_list_item_q{
  background: #e6e1d9;
  padding-top: 12px;
  padding-bottom: 12px;
}
.faq_contents_list_item_a{
  background: #FFF;
  padding-top: 15px;
  padding-bottom: 15px;
}
.faq_contents_list_item_q:before,
.faq_contents_list_item_a:before{
  font-size: 22px;
  font-weight: 900;
  font-family: var(--font-mincho);
  color: #a39c92;
  position: absolute;
  z-index: 1;
  left: 10px;
}
.faq_contents_list_item_q:before{
  content: "Q.";
  top: 6px;
}
.faq_contents_list_item_a:before{
  content: "A.";
  top: 12px;
}

.faq_contents_list_item_title{
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
}
.faq_contents_list_item_txt{

}

@media (max-width:767px){

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

  /* よくある質問 */
  .faq_contents{
    padding: 30px 30px ;
  }
  .faq_contents_head{
    font-size: 30px;
    padding-bottom: 20px;
    border-bottom: 3px dashed #a39c92;
    margin-bottom: 20px;
  }

  .faq_contents_list_item + .faq_contents_list_item{
    margin-top: 20px;
  }
  .faq_contents_list_item_q,
  .faq_contents_list_item_a{
    padding-left: 75px;
    padding-right: 20px;
  }
  .faq_contents_list_item_q{
    padding-top: 18px;
    padding-bottom: 18px;
  }
  .faq_contents_list_item_a{
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .faq_contents_list_item_q:before,
  .faq_contents_list_item_a:before{
    font-size: 28px;
    left: 25px;
  }
  .faq_contents_list_item_q:before{
    top: 12px;
  }
  .faq_contents_list_item_a:before{
    top: 14px;
  }

  .faq_contents_list_item_title{
    font-size: 20px;
  }


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


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

  /* よくある質問 */
  .faq_contents{
    padding: 40px 60px 60px;
  }
  .faq_contents_head{
    font-size: 36px;
    padding-bottom: 30px;
    /*border-bottom: 3px dashed #a39c92;*/
    margin-bottom: 40px;
  }

  .faq_contents_list_item + .faq_contents_list_item{
    margin-top: 20px;
  }
  .faq_contents_list_item_q,
  .faq_contents_list_item_a{
    padding-left: 90px;
    padding-right: 30px;
  }
  .faq_contents_list_item_q{
    padding-top: 18px;
    padding-bottom: 18px;
  }
  .faq_contents_list_item_a{
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .faq_contents_list_item_q:before,
  .faq_contents_list_item_a:before{
    font-size: 30px;
    left: 40px;
  }
  .faq_contents_list_item_q:before{
    top: 10px;
  }
  .faq_contents_list_item_a:before{
    top: 20px;
  }

  .faq_contents_list_item_title{
    font-size: 24px;
  }

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


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


}



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

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

}
.pg_showroom .section.sec1{

}
.pg_showroom .section.sec2{
  background: #f8f5f5;
}
.pg_showroom .section.sec3{

}

@media (max-width:374px){

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

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

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

  .pg_showroom{

  }
  .pg_showroom .section.sec1{

  }
  .pg_showroom .section.sec2{
    /*margin-top: 50px;*/
    padding-top: 50px;
  }
  .pg_showroom .section.sec3{

  }

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


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


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

  }
  .pg_showroom .section.sec1{

  }
  .pg_showroom .section.sec2{
    margin-top: 85px;
    padding-top: 120px;
  }
  .pg_showroom .section.sec3{

  }

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


}

/* メイン部分 */

/* コンテンツ */
.showroom_contents_wrap{

}
.showroom_contents_wrap + .showroom_contents_wrap{
  margin-top: 50px;
  padding-top: 50px;
  border-top: 3px dashed #a39c92;
}
.showroom_contents{

}
.showroom_contents_row{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.showroom_contents_row + .showroom_contents_row{
  margin-top: 50px;
}
.showroom_contents_box1{
  width: 100%;
}
.showroom_contents_box2{
  width: 100%;
  margin-top: 20px;
}
.showroom_contents_img{
  border-radius: 10px;
}
.showroom_contents_img.img_fit:before{
  padding-top: 75%;
}
.showroom_contents_category{
  margin-bottom: 20px;
}
.showroom_contents_category p{
  display: inline-block;
  min-width: 140px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-mincho);
  letter-spacing: 0.2em;
  text-align: center;
  background: #FFF;
  padding: 4px 10px 5px;
}
.showroom_contents_title1{
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  border-left: 4px solid #a39c92;
  padding-left: 10px;
  padding-top: 2px;
  padding-bottom: 6px;
  padding-bottom: 3px;
  margin-bottom: 20px;
}
.showroom_contents_title2{
  font-size: 20px;
  font-weight: 600;
  border-bottom: 1px solid #a39c92;
  padding-bottom: 12px;
  margin-bottom: 15px;
}
.showroom_contents_txt1{
  font-size: 18px;
  font-weight: 600;
  font-family: var(--font-mincho);
  margin-top: 10px;
}
.showroom_contents_txt2{
  margin-top: 20px;
}

.showroom_contents + .cmn_points{
  margin-top: 50px;
}

/* マップ */
.showroom_map{
  margin-top: 50px;
}
.showroom_map iframe{
  width: 100%;
  height: 300px;
  border: 0;
}

/* アクセス */
.showroom_access{
  
}
* + .showroom_access{
  margin-top: 50px;
}
.showroom_access_box{
  
}
.showroom_access_box + .showroom_access_box{
  margin-top: 30px;
}
.showroom_access_title{
  display: flex;
  justify-content: center;
  text-align: center;
}
.showroom_access_title_txt{
  font-size: 16px;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
}
.showroom_access_title_txt:after{
  content: "";
  display: block;
  width: 100px;
  height: 1px;
  background: #b9ad98;
  margin: 15px auto 0;
}
.showroom_access_txt{
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  margin-top: 10px;
}

@media (max-width:767px){

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

  /* コンテンツ */
  .showroom_contents_wrap + .showroom_contents_wrap{
    margin-top: 75px;
    padding-top: 75px;
  }
  .showroom_contents{

  }
  .showroom_contents_row{
  }
  .showroom_contents_row + .showroom_contents_row{
    margin-top: 50px;
  }
  .showroom_contents_box1{
    /*width: 47.36%;*/
  }
  .showroom_contents_box2{
    /*width: 47.36%;*/
    margin-top: 30px;
  }
  .showroom_contents_category{
    margin-bottom: 20px;
  }
  .showroom_contents_category p{
    min-width: 160px;
    font-size: 18px;
    padding: 4px 10px 5px;
  }
  .showroom_contents_title1{
    font-size: 30px;
    border-left: 4px solid #a39c92;
    padding-left: 18px;
    padding-top: 2px;
    padding-bottom: 6px;
    padding-bottom: 3px;
    margin-bottom: 25px;
  }
  .showroom_contents_title2{
    font-size: 24px;
    padding-bottom: 12px;
    margin-bottom: 15px;
  }
  .showroom_contents_txt1{
    font-size: 20px;
    margin-top: 10px;
  }
  .showroom_contents_txt2{
    margin-top: 20px;
  }

  .showroom_contents + .cmn_points{
    margin-top: 50px;
  }
  

  /* マップ */
  .showroom_map{
    margin-top: 50px;
  }
  .showroom_map iframe{
    height: 500px;
  }

  /* アクセス */
  .showroom_access{

  }
  * + .showroom_access{
    margin-top: 50px;
  }
  .showroom_access_box{

  }
  .showroom_access_box + .showroom_access_box{
    margin-top: 50px;
  }
  .showroom_access_title{
  }
  .showroom_access_title_txt{
    font-size: 16px;
  }
  .showroom_access_title_txt:after{
    width: 100px;
    margin: 15px auto 0;
  }
  .showroom_access_txt{
    text-align: center;
    margin-top: 10px;
  }
}
@media (min-width:1024px){

  /* コンテンツ */
  .showroom_contents{

  }
  .showroom_contents_row{
  }
  .showroom_contents_row + .showroom_contents_row{
    margin-top: 50px;
  }
  .showroom_contents_box1{
    width: 47.36%;
  }
  .showroom_contents_box2{
    width: 47.36%;
    margin-top: 0;
  }
  .showroom_contents_category{
    margin-bottom: 20px;
  }
  .showroom_contents_category p{
    font-size: 18px;
  }
  .showroom_contents_title1{
    /*font-size: 36px;*/
    /*margin-bottom: 45px;*/
  }
  .showroom_contents_title2{
    /*font-size: 30px;*/
    /*margin-bottom: 22px;*/
  }
  .showroom_contents_txt1{
    /*font-size: 24px;*/
  }
  .showroom_contents_txt2{
    /*margin-top: 25px;*/
  }

  .showroom_contents_row:nth-child(odd) .showroom_contents_box1{
    order: 1;
  }
  .showroom_contents_row:nth-child(odd) .showroom_contents_box2{
    order: 2;
  }
  .showroom_contents_row:nth-child(even) .showroom_contents_box1{
    order: 2;
  }
  .showroom_contents_row:nth-child(even) .showroom_contents_box2{
    order: 1;
  }
  
  
}
@media (min-width:1200px){
  
  

}
@media (min-width:1470px){
  
  /* コンテンツ */
  .showroom_contents_wrap + .showroom_contents_wrap{
    margin-top: 115px;
    padding-top: 120px;
  }
  .showroom_contents{

  }
  .showroom_contents_row{
  }
  .showroom_contents_row + .showroom_contents_row{
    margin-top: 90px;
  }
  .showroom_contents_box1{
    width: 47.36%;
  }
  .showroom_contents_box2{
    width: 47.36%;
    margin-top: 0;
  }
  .showroom_contents_category{
    margin-bottom: 20px;
  }
  .showroom_contents_category p{
    font-size: 18px;
  }
  .showroom_contents_title1{
    font-size: 36px;
    margin-bottom: 45px;
  }
  .showroom_contents_title2{
    font-size: 30px;
  }
  .showroom_contents_txt1{
    font-size: 24px;
  }
  .showroom_contents_txt2{
    margin-top: 25px;
  }
  .showroom_contents + .cmn_points{
    margin-top: 100px;
  }

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


}



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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}


@media (max-width:374px){

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

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

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

  .pg_xxx{

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }

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


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


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


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


}

/* メイン部分 */

/* ご依頼の流れ */
.flow_contents{
  --flow-margin-size: 20px;
  --flow-padding-size: 15px;
}
* + .flow_contents{
  margin-top: 30px;
}
.flow_contents_term{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: #f3f1f1;
  padding: var(--flow-padding-size);
}
.flow_contents_term + .flow_contents_term{
  margin-top: var(--flow-margin-size);
}
.flow_contents_term_box1{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flow_contents_term_box2{
  width: 100%;
  margin-top: var(--flow-padding-size);
}
.flow_contents_term_txt{
  font-size: 20px;
  font-family: var(--font-mincho);
  line-height: 1.25;
  text-align: center;
}

.flow_contents_row{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: #FFF;
  border-radius: 10px;
  padding: var(--flow-padding-size) var(--flow-padding-size);
}
.flow_contents_row + .flow_contents_row{
  margin-top: var(--flow-margin-size);
}
.flow_contents_row_box1{
  width: 100%;
}
.flow_contents_row_box2{
  width: 100%;
  margin-top: 15px;
}

.flow_contents_head{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  border-bottom: 3px dashed #a39c92;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.flow_contents_head_step{
  font-size: 14px;
  font-weight: 900;
  font-family: var(--font-mincho);
  line-height: 1;
  color: #a39c92;
  margin-right: 10px;
}
.flow_contents_head_step strong{
  font-size: 2em;
  font-weight: inherit;
}
.flow_contents_head_title{
  font-size: 22px;
  line-height: 1.2;
}
.flow_contents_txt{
  
}

.flow_contents_img{
  border-radius: 10px;
}
.flow_contents_img.img_fit:before{
  padding-top: 66.667%;
}

@media (max-width:767px){
  
  .flow_contents_term_txt br{
    display: none;
  }
  
}
@media (min-width:768px){
  
  /* ご依頼の流れ */
  .flow_contents{
    --flow-margin-size: 20px;
    --flow-padding-size: 40px;
  }
  .flow_contents_term{
    padding: var(--flow-padding-size) 0;
    padding-right: var(--flow-padding-size);
  }
  .flow_contents_term_box1{
    width: 140px;
  }
  .flow_contents_term_box2{
    width: calc(100% - 140px);
    margin-top: 0;
  }
  .flow_contents_term_txt{
    font-size: 24px;
  }

  .flow_contents_row{
  }
  .flow_contents_row_box1{
    /*width: calc(100% - 360px - var(--flow-padding-size));*/
  }
  .flow_contents_row_box2{
    /*width: 360px;*/
    /*margin-top: 0;*/
  }

  .flow_contents_head{
    border-bottom: 3px dashed #a39c92;
    padding-bottom: 28px;
    margin-bottom: 20px;
  }
  .flow_contents_head_step{
    font-size: 16px;
    margin-right: 15px;
  }
  .flow_contents_head_step strong{
    font-size: 2.25em;
  }
  .flow_contents_head_title{
    font-size: 30px;
  }
  .flow_contents_txt{
    
  }


}
@media (min-width:1024px){
  
  /* ご依頼の流れ */
  .flow_contents{
    --flow-margin-size: 20px;
    --flow-padding-size: 40px;
  }
  .flow_contents_term{
    padding: var(--flow-padding-size) 0;
    padding-right: var(--flow-padding-size);
  }
  .flow_contents_term_box1{
    width: 120px;
  }
  .flow_contents_term_box2{
    width: calc(100% - 120px);
  }
  .flow_contents_term_txt{
    font-size: 20px;
  }

  .flow_contents_row{
  }
  .flow_contents_row_box1{
    width: calc(100% - 250px - var(--flow-padding-size));
  }
  .flow_contents_row_box2{
    width: 250px;
    margin-top: 0;
  }

  .flow_contents_head{
    padding-bottom: 28px;
    margin-bottom: 20px;
  }
  .flow_contents_head_step{
    font-size: 16px;
  }
  .flow_contents_head_title{
    font-size: 24px;
  }

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


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

  /* ご依頼の流れ */
  .flow_contents{
    --flow-margin-size: 20px;
    --flow-padding-size: 40px;
  }
  .flow_contents_term{
    padding: var(--flow-padding-size) 0;
    padding-right: var(--flow-padding-size);
  }
  .flow_contents_term_box1{
    width: 140px;
  }
  .flow_contents_term_box2{
    width: calc(100% - 140px);
  }
  .flow_contents_term_txt{
    font-size: 24px;
  }

  .flow_contents_row{
  }
  .flow_contents_row_box1{
    width: calc(100% - 360px - var(--flow-padding-size));
  }
  .flow_contents_row_box2{
    width: 360px;
    margin-top: 0;
  }

  .flow_contents_head{
    padding-bottom: 28px;
    margin-bottom: 20px;
  }
  .flow_contents_head_step{
    font-size: 16px;
  }
  .flow_contents_head_title{
    font-size: 30px;
  }

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


}



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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}


@media (max-width:374px){

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

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

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

  .pg_xxx{

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }

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


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


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


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


}

/* メイン部分 */

@media (max-width:767px){

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

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


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


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


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


}


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

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

}
.pg_company .section.sec1{

}
.pg_company .section.sec2{

}


@media (max-width:374px){

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

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

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

  .pg_company{

  }
  .pg_company .section.sec1{

  }
  .pg_company .section.sec2{

  }

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


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


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


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


}


/* メイン部分 */


/* 会社概要 */
.company_tbl{

}
.company_tbl .table_rows_th,
.company_tbl .table_rows_td{
  color: #181818;
  border-color: #bfbfbf;
  padding: 10px 10px;
  font-family: var(--font-mincho);
  font-weight: 400;
}
.company_tbl .table_rows_th{
  background: #f2f2f2;
}
.company_tbl .table_rows_td{
  background: #FFF;
}
.company_tbl .table_rows_td p+p{
  margin-top: 10px;
}
.company_link{

}
.company_link a{
  border-bottom: 1px solid;
}

/* マップ */
.company_map{

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

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

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

@media (max-width:767px){

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

  /* 会社概要 */
  .company_tbl{

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

  /* マップ */
  .company_map{

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


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

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


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

  /* 会社概要 */
  .company_tbl{

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

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

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


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


}


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

}
.cmn_cat_nav .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}
.cmn_cat_nav .webgene-item{
  width: 50%;
  padding: 0 5px;
  margin: 5px 0;
}
.cmn_cat_nav .webgene-item a{
  display: block;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  text-align: left;
  border: 2px solid var(--bdr-color);
  background: #f3f1f1;
  border-radius: 10px;
  color: #181818;
  padding: 16px 20px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}

.cmn_cat_nav .webgene-item a:after{
  content: "";
  width: 30px;
  aspect-ratio: 3 / 1;
  background-image: url('https://soyokazenoie.com/system_panel/uploads/images/read_more_icon.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
  transform-origin: right center;
}
.cmn_cat_nav .webgene-item a.on,
.cmn_cat_nav .webgene-item a:hover{
  color: #FFF;
  background: var(--bdr-color);
}
.cmn_cat_nav .webgene-item a:hover:after{
  filter: brightness(1.5);
  -webkit-transform: translate(0, -50%) scale(1.2);
  transform: translate(0, -50%) scale(1.2);
}


@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: -5px;
    margin-right: -5px;
  }
  .cmn_cat_nav .webgene-item{
    width: 50%;
    padding: 0 5px;
    margin: 5px 0;
  }
  .cmn_cat_nav .webgene-item a{

  }

  .cmn_cat_nav .webgene-item a:after{
    /*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: -14px;
    margin-right: -14px;
  }
  .cmn_cat_nav .webgene-item{
    padding: 0 14px;
    margin: 5px 0;
  }
  .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%;
  }

}



/* 概要 */
.cmn_about{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.cmn_about_box1{
  width: 100%;
  margin-top: 20px;
}
.cmn_about_box2{
  width: 100%;
}
.cmn_about_img{

}
.cmn_about_img.img_fit:before{
  padding-top: 50%;
  /*padding-top: 450px;*/
}
.cmn_about_img2{
  border-radius:10px;
}
.cmn_about_img2.img_fit:before{
  padding-top: 66.667%;
  /*padding-top: 450px;*/
}
.cmn_about_illust{
  
}

.cmn_about_box2{

}
.cmn_about_illust{
  margin-bottom: 50px;
}
.cmn_about_illust2{
  margin-bottom: 30px;
}
.cmn_about_title{
  margin-bottom: 15px;
}
.cmn_about_title_line{
  display: flex;
}
.cmn_about_title_line + .cmn_about_title_line{
  margin-top: 12px;
}
.cmn_about_title_line_txt{
  font-size: 20px;
  font-weight: 400;
  font-family: var(--font-mincho);
  line-height: 1.2;
  background: #FFF;
  padding: 5px 12px 6px;
}
.cmn_about_txt{

}
/* 概要（背景1） */
.cmn_about.bg1{
  padding-top: 0px;
  padding-bottom: 30px;
}
.cmn_about.bg1:after{
  content: "";
  background: #f3f1f1;
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  right: var(--margin-for-device-side-w);
  left: var(--margin-for-device-side-w);
}
.cmn_about.bg1 .cmn_about_box1{
  width: 100%;
  margin-top: 20px;
}
.cmn_about.bg1 .cmn_about_box2{
  width: 100%;
  padding-top: 30px;
}
.cmn_about.bg1 .cmn_about_img:before{
  padding-top: 50%;
}

/* 概要（背景2） */
.cmn_about.bg2{
  padding-top: 30px;
  padding-bottom: 30px;
}
.cmn_about.bg2:after{
  content: "";
  background: #f9f4ed;
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  right: var(--margin-for-device-side-w);
  left: var(--margin-for-device-side-w);
}
.cmn_about.bg2.hasIllust:after{
  top: 155px;
}
.cmn_about.bg2 .cmn_about_box1{
  width: 100%;
  margin-top: 20px;
}
.cmn_about.bg2 .cmn_about_box2{
  width: 100%;
  /*padding-top: 30px;*/
}
.cmn_about.bg2 .cmn_about_img:before{
  padding-top: 66.666%;
}

/* 概要（画像左） */
.cmn_about.left{

}
.cmn_about.left .cmn_about_box1{
  order: 2;
}
.cmn_about.left .cmn_about_box2{
  order: 1;
}
.cmn_about.left .cmn_about_img{
  margin-left: var(--margin-for-device-side-w);
  border-radius: 0 10px 10px 0;
}
.cmn_about.left.bg1:after{

}

/* 概要（画像右） */
.cmn_about.right{

}
.cmn_about.right .cmn_about_box1{
  order: 2;
}
.cmn_about.right .cmn_about_box2{
  order: 1;
}
.cmn_about.right .cmn_about_img{
  margin-right: var(--margin-for-device-side-w);
  border-radius: 10px 0 0 10px;
}
.cmn_about.right.bg1:after{

}


/* ポイント */
.cmn_points{
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
* + .cmn_points{
  margin-top: 50px;
}
.cmn_points_item{
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}
.cmn_points_item:nth-child(n+2){
  margin-top: 30px;
}
.cmn_points_item_inner{
  height: 100%;
  background: #FFF;
  border-radius: 10px;
  padding: 20px 15px 20px;
}
.cmn_points_item_inner2{
  height: 100%;
}
.cmn_points_item_img1{
  border-radius: 10px;
}
.cmn_points_item_img1.img_fit:before{
  padding-top: 46.666%;
}
.cmn_points_item_img2{
  border-radius: 10px;
  margin-bottom: 18px;
}
.cmn_points_item_img2.img_fit:before{
  padding-top: 75%;
}
.cmn_points_item_title1{
  font-size: 22px;
  font-weight: 400;
  line-height: 1.666;
  text-align: center;
  border-bottom: 2px dashed #a39c92;
  padding-bottom: 10px;
  margin-bottom: 15px;
}
.cmn_points_item_title2{
  font-size: 22px;
  font-weight: 400;
  line-height: 1.666;
  text-align: center;
  border-bottom: 1px solid #a39c92;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 15px;
}
.cmn_points_item_title2 em{
  font-size: 0.8em;
  font-style: normal;
  font-weight: inherit;
}
.cmn_points_item_txt1{

}
.cmn_points_item_desc{
  padding: 0 0;
}

.cmn_points.col2{

}
.cmn_points.col2 .cmn_points_item{

}

.cmn_points.col3{

}
.cmn_points.col3 .cmn_points_item{

}

.cmn_points.col3 .cmn_points_item_img1.img_fit:before{
  padding-top: 66.666%;
}
.cmn_points.col3 .cmn_points_item_desc{
  padding: 0;
}
.cmn_points.col3 .cmn_points_item_title2{
  padding-top: 10px;
}

/* バナー */
.cmn_banner{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: #a39c92;
  border-radius: 10px;
  overflow: hidden;
}
* + .cmn_banner{
  margin-top: 50px;
}
.cmn_banner_box1{
  width: 100%;
}
.cmn_banner_box2{
  width: 100%;
  padding: 20px 10px;
}
.cmn_banner_box3{
  width: 100%;
  padding-bottom: 15px;
}
.cmn_banner_img{

}
.cmn_banner_img.img_fit:before{
  padding-top: 180px;
}
.cmn_banner_txt{
  font-size: 20px;
  font-weight: 600;
  font-family: var(--font-mincho);
  line-height: 1.533;
  text-align: center;
}
.cmn_banner .read_more{
  margin-top: 0;
  font-family: var(--font-mincho);
  font-weight: 600;
}

@media (max-width:767px){

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


  /* 概要 */
  .cmn_about{
  }
  .cmn_about_box1{
    /*width: 46.05%;*/
    /*margin-top: 0;*/
  }
  .cmn_about_box2{
    /*width: 49.01%;*/
  }
  .cmn_about_img{

  }
  .cmn_about_img.img_fit:before{
    padding-top: 50%;
    padding-top: 450px;
  }
  .cmn_about_img2{
    border-radius:10px;
  }
  .cmn_about_img2.img_fit:before{
    padding-top: 66.667%;
  }
  .cmn_about_box2{

  }
  .cmn_about_illust{
    margin-bottom: 50px;
  }
  .cmn_about_title{
    margin-bottom: 32px;
  }
  .cmn_about_title_line{
  }
  .cmn_about_title_line + .cmn_about_title_line{
    margin-top: 12px;
  }
  .cmn_about_title_line_txt{
    font-size: 36px;
    padding: 2px 12px 4px;
  }
  .cmn_about_txt{

  }

  /* 概要（背景1） */
  .cmn_about.bg1{
    padding-bottom: 50px;
  }
  .cmn_about.bg1:after{
    /*top: 75px;*/
    right: 50px;
    left: var(--margin-for-device-side-w);
  }
  .cmn_about.bg1 .cmn_about_box1{
    /*width: 39.47%;*/
    margin-top: 30px;
  }
  .cmn_about.bg1 .cmn_about_box2{
    /*width: 55.26%;*/
    padding-top: 50px;
  }
  .cmn_about.bg1 .cmn_about_img:before{
    padding-top: 50%;
  }


  /* 概要（背景2） */
  .cmn_about.bg2{
    padding-bottom: 50px;
  }
  .cmn_about.bg2:after{
    /*top: 75px;*/
    right: 50px;
    left: var(--margin-for-device-side-w);
  }
  .cmn_about.bg2 .cmn_about_box1{
    /*width: 39.47%;*/
    margin-top: 30px;
  }
  .cmn_about.bg2 .cmn_about_box2{
    /*width: 55.26%;*/
    /*padding-top: 50px;*/
  }
  .cmn_about.bg2 .cmn_about_img:before{
    padding-top: 50%;
  }


  /* ポイント */
  .cmn_points{
    margin-left: -8px;
    margin-right: -8px;
  }
  * + .cmn_points{
    margin-top: 50px;
  }
  .cmn_points_item{
    padding-left: 8px;
    padding-right: 8px;
  }
  .cmn_points_item_inner{
    padding: 30px 20px 30px;
  }
  .cmn_points_item_inner2{
  }
  .cmn_points_item_title1{
    font-size: 22px;
    border-bottom: 2px dashed #a39c92;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  .cmn_points_item_title2{
    font-size: 22px;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  .cmn_points_item_title2 em{
    font-size: 0.8em;
  }
  .cmn_points_item_txt1{

  }
  .cmn_points_item_desc{
    padding: 0 30px;
  }

  .cmn_points.col2{

  }
  .cmn_points.col2 .cmn_points_item{
    width: 50%;
  }
  .cmn_points.col2 .cmn_points_item:nth-child(n+2){
    margin-top: 0;
  }
  .cmn_points.col2 .cmn_points_item:nth-child(n+3){
    margin-top: 30px;
  }

  .cmn_points.col3{

  }
  .cmn_points.col3 .cmn_points_item{
    width: 33.333%;
  }
  .cmn_points.col3 .cmn_points_item:nth-child(n+2){
    margin-top: 0;
  }
  .cmn_points.col3 .cmn_points_item:nth-child(n+4){
    margin-top: 30px;
  }
  .cmn_points.col3 .cmn_points_item_title2{
    padding-top: 28px;
  }


  /* バナー */
  .cmn_banner{
  }
  * + .cmn_banner{
    margin-top: 50px;
  }
  .cmn_banner_box1{
    width: 39.47%;
    width: 40%;
  }
  .cmn_banner_box2{
    width: 32.89%;
    width: 60%;
    padding: 0 15px 50px;
  }
  .cmn_banner_box3{
    width: 60%;
    margin-top: -100px;
    margin-left: auto;
    padding-bottom: 0;
  }
  .cmn_banner_img{

  }
  .cmn_banner_img.img_fit:before{
    padding-top: 240px;
  }
  .cmn_banner_txt{
    font-size: 24px;
  }

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

  /* 概要 */
  .cmn_about{
  }
  .cmn_about_box1{
    width: 46.05%;
    margin-top: 0;
  }
  .cmn_about_box2{
    width: 49.01%;
  }
  .cmn_about_img{

  }
  .cmn_about_img.img_fit:before{
    padding-top: 50%;
    padding-top: 450px;
  }
  .cmn_about_img2{
    border-radius:10px;
  }
  .cmn_about_img2.img_fit:before{
    padding-top: 66.667%;
  }
  .cmn_about_box2{

  }
  .cmn_about_illust{
    margin-bottom: 50px;
  }
  .cmn_about_title{
    margin-bottom: 20px;
  }
  .cmn_about_title_line{
  }
  .cmn_about_title_line + .cmn_about_title_line{
    margin-top: 12px;
  }
  .cmn_about_title_line_txt{
    font-size: 28px;
    padding: 2px 12px 4px;
  }
  .cmn_about_txt{

  }

  /* 概要（背景1） */
  .cmn_about.bg1{
    padding-bottom: 50px;
  }
  .cmn_about.bg1:after{
    top: 40px;
    right: 100px;
    left: var(--margin-for-device-side-w);
  }
  .cmn_about.bg1 .cmn_about_box1{
    /*width: 39.47%;*/
    width: 42%;
    margin-top: 0;
  }
  .cmn_about.bg1 .cmn_about_box2{
    /*width: 55.26%;*/
    width: 55%;
    padding-top: 75px;
  }
  .cmn_about.bg1 .cmn_about_img:before{
    padding-top: 50%;
  }

  /* 概要（背景2） */
  .cmn_about.bg2{
    padding-bottom: 50px;
  }
  .cmn_about.bg2:after{
    top: 95px;
    right: 100px;
    left: var(--margin-for-device-side-w);
  }
  .cmn_about.bg2 .cmn_about_box1{
    /*width: 39.47%;*/
    width: 42%;
    margin-top: 10px;
  }
  .cmn_about.bg2 .cmn_about_box2{
    /*width: 55.26%;*/
    width: 55%;
    /*padding-top: 75px;*/
  }
  .cmn_about.bg2 .cmn_about_img:before{
    padding-top: 50%;
  }

  /* 概要（画像左） */
  .cmn_about.left{

  }
  .cmn_about.left .cmn_about_box1{
    order: 1;
  }
  .cmn_about.left .cmn_about_box2{
    order: 2;
  }
  .cmn_about.left .cmn_about_img{
    margin-left: var(--margin-for-device-side-w);
    border-radius: 0 10px 10px 0;
  }

  /* 概要（画像右） */
  .cmn_about.right{

  }
  .cmn_about.right .cmn_about_box1{
    order: 2;
  }
  .cmn_about.right .cmn_about_box2{
    order: 1;
  }
  .cmn_about.right .cmn_about_img{
    margin-right: var(--margin-for-device-side-w);
    border-radius: 10px 0 0 10px;
  }


  /* ポイント */
  .cmn_points{
    margin-left: -15px;
    margin-right: -15px;
  }
  * + .cmn_points{
    margin-top: 50px;
  }
  .cmn_points_item{
    padding-left: 15px;
    padding-right: 15px;
  }
  .cmn_points_item_inner{
    padding: 40px 60px 50px;
  }
  .cmn_points_item_inner2{
  }
  .cmn_points_item_title1{
    /*font-size: 36px;*/
    /*border-bottom: 2px dashed #a39c92;*/
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
  .cmn_points_item_title2{
    /*font-size: 30px;*/
    padding-top: 18px;
    padding-bottom: 20px;
    margin-bottom: 22px;
  }
  .cmn_points_item_txt1{

  }
  .cmn_points_item_desc{
    padding: 0 30px;
  }

  .cmn_points.col2{

  }
  .cmn_points.col2 .cmn_points_item{
    width: 50%;
  }
  .cmn_points.col2 .cmn_points_item:nth-child(n+3){
    margin-top: 30px;
    margin-top: 40px;
  }

  .cmn_points.col3{

  }
  .cmn_points.col3 .cmn_points_item{
    width: 33.333%;
  }

  .cmn_points.col3 .cmn_points_item:nth-child(n+4){
    margin-top: 30px;
    margin-top: 40px;
  }
  .cmn_points.col3 .cmn_points_item_title2{
    padding-top: 28px;
  }



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

  /* バナー */
  .cmn_banner{
  }
  * + .cmn_banner{
    margin-top: 50px;
  }
  .cmn_banner_box1{
    width: 35%;
  }
  .cmn_banner_box2{
    width: 35%;
    padding: 0 10px 0 20px;
  }
  .cmn_banner_box3{
    width: 30%;
    padding-bottom: 0;
    margin-top: 0;
  }
  .cmn_banner_img{

  }
  .cmn_banner_img.img_fit:before{
    padding-top: 200px;
  }
  .cmn_banner_txt{
    font-size: 24px;
    text-align: left;
  }


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

  /* 概要 */
  .cmn_about{
  }
  .cmn_about_box1{
    width: 46.05%;
    margin-top: 0;
  }
  .cmn_about_box2{
    width: 49.01%;
  }
  .cmn_about_img{

  }
  .cmn_about_img.img_fit:before{
    padding-top: 50%;
    padding-top: 450px;
  }
  .cmn_about_img2{
    border-radius:10px;
  }
  .cmn_about_img2.img_fit:before{
    padding-top: 66.667%;
  }
  .cmn_about_box2{

  }
  .cmn_about_illust{
    margin-bottom: 50px;
  }
  .cmn_about_title{
    margin-bottom: 32px;
  }
  .cmn_about_title_line{
  }
  .cmn_about_title_line + .cmn_about_title_line{
    margin-top: 12px;
  }
  .cmn_about_title_line_txt{
    font-size: 36px;
    padding: 2px 12px 4px;
  }
  .cmn_about_txt{

  }
  /* 概要（背景1） */
  .cmn_about.bg1{
    padding-bottom: 80px;
  }
  .cmn_about.bg1:after{
    top: 75px;
    right: 200px;
    left: var(--margin-for-device-side-w);
  }
  .cmn_about.bg1 .cmn_about_box1{
    width: 39.47%;
    margin-top: 0;
  }
  .cmn_about.bg1 .cmn_about_box2{
    width: 55.26%;
    padding-top: 150px;
  }
  .cmn_about.bg1 .cmn_about_img:before{
    padding-top: 50%;
  }

  /* 概要（背景2） */
  .cmn_about.bg2{
    padding-bottom: 80px;
  }
  .cmn_about.bg2:after{
    top: 100px;
    right: 200px;
    left: var(--margin-for-device-side-w);
  }
  .cmn_about.bg2.hasIllust:after{
    top: 200px;
  }
  .cmn_about.bg2 .cmn_about_box1{
    width: 39.47%;
    margin-top: 10px;
  }
  .cmn_about.bg2 .cmn_about_box2{
    width: 55.26%;
    /*padding-top: 150px;*/
  }
  .cmn_about.bg2 .cmn_about_img:before{
    padding-top: 50%;
  }

  /* バナー */
  .cmn_banner{
  }
  * + .cmn_banner{
    margin-top: 50px;
  }
  .cmn_banner_box1{
    width: 39.47%;
  }
  .cmn_banner_box2{
    width: 32.89%;
    padding: 0 10px 0 60px;
  }
  .cmn_banner_box3{
    width: 27.64%;
  }
  .cmn_banner_img{

  }
  .cmn_banner_img.img_fit:before{
    padding-top: 240px;
  }
  .cmn_banner_txt{
    font-size: 26px;
  }

  /* ポイント */
  .cmn_points{
    margin-left: -15px;
    margin-right: -15px;
  }
  * + .cmn_points{
    margin-top: 50px;
  }
  .cmn_points_item{
    padding-left: 15px;
    padding-right: 15px;
  }
  .cmn_points_item_inner{
    padding: 40px 60px 50px;
  }
  .cmn_points_item_inner2{
  }
  .cmn_points_item_title1{
    font-size: 28px;
    border-bottom: 2px dashed #a39c92;
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
  .cmn_points_item_title2{
    font-size: 24px;
    padding-top: 18px;
    padding-bottom: 20px;
    margin-bottom: 22px;
  }
  .cmn_points_item_txt1{

  }
  .cmn_points_item_desc{
    padding: 0 30px;
  }

  .cmn_points.col2{

  }
  .cmn_points.col2 .cmn_points_item{
    width: 50%;
  }
  .cmn_points.col2 .cmn_points_item:nth-child(n+3){
    margin-top: 30px;
    margin-top: 75px;
  }

  .cmn_points.col3{

  }
  .cmn_points.col3 .cmn_points_item{
    width: 33.333%;
  }

  .cmn_points.col3 .cmn_points_item:nth-child(n+4){
    margin-top: 30px;
    margin-top: 75px;
  }
  .cmn_points.col3 .cmn_points_item_title2{
    padding-top: 28px;
  }

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



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

  /* ポイント */
  .cmn_points{
    margin-left: -15px;
    margin-right: -15px;
  }
  * + .cmn_points{
    margin-top: 50px;
  }
  .cmn_points_item{
    padding-left: 15px;
    padding-right: 15px;
  }
  .cmn_points_item_inner{
    padding: 40px 60px 50px;
  }
  .cmn_points_item_inner2{
  }
  .cmn_points_item_title1{
    font-size: 36px;
  }
  .cmn_points_item_title2{
    font-size: 30px;
  }
  .cmn_points_item_txt1{

  }
  .cmn_points_item_desc{
    padding: 0 30px;
  }


  /* バナー */
  .cmn_banner_txt{
    font-size: 30px;
  }

}


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

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

}
* + .news_list_thumb{
  margin-top: 50px;
}
.sec_head + .news_list_thumb{
  margin-top: 0;
}
.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;
  border-right: 1px solid #d1c0a5;
}

.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;
  height: 100%;
  padding: 10px 5px;
}
.news_list_thumb .webgene-item .inner:hover{
  background: #e6e1d9;
}
.news_list_thumb .webgene-item .box1{

}
.news_list_thumb .webgene-item .box2{
  padding: 0px 0;
}
.news_list_thumb .webgene-item .img{
  overflow: hidden;
  border-radius: 10px;
  background-color: #CCC;
  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;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}
.news_list_thumb .webgene-item .meta .category{
  font-size: 13px;
  font-weight: 500;
  background: #FFF;
  border: 1px solid var(--bdr-color);
  color: #181818;
  padding: 3px 8px;
  margin: 5px 0;
  margin-right: 10px;
}
.news_list_thumb .webgene-item .meta .date{
  font-size: 14px;
  font-weight: 400;
  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{

}


@media (max-width:1023px){
  .news_list_thumb .webgene-item:nth-child(2n){
    border-right: 0;
  }
}
@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{
  }
  .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{

  }

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

  .news_list_thumb .webgene-item:nth-child(4n){
    border-right: 0;
  }

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

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



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


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


}


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

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

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

/* リスト */
.posts_list{

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

}


/* サイド */
.posts_side_wrap{

}
.posts_side_wrap + .posts_side_wrap{
  margin-top: 30px;
}
.posts_side_title {
  background: #f3f1f1;
  color: #181818;
  padding: 10px 10px;
  font-weight: 700;
  font-family: var(--font-mincho);
  letter-spacing: 0.025em;
  text-align: center;
  margin-bottom: 20px;
}

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

/* 詳細 */
.posts_detail{
  border: 0;
  border-bottom: 1px solid var(--bdr-color);
  padding: 15px 10px;
}
.posts_detail .webgene-item{

}
.posts_detail .meta{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-bottom: 1px solid var(--bdr-color);
  padding-bottom: 8px;
  margin-bottom: 15px;
}
.posts_detail .meta .category{
  margin-right: 20px;
}
.posts_detail .meta .category span{
  display: inline-block;
  min-width: 100px;
  background: #FFF;
  border: 1px solid var(--bdr-color);
  border-radius: 0;
  color: #181818;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  padding: 4px 5px;
  line-height: 1.2;
}
.posts_detail .meta .date{
  font-size: 16px;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
}
.posts_detail .meta .title{
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
  margin-top: 15px;

}
.posts_detail .post_content{
  /*line-height: 1.875;*/
  text-align: justify;
  word-break: break-all;
}
.posts_detail .post_txt{
  font-weight: 500;
  line-height: 2.25;
  letter-spacing: 0;
}
.posts_detail .thumb{
  margin-bottom: 10px;
}

.posts_back_list{

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

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


/* 動画 */
.post_video{

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

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

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

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

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

  .posts_category_sp{
    display: none;
  }

  /* リスト */
  .posts_list{

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

  }

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

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

  }
  .posts_detail .meta{
    display: flex;
    flex-wrap: wrap;
    padding: 0 0 12px;
    margin-bottom: 25px;
  }
  .posts_detail .meta .category{
    min-width: 100px;
  }
  .posts_detail .meta .category span{
    font-size: 12px;
    /*padding: 2px 5px;*/
  }
  .posts_detail .meta .date{
    width: 105px;
  }
  .posts_detail .meta .title{
    font-size: 20px;
  }
  .posts_detail .post_content{
    padding: 0 ;
  }
  .posts_detail .thumb{
    margin-bottom: 20px;
  }

  .posts_detail + .read_more{
    margin-top: 55px;
  }

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

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

  .pg_news{

  }

  .container.wide .posts_layout_box1{
    width: calc(100% - 255px - 45px);
  }
  .container.wide .posts_layout_box2{
    width: 255px;
  }

}




/*******************************
*　ギャラリー（サムネ横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%;
  position: relative;
}
.gallery_box2{
  width: 100%;
  margin-top: 15px;
}

/* メイン */
.gallery_main{

}
.gallery_main .img{
  background: #FFF;
}
.gallery_main .img.img_fit:before{
  padding-top: 67.39%;
}
.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: 67.85%;
}
.gallery_thumb .img.img_fit img{

}
.gallery_slide_prev .fa{
  display: none;
}
.gallery_slide_prev,
.gallery_slide_next{
  width: 20px;
  aspect-ratio:1 / 1;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.gallery_slide_prev{
  background-image: url(https://soyokazenoie.com/system_panel/uploads/images/left.png);
  left: -30px;
}
.gallery_slide_next{
  background-image: url(https://soyokazenoie.com/system_panel/uploads/images/right.png);
  right: -30px;
}
.gallery_slide_prev:hover,
.gallery_slide_next:hover{
  cursor: pointer;
  transition: all 0.4s ease;
}
.gallery_slide_next .fa{
  display: none;
}

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

.works_detail .post_content{
  border: 1px solid #a39c92;
  background: #FFF;
  color: #181818;
  padding: 30px 16px;
  margin-top: 30px;
}
.works_detail .post_content .title{
  font-size: 18px;
  font-family: var(--font-mincho);
  font-weight: 700;
  border-bottom: 1px solid #000;
  padding-bottom: 16px;
}
.works_detail .post_content .post_txt{
  font-size: 16px;
  font-weight: 500;
  line-height: 1.875;
  padding-top: 18px;
}
.works_detail .post_content .post_txt h1,
.works_detail .post_content .post_txt h2,
.works_detail .post_content .post_txt h2,
.works_detail .post_content .post_txt h3,
.works_detail .post_content .post_txt h4,
.works_detail .post_content .post_txt h5,
.works_detail .post_content .post_txt h6{
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
.works_detail .post_content .post_txt h2{
  font-size: 1.5em;
  color: #715433;
  background: #F3F1F1;
  border-left: 5px solid;
  padding: 10px 12px 12px;
}
.works_detail .post_content .post_txt h3{
  font-size: 1.3em;
  color: #9C866D;
  border-left: 5px solid;
  padding: 3px 12px 4px;

}
.works_detail .post_content .post_txt h4{

}

.works_detail .post_content .post_txt p{

}
.works_detail .post_content .post_txt p+p{
  margin-top: 10px;
}

.pg_works .read_more a:after{

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

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

}
@media (max-width:767px){
  .body_worksDetail .pg_works .section.sec1{
    padding-top: 60px;
  }
  .gallery_wrap{
    width: 82.88%;
    margin:0 auto;
  }
}
@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{
    width: 82.88%;
    margin:0 auto;
  }
  .gallery_box1{
    width: 100%;
  }
  .gallery_box2{
    width: 100%;
    margin-top: 9px;

    position: relative;
    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;
  }

  .gallery_slide_prev{
    left: -54px;
  }
  .gallery_slide_next{
    right: -54px;
  }

  .works_detail .post_content{
    margin-top: 60px;
  }
  .works_detail .post_content .title{
    font-size: 22px;
  }
  .post_content .post_txt{
    font-size: 16px;
  }
  .gallery_slide_prev,
  .gallery_slide_next{
    width: 35px;
  }

  /*ボタン*/
  .works_detail .read_more{
    margin-top: 60px;
  }
}
@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;
  }

  .works_detail .post_content{
    padding: 30px 62px;
    margin-top: 100px;
  }
  .works_detail .post_content .title{
    font-size: 30px;
  }
  .post_content .post_txt{

  }
}
@media (min-width:1200px){
  .works_detail .post_content{
    padding: 55px 65px;
  }
  .works_detail .post_content .title {
    padding-bottom: 14px;
  }
  .works_detail .post_content .post_txt {
    padding-top: 26px;
  }
  .gallery_slide_prev,
  .gallery_slide_next{
    width: 30px;
  }
  .gallery_slide_next{
    right: -60px;
  }
  .gallery_slide_prev{
    left: -60px;
  }
}






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

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

@media (max-width:1023px){

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

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

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


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

/* フォーム */
.pg_contact .formTbl{
  border: 1px solid #b2b2b2;
  background: #ffffff;
}
.pg_contact .form.formWrap {
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}
.pg_contact * + .form.formWrap {
  margin-top: 30px;
}
.pg_contact .formRow + .formRow{
  border-top: 1px solid #b2b2b2;
}
.pg_contact .formTh {
  padding: 12px 15px 16px 20px;
  background: #eeeeee;
  letter-spacing: 0.08em;
}
.pg_contact .formTh label{
  margin: 0;
}
.d-inline-block.requiredText {
  font-size: 13px;
  padding: 0 12px;
  margin-top: 3px;
  float: right;
  font-weight: 400;
  letter-spacing: 0.05em;
  background: #b80000;
  color: #ffffff;
}
.d-inline-block.requiredText.nini{
  background: #fff;
  border: 1px solid #b80000;
  color: #b80000;
  ;
}
.pg_contact .formTd {
  font-size: 15px;
  padding: 10px 16px;
}
.pg_contact .formTd input[type="text"],
.pg_contact .formTd input[type="tel"],
.pg_contact .formTd input[type="email"]{
  max-width: 461px;
  height: 39px;
  width: 100%;
  font-size: 16px;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
  letter-spacing: 0.18em;
}
.pg_contact .formTd select{
  border-radius: 0;
}
.pg_contact .formTd input[name="zip1"]{
  max-width: 120px;
}
.pg_contact .formTd input[name="zip2"]{
  max-width: 150px;
}
.pg_contact .formTd input[name="area[]"]{
  margin-right: 5px;
}
.pg_contact .formTd select[name="pref"],
.pg_contact .formTd select[name="area_select"]{
  max-width: 225px;
  width: 100%;
  font-size: 16px;
  padding: 7px 10px;
  border: 1px solid #d6d8d8;
}
.pg_contact .formTd input[name="city"]{
  max-width: 425px;
}
.pg_contact .formTd .addArea + .addArea{
  margin-top: 8px;
}
.pg_contact .formTd .addArea .labelText02{
  width: 75px;
}
.pg_contact .formTd textarea{
  width: 100%;
  height: 280px;
  font-size: 16px;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
}
.pg_contact .formWrap .text-center{
  padding-top: 40px;
}
.pg_contact input[name="privacy"]{
  margin-right: 7px;
}
.pg_contact .privacyLabel{
  font-size: 17px;
  display: inline;
}
.pg_contact .privacyLabel a{
  color: #1a3e9b;
}
.pg_contact .formBtn{
  
}
.pg_contact .formBtn.formSend {
  min-width: 265px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  border: 2px solid var(--bdr-color);
  background: #f3f1f1;
  border-radius: 10px;
  color: #181818;
  padding: 16px 20px;
  margin: 5px auto;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
  cursor: pointer;
}

.pg_contact .formBtn.formSend:after{
  content: "";
  width: 30px;
  aspect-ratio: 3 / 1;
  background-image: url('https://soyokazenoie.com/system_panel/uploads/images/read_more_icon.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
  transform-origin: right center;
}
.pg_contact .formBtn.formSend:hover{
  color: #FFF;
  background: var(--bdr-color);
}
.pg_contact .formBtn.formSend:hover:after{
  filter: brightness(1.5);
  -webkit-transform: translate(0, -50%) scale(1.2);
  transform: translate(0, -50%) scale(1.2);
}

.pg_contact label {
  display: inline-block;
  margin-bottom: 0;
}
.radioArea{
  padding: 0 15px;
}
.radioArea .d-inline-block .label{
  margin-left: 9px;
  letter-spacing: 0;
}
.radioArea .d-inline-block{
  margin-right: 40px;
}
.radioArea .d-inline-block:last-child{
  margin-right: 0;
}
label.label.zipcode_i {
  padding: 5px;
  background: #cccccc;
  margin: 0;
  display: inline-block;
  border: 1px solid #d6d8d8;
  border-right: 0;
  vertical-align: top;
}
.pg_contact .section.sec1 {
  padding: 0 0 0;
}

.privacy_box {
  padding: 30px 50px 30px 28px;
  height: 397px;
  overflow: auto;
  background: #fff;
  border: 1px solid #dbdbdb;
  margin-top: 0;
  color: #000000;
  margin-top: 60px;
}
@media only screen and (min-width: 1024px){
  .pg_contact .formTh {
    -ms-flex: 0 0 28%;
    -webkit-box-flex: 0;
    -webkit-flex: 28%;
    flex: 0 0 28%;
    max-width: 28%;
  }
  .pg_contact .formTd {
    -ms-flex: 0 0 72%;
    -webkit-box-flex: 0;
    -webkit-flex: 72;
    flex: 0 0 72%;
    max-width: 72%;
  }
}


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

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

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

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

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


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


  .privacy_ttl{
    font-size: 18px;
  }

}

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

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

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

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


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

  .pg_contact .section.sec2{
    padding: 65px 0 30px;
  }

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

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

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


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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}


@media (max-width:374px){

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

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

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

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }


}
@media (min-width:1024px){
  .thanks_text{
    text-align:center;
  }

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


}
