@charset "UTF-8";

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

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

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


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

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

#root{
  overflow: hidden;
}


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

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

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

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

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

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

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

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

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

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


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

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

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

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

p,
h1, h2, h3, h4, h5, h6{
  margin: 0;
  /*letter-spacing: 0.075em;*/
  letter-spacing: inherit;
}
p{

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

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

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

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

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

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

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

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


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


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

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


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



/*******************************
*　ヘッダー
********************************/
.header{
  --logo-height: 40px;
  padding: 10px;
}
.hdr1{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px;
}

/* ロゴ */
.hdr_logo{

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

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

/* TELボタン */
.hdr_tel{

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

}
.hdr_tel_link p{

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


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

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


@media (min-width:375px){

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

  .hdr1 {
    justify-content: center;
  }

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

  .contact_btn{
    display: none;
  }
}
@media (min-width:768px){

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

    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 30px;
  }

  .hdr_outer{
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .hdr1{
    padding: 0 15px 0;
  }

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

  /* ヘッダースリム */
  .header.slim{
    background: rgba(255,255,255,0.7);
  }
  .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;
  }

  .contact_btn{
    display: block;
    width: 70px;
    aspect-ratio:1;
    border: 1px solid #b3b3b3;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-family: "Oswald", sans-serif;
    font-weight: 400;
    line-height: 1;
    margin-left: 49px;
    transition: all .2s;
  }
  .contact_btn p{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    letter-spacing: 0;
  }
  .contact_btn p:before{
    content:"\f003";
    font-family: "fontAwesome";
    margin-bottom: 6px;
  }
  .contact_btn:hover{
    background: #d6b27f;
    color: #fff;
    border: 1px solid #d6b27f;
  }

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

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

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

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

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

  }
  .header.slim .hdr_logo img{
  }

}

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

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

}
.mv_txt_p2{

}

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

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

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

.mv_top{
  padding-bottom: 29px;
}
.mv_top_txt{
  font-size: clamp(3.125rem, 2.25rem + 4.38vw, 7.5rem);
  font-size: 45px;
  font-weight: 100;
  font-family: "Outfit", sans-serif;
  line-height: 1.07;

}
.mv_top_txt p{
  letter-spacing: 0.01em;
}
.mv_top_txt .baby{
  font-size: clamp(2.813rem, 1.938rem + 4.38vw, 7.188rem);
  font-size: 40px;
  font-weight: 400;
  font-family: "Oooh Baby", cursive;
  letter-spacing: 0;
  line-height: 1;
  transform-origin: center center;
  transform: rotate(-11deg);
  color: #d6b27f;
  display: inline-block;
  margin-right: 0.1em;
}
.mv_top_txt .after{
  display: inline-block;
}
.mv_top_sub_txt{
  font-size: 16px;
  font-weight: 400;
  margin-top: 27px;
}
.mv_top_sub_txt p{
  letter-spacing: 0.075em;
}

.mv_img{
  width: 97.91%;
  margin-inline:auto;
}
.mv_img img{
  border-radius: 50px;
}
@media (min-width:768px){

  /* MV */
  .mv{
  }
  .mv_img{
  }
  .mv_img.img_fit:before{
    padding-top: calc(100vh - 396px);
    padding-top: 400px;
  }

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

  }
  .mv_txt_p2{

  }

  .mv_top{

  }
  .mv_top_txt{
    font-size: 80px;
  }
  .mv_top_txt .baby{
    font-size: 90px;
  }
  .mv_top_sub_txt{
    font-size: 20px;
  }
}
@media (min-width:1024px){


  /* MV */
  .mv{
  }
  .mv_img{
  }
  .mv_img.img_fit:before{
    padding-top: calc(100vh - 479px);
    padding-top: 500px;
  }

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

  }
  .mv_txt_p2{

  }

  .mv_top_txt{
    font-size: 115px;
  }
  .mv_top_txt .baby{
    font-size: 120px;
  }
}
@media (min-width:1200px){

  /* MV */
  .mv{
  }
  .mv_img{
  }
  .mv_img.img_fit:before{
    padding-top: calc(100vh - 479px);
    padding-top: 820px;
  }

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

  }
  .mv_txt_p2{

  }

  .mv_top{

  }
  .mv_top_txt{
    font-size: 115px;
  }
  .mv_top_txt .baby{
    font-size: 120px;
  }
  .mv_top_sub_txt{
    font-size: 24px;
  }
}
@media (min-width:1470px){

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

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

}


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

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

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

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


@media (min-width:768px){

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

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


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

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

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

}


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

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


.pg_header_img{

}
.pg_header_img:before{
  padding-top: 180px;
}
.pg_header_img img{
  border-radius: 50px;
}
@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_img{

  }
  .pg_header_img:before{
    padding-top: 400px;
  }
}
@media (min-width:1024px){
  .pg_header{
    margin-bottom: 110px;
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 350px;
  }

  .pg_header_title_txt{

  }

  .pg_header_img{

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

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

  .pg_header_title_txt{

  }

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

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

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

}


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

.footer{
  margin-top: 50px;
  border-bottom: 10px solid #d6b27f;
  padding-bottom: 40px;
}

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

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

}
.ftr1_box2{

}

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


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

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

.ftr_addr em{
  font-style: normal;
}
.ftr_copy{
  font-size: 14px;
  text-align: center;
  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: #fff;
  text-decoration: none;
  line-height: 1.2;
}
.footer_fix .footer_fix_item_1{
  width: 38%;
  border-right: 1px solid #ef7f1a;
}
.footer_fix .footer_fix_item_1.recruit{
  background: #eeeeee;
  color: #024b93;
}
.footer_fix .footer_fix_item_2{
  width: 24%;
  background: #fff;
}
.footer_fix > a i{
  font-size: 20px;
  margin-bottom: 8px;
}
.footer_fix .footer_fix_item_1.remorte i{
  margin-bottom: 0;
}

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


.ftr_contact_wrap{
  background: #856653;
  padding-bottom: 30px;
}
.ftr_contact_box{
  display: flex;
  flex-wrap: wrap;
}
.ftr_contact_box1{
  width: 100%;
  color: #fff;
  padding-top: 40px;
}
.ftr_contact_box1_tt{

}
.ftr_contact_box1_tt1.home_sec2_slide_tt2{
  font-size: 28px;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0;
}
.ftr_contact_box1_tt2.tt2_ja{
  font-size: 16px;
  letter-spacing: 0;
}
.ftr_contact_box1 .content_desc{
  font-size: 16px;
  line-height: 2.125em;
  margin-top: 37px;
}
.ftr_contact_box1 .content_desc p{
  letter-spacing: 0.075em;
}
.link_items{
  margin-top: 40px;
}
.link_0{
  width: 100%;
  max-width: 585px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  padding: 22px 25px;
  margin-inline:auto;
  transition: all .2s;
}
.link_0.line p,
.link_0.mail p{
  display: flex;
  align-items: center;
  letter-spacing: 0.075em;
}
.link_0.mail{
  position: relative;
}
.link_0.mail:before{
  content: "";
  display: block;
  width: 2px;
  height: 46px;
  background: #f19568;
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 73px;
  -webkit-transform: translate(0, -50%);
}
.link_0.mail:after{
  content: "→";
  display: block;
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 27px;
  color:  #f19568;
  -webkit-transform: translate(0, -50%);
}
.link_0.mail:hover:before{
  background: #fff;
}
.link_0.mail:hover:after{
  color: #fff;
}
.link_0.line p:before{
  /*  content: "";
    display: block;
    width: 27px;
    aspect-ratio:1;
    background-image: url(/system_panel/uploads/images/line.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 5px;*/
}
/*.link_0.mail p:before{
  content: "\f0e0";
  font-family: "fontAwesome";
  font-size: 20px;
  margin-right: 5px;
}*/
.link_0.item1:hover{
  background:var(--sub-color);
  color: #fff;
}
.link_0.item1:hover:before{
  background: #fff;
}
.link_0.item1:hover:after{
  color: #fff;

}
.link_0.item1:hover{
  border: 1px solid #fff;
}
.link_0.line:hover{
  background: #06C755;
}
.link_0:hover{
  transform: none;
}
.link_0:hover{
  background: var(--main-color);
}

.link_0.mail{
  background: #fff;
  color: #181818;
}
.link_0.mail:hover{
  background: #d6b27f;
  color: #fff;
}

.link_0.item1{
  background: #fff;
  border: 1px solid transparent;
  color: #181818;
  position: relative
}
.link_0.item1:before{
  content: "";
  display: block;
  width: 2px;
  max-height: 46px;
  height: 100%;
  background: #183663;
  position: absolute;
  top: 50%;
  right:12.3%;
  transform: translateY(-50%);
}
.link_0.item1:after{
  content: "▶";
  display: block;
  font-size: 17px;
  color: #183663;
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
}
.link_0.item2{
  border: 1px solid #fff;
  border-left: none;
  border-right: none;
  color: #fff;
  padding: 17px 24px 20px 25px;
}
.link_0.item2:hover{
  background: #fff;
  color: #000;
}
.link_0.item2:hover{
  color: #d6b27f;
}
.link_0 + .link_0{
  margin-top: 19px;
}
.link_0 .tel{
  font-size: 20px;
  font-family: "Outfit", sans-serif;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.075em;
}
.ftr_contact_box2{
  width: 100%;
  margin-top: 40px;
}
.ftr_contact_box2_inner{

}
.ftr_contact_box2_img:before{
  padding-top: 81.01%;
  padding-top: 636px;
}

.ftr_contact_box1_tt1{
  font-size: 40px;
  font-weight: 400;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0;
  line-height: 1;
}
.ftr_contact_box1_tt2{
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  margin-top: 7px;
}

.ftr_1{
  padding-top: 80px;
}
.ftr_1_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ftr_1_box1{
  width: 100%;
}
.ftr_logo{

}
.ftr_add{
  margin-top: 40px;
}
.ftr_add .name{
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.075em;
}
.ftr_add_txt{
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  margin-top: 20px;
}
.ftr_add_txt p{
  letter-spacing: 0.075em;
}
.ftr_1_box2{
  width: 100%;
}
.ftr_1_box2_links{
  display: flex;
  flex-wrap: wrap;
}
.ftr_1_box2_link{
  display: block;
  max-width: 270px;
  width: 100%;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  border: 1px solid transparent;
  background: #f19568;
  border-radius: 10px;
  color: #fff;
  padding: 12px 20px;
  margin:0;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
  cursor: pointer;
}
.ftr_1_box2_link + .ftr_1_box2_link{
  margin-top: 16px;;
}
.ftr_1_box2_link:hover{
  background: #fff;
  border: 1px solid #f19568;
  color: #f19568;
}
.ftr_links{

}
.ftr_link{

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

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

  body{
    padding-bottom: 56px;
  }
  body.body_home{
    padding-top: 0;
  }

  .footer_fix{
    display: flex;
  }

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

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

  .ftr_contact_box2_item{
    border-top: 1px solid #fff;
    padding-top: 30px;
  }
  .ftr_contact_box2_item{
    margin-top: 30px;
  }

  .ftr_contact_box2_img:before{
    padding-top: 250px;
  }
  .link_0.item2{
    flex-wrap: wrap;
    justify-content: center;
  }
  .link_0 .tel{
    font-size: 29px;
    margin-top: 16px;
  }

  .ftr_1_box1{
    text-align: center;  
  }
  .ftr_1_box2_links{
    justify-content: center;
    margin-top: 16px;
  }
  .ftr_links{
    display: none;
  }

  .ftr_logo{
    display: block;
    width: 240px;
    margin-inline: auto;
  }
}
@media (min-width:768px){
  body.body_home{
    padding-top: 134px;
  }
  .footer{
    margin-top: 100px;
    padding-bottom: 69px;
  }
  .body_home .footer{
    margin-top: 250px;
  }

  .ftr_contact_box1{
    padding-top: 54px;
  }
  .ftr_contact_box1_tt{

  }
  .ftr_contact_box1_tt1.home_sec2_slide_tt2{

  }
  .ftr_contact_box1_tt2.tt2_ja{

  }
  .ftr_contact_box1 .content_desc{

  }
  .link_items{

    margin-top: 87px;
  }
  .link_0{

  }
  .link_0.line,
  .link_0.mail{
    font-size: 18px;
  }
  .link_0 .tel{
    font-size: 18px;
  }
  .ftr_contact_box2{
    margin-top: 60px;
  }
  .ftr_contact_box2_inner{

  }
  .ftr_contact_box2_img:before{

  }

  .ftr_contact_box1_tt1{
    font-size: 70px;
  }
  .ftr_contact_box1_tt2{

  }


  .ftr_1{
    padding-top: 120px;
  }
  .ftr_1_box{

  }
  .ftr_1_box1{
    width: 42.76%;
  }
  .ftr_logo{

  }
  .ftr_add{
    margin-top: 84px;
  }
  .ftr_add .name{
    font-size: 24px;
  }
  .ftr_add_txt{

  }
  .ftr_1_box2{
    width: 55.76%;
    position: relative;
  }
  .ftr_1_box2_links{
    justify-content: flex-end;
  }
  .ftr_1_box2_link{
    margin-left: 15px;
  }
  .ftr_links{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 32px;
    margin-inline:-17px;
  }
  .ftr_link{
    width:50%;
   text-align:center;
    font-size: 16px;
    font-weight: 400;
    line-height: 2em;
    padding: 0 5px;
  }

  .ftr_copy{
    position: absolute;
    bottom: 10px;
    right: 0;
    margin-top: 0;
  }
}
@media (min-width:1024px){
  .footer{
    margin-top: 180px;
  }
  .body_home .footer{
    margin-top: 310px;
  }
  
  .ftr_link{
    width:auto;
   text-align:left;
  }
}
@media (min-width:1200px){
  .ftr_contact_wrap{
    padding: 0;
  }
  .ftr_contact_box{

  }
  .ftr_contact_box1{
    width: 61.51%;
  }
  .ftr_contact_box1_tt{

  }
  .ftr_contact_box1_tt1.home_sec2_slide_tt2{
    font-size: 90px;
  }
  .ftr_contact_box1_tt2.tt2_ja{

  }
  .ftr_contact_box1 .content_desc{

  }
  .link_items{

  }
  .link_0{
    max-width: 585px;
    margin-left: 0;
  }
  .link_0 .tel{
    font-size: 32px;
  }
  .link_0.item1{
    font-size: 24px;
  }
  .link_0.item2{
    font-size: 18px;
  }
  .ftr_contact_box2{
    width: 38.48%;
    margin-top: 0;
  }
  .ftr_contact_box2_inner{
    margin-right: var(--margin-for-device-side-w);
  }
  .ftr_contact_box2_img:before{
    padding-top: 636px;
  }

  .ftr_contact_box1_tt1{
    font-size: 90px;
  }
  .ftr_contact_box1_tt2{

  }

  .ftr_1_box{

  }
  .ftr_1_box1{

  }
  .ftr_logo{

  }
  .ftr_add{

  }
  .ftr_add .name{

  }
  .ftr_add_txt{

  }
  .ftr_1_box2{

  }
  .ftr_1_box2_links{

  }
  .ftr_1_box2_link{

  }
  .ftr_1_box2_link + .ftr_1_box2_link{
    margin-top: 0;
  }
  .ftr_links{
    justify-content: flex-end;
  }
  .ftr_link{
    padding: 0 10px;
  }
}
@media (min-width:1470px){
  .ftr_link{
    padding: 0 17px;
  }
}
@media (min-width:1536px){

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

}

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


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

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

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

}


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

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

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


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

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

/* ボタン */
.read_more{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
  margin-left: -5px;
  margin-right: -5px;
}
.read_more a{
  min-width: 250px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  border: none;;
  background: transparent;
  /*border-radius: 27px;*/
  color: #f19568;
  padding: 16px 20px;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.read_more.bg_or a{
  background: #f7f3ee;
}
.read_more a p{
  letter-spacing: 0.05em;;
}
.read_more a:after{
  content: "→";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 18px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.read_more a:hover{
  color: #f19568;
  background:#f7f3ee;
}
.read_more a:hover:after{
  margin-right: -5px;
}


/* 見出し */
.tt2{
  text-align: center;
  margin-bottom: 9px;
}
.tt2_en{
  font-size: 18px;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #565656;
}
.tt2_ja{
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 9px;
}
.tt2_ja.lg{
  font-weight: 500;
}

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

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



@media (max-width:374px){

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

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

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

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

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

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

  .anchor{
    top: -100px;
  }

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

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

  /* 見出し */



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

  }

  .tt2_ja{
    font-size: 28px;
  }
  .tt2_ja.lg{
    font-size: 34px;
  }
  .tt2_en{
    font-size: 21px;
  }
}
@media (min-width:1024px){

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


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


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


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

  }
}


@media (min-width:1366px){


}

@media (min-width:1470px){

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

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

}



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

}
.pg_home .section.sec1{
  padding-top:60px;
  position: relative;
}
.pg_home .section.sec2{

}
.pg_home .section.sec3{
  position: relative;
}
.pg_home .section.sec4{

}
.pg_home .section.sec5{

}
.pg_home .section.sec6{

}
.pg_home .section.sec7{

}
.pg_home .section.sec8{

}

.pos{
  position: absolute;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.circle1{
  width: 79.16%;;
  aspect-ratio:1512 / 2770;
  background-image: url(https://yawaragi-kaikei.com/system_panel/uploads/images/circle1.png);
  left: calc(50% - 90%);
  top: -2%;
}
.circle2{
  /*  width: ;
    aspect-ratio:;
    background-image: url();*/
}
@media (max-width:767px){

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

  .pg_home .section.sec1{
    padding-top: 120px;
  }
  .pg_home .section.sec2{
    padding-top: 88px;
  }
  .pg_home .section.sec3{
    padding-top: 80px;
  }
  .pg_home .section.sec4{
    padding-top: 89px;
  }
  .pg_home .section.sec5{
    padding-top: 64px;
  }
  .pg_home .section.sec6{
    padding-top: 100px;
  }
  .pg_home .section.sec7{

  }
  .pg_home .section.sec8{

  }

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


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

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

  }
  .pg_home .section.sec3{

  }
  .pg_home .section.sec4{

  }
  .pg_home .section.sec5{

  }
  .pg_home .section.sec6{
    padding-top: 150px;
  }
  .pg_home .section.sec7{

  }
  .pg_home .section.sec8{

  }

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


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


}

.circle{
  width: 2159px;
  aspect-ratio:1;
  background: #f7f3ee;
  border-radius: 50%;
  position: absolute;
  top: 112px;
  left: 0;
}

/*sec1*/
.home_sec1_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.home_sec1_box1{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  order: 2;
  border-bottom: 1px solid #856653;
}
.home_sec1_box1_left{

}
.home_sec1_box1_left_img{

}
.home_sec1_box1_right{
  margin-top: 20px;
}
.home_sec1_box1_right_txt{
  font-size: 20px;
  font-weight: 400;
  line-height: 1.378em;
}
.home_sec1_box1_right_txt p{
  letter-spacing: 0.075em;
}
.content_desc{
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6em;
  text-align: justify;
}
.home_sec1_box1_right .content_desc{
  margin-top: 20px;
}
.home_sec1_box2{
  width: 100%;
  order: 1;
}
.home_sec1_box2_en{
  font-size: 20px;
  font-size: clamp(2rem, 1.6rem + 2vw, 4rem);
  font-weight: 200;
  font-family: "Outfit", sans-serif;
  line-height: 1.4em;
  color: #ede1d0;
}
.home_sec1_box2_en.lg{
  font-size: clamp(2.5rem, 1.75rem + 3.75vw, 6.25rem);
}
.home_sec1_box1 .read_more{
  position: relative;
  bottom: -50px;
}
.home_sec1_box1 .read_more{
  margin-top: 8px;
}
.home_sec1_box1 .read_more a{
  padding: 0 48px;
}

.home_sec1_sub_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  margin-top: 80px;
}
.home_sec1_sub_box1{
  width: 100%;
}
.home_sec1_sub_box1_txt{
  font-size: 24px;
  font-weight: 400;
  line-height: 1.72em;
}
.home_sec1_sub_box2{
  width: 100%;
}
.home_sec1_sub_box2 .content_desc{
  margin-top: 20px;
}
.home_sec1_sub_box2_items{
  display: flex;
  flex-wrap: wrap;
  gap:10px 0;
  margin-top: 40px;
}
.home_sec1_sub_box2_item{
  width: 100%;
}
.home_sec1_sub_box2_item:first-child a{
  border-radius: 20px 20px 0 0;
}
.home_sec1_sub_box2_item:last-child a{
  border-radius: 0 0 20px 20px;
}
.home_sec1_sub_box2_item a{
  text-align: center;
  display: block;
  background: #f19568;
  color: #fff;
  position: relative;
  padding-bottom: 20px;
  padding-top: 10px;
  border: 1px solid transparent;
}
.home_sec1_sub_box2_item a:after{
  content: "→";
  font-size: 20px;
  width: 42px;
  aspect-ratio:1;
  border-radius: 50%;
  background: #fff;
  color: #181818;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
}
.home_sec1_sub_box2_item a:hover{
  background: #d6b27f;
  color: #fff;;
}
.home_sec1_sub_box2_item_img{

}
.home_sec1_sub_box2_item_tt{
  font-size: 21px;
  font-weight: 500;
  margin-bottom: 13px;
  margin-top: 17px;
}
.home_sec1_sub_box2_item_tt p{
  letter-spacing: 0.075em;
}

/*sec2*/
.home_sec2_wrap{

}
.tt_en{
  display: flex;
  align-items: center;
  position: relative;
}
.tt_en.right{
  flex-direction: row-reverse;
  text-align: right;
}
.tt_en:after{
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #856653;
  position: relative;
  top: 50%;
  left:0;
  transform: translateY(-50%);
}
.tt_en_txt{
  font-size: clamp(2.5rem, 1.9rem + 3vw, 5.5rem);
  font-weight: 200;
  font-family: "Outfit", sans-serif;
  line-height: 1;
  letter-spacing: 0;
  color: #f3e9dd;
  background: none;
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-right: 30px;
  white-space: nowrap;
}
.tt_en.right .tt_en_txt{
  padding-right: 0;
  padding-left: 30px;
}
.home_sec2_items{
  display:flex;
  flex-wrap: wrap;
  gap:50px 0;
  margin-top: 40px;
}
.home_sec2_item{
  width: 100%;
}
.home_sec2_item_img img{
  border-radius: 20px;
}
.home_sec2_item_img:before{
  padding-top: 61.74%;
}
.home_sec2_item_img a img{
  transition: 0.2s all;
}
.home_sec2_item_img a:hover img{
  transform: scale(1.02);
}
.home_sec2_item_tt{

  margin-top: 19px;
  position: relative;
}
.home_sec2_item_tt:after{
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #856653;
  position: absolute;
  top: 50%;
  left:0;
  transform: translateY(-50%);
}
.home_sec2_item_tt_inner{
  display: inline-flex;
  align-items: flex-end;
  background: #fff;
  position: relative;
  z-index: 1;
  padding-right: 30px;
}
.home_sec2_item_tt_num{
  font-size: 40px;
  font-weight: 200;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0;
  line-height: 1;
  margin-right: 14px;
  position: relative;
  z-index: 1;
  background: #fff;
}
.home_sec2_item_tt_ja{
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0;
  position: relative;
  z-index: 1;
  background: #fff;
}
.home_sec2_item .content_desc{
  margin-top: 20px;
}
.home_sec2_item .content_desc p{
  letter-spacing: 0;
}
.link_2{
  display: flex;
  align-items: center;
  position: relative;
  text-align: right;
  margin-top: 23px;
}
.link_2:before{
  content: "";
    display: block;
    flex: 1;
    height: 0;
    border-top: 1px solid #856653;
/*  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #856653;
  position: relative;*/
  /*  top: 50%;
    left:0;
    transform: translateY(-50%);*/
}
.link_2 a{
  white-space: nowrap;
  display: block;
  background: #fff;
  background: none;
  color: #f19568;
  position: relative;
  z-index: 1;
  font-size: 16px;
  font-weight: 500;
  padding-left: 24px;
}
.link_2 a:hover  p:after{
  right: -5px;
}
.link_2 a p{
  display: flex;
  align-items: center;
  letter-spacing: 0.075em;
}
.link_2 a p:after{
  content: "→";
  margin-left: 20px;
  position: relative;
  right: 0;
  transition: all .2s;
}

/*sec3*/
.home_sec3_head{
  margin-top: 16px;
}
.home_sec3_head_tt{
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.home_sec3_head .content_desc{
  margin-top: 20px;
}

.home_sec3_items{
  display: flex;
  flex-wrap: wrap;
  gap:40px 0;
  margin-top: 50px;
}
.home_sec3_item{

}
.home_sec3_item_top{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_sec3_item_top_left{
  width: 100%;
}
.home_sec3_item_top_left_txt{
  font-size: 20px;
  font-weight: 400;
  line-height: 1.82em;
}
.home_sec3_item_top_left_txt p{
  letter-spacing: 0.1em;
}
.home_sec3_item_top_right{
  width: 100%;
  margin-top: 20px;
}
.home_sec3_item_top_right_en{
  font-size: 38px;
  font-weight: 500;
  font-family: "Outfit", sans-serif;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
}
.home_sec3_item_top_right_img_outer{
  position: relative;
  aspect-ratio:1;
  margin-top: 11px;
}
.home_sec3_item_top_right_img_outer:before{
  content: "";
  display: block;
  width: 40.38%;
  aspect-ratio:210 / 211;
  background-image: url(https://yawaragi-kaikei.com/system_panel/uploads/images/circle2.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -17.88%;
  left: -14.8%;
  z-index: 2;
}
.home_sec3_item_top_right_img_outer:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio:1;
  background: #d6b27f;
  border-radius: 50%;
  aspect-ratio:1;
  position: absolute;
  top: 0;
  left: 0;
}
.home_sec3_item_top_right_img{
  position: relative;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
  aspect-ratio:519 / 519;
  width: 94.23%;
  z-index: 1;
}
.home_sec3_item_top_right_img img{
  max-width: none;
  position: absolute;
  z-index: 1;
  top: 0;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  -webkit-mask-image: url(https://yawaragi-kaikei.com/system_panel/uploads/images/yu.png);
}
.home_sec3_item .content_desc{
  margin-top: 21px;
}

/*sec4*/
.home_sec4_box{
  position: relative;
  z-index: 1;
}
.home_sec4_box{
  background: #f7f3ee;
  border-radius: 20px;
  padding: 39px 16px;
}
.home_sec4_box .content_desc.center{
  text-align: center;
  font-weight: 500;
}
.home_sec4_box .content_desc.center p{
  letter-spacing: 0.05em;
}
.home_sec4_wrap .news_list{
  margin-top: 18px;
}

.news_list{

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

}
.news_list .webgene-item .img:before{
  padding-top: 75%;
}
.news_list .webgene-item .img img{
  border-radius: 5px;
}
.news_list .webgene-item .box2{
  margin-top: 20px;
}
.news_list .webgene-item .meta{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.news_list .webgene-item .date{
  font-size: 16px;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0;
  line-height: 1;
  margin-right: 21px;
}
.news_list .webgene-item .category{
  display: inline-block;
  text-align: center;
  background: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  border: 1px solid #181818;
  border-radius: 12px;
  padding: 2px 10px;
}
.news_list .webgene-item .title{
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;;
  line-height: 2em;
}

.link_1{
  display: block;
  max-width: 350px;
  width: 100%;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  border: 1px solid transparent;
  background: #fff;
  border-radius: 26px;
  color: #f19568;
  padding: 16px 20px;
  margin: 50px auto 0;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
  cursor: pointer;
}
.link_1:after{
  content: "→";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 34px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.link_1:hover{
  background: #f19568;
  color: #fff;
}

/*sec5*/
.home_sec5_head{

}
.home_sec5_head_left{

}
.home_sec5_head_left_en{
  font-size: 40px;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0;
  line-height: 1;

}
.home_sec5_head_left_en p{

}
.home_sec5_head_right{

}
.home_sec5_head_right .link_2{

}

.home_sec5_wrap .news2_list{
  margin-top: 36px;
}
.news2_list{

}
.news2_list .webgene-blog{

}
.news2_list .webgene-item{

}
.news2_list .webgene-item a{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-top: 1px solid #d6b27f;
  padding: 24px 0;
}
.news2_list .webgene-item:last-child a{
  border-bottom: 1px solid #d6b27f;
}
.news2_list .webgene-item .date{
  font-size: 18px;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0;
  line-height: 1;
} 
.news2_list .webgene-item .category{
  width: 100px;
  display: inline-block;
  text-align: center;
  background: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  border: 1px solid #181818;
  border-radius: 12px;
  padding: 2px 10px;
}
.news2_list .webgene-item .title{
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.075em;
}
.home_sec5_wrap .link_2{
  margin-top: 40px;
}

/*sec6*/
.home_sec6_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_sec6_box1{
  width: 100%;
  order: 2;
  margin-top: 30px;
}
.home_sec6_box1_inner{

}
.access_map iframe{
  border: none;
  height: 250px;
  width: 100%;
}
.home_sec6_box2{
  width: 100%;
  order: 1;
}
.home_sec6_box2_top{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.home_sec6_box2_top{
  position: relative; 
}
.home_sec6_box2_top:before{
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #856653;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.home_sec6_box2_top .tt_en{

}
.home_sec6_box2_top .tt_en_txt{
  background: #fff;
  padding-right: 20px;
}
.home_sec6_box2_top_logo{
  background: #fff;
  position: relative;
  z-index: 1;
  padding-left: 20px;
}
.home_sec6_box2_tbl{
  margin-top: 30px;;
}
.home_sec6_box2_tbl .table_rows_th,
.home_sec6_box2_tbl .table_rows_td{
  border: 1px solid #bfbfbf;
  font-size: 16px;
  font-weight: 500;
}
.home_sec6_box2_tbl .table_rows_th p,
.home_sec6_box2_tbl .table_rows_td p{
  letter-spacing: 0.05em;
}
.home_sec6_box2_tbl .table_rows_th{
  background: #d6b27f;
  color: #fff;
}
.home_sec6_box2_tbl .table_rows_td{

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

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

}
@media (max-width:767px){
  .home_sec1_box1 .read_more{
    bottom: -16px;
    justify-content: flex-end;
  }

  /*sec3*/
  .home_sec3_item_top_right_img_outer:before{
    width: 26.38%;
    top: -7.88%;
    left: 0.2%;
  }

  /*sec4*/
  .news_list .webgene-item .category{
    margin-top: 5px;
  }

  /*sec5*/
  .news2_list .webgene-item .date{
    margin-right: 16px;
  }
  .news2_list .webgene-item .title{
    margin-top: 5px;
  }

  /*sec6*/
  .home_sec6_box2_tbl .table_rows_th,
  .home_sec6_box2_tbl .table_rows_td{
    display: block;
    width: 100%;
    border-bottom: none;
  }
  .home_sec6_box2_tbl .table_rows_tr:last-child .table_rows_td{
    border-bottom: 1px solid #bfbfbf;
  }

  .home_sec3_item_top_left{
    order: 2;
    margin-top: 10px;
  }
  .home_sec3_item_top_right{
    order: 1;
  }
}
@media (min-width:768px){
  .circle{
    left: 44.5%;
  }

  /*sec1*/
  .home_sec1_wrap{

  }
  .home_sec1_box1{
    border-bottom: 1px solid #856653;
  }
  .home_sec1_box1_left{

  }
  .home_sec1_box1_left_img{

  }
  .home_sec1_box1_right{
    margin-top: 30px;
  }
  .home_sec1_box1_right_txt{
    font-size: 26px;
  }
  .content_desc{

  }
  .home_sec1_box1_right .content_desc{
    line-height: 3.125em;
    margin-top:40px;
  }
  .home_sec1_box1 .read_more{
    bottom: -16px;
  }
  .home_sec1_box2{

  }
  .home_sec1_box2_en{
    /*    font-size: 50px;*/
    /*   -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;*/
  }

  .home_sec1_sub_wrap{
    margin-top: 108px;
  }
  .home_sec1_sub_box1{

  }
  .home_sec1_sub_box1_txt{
    font-size: 36px;
  }
  .home_sec1_sub_box2{

  }
  .home_sec1_sub_box2 .content_desc{
    line-height: 3.125em;
    margin-top: 0;
  }
  .home_sec1_sub_box2_items{
    gap:10px;
    margin-top: 61px;
  }
  .home_sec1_sub_box2_item{
    width: calc(50% - 5px);
  }
  .home_sec1_sub_box2_item a{

  }
  .home_sec1_sub_box2_item:first-child a{
    border-radius: 20px 0 0 0;
  }
  .home_sec1_sub_box2_item:last-child a{
    border-radius: 0 0 20px 0;
  }
  .home_sec1_sub_box2_item:nth-child(2) a{
    border-radius:0 20px 0 0;
  }
  .home_sec1_sub_box2_item:nth-child(7) a{
    border-radius:0 0 0 20px;
  }
  .home_sec1_sub_box2_item_img{

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

  /*sec2*/
  .home_sec2_wrap{

  }
  .tt_en{

  }
  .tt_en_txt{
    padding-right: 40px;
  }
  .tt_en.right .tt_en_txt{
    padding-right: 0;
    padding-left: 40px;
  }
  .home_sec2_items{
    margin-top: 45px;
  }
  .home_sec2_item{

  }
  .home_sec2_item_img img{

  }
  .home_sec2_item_img:before{

  }
  .home_sec2_item_tt{

  }
  .home_sec2_item_tt_num{
    font-size: 50px;
  }
  .home_sec2_item_tt_ja{
    font-size: 26px;
  }
  .home_sec2_item .content_desc{
    line-height: 2.125em;
    margin-top: 30px;
  }
  .link_2{

  }
  .link_2 a{
    font-size: 18px;
  }

  /*sec3*/
  .home_sec3_head{

  }
  .home_sec3_head_tt{
    font-size: 26px;
  }
  .home_sec3_head .content_desc{
    margin-top: 14px;
  }
  .content_desc{
    line-height: 2.25em;
  }

  .home_sec3_items{
    margin-top: 120px;
    gap:150px 0;
  }
  .home_sec3_item{
    width: 100%;

  }
  .home_sec3_item_top{
    align-items: flex-start;
  }
  .home_sec3_item_top_left{
    width: 20%;
    padding-top: 164px;
  }
  .home_sec3_item_top_left_txt{
    font-size: 38px;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
  .home_sec3_item_top_right{
    width: 80%;
    margin-top: 0;
  }
  .home_sec3_item_top_right_en{
    font-size: 40px;
    padding-left: 25px;
  }
  .home_sec3_item_top_right_img_outer{

  }
  .home_sec3_item_top_right_img{

  }
  .home_sec3_item_top_right_img img{

  }
  .home_sec3_item .content_desc{

  }

  /*sec5*/
  .home_sec5_head{

  }
  .home_sec5_head_left{

  }
  .home_sec5_head_left_en{
    font-size: 60px;
  }
  .home_sec5_head_left_en p{

  }
  .home_sec5_head_right{

  }
  .home_sec5_head_right .link_2{

  }

  .home_sec5_wrap .news2_list{
    margin-top: 47px;
  }
  .news2_list{

  }
  .news2_list .webgene-blog{

  }
  .news2_list .webgene-item{

  }
  .news2_list .webgene-item a{
    padding: 44px 0;
    position: relative;
  }
  .news2_list .webgene-item a:after{
    content: "→";
    position: absolute;
    z-index: 1;
    top: 50%;
    right: 60px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    transition: 0.2s all;
  }
  .news2_list .webgene-item .date{
    font-size: 20px;
    width: 142px;
  } 
  .news2_list .webgene-item .category{

  }
  .news2_list .webgene-item .title{
    font-size: 18px;
    width: calc(100% - 100px - 142px);
    padding-right: 80px;
    padding-left: 30px;
  }

  /*sec6*/
  .home_sec6_wrap{

  }
  .home_sec6_box1{
    margin-top: 50px;
  }
  .home_sec6_box1_inner{

  }
  .access_map iframe{
    height: 550px;
  }
  .home_sec6_box2{

  }
  .home_sec6_box2_top{

  }
  .home_sec6_box2_top .tt_en{

  }
  .home_sec6_box2_top .tt_en_txt{

  }
  .home_sec6_box2_top_logo{
    padding-left: 47px;
  }
  .home_sec6_box2_tbl{
    margin-top: 30px;;
  }
  .home_sec6_box2_tbl .table_rows_th,
  .home_sec6_box2_tbl .table_rows_td{
    padding: 18px 15px;
  }
  .home_sec6_box2_tbl .table_rows_th{

  }
  .home_sec6_box2_tbl .table_rows_td{

  }
}
@media (min-width:1024px){
  /*sec1*/
  .home_sec1_box1{
    border-bottom: 1px solid #856653;
  }
  .home_sec1_box1_left{
    width: 46.38%;
    align-self: flex-end;
  }
  .home_sec1_box1_left_img{

  }
  .home_sec1_box1_right{
    width: 50.57%;
    margin-top: 0;
  }
  .home_sec1_box1 .read_more{
    bottom: -16px;
  }

  /*sec2*/
  .home_sec2_wrap{

  }
  .tt_en{

  }
  .tt_en_txt{
    padding-right: 91px;
  }
  .tt_en.right .tt_en_txt{
    padding-right: 0;
    padding-left: 91px;
  }
  .home_sec2_items{
    gap:0 30px;
  }
  .home_sec2_item{
    width: calc(50% - 15px);
  }
  .home_sec2_item:nth-child(even){
    margin-top: 90px;
  }
  .home_sec2_item_img img{

  }
  .home_sec2_item_img:before{

  }
  .home_sec2_item_tt{

  }
  .home_sec2_item_tt_num{

  }
  .home_sec2_item_tt_ja{

  }
  .home_sec2_item .content_desc{

  }
  .link_2{

  }
  .link_2 a{

  }

  /*sec3*/
  .home_sec3_items{
    margin-top: 120px;
    gap:200px 0;
  }

  /*sec4*/
  .home_sec4_box{
    padding: 39px 61px 55px;
  }
  .home_sec4_box .content_desc.center{

  }

  .news_list{

  }
  .news_list .webgene-blog{
    margin-inline:-20px;
  }
  .news_list .webgene-item{
    width: 33.333%;
    padding-inline:20px;
  }
  .news_list .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .news_list .webgene-item:nth-child(n+4){
    margin-top: 20px;;
  }
  .news_list .webgene-item .title{
    font-size: 18px;
    margin-top: 5px;
  }

  /*sec5*/
  .home_sec5_wrap .link_2{
    margin-top: 40px;
  }

}
@media (min-width:1200px){
    .home_sec3_items{
    margin-top: 67px;
  }
  
  /*sec1*/
  .home_sec1_wrap{
    align-items: flex-start;
  }
  .home_sec1_box1{
    width: 86.51%;
    border-bottom: 1px solid #856653;
    order: 1;
  }
  .home_sec1_box1_left{
    align-self: flex-end;
  }
  .home_sec1_box1_left_img{

  }
  .home_sec1_box1_right{
    padding-top: 12px;
  }
  .home_sec1_box1_right_txt{
    font-size: 40px;
    margin-right: -30px;
  }
  .content_desc{

  }
  .home_sec1_box1_right .content_desc{
    margin-top: 52px;
  }
  .home_sec1_box2{
    width: 13.48%;
    padding-top: 26px;
    order: 2;
  }
  .home_sec1_box2_en{
    /*  font-size: 64px;*/
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    margin-left: auto;
    margin-right: -0.35em;
  }
  .home_sec1_box1 .read_more{
    bottom: -16px;
  }

  .home_sec1_sub_wrap{
    margin-top: 108px;
  }
  .home_sec1_sub_box1{
    width: 11.84%;
  }
  .home_sec1_sub_box1_txt{
    font-size: 40px;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
  .home_sec1_sub_box2{
    width: 82.24%;

  }
  .home_sec1_sub_box2 .content_desc{

  }
  .home_sec1_sub_box2_items{

  }
  .home_sec1_sub_box2_item{
    width: calc(25% - 7.5px);
  }
  .home_sec1_sub_box2_item a{

  }
  .home_sec1_sub_box2_item:nth-child(2) a{
    border-radius:0;
  }
  .home_sec1_sub_box2_item:nth-child(7) a{
    border-radius:0;
  }
  .home_sec1_sub_box2_item:nth-child(4) a{
    border-radius:0 20px 0 0;
  }
  .home_sec1_sub_box2_item:nth-child(5) a{
    border-radius:0 0 0 20px;
  }
  .home_sec1_sub_box2_item_img{

  }
  .home_sec1_sub_box2_item_tt{
    font-size: 16px;
  }

  /*sec2*/
  .home_sec2_wrap{

  }
  .tt_en{

  }
  .tt_en_txt{

  }
  .home_sec2_items{

  }
  .home_sec2_item{

  }
  .home_sec2_item:nth-child(even){
    margin-top: 90px;
  }
  .home_sec2_item_img img{

  }
  .home_sec2_item_img:before{

  }
  .home_sec2_item_tt{

  }
  .home_sec2_item_tt_num{

  }
  .home_sec2_item_tt_ja{
    font-size: 22px;
  }
  .home_sec2_item .content_desc{

  }
  .link_2{

  }
  .link_2 a{

  }

  /*sec3*/
  .home_sec3_head{

  }
  .home_sec3_head_tt{
    font-size: 34px;
  }
  .home_sec3_head .content_desc{

  }

  .home_sec3_items{
    gap:60px;
  }
  .home_sec3_item{
    width: calc(50% - 30px);
  }
  .home_sec3_item_top{

  }
  .home_sec3_item_top_left{
    padding-top: 164px;
  }
  .home_sec3_item_top_left_txt{
    font-size: 28px;
    margin-left: -15px;
  }
  .home_sec3_item_top_right{

  }
  .home_sec3_item_top_right_en{
    font-size: 62px;
  }
  .home_sec3_item_top_right_img_outer{

  }
  .home_sec3_item_top_right_img{

  }
  .home_sec3_item_top_right_img img{

  }
  .home_sec3_item .content_desc{

  }

  /*sec4*/
  .news_list .webgene-item{
    width: 25%;
  }
  .news_list .webgene-item:nth-child(n+4){
    margin-top: 0;
  }

  /*sec5*/
  .home_sec5_head{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .home_sec5_head_left{

  }
  .home_sec5_head_left_en{
    font-size: 58px;
  }
  .home_sec5_head_left_en p{

  }
  .home_sec5_head_right{
    width: 86.51%;
  }
  .home_sec5_head_right .link_2{
    margin-top: 0;
  }

  .news2_list{

  }
  .news2_list .webgene-blog{

  }
  .news2_list .webgene-item{

  }
  .news2_list .webgene-item a{

  }
  .news2_list .webgene-item .date{

  } 
  .news2_list .webgene-item .category{

  }
  .news2_list .webgene-item .title{

  }
  .home_sec5_wrap .link_2{
    margin-top: 0;
  }

  /*sec6*/
  .home_sec6_wrap{

  }
  .home_sec6_box1{
    width: 42.76%;
    order: 1;
    margin-top: 0;
  }
  .home_sec6_box1_inner{
    margin-left: var(--margin-for-device-side-w);
  }
  .access_map iframe{

  }
  .home_sec6_box2{
    width: 55.26%;;
    position: relative;
    padding-top: 58px;
    order: 2;
  }
  .home_sec6_box2_top{

  }
  .home_sec6_box2_top .tt_en{

  }
  .home_sec6_box2_top .tt_en_txt{
    font-size: 58px;
  }
  .home_sec6_box2_top_logo{

  }
  .home_sec6_box2_tbl{
    position: absolute;
    right: 0;
    top: 153px;
    width: 114.88%;
    margin-top: 0;
  }
  .home_sec6_box2_tbl .table_rows_th,
  .home_sec6_box2_tbl .table_rows_td{

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

  }
}
@media (min-width:1470px){
  .home_sec1_box1 .read_more{
    bottom: -50px;
  }

  .home_sec1_sub_box2_item_tt{
    font-size: 21px;
  }
  .home_sec1_sub_box1_txt{
    font-size: 58px;
  }


  /*sec3*/
  .home_sec3_items{
    gap: 75px 220px;
  }
  .home_sec3_item{
    width: calc(50% - 110px);
  }

  .home_sec3_item_top_left_txt{
    font-size: 32px;
  }

}


@media (min-width:1720px){
  /*sec1*/
  .home_sec1_box1_right_txt{
    font-size: 58px;
  }

  /*sec3*/
  .home_sec3_item_top_left_txt{
    font-size: 38px;
  }

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




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

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

}
.pg_aboutus .section.sec1{
  position: relative;
}
.pg_aboutus .section.sec2{
  padding-top: 90px;
  position: relative;
}
.pg_aboutus .section.sec3{
  position: relative;
}
.pg_aboutus .section.sec4{

}
.pg_aboutus .section.sec5{

}
.pg_xxx .section.sec6{

}


@media (max-width:374px){

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

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

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

  .pg_aboutus{

  }
  .pg_aboutus .section.sec1{

  }
  .pg_aboutus .section.sec2{
    padding-top: 90px;
  }
  .pg_aboutus .section.sec3{
    padding-top: 85px;
  }
  .pg_aboutus .section.sec4{
    padding-top: 38px;
  }
  .pg_aboutus .section.sec5{

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


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

  }
  .pg_aboutus .section.sec1{

  }
  .pg_aboutus .section.sec2{
    padding-top: 90px;
  }
  .pg_aboutus .section.sec3{

  }
  .pg_aboutus .section.sec4{

  }
  .pg_aboutus .section.sec5{

  }
  .pg_xxx .section.sec6{

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


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


}

.a-circle1{
  width: 70.57%;;
  aspect-ratio:1355 / 2159;
  background-image: url(https://yawaragi-kaikei.com/system_panel/uploads/images/a_circle1.png);
  top: 7%;
  right: calc(50% - 54%);
}
.a-circle2{
  width: 78.8%;;
  aspect-ratio:1513 / 2770;
  background-image: url(https://yawaragi-kaikei.com/system_panel/uploads/images/a-circle2.png);
  top: 60%;
  left: calc(50% - 89%);
}

.pg_business.individual .section.sec2 .a-circle2{
  top: 88%;
  left: calc(50% - 88%);
  right: auto;
}


/* メイン部分 */
/*sec1*/
.aboutus_sec1_wrap{
  display: flex;
  flex-wrap:wrap;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.aboutus_sec1_box1{
  width: 100%;

}
.aboutus_sec1_box1 .home_sec1_box2_en{

}
.aboutus_sec1_box2{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;

}
.aboutus_sec1_box2_left{
  width: 100%;
  order: 1;

}
.aboutus_sec1_box2_left .home_sec1_box1_right_txt{

}
.aboutus_sec1_box2_left .content_desc{
  margin-top: 20px;
}
.aboutus_sec1_box2_right{
  width: 100%;
  order: 2;
  margin-top: 20px;
}
.aboutus_sec1_box2_right_img img{
  border-radius: 20px;
}
.aboutus_sec1_box2_right_img:before{
  padding-top: 78.63%;
}

/*sec2*/
.baby_txt{
  font-size: clamp(3.125rem, 2.313rem + 4.06vw, 7.188rem);
  /*  font-size: 40px;*/
  font-weight: 400;
  font-family: "Oooh Baby", cursive;
  letter-spacing: 0;
  line-height: 1;
  transform-origin: center center;
  transform: rotate(-11deg);
  color: #d6b27f;
  display: inline-block;
  margin-right: 0.1em;
  position: absolute;
  top: -5rem;
  right: 0;
}
.aboutus_sec2_wrap{
  background: #f4dfd5;
  padding: 38px 10px;
  border-radius: 20px;
  position: relative;
}
.aboutus_sec2_box{

}
.content_desc.center{

}
.aboutus_sec2_box .content_desc.center{
  text-align: center;
}
.aboutus_sec2_items{
  margin-top: 22px;
  margin-bottom:30px;
}
.aboutus_sec2_item{

}
.content_desc{

}

/*sec3*/
.home_sec2_items.kasou{

}
.home_sec2_items.col3{

}
.home_sec2_items.kasou{
  align-items: flex-start;
}
.home_sec2_items.kasou .home_sec2_item_img:before{
  padding-top: 95.83%;
}
.home_sec2_items.kasou .home_sec2_item{
  border-bottom: 1px solid #91715a;
  padding-bottom: 30px;
}

.home_sec2_items.col3{

}
.home_sec2_items.col3 .home_sec2_item{

}

.link_1_btn{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 13px;
}
.link_1_btn .link_1{

}
.link_1.or{
  background: #f19568;
  color: #fff;
}
.link_1.or:hover{
  background: #fff;
  color: #f19568;
  border: 1px solid #f19568;
}
@media (max-width:767px){
  .a-circle2{
    width: 73.8%;
  }

  .link_1_btn{
    flex-wrap: wrap;
  }
  .link_1_btn .link_1 + .link_1{
    margin-top: 16px;
  }
}
@media (min-width:768px){
  .a-circle2{
    width: 78.8%;;
    top: 91%;
    left: calc(50% - 89%);
  }

  /*sec1*/
  .aboutus_sec1_wrap{

  }
  .aboutus_sec1_box1{

  }
  .aboutus_sec1_box1 .home_sec1_box2_en{

  }
  .aboutus_sec1_box2{

  }
  .aboutus_sec1_box2_left{

  }
  .aboutus_sec1_box2_left .home_sec1_box1_right_txt{

  }
  .aboutus_sec1_box2_left .content_desc{
    line-height: 3.125em;
    margin-top: 49px;
  }
  .aboutus_sec1_box2_right{
    margin-top: 30px; 
  }
  .aboutus_sec1_box2_right_img img{

  }
  .aboutus_sec1_box2_right_img:before{

  }

  /*sec2*/
  .baby_txt{
    top: -5rem;
    right: 0;
  }
  .aboutus_sec2_wrap{
    padding: 38px 16px 63px;
  }
  .aboutus_sec2_box{
    max-width: 1110px;
    margin-inline:auto;
  }
  .content_desc.center{

  }
  .aboutus_sec2_box .content_desc.center{

  }
  .aboutus_sec2_items{
    margin-bottom: 48px;
  }
  .aboutus_sec2_item{

  }
  .content_desc{

  }

  /*sec3*/
  .home_sec2_items.kasou{

  }
  .home_sec2_items.col3{

  }
  .home_sec2_items.kasou{

  }
  .home_sec2_items.kasou .home_sec2_item{
    padding-bottom: 50px;
  }
  .home_sec2_items.col3{

  }
  .home_sec2_items.col3 .home_sec2_item{

  }
  .link_1_btn{

  }
  .link_1_btn .link_1{
    margin-inline:16px;;
  }
}
@media (min-width:1024px){
  .a-circle2{
    width: 78.8%;;
    top: 83%;
    left: calc(50% - 89%);
  }

  /*sec1*/
  .aboutus_sec1_box1{

  }
  .aboutus_sec1_box2{

  }
  .aboutus_sec1_box2_left{
    width: 48.28%;
    order: 1;

  }
  .aboutus_sec1_box2_left .home_sec1_box1_right_txt{

  }
  .aboutus_sec1_box2_left .content_desc{
    margin-top: 49px;
  }
  .aboutus_sec1_box2_right{
    width: 44.48%;
    order: 2;
    margin-top: 0;
  }

  /*sec2*/
  .baby_txt{
    top: -5rem;
    right:0;
  }

  /*sec3*/
  .home_sec2_items.kasou .home_sec2_item:nth-child(even){
    margin-top: 70px;
  }
  .link_1_btn{

  }
  .link_1_btn .link_1{

  }
}
@media (min-width:1200px){
  .a-circle2{
    width: 78.8%;;
    top: 67%;
    left: calc(50% - 89%);
  }

  /*sec1*/
  .aboutus_sec1_wrap{

  }
  .aboutus_sec1_box1{
    width: 4.1%; 
  }
  .aboutus_sec1_box1 .home_sec1_box2_en{

  }
  .aboutus_sec1_box2{
    width: 86.51%; 
  }
  .aboutus_sec1_box2_left{

  }
  .aboutus_sec1_box2_left .home_sec1_box1_right_txt{

  }
  .aboutus_sec1_box2_left .content_desc{

  }
  .aboutus_sec1_box2_right{
    padding-top: 16px;
  }
  .aboutus_sec1_box2_right_img img{

  }
  .aboutus_sec1_box2_right_img:before{

  }


  /*sec2*/
  .baby_txt{
    top: -5rem;
    right: 3rem;
  }
  .aboutus_sec2_wrap{
    padding: 38px 0 63px;
  }
  .aboutus_sec2_box{

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

  }
  .aboutus_sec2_items{

  }
  .aboutus_sec2_item{

  }
  .content_desc{

  }

  /*sec3*/
  .home_sec2_items.kasou{

  }
  .home_sec2_items.col3{

  }
  .home_sec2_items.kasou{
    margin-top: 70px;
  }
  .home_sec2_items.col3{
    gap:0 40px;
  }
  .home_sec2_items.col3 .home_sec2_item{
    width: calc(33.33% - 26.666px);
  }

  /*sec4*/
  .pg_aboutus .section.sec4 .home_sec3_items{
    margin-top: 80px;
  }
}
@media (min-width:1470px){


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


}




/*******************************
*　企業の方
********************************/

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

}
.pg_business .section.sec1{
  position: relative;
}
.pg_business .section.sec2{
  position: relative;
}
.pg_business .section.sec3{
  position: relative;
}
.pg_business .section.sec4{

}
.pg_business .section.sec5{

}
.pg_xxx .section.sec6{

}

.b-circle1{
  width: 69.79%;
  aspect-ratio: 1340 / 2159;
  background-image: url(https://yawaragi-kaikei.com/system_panel/uploads/images/b-circle.png);
  top: 12%;
  left: calc(50% - 50%);
}
.pg_business .section.sec2 .a-circle2{
  top: 57%;
  left: auto;
  right: calc(50% - 96%);
}
@media (max-width:374px){

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

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

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

  }
  .pg_business .section.sec1{

  }
  .pg_business .section.sec2{

  }
  .pg_business .section.sec3{
    padding-top: 79px;
  }
  .pg_business .section.sec4{

  }
  .pg_business .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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

  }
  .pg_business .section.sec1{

  }
  .pg_business .section.sec2{

  }
  .pg_business .section.sec3{

  }
  .pg_business .section.sec4{

  }
  .pg_business .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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


}

/* メイン部分 */
/*sec1*/
.aboutus_sec1_wrap.business{

}
.aboutus_sec1_wrap.business .aboutus_sec1_box1{

}
.aboutus_sec1_wrap.business .aboutus_sec1_box2{

}
.aboutus_sec1_wrap.business .aboutus_sec1_box2_left{

}
.aboutus_sec1_wrap.business .aboutus_sec1_box2_right{

}

/*sec2*/
.tt2.cover{

}
.tt2_en.big{
  font-size: clamp(3.125rem, 1.438rem + 8.44vw, 11.563rem);
  font-weight: 300;
  font-family: "Outfit", sans-serif;
  line-height: 1;
  letter-spacing: 0;
  color: #f5d9cc;

}
.tt2_en.bk{
  color: #221e1d;
}
.tt2.cover .tt2_ja{
  margin-top: -1.4em;
}

.business_sec2_wrap{
  position: relative;
  z-index: 1;
}
.home_sec2_item_tt.nobg{
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  border-bottom: 1px solid #856653;
  padding-bottom: 10px;
}
.home_sec2_item_tt.nobg:after{
  display: none;
  position: relative!important;
}
.home_sec2_item_tt.nobg .home_sec2_item_tt_inner{
  background: none; 
}
.home_sec2_item_tt.nobg .home_sec2_item_tt_ja{
  white-space: nowrap;
  background: none;
}

.home_sec2_items.muti .home_sec2_item_img:before{
  padding-top: 95.83%;
}
@media (max-width:767px){

}
@media (min-width:768px){
  /*sec1*/
  .aboutus_sec1_wrap.business{

  }
  .aboutus_sec1_wrap.business .aboutus_sec1_box1{

  }
  .aboutus_sec1_wrap.business .aboutus_sec1_box2{

  }
  .aboutus_sec1_wrap.business .aboutus_sec1_box2_left{

  }
  .aboutus_sec1_wrap.business .aboutus_sec1_box2_right{

  }

  /*sec2*/
  .home_sec2_item_tt.nobg{
    padding-bottom: 30px;
  }
}
@media (min-width:1024px){
  /*sec1*/
  .aboutus_sec1_wrap.business{

  }
  .aboutus_sec1_wrap.business .aboutus_sec1_box1{

  }
  .aboutus_sec1_wrap.business .aboutus_sec1_box2{

  }
  .aboutus_sec1_wrap.business .aboutus_sec1_box2_left{
    order: 2;
  }
  .aboutus_sec1_wrap.business .aboutus_sec1_box2_right{
    order: 1;
  }

}
@media (min-width:1200px){
  /*sec1*/
  .aboutus_sec1_wrap.business{

  }
  .aboutus_sec1_wrap.business .aboutus_sec1_box1{
    order: 2;
  }
  .aboutus_sec1_wrap.business .aboutus_sec1_box2{
    order: 1;
  }
  .aboutus_sec1_wrap.business .aboutus_sec1_box2_left{

  }
  .aboutus_sec1_wrap.business .aboutus_sec1_box2_right{

  }
  .aboutus_sec1_wrap.business .home_sec1_box2_en{
    margin-right: 0;
    margin-left: -0.4em;
  }

  .home_sec2_items.muti{
    gap: 85px 40px;
  }
  .home_sec2_items.muti .home_sec2_item:nth-child(even){
    margin-top: 0;
  }
  .home_sec2_items.muti .home_sec2_item:nth-child(3n - 1){
    margin-top: 59px;
  }

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


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


}



/*******************************
*　詳細
********************************/

@media (max-width:374px){

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

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

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

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


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

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


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


}

/* メイン部分 */


.detail_box{

}
.detail_box .webgene-item{

}
.detail_box .webgene-item a{ 

}
.detail_box .webgene-item .title{
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
  padding-bottom: 10px;
  border-bottom: 1px solid #181818;
}
.detail_box .webgene-item .post_content{
  padding-top: 30px;
}
.detail_box .webgene-item .post_content .thumb{
  margin-bottom: 30px;
}
.detail_box .webgene-item .post_content .thumb,
.detail_box .webgene-item .post_content .thumb img{
  width: 100%;
  border-radius: 20px;
}
.detail_box .webgene-item .post_content h2{
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0;
  background: #f19568;
  color: #fff;
  padding: 2px 29px;
  margin-bottom: 20px;
}
.detail_box .webgene-item .post_content .txt{
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 2.25em;
}
.detail_box .webgene-item .txt h2:not(:first-of-type){
  margin-top: 30px;
}


.visual_box{

}
.visual_box .items{
  display: flex;
  flex-wrap: wrap;
  gap:20px 0;
}
.visual_box .item{
  width: 100%;
}
@media (max-width:767px){

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

  }
  .detail_box .webgene-item{

  }
  .detail_box .webgene-item a{ 

  }
  .detail_box .webgene-item .title{
    font-size: 22px;
    padding-bottom: 14px;
  }
  .detail_box .webgene-item .post_content .thumb{
    margin-bottom: 80px;
  }
  .detail_box .webgene-item .post_content{
    padding-top: 60px;
  }
  .detail_box .webgene-item .post_content .img{

  }
  .detail_box .webgene-item .post_content h2{
    font-size: 22px;
    margin-bottom: 36px;
  }
  .detail_box .webgene-item .txt h2:not(:first-of-type){
    margin-top: 72px;
  }

  .visual_box{
    margin-top: 32px;
  }
  .visual_box .items{
    display: flex;
    flex-wrap: wrap;
    gap:20px 30px;
  }
  .visual_box .item{
    text-align: center;
    width: calc(50% - 15px);
  }
}
@media (min-width:1024px){


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

  }
  .detail_box .webgene-item{

  }
  .detail_box .webgene-item a{ 

  }
  .detail_box .webgene-item .title{
    font-size: 30px;
  }
  .detail_box .webgene-item .post_content{

  }
  .detail_box .webgene-item .post_content .img{

  }
  .detail_box .webgene-item .post_content h2{
    font-size: 30px;
  }



  .visual_box{

  }
  .visual_box .items{
    display: flex;
    flex-wrap: wrap;
    gap: 81px 30px;
  }
  .visual_box .item{
    width: calc(33.333% - 20px);
  }
}
@media (min-width:1470px){


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


}



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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}
.pg_xxx .section.sec6{

}


@media (max-width:374px){

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

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

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

  .pg_xxx{

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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

  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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


}

/* メイン部分 */

@media (max-width:767px){

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

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


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


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


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


}



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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}
.pg_xxx .section.sec6{

}


@media (max-width:374px){

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

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

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

  .pg_xxx{

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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

  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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


}

/* メイン部分 */

@media (max-width:767px){

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

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


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


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


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


}



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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}
.pg_xxx .section.sec6{

}


@media (max-width:374px){

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

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

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

  .pg_xxx{

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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

  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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


}

/* メイン部分 */

@media (max-width:767px){

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

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


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


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


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


}



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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}
.pg_xxx .section.sec6{

}


@media (max-width:374px){

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

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

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

  .pg_xxx{

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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

  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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


}

/* メイン部分 */

@media (max-width:767px){

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

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


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


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


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


}


/*******************************
*　会社概要
********************************/

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

}
.pg_company .section.sec1{

}
.pg_company .section.sec2{

}


@media (max-width:374px){

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

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

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

  .pg_company{

  }
  .pg_company .section.sec1{

  }
  .pg_company .section.sec2{

  }

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


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


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


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


}


/* メイン部分 */


/* 会社概要 */
.company_tbl{

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

/* マップ */
.company_map{

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

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

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

@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{
    padding: 17px 30px 18px;
  }
  .company_tbl .table_rows_th{
    width: 300px;
  }
  .company_tbl .table_rows_td{
  }

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

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


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


}



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

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

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

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

@media (max-width:767px){

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

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

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

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

  }

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

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

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

  }

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

}


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

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

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

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

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


.news_list_thumb.col3{

}
.news_list_thumb.col4{

}


@media (max-width:767px){

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

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

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

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

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

  }

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

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


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

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

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

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

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

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

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



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


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


}


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

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

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

/* リスト */
.posts_list{

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

}


/* サイド */
.posts_side_wrap{

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

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

.pg_column .tt_en{
  margin-bottom: 40px;
}

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

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

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

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

.posts_back_list{

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

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


/* 動画 */
.post_video{

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

.news_list.kasou{

}
.news_list.kasou .webgene-blog{

}
.news_list.kasou .webgene-item{

}
.news_list.kasou .webgene-item a{

}


.news_detail{
  border-bottom: 1px solid #181818;
  padding-bottom: 30px;
}
.news_detail .webgene-blog{

}
.news_detail .webgene-item{

}
.news_detail .webgene-item .meta{
  display: flex;
  align-items: center;
}
.news_detail .webgene-item .date{
  font-size: 16px;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0;
  line-height: 1;
  margin-right: 21px;
}
.news_detail .webgene-item .category{
  display: inline-block;
  text-align: center;
  background: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  border: 1px solid #181818;
  border-radius: 12px;
  padding: 2px 10px;
  margin-right: 16px;
}
.news_detail .webgene-item .title{
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0;
  border-bottom: 1px solid #181818;
  padding-bottom: 10px;
  margin-top: 10px;
}
.news_detail .webgene-item .post_content{
  padding-top: 30px;
}
.news_detail .webgene-item .post_content h2,
.news_detail .webgene-item .post_content h3{
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.075em;
  background: #f19568;
  color: #fff;
  padding: 10px 6px;
  margin-bottom: 20px;
}
.news_detail .webgene-item .post_content img{

}
.news_detail .webgene-item .post_content .txt{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.875em;
}
.news_detail .webgene-item .txt h3:not(:first-of-type){
  margin-top: 20px;
}
.news_detail .webgene-item .post_content img{
  margin-bottom: 30px;
}


.kasou.news2_list .webgene-item:nth-last-child(2) {
  border-bottom: 1px solid #d6b27f;
}
/* コピー用 */
@media (max-width:374px){

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

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

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

  .posts_category_sp{
    display: none;
  }

  /* リスト */
  .posts_list{

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

  }

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

  .pg_column .tt_en{
    margin-bottom: 69px;
  }


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

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

  .news_list.kasou{

  }
  .news_list.kasou .webgene-blog{

  }
  .news_list.kasou .webgene-item{

  }
  .news_list.kasou .webgene-item a{

  }

  .news_detail{
    padding-bottom: 57px;
  }
  .news_detail .webgene-blog{

  }
  .news_detail .webgene-item{

  }
  .news_detail .webgene-item .date{
    margin-right: 50px;
  }
  .news_detail .webgene-item .category{

  }
  .news_detail .webgene-item .title{
    font-size: 20px;
    margin-top: 16px;
  }
  .news_detail .webgene-item .post_content{
    padding-top: 40px;
  }
  .news_detail .webgene-item .post_content h2,
  .news_detail .webgene-item .post_content h3{
    font-size: 20px;
  }
  .news_detail .webgene-item .post_content img{

  }
  .news_detail .webgene-item .post_content .txt{

  }
  .news_detail .webgene-item .txt h3:not(:first-of-type){
    margin-top: 50px;
  }
  .news_detail .webgene-item .post_content img{
    margin-bottom: 53px;
  }
}
@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{

  }


  .news_detail{

  }
  .news_detail .webgene-blog{

  }
  .news_detail .webgene-item{

  }
  .news_detail .webgene-item .date{

  }
  .news_detail .webgene-item .category{

  }
  .news_detail .webgene-item .title{

  }
  .news_detail .webgene-item .post_content{

  }
  .news_detail .webgene-item .post_content h2,
  .news_detail .webgene-item .post_content h3{

  }
  .news_detail .webgene-item .post_content img{

  }
  .news_detail .webgene-item .post_content .txt{

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

  .pg_news{
    padding-top: 100px;
  }

  .posts_layout_box1{
    width: 75.98%;
  }
  .posts_layout_box2{
    width: 19.73%;
  }

  .news_list.kasou{

  }
  .news_list.kasou .webgene-blog{
    margin-inline:-26px;
  }
  .news_list.kasou .webgene-item{
    width: 33.333%;
    padding-inline:26px;
  }
  .news_list.kasou .webgene-item:nth-child(n+4){
    margin-top: 76px;
  }
  .news_list.kasou .webgene-item a{

  }
}



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

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

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

/* メイン */
.gallery_main{

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

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

}


/* 詳細 */
.gallery_detail{

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

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


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

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

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

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

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

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

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

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

  }

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

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

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


}





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

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


.ftr_contact_form_box_outer{
  background: #f3efec;
}
.ftr_contact_form_box .tt_en_txt{
  /*  background: #f3efec;*/
}
@media (max-width:1023px){

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

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

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


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

/* フォーム */
.formTbl{
  border: 1px solid #b2b2b2;
  background: #ffffff;
}
.form.formWrap {
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}
.formRow + .formRow{
  border-top: 1px solid #b2b2b2;
}
.formTh {
  padding: 17px 15px 17px 20px;
  background: #eae2d9;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.formTh label{
  margin: 0;
}
.d-inline-block.requiredText {
  font-size: 13px;
  padding: 3px 12px;
  margin-top: 3px;
  float: right;
  font-weight: 500;
  letter-spacing: 0.05em;
  background: #b80000;
  color: #ffffff;
}
.formTd {
  font-size: 15px;
  padding: 10px 16px;
}
.formTd input[type="text"],
.formTd input[type="tel"],
.formTd input[type="email"]{
  max-width: 461px;
  height: 39px;
  width: 100%;
  font-size: 15px;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
  letter-spacing: 0.16em;
}
.formTd select{
  border-radius: 0;
}
.formTd input[name="zip1"]{
  max-width: 120px;
}
.formTd input[name="zip2"]{
  max-width: 150px;
}
.formTd select[name="pref"]{
  max-width: 225px;
  width: 100%;
  font-size: 16px;
  padding: 7px 10px;
  border: 1px solid #d6d8d8;
}
.formTd input[name="city"]{
  max-width: 425px;
}
.formTd .addArea + .addArea{
  margin-top: 8px;
}
.formTd .addArea .labelText02{
  width: 75px;
}
.formTd textarea{
  width: 100%;
  height: 280px;
  font-size: 15px;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
  letter-spacing: 0.16em;
}
.formWrap .text-center{
  padding-top: 54px;
}
.formWrap input[name="privacy"]{
  margin-right: 7px;
}
.formWrap .privacyLabel{
  font-size: 17px;
  font-weight: 600;
  display: inline;
}
.formWrap .privacyLabel a{
  color: #e66129;
}
.formBtn.formSend {
  display: block;
  max-width: 350px;
  width: 100%;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  border: 1px solid transparent;
  background: #d6b27f;
  border-radius:26px;
  color: #fff;
  padding: 16px 20px;
  margin: 7px auto 0;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
  cursor: pointer;
}
.formBtn.formSend:after{
  content: "→";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 34px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.formBtn.formSend:hover{
  background: #fff;
  color: #d6b27f;
  border: 1px solid #d6b27f;
}
.formWrap label {
  display: inline-block;
  margin-bottom: 0;
}
.radioArea{
  padding: 0;
}
.radioArea .d-inline-block .label{
  margin-left: 9px;
  letter-spacing: 0;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 2;
}
.radioArea .d-inline-block{
  margin-right: 26px;
}
.radioArea .d-inline-block:last-child{
  margin-right: 0;
}
label.label.zipcode_i {
  padding: 5px;
  background: #cccccc;
  margin: 0;
  display: inline-block;
  border: 1px solid #d6d8d8;
  border-right: 0;
  vertical-align: top;
  line-height: 1.8em;
}

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

.privacy_item_box {
  padding: 28px 43px 30px 27px;
  height: 397px;
  overflow: auto;
  background: #fff;
  border: 1px solid #bfbfbf;
  margin-top: 0;
  color: #000000;
  margin-top: 58px;
}

/* プライバシー */
.contact_tt{
  margin-bottom: 60px;
  padding-left: 10px;
}
.privacy_item {
  margin-top: 27px;
}
.privacy_ttl {
  font-size: 18px;
  font-weight: 500;
  padding: 8px 15px;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
  border-left: 6px solid #f19568;
}
.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 {
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 0.2em;
  margin-bottom: 48px;
}
.contact_tt.privacy br{
  display: none;
}
.formWrap .d-inline{
  display: inline-block!important;
}
.formWrap .d-inline-block {
  vertical-align: middle;
}


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


  .privacy_ttl{
    font-size: 18px;
  }

}

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

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

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

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



  .contact_info_bg {
    padding: 18px 10px;
  }

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

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

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


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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}

.ftr_contact_form{
  padding: 100px 0;
  border-bottom: 10px solid #d6b27f;
}
.ftr_contact_form_box_outer{
  padding: 30px 0;
  margin-top: 40px;
}
@media (max-width:374px){

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

}
@media (max-width:767px){
  .ftr_contact_form_box_outer{
    background: none; 
    position: relative;
  }
  .ftr_contact_form_box_outer:before{
    content: "";
    display: block;
    width: 100vw;
    height: 100%;
    background: #f3efec;
    position: absolute;
    top: 0;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
  .ftr_contact_form_box_outer > .container{
    padding:0;
  }
}
@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{

  }


  .ftr_contact_form{
    padding: 235px 0 223px;
  }
}
@media (min-width:1024px){

  .thanks_text{
    text-align: center;
  }
}
@media (min-width:1200px){
  .ftr_contact_form_box_outer{
    padding: 80px 0;
    margin-top: 68px;
  }

}
