@charset "UTF-8";
/* サイト毎に定義するスタイル */
body
{
  font-family: "游ゴシック", "Yu Gothic" , "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, "メイリオ",Helvetica, Arial, YuGothic,sans-serif;
  background:#fff;
  color: #333333;
  font-weight: 300;
}

@media screen and (max-width:1024px) {
  body {
    font-size: 12px;
  }
}
@media screen and (max-width:320px) {
  p {
    font-size: 10px;
  }
}

h2 {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.25em;
}

@media screen and (max-width:1024px) {
  h2 {
    font-size: 24px;
  }
}

@media screen and (max-width:414px) {
  h2 {
    font-size: 21px;
  }
}

@media screen and (max-width:320px) {
  h2 {
    font-size: 17px;
  }
}

h3 {
  font-size: 26px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.3rem;
}

@media screen and (max-width:1024px) {
  h3 {
    font-size: 22px;
  }
}

@media screen and (max-width:414px) {
  h3 {
    font-size: 18px;
  }
}

@media screen and (max-width:320px) {
  h3 {
    font-size: 16px;
  }
}

h3 span {
  display: inline-block;
  border-bottom: 2px solid #333;
}

@media screen and (max-width:414px) {
  h3 span {
    margin: 0 63px;
  }
}

h4 {
  font-size: 24px;
  font-weight: 600;
}

@media screen and (max-width:1024px) {
  h4 {
    font-size: 16px;
  }
}

ul,li {
  font-weight: 500;
  list-style: none;
}

dl, dt, dd {
  margin: 0;
  padding: 0;
}

a {
  text-decoration:none;
  color: #333333;
  cursor: pointer;
}

a:hover {
  opacity: 0.8;
}

/**********************
*
*  Common 
*
***********************/
.c-fff {
  color: #fff;
}

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

.btn {
  display: block;
  background-color: #333;
  text-align: center;
}

.btn_m {
  width: 185px;
  height: 40px;
  margin-top: 30px;
  padding: 10px 15px 10px 12px;
}

@media screen and (max-width:1024px) {
  .btn_m {
    width: 170px;
    height: 35px;
    margin-top: 20px;
    padding: 8px 10px;
  }
}

.btn_l {
  width: 267px;
  margin-top: 30px;
  padding: 10px 15px 10px 12px;
}

@media screen and (max-width:1024px) {
  .btn_l {
    width: 250px;
    margin-top: 20px;
    padding: 8px 10px;
  }
}

.btn_xl {
  display: block;
  padding: 45px 35px;
  background-color: #333;
}

.btn .arrow {
  width:10px;
  height: 10px;
  margin-left: 0;
  margin-right: 2.5rem;
}

/**********************
*
*  Header 
*
***********************/
.site_header {
  position: relative;
  z-index: 100;
  padding-left: 4rem;
  line-height:1em;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

@media screen and (max-width: 1180px) {
  .site_header {
    padding: 2% 3% 2% 2%;
    flex-wrap: nowrap;
  }
}

@media screen and (max-width: 414px) {
  .site_header {
    padding-left: 4%;
    padding-right: 6%;
    flex-wrap: nowrap;
  }
}

.site_header .header_logo {
  width:358px;
  height:auto;
  margin:0;
}

@media screen and (max-width: 1180px) {
  .site_header .header_logo {
    width: 60%;
  }
}

.site_header .header_logo img {
  width:358px;
  min-width: 200px;
  height:auto;
  vertical-align: middle;
}

@media screen and (max-width: 1180px) {
  .site_header .header_logo img{
    width: 70%;
  }
}

@media screen and (max-width: 414px) {
  .site_header .header_logo img{
    width: 250px;
  }
}

/* nav menu */
@media screen and (max-width: 1180px) {
  .header_nav {
    position: fixed;
    top: 6rem;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s;
    background-color: #fff;
  }

  .header_nav.active{
    opacity: 1;
    visibility: visible;
    z-index: 999;
  }
}

@media screen and (max-width:768px) {
  .header_nav {
    top: 4rem;
  }
}

@media screen and (max-width:375px) {
  .header_nav {
    top: 3rem;
  }
}

.header_nav .header_ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.header_ul li {
  margin-right: 2rem;
}

.header_ul li:last-child {
  margin-right: 0;
}

.btn_xl .span_model_house {
  color: #fff;
  font-weight: 600;
  border-bottom: solid 2px #fff;
  padding-bottom: 8px;
}

.header_nav.active .header_ul{
  flex-direction: column;
  padding-inline-start: 0;
}

@media screen and (max-width:393px) {
  .header_nav.active .header_ul{
    flex-direction: column;
    padding-inline-start: 0;
    max-width: 393px;
    width: 100%;
  }
}

.header_nav.active .header_ul li{
  margin: 2rem auto;
}

.header_nav.active .header_ul li:first-of-type{
  margin-top: 10rem;
}

/* humbugger menu */
.header_nav_btn {
  display: none;
}

@media screen and (max-width: 1180px) {
  .header_nav_btn {
    display: block;
    position: relative;
    width: 1.75rem;
    height: 1.5rem;
    z-index: 999;
    padding: 10px;
  }

  .header_nav_btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #333;
    position: absolute;
    transition: transform .5s, opacity .5s;
  }

  .header_nav_btn span:nth-child(1) {
    top: 0;
  }

  .header_nav_btn span:nth-child(2) {
    top: 0;
    bottom: 0;
    margin: auto;
  }

  .header_nav_btn span:nth-child(3) {
    bottom: 0;
  }

  .header_nav_btn.active span:nth-child(1) {
    transform: translateY(10px) rotate(-45deg);
  }

  .header_nav_btn.active span:nth-child(2) {
    opacity: 0;
  }

  .header_nav_btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(45deg);
  }
}

/**********************
*
*  Top Page
*
***********************/

/* Mv */
.sec_mv {
  /* margin: 0 auto;
  margin-bottom: 80px;
  width:100%;
  height: 100%;
  min-height:530px;
  background: url("../img/01_TOP.png") center center no-repeat;
  background-size: cover;
  position: relative;
  z-index: 0; */
  margin-bottom: 80px;
  position: relative;
  background: url("../img/mv_back.png") center center no-repeat;
  background-size: cover;
}

.sec_mv::before {
  content: " ";
  width: 100%;
  height: 100%;
  background-color: rgba(255,255,255, 0.8);
  z-index: 0;
  position: absolute;
  left: 0;
  top: 0;
}

.sec_mv .mv_container {
  position: relative;
  z-index: 3;
}

.img_mv {
  width: 100%;
  height: 70vh;
  object-fit: contain;
}


@media screen and (max-width:928px) {
  .img_mv {
    height: auto;
  }
}

/* @media screen and (max-width:1440px) {
  .sec_mv {
    background-image: url("../img/01_TOP_1440.png");
  }
}

@media screen and (max-width:1280px) {
  .sec_mv {
    background-image: url("../img/01_TOP_1280.png");
  }
}

@media screen and (max-width:768px) {
  .sec_mv {
    margin-bottom: 40px;
    background-image: url("../img/01_TOP_768.png");
  }
}

@media screen and (max-width:414px) {
  .sec_mv {
    min-height:320px;
    background-image: url("../img/01_TOP_375.png");
  }
}

@media screen and (max-width:375px) {
  .sec_mv {
    min-height:300px;
  }
} */


/* .sec_mv .band_wrap {
  width: 100%;
  padding: 3rem 7.4rem;
  background-color: rgba(51,51,51, 0.25);
  position: absolute;
  z-index: 2;
  top: 250px;
  line-height: 3rem;
  color: #fff;
  font-weight: 600;
}

@media screen and (max-width:798px) {
  .sec_mv .band_wrap {
    padding: 3rem;
    font-weight: bold;
  }
}

@media screen and (max-width:414px) {
  .sec_mv .band_wrap {
    top: calc(363 / 1280 * 100vw);
    line-height: 2rem;
  }
}

@media screen and (max-width:375px) {
  .sec_mv .band_wrap {
    top: calc(219 / 1280 * 100vw);
    line-height: 2.5rem;
  }
} */

/* .sec_mv .band_wrap .title{
  margin-bottom: 2rem;
  font-size: 24px;
  letter-spacing: 0.5rem;
}

@media screen and (max-width:414px) {
  .sec_mv .band_wrap .title{
    margin-bottom: 1rem;
    font-size: 20px;
  }
}

@media screen and (max-width:375px) {
  .sec_mv .band_wrap .title{
    font-size: 18px;
  }
}

@media screen and (max-width:320px) {
  .sec_mv .band_wrap .title{
    font-size: 15px;
  }
} */

/* .sec_mv .band_wrap .message{
  display: inline-block;
  max-width: 500px;
  width: auto;
}

@media screen and (max-width:414px) {
  .sec_mv .band_wrap .message{
    font-size: 10px;
  }
}

@media screen and (max-width:320px) {
  .sec_mv .band_wrap .message{
    line-height: 2.25rem;
  }
} */

/* Concept */
.sec_concept {
  margin: 0 44px;
}

@media screen and (max-width:414px) {
  .sec_concept {
    margin: 0 auto;
    width: 84%;
  }
}

.sec_concept h2{
  margin: 0 auto;
  margin-bottom: 40px;
  text-align: center;
}

@media screen and (max-width:768px) {
  .sec_concept h2{
    margin-bottom: 20px;
  }
}

@media screen and (max-width:375px) {
  .reading_point {
    display: none;
  }
}

.sec_concept .content_wrap {
  margin: 0 auto 2em;
  max-width: 1280px;
  padding: 0 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  width: 100%;
}

@media screen and (max-width:768px) {
  .sec_concept .content_wrap {
    padding: 0 1rem;
  }
}

@media screen and (max-width:414px) {
  .sec_concept .content_wrap {
    flex-wrap: wrap;
    justify-content:center;
  }
}

.sec_concept .content_wrap .concept_img {
  width: 80%;
  max-width: 872px;
  position: relative;
  z-index: 5;
}

@media screen and (max-width:1024px) {
  .sec_concept .content_wrap .concept_img {
    width: 86%;
  }
}

@media screen and (max-width:414px) {
  .sec_concept .content_wrap .concept_img {
    width: 100%;
  }
}

#specialities_and_features .concept_img.pc_size {
  display: block;
}

#specialities_and_features .concept_img.tbl_size {
  display: none;
}

#specialities_and_features .concept_img.sp_size {
  display: none;
}

@media screen and (max-width: 768px) {
  #specialities_and_features .concept_img.pc_size {
    display: none;
  }

  #specialities_and_features .concept_img.tbl_size {
    display: block;
  }
}

@media screen and (max-width: 414px) {
  #specialities_and_features .concept_img.tbl_size {
    display: none;
  }

  #specialities_and_features .concept_img.sp_size {
    display: block;
  }
}

.text_matt {
  box-sizing: border-box;
  z-index: 10;
  background-color: #fff;
  text-align: left;
}

#specialities_and_features .text_matt {
  position: relative;
  bottom: -200px;
  right: 144px;
  padding: 100px 50px 80px;
  width: 479px;
}

@media screen and (max-width:1280px){
  #specialities_and_features .text_matt {
   padding-top: 80px;
   padding-bottom: 60px; 
  }
}

@media screen and (max-width:1024px){
  #specialities_and_features .text_matt {
  bottom: -166px;
  right: 212px;
  }
}

@media screen and (max-width:768px){
  #specialities_and_features .text_matt {
    bottom: -120px;
    right: 198px;
    padding: 40px;
  }
}

@media screen and (max-width:414px) {
  #specialities_and_features .text_matt {
    position: initial;
    bottom: initial;
    right: initial;
    width: 100%;
    padding: 20px;
  }
}

@media screen and (max-width:375px) {
  #specialities_and_features .text_matt {
    padding: 10px 0 20px;
  }
}

#specialities_and_features .text_matt .text_wrap {
  width: 316px;
}

@media screen and (max-width:1024px){
  #specialities_and_features .text_matt .text_wrap {
    width: 240px;
  }
}

@media screen and (max-width:768px){
  #specialities_and_features .text_matt .text_wrap {
    width: 225px;
  }
}

@media screen and (max-width:414px){
  #specialities_and_features .text_matt .text_wrap {
    width: 100%;
  }
}

#building-note .concept_img {
  width: 75%;
  bottom: -110px;
  right: -283px;
}

@media screen and (max-width:1280px) {
  #building-note .concept_img {
    right: -283px;
  }
}

@media screen and (max-width:1024px) {
  #building-note .concept_img {
    right: -219px;
  }
}

@media screen and (max-width:768px){
  #building-note .concept_img {
    width:78%;
    bottom: -72px;
    right: -144px;
  }
}

@media screen and (max-width:414px) {
  #building-note .concept_img {
    position: initial;
    bottom: initial;
    right: initial;
    width: 100%;
  }
}

#building-note .text_matt {
  position: relative;
  width: 446px;
  padding: 85px 50px 65px;
  bottom: -320px;
    left: -846px;
}

@media screen and (max-width:1280px) {
  #building-note .text_matt {
    padding-top: 65px;
    padding-bottom: 45px;
    bottom: -293px;
    left: -828px;
  }
}

@media screen and (max-width:1024px) {
  #building-note .text_matt {
    bottom: -237px;
    left: -664px;
  }
}

@media screen and (max-width:768px){
  #building-note .text_matt {
    padding: 40px;
    bottom: -171px;
    left: -530px;
  }
}

@media screen and (max-width:414px) {
  #building-note .text_matt {
    position: initial;
    bottom: initial;
    right: initial;
    width: 100%;
    padding: 20px;
  }
}

@media screen and (max-width:375px) {
  #building-note .text_matt {
    padding: 10px 0 20px;
  }
}

#building-note .text_matt .text_wrap {
  position: relative;
  width: 326px;
}

@media screen and (max-width:1024px){
  #building-note .text_matt .text_wrap {
    width: auto;
  }
}

@media screen and (max-width:768px){
  #building-note .text_matt .text_wrap {
    width: 250px;
  }
}

@media screen and (max-width:414px){
  #building-note .text_matt .text_wrap {
    width: 100%;
  }
}

/**********************
  Village
***********************/
.sec_village {
  margin: 280px auto 0;
  padding-top: 30px;
  width: 100%;
}

@media screen and (max-width: 1280px){
  .sec_village {
    margin-top: 220px;
  }
}

@media screen and (max-width: 768px){
  .sec_village {
    margin-top: 180px;
    padding-top: 20px 0;
  }
}

@media screen and (max-width: 414px){
  .sec_village {
    margin-top: 60px;
  }
}

@media screen and (max-width: 375px){
  .sec_village {
    margin-top: 40px;
  }
}

.sec_village .flex-wrap {
  padding: 30px 0;
}

@media screen and (max-width: 1024px){
  .sec_village .flex-wrap {
    padding: 25px 0;
  }
}

@media screen and (max-width: 414px){
  .sec_village .flex-wrap {
    flex-wrap: wrap;
    padding-bottom: 0;
  }
}

.sec_village .flex-wrap .img_village {
  width: 52%;
}

@media screen and (max-width:768px) {
  .sec_village .flex-wrap .img_village {
    width: 50%;
    height: 253px;
  }
}

@media screen and (max-width:414px) {
  .sec_village .flex-wrap .img_village {
    width: 100%;
    height: auto;
  }
}

.sec_village .flex-wrap .text_container {
  width: 48%;
  background-color: #FAF7DD;
  padding: 2.8% 0;
}

@media screen and (max-width: 768px){
  .sec_village .flex-wrap .text_container {
     width: 50%;
    padding: 4% 0;
  }
}

@media screen and (max-width: 414px){
  .sec_village .flex-wrap .text_container {
    width: 100%;
    padding: 2rem;
  }
}

.sec_village .flex-wrap .text_wrap {
  max-width: 481px;
  width: 81%;
  margin: 0 auto;
}

@media screen and (max-width: 1024px){
  .sec_village .flex-wrap .text_wrap {
    width: 84%;
  }
}

@media screen and (max-width: 768px){
  .sec_village .flex-wrap .text_wrap {
    width: 79%;
  }
}

@media screen and (max-width: 375px){
  .sec_village .flex-wrap .text_wrap {
    width: 91%;
  }
}

.sub-title {
  margin-bottom: 20px;
  line-height: 4rem;
}

@media screen and (max-width: 1024px){
  .sub-title {
    margin-bottom: 10px;
    line-height: 2.5rem;
  }
}

@media screen and (max-width: 768px){
  .sub-title {
    margin-bottom: 8px;
    font-size: 15px;
  }
}

@media screen and (max-width: 320px){
  .sub-title {
    font-size: 12px;
  }
}

.en-font {
  letter-spacing: 0.25em;
}

@media screen and (max-width: 1024px){
  .en-font {
    letter-spacing: 0.2em;
  }
}

.sentence {
  letter-spacing: 0.08rem;
  line-height: 2.5rem;
}

@media screen and (max-width: 1024px){
  .sentence {
    letter-spacing: 0.05rem;
    line-height: 2.5rem;
  }
}

@media screen and (max-width:768px) {
  .sentence {
    line-height: 1.8rem;
    font-size: 10px;
  }
}

@media screen and (max-width: 768px){
  .sec_village .flex-wrap .text_wrap .btn_m {
    margin-top: 10px;
  }
}

/**********************
  BANNER
***********************/
.sec_sns {
  margin-top: 60px;
  padding: 70px 0 30px;
}

@media screen and (max-width:1280px) {
  .sec_sns {
    padding: 30px 0;
  }
}

@media screen and (max-width:1024px) {
  .sec_sns {
    margin-top: 30px;
  }
}

@media screen and (max-width:768px) {
  .sec_sns {
    padding: 20px 0;
  }
}

@media screen and (max-width:414px) {
  .sec_sns {
    margin-top: 60px;
  }
}

.sec_sns h3{
  margin-bottom: 30px;
}

.banner_box {
  display: block;
  margin: 0 auto;
  max-width: 850px;
  width: calc((850 / 1280) * 100%);
}

@media screen and (max-width:414px) {
  .banner_box {
    width: 80%;
  }
}

.banner_box .sns-1 {
  margin: 30px auto 15px;
  text-align: center;
}

.banner_box img{
  width: 100%;
}

@media screen and (max-width:414px) {
  .banner_box .sns-1 .line_banner{
    height: 237px;
    object-fit: cover;
    object-position: 78% 50%;
  }
}

@media screen and (max-width:375px) {
  .banner_box .sns-1 .line_banner{
    height: 200px;
  }
}

@media screen and (max-width:320px) {
  .banner_box .sns-1 .line_banner{
    height: 182px;
  }
}

.sec_sns .banner_box .sns-and-reserve {
  display: flex;
}

@media screen and (max-width:414px) {
  .sec_sns .banner_box .sns-and-reserve {
    flex-wrap: wrap;
  }
}

.sec_sns .banner_box .sns-and-reserve .sns-2 {
  position: relative;
  margin-right: 15px;
}

@media screen and (max-width:414px) {
  .sec_sns .banner_box .sns-and-reserve .sns-2 {
    position: initial;
    margin-right: 0;
    margin-bottom: 15px;
  }
}

/**********************
  ROOM TOUR
***********************/
.sec-room-tour {
  max-width: 1440px;
  margin: 60px auto 80px;
  padding: 70px 0;
}

@media screen and (max-width:1280px) {
  .sec-room-tour {
    margin-top: 45px;
    margin-bottom: 50px;
    padding: 30px 0;
  }
}

@media screen and (max-width:768px) {
  .sec-room-tour {
    padding: 20px 0;
  }
}

@media screen and (max-width:414px) {
  .sec-room-tour {
    margin: 60px auto;
  }
}

@media screen and (max-width:375px) {
  .sec-room-tour {
    margin: 40px auto;
  }
}

.sec-room-tour h3 {
  margin-bottom: 30px;
}

.sec-room-tour .btn-wrap .btn {
  text-align: center;
  margin: 50px auto 30px;
}

@media screen and (max-width:768px) {
  .sec-room-tour .btn-wrap .btn {
    margin: 40px auto 0;
  }
}

@media screen and (max-width:414px) {
  .sec-room-tour .btn-wrap .btn {
    margin: 30px auto 0;
  }
}

/******  swiper setting  *******/
.container {
  position: relative;
  max-width: 1440px;
}

  .swiper{
    width: 85%;
  }

@media screen and (max-width:1440px) {
  .swiper{
    width: 80%;
  }
}

@media screen and (max-width:768px) {
  .swiper{
    width: 90%;
  }
}

@media screen and (max-width:320px) {
  .swiper{
    width: 100%;
  }
}

.swiper-wrapper{
  margin: 0 auto;
  width: 100%;
}

.swiper-slide {
  text-align: center;
}

/* ページネーション */
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: -35px;
}

@media screen and (max-width:1280px) {
  .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    bottom: -30px;
  }
}

@media screen and (max-width:414px) {
  .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    bottom: -23px;
  }
}

@media screen and (max-width:375px) {
  .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    bottom: -22px;
  }
}

.swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
  margin: 0 0 0 10px !important;
  background: #333 !important;
}

@media screen and (max-width:768px) {
  .swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
    margin: 0 0 0 8px !important;
  }
}

.swiper-pagination-bullet:first-child {
  margin: 0 !important;
}

.youtube_iframe {
  margin: 0 5px;
  width:  384px;
  height: 216px;
}

@media screen and (max-width:1440px) {
  .youtube_iframe {
    width:  360px;
  }
}

@media screen and (max-width:1280px) {
  .youtube_iframe {
    width:325px;
    height: 180px;
  }
}

@media screen and (max-width:768px) {
  .youtube_iframe {
    width: 330px;
    height: 190px;
  }
}

@media screen and (max-width:414px) {
  .youtube_iframe {
    width: 331px;
  }
}

@media screen and (max-width:375px) {
  .youtube_iframe {
    width:300px;
  }
}

@media screen and (max-width:320px) {
  .youtube_iframe {
    width:260px;
  }
}

.swiper-button-prev,
.swiper-button-next {
  width: 32px;
  height: 32px;
  margin-top: -20px;
  background-size: 100% auto;
}

@media screen and (max-width:320px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 22px;
    height: 22px;
  } 
}

.swiper-button-prev { 
  left: 74px;
  background-image: url('../img/icon_arrow_left.png');
}

@media screen and (max-width: 1024px) {
  .swiper-button-prev { 
    left: 54px;
  }
}

@media screen and (max-width: 768px) {
  .swiper-button-prev { 
    left: 8px;
  }
}

@media screen and (max-width: 375px) {
  .swiper-button-prev { 
    left: 4px;
  }
}

@media screen and (max-width: 320px) {
  .swiper-button-prev { 
    left: 5px;
  }
}

.swiper-button-prev::after {
  content: "";
}

.swiper-button-next {
  right: 74px;
  background-image: url('../img//icon_arrow_right.png');
}

@media screen and (max-width: 1024px) {
  .swiper-button-next { 
    right: 54px;
  }
}

@media screen and (max-width: 768px) {
  .swiper-button-next { 
    right: 9px;
  }
}

@media screen and (max-width: 414px) {
  .swiper-button-next { 
    right: 14px;
  }
}

@media screen and (max-width: 375px) {
  .swiper-button-next { 
    right: 4px;
  }
}

@media screen and (max-width: 320px) {
  .swiper-button-next { 
    right: 5px;
  }
}

.swiper-button-next::after {
  content: "";
}


/**********************
*
*  FOOTER
*
***********************/
footer {
  background-color: #EEEEEE;
  padding: 60px 115px;
  align-items: flex-start;
}

@media screen and (max-width:768px) {
  footer {
    padding: 45px 90px;
  }
}

@media screen and (max-width:414px) {
  footer {
    padding: 4em 5em;
  }
}

@media screen and (max-width:375px) {
  footer {
    padding: 4em 3em;
  }
}

footer .footer_wrap {
  display: flex;
  flex-wrap: wrap;
}

footer .footer_wrap .footer-logo {
  width: 100%;
  height: auto;
  margin-bottom: 4rem;
}

footer .footer-logo img {
  width: 495px;
  max-width: 300px;
  height: auto;
}

@media screen and (max-width:768px) {
  footer .footer-logo img {
    width: 385px;
    height: auto;
  }
}

@media screen and (max-width:375px) {
  footer .footer-logo img {
    width: 100%;
  }
}

footer .footer_wrap .footer-ul{
  width: 30%;
  padding-left: 0;
}

@media screen and (max-width:414px) {
  footer .footer_wrap .footer-ul{
    width: 100%;
  }
}

footer .footer-ul li {
  margin-bottom: 15px;
}

footer .footer-ul li a {
  font-weight: 600;
}

footer .footer-ul:last-child {
  margin-left: 10%;
  text-align: right;
}

@media screen and (max-width:414px) {
  footer .footer-ul:last-child {
    margin: 0 auto;
    text-align: left;
  }
}

footer .footer-ul:last-child li:first-child{
  margin-bottom: 24px;
}

.new-realestate-lab {
  width: 190px;
  height: auto;
}

.first-class-architects-office {
  width: 168px;
  height: auto;
}

footer .footer-bar {
  margin-top: 4rem;
}

@media screen and (max-width:768px) {
  footer .footer-bar {
    margin-top: 2rem;
  }
}

@media screen and (max-width:414px) {
  .footer-bar.flex-wrap {
    display: block;
    flex-wrap: nowrap;
  }
}

footer .footer-bar address {
  font-style: normal;
  margin-bottom: 1em;
}

@media screen and (max-width:414px) {
  footer .footer-bar address {
    text-align: center;
  }
}

footer .footer-bar .footer-sns-ul {
  margin: 0;
  padding: 0;
  align-items: center;
}

footer .footer-bar .footer-sns-ul li {
  margin-right: 2rem;
}

@media screen and (max-width:414px) {
  footer .footer-bar .footer-sns-ul li {
    margin-right: 0;
  }
}

footer .footer-bar .footer-sns-ul li:last-child {
  margin-right: 0;
}

.sns-icon {
  width: 25px;
  height: 25px;
}

.fb {
  width: 28px;
  height: 28px;
}

.youtube {
  height: 17.64px;
}


/**********************
*
* Lower Page Common
*
**********************/

.lower_mg {
  margin: 0 44px;
}

@media screen and (max-width:414px) {
  .lower_mg {
    margin: 0 auto;
  }
}

.lower_page_title {
  margin: 80px auto;
  text-align: center;
}

@media screen and (max-width:768px) {
  .lower_page_title {
    margin: 40px auto;
  }
}

.lower_page_title .lower_page_subtitle {
  display: block;
  margin-top: 20px;
  font-size: 12px;
  font-weight: normal;
  letter-spacing: 0.2rem;
}

@media screen and (max-width:768px) {
  .lower_page_title .lower_page_subtitle {
    margin-top: 10px;
  }
}

@media screen and (max-width:375px) {
  .lower_page_title .lower_page_subtitle {
    margin-top: 8px;
    font-size: 10px;
  }
}

.lower_eyecatch {
  margin: 0 auto;
  text-align: center;
  max-width: 952px;
}

@media screen and (max-width:414px) {
  .lower_eyecatch {
    margin-bottom: 30px;
  }
}

.lower_eyecatch img {
  width: 100%;
}

.lower_eyecatch picture:not(:last-child) img {
  margin-bottom: 20px;
}

.lower_eyecatch .text_wrap {
  padding: 80px 148px;
  text-align: left;
}

@media screen and (max-width:768px) {
  .lower_eyecatch .text_wrap {
    padding: 60px 53px;
  }
}

@media screen and (max-width:414px) {
  .lower_eyecatch .text_wrap {
    padding: 30px;
  }
}

@media screen and (max-width:375px) {
  .lower_eyecatch .text_wrap {
    padding: 30px 20px;
  }
}

.lower_eyecatch .text_wrap p {
  font-weight: 600;
  letter-spacing: 0.2rem;
  line-height: 1.75;
}

@media screen and (max-width:414px) {
  .lower_eyecatch .text_wrap p {
    font-size: 12px;
  }
}

@media screen and (max-width:320px) {
  .lower_eyecatch .text_wrap p {
    font-weight: bold;
    font-size: 10px;
  }
}

/**********************
*
* Specialities & Features
*
**********************/

.sec_feature {
  margin-bottom: 80px;
}

@media screen and (max-width:768px) {
  .sec_feature {
    margin-bottom: 60px;
  }
}

@media screen and (max-width:414px) {
  .sec_feature {
    width: 88%;
    margin-left: auto;
    margin-right: auto;
  }
}

.sec_feature .flex-wrap {
  margin: auto;
  flex-wrap: wrap;
  max-width: 951px;
}

.sec_feature .flex-wrap h3 {
  font-size: 20px;
}

@media screen and (max-width:768px) {
  .sec_feature .flex-wrap h3 {
    font-size: 18px;
  }
}

@media screen and (max-width:414px) {
  .sec_feature .flex-wrap h3 {
    font-size: 16px;
  }
}

.sec_feature .flex-wrap .key_feature {
  display: block;
  max-width: 516px;
  width: 65%;
  aspect-ratio: 3 / 2;
}

@media screen and (max-width:768px) {
  .sec_feature .flex-wrap .key_feature {
      width: 55%;
  }
}

@media screen and (max-width:414px) {
  .sec_feature .flex-wrap .key_feature {
      width: 100%;
      margin: 0 auto;
  }
}

.sec_feature .flex-wrap .right_col {
  width: 45%;
  padding: 15px 60px 50px 40px;
}

@media screen and (max-width:768px) {
  .sec_feature .flex-wrap .right_col {
    padding: 15px 20px 0 30px;
  }
}

@media screen and (max-width:414px) {
  .sec_feature .flex-wrap .right_col {
    width: 100%;
    padding: 10px 10px 0;
  }
}

.sec_feature .flex-wrap .right_col div {
  max-width: 328px;
}

@media screen and (max-width:414px) {
  .sec_feature .flex-wrap .right_col div {
    width: 100%;
  }
}

.sec_feature .flex-wrap .right_col div .title,.description {
  text-align: left;
}

.sec_feature .flex-wrap .right_col div .title {
  margin-bottom: 20px;
}

@media screen and (max-width:414px) {
  .sec_feature .flex-wrap .right_col div .title {
    margin-bottom: 10px;
    text-align: center;
  }
}

.sec_feature .flex-wrap .right_col div .description {
  line-height: 2rem;
}

@media screen and (max-width:414px) {
  .sec_feature .flex-wrap .right_col div .description {
    font-size: 12px;
  }
}

@media screen and (max-width:320px) {
  .sec_feature .flex-wrap .right_col div .description {
    line-height: 1.75rem;
    font-size: 10px;
  }
}

.sec_feature .flex-wrap.stretch {
  align-items: stretch;
}

.sec_feature .flex-wrap .feature_wrap {
  width: 45%;
  margin-bottom: 40px;
}

@media screen and (max-width: 414px) {
  .sec_feature .flex-wrap .feature_wrap {
    width: 100%;
    margin-bottom: 20px;
  }
}

.sec_feature .flex-wrap .feature_wrap h3,
.sec_feature .flex-wrap .feature_wrap .feature_container p {
  text-align: left;
}

.sec_feature .flex-wrap .feature_wrap h3 {
  margin-bottom: 20px;
}

@media screen and (max-width:414px) {
  .sec_feature .flex-wrap .feature_wrap h3 {
    margin-bottom: 10px;
  }
}

.sec_feature .flex-wrap .feature_wrap .feature_container {
  max-width: 435px;
}

.sec_feature .flex-wrap .feature_wrap img {
  width: 100%;
}

.sec_feature .flex-wrap .feature_wrap .text_wrap {
  padding: 20px 6px;
  line-height: 1.75;
}

@media screen and (max-width:414px) {
  .sec_feature .flex-wrap .feature_wrap .text_wrap {
    padding-top: 10px;
    line-height: 2rem;
    font-size: 12px;
  }
}

@media screen and (max-width:320px) {
  .sec_feature .flex-wrap .feature_wrap .text_wrap {
    font-size: 10px;
  }
}


/**********************
*
*  Note Starting With House Building
*
***********************/

.sec_iehaji_note {
  margin: 0 calc(50% - 50vw) 80px;
  width: 100vw;
}

@media screen and (max-width:414px) {
  .sec_iehaji_note {
    margin-bottom: 60px;
  }
}

.sec_iehaji_note .flex-wrap {
  padding: 30px 0;
}

@media screen and (max-width: 1024px){
  .sec_iehaji_note .flex-wrap {
    padding: 25px 0;
  }
}

@media screen and (max-width: 414px){
  .sec_iehaji_note .flex-wrap {
    flex-wrap: wrap;
    padding: 0;
  }
}

.sec_iehaji_note .flex-wrap .img_iehaji_app {
  width: 52%;
}

@media screen and (max-width:768px) {
  .sec_iehaji_note .flex-wrap .img_iehaji_app {
    width: 50%;
    height: 265px;
  }
}

@media screen and (max-width:414px) {
  .sec_iehaji_note .flex-wrap .img_iehaji_app {
    width: 100%;
    height: auto;
  }
}

.sec_iehaji_note .flex-wrap .text_container {
  width: 48%;
  background-color: #3791A5;
  padding: 2.8% 0;
}

@media screen and (max-width: 768px){
  .sec_iehaji_note .flex-wrap .text_container {
     width: 50%;
    padding: 4% 0;
  }
}

@media screen and (max-width: 414px){
  .sec_iehaji_note .flex-wrap .text_container {
    width: 100%;
    padding: 2rem;
  }
}

.sec_iehaji_note .flex-wrap .text_container .text_wrap {
  max-width: 481px;
  width: 81%;
  margin: 0 auto;
  color: #fff;
}

@media screen and (max-width: 1024px){
  .sec_iehaji_note .flex-wrap .text_container .text_wrap {
    width: 84%;
  }
}

@media screen and (max-width: 768px){
  .sec_iehaji_note .flex-wrap .text_container .text_wrap {
    width: 79%;
  }
}

@media screen and (max-width: 375px){
  .sec_iehaji_note .flex-wrap .text_container .text_wrap {
    width: 91%;
  }
}

.sec_iehaji_note .flex-wrap .text_wrap .sub-title {
  font-size: 20px;
}

@media screen and (max-width:768px) {
  .sec_iehaji_note .flex-wrap .text_wrap .sub-title {
    font-size: 16px;
  }
}

.sec_iehaji_note .flex-wrap .text_wrap .sentence {
  font-weight: 300;
}

.sec_house_building_step {
  margin: 0 auto 80px;
}

@media screen and (max-width:414px) {
  .sec_house_building_step {
    margin: 0px auto 60px;
  }
}

.sec_house_building_step .img_container .img_pc {
  margin: 40px auto 0;
  text-align: center;
  max-width: 867px;
  width: 100%;
}

.sec_house_building_step .img_container .img_tbl {
  margin: 30px auto 0;
  width: 90%;
}

.sec_house_building_step .img_container .img_sp {
    margin: 30px auto 0;
    max-width: 393px;
    width: 90%;
}

.img_pc {
  display: block;
}

@media screen and (max-width:768px) {
  .img_pc {
    display: none;
  } 
}

.img_tbl {
  display: none;
}

@media screen and (max-width:768px) {
  .img_tbl {
    display: block;
  } 
}

@media screen and (max-width:414px) {
  .img_tbl {
    display: none;
  } 
}

.img_sp {
  display: none;
}

@media screen and (max-width:414px) {
  .img_sp {
    display: block;
  }
}

/********************
*
*  Specification
*
********************/

.sec_specification {
  margin: 80px auto;
  max-width: 952px;
  width: 100%;
}

@media screen and (max-width:414px) {
  .sec_specification {
    margin: 60px auto;
  }
}

.sec_specification .title {
  margin: 0 auto;
  padding: 20px 30px;
  background-color: #EEEEEE;
  text-align: left;
}

.sec_specification table tbody tr {
  font-size: 16px;
  vertical-align: baseline;
}

@media screen and (max-width:414px) {
  .sec_specification table tbody tr {
    font-size: 15px;
    vertical-align: baseline;
  }
}

@media screen and (max-width:375px) {
  .sec_specification table tbody tr {
    font-size: 14px;
    vertical-align: baseline;
  }
}

.sec_specification table tbody tr .item_name {
  width: 22%;
  padding: 10px 0 5px;
  text-align: left;
  font-weight: 600;
}

.sec_specification table tbody tr .value {
  padding-top: 10px;
  padding-bottom: 5px;
  overflow-wrap: break-word;
}

.sec_specification .basic_spec_tbl {
  margin: 40px auto 40px 60px;
  max-width: 833px;
  width: 100%;
  table-layout: fixed;
}

@media screen and (max-width:768px) {
  .sec_specification .basic_spec_tbl {
  margin-left: 40px;
  }
}

@media screen and (max-width:414px) {
  .sec_specification .basic_spec_tbl {
    margin: 30px 24px;
  }
}

@media screen and (max-width:375px) {
  .sec_specification .basic_spec_tbl {
    margin: 20px 22px;
  }
}

.sec_specification .basic_spec_tbl tbody tr .item_name {
  width: 28%;
  padding-right: 40px;
}

@media screen and (max-width:768px) {
  .sec_specification .basic_spec_tbl tbody tr .item_name {
    padding-right: 20px;
  } 
}

@media screen and (max-width:414px) {
  .sec_specification .basic_spec_tbl tbody tr .item_name {
    width: 22%;
    padding-right: 0px;
  } 
}

@media screen and (max-width:375px) {
  .sec_specification .basic_spec_tbl tbody tr .item_name {
    width: 30%;
  } 
}

.sec_specification hr {
  margin-left: 60px;
  margin-right: 60px;
  background-color: #333;
  height: 2px;
  border: none;
}

@media screen and (max-width:768px) {
  .sec_specification hr {
    margin-left: 40px;
    margin-right: 40px;
  }
}

@media screen and (max-width:414px) {
  .sec_specification hr {
    margin-left: 20px;
    margin-right: 20px;
  }
}

.detaile_spec_div {
  margin: 40px auto 20px 60px;
  max-width: 833px;
}

@media screen and (max-width: 768px){
.detaile_spec_div {
  margin-left: 40px;
  margin-right: 40px;
}
}

@media screen and (max-width:414px) {
  .detaile_spec_div {
    margin: 30px 24px;
  }
}

.detaile_spec_div h5 {
  font-size: 18px;
  margin-bottom: 20px;
}

@media screen and (max-width:414px) {
  .detaile_spec_div h5 {
    font-size: 17px;
    margin-bottom: 10px;
  }
}

.detaile_spec_div .flex-wrap {
  align-items: flex-start;
}

@media screen and (max-width:414px) {
  .detaile_spec_div .flex-wrap {
    flex-wrap: wrap;
  }
}

.detaile_spec_div .flex-wrap img {
  display: block;
  width: 40%;
  aspect-ratio: 3 / 2;
  max-width: 300px;
  margin-right: 40px;
}

@media screen and (max-width:414px) {
  .detaile_spec_div .flex-wrap img {
    max-width: fit-content;
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }
}

.detaile_spec_div .flex-wrap .detail_spec_tbl {
  width: 60%;
  margin-block-start: 0;
}

@media screen and (max-width:414px) {
  .detaile_spec_div .flex-wrap .detail_spec_tbl {
    width: 100%;
  }
}

.detaile_spec_div .detail_spec_tbl tbody tr .item_name {
  padding-top: 0;
  padding-bottom: 15px;
  padding-right: 40px;
}

@media screen and (max-width:768px) {
  .detaile_spec_div .detail_spec_tbl tbody tr .item_name {
    padding-right: 20px;
  }
}

@media screen and (max-width:375px) {
  .detaile_spec_div .detail_spec_tbl tbody tr .item_name {
    width: 30%;
  }
}

.detaile_spec_div .detail_spec_tbl tbody tr .value {
  padding-top: 0;
  padding-bottom: 15px;
}

/********************
*
*  Works
*
*********************/

.sec_works {
  margin: 0 auto 40px;
  max-width: 990px;
}

@media screen and (max-width:414px) {
  .sec_works {
    /* TODO:検索機能実装時に40pxを取り除く */
    margin: 0 2rem 40px;
  }
}

.sec_works .flex-wrap {
  /* align-items: stretch; */
  align-items: baseline;
  flex-wrap: wrap;
}

.works_wrap {
  width: 31%;
  margin-bottom: 40px;
}

@media screen and (max-width:768px) {
  .works_wrap {
    width: 48%;
  }
}

@media screen and (max-width:414px) {
  .works_wrap {
    /* width: 100%; */
    /* TODO:検索機能実装時に復活させる */
    /* margin-bottom: 20px; */
    margin-bottom: 40px;
  }
}

.works_title {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 600;
}

@media screen and (max-width:414px) {
  .works_title {
    margin-bottom: 10px;
    font-size: 12px;
  }
}

.works_cover_img {
  width: 100%;
}

.hash_tag_ul {
  margin: 1rem 1rem 1rem 0;
  padding: 1rem 0;
}

@media screen and (max-width:414px) {
.hash_tag_ul {
  margin-top: 0.5rem;
}
}

.hash_tag_ul li {
  display: inline-block;
  margin-right: 1rem;
  margin-bottom: 0.8rem;
  font-size: 12px;
  font-weight: 600px;
  color: #6F6C60;
}

.sec_hash_tag_list {
  margin: 80px auto;
  padding: 30px 60px;
  max-width: 990px;
  background-color: #EEEEEE;
}

@media screen and (max-width:414px){
  .sec_hash_tag_list {
    margin: 60px 2rem;
    padding: 20px 30px;
  }
}

.sec_hash_tag_list .flex-wrap {
  flex-wrap: wrap;
}

.sec_hash_tag_list .flex-wrap h4 {
  width: 100%;
  margin-bottom: 10px;
  font-size: 18px;
}

@media screen and (max-width:414px) {
  .sec_hash_tag_list .flex-wrap h4 {
    margin-bottom: 20px;
  }
}

@media screen and (max-width:320px)  {
  .sec_hash_tag_list .flex-wrap h4 {
    font-size: 16px;
  } 
}

.sec_hash_tag_list .flex-wrap ul {
  flex-wrap: wrap;
  justify-content: flex-start;
  padding-inline-start: 0;
}

.sec_hash_tag_list .flex-wrap ul li {
  display: inline-block;
  margin: 10px 10px 10px 0;
  padding: 8px 10px;
  flex-direction: row;
  background-color: #fff;
  border-radius: 10px;
  font-weight: 600;
}

@media screen and (max-width:414px) {
  .sec_hash_tag_list .flex-wrap ul li {
    margin-top: 0;
    margin-bottom: 1em;
    padding: 8px;
    font-weight: bold;
  }
}

/*********************
*
*  Works Detail
*
**********************/

/* 既存css */
.ct {width:1050px;}
.m .ct,
.s .ct {width:100%;}

.pg-item-label {display:inline-block;font-weight:bold; color:#333; margin-bottom:8px;border-bottom:2px solid #333;}


.pg-slide {height:600px;overflow:hidden;}
.pg-slide-image {width:100%;height:100%;background-position:50% 50%;background-repeat:no-repeat;position:absolute;display:none;}

.s .pg-slide {height:300px;}
.s .pg-slide-image {background-size:640px 300px;}


.pg-slide-btnlist {float:right;}
.s .pg-slide-btnlist {float:none;margin:0 auto;}

.pg-slide-btn {cursor:pointer;padding:4px;margin-right:5px;}

.pg-slide-btn img {width:128px;}
.pg-slide-btn.selected {background:url(../img/hatch.png);}

.s .pg-slide-btn {width:33%; margin:0;}
.s .pg-slide-btn img {width:100%;}


.pg-detail-key {border-bottom:2px solid #333;font-weight:bold;padding:5px 0;color:#333}
.pg-detail-val {padding:5px 0;color:#333;}


.pg-tab {cursor:pointer;position:relative;}
.pg-tab > .rel {overflow:hidden;}
.pg-tab-hatch {position:absolute;height:210px;background:url(../img/hatch.png);display:none;z-index:2;width:100%;}

.pg-tab:hover .pg-tab-hatch {display:block;}
.pg-tab.selected .pg-tab-hatch {display:block;}
.pg-tab.selected .pg-tab-label img {transform:rotate(90deg);}


.pg-tab-thumb {height:150px;background-position:50% 50%;background-repeat:no-repeat;background-size:auto 150px;}
.pg-tab-label {line-height:60px;font-weight:bold;background:#fff;color:#333;}
.pg-tab-label > img {margin:0 0 1px 5px;}

.s .pg-tab-thumb {height:75px;background-size:auto 75px;}
.s .pg-tab-label {line-height:40px;}


.pg-tab-target {display:none;}
.pg-tab-close {cursor:pointer;}
.s .pg-tab-target {display:block;margin-top:40px;}
.s .pg-tab-close{display:none;}

.pg-archives-title {height:40px;}
.s .pg-archives-title {height:28px;}

/* 新規追加css */
.sec_works_detail h3 {
  color: #6F6C60;
  font-weight: normal;
}

.sec_works_detail .pg-detail-col, 
.sec_works_detail a{
  font-size: 1.4rem;
  color: #6F6C60;
}

/*********************
*
*  Q & A
*
**********************/

.sec_q_a {
  margin: 0 auto 80px;
  padding-left: 140px;
  padding-right: 140px;
  padding-bottom: 20px;
  max-width: 940px;
  width: 100%;
}

@media screen and (max-width:768px) {
  .sec_q_a {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media screen and (max-width:414px) {
  .sec_q_a {
    padding-left: 30px;
    padding-right: 20px;
  }
}

@media screen and (max-width:375px) {
  .sec_q_a {
    padding-left: 25px;
    padding-right: 20px;
  }
}

@media screen and (max-width:320px) {
  .sec_q_a {
    padding-right: 10px;
  }
}

.pg-faq-no {
  text-align: center;
  font-size: 12px;
  font-size: 1.2rem;
  padding-top: 5px;
}

@media screen and (max-width:414px) {
  .pg-faq-no {
    text-align: left;
    padding-top: 7px;
    padding-right: 0.5rem;
    font-size: 1.1rem;
  }
}

@media screen and (max-width:375px) {
  .pg-faq-no {
    font-size: 1rem;
    width: 15%;
  }
}

@media screen and (max-width:320px) {
  .pg-faq-no {
    padding-top: 3px;
    font-size: 0.8rem;
  }
}

.pg-faq-no span {
  font-weight: bold;
  padding-bottom: 3px;
  border-bottom: 2px solid #333;
}

@media screen and (max-width:414px) {
  .q_a_wrap dl {
    width: 80%;
    margin-left: 10px;
  }  
}

@media screen and (max-width:375px) {
  .q_a_wrap dl {
    margin-left: 5px;
  }  
}

@media screen and (max-width:320px) {
  .q_a_wrap dl {
    width: 75%;
  }  
}

.q_a_wrap dt {
  font-size: 20px;
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: 600;
  letter-spacing: 0.5rem;
}

@media screen and (max-width:414px) {
  .q_a_wrap dt {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

@media screen and (max-width:375px) {
  .q_a_wrap dt {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

@media screen and (max-width:375px) {
  .q_a_wrap dt {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.q_a_wrap dd {
  line-height: 2.4rem;
}

.q_a_form_link {
  border-bottom: 1px solid #333;
}

/*******************
*
*  Model House
*
********************/

.sec_model_house {
  margin: 0 auto 80px;
  text-align: center;
}

@media screen and (max-width:414px) {
  .sec_model_house {
    margin-bottom: 60px;
  }
}

.sec_model_house h3 {
  margin-bottom: 20px;
}

@media screen and (max-width:414px) {
  .sec_model_house h3 {
    margin-bottom: 10px;
  }
}

.inquiry_wrap {
  margin-bottom: 80px;
  text-align: center;
}

@media screen and (max-width:414px) {
.inquiry_wrap {
  margin-bottom: 40px;
}
}

.inquiry_wrap p {
  text-align: center;
}

.inquiry_wrap .btn.btn_m {
  margin: 20px auto 0;
}

@media screen and (max-width:414px) {
  .inquiry_wrap .btn.btn_m {
    margin: 15px auto 0;
  }
}
