@charset "UTF-8";

:root {
  --main-color: #2b6796;
  --sub-color: #e7161a;
}
#root{
  overflow: hidden;
}

/* 基本フォント: ゴシック */
body{
  font-family: "Noto Sans JP","Shippori Mincho","Zen Old Mincho", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #2c2c2c;

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

  /* 画面端までの余白 */
  --margin-for-device-side: -15px;
}

@media (min-width:768px){
  :root {
    --margin-for-device-side: calc(345px - 50vw);
  }
}
@media (min-width:992px){
  :root {
    --margin-for-device-side: calc(465px - 50vw);
  }
}
@media (min-width:1200px){
  :root {
    --margin-for-device-side: calc(555px - 55vw);
  }
}
/*@media (min-width:1536px){
  :root {
    --margin-for-device-side: calc(668px - 50vw);
  }
}
@media (min-width:1720px){
  :root {
    --margin-for-device-side: calc(760px - 50vw);
  }
}*/


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

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

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

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

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

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

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

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

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

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

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


/* 指定デバイスのみで表示するclass */
@media (min-width: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:1536px){
  .lg_nobr br{
    display: none !important;
  }
}
@media (min-width:1200px){
  .pc_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{

}
.hdr1{
  display: flex;
  /*flex-wrap: wrap;*/
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px;
  background: #a8a385;
}

/* ロゴ */
.hdr_logo{

}
.hdr_logo a{
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  color: #fff;
}
.hdr_logo img{
  width: 150px;
}

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

/* TELボタン */
.hdr_tel{

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

}
.hdr_tel_link p{

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

/* お問い合わせボタン */
.hdr_contact{
  display: flex;
  align-items: center;
  margin-left: 20px;
}
.hdr_contact a{
  background: transparent;
  color: #FFF;
  width: 280px;
  padding: 10px 5px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
  border: 1px solid
}
.hdr_contact a p{
  letter-spacing: 0.1em;
}
.hdr_contact a.email p:before{
  content:"\f0e0";
  font-family: "fontAwesome";
  margin-right: 10px;
}
.hdr_contact a:hover{
  background: #fff;
  color: #000;
}
.hdr_contact a:after{
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 13px;
  width: 51px;
  height: 16px;
  transform: translateY(-50%);
  background: url(/system_panel/uploads/images/20250702140828299515.png)no-repeat center center/contain;
}
.hdr_contact a:hover:after{
  background: url(/system_panel/uploads/images/20250704192809621821.png)no-repeat center center/contain;
  margin-right: -5px;
}

/* 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;
  }
  /* SNSボタン */
  .hdr_sns{
    margin-left: 20px;
  }
  .hdr_sns a img{
    height: 30px;
  }

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

  /* ヘッダー固定 */
  body{
    /* ヘッダーの高さに応じて */
    padding-top: 0px;
  }
  .header{
    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    right: 0;
    transition: all .2s;
  }

  .hdr1{
    padding: 15px;
    background: transparent;
  }

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

  /* ヘッダースリム */
  .header.slim{
    background: #a8a385;
    padding: 10px 0;
  }
  .header.slim .hdr1{
    padding: 5px 15px;
    align-items: center;
  }
  .header.slim .hdr_logo{
    margin-top: 0;
  }

  /* TELボタン */
  .hdr_tel{

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

  .hdr_contact{
    margin-left: 190px;
  }
  .hdr_contact a{
    width: 220px;
  }
  .hdr_contact a:after{
    width: 40px;
  }
}
@media (min-width:1024px){

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

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

  }

  /* TELボタン */
  .hdr_tel{

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

  .hdr_contact{
    margin-left: 20px;
  }
  .hdr_contact a{
    width: 280px;
  }
  .hdr_contact a:after{
    width: 51px;
  }
}
@media (min-width:1200px){
  .header .hdr1{
    padding: 30px 35px 0 28px;
  }

  .hdr_menu.top{
    position: absolute;
    z-index: 1;
    top: 818px;
    right: 0;
  }

  /* ロゴ */
  .hdr_logo{

  }
  .hdr_logo img{
    width: auto;
  }
  .hdr_logo a{
    font-size: 27px;
  }

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

  }
  .header.slim .hdr_menu.top{
    position: relative;
    z-index: 1;
    top: 0;
    padding-left: 80px;
  }
}
@media (min-width:1440px){

  .hdr_menu.top{
    position: absolute;
    z-index: 1;
    top: 818px;
    right: 0;

  }

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


}


/*******************************
*　メインビジュアル
********************************/
/* MV */
.mv{
  overflow: hidden;
  margin-bottom: 50px;
}
.mv,
.mv > *{
  position: relative;
  z-index: 1;
}
.mv:after{
  content: "";
  pointer-events: none;
  position: absolute;
  z-index: 1;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.302);
}
.mv_imgs_wrap{
  display: flex;
  flex-wrap: wrap;
  height: calc(100vh - 330px);
}
.mv_imgs{
  width: 100%;
  height: 30vh;
}
.mv_img{
  position: relative;
  z-index: 1;
}
.mv_imgs_item.img_fit:before{
  padding-top: 250px;
}

/* MVテキスト */
.mv_txt{
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  color: #FFF;
}
.mv_txt_p1{
  font-size: 20px;
  text-shadow: 0px 4px 9.3px rgba(24, 24, 24, 0.2);
}
.mv_txt_p2{
  margin-top: 15px;
  font-size: 16px;
  text-shadow: 0px 4px 9.3px rgba(24, 24, 24, 0.2);
}

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

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

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

  /* MV */
  .mv{
    margin-bottom: 100px;
  }
  .mv_imgs_wrap{
    height: auto;
  }
  .mv_imgs{
    width: 100%;
    height: 50vh;
  }
  .mv_img{
  }
  .mv_imgs_item.img_fit:before{
    padding-top: 50vh;
  }

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

  }
  .mv_txt_p1{
    font-size: 35px;
  }
  .mv_txt_p2{
    margin-top: 15px;
    font-size: 20px;
  }

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

  /* MV */
  .mv{
    margin-bottom: 145px;
  }
  .mv_imgs{
    width: 50%;
    height: 100vh;
  }
  .mv_img{
  }
  .mv_imgs_item.img_fit:before{
    padding-top: 100vh;
  }

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

  }
  .mv_txt_p1{
    font-size: 50px;
  }
  .mv_txt_p2{
    margin-top: 15px;
    font-size: 28px;
  }

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

  /* MV */
  .mv{
    margin-bottom: 145px;
  }
  .mv_imgs{
    width: 50%;
    height: 900px;
  }
  .mv_img{
  }
  .mv_imgs_item.img_fit:before{
    padding-top: 900px;
  }

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

  }
  .mv_txt_p1{
    font-size: 50px;
  }
  .mv_txt_p2{
    font-size: 28px;
  }

}


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

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

}
.pg_header_mv_img.img_fit:before{
  padding-top: 150px;
}
.pg_header_mv_img.img_fit:after{
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background-color: rgba(44, 44, 44, 0.302);
  pointer-events: none;
}
.pg_header_txt{
  position: absolute;
  z-index: 1;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}
.pg_header_txt_h1{
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 30px;
  letter-spacing: 0.01em;
  line-height: 1.5;
  text-align: center;
  text-shadow: 0px 4px 9.3px rgba(24, 24, 24, 0.4);
  color: #fff;
}


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

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

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

  }
  .pg_header_txt_h1{
    font-size: 50px;
    letter-spacing: 0.095em;
  }

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


}



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

.footer{
  margin-top: 100px;
  background: #f5f4f0;
}

/*お問い合わせ*/
.ftr1{
  border-top: 1px solid #a8a385;
  border-bottom: 1px solid #a8a385;
  padding: 56px 0;
}
.ftr1>.container{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ftr1_box1,
.ftr1_box2,
.ftr1_box3{
  width: 100%;
}
.ftr1_box1{

}
.ftr1_box2{

}
.ftr1_box3{

}
.ftr1 .sec_title{
  justify-content: center;
}
.ftr1_title{
  margin-top: 15px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 1.575;
  text-align: center;
}
.ftr1 .sec_text{
  margin-top: 15px;
  font-family: "Shippori Mincho", serif;
}
.ftr1_contact{
  margin-top: 15px;
}
.ftr1_contact a{
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 16px;
  display: block;
  color: #950042;
  background: transparent;
  border: 1px solid #950042;
  width: 100%;
  padding: 13px 5px;
  text-align: center;
  position: relative;
  z-index: 1;
  margin-inline:auto;
}
.ftr1_contact a:hover{
  color: #fff;
  background: #950042;
}
.ftr1_contact a p{
  letter-spacing: 0.1em;
}
.ftr1_contact a:after{
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 13px;
  width: 51px;
  height: 16px;
  transform: translateY(-50%);
  background: url(/system_panel/uploads/images/20250704103904701359.png) no-repeat center center / contain;
}
.ftr1_contact a:hover:after{

  background: url(/system_panel/uploads/images/20250702140828299515.png) no-repeat center center / contain;
}

/*株式会社For.Y*/
.ftr2{
  padding-bottom: 25px;
}
.ftr_logo{
  margin-top: 30px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 25px;
  line-height: 1.5;
  text-align: center;
}
.ftr_addr{
  margin-top: 18px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
}
.ftr_name_content{
  margin-top: 16px;
}
.ftr_name{
  width: 220px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.ftr_name:nth-child(n+2){
  margin-top: 15.5px;
}
.ftr_name1,
.ftr_name2{
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 16px;
}
.ftr_name1{
  width: 95px;
  border-right: 1px solid;
  line-height: 1;
}
.ftr_name2{
  padding-left: 15px;
  line-height: 1.5;
}
.ftr_links{
  margin-top: 77px;
  padding: 12px 0 13px;
  display: none;
  justify-content: center;
  align-items: center;
  background: #fff;
}
.ftr_link{

}
.ftr_link:nth-child(n+2){
  margin-left: 49px;
}
.ftr_link a{
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}
.ftr_link a:hover{
  color: #950042;
}
.ftr_copy{
  margin-top: 32px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
}

/* 追尾スマホメニュー */
.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: #a8a385;
  text-decoration: none;
  line-height: 1.2;
  color: #fff;
}
.footer_fix .footer_fix_item_1{
  width: 38%;
  border-right: 1px solid #fff;
}
.footer_fix .footer_fix_item_1.recruit{
  background: #eeeeee;
  color: #024b93;
}
.footer_fix .footer_fix_item_2{
  width: 24%;
  background: #a8a385;
}
.footer_fix > a i{
  font-size: 20px;
  margin-bottom: 8px;
}
.footer_fix .footer_fix_item_1.remorte i{
  margin-bottom: 0;
}

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



@media (min-width:375px){

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

  body{
    padding-bottom: 56px;
  }

  .mv_imgs_wrap{
    height:auto

  }
  .mv_imgs{
    height: auto; 
  }
  .mv_imgs_item.img_fit:before{
    padding-top: 300px;
  }

  .footer_fix{
    display: flex;
  }

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

  /*お問い合わせ*/
  .ftr1{
    padding: 50px 0;
  }
  .ftr1_box1{

  }
  .ftr1_box2{

  }
  .ftr1_box3{

  }
  .ftr1_contact{

  }
  .ftr1_contact p:before{

  }
  .ftr1_box1{

  }
  .ftr1_box2{

  }
  .ftr1_box3{

  }
  .ftr1 .sec_title{

  }
  .ftr1_title{
    font-size: 35px;
  }
  .ftr1 .sec_text{
  }
  .ftr1_contact{
  }
  .ftr1_contact a{
    width: 285px;
  }

  /*株式会社For.Y*/
  .ftr2{

  }
  .ftr_logo{
    margin-top: 87px;
    font-size: 35px;
  }
  .ftr_addr{
    margin-top: 18px;
  }
  .ftr_name_content{
    margin-top: 16px;
  }
  .ftr_name{

  }
  .ftr_name:nth-child(n+2){
    margin-top: 15.5px;
  }
  .ftr_name1,
  .ftr_name2{

  }
  .ftr_name1{

  }
  .ftr_name2{
    padding-left: 15px;
  }
  .ftr_links{
    display: flex;
    margin-top: 77px;
    padding: 12px 0 13px;
  }
  .ftr_link{

  }
  .ftr_link:nth-child(n+2){
    margin-left: 10px;
  }
  .ftr_link a{
    font-size: 13px;
  }
  .ftr_copy{
    margin-top: 32px;
  }
}
@media (min-width:1024px){
  .footer{
    margin-top: 195px;
  }

  /*お問い合わせ*/
  .ftr1{
    padding: 75px 0 68px;
  }
  .ftr1_box1{
    width: 30%;;
  }
  .ftr1_box2{
    width: 30%;
    margin-top: 7px;
    padding-left: 20px;
  }
  .ftr1_box3{
    width: 30%;
    margin-top: 16px;
  }
  .ftr1 .sec_title{
    justify-content: flex-start;
  }
  .ftr1_title{
    text-align: left;
    margin-top: 2px;
    margin-left: -3px;
    font-size: 40px;
  }
  .ftr1 .sec_text{

  }
  .ftr1_contact{

  }
  .ftr1_contact a{
    width: 285px;
    padding: 11px 5px 13px;
    margin-left: 0;
    margin-right: 0;
  }

  /*株式会社For.Y*/
  .ftr2{

  }
  .ftr_logo{
    margin-top: 87px;
    font-size: 35px;
  }
  .ftr_addr{
    margin-top: 18px;
  }
  .ftr_name_content{
    margin-top: 16px;
  }
  .ftr_name{

  }
  .ftr_name:nth-child(n+2){
    margin-top: 15.5px;
  }
  .ftr_name1,
  .ftr_name2{

  }
  .ftr_name1{

  }
  .ftr_name2{
    padding-left: 15px;
  }
  .ftr_links{
    margin-top: 77px;
    padding: 12px 0 13px;
  }
  .ftr_link{

  }
  .ftr_link:nth-child(n+2){
    margin-left: 30px;
  }
  .ftr_link a{
    font-size: 16px;
  }
  .ftr_copy{
    margin-top: 32px;
  }
}
@media (min-width:1200px){

  /*お問い合わせ*/
  .ftr1>.container{
    flex-wrap: nowrap;
  }
  .ftr1_box1,
  .ftr1_box2,
  .ftr1_box3{
    width: auto;
  }
  .ftr1_box2{
    margin-top: -9px;
    padding-left: 18px;
  }
  .ftr1_box3{
    margin-top: 0px;
  }

  /*株式会社For.Y*/
  .ftr_link:nth-child(n+2){
    margin-left: 49px;
  }
}


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


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

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

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


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

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

/* ボタン */
.read_more.center{
  justify-content: center;
  padding: 0 15px;
}
.read_more{
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
  margin-left: -5px;
  margin-right: -5px;
}
.read_more a{
  width: 100%;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.2;
  text-align: center;
  border: 1px solid #a8a385;
  background: transparent;
  /*border-radius: 27px;*/
  color: #FFF;
  padding: 16px 20px;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.read_more a:before{
  content: "";
  position: absolute;
  z-index: 1;
  inset: 3px 4px;
  background: #a8a385;
  pointer-events: none;
  transition: all .2s;
}
.read_more a p{
  position: relative;
  z-index: 1;
  /*letter-spacing: 0;*/
}
.read_more a:after{
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 15px;
  width: 51px;
  height: 16px;
  transform: translateY(-50%);
  transition: 0.2s all;
  background: url(/system_panel/uploads/images/20250702140828299515.png) no-repeat center center / contain;
}
.read_more a:hover:after{
  margin-right: -5px;
}
.read_more a:hover{
  color: #a8a385;;
}
.read_more a:hover:before{
  background: none;
}
.read_more a:hover:after{
  background-image: url(/system_panel/uploads/images/arr_gld.png);
  margin-right: -5px;
}


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


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

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

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

}

/*各タイトル*/
.sec_title{
  display: flex;
  align-items: center;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
}
.sec_title_en{
  color: #950042;
  padding-right: 17px;
  position: relative;
  z-index: 1;
}
.sec_title_en:after{
  content: "／";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.sec_title_ja{
  padding-left: 5px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
}
.sec_text{
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  text-align: justify;
}


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

  .sec_text{
    line-height: 2.125em;
  }
}
@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{
    width: 351px;
    font-size: 12px;
    padding: 16px 20px;
    margin: 5px 5px;
  }
  .read_more a:after{
    top: 50%;
    right: 14px;
    width: calc(51px * 0.5);
  }

  .read_more a:hover:after{
    margin-right: -5px;
  }

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

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

  /*各タイトル*/
  .sec_title{
    flex-wrap: wrap;
    font-size: 16px;
  }
  .sec_title_en{

  }
  .sec_title_en:after{

  }
  .sec_title_ja{
    font-size: 16px;
  }
  .sec_text{
    line-height: 2.125;
  }


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

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

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

  /*各タイトル*/
  .sec_title{
    flex-wrap: nowrap;
  }
  .sec_title_en{

  }
  .sec_title_en:after{

  }
  .sec_title_ja{

  }

  /* ボタン */
  .read_more a{
    font-size: 15px;
  }
  .read_more a:after{
    width: 51px;
  }

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

  /*各タイトル*/
  .sec_title{

  }
  .sec_title_en{

  }
  .sec_title_en:after{

  }
  .sec_title_ja{

  }


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

  /* コンテナ */
  .container.wide{
    max-width: 1720px;
    padding-left: 100px;
    padding-right: 100px;
  }

}



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

}
.pg_home .section{
  padding: 0;
}
.pg_home .section.sec1{
  padding: 0;
}
.pg_home .section.sec2{
  margin-top: 100px;
  padding: 0;
}
.pg_home .section.sec3{
  padding: 0;
  background: #f5f4f0;
  padding-top: 50px;
}
.pg_home .section.sec4{
  background: #f5f4f0;
  padding: 0;
  padding-top: 50px;
  padding-bottom: 50px;
}
.pg_home .section.sec5{
  padding: 0;
  background: #f5f4f0;
  border-top: 1px solid #a09e91;
  padding-top: 50px;
  overflow: hidden;
}
.pg_home .section.sec6{
  padding: 0;
  background: #f5f4f0;
  padding-top: 50px;
}
.pg_home .section.sec7{
  padding: 0;
  background: #f5f4f0;
  padding-top: 50px;
  padding-bottom: 50px;
}
.pg_home .section.sec8{
  background: #f5f4f0;
  border-top: 1px solid #a09e91;
  padding: 0;
  padding-top: 50px;
  padding-bottom: 50px;
}
.pg_home .section.sec9{
  padding: 0;
  padding-top: 50px;
}

/*「住む」と「診る」を支える、想いに応える空間づくり*/
.home_about_warp{

}
.home_about{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_about_box1,
.home_about_box2{
  width: 100%;
}
.home_about_box1{

}
.home_about_box2{

}
.home_about .sec_title{
  margin-top: 30px;
}
.home_about_title{
  margin-top: 15px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.26;
}
.home_about_sub_title{
  margin-top: 12px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.521;
}
.home_about .sec_text{
  margin-top: 15px;
}
.home_about_img_content{
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_about_img1{
  position: relative;
  z-index: 1;
  width: calc(775px * 0.3);
}
.home_about_img1_inner{

}
.home_about_img1_up.img_fit{

}
.home_about_img1_up.img_fit:before{
  padding-top: 68.9%;
}
.home_about_img1_down_outer{
  position: absolute;
  z-index: 1;
  right: -40%;
  bottom: -20%;
  width: 49.32%;
}
.home_about_img1_down.img_fit{

}
.home_about_img1_down.img_fit:before{
  padding-top: 65.78%;
}
.home_about_img2{
  margin-top: 70px;
  width: 100%;
}
.home_about_img2_inner{
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
}
.home_about_img2_text{
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 9px;
  line-height: 1.5;
  color: #a8a385;
  position: absolute;
  z-index: 1;
  top: 20%;
  left: 0%;
  width: 95%;
}
.home_about_img2_text p{
  letter-spacing: 0;
}
.home_about_img2_img.img_fit{
  width: calc(395px * 0.4);
}
.home_about_img2_img.img_fit:before{
  padding-top: 126.58%;
}

/*誰のためにを考え抜く空間づくり*/
.home_contact_warp{

}
.home_contact{
  position: relative;
  z-index: 1;
}
.home_contact_img.img_fit{

}
.home_contact_img.img_fit:before{
  padding-top: 500px;
}
.home_contact_img.img_fit:after{
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
}
.home_contact_txt{
  margin-top: 50px;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  color: #fff;
  text-shadow: 0px 4px 9.3px rgba(24, 24, 24, 0.4);
  width: 90%;
}
.home_contact .sec_title{
  justify-content: center;
  text-shadow: 0px 4px 9.3px rgba(24, 24, 24, 0.4);
}
.home_contact .sec_title_en,
.home_contact .sec_title_ja{
  color: #fff;
}
.home_contact_title{
  margin-top: 10px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 1.3;
  text-align: center;
  text-shadow: 0px 4px 9.3px rgba(24, 24, 24, 1);
}
.home_contact .sec_text{
  margin-top: 20px;
  text-shadow: 0px 4px 9.3px rgba(24, 24, 24, 1);
}

/*事業内容*/
.home_service_wrap{

}
.home_service_main{

}
.home_service_main .sec_title{
  justify-content: center;
}
.home_service_main_title{
  margin-top: 2px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.575;
  text-align: center;
}
.home_service{
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_service_box1{
  order: 1;
  position: relative;
  z-index: 1;
  width: 100%;
}
.home_service_box2{
  order: 2;
}
.home_service_img1_outer{
  position: relative;
  z-index: 1;
  padding: 0 10px 10px 0;
  background-color: rgb(245, 244, 240);
  border-right: 1px solid #bab7a4;
  border-bottom: 1px solid #bab7a4;
  width: 80%;
}
.home_service_img1.img_fit{
  margin-left: calc(145px - 55vw);
}
.home_service_img1.img_fit:before{
  padding-top: 57.43%;
}
.home_service_img2_outer{
  position: absolute;
  z-index: 1;
  width: 39.6%;
  top: -30.5%;
  right: 0%;
}
.home_service_img2.img_fit{
  z-index: 2;
  border: 5px solid #f5f4f0;
}
.home_service_img2.img_fit:before{
  padding-top: 135.44%;
}
.home_service .sec_title_outer{
  display: inline-block;
}
.home_service .sec_title{
  margin-top: 50px;
  background: #950042;
  padding: 2px 15px 3px;
  justify-content: center;
}
.home_service .sec_title_en,
.home_service .sec_title_ja{
  color: #fff;
}
.home_service_title{
  margin-top: 20px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 1.26;
}
.home_service .sec_text{
  margin-top: 15px;
}
.home_service .read_more{

}
.home_works_list{

}
.home_works_list .webgene-blog{
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start !important;
  margin: 0 -5px;
}
.home_works_list .webgene-item{
  width: 200px;
  padding: 0 5px;
}
.home_works_list .webgene-item .img_fit{
  overflow: hidden;
}
.home_works_list .webgene-item .img_fit:before{
  padding-top: 81%;
}

/*居心地と機能を両立した医院づくり*/
.clinic.home_service .home_service_box1{

}
.clinic.home_service .home_service_img1_outer{
  position: relative;
  z-index: 1;
  border-left: 1px solid #bab7a4;
  border-right: none;
  padding: 0 0 10px 10px;
  margin-left: auto;
}
.clinic.home_service .home_service_img1.img_fit{
  margin-left: 0;
  margin-right: calc(145px - 55vw);
}
.clinic.home_service .home_service_img2.img_fit:before{
  padding-top: 136.44%;
}
.clinic.home_service .home_service_img1.img_fit img{
  overflow: hidden;
}
.clinic.home_service .home_service_img2_outer{
  left: 0;
}

/*店舗・オフィスの内装工事にも対応ブランドの世界観を、空間で魅せます*/
.home_shop_wrap{

}
.home_shop{
  position: relative;
  z-index: 1;
  border: 1px solid #a8a385;
}
.home_shop_img.img_fit{
  border: 5px solid #fff;
}
.home_shop_img.img_fit:before{
  padding-top: 400px;
}
.home_shop_img.img_fit:after{
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background-color: rgba(44, 44, 44, 0.4);
}
.home_shop_txt{
  margin-top: 50px;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  color: #fff;
  text-shadow: 0px 4px 9.3px rgba(24, 24, 24, 0.4);
  width: 90%;
}
.home_shop_title{
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.26;
  letter-spacing: 0;
  border-bottom: 1px solid;
  padding-bottom: 15px;
  display: inline-block;
}
.home_shop .sec_text{
  margin-top: 20px;
  font-size: 15px;
  line-height: 1.944;
  text-shadow: 0px 4px 9.3px rgba(24, 24, 24, 0.4);
}

/*お知らせ*/
.home_news_wrap{

}
.home_news{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.home_news_box1{
  display: contents;
}
.home_news_box1 > *{
  width: 100%;
}
.home_news_box2{
  margin-top: 30px;
  order: 3;
}
.home_news .sec_title{
  order: 1;
}
.home_news_title{
  margin-top: 15px;
  order: 2;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.26;
}
.home_news .read_more{
  order: 5;
}
.home_news_list{

}
.home_news_list .webgene-blog{

}
.home_news_list .webgene-item{
  padding: 15px 0;
  border-bottom: 1px solid #e9e7d9;
}
.home_news_list .webgene-item a{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.home_news_list .webgene-item:first-child{
  border-top: 1px solid #e9e7d9;
}
.home_news_list .webgene-item .date,
.home_news_list .webgene-item .category,
.home_news_list .webgene-item .title{
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  letter-spacing: 0.075em;
}
.home_news_list .webgene-item .date{
  font-size: 14px;
}
.home_news_list .webgene-item .category{
  font-size: 14px;
  border: 1px solid #950042;
  text-align: center;
  color: #950042;
  width: 125px;
  margin: 0 10px;
}
.home_news_list .webgene-item .title{
  margin-top: 15px;
  font-size: 16px;
}
.home_news .read_more a:after{
  clip-path: inset(0 0 0 15px);
}


@media (max-width:374px){

}
@media (min-width:375px){
  .home_service_img1.img_fit{
    margin-left: calc(172px - 50vw);
  }
  .clinic.home_service .home_service_img1.img_fit{
    margin-left: 0;
    margin-right: calc(172px - 50vw);
  }


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

  .home_service_title{
    font-size: 22px;
    letter-spacing: 0;
  }

  .home_contact_img.img_fit:before{
    padding-top: 650px;
  }
}
@media (min-width:768px){

  .pg_home .section.sec1{

  }
  .pg_home .section.sec2{
    margin-top: 150px;
  }
  .pg_home .section.sec3{
    padding-top: 100px;
  }
  .pg_home .section.sec4{
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .pg_home .section.sec5{
    padding-top: 50px;
    padding-top: 50px;
  }
  .pg_home .section.sec6{
    padding-top: 50px;
  }
  .pg_home .section.sec7{
    padding-top: 100px;
    padding-bottom: 50px;
  }
  .pg_home .section.sec8{
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .pg_home .section.sec9{
    padding-top: 50px;
  }

  /*「住む」と「診る」を支える、想いに応える空間づくり*/
  .home_about_warp{

  }
  .home_about{

  }
  .home_about_box1{
    width: 100%;
  }
  .home_about_box2{
    width: 100%;
  }
  .home_about .sec_title{
    margin-top: 0;
  }
  .home_about .home_about_title,
  .residentialInterior_main_box1_title{
    font-size: 28px;
  }
  .home_about_title{
    font-size: 22px;
  }
  .home_about_sub_title{
    margin-top: 12px;
    font-size: 18px;
  }
  .home_about .sec_text{
    margin-top: 35px;
  }
  .home_about_img_content{

  }
  .home_about_img1{
    width: 50.98%;
  }
  .home_about_img1_inner{

  }
  .home_about_img1_up.img_fit{

  }
  .home_about_img1_down_outer{

  }
  .home_about_img1_down.img_fit{

  }
  .home_about_img2{
    margin-top: 0;
    width: 25.98%;
  }
  .home_about_img2_inner{

  }
  .home_about_img2_text{
    font-size: 12px;
    line-height: 2.058;
    width: 270%;
    top: 10%;
    left: -170%;
  }
  .home_about_img2_img.img_fit{
    width: 100%;
  }

  /*誰のためにを考え抜く空間づくり*/
  .home_contact_warp{

  }
  .home_contact{

  }
  .home_contact_img.img_fit{

  }
  .home_contact_img.img_fit:before{
    padding-top: 450px;
  }
  .home_contact_txt{
    margin-top: 70px;
  }
  .home_contact .sec_title{

  }
  .home_contact_title{
    margin-top: 10px;
    font-size: 30px;
  }
  .home_contact .sec_text{
    margin-top: 15px;
    text-align: center;
  }

  /*事業内容*/
  .home_service_wrap{

  }
  .home_service_main{

  }
  .home_service_main .sec_title{
    margin-top: 68px;
  }
  .home_service_main_title{
    margin-top: 2px;
    font-size: 30px;
  }
  .home_service{
    margin-top: 68px;
  }
  .home_service_box1{
    width: 100%;
  }
  .home_service_box2{
    width: 100%;
    margin-top: 30px;;
  }
  .home_service_img1_outer{
    width: 100%;
  }
  .home_service_img1.img_fit{
    margin-left: calc(345px - 50vw);
  }
  .home_service_img2_outer{
    top: -4.5%;
    right: -20px;
  }
  .home_service_img2.img_fit{

  }
  .home_service .sec_title{
    margin-top: 0;
    padding: 2px 20px 3px;
  }
  .home_service .sec_title_en{

  }
  .home_service_title{
    margin-top: 20px;
    font-size: 28px;
  }
  .home_service .sec_text{
    margin-top: 15px;
  }
  .home_service .read_more{

  }
  .home_works_list{

  }
  .home_works_list .webgene-blog{

  }
  .home_works_list .webgene-item{

  }

  /*居心地と機能を両立した医院づくり*/
  .clinic.home_service .home_service_box1{
    order: 1;
    display: block;
  }
  .clinic.home_service .home_service_box2{
    order: 2;
    margin-top: 30px;
  }
  .clinic.home_service .home_service_img1_outer{
    display: block;
    padding: 0 0 20px 20px;
  }
  .clinic.home_service .home_service_img2_outer{
    left: -20px;
  }
  .clinic.home_service .home_service_img1.img_fit{
    margin-right: calc(345px - 50vw);
  }

  /*店舗・オフィスの内装工事にも対応ブランドの世界観を、空間で魅せます*/
  .home_shop_wrap{

  }
  .home_shop{

  }
  .home_shop_img.img_fit{
    border: 5px solid #fff;
  }
  .home_shop_img.img_fit:before{
    padding-top: 430px;
  }
  .home_shop_txt{

  }
  .home_shop_title{
    font-size: 33px;
    letter-spacing: 0.075em;
    padding-bottom: 23px;
  }
  .home_shop_title p{
    letter-spacing: 0.075em;
  }
  .home_shop .sec_text{
    margin-top: 20px;
    font-size: 18px;
  }

  /*お知らせ*/
  .home_news_wrap{

  }
  .home_news{

  }
  .home_news_box1{
    display: block;
    width: 28%;
  }
  .home_news_box2{
    margin-top: 0;
    width: 70%;
  }
  .home_news .sec_title{

  }
  .home_news_title{
    font-size: 35px;
    line-height: 1.26;
  }
  .home_news .read_more{
    margin-top: 120px;
  }
  .home_news_list{

  }
  .home_news_list .webgene-blog{

  }
  .home_news_list .webgene-item{

  }
  .home_news_list .webgene-item .date{

  }
  .home_news_list .webgene-item .category{
    width: 125px;
  }
  .home_news_list .webgene-item .title{

  }

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

  .pg_home .section.sec1{

  }
  .pg_home .section.sec2{
    margin-top: 240px;
  }
  .pg_home .section.sec3{
    padding-top: 107px;
  }
  .pg_home .section.sec4{
    padding-top: 60px;
    padding-bottom: 114px;
  }
  .pg_home .section.sec5{
    padding-top: 114px;
    padding-top: 52px;
  }
  .pg_home .section.sec6{
    padding-top: 80px;
  }
  .pg_home .section.sec7{
    padding-top: 97px;
    padding-bottom: 116px;
  }
  .pg_home .section.sec8{
    padding-top: 53px;
    padding-bottom: 147px;
  }
  .pg_home .section.sec9{
    padding-top: 146px;
  }

  /*「住む」と「診る」を支える、想いに応える空間づくり*/
  .home_about_warp{

  }
  .home_about{

  }
  .home_about_box1{
    width: 49.39%;
  }
  .home_about_box2{
    width: 49.01%;
  }
  .home_about .sec_title{

  }
  .home_about .home_about_title,
  .residentialInterior_main_box1_title{
    font-size: 30px;
  }
  .home_about_title{
    font-size: 30px;
  }
  .home_about_sub_title{
    margin-top: 12px;
    font-size: 19px;
  }
  .home_about .sec_text{
    margin-top: 35px;
  }
  .home_about_img_content{

  }
  .home_about_img1{

  }
  .home_about_img1_inner{

  }
  .home_about_img1_up.img_fit{

  }
  .home_about_img1_down_outer{
    width: 380px;
    width: calc(380px * 0.7);
  }
  .home_about_img1_down.img_fit{

  }
  .home_about_img2{

  }
  .home_about_img2_inner{

  }
  .home_about_img2_text{
    font-size: 11px;
    width: 180.55%;
    top: 10%;
    left: -110%;
  }
  .home_about_img2_img.img_fit{

  }

  /*誰のためにを考え抜く空間づくり*/
  .home_contact_warp{

  }
  .home_contact{

  }
  .home_contact_img.img_fit{

  }
  .home_contact_img.img_fit:before{
    padding-top: 546px;
  }
  .home_contact_txt{
    margin-top: 75px;
    width: 620px;
  }
  .home_contact .sec_title{

  }
  .home_contact_title{
    margin-top: 10px;
    font-size: 50px;
  }
  .home_contact .sec_text{
    margin-top: 32px;
    font-weight: 500;
  }
  .clinic.home_service .home_service_box1{
    order: 2;
    display: block;
  }
  .clinic.home_service .home_service_box2{
    order: 1;
    margin-top: 0;
  }

  /*事業内容*/
  .home_service_wrap{

  }
  .home_service_main{

  }
  .home_service_main .sec_title{

  }
  .home_service{
    margin-top: 150px;
  }
  .home_service_main_title{
    margin-top: 2px;
    font-size: 40px;
  }
  .home_service_box1{
    width: 52.3%;
  }
  .home_service_box2{
    width: 36.51%;
    margin-top: 0;
  }
  .home_service_img1_outer{
    padding: 0 20px 20px 0;
  }
  .home_service_img1.img_fit{
    margin-left: calc(465px - 50vw);
  }
  .home_service_img2_outer{
    top: -13.5%;
    right: -15%;
  }
  .home_service_img2.img_fit{

  }
  .home_service .sec_title{

  }
  .home_service .sec_title_en{

  }
  .home_service_title{
    margin-top: 20px;
    font-size: 30px;
  }
  .home_service .sec_text{
    margin-top: 34px;
  }
  .home_service .read_more{

  }
  .home_works_list{

  }
  .home_works_list .webgene-blog{

  }
  .home_works_list .webgene-item{

  }

  /*店舗・オフィスの内装工事にも対応ブランドの世界観を、空間で魅せます*/
  .home_shop_wrap{

  }
  .home_shop{

  }
  .home_shop_img.img_fit{
    border: 5px solid #fff;
  }
  .home_shop_img.img_fit:before{
    padding-top: 440px;
  }
  .home_shop_txt{

  }
  .home_shop_title{
    font-size: 30px;
    padding-bottom: 23px;
  }
  .home_shop .sec_text{
    margin-top: 20px;
    width: 68%;
  }

  /*居心地と機能を両立した医院づくり*/
  .clinic.home_service .home_service_img1.img_fit{
    margin-right: calc(465px - 50vw);
    width: 112.5%;
  }

  /*お知らせ*/
  .home_news_wrap{

  }
  .home_news{

  }
  .home_news_box1{
  }
  .home_news_box2{
    margin-top: 5px;
  }
  .home_news .sec_title{
  }
  .home_news_title{
    margin-top: 8px;
    font-size: 40px;
  }
  .home_news .read_more{
    margin-top: 92px;
  }
  .home_news .read_more a{
    padding: 15px 20px;
  }
  .home_news_list{
  }
  .home_news_list .webgene-blog{

  }
  .home_news_list .webgene-item{
    padding: 20px 0 25px;
  }
  .home_news_list .webgene-item .date{

  }
  .home_news_list .webgene-item .category{
    width: 125px;
    margin: 0 19px 0 20px;
    padding: 0 0 2px;
  }
  .home_news_list .webgene-item .title{

  }

  .clinic.home_service .home_service_img2_outer{
    left: -15%;
  }

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


  /*「住む」と「診る」を支える、想いに応える空間づくり*/
  .home_about_title{
    margin-top: 12px;
    text-indent: -33px;
    padding-left: 5px;
    font-size: 38px;
  }

  .home_about .home_about_title,
  .residentialInterior_main_box1_title{
    font-size: 38px;
  }
  .home_about_sub_title{
    margin-top: 12px;
    font-size: 23px;
  }
  .home_about .sec_text{
    margin-top: 35px;
  }
  .home_about_img_content{
    margin-top: 120px;
  }
  .home_about_img1_down_outer{
    width: 380px;
    right: -37%;
    bottom: -10.3%;
  }
  .home_about_img2{
    margin-top: 70px;
    margin-right: -7px;
  }
  .home_about_img2_text{
    font-size: 14px;
    top: 11%;
    left: -121.5%;
    width: 180.55%;
  }

  /*誰のためにを考え抜く空間づくり*/
  .home_contact_txt{
    margin-top: 75px;
  }
  .home_contact_title{
    margin-top: 10px;
    font-size: 50px;
  }
  .home_contact .sec_text{
    margin-top: 32px;
  }

  /*事業内容*/
  .home_service{
    margin-top: 68px;
  }
  .home_service_main_title{
    margin-top: 2px;
    font-size: 40px;
  }
  .home_service_box1{
    margin-top: 82px;
  }
  .home_service_img1.img_fit{
    margin-left: calc(585px - 50vw);
  }
  .home_service_img2_outer{
    top: -13.5%;
    right: -12.5%;
  }
  .home_service_title{
    margin-top: 20px;
    font-size: 35px;
  }
  .home_service .sec_text{
    margin-top: 34px;
  }
  .home_service .read_more{
    margin-top: 45px;
  }
  .home_works_list .webgene-item{
    width: 350px;
    padding: 0 2.5px;
  }
  .home_works_list .read_more{
    margin-top: 43px;
  }

  /*居心地と機能を両立した医院づくり*/
  .clinic.home_service .home_service_img1.img_fit{
    margin-right: calc(585px - 50vw);
    width: 108.7%;
  }
  .clinic.home_service .home_service_img2_outer{
    top: -14.5%;
    left: -12.5%;
  }

  /*店舗・オフィスの内装工事にも対応ブランドの世界観を、空間で魅せます*/
  .home_shop_txt{
    width: 93.5%;
  }
  .home_shop_title{
    font-size: 50px;
    padding-bottom: 23px;
  }
  .home_shop .sec_text{
    width: 89%;
  }

  /*お知らせ*/
  .home_news_list .webgene-item .title{
    margin-top: 0;
  }
  .home_news_box1{
    width: 23.9%;
  }
  .home_news_box2{
    width: 68.46%;
  }

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


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

  /*事業内容*/
  .home_service_img1.img_fit {
    margin-left: calc(760px - 50vw);
  }

  /*居心地と機能を両立した医院づくり*/
  .clinic.home_service .home_service_img1.img_fit {
    margin-left: 0;
    margin-right: calc(760px - 50vw);
    width: auto;
  }

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

  /*「住む」と「診る」を支える、想いに応える空間づくり*/
  .home_about_title{
    margin-top: 12px;
    text-indent: -33px;
    padding-left: 5px;
    font-size: 50px;
  }
  .home_about_sub_title{
    margin-top: 12px;
    font-size: 23px;
  }
  .home_about_img2_text{
    font-size: 17px;
    width: 180.55%;
    top: 11%;
    left: -121.5%;
  }
  .home_about_img1_down_outer{
    width: 380px;
    right: -37%;
  }

  /*事業内容*/
  .home_service_title{
    margin-top: 20px;
    font-size: 50px;
  }

  /*店舗・オフィスの内装工事にも対応ブランドの世界観を、空間で魅せます*/
  .home_shop .sec_text{
    width: 64%;
  }
}





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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}


@media (max-width:374px){

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

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

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

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }


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


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


}


/*******************************
*　住宅内装工事
********************************/
.pg_residentialInterior{

}
.pg_residentialInterior .section{
  padding: 0;
}
.pg_residentialInterior .section.sec1{
  background: #f5f4f0;
  margin-top: -50px;
  padding-top: 50px;
  padding-bottom: 50px;
}
.pg_residentialInterior .section.sec2{
  padding-top: 50px;
  padding-bottom: 50px;
}
.pg_residentialInterior .section.sec3{
  background: #f5f4f0;
  position: relative;
  z-index: 1;
  padding-top: 50px;
  padding-bottom: 50px;
  overflow: hidden;
}
.pg_residentialInterior .section.sec3:before{
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  width: 100%;
  height: 8%;
  background: #fff;
  clip-path: polygon(0% 0, 100% 0%, 50% 100%, 0 0%);
}
.pg_residentialInterior .section.sec4{
  padding-top: 50px;
  padding-bottom: 50px;
  overflow: hidden;
}
.pg_residentialInterior .section.sec5{
  background: #f5f4f0;
  padding-top: 50px;
  padding-bottom: 50px;
}
.pg_residentialInterior .section.sec6{
  border-top: 1px solid #a8a385;
  background: #f5f4f0;
  padding-top: 50px;
  padding-bottom: 50px;
}
.pg_residentialInterior .section.sec7{
  background: #f5f4f0;
  padding-bottom: 100px;
  margin-bottom: -100px;
}

/*理想の暮らしを、確かな提案と安心の品質で。*/

.residentialInterior_main_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.residentialInterior_main_box1,
.residentialInterior_main_box2{
  width: 100%;
}
.residentialInterior_main_box1{

}
.residentialInterior_main_box2{

}
.residentialInterior_main_box1_title{
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.26;
}
.residentialInterior_main_box1 .sec_text{
  margin-top: 15px;
}
.residentialInterior_main_box2_outer{
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.residentialInterior_main_box2_inner{
  position: absolute;
  z-index: 1;
  width: 49%;
  height: 72.5%;
  left: -3%;
  top: 31.5%;
  border: 1px solid #bab7a4;
}
.residentialInterior_main_box2_img1_outer,
.residentialInterior_main_box2_img2_outer{
  width: 49%;
}
.residentialInterior_main_box2_img1_outer{
  padding-top: 63px;
}
.residentialInterior_main_box2_img2_outer{
  padding-top: 25px;
}
.residentialInterior_main_box2_img1.img_fit,
.residentialInterior_main_box2_img2.img_fit{
  width: 100%;
}
.residentialInterior_main_box2_img1.img_fit{

}
.residentialInterior_main_box2_img2.img_fit{

}
.residentialInterior_main_box2_img1.img_fit:before,
.residentialInterior_main_box2_img2.img_fit:before{
  padding-top: 140.625%;
}

/* 切り抜き仕様にする */
.residentialInterior_main_box2_img1_outer{
  width: 100%;
  position: relative;
  z-index: 1;
}
.residentialInterior_main_box2_img1{
  -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: cover;
  -webkit-mask-image: url('https://for-y-interior.co.jp/system_panel/uploads/images/residentialInterior_fr.png');
}
.residentialInterior_main_box2_img1.img_fit:before{
  padding-top: 74.92%;
}
.residentialInterior_main_box2_img2_outer{
  display: none;
}


/*内装リフォームで、こんなお悩みはありませんか？*/
.residentialInterior_worries{

}
.residentialInterior_worries_title{
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.575;
  text-align: center;
  position: relative;
  z-index: 1;
}
.residentialInterior_worries_title strong{
  font-weight: 400;
  color: #950042;
}
.residentialInterior_worries_title:before,
.residentialInterior_worries_title:after{
  content: "";
  width: 1px;
  height: 55px;
  background: #2c2c2c;
  position: absolute;
  z-index: 1;
  top: 50%;
}
.residentialInterior_worries_title:before{
  left: 5px;
  ;
  transform: translateY(-50%) rotate(330deg);
}
.residentialInterior_worries_title:after{
  right: 5px;
  ;
  transform: translateY(-50%) rotate(25deg);
}
.residentialInterior_worries_check_content{
  margin-top: 37px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.residentialInterior_worries_check{
  width: 100%;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.666;
  padding-left: 25px;
  position: relative;
  z-index: 1;
}
.residentialInterior_worries_check:nth-child(n+2){
  margin-top: 20px;
}
.residentialInterior_worries_check strong{
  font-weight: 500;
  color: #950042;
}
.residentialInterior_worries_check:before{
  content: "";
  font-family: "FontAwesome";
  position: absolute;
  z-index: 1;
  top: 5px;
  left: 0;
  width: 15px;
  height: 15px;
  background: url(/system_panel/uploads/images/20250704202237198720.png)no-repeat center center/contain;
}

/*そのお悩み、For.Yが解決します！*/
.residentialInterior_solution{

}
.residentialInterior_solution_title{
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
  color: #950042;
}
.residentialInterior_solution .sec_text{
  margin-top: 15px;
}

/*私たちの特徴*/
.residentialInterior_features{

}
.residentialInterior_features .sec_title{
  justify-content: center;
}
.residentialInterior_features_title{
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
}
.residentialInterior_features_box_content{
  margin-top: 30px;
}
.residentialInterior_features_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.residentialInterior_features_box:nth-child(n+2){
  margin-top: 70px;
}
.residentialInterior_features_box1,
.residentialInterior_features_box2{
  width: 100%;
}
.residentialInterior_features_box1{
  order: 1;
}
.residentialInterior_features_box2{
  order: 2;
  margin-top: 40px;
}
.residentialInterior_features_box2_inner,
.residentialInterior_features_box2_inner > *{
  position: relative;
  z-index: 1;
}
.residentialInterior_features_box2_inner{

}
.residentialInterior_features_box2_title{

}
.residentialInterior_features_box2_title_en{
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: #a8a385;
}
.residentialInterior_features_box2_title_ja{
  margin-top: 15px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.26;
}
.residentialInterior_features_box2_nbr{
  position: absolute;
  z-index: 1;
  right: 3.5%;
  bottom: 0px;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 100px;
  line-height: 1;
  color: #f8f7f0;
  width: 43.35%;
}
.residentialInterior_features_box2_nbr p{
  letter-spacing: 0.025em;
}
.residentialInterior_features_box2 .sec_text{
  margin-top: 15px;
}
.residentialInterior_features_box1_inner{
  width: 90%;
}
.residentialInterior_features_box:nth-child(even) .residentialInterior_features_box1_inner{
  margin-left: auto;
}
.residentialInterior_features_box1_img.img_fit{
  z-index: 2;
}
.residentialInterior_features_box1_img.img_fit:before{
  padding-top: 70.58%;
}
.residentialInterior_features_box1_img.img_fit:after{
  content: "";
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #bab7a4;
}
.residentialInterior_features_box:nth-child(odd) .residentialInterior_features_box1_img.img_fit{
  margin-left: calc(145px - 50vw);
}
.residentialInterior_features_box:nth-child(even) .residentialInterior_features_box1_img.img_fit{
  margin-right: calc(145px - 50vw);
}
.residentialInterior_features_box:nth-child(odd) .residentialInterior_features_box1_img.img_fit:after{
  inset: 5.1% -3.5% -15% 3.5%;
}
.residentialInterior_features_box:nth-child(even) .residentialInterior_features_box1_img.img_fit:after{
  inset: 5.1% 3.5% -15% -3.5%;
}

/*対応メニュー*/
.residentialInterior_services{

}
.residentialInterior_services .sec_title{
  justify-content: center;
}
.residentialInterior_services_title{
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
}
.residentialInterior_services_item_content{
  margin-top: 30px;
}
.residentialInterior_services_item{
  width: 100%;
}
.residentialInterior_services_item_inner{
  background: #fff;
  height: 100%;
  position: relative;
  z-index: 1;
  padding: 20px 30px 30px;
}
.swiper-button-prev, .swiper-rtl .swiper-button-next{
  left: var(--swiper-navigation-sides-offset, 0px);
}
.swiper-button-next, .swiper-rtl .swiper-button-prev{
  right: var(--swiper-navigation-sides-offset, 0px);
}
.residentialInterior_services_item_inner:before,
.residentialInterior_services_item_inner:after{
  content: "";
  position: absolute;
  z-index: 1;
  width: 26px;
  height: 26px;
  background: #950042;
}
.swiper-button-next:after, .swiper-button-prev:after{
  color: #950042;
}
.residentialInterior_services_item_inner:before{
  clip-path: polygon(100% 0, 100% 0%, 0% 100%, 0 0%);
  top: 3%;
  left: 2%;
}
.residentialInterior_services_item_inner:after{
  clip-path: polygon(100% 0, 100% 100%, 50% 100%, 0 100%);
  right: 2%;
  bottom: 4%;
}
.residentialInterior_services_item_title{
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.5;
  text-align: center;
}
.residentialInterior_services_item_title:after{
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: #a8a385;
  margin: 9px auto 0;
}
.residentialInterior_services_item .sec_text{
  margin-top: 15px;
}
.residentialInterior_services .swiper-slide{
  height: auto;
}
.residentialInterior_services_item{
  height: 100%;
}

/*ご依頼の流れ*/
.residentialInterior_flow{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 75px;
}
.residentialInterior_flow_box1,
.residentialInterior_flow_box2{
  width: 100%;
}
.residentialInterior_flow_box1{
  padding-bottom: 15px;
  border-bottom: 1px solid #a8a385;
}
.residentialInterior_flow_box2{

}
.residentialInterior_flow .sec_title{

}
.residentialInterior_flow_title{
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
}
.residentialInterior_flow .sec_text{
  margin-top: 15px;
}
.residentialInterior_flow_item_content{

}
.residentialInterior_flow_item{
  padding: 70px 0 40px;
  display: flex;
  flex-wrap: wrap;
}
.residentialInterior_flow_item,
.residentialInterior_flow_item > *{
  position: relative;
  z-index: 1;
}
.residentialInterior_flow_item:nth-child(n+2){

}
.residentialInterior_flow_item:nth-child(odd):before,
.residentialInterior_flow_item:nth-child(n+2):after{
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.residentialInterior_flow_item:nth-child(odd):before{
  bottom: 0;
  width: 100vw;
  background: #fff;
}
.residentialInterior_flow_item:nth-child(n+2):after{
  width: 100px;
  height: 55px;
  clip-path: polygon(0% 0, 100% 0%, 50% 100%, 0 0%);
  top: -1px;
}
.residentialInterior_flow_item:nth-child(odd):after{
  background: #f5f4f0;
}
.residentialInterior_flow_item:nth-child(even):after{
  background: #fff;
}
.residentialInterior_flow_item1,
.residentialInterior_flow_item2{
  width: 100%;
}
.residentialInterior_flow_item1{
  margin-top: 30px;
  order: 2;
}
.residentialInterior_flow_item2{
  order: 1;
}
.residentialInterior_flow_item_title{
  display: flex;
  align-items: center;
}
.residentialInterior_flow_item_title_nbr{
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 1;
  color: #a8a385;
}
.residentialInterior_flow_item_title_nbr p{
  letter-spacing: 0;
}
.residentialInterior_flow_item_title_ja{
  margin-left: 15px;
  padding-left: 15px;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 20px;
  border-left: 1px solid #a8a385;
}
.residentialInterior_flow_item .sec_text{
  margin-top: 15px;
}
.residentialInterior_flow_item .read_more{

}
.residentialInterior_flow_item_tel_title{
  margin-top: 13px;
  padding-bottom: 11px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  border-bottom: 1px solid;
}
.residentialInterior_flow_item_tel{
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 24px;
}
.residentialInterior_flow_item_tel p{
  letter-spacing: 0.2em;
}
.residentialInterior_flow_item_tel strong{
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.075em;
}
.residentialInterior_flow_item_tel strong p{
  letter-spacing: 0.075em;
}
.residentialInterior_flow_item_tel_attention{
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  text-align: justify;
}
.residentialInterior_flow_item_img.img_fit{

}
.residentialInterior_flow_item_img.img_fit:before{
  padding-top: 58.82%;
}

/*施工実績*/
.residentialInterior_works{

}
.residentialInterior_works .sec_title{
  justify-content: center;
}
.residentialInterior_works_title{
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
}
.residentialInterior_works .home_works_list{
  margin-top: 30px;
}

@media (min-width:375px){
  .residentialInterior_features_box:nth-child(odd) .residentialInterior_features_box1_img.img_fit{
    margin-left: calc(172.5px - 50vw);
  }
  .residentialInterior_features_box:nth-child(even) .residentialInterior_features_box1_img.img_fit{
    margin-right: calc(172.5px - 50vw);
  }

}

@media (min-width:412px){
  .residentialInterior_features_box:nth-child(odd) .residentialInterior_features_box1_img.img_fit{
    margin-left: calc(191px - 50vw);
  }
  .residentialInterior_features_box:nth-child(even) .residentialInterior_features_box1_img.img_fit{
    margin-right: calc(191px - 50vw);
  }

}

@media (min-width:768px){

  .pg_residentialInterior{

  }
  .pg_residentialInterior .section.sec1{
    margin-top: -100px;
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .pg_residentialInterior .section.sec2{
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .pg_residentialInterior .section.sec3{
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .pg_residentialInterior .section.sec3:before{
    height: 11%;
  }
  .pg_residentialInterior .section.sec4{
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .pg_residentialInterior .section.sec5{
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .pg_residentialInterior .section.sec6{
    padding-top: 100px;
    padding-bottom: 50px;
  }
  .pg_residentialInterior .section.sec7{
    margin-bottom: -100px;
    padding-bottom: 100px;
  }

  /*理想の暮らしを、確かな提案と安心の品質で。*/
  .residentialInterior_main_box{

  }
  .residentialInterior_main_box1{
    margin-top: 30px;
    width: 100%;
    order: 1;
  }
  .residentialInterior_main_box2{
    width: 100%;
    order: 2;
  }
  .residentialInterior_main_box1_title{
    font-size: 24px;
  }
  .residentialInterior_main_box1 .sec_text{
    margin-top: 20px;
  }
  .residentialInterior_main_box2_outer{

  }
  .residentialInterior_main_box2_img1_outer{
    padding-top: 63px;
  }
  .residentialInterior_main_box2_img2_outer{
    padding-top: 25px;
  }
  .residentialInterior_main_box2_img1{

  }
  .residentialInterior_main_box2_img2{

  }

  /*内装リフォームで、こんなお悩みはありませんか？*/
  .residentialInterior_worries{

  }
  .residentialInterior_worries_title{
    font-size: 30px;
  }
  .residentialInterior_worries_title:before,
  .residentialInterior_worries_title:after{
    width: 1px;
    height: 116px;
  }
  .residentialInterior_worries_title:before{
    left: 7.7%;
  }
  .residentialInterior_worries_title:after{
    right: 7.7%;
  }
  .residentialInterior_worries_check_content{
    margin-top: 37px;
  }
  .residentialInterior_worries_check{
    width: 48.5%;
    font-size: 15px;
  }
  .residentialInterior_worries_check:nth-child(n+2){
    margin-top: 0;
  }
  .residentialInterior_worries_check:nth-child(n+3){
    margin-top: 30px;
  }
  .residentialInterior_worries_check:before{
    top: 5px;
    width: 15px;
    height: 15px;
  }
  .residentialInterior_worries_check strong{

  }
  .residentialInterior_worries_check:before{

  }

  /*そのお悩み、For.Yが解決します！*/
  .residentialInterior_solution{

  }
  .residentialInterior_solution_title{
    font-size: 30px;
  }
  .residentialInterior_solution .sec_text{
    margin-top: 30px;
  }

  /*私たちの特徴*/
  .residentialInterior_features{

  }
  .residentialInterior_features .sec_title{

  }
  .residentialInterior_features_title{
    font-size: 30px;
  }
  .residentialInterior_features_box_content{
    margin-top: 50px;
  }
  .residentialInterior_features_box{

  }
  .residentialInterior_features_box:nth-child(n+2){
    margin-top: 70px;
  }
  .residentialInterior_features_box:nth-child(odd) .residentialInterior_features_box1,
  .residentialInterior_features_box:nth-child(even) .residentialInterior_features_box2{
    order: 1;
  }
  .residentialInterior_features_box:nth-child(even) .residentialInterior_features_box1,
  .residentialInterior_features_box:nth-child(odd) .residentialInterior_features_box2{
    order: 2;
  }
  .residentialInterior_features_box1{
    width: 42.73%;
  }
  .residentialInterior_features_box2{
    width: 50.98%;
  }
  .residentialInterior_features_box2_inner{
    width: 100%;
  }
  .residentialInterior_features_box2_title{

  }
  .residentialInterior_features_box2_title_en{

  }
  .residentialInterior_features_box2_title_ja{
    font-size: 23px;
  }
  .residentialInterior_features_box2_nbr{
    font-size: 100px;
  }
  .residentialInterior_features_box2 .sec_text{
    margin-top: 15px;
  }
  .residentialInterior_features_box1_inner{
    width: 100%;
  }
  .residentialInterior_features_box:nth-child(odd) .residentialInterior_features_box1_img.img_fit{
    margin-left: calc(345px - 50vw);
  }
  .residentialInterior_features_box:nth-child(even) .residentialInterior_features_box1_img.img_fit{
    margin-right: calc(345px - 50vw);
  }

  /*対応メニュー*/
  .residentialInterior_services{

  }
  .residentialInterior_services .sec_title{

  }
  .residentialInterior_services_title{
    font-size: 30px;
  }
  .residentialInterior_services_item_content{
    margin: 50px -10px 0;
    display: flex;
    flex-wrap: wrap;
  }
  .residentialInterior_services_item{
    width: 50%;
    padding: 0 10px;
  }
  .residentialInterior_services_item:nth-child(n+3){
    margin-top: 30px;
  }
  .residentialInterior_services_item_inner{
    padding: 30px 25px;
  }
  .residentialInterior_services_item_title{
    font-size: 21px;
  }
  .residentialInterior_services_item .sec_text{
    margin-top: 15px;
  }

  /*ご依頼の流れ*/
  .residentialInterior_flow{
    padding-bottom: 75px;
  }
  .residentialInterior_flow_box1{
    padding-bottom: 0;
    width: 220px;
    border-bottom: none;
    border-right: 1px solid #a8a385;
  }
  .residentialInterior_flow_box2{
    width: 63.7%;
  }
  .residentialInterior_flow .sec_title{

  }
  .residentialInterior_flow_title{
    font-size: 30px;
  }
  .residentialInterior_flow .sec_text{
    margin-top: 0;
  }
  .residentialInterior_flow_item_content{

  }
  .residentialInterior_flow_item{
    padding: 71px 0 48px;
  }
  .residentialInterior_flow_item1{
    margin-top: 0;
    width: 50.98%;
    order: 1;
  }
  .residentialInterior_flow_item2{
    width: 44.73%;
    order: 2;
  }
  .residentialInterior_flow_item_title{

  }
  .residentialInterior_flow_item_title_nbr{
    font-size: 50px;
  }
  .residentialInterior_flow_item_title_ja{
    margin-left: 15px;
    padding-left: 15px;
    font-size: 22px;
  }
  .residentialInterior_flow_item .sec_text{
    margin-top: 36px;
  }
  .residentialInterior_flow_item .read_more{

  }
  .residentialInterior_flow_item_tel_title{
    margin-top: 13px;
    padding-bottom: 11px;
  }
  .residentialInterior_flow_item_tel{
    font-size: 34px;
  }
  .residentialInterior_flow_item_tel strong{
    font-size: 18px;
  }
  .residentialInterior_flow_item_tel_attention{

  }
  .residentialInterior_flow_item_img.img_fit{
    margin-left: 9.5%;
    margin-right: -9.5%;
  }

  /*施工実績*/
  .residentialInterior_works{

  }
  .residentialInterior_works .sec_title{

  }
  .residentialInterior_works_title{
    font-size: 30px;
  }
  .residentialInterior_works .home_works_list{
    margin-top: 50px;
  }


  .body_clinicInterior .residentialInterior_main_box1{
    margin-top: 0px;
  }
  .body_clinicInterior .residentialInterior_main_box2{
    margin-top: 30px;
  }
}

@media (min-width:992px){
  .residentialInterior_features_box:nth-child(odd) .residentialInterior_features_box1_img.img_fit{
    margin-left: calc(465px - 50vw);
  }
  .residentialInterior_features_box:nth-child(even) .residentialInterior_features_box1_img.img_fit{
    margin-right: calc(465px - 50vw);
  }
}

@media (min-width:1024px){

  .pg_residentialInterior{

  }
  .pg_residentialInterior .section.sec1{
    margin-top: -140px;
    padding-top: 140px;
    padding-bottom: 170px;
  }
  .pg_residentialInterior .section.sec2{
    padding-top: 87px;
    padding-bottom: 30px;
  }
  .pg_residentialInterior .section.sec3{
    padding-top: 124px;
    padding-bottom: 140px;
  }
  .pg_residentialInterior .section.sec3:before{
    height: 17%;
  }
  .pg_residentialInterior .section.sec4{
    padding-top: 95px;
    padding-bottom: 183px;
  }
  .pg_residentialInterior .section.sec5{
    padding-top: 145px;
    padding-bottom: 117px;
  }
  .pg_residentialInterior .section.sec6{
    padding-top: 120px;
    padding-bottom: 100px;
  }
  .pg_residentialInterior .section.sec7{
    margin-bottom: -195px;
    padding-bottom: 195px;
  }

  /*理想の暮らしを、確かな提案と安心の品質で。*/
  .residentialInterior_main_box{

  }
  .residentialInterior_main_box1{
    margin-top: 0px;
    width: 49.01%;
    order: 1;
  }
  .residentialInterior_main_box2{
    width: 42.76%;
    order: 2;
  }
  .residentialInterior_main_box1_title{
    font-size: 32px;
  }
  .residentialInterior_main_box1 .sec_text{
    margin-top: 33px;
  }
  .residentialInterior_main_box2_outer{

  }
  .residentialInterior_main_box2_img1_outer{
    padding-top: 63px;
  }
  .residentialInterior_main_box2_img2_outer{
    padding-top: 25px;
  }
  .residentialInterior_main_box2_img1{

  }
  .residentialInterior_main_box2_img2{

  }

  /*内装リフォームで、こんなお悩みはありませんか？*/
  .residentialInterior_worries{

  }
  .residentialInterior_worries_title{
    font-size: 40px;
  }
  .residentialInterior_worries_title:before,
  .residentialInterior_worries_title:after{
    width: 2px;
    height: 116px;
  }
  .residentialInterior_worries_title:before{
    left: 7.7%;
  }
  .residentialInterior_worries_title:after{
    right: 7.7%;
  }
  .residentialInterior_worries_check_content{
    margin-top: 37px;
  }
  .residentialInterior_worries_check{
    font-size: 20px;
    padding-left: 37px;
  }
  .residentialInterior_worries_check:nth-child(n+3){
    margin-top: 27px;
  }
  .residentialInterior_worries_check strong{

  }
  .residentialInterior_worries_check:before{

  }
  .residentialInterior_worries_check:before{
    top: 10px;
    width: 21px;
    height: 21px;
  }

  /*そのお悩み、For.Yが解決します！*/
  .residentialInterior_solution{

  }
  .residentialInterior_solution_title{
    font-size: 42px;
  }
  .residentialInterior_solution .sec_text{
    margin-top: 30px;
    text-align: center;
  }

  /*私たちの特徴*/
  .residentialInterior_features{

  }
  .residentialInterior_features .sec_title{

  }
  .residentialInterior_features_title{
    margin-top: 3px;
    font-size: 40px;
  }
  .residentialInterior_features_box_content{
    margin-top: 75px;
  }
  .residentialInterior_features_box{

  }
  .residentialInterior_features_box:nth-child(n+2){
    margin-top: 130px;
  }
  .residentialInterior_features_box1{

  }
  .residentialInterior_features_box2{
  }
  .residentialInterior_features_box2_inner{

  }
  .residentialInterior_features_box2_title{

  }
  .residentialInterior_features_box2_title_en{

  }
  .residentialInterior_features_box2_title_ja{
    margin-top: 10px;
    font-size: 32px;
  }
  .residentialInterior_features_box2_nbr{
    font-size: 200px;
    bottom: -25px;
  }
  .residentialInterior_features_box2 .sec_text{
    margin-top: 35px;
  }
  .residentialInterior_features_box1_inner{

  }

  /*対応メニュー*/
  .residentialInterior_services{

  }
  .residentialInterior_services .sec_title{

  }
  .residentialInterior_services_title{
    margin-top: 2px;
    font-size: 40px;
  }
  .residentialInterior_services_item_content{
    margin: 75px -12px 0;
  }
  .residentialInterior_services_item{
    width: 33.33%;
    padding: 0 12px;
  }
  .residentialInterior_services_item:nth-child(n+3){
    margin-top: 0;
  }
  .residentialInterior_services_item:nth-child(n+4){
    margin-top: 49px;
    ;
  }
  .residentialInterior_services_item_inner{
    padding: 40px 30px 43px;
  }
  .residentialInterior_services_item_title{
    font-size: 18px;
  }
  .residentialInterior_services_item .sec_text{
    margin-top: 15px;
  }

  /*ご依頼の流れ*/
  .residentialInterior_flow{
    padding-bottom: 75px;
  }
  .residentialInterior_flow_box1{
    width: 270px;
  }
  .residentialInterior_flow_box2{
    width: 67.7%;
  }
  .residentialInterior_flow .sec_title{
    margin-top: 11px;
  }
  .residentialInterior_flow_title{
    margin-top: 3px;
    margin-left: -9px;
    font-size: 40px;
  }
  .residentialInterior_flow .sec_text{

  }
  .residentialInterior_flow_item_content{

  }
  .residentialInterior_flow_item{
    padding: 71px 0 48px;
  }
  .residentialInterior_flow_item1{

  }
  .residentialInterior_flow_item2{

  }
  .residentialInterior_flow_item_title{
    margin-top: -17px;
  }
  .residentialInterior_flow_item_title_nbr{
    font-size: 60px;
  }
  .residentialInterior_flow_item_title_ja{
    margin-top: 13px;
    margin-left: 20px;
    padding-left: 20px;
    font-size: 30px;
  }
  .residentialInterior_flow_item .sec_text{
    margin-top: 36px;
  }
  .residentialInterior_flow_item .read_more{
    margin-top: 16px;
  }
  .residentialInterior_flow_item .read_more a{
    width: 380.42px;
  }
  .residentialInterior_flow_item_tel_title{
    margin-top: 13px;
    padding-bottom: 11px;
    display: block;
    width: 80%;
  }
  .residentialInterior_flow_item_tel{
    font-size: 34px;
  }
  .residentialInterior_flow_item_tel strong{

  }
  .residentialInterior_flow_item_tel_attention{

  }

  /*施工実績*/
  .residentialInterior_works{

  }
  .residentialInterior_works .sec_title{

  }
  .residentialInterior_works_title{
    font-size: 40px;
  }
  .residentialInterior_works .home_works_list{
    margin-top: 77px;
  }

  .body_clinicInterior .residentialInterior_main_box1{
    margin-top: 0px;
  }
  .body_clinicInterior .residentialInterior_main_box2{
    margin-top: 0;
  }
}
@media (min-width:1200px){

  /*理想の暮らしを、確かな提案と安心の品質で。*/
  .residentialInterior_main_box1_title{
    font-size: 38px;
  }

  /*内装リフォームで、こんなお悩みはありませんか？*/
  .residentialInterior_worries_title:before{
    left: 16.7%;
  }
  .residentialInterior_worries_title:after{
    right: 16.7%;
  }
  .residentialInterior_worries_check{
    font-size: 24px;
    padding-left: 37px;
  }
  .residentialInterior_features_box:nth-child(odd) .residentialInterior_features_box1_img.img_fit{
    margin-left: calc(550px - 50vw);
  }
  .residentialInterior_features_box:nth-child(even) .residentialInterior_features_box1_img.img_fit{
    margin-right: calc(550px - 50vw);
  }

  /*対応メニュー*/
  .residentialInterior_services_item_title{
    font-size: 22px;
  }

  /*  .residentialInterior_main_box2_img1_outer,
  .residentialInterior_main_box2_img2_outer{
    width: 49%;
  }*/

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

  /*ご依頼の流れ*/
  .residentialInterior_flow_box1{
    width: 330px;
  }
  .residentialInterior_flow_box2{
    width: 63%;
  }
  .residentialInterior_flow_item_title_nbr{
    font-size: 70px;
  }
  .residentialInterior_flow_item_title_ja{
    margin-top: 13px;
    margin-left: 25px;
    padding-left: 25px;
    font-size: 35px;
  }

  /*理想の暮らしを、確かな提案と安心の品質で。*/
  .residentialInterior_main_box2_outer{
    margin-right: -10%;
  }

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

  /*私たちの特徴*/
  .residentialInterior_features_box:nth-child(odd) .residentialInterior_features_box1_img.img_fit{
    margin-left: calc(755px - 50vw);
  }
  .residentialInterior_features_box:nth-child(even) .residentialInterior_features_box1_img.img_fit{
    margin-right: calc(755px - 50vw);
  }
}

@media (min-width:1730px){

  /*私たちの特徴*/
  .residentialInterior_features_box2_title_ja{
    font-size: 50px;
  }
  .residentialInterior_features_box2_nbr{
    font-size: 300px;
  }

  /*対応メニュー*/
  .residentialInterior_services_item_title{
    font-size: 28px;
  }
  .residentialInterior_features_box{
    align-items: center;
  }

  /*ご依頼の流れ*/
  .residentialInterior_flow_item_title_nbr{
    font-size: 80px;
  }
  .residentialInterior_flow_item_title_ja{
    margin-top: 13px;
    margin-left: 25px;
    padding-left: 30px;
    font-size: 40px;
  }

}
@media (min-width:1800px){
  .pg_residentialInterior .section.sec3:before{
    height: 20%;
  }

  /*理想の暮らしを、確かな提案と安心の品質で。*/
  .residentialInterior_main_box1_title{
    font-size: 50px;
  }

  /*理想の暮らしを、確かな提案と安心の品質で。*/
  .residentialInterior_main_box2_outer{
    /*    margin-right: -10%;*/
    margin-right: 0;
  }



  /*ご依頼の流れ*/
  .residentialInterior_flow_box1{
    width: 371px;
  }
  .residentialInterior_flow_box2{

  }

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

  /*ご依頼の流れ*/
  .residentialInterior_flow_box2{
    width: 67.7%;
  }

}


/*******************************
*　クリニック内装工事
********************************/
.pg_clinicInterior{

}
.pg_clinicInterior .section.sec1{
  background: #f5f4f0;
  margin-top: -50px;
  padding-top: 50px;
  padding-bottom: 50px;
  overflow: hidden;
}
.pg_clinicInterior .section.sec2{
  padding-top: 50px;
  padding-bottom: 50px;
  overflow: hidden;
}
.pg_clinicInterior .section.sec3{
  background: #f5f4f0;
  padding-top: 50px;
  padding-bottom: 50px;
  overflow: hidden;
}
.pg_clinicInterior .section.sec4{
  padding-top: 50px;
  padding-bottom: 50px;
  overflow: hidden;
}
.pg_clinicInterior .section.sec5{
  padding-top: 0px;
  padding-bottom: 50px;
}
.pg_clinicInterior .section.sec6{
  background: #f5f4f0;
  padding-top: 50px;
  padding-bottom: 50px;
}
.pg_clinicInterior .section.sec7{
  background: #f5f4f0;
  border-top: 1px solid #a8a385;
  padding-top: 50px;
  padding-bottom: 100px;
  margin-bottom: -100px;
}

/*医療空間に、もっと安心と信頼を。*/
.clinicInterior.residentialInterior_main_box2_img.img_fit{
  margin-top: 30px;
  margin-right: calc(145px - 50vw);
}
.clinicInterior.residentialInterior_main_box2_img.img_fit:before{
  padding-top: 67.05%;
}
.clinicInterior.residentialInterior_main_box2_img.img_fit:after{
  content: "";
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #bab7a4;
  inset: 3.5% 0 -15% -2.3%;
}

/*こんなクリニック、目指しませんか？*/
.clinicInterior.residentialInterior_services{

}
.clinicInterior.residentialInterior_services .residentialInterior_services_title{
  color: #950042;
  letter-spacing: 0;
}
.clinicInterior.residentialInterior_services .sec_text{
  margin-top: 15px;
}
.residentialInterior_services_item_inner2{
  position: relative;
  z-index: 1;
  border: 3px solid #a8a385;
  height: 100%;
  padding: 20px 15px;
  height: 100%;
}
.residentialInterior_services_item_inner2:after{
  content: "";
  position: absolute;
  z-index: 1;
  inset: 7px;
  border: 1px solid #a8a385;
  pointer-events: none;
}
.residentialInterior_services_item_inner2 .residentialInterior_services_item_title{
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
}
.residentialInterior_services_item_inner2 .residentialInterior_services_item_title:after{
  width: 100%;
  background: #2c2c2c;
}

/*ただの内装では、終わらせない。*/
.clinicInterior.residentialInterior_features_box:nth-child(odd) .residentialInterior_features_box1_img.img_fit:after{
  inset: 3.5% 0% -5% 2.3%;
}
.clinicInterior.residentialInterior_features_box:nth-child(even) .residentialInterior_features_box1_img.img_fit:after{
  inset: 3.5% 0 -5% -2.3%;
}
.residentialInterior_features_box2_nbr2{
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 35px;
  color: #a8a385;
  /*  border-bottom: 1px solid #a8a385;*/
  display: inline-block;
}
.residentialInterior_features_box2_nbr2:after{
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  background: #c2bea9;
  margin: 0 auto 0;
}

/*医院の数だけ、空間がある。*/
.clinicInterior_main_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.clinicInterior_main_box1,
.clinicInterior_main_box2{
  width: 100%;
}
.clinicInterior_main_box1{

}
.clinicInterior_main_box2{

}
.clinicInterior_main_box .sec_title{

}
.clinicInterior_main_box_title{
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 20px;
}
.clinicInterior_main_box .sec_text{
  margin-top: 15px;
}
.clinicInterior_box_content{
  margin-top: 50px;
}
.clinicInterior_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.clinicInterior_box:nth-child(n+2){
  margin-top: 50px;
}
.clinicInterior_box1{
  width: 90%;
}
.clinicInterior_box:nth-child(even)  .clinicInterior_box1{
  margin-left: auto;
}
.clinicInterior_box2{
  margin-top: 30px;
  width: 100%;
}
.clinicInterior_box_img.img_fit{

}
.clinicInterior_box:nth-child(odd) .clinicInterior_box_img.img_fit{
  margin-left: calc(145px - 50vw);
}
.clinicInterior_box:nth-child(even) .clinicInterior_box_img.img_fit{
  margin-left: 0;
  margin-right: calc(145px - 50vw);
}
.clinicInterior_box_img.img_fit:before{
  padding-top: 60.4%;
}
.clinicInterior_box_img.img_fit:after{
  content: "";
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #bab7a4;
}
.clinicInterior_box:nth-child(odd) .clinicInterior_box_img.img_fit:after{
  inset: 4.5% 0% 4% 2.7%;
}
.clinicInterior_box:nth-child(even) .clinicInterior_box_img.img_fit:after{
  inset: 4.5% 2.7% 4% -2.7%;
}
.clinicInterior_box_title{
  display: flex;
  align-items: baseline;
  border-bottom: 1px solid #bab7a4;
  padding-bottom: 14px;
}
.clinicInterior_box_title_ja{
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
}
.clinicInterior_box_title_en{
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
  color: #bab7a4;
}
.clinicInterior_box .sec_text{
  margin-top: 15px;
}

/*どんなクリニックでも、まずは一度ご相談ください。*/
.clinicInterior_type{

}
.clinicInterior_type_title{
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
}
.clinicInterior_type .sec_text{
  margin-top: 15px;
}
.clinicInterior_type .read_more{

}

/*開業の不安を、自信に変える。*/
.clinicInterior_support{

}
.clinicInterior_support .sec_title{
  justify-content: center;
}
.clinicInterior_support_title{
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
}
.clinicInterior_support .sec_text{
  margin-top: 15px;
}

/*開業でお悩みなら、私たちにお任せください。*/
.clinicInterior_support_box{
  margin-top: 50px;
  position: relative;
  z-index: 1;
}
.clinicInterior_support_box_img.img_fit{

}
.clinicInterior_support_box_img.img_fit:before{
  padding-top: 450px;
}
.clinicInterior_support_box_img.img_fit:after{
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background-color: rgba(44, 44, 44, 0.4);
  pointer-events: none;
}
.clinicInterior_support_box_img.img_fit img{
  object-position: right;
}
.clinicInterior_support_box_txt{
  position: absolute;
  z-index: 1;
  top: 150px;
  left: 0;
  width: 100%;
  color: #fff;
  padding: 0 15px;

}
.clinicInterior_support_box_txt_title{
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 19px;
  line-height: 1.5;
  border-bottom: 1px solid;
  padding-bottom: 15px;
}
.clinicInterior_support_box_txt_text{
  margin-top: 15px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.944;
}
.clinicInterior_support_box_txt_btn{
  margin-top: 27px;
}
.clinicInterior_support_box_txt_btn a{
  background: #950042;
  text-align: center;
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  padding: 5px 0;
}
.clinicInterior_support_box_txt_btn a:hover{
  color: #fff;
}
.clinicInterior_support_box_txt_btn a:after{
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 15px;
  width: 51px;
  height: 16px;
  transform: translateY(-50%);
  transition: 0.2s all;
  padding: 10px 0;
  clip-path: inset(0 0 0 25px);
  background: url(/system_panel/uploads/images/20250702140828299515.png) no-repeat center center / contain;
}
.clinicInterior_support_box_txt_btn a:hover:after{
  margin-right: -5px;
}

.body_clinicInterior .residentialInterior_services_item_title:after{
  height: 1px;
}
@media (max-width:374px){

}
@media (min-width:375px){
  .clinicInterior.residentialInterior_main_box2_img.img_fit{
    margin-right: calc(172.5px - 50vw);
  }
  .clinicInterior_box:nth-child(odd) .clinicInterior_box_img.img_fit{
    margin-left: calc(172.5px - 50vw);
  }
  .clinicInterior_box:nth-child(even) .clinicInterior_box_img.img_fit{
    margin-right: calc(172.5px - 50vw);
  }
}
@media (max-width:767px){
  .residentialInterior_flow_item_tel_title{
    margin-top: 30px;
  }

  .residentialInterior_services_item_inner2{
    padding: 20px 30px;
  }
  .pg_clinicInterior .section.sec3 .residentialInterior_features_box2{
    margin-top: 20px;
  }
  .clinicInterior_box_title{
    flex-wrap:wrap;
  }
  .clinicInterior_box_title_ja{
    width: 100%; 
  }
  .pg_clinicInterior .section.sec4 .clinicInterior_box_title_ja{
    font-size: 24px;
  }
}
@media (min-width:768px){
  .pg_clinicInterior{

  }
  .pg_clinicInterior .section.sec1{
    margin-top: -100px;
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .pg_clinicInterior .section.sec2{
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .pg_clinicInterior .section.sec3{
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .pg_clinicInterior .section.sec4{
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .pg_clinicInterior .section.sec5{
    padding-top: 0px;
    padding-bottom: 100px;
  }
  .pg_clinicInterior .section.sec6{
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .pg_clinicInterior .section.sec7{
    padding-top: 100px;
    padding-bottom: 100px;
    margin-bottom: -100px;
  }

  /*医療空間に、もっと安心と信頼を。*/
  .clinicInterior.residentialInterior_main_box2_img.img_fit{
    margin-top: 0;
    margin-right: calc(345px - 50vw);
  }
  .clinicInterior.residentialInterior_main_box2_img.img_fit:before{
    padding-top: 55.05%;
  }

  /*こんなクリニック、目指しませんか？*/
  .residentialInterior_services_item_inner2 .residentialInterior_services_item_title{
    font-size: 20px;
  }
  .clinicInterior.residentialInterior_services .sec_text{
    margin-top: 15px;
    text-align: center;
  }

  /*ただの内装では、終わらせない。*/
  .clinicInterior.residentialInterior_features_box .residentialInterior_features_box1_img.img_fit:before{
    padding-top: 60.31%;
  }
  .clinicInterior.residentialInterior_features_box .residentialInterior_features_box1{
    width: 49.01%;
  }
  .clinicInterior.residentialInterior_features_box .residentialInterior_features_box2{
    width: 44.73%;
    margin-top: 0;
  }

  /*医院の数だけ、空間がある。*/
  .clinicInterior_main_box{

  }
  .clinicInterior_box:nth-child(n+2){
    margin-top: 70px;
  }
  .clinicInterior_main_box1{
    width: 42.8%;
    position: relative;
    z-index: 1;
  }
  .clinicInterior_main_box1:after{
    content: "";
    background: #a8a385;
    width: 1px;
    height: 124%;
    position: absolute;
    z-index: 1;
    top: -14%;
    right: 0;
  }
  .clinicInterior_main_box2{
    width: 49.5%;
    margin-top: 5px;
  }
  .clinicInterior_main_box .sec_title{

  }
  .clinicInterior_main_box_title{
    font-size: 20px;
  }
  .clinicInterior_main_box .sec_text{
    margin-top: 0;
  }
  .clinicInterior_box_content{
    margin-top: 85px;
  }
  .clinicInterior_box{

  }
  .clinicInterior_box:nth-child(odd) .clinicInterior_box1,
  .clinicInterior_box:nth-child(even) .clinicInterior_box2{
    order: 1;
  }
  .clinicInterior_box:nth-child(even) .clinicInterior_box1,
  .clinicInterior_box:nth-child(odd) .clinicInterior_box2{
    order: 2;
  }
  .clinicInterior_box:nth-child(n+2){
    margin-top: 120px;
  }
  .clinicInterior_box1{
    width: 49.01%;
  }
  .clinicInterior_box2{
    width: 44.73%;
  }
  .clinicInterior_box_img.img_fit{
    width: 100%;
  }
  .clinicInterior_box_title{
    padding-bottom: 14px;
  }
  .clinicInterior_box_title_ja{
    font-size: 20px;
  }
  .clinicInterior_box_title_en{
    font-size: 14px;
    padding-left: 5px;
  }
  .clinicInterior_box .sec_text{
    margin-top: 15px;
    line-height: 2.1875;
  }
  .clinicInterior_box:nth-child(odd) .clinicInterior_box_img.img_fit{
    margin-left:auto;
  }
  .clinicInterior_box:nth-child(even) .clinicInterior_box_img.img_fit{
    /*    margin-left: auto;*/
    margin-right: auto;
  }

  /*どんなクリニックでも、まずは一度ご相談ください。*/
  .clinicInterior_type{

  }
  .clinicInterior_type_title{
    font-size: 30px;
  }
  .clinicInterior_type .sec_text{
    margin-top: 29px;
    text-align: center;
  }
  .clinicInterior_type .read_more{

  }

  /*開業の不安を、自信に変える。*/
  .clinicInterior_support{

  }
  .clinicInterior_support .sec_title{

  }
  .clinicInterior_support_title{
    font-size: 30px;
  }
  .clinicInterior_support .sec_text{
    text-align: center;
  }

  /*開業でお悩みなら、私たちにお任せください。*/
  .clinicInterior_support_box{
    margin-top: 90px;
  }
  .clinicInterior_support_box_img.img_fit{

  }
  .clinicInterior_support_box_img.img_fit:before{
    padding-top: 530px;
  }
  .clinicInterior_support_box_txt{
    padding: 0 0 0 10px;
    top: 40%;
  }
  .clinicInterior_support_box_txt_title{
    font-size: 30px;
    display: inline-block;
  }
  .clinicInterior_support_box_txt_text{
    margin-top: 20px;
    font-size: 18px;
  }
  .clinicInterior_support_box_txt_btn{
    margin-top: 27px;
  }
  .clinicInterior_support_box_txt_btn a{
    width: 510px;
    font-size: 24px;
    padding: 10px 0;
  }
  .clinicInterior_support_box_txt_btn a:after{
    clip-path: inset(0);
  }
  .pg_clinicInterior .section.sec4 .clinicInterior_box:nth-child(n+2){
    margin-top: 80px;
  }

}
@media (min-width:992px){
  .clinicInterior_box:nth-child(odd) .clinicInterior_box_img.img_fit{
    margin-left: calc(465px - 50vw);
  }
  .clinicInterior_box:nth-child(even) .clinicInterior_box_img.img_fit{
    margin-right: calc(465px - 50vw);
  }
  .pg_clinicInterior .section.sec4 .clinicInterior_box:nth-child(odd) .clinicInterior_box_img.img_fit{
    margin-left: auto;
  }
  .pg_clinicInterior .section.sec4 .clinicInterior_box:nth-child(even) .clinicInterior_box_img.img_fit{
    margin-right: auto;
  }
}
@media (min-width:1024px){
  .pg_clinicInterior{

  }
  .pg_clinicInterior .section.sec1{
    margin-top: -140px;
    padding-top: 140px;
    padding-bottom: 130px;
  }
  .pg_clinicInterior .section.sec2{
    padding-top: 85px;
    padding-bottom: 100px;
  }
  .pg_clinicInterior .section.sec3{
    padding-top: 96px;
    padding-bottom: 123px;
  }
  .pg_clinicInterior .section.sec4{
    padding-top: 111px;
  }
  .pg_clinicInterior .section.sec5{
    padding-top: 6px;
    padding-bottom: 95px;
  }
  .pg_clinicInterior .section.sec6{
    padding-top: 95px;
    padding-bottom: 82px;
  }
  .pg_clinicInterior .section.sec7{
    padding-top: 78px;
    margin-bottom: -195px;
    padding-bottom: 195px;
  }

  .clinicInterior.residentialInterior_services .residentialInterior_services_title{
    letter-spacing: 0.075em;
  }
  .body_clinicInterior .residentialInterior_services_item_title:after{
    height: 1px;
  }

  /*医療空間に、もっと安心と信頼を。*/
  .clinicInterior.residentialInterior_features_box_content{

  }
  .clinicInterior.residentialInterior_main_box2_img.img_fit:before{
    padding-top: 67.05%;
  }
  .clinicInterior.residentialInterior_main_box2_img.img_fit{
    margin-right: calc(465px - 50vw);
  }

  /*こんなクリニック、目指しませんか？*/
  .residentialInterior_services_item_inner2 .residentialInterior_services_item_title{
    font-size: 20px;
  }
  .clinicInterior.residentialInterior_services .sec_text{
    margin-top: 30px;
  }

  /*ただの内装では、終わらせない。*/
  .clinicInterior.residentialInterior_features_box:nth-child(n+2){
    margin-top: 120px;
  }
  .clinicInterior.residentialInterior_features .residentialInterior_features_title{
    margin-top: 0;
  }
  .residentialInterior_features_box2_nbr2{
    font-size: 55px;
  }

  /*医院の数だけ、空間がある。*/
  .clinicInterior_main_box{

  }
  .clinicInterior_main_box1{

  }
  .clinicInterior_main_box2{
    width: 49.7%;
  }
  .clinicInterior_main_box .sec_title{
  }
  .clinicInterior_main_box_title{
    font-size: 27px;
  }
  .clinicInterior_main_box .sec_text{

  }
  .clinicInterior_box_content{
    margin-top: 85px;
  }
  .clinicInterior_box{

  }
  .clinicInterior_box:nth-child(n+2){
    margin-top: 120px;
  }
  .pg_clinicInterior .section.sec4 .clinicInterior_box:nth-child(n+2){
    margin-top: 120px;
  }
  .clinicInterior_box1{

  }
  .clinicInterior_box2{

  }
  .clinicInterior_box_img.img_fit{

  }
  .clinicInterior_box_title{
    align-items: center;
    padding-bottom: 14px;
  }
  .clinicInterior_box_title_ja{
    font-size: 26px;
  }
  .clinicInterior_box_title_en{
    font-size: 18px;
  }
  .clinicInterior_box .sec_text{
    margin-top: 41px;
  }

  /*どんなクリニックでも、まずは一度ご相談ください。*/
  .clinicInterior_type{

  }
  .clinicInterior_type_title{
    font-size: 36px;
  }
  .clinicInterior_type .sec_text{
    margin-top: 29px;
  }
  .clinicInterior_type .read_more{
    margin-top: 70px;
  }

  /*こんなクリニック、目指しませんか？*/
  .residentialInterior_services_item_inner2 .residentialInterior_services_item_title{
    font-size: 18px;
  }

  /*開業の不安を、自信に変える。*/
  .clinicInterior_support{

  }
  .clinicInterior_support .sec_title{

  }
  .clinicInterior_support_title{
    font-size: 40px;
  }
  .clinicInterior_support .sec_text{
    margin-top: 66px;
  }

  /*開業でお悩みなら、私たちにお任せください。*/
  .clinicInterior_support_box{
    margin-top: 90px;
  }
  .clinicInterior_support_box_img.img_fit{

  }
  .clinicInterior_support_box_img.img_fit:before{
    padding-top: 500px;
  }
  .clinicInterior_support_box_txt{
    top: 8%;
    left: 3%;
    width: 60%;
  }
  .clinicInterior_support_box_txt_title{
    padding-bottom: 9px;
    font-size: 37px;
  }
  .clinicInterior_support_box_txt_text{
    margin-top: 20px;
    font-size: 18px;
  }
  .clinicInterior_support_box_txt_btn{
    margin-top: 27px;
  }
  .clinicInterior_support_box_txt_btn a{
    font-size: 24px;
    padding: 10px 0 14px;
  }


  .pg_clinicInterior .section.sec4 .clinicInterior_box_content{
    margin-top: 112px;
  }
  .pg_clinicInterior .section.sec4 .clinicInterior_box .clinicInterior_box2 {
    margin-top: 0;
    padding-top: 72px;
  }
}
@media (min-width:1200px){

  /*医療空間に、もっと安心と信頼を。*/
  .clinicInterior.residentialInterior_main_box2_img.img_fit{
    margin-right: calc(555px - 50vw);
  }

  /*医院の数だけ、空間がある。*/
  .clinicInterior_main_box .sec_title{

  }
  .clinicInterior_main_box_title{
    font-size: 27px;
  }
  .clinicInterior_box_title_ja{
    font-size: 34px;
  }
  .clinicInterior_box_title_en{
    font-size: 20px;
  }
  .clinicInterior_box:nth-child(odd) .clinicInterior_box_img.img_fit{
    margin-left: calc(555px - 50vw);
  }
  .clinicInterior_box:nth-child(even) .clinicInterior_box_img.img_fit{
    margin-right: calc(555px - 50vw);
  }
  .pg_clinicInterior .section.sec4 .clinicInterior_box:nth-child(odd) .clinicInterior_box_img.img_fit{
    margin-left: auto;
  }
  .pg_clinicInterior .section.sec4 .clinicInterior_box:nth-child(even) .clinicInterior_box_img.img_fit{
    margin-right: auto;
  }

  /*開業でお悩みなら、私たちにお任せください。*/
  .clinicInterior_support_box_img.img_fit:before{
    padding-top: 400px;
  }
  .clinicInterior_support_box_img.img_fit img{
    object-position: right;
  }
  .clinicInterior_support_box_txt{
    top: 8%;
    left: 3%;
    width: 45%;
  }
  .clinicInterior_support_box_txt_title{
    padding-bottom: 9px;
    font-size: 28px;
  }
  .clinicInterior_support_box_txt_text{
    font-size: 17px;
  }

  /*どんなクリニックでも、まずは一度ご相談ください。*/
  .clinicInterior_type{

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

  .residentialInterior_services_item_inner2 .residentialInterior_services_item_title{
    font-size: 24px;
  }
}
@media (min-width:1470px){

  /*開業でお悩みなら、私たちにお任せください。*/
  .clinicInterior_support_box_img.img_fit:before{
    padding-top: 360px;
  }
  .clinicInterior_support_box_txt_title{
    padding-bottom: 9px;
    font-size: 22px;
  }

  /*医院の数だけ、空間がある。*/
  .clinicInterior_main_box .sec_title{

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

  .clinicInterior_main_box1:after{
    height: 130px;
  }
}
@media (min-width:1520px){

  /*医療空間に、もっと安心と信頼を。*/
  .clinicInterior.residentialInterior_main_box1{
    margin-top: 78px;
  }
  .clinicInterior.residentialInterior_main_box2_img.img_fit{
    margin-right: calc(760px - 50vw);
  }

  /*こんなクリニック、目指しませんか？*/
  .clinicInterior.residentialInterior_services_item_content{
    margin: 70px -20px 0;
  }
  .clinicInterior.residentialInterior_services_item{
    padding: 0 20px;
  }
  .residentialInterior_services_item_inner2{
    padding: 35px 30px;
  }
  .residentialInterior_services_item_inner2 .residentialInterior_services_item_title{
    font-size: 24px;
  }
  .residentialInterior_services_item_inner2 .residentialInterior_services_item_title:after{
    margin: 13px auto 0;
  }
  .residentialInterior_services_item_inner2 .sec_text{
    margin-top: 24px;
  }

  /*開業でお悩みなら、私たちにお任せください。*/
  .clinicInterior_support_box_img.img_fit:before{
    padding-top: 400px;
  }
  .clinicInterior_support_box_img.img_fit img{
    object-position: right;
  }
  .clinicInterior_support_box_txt{
    top: 8%;
    left: 3%;
    width: 45%;
  }

  /*医院の数だけ、空間がある。*/
  .clinicInterior_main_box .sec_title{

  }
  .clinicInterior_main_box_title{
    font-size: 27px;
  }
  .clinicInterior_box_title_ja{
    font-size: 48px;
  }
  .clinicInterior_box_title_en{
    font-size: 20px;
  }


  .clinicInterior_box:nth-child(odd) .clinicInterior_box_img.img_fit{
    margin-left: calc(760px - 50vw);
  }
  .clinicInterior_box:nth-child(even) .clinicInterior_box_img.img_fit{
    margin-right: calc(760px - 50vw);
  }
  .pg_clinicInterior .section.sec4 .clinicInterior_box:nth-child(odd) .clinicInterior_box_img.img_fit{
    margin-left: auto;
  }
  .pg_clinicInterior .section.sec4 .clinicInterior_box:nth-child(even) .clinicInterior_box_img.img_fit{
    margin-right: auto;
  }

  .clinicInterior_main_box1:after{
    height: 124%;
  }
}
@media (min-width:1820px){

  /*医院の数だけ、空間がある。*/
  .clinicInterior_main_box .sec_title{

  }
  .clinicInterior_main_box_title{
    font-size: 40px;
  }
  .clinicInterior_box_title{
    align-items: baseline;
  }
  .clinicInterior_box_title_ja{
    font-size: 48px;
  }
  .clinicInterior_box_title_en{
    font-size: 20px;
    padding-left: 7px;
  }

  /*開業でお悩みなら、私たちにお任せください。*/
  .clinicInterior_support_box_img.img_fit:before{
    padding-top: 300px;
  }
  .clinicInterior_support_box_img.img_fit img{
    object-position: right;
  }
  .clinicInterior_support_box_txt{
    top: 8%;
    left: 3%;
    width: 75%;
  }
  .clinicInterior_support_box_txt_title{
    padding-bottom: 9px;
    font-size: 42px;
  }
  .clinicInterior_support_box_txt_text{
    font-size: 18px;
  }
}


/*******************************
*　コンサルティング
********************************/
.pg_consulting{

}
.pg_consulting .section.sec1{
  background: #f5f4f0;
  margin-top: -50px;
  padding-top: 50px;
  padding-bottom: 50px;
}
.pg_consulting .section.sec2{
  padding-top: 50px;
  padding-bottom: 50px;
}
.pg_consulting .section.sec3{
  background: #f5f4f0;
  padding-top: 50px;
  padding-bottom: 50px;
}
.pg_consulting .section.sec4{
  border-top: 1px solid #a09e91;
  background: #f5f4f0;
  padding-top: 50px;
  padding-bottom: 50px;
}
.pg_consulting .section.sec5{
  padding-top: 50px;
  padding-bottom: 100px;
  margin-bottom: -100px;
}

/*開業も、承継も。一人で抱えていませんか？*/
.consulting.residentialInterior_main_box2_img.img_fit{
  margin-left: calc(145px - 55vw);
  z-index: 2;
}
.consulting.residentialInterior_main_box2_img.img_fit:before{
  padding-top: 57.43%;
}
.consulting.residentialInterior_main_box2_img.img_fit:after{
  content: "";
  border: 1px solid #bab7a4;
  position: absolute;
  z-index: 0;
  right: -2%;
  bottom: -3.7%;
  width: 81.5%;
  height: 66%;
}
.consulting.residentialInterior_main_box .residentialInterior_main_box1{
  margin-top: 30px;
}
.consulting.residentialInterior_main_box .residentialInterior_main_box1_title strong{
  font-weight: 400;
  font-size: 30px;
  color: #950042;
}

/*つくるのは、未来のクリニック。*/
.consulting_service{

}
.consulting_service .sec_title{
  justify-content: center;
}
.consulting_service_title{
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
}
.consulting_service_box_content{
  margin-top: 30px;
}
.consulting_service_box_content .swiper-slide{
  height: auto;
}
.consulting_service_box{
  width: 100%;
  height: 100%;
}
.consulting_service_box_inner{
  background: #f5f4f0;
  height: 100%;
  padding: 20px 35px;
}
.consulting_service_box_title{
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
}
.consulting_service_box_title:after{
  content: "";
  display: block;
  background: #950042;
  width: 88.52px;
  height: 1.36px;
  margin-top: 15px;
}
.consulting_service_box_text{
  margin-top: 15px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}

/*「開業だけ」じゃない。あなたのキャリアに伴走します。*/
.consulting.clinicInterior_support_box{

}
.consulting.clinicInterior_support_box .clinicInterior_support_box_img.img_fit:before{
  padding-top: 500px;
}

/*「今あるもの」から、あなたらしい開業を。*/
.clinicInterior_plan{

}
.clinicInterior_plan .sec_title{
  justify-content: center;
}
.clinicInterior_plan_title{
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
}
.clinicInterior_plan_text{
  margin-top: 15px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.56125;
  line-height: 1.5;
  text-align: justify;
}
.clinicInterior_plan_item_content{
  margin-top: 50px;
}
.clinicInterior_plan_item{

}
.clinicInterior_plan_item:nth-child(n+2){
  margin-top: 70px;
}
.clinicInterior_plan_item_title{
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
  color: #fff;
}
.clinicInterior_plan_item_title.pn{
  background: #950042;
}
.clinicInterior_plan_item_title.ol{
  background: #a8a385;
}
.clinicInterior_plan_item_4s{
  margin-top: 30px;
}
.clinicInterior_plan_item_4{
  width: 100%;
}
.clinicInterior_plan_item_4_img.img_fit{
  width: 100%;
}
.clinicInterior_plan_item_4_img.img_fit:before{
  padding-top: 74.28%;
}
.clinicInterior_plan_item_4_title{
  margin-top: 15px;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.5;
  text-align: center;
}
.clinicInterior_plan_item_4_title:after{
  content: "";
  display: block;
  width: 45px;
  height: 1px;
  background: #950042;
  margin: 10px auto 0;
}
.clinicInterior_plan_item_4_text{
  margin-top: 10px;
  padding-left: 13px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.875;
}

/*ご依頼の流れ*/
.clinicInterior_flow_title{
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
}
.clinicInterior_flow_content{
  margin-top: 50px;
}
.clinicInterior_flow_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.clinicInterior_flow_box:nth-child(n+2){
  margin-top: 50px;
  padding-top: 50px;
  border-top: 1px solid #ababab;
}
.clinicInterior_flow_box1,
.clinicInterior_flow_box2{
  width: 100%;
}
.clinicInterior_flow_box1{

}
.clinicInterior_flow_box2{

}
.clinicInterior_flow_box_img.img_fit{

}
.clinicInterior_flow_box_img.img_fit:before{
  padding-top: 58.11%;
}
.clinicInterior_flow_box_nbr{
  margin-top: 15px;
  padding-bottom: 4px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 1;
  border-bottom: 3px solid #a8a385;
  color: #a8a385;
  display: inline-block;
}
.clinicInterior_flow_box_title{
  margin-top: 15px;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 21px;
  line-height: 1.5;
}
.clinicInterior_flow_box_text{
  margin-top: 15px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}

/*困ったとき、まず相談できる存在に。*/
.clinicInterior_reason{

}
.clinicInterior_reason .sec_title{
  justify-content: center;
}
.clinicInterior_reason_title{
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
}
.clinicInterior_reason_box_content{
  margin-top: 30px;
}
.clinicInterior_reason_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.clinicInterior_reason_box:nth-child(n+2){
  margin-top: 70px;
}
.clinicInterior_reason_box1,
.clinicInterior_reason_box2{
  width: 100%;
}
.clinicInterior_reason_box1{
  order: 2;
}
.clinicInterior_reason_box2{
  order: 1;
}
.clinicInterior_reason_box_title{
  margin-top: 15px;
  border-bottom: 1px solid #a8a385;
  position: relative;
  z-index: 1;
  padding-bottom: 13px;
}
.clinicInterior_reason_box_title_nbr{
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 100px;
  line-height: 1;
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  color: rgba(168, 163, 133, 0.102);
}
.clinicInterior_reason_box_title_nbr p{
  letter-spacing: 0;
}
.clinicInterior_reason_box_title_h{
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.575;
}
.clinicInterior_reason_box_text{
  margin-top: 15px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  text-align: justify;
}
.clinicInterior_reason_box_img.img_fit{

}
.clinicInterior_reason_box_img.img_fit:before{
  padding-top: 61.76%;
}

@media (max-width:374px){

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

  /*開業も、承継も。一人で抱えていませんか？*/
  .consulting.residentialInterior_main_box2_img.img_fit{
    margin-left: calc(172.5px - 55vw);
    z-index: 2;
  }
}
@media (max-width:767px){
  .pg_consulting .section.sec1 .residentialInterior_main_box1{
    order: 1;
  }
  .pg_consulting .section.sec1 .residentialInterior_main_box2{
    order: 2;
    margin-top: 20px;
  }

  .clinicInterior_flow_box_text,
  .pg_consulting .clinicInterior_plan_text,
  .pg_consulting .consulting_service_box_text,
  .pg_consulting .clinicInterior_reason_box_text{
    line-height: 2.1875em;
  }
}
@media (min-width:768px){
  .pg_consulting{

  }
  .pg_consulting .section.sec1{
    margin-top: -100px;
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .pg_consulting .section.sec2{
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .pg_consulting .section.sec3{
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .pg_consulting .section.sec4{
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .pg_consulting .section.sec5{
    padding-top: 100px;
    padding-bottom: 100px;
    margin-bottom: -100px;
  }

  /*開業も、承継も。一人で抱えていませんか？*/
  .consulting.residentialInterior_main_box2_img.img_fit{
    margin-left: calc(345px - 50vw);
  }
  .consulting.residentialInterior_main_box .residentialInterior_main_box1{
    order: 2;
    width: 42.9%;
  }
  .consulting.residentialInterior_main_box .residentialInterior_main_box2{
    order: 1;
    width: 50.98%;
  }
  .consulting.residentialInterior_main_box .residentialInterior_main_box1{
    margin-top: 0px;
  }
  .consulting.residentialInterior_main_box .residentialInterior_main_box1_title{
    font-size: 22px;
  }
  .consulting.residentialInterior_main_box .residentialInterior_main_box1_title strong{
    font-size: 44px;
  }

  /*つくるのは、未来のクリニック。*/
  .consulting_service{

  }
  .consulting_service .sec_title{

  }
  .consulting_service_title{
    font-size: 30px;
  }
  .consulting_service_box_content{
    margin: 50px -10px 0;
    display: flex;
    flex-wrap: wrap;
  }
  .consulting_service_box{
    width: 50%;
    padding: 0 10px;
  }
  .consulting_service_box:nth-child(n+3){
    margin-top: 20px;
  }
  .consulting_service_box_inner{
    padding: 20px 25px;
    height: 100%;
  }
  .consulting_service_box_title{
    font-size: 24px;
  }
  .consulting_service_box_text{
    line-height: 2.1875;
    ;
  }

  /*「開業だけ」じゃない。あなたのキャリアに伴走します。*/
  .consulting.clinicInterior_support_box .clinicInterior_support_box_img.img_fit:before{
    padding-top: 570px;
  }
  .consulting.clinicInterior_support_box .clinicInterior_support_box_txt{
    padding: 0 25px;
  }

  /*「今あるもの」から、あなたらしい開業を。*/
  .clinicInterior_plan{

  }
  .clinicInterior_plan .sec_title{

  }
  .clinicInterior_plan_title{
    font-size: 30px;
  }
  .clinicInterior_plan_text{
    line-height: 2.1875;
  }
  .clinicInterior_plan_item_content{
    margin-top: 73px;
  }
  .clinicInterior_plan_item{

  }
  .clinicInterior_plan_item:nth-child(n+2){
    margin-top: 50px;
  }
  .clinicInterior_plan_item_title{
    padding: 11px 0;
    font-size: 20px;
  }
  .clinicInterior_plan_item_4s{
    margin: 30px -10px 0;
    display: flex;
    flex-wrap: wrap;
  }
  .clinicInterior_plan_item_4{
    width: 50%;
    padding: 0 10px;
  }
  .clinicInterior_plan_item_4:nth-child(n+3){
    margin-top: 30px;
  }
  .clinicInterior_plan_item_4_img.img_fit{

  }
  .clinicInterior_plan_item_4_title{
    margin-top: 25px;
    font-size: 22px;
  }
  .clinicInterior_plan_item_4_text{
    margin-top: 5px;
    padding-left: 13px;
  }

  /*ご依頼の流れ*/
  .clinicInterior_flow_title{
    font-size: 30px;
  }
  .clinicInterior_flow_content{
    margin-top: 50px;
  }
  .clinicInterior_flow_box{

  }
  .clinicInterior_flow_box:nth-child(n+2){
    margin-top: 30px;
    padding-top: 30px;
  }
  .clinicInterior_flow_box1{
    width: 38.48%;
  }
  .clinicInterior_flow_box2{
    width: 57.23%;
  }
  .clinicInterior_flow_box_img.img_fit{

  }
  .clinicInterior_flow_box_nbr{
    margin-top: 10px;
    padding-bottom: 4px;
    font-size: 40px;
  }
  .clinicInterior_flow_box_title{
    margin-top: 15px;
    font-size: 20px;
  }
  .clinicInterior_flow_box_text{
    margin-top: 15px;
    line-height: 2.0625;
  }

  /*困ったとき、まず相談できる存在に。*/
  .clinicInterior_reason{

  }
  .clinicInterior_reason .sec_title{

  }
  .clinicInterior_reason_title{
    font-size: 30px;
  }
  .clinicInterior_reason_box_content{
    margin-top: 70px;
  }
  .clinicInterior_reason_box{

  }
  .clinicInterior_reason_box:nth-child(n+2){
    margin-top: 30px;
  }
  .clinicInterior_reason_box1{
    order: 1;
    width: 48.98%;
  }
  .clinicInterior_reason_box2{
    order: 2;
    width: 44.73%;
  }
  .clinicInterior_reason_box_title{
    padding-bottom: 13px;
  }
  .clinicInterior_reason_box_title_nbr{
    font-size: 100px;
  }
  .clinicInterior_reason_box_title_h{
    font-size: 22px;
  }
  .clinicInterior_reason_box_text{
    margin-top: 15px;
    line-height: 2.1875;
  }
  .clinicInterior_reason_box_img.img_fit{
    margin-top: 20px;
  }

  .pg_consulting .section.sec4 .clinicInterior_flow_box_nbr{
    margin-top: 0;
  }

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

  }
  .pg_consulting .section.sec1{
    margin-top: -140px;
    padding-top: 140px;
    padding-bottom: 120px;
  }
  .pg_consulting .section.sec2{
    padding-top: 98px;
    padding-bottom: 99px;
  }
  .pg_consulting .section.sec3{
    padding-top: 100px;
    padding-bottom: 84px;
  }
  .pg_consulting .section.sec4{
    padding-top: 72px;
    padding-bottom: 117px;
  }
  .pg_consulting .section.sec5{
    padding-top: 83px;
    margin-bottom: -195px;
    padding-bottom: 195px;
  }

  /*開業も、承継も。一人で抱えていませんか？*/
  .consulting.residentialInterior_main_box2_img.img_fit{
    margin-left: calc(345px - 50vw);
  }
  .consulting.residentialInterior_main_box .residentialInterior_main_box1_title{
    font-size: 30px;
  }
  .consulting.residentialInterior_main_box .residentialInterior_main_box1_title strong{
    font-size: 54px;
  }

  /*つくるのは、未来のクリニック。*/
  .consulting_service{

  }
  .consulting_service .sec_title{

  }
  .consulting_service_title{
    font-size: 40px;
  }
  .consulting_service_box_content{
    margin: 75px -20px 0;
  }
  .consulting_service_box{
    padding: 0 20px;
  }
  .consulting_service_box:nth-child(n+3){
    margin-top: 50px;
  }
  .consulting_service_box_inner{
    padding: 35px 45px 45px 40px;
    height: auto;
  }
  .consulting_service_box_title{
    font-size: 30px;
  }
  .consulting_service_box_title:after{
    width: 90.52px;
    height: 1.36px;
    margin-top: 15px;
  }
  .consulting_service_box_text{
    line-height: 2.2;
    margin-top: 17px;
  }

  /*「開業だけ」じゃない。あなたのキャリアに伴走します。*/
  .consulting.clinicInterior_support_box .clinicInterior_support_box_img.img_fit:before{
    padding-top: 420px;
  }
  .consulting.clinicInterior_support_box .clinicInterior_support_box_txt_title{
    font-size: 31px;
  }

  /*「今あるもの」から、あなたらしい開業を。*/
  .clinicInterior_plan{

  }
  .clinicInterior_plan .sec_title{

  }
  .clinicInterior_plan_title{
    font-size: 40px;
  }
  .clinicInterior_plan_text{
    margin-top: 30px;
    text-align: center;
  }
  .clinicInterior_plan_item_content{
    margin-top: 70px;
  }
  .clinicInterior_plan_item{
    padding: 5px 0;
  }
  .clinicInterior_plan_item:nth-child(n+2){
    margin-top: 68px;
  }
  .clinicInterior_plan_item_title{
    padding: 9px 0;
    font-size: 20px;
  }
  .clinicInterior_plan_item_4s{
    margin: 31px -20px 0;
  }
  .clinicInterior_plan_item_4{
    width: 25%;
    padding: 0 20px;
  }
  .clinicInterior_plan_item_4:nth-child(n+2){
    margin-top: 0;
  }
  .clinicInterior_plan_item_4_img.img_fit{

  }
  .clinicInterior_plan_item_4_title{
    margin-top: 25px;
    font-size: 20px;
  }
  .clinicInterior_plan_item_4_text{
    margin-top: 5px;
    padding-left: 13px;
  }

  /*ご依頼の流れ*/
  .clinicInterior_flow_title{
    font-size: 40px;
  }
  .clinicInterior_flow_content{
    margin-top: 50px;
  }
  .clinicInterior_flow_box{

  }
  .clinicInterior_flow_box:nth-child(n+2){
    margin-top: 39px;
    padding-top: 41px;
  }
  .clinicInterior_flow_box1{

  }
  .clinicInterior_flow_box2{

  }
  .clinicInterior_flow_box_img.img_fit{

  }
  .clinicInterior_flow_box_nbr{
    margin-top: 39px;
    padding-bottom: 4px;
    font-size: 50px;
  }
  .clinicInterior_flow_box_title{
    margin-top: 35px;
    font-size: 32px;
  }
  .clinicInterior_flow_box_text{
    margin-top: 20px;
  }

  /*困ったとき、まず相談できる存在に。*/
  .clinicInterior_reason{

  }
  .clinicInterior_reason .sec_title{

  }
  .clinicInterior_reason_title{
    font-size: 40px;
  }
  .clinicInterior_reason_box_content{
    margin-top: 95px;
  }
  .clinicInterior_reason_box{

  }
  .clinicInterior_reason_box:nth-child(n+2){
    margin-top: 117px;
  }
  .clinicInterior_reason_box1{

  }
  .clinicInterior_reason_box2{

  }
  .clinicInterior_reason_box_title{
    padding-bottom: 13px;
  }
  .clinicInterior_reason_box_title_nbr{
    font-size: 150px;
  }
  .clinicInterior_reason_box_title_h{
    font-size: 30px;
  }
  .clinicInterior_reason_box_text{
    margin-top: 35px;

  }
  .clinicInterior_reason_box_img.img_fit{
    margin-top: -17px;
  }
  .pg_consulting .section.sec5 .clinicInterior_reason_box_img.img_fit{
    margin-top: 0;
  }
  .pg_consulting .section.sec5 .clinicInterior_reason_box:nth-child(n+2){
    margin-top: 100px;
  }
  .pg_consulting .section.sec4 .clinicInterior_flow_box_nbr{
    margin-top: 0;
  }
}
@media (min-width:1200px){

  /*開業も、承継も。一人で抱えていませんか？*/
  .consulting.residentialInterior_main_box2_img.img_fit{
    margin-left: calc(555px - 50vw);
  }
  .consulting.residentialInterior_main_box .residentialInterior_main_box1_title{
    font-size: 36px;
  }
  .consulting.residentialInterior_main_box .residentialInterior_main_box1_title strong{
    font-size: 64px;
  }

  /*「開業だけ」じゃない。あなたのキャリアに伴走します。*/
  .consulting.clinicInterior_support_box .clinicInterior_support_box_img.img_fit:before{
    padding-top: 300px;
  }
  .consulting.clinicInterior_support_box .clinicInterior_support_box_img.img_fit img{
    object-position: top;
  }
  .consulting.clinicInterior_support_box .clinicInterior_support_box_txt{
    width: 75%;
    padding: 0;
  }
  .consulting.clinicInterior_support_box .clinicInterior_support_box_txt_title{
    font-size: 27px;
  }

  /*「今あるもの」から、あなたらしい開業を。*/
  .clinicInterior_plan_item_4_title{
    margin-top: 25px;
    font-size: 19px;
  }
  .pg_consulting .section.sec4 .clinicInterior_flow_box_nbr{
    margin-top: 0;
  }
}
@media (min-width:1520px){

  /*開業も、承継も。一人で抱えていませんか？*/
  .consulting.residentialInterior_main_box2_img.img_fit{
    margin-left: calc(760px - 50vw);
  }
  .consulting.residentialInterior_main_box .residentialInterior_main_box1_title{
    margin-top: 81px;
    font-size: 36px;
    line-height: 1.26;
  }

  /*「開業だけ」じゃない。あなたのキャリアに伴走します。*/
  .consulting.clinicInterior_support_box .clinicInterior_support_box_txt_title{
    font-size: 29px;
  }

  /*「今あるもの」から、あなたらしい開業を。*/
  .clinicInterior_plan_item_4_title{
    margin-top: 25px;
    font-size: 19px;
  }

  .pg_consulting .section.sec4 .clinicInterior_flow_box_nbr {
    margin-top: 39px;
  }
}
@media (min-width:1820px){
  .consulting.residentialInterior_main_box .residentialInterior_main_box1_title{
    font-size: 50px;
  }

  /*「開業だけ」じゃない。あなたのキャリアに伴走します。*/
  .consulting.clinicInterior_support_box .clinicInterior_support_box_txt_title{
    font-size: 40px;
  }

  /*「今あるもの」から、あなたらしい開業を。*/
  .clinicInterior_plan_item_4_title{
    margin-top: 25px;
    font-size: 22px;
  }

  /*困ったとき、まず相談できる存在に。*/
  .clinicInterior_reason_box_title_nbr{
    font-size: 201.87px;
    right: -2%;
    bottom: -8%;
  }
  .clinicInterior_reason_box_title_h{
    font-size: 40px;
  }
}
@media (min-width:1920px){

  /*「開業だけ」じゃない。あなたのキャリアに伴走します。*/
  .consulting.clinicInterior_support_box .clinicInterior_support_box_txt_title{
    font-size: 42px;
    letter-spacing: 0;
    text-indent: -22px;
  }

}


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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}


@media (max-width:374px){

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

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

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

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }


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


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


}



/*******************************
*　会社概要
********************************/
.pg_company{

}
.pg_company .section.sec1{
  background: #f5f4f0;
  padding-top: 50px;
  padding-bottom: 100px;
  margin-top: -50px;
  margin-bottom: -100px;
}

/*会社概要*/
.company_tbl{

}
.company_tbl .table_rows_tr{

}
.company_tbl .table_rows_th,
.company_tbl .table_rows_td{
  padding: 10px 15px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  border-color: #ababab;
}
.company_tbl .table_rows_th{
  background: #e5e5e5;
}
.company_tbl .table_rows_th p{
  letter-spacing: 0.08em;
}
.company_tbl .table_rows_td{
  background: #fff;
}

/*地図*/
.company_map{
  margin-top: 30px;
}
.company_map iframe{
  width: 100%;
  height: 200px;
  border: none;
}

/*ギャラリー*/
.company_gallery_items{
  margin: 30px -5px 0;
}
.company_gallery_item{
  padding: 0 5px;
}
.company_gallery_item{

}
.company_gallery_item:nth-child(n+3){
  margin-top: 10px;
}
.company_gallery_item_img.img_fit{

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


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

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

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

  /*会社概要*/
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    display: block;
    width: 100%;
    border: 1px solid #ababab;
    border-bottom: none;
  }
  .company_tbl .table_rows_tr:last-child .table_rows_td {
    border-bottom: 1px solid #ababab;
  }

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

  }
  .pg_company .section.sec1{
    margin-top: -100px;
    padding-top: 100px;
    padding-bottom: 100px;
    margin-bottom: -100px;
  }

  /*会社概要*/
  .company_tbl{

  }
  .company_tbl .table_rows_tr{

  }
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    padding: 20px 15px;
  }
  .company_tbl .table_rows_th{
    width: 200px;
  }
  .company_tbl .table_rows_td{

  }

  /*地図*/
  .company_map{
    margin-top: 45px;
  }
  .company_map iframe{
    height: 300px;
  }

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

  }


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

  }
  .pg_company .section.sec1{
    padding-top: 140px;
    padding-bottom: 195px;
    margin-top: -140px;
    margin-bottom: -195px;
  }

  /*会社概要*/
  .company_tbl{

  }
  .company_tbl .table_rows_tr{

  }
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    padding: 18px 15px 20.7px;
  }
  .company_tbl .table_rows_th{
    width: 284px;
  }
  .company_tbl .table_rows_td{
    padding-left: 20px;
  }

  /*地図*/
  .company_map{
    margin-top: 97px;
  }
  .company_map iframe{
    height: 400px;
  }

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

  }


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


}


/*******************************
*　記事一覧(2カラム)
********************************/
.pg_news{
  padding-top: 0px;
}
.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: #950042;
  color: #FFF;
  padding: 11px 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 20px;
}

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

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

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

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

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

.posts_back_list{

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

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


/* 動画 */
.post_video{

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

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

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

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

  .pg_news{
    padding-top: 0px;
  }
  .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: 99px;
  }

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

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


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

  /* リスト */
  .posts_list{

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

  }

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

  .pg_news{
    padding-top: 0px;
  }

}


/*******************************
*　新着情報
********************************/

.pg_news .section.sec1{
  background: #f5f4f0;
  padding-top: 50px;
  padding-bottom: 100px;
  margin-top: -50px;
  margin-bottom: -100px;
}

/*一覧*/
.news_list.home_news_list .webgene-item{

}
.news_list.home_news_list .webgene-item,
.news_list.home_news_list .webgene-item:first-child{
  border-color: #b9b9b9
}
.news_list.home_news_list .webgene-item a{
  position: relative;
  z-index: 1;
}
.news_list.home_news_list .txt_ellipsis_line2{
  -webkit-line-clamp: 1;
}
.news_list.home_news_list .webgene-item .title{
  width: 83%;
}
.news_list.home_news_list .webgene-item a:after{
  content: "→";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 3%;
  transform: translateY(-50%);
  font-family: "Zen Old Mincho", serif;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  color: #fff;
  background: #a8a385;
  border-radius: 50%;
  transition: all 0.2s;
}
.news_list.home_news_list .webgene-item a:hover:after{
  margin-right: -5px;
}
.news_list.home_news_list .webgene-item .title{
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
}
.news_list.home_news_list .webgene-item .category{
  background: #fff;
}

/*詳細*/
.news_detail{

}
.news_detail .webgene-blog{

}
.news_detail .webgene-item{

}
.news_detail .webgene-item .meta{
  display: flex;
}
.news_detail .webgene-item .date,
.news_detail .webgene-item .category,
.news_detail .webgene-item .title{
  font-family: "Shippori Mincho", serif;
  letter-spacing: 0.075em;
}
.news_detail .webgene-item .date,
.news_detail .webgene-item .category{
  font-weight: 400;
}
.news_detail .webgene-item .date{
  font-size: 18px;
}
.news_detail .webgene-item .category{
  font-size: 14px;
  text-align: center;
  background: #fff;
  color: #950042;
  border: 1px solid #950042;
  margin-left: 15px;
  width: 120px;
  padding: 2px 0 0;
}
.news_detail .webgene-item .title{
  margin-top: 14px;
  padding-bottom: 10px;
  font-weight: 500;
  font-size: 18px;
  border-bottom: 1px solid #cdcdcd;
}
.news_detail .webgene-item .post_content{
  border-bottom: 1px solid #cdcdcd;
  padding-top: 25px;
  padding-bottom: 25px;
}
.news_detail .webgene-item .post_content .txt{
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.075em;
  line-height: 1.5;
}
.news_detail .read_more a{
  width: 255px;
  padding: 15px 20px;
}
.news_detail .read_more a:after{
  clip-path: inset(0 0 0 17px);
}


@media (max-width:374px){

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

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

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

  .pg_news .section.sec1{
    background: #f5f4f0;
    padding-top: 100px;
    padding-bottom: 100px;
    margin-top: -100px;
    margin-bottom: -100px;
  }

  /*一覧*/
  .news_list.home_news_list .webgene-item{

  }

  /*詳細*/
  .news_detail{

  }
  .news_detail .webgene-blog{

  }
  .news_detail .webgene-item{

  }
  .news_detail .webgene-item .meta{

  }
  .news_detail .webgene-item .date{

  }
  .news_detail .webgene-item .category{
    width: 125px;
    margin-left: 20px;
  }
  .news_detail .webgene-item .title{
    margin-top: 14px;
    padding-bottom: 10px;
  }
  .news_detail .webgene-item .post_content{
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .news_detail .webgene-item .post_content .txt{
    line-height: 2.125;
  }


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

  .pg_news .section.sec1{
    background: #f5f4f0;
    padding-top: 140px;
    padding-bottom: 195px;
    margin-top: -140px;
    margin-bottom: -195px;
  }

  /*一覧*/
  .news_list.home_news_list .webgene-item{
    padding: 27px 1px 28px;
  }
  .news_list.home_news_list .webgene-item a{

  }
  .news_list.home_news_list .webgene-item .date{
    font-size: 16px;
  }
  .news_list.home_news_list .webgene-item .category{
    margin: 0 39px 0 33px;
  }
  .news_list.home_news_list .webgene-item .title{
    margin-top: 0;
    width: 47%;
  }
  .news_list .webgene-pagination{
    margin-top: 71px;
  }

  .body_news .news_list.home_news_list .webgene-item .title{
    width: 55%;
  }

  /*詳細*/
  .news_detail{

  }
  .news_detail .webgene-blog{

  }
  .news_detail .webgene-item{

  }
  .news_detail .webgene-item .meta{

  }
  .news_detail .webgene-item .date{

  }
  .news_detail .webgene-item .category{
    width: 125px;
    margin-left: 29px;
  }
  .news_detail .webgene-item .title{
    margin-top: 14px;
    padding-bottom: 10px;
  }
  .news_detail .webgene-item .post_content{
    padding-top: 50px;
    padding-bottom: 72px;
  }
  .news_detail .webgene-item .post_content .txt{

  }
  .news_detail .read_more{
    margin-top: 75px;
  }
  .news_detail .read_more a:after{
    right: 16px;
  }




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


}



/*******************************
*　施工事例
********************************/
.pg_work{

}
.pg_work .section.sec1{
  background: #f5f4f0;
  padding-top: 50px;
  padding-bottom: 100px;
  margin-top: -50px;
  margin-bottom: -100px;
}

/*カテゴリー*/
.works_category{

}
.works_category .webgene-blog{
  margin: 0 -5px;
  display: flex;
  flex-wrap: wrap;
}
.works_category .webgene-item{
  width: 50%;
  padding: 0 5px;
}
.works_category .webgene-item:nth-child(n+3){
  margin-top: 10px;
}
.works_category .webgene-item a{
  display: block;
  font-family: "Shippori Mincho", serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.2em;
  line-height: 1.2;
  text-align: center;
  border: 1px solid #a8a385;
  background: #a8a385;
  /* border-radius: 27px; */
  color: #FFF;
  padding: 10px 10px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.works_category .webgene-item a:after{
  content: "→";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 3px;
  transform: translateY(-50%);
  font-family: "Zen Old Mincho", serif;
}
.works_category .webgene-item a.on,
.works_category .webgene-item a:hover{
  color: #a8a385;
  background: #fff;
}
.works_category .webgene-item a:hover:after{
  margin-right: -5px;
}

/*一覧*/
.works_list{
  margin-top: 50px;
}
.works_list .webgene-blog{
  margin: 0 -5px;
  display: flex;
  flex-wrap: wrap;
}
.works_list .webgene-item{
  width: 50%;
  padding: 0 5px;
}
.works_list .webgene-item:nth-child(n+3){
  margin-top: 30px;
}
.works_list .webgene-item .img.img_fit{
  overflow: hidden;
}
.works_list .webgene-item .img.img_fit:before{
  padding-top: 74.42%;
}
.works_list .webgene-item .meta{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 11px;
}
.works_list .webgene-item .category,
.works_list .webgene-item .txt,
.works_list .webgene-item .title{
  font-weight: 400;
  letter-spacing: 0.075em;
}
.works_list .webgene-item .category,
.works_list .webgene-item .txt{
  font-family: "Shippori Mincho", serif;
  font-size: 11px;
}
.works_list .webgene-item .txt{
  font-weight: 600;
}
.works_list .webgene-item .category{
  display: inline-block;
  transition: 0.2s all;
  line-height: 1.5;
  font-weight: 600;
  width: auto;
}
.works_list .webgene-item .txt{
  border-left: 1px solid;
  line-height: 1;
  margin-left: 5px;
  padding-left: 5px;
}
.works_list .webgene-item .inner:hover .category{
  border-color: #8a691e;
}
.works_list .webgene-item .title{
  margin-top: 3px;
  font-size: 16px;
  line-height: 1.75;
}
.webgene-pagination{

}
.webgene-pagination li{
  background: transparent;
  border: 1px solid #a8a385;
}
.webgene-pagination li.selected{
  background: #a8a385;
  color: #fff;
}
.webgene-pagination li:hover{
  background-color: #a8a385;
  color: #FFF;
}
.webgene-pagination li:hover a{
  color: #FFF;
}

/* 詳細 */
.works_detail{

}
.works_detail .webgene-blog{

}
.works_detail .webgene-item{

}
.works_detail .webgene-item .post_content{
  margin-top: 50px;
  padding: 25px 20px;
  border: 1px solid #a8a385;
  background: #fff;
  position: relative;
  z-index: 1;
}
.works_detail .webgene-item .title{
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.075em;
  line-height: 1.5;
  text-align: justify;
  border-bottom: 1px solid #a8a385;
  padding-bottom: 15px;
}
.works_detail .webgene-item .post_txt{
  margin-top: 15px;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.075em;
  line-height: 1.5;
  text-align: justify;
}

@media (max-width:374px){

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

}
@media (max-width:767px){
  .works_detail .webgene-item .title{
    font-size: 17px;
  }
}
@media (min-width:768px){

  .pg_work .section.sec1{
    margin-top: -100px;
    padding-top: 100px;
    padding-bottom: 100px;
    margin-bottom: -100px;
  }

  /*カテゴリー*/
  .works_category{

  }
  .works_category .webgene-blog{
    margin: 0 -10px 0;
  }
  .works_category .webgene-item{
    width: 33.33%;
    padding: 0 10px;
  }
  .works_category .webgene-item:nth-child(n+2){
    margin-top: 0;
  }
  .works_category .webgene-item:nth-child(n+4){
    margin-top: 30px;
  }
  .works_category .webgene-item a{
    padding: 16px 20px;
  }
  .works_category .webgene-item a:after{
    right: 9px;
  }
  .works_category .webgene-item a:hover{

  }
  .works_category .webgene-item a:hover:after{

  }

  /*一覧*/
  .works_list{
    margin-top: 70px;
  }
  .works_list .webgene-blog{
    margin: 0 -10px;
  }
  .works_list .webgene-item{
    width: 33.33%;
    padding: 0 10px;
  }
  .works_list .webgene-item:nth-child(n+3){
    margin-top: 0px;
  }
  .works_list .webgene-item:nth-child(n+4){
    margin-top: 30px;
  }
  .works_list .webgene-item .img.img_fit{

  }
  .works_list .webgene-item .category,
  .works_list .webgene-item .txt{
    font-size: 12px;
  }
  .works_list .webgene-item .category{
  }
  .works_list .webgene-item .txt{
    margin-left: 15px;
    padding-left: 15px;
  }
  .works_list .webgene-item .title{
    margin-top: 5px;
  }
  .works_list .webgene-pagination{

  }

  /* 詳細 */
  .works_detail{

  }
  .works_detail .webgene-blog{

  }
  .works_detail .webgene-item{

  }
  .works_detail .webgene-item .title{
    font-size: 24px;
    padding-bottom: 12px;
  }
  .works_detail .webgene-item .post_content{
    margin-top: 70px;
    padding: 30px 25px;
  }
  .works_detail .webgene-item .post_txt{
    margin-top: 11px;
    font-size: 18px;
    line-height: 2.055;
  }


}
@media (min-width:1024px){
  .pg_work .section.sec1{
    padding-top: 140px;
    padding-bottom: 195px;
    margin-top: -140px;
    margin-bottom: -195px;
  }

  /*カテゴリー*/
  .works_category{

  }
  .works_category .webgene-blog{
    margin: 0 -15px 0;
  }
  .works_category .webgene-item{
    padding: 0 15px;
  }
  .works_category .webgene-item:nth-child(n+4){
    margin-top: 20px;
  }
  .works_category .webgene-item a{
    padding: 15px 20px 15px;
  }
  .works_category .webgene-item a:after{

  }
  .works_category .webgene-item a:hover{

  }
  .works_category .webgene-item a:hover:after{

  }

  /*一覧*/
  .works_list{
    margin-top: 100px;
  }
  .works_list .webgene-blog{
    margin: 0 -15px;
  }
  .works_list .webgene-item{
    width: 33.33%;
    padding: 0 15px;
  }
  .works_list .webgene-item:nth-child(n+4){
    margin-top: 63px;
  }
  .works_list .webgene-item .img.img_fit{

  }
  .works_list .webgene-item .category,
  .works_list .webgene-item .txt{
    font-size: 14px;
  }
  .works_list .webgene-item .category{
  }
  .works_list .webgene-item .txt{
    margin-left: 21px;
    padding-left: 23px;
  }
  .works_list .webgene-item .title{
    margin-top: 9px;
  }
  .works_list .webgene-pagination{
    margin-top: 96px;
  }

  /* 詳細 */
  .works_detail{

  }
  .works_detail .webgene-blog{

  }
  .works_detail .webgene-item{

  }
  .works_detail .webgene-item .title{
    font-size: 30px;
    padding-bottom: 12px;
  }
  .works_detail .webgene-item .post_content{
    margin-top: 101px;
    padding: 30px 57px 28px 62px;
  }
  .works_detail .webgene-item .post_txt{
    margin-top: 11px;
    padding-left: 3px;
  }
  .works_detail .read_more{
    margin-top: 44px;
  }


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


}


/*******************************
*　ギャラリー（サムネ縦ver）
********************************/

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

/* メイン */
.gallery_main{

}
.gallery_main .img{
  background: transparent;
}
.gallery_main .img.img_fit:before{
  padding-top: 67.39%;
}
.gallery_main .img.img_fit img{
  object-fit: contain;
  object-position: center;
}
/* サムネ */
.gallery_thumb{
  margin-top: 10px;
}
.gallery_thumb .img{
  width: 100%;
  background: #EEE;
  overflow: hidden;
}
.gallery_thumb .img.img_fit:before{
  padding-top: 67.85%;
}
.gallery_thumb .img.img_fit img{

}

/* 詳細 */
.gallery_detail{
  border: 1px solid #3a3a3a;
  padding: 16px 16px;
  margin-top: 30px;
}
.gallery_detail .meta{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px solid #3a3a3a;

  margin-bottom: 15px;
  padding-bottom: 10px;

}
.gallery_detail .meta .title{
  font-size: 18px;
  letter-spacing: 0.085em;
  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.31em;
  ;
  text-align: justify;
  word-break: break-all;
}
.gallery_detail .read_more{
  margin-top: 50px;
}
.gallery_slide_prev i,
.gallery_slide_next i{
  display: none;
}
.gallery_slide_prev,
.gallery_slide_next{
  position: absolute;
  z-index: 1;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: var(--main-color);
  font-size: 22px;
  cursor: pointer;
  height: 25px;
}
.fa-chevron-circle-left:before,.fa-chevron-circle-right:before{
  display: none;
}
.works_detail .gallery_slide_next:after,
.works_detail .gallery_slide_prev:before{
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 14px;
  border-radius: 50%;
  display: block;
  width:25px;
  height: 25px;
  aspect-ratio:1 / 1;
  color: #fff;
  background-color: #a8a385;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  display: flex;
  justify-content: center;
  align-items: center;
}
.works_detail .gallery_slide_prev{
  left:-5.9%;
}
.works_detail .gallery_slide_prev:before{
  content: "←";
}
.works_detail .gallery_slide_next:after{
  content: "→";
}
.works_detail .gallery_slide_prev{
  left: -10%;
}
.works_detail .gallery_slide_next{
  right: -10%;
}
/* コピー用 */
@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: 82.88%;
  }
  .gallery_box2{
    width: 82.88%;
    margin-top: 0;
  }

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

  }

  /* 詳細 */
  .gallery_detail{
    width: 100%;
    margin-top: 70px;
    padding: 27px 20px;
  }
  .gallery_detail .meta{
    margin-top: 10px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    margin-top: 20px;
  }

  .gallery_detail .meta .title{
    font-size: 20px;
  }
  .gallery_detail .meta .price{
    font-size: 18px;
  }
  .gallery_detail .post_content{
    font-size: 16px;
    line-height: 2;
  }
  .gallery_detail .read_more{
    margin-top: 50px;
  }
  .works_detail .gallery_slide_prev{
    left: -6%;
  }
  .works_detail .gallery_slide_next{
    right: -6%;
  }
}
@media (min-width:1024px){

  /* 詳細 */
  .gallery_wrap{

  }
  .gallery_detail{
    width: 100%;
    margin-top: 100px;
    padding: 27px 62px 32px;
  }
  .gallery_detail .meta{
    margin-top: 10px;
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
  .gallery_detail .meta .title{
    font-size: 23px;
  }
  .gallery_detail .meta .price{
    font-size: 20px;
  }
  .gallery_detail .post_content{
    font-size: 16px;
    line-height: 2;
  }
  .gallery_detail .read_more{
    margin-top: 50px;
  }

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


}





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

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

@media (max-width:1023px){

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

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

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

/* フォーム */
.pg_contact .formTbl{
  border: 1px solid #b2b2b2;
  background: #ffffff;
}
.pg_contact .form.formWrap {
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}
.pg_contact .formRow + .formRow{
  border-top: 1px solid #ababab;
}
.pg_contact .formTh {
  padding: 16px 15px 15px 20px;
  background: #e5e5e5;
  letter-spacing: 0.08em;
}
.pg_contact .formTh label{
  margin: 0;
}
.d-inline-block.requiredText {
  padding: 2px 11px;
  margin-top: 2px;
  float: right;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.12em;
  background: #b80000;
  color: #ffffff;
}
.d-inline-block.requiredText.unrequiredText{
  background: #ffffff;
  color: #b80000;
  border: 2px solid #b80000;
}
.pg_contact .formTd {
  font-size: 16px;
  padding: 10px 17px 9px;
}
.pg_contact .formTd input[type="text"],
.pg_contact .formTd input[type="tel"],
.pg_contact .formTd input[type="email"]{
  max-width: 461px;
  height: 39px;
  width: 100%;
  font-size: 15px;
  padding: 0px 12px 3px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
  letter-spacing: 0.16em;
}
.pg_contact .formTd select{
  border-radius: 0;
}
.pg_contact .formTd input[name="zip1"]{
  max-width: 120px;
}
.pg_contact .formTd input[name="zip2"]{
  max-width: 150px;
}
.pg_contact .formTd select[name="pref"]{
  max-width: 225px;
  width: 100%;
  font-size: 16px;
  padding: 6px 10px;
  border: 1px solid #d6d8d8;
}
.pg_contact .formTd input[name="city"]{
  max-width: 425px;
}
.pg_contact .formTd .addArea + .addArea{
  margin-top: 10px;
}
.pg_contact .formTd .addArea .labelText02{
  width: 77px;
}
.pg_contact .formTd textarea{
  width: 100%;
  height: 280px;
  font-size: 15px;
  letter-spacing: 0.16em;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
}
.pg_contact .formWrap .text-center{
  padding-top: 65px;
}
.pg_contact input[name="privacy"]{
  margin-right: 7px;
}
.pg_contact .privacyLabel{
  font-size: 17px;
  display: inline;
}
.pg_contact .privacyLabel a{
  color: #a8a385;
}
.pg_contact .formBtn.formSend:before,
.pg_contact .formBtn.formSend:after{
  content: "";
  position: absolute;
  z-index: 1;
}
.pg_contact .formBtn.formSend:before{
  border: 1px solid #a8a385;
  inset: -3px;
}
.pg_contact .formBtn.formSend:after{
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 15px;
  width: 51px;
  height: 16px;
  transform: translateY(-50%);
  transition: 0.2s all;
  background: url(	/system_panel/uploads/images/20250702140828299515.png) no-repeat center center / contain;
}
.pg_contact .formBtn.formSend {
  max-width: 249px;
  width: 100%;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 15px;
  text-align: center;
  padding: 11px 0;
  margin: 48px auto 0;
  border: 0;
  background: #a8a385;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.1em;
  display: block;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.pg_contact label {
  display: inline-block;
  margin-bottom: 0;
}
.radioArea{
  line-height: 2.2;
  padding: 0px 1px;
  margin: -1px 0 0;
}
.radioArea .d-inline-block .label{
  margin-left: 4px;
  letter-spacing: 0.08em;
}
.radioArea .d-inline-block{
  margin-right: 30px;
}
.radioArea .d-inline-block:last-child{
  margin-right: 0;
}
label.label.zipcode_i {
  padding: 6.5px 5px;
  background: #cccccc;
  margin: 0;
  display: inline-block;
  border: 1px solid #d6d8d8;
  border-right: 0;
  vertical-align: top;
}
.pg_contact .section.sec1 {
  padding: 0 0 0;
}
@media only screen and (max-width: 768px){
  .pg_contact .formTh{
    font-size: 14px;
    padding: 16px 10px 15px;
  }
  .d-inline-block.requiredText{
    padding: 2px 7px;
    margin-top: 0px;
  }
}

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


/* プライバシー */
.pg_contact .section.sec2{
  padding: 150px 0 20px;
}
.pg_contact .section.sec2 .contact_tt{
  margin-bottom: 47px;
  padding-left: 10px;
}
.contact_tt {
  font-weight: 400;
  font-size: 21px;
  text-align: center;
  margin-bottom: 25px;
  letter-spacing: 0.2em;
}
.contact_tt.privacy{
  font-family: "Noto Sans JP";
  font-weight: 500;
}
.privacy_box{
  padding: 2.5% 2% 0% 2.3%;
  background: #fff;
  border: 1px solid #181818;
  height: 397px;
  overflow: auto;
}
.privacy_item {
  margin-top: 30px;
}
.privacy_ttl {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.04em;
  padding: 7px 15px;
  margin-bottom: 12px;
  border-left: 6px solid #a8a385;
}
.privacy_txt{
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 1.875;
  text-align: justify;
}

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

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

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

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


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


  .privacy_ttl{
    font-size: 18px;
  }

}

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

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

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

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


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

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

  .privacy_ttl {
    font-size: 18px;
    padding-left: 10px;
  }
  .pg_contact .formBtn.formSend{
    margin: 30px auto 0;
  }

  .privacy_box{
    padding: 30px 10px;
  }


}

/*******************************
*　お問い合わせ送信完了
********************************/
.pg_thanks .link_3{
  margin-top: 50px;
}
.pg_thanks .section.sec1{
  background: #f5f4f0;
  padding-top: 100px;
  margin-top: -100px;
  padding-bottom: 100px;
  margin-bottom: -100px;
}
.thanks{

}
.thanks .sec_title{
  justify-content: center;
}
.thanks_title{
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
}
.thanks_text{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}

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

.pg_contact .section.sec1{
  background: #f5f4f0;
  padding-top: 100px;
  margin-top: -100px;
}
.pg_contact .section.sec2{
  background: #f5f4f0;
  padding-top: 50px;
  padding-bottom: 100px;
  margin-bottom: -100px;
}

@media (min-width:768px){
  .pg_contact .section.sec1{
    margin-top: -100px;
    padding-top: 100px;
  }
  .pg_contact .section.sec2{
    padding-top: 50px;
    padding-bottom: 100px;
    margin-bottom: -100px;
  }
  .pg_thanks .section.sec1{
    margin-top: -100px;
    padding-top: 100px;
    padding-bottom: 100px;
    margin-bottom: -100px;
  }
  .thanks_title{
    font-size: 30px;
  }


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

  .pg_contact .section.sec1{
    padding-top: 140px;
    margin-top: -140px;
  }
  .pg_contact .section.sec2{
    padding-top: 64px;
    padding-bottom: 195px;
    margin-bottom: -195px;
  }
  .pg_thanks .section.sec1{
    padding-top: 140px;
    margin-top: -140px;
    padding-bottom: 195px;
    margin-bottom: -195px;
  }
  .thanks_title{
    font-size: 40px;
  }


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


}


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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}


@media (max-width:374px){

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

}
@media (max-width:767px){
  .pg_thanks .link_3{
    margin-top: 30px;
  }
  .residentialInterior_main_box1_title{
    font-size: 24px;
  }
}
@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{

  }

  .residentialInterior_main_box1_title{
    font-size: 30px;
  }
}
@media (min-width:1024px){


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

  .residentialInterior_main_box1_title{
    font-size: 38px;
  }
}
