@charset "UTF-8";
/*数値の設定
------------------------------------------*/
/*上記数値の設定を呼び出しているmixin
------------------------------------------*/
:root {
  --main_green: #071F14;
  --white: #ffffff;
  --main_beige: #F5F4F2;
  --gray: #1D1F1E;
  --accent_beige:#F0EEEB;
  --black:#0E0F0F;
  --big_txt_silver:#D3DADE;
  --txt_silver_dark:#43494D;
  --txt_silber_light:#A2A8AB;
  --calc160-sp40:calc(100% - 160px);
  --background_grad_white:linear-gradient(to right,rgba(255,255,255,0.1),rgba(255,255,255,1),rgba(255,255,255,0.1));
  --background_grad_black:linear-gradient(to right,rgba(7,31,20,0.1),rgba(7,31,20,1),rgba(7,31,20,0.1));
}
@media only screen and (max-width: 1280px) {
  :root {
    --calc160-sp40:calc(100% - 80px);
  }
}
@media only screen and (max-width: 991px) {
  :root {
    --calc160-sp40:calc(100% - 40px);
  }
}

/*
よく使用するmixin
------------------------------------------*/
body.bk .contentWrap {
  background: #0E0F0F;
}
body.bk .contentWrap .box-border::before {
  background: var(--background_grad_white);
}
body.bk .contentWrap .box-border-w::before {
  background: var(--background_grad_white);
}
body.bk .contentWrap .facade-sec .facadeBox01 > .txtArea .archisiteBox {
  background: -webkit-linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.3));
  background: linear-gradient(-45deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.3));
}
body.bk .contentWrap .limited-sec .limitedWrap {
  background: -webkit-linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.3));
  background: linear-gradient(-45deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.3));
}
body.bk .contentWrap .limited-sec .limitedWrap .linkBox .btnArea .limitedBtns a.limitedBtn {
  background: #fff !important;
}
body.bk .contentWrap .limited-sec .limitedWrap .limitedList li .txtBox p {
  color: #94896e;
}

@media only screen and (max-width: 991px) {
  .kv-sec.loaded .kv-inner .kv-textWrap .kv-copyWrap p {
    font-size: 20px;
  }
}

.contentWrap {
  background: #fff;
}
.contentWrap .box-border, .contentWrap .box-border-w {
  position: relative;
  padding-top: 55px;
}
@media only screen and (max-width: 991px) {
  .contentWrap .box-border, .contentWrap .box-border-w {
    padding-top: 35px;
  }
}
.contentWrap .box-border::before, .contentWrap .box-border-w::before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  top: 0;
  left: -100%;
  -webkit-transform: translate(0%, 0%);
          transform: translate(0%, 0%);
  background: var(--background_grad_black);
  -webkit-transition: 0.8s ease 0.5s;
  transition: 0.8s ease 0.5s;
}
.contentWrap .box-border.js-barelem, .contentWrap .box-border-w.js-barelem {
  overflow-x: clip;
}
.contentWrap .box-border.js-barelem.active::before, .contentWrap .box-border-w.js-barelem.active::before {
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
}
.contentWrap .box-border-w::before {
  background: var(--background_grad_white);
}
.contentWrap .facade-sec {
  padding-top: 250px;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .contentWrap .facade-sec {
    padding-top: 80px;
  }
}
.contentWrap .facade-sec .facadeBox01 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 200px;
}
@media only screen and (max-width: 991px) {
  .contentWrap .facade-sec .facadeBox01 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 100px;
  }
}
.contentWrap .facade-sec .facadeBox01 > .txtArea {
  width: 45.8333333333%;
  padding-left: clamp(60px, 12.5vw, 240px);
}
@media only screen and (max-width: 1280px) {
  .contentWrap .facade-sec .facadeBox01 > .txtArea {
    padding-left: 80px;
  }
}
@media only screen and (max-width: 991px) {
  .contentWrap .facade-sec .facadeBox01 > .txtArea {
    padding: 0 20px;
    width: 100%;
    margin-bottom: 60px;
  }
}
.contentWrap .facade-sec .facadeBox01 > .txtArea .facadeTtl {
  font-size: 48px;
  line-height: 1.2em;
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .contentWrap .facade-sec .facadeBox01 > .txtArea .facadeTtl {
    font-size: 21px;
    margin-bottom: 15px;
  }
}
.contentWrap .facade-sec .facadeBox01 > .txtArea .archisiteBox {
  background: -webkit-linear-gradient(135deg, rgb(211, 218, 222), rgba(211, 218, 222, 0.3), rgb(211, 218, 222));
  background: linear-gradient(-45deg, rgb(211, 218, 222), rgba(211, 218, 222, 0.3), rgb(211, 218, 222));
  padding: 60px 40px;
  margin-top: 80px;
}
@media only screen and (max-width: 991px) {
  .contentWrap .facade-sec .facadeBox01 > .txtArea .archisiteBox {
    margin-top: 40px;
    padding: 40px 20px;
  }
}
.contentWrap .facade-sec .facadeBox01 > .txtArea .archisiteBox .kikuchiBox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 767px) {
  .contentWrap .facade-sec .facadeBox01 > .txtArea .archisiteBox .kikuchiBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.contentWrap .facade-sec .facadeBox01 > .txtArea .archisiteBox .kikuchiBox .imgArea {
  width: 27.5862068966%;
}
@media only screen and (max-width: 767px) {
  .contentWrap .facade-sec .facadeBox01 > .txtArea .archisiteBox .kikuchiBox .imgArea {
    width: 100%;
    text-align: center;
    margin-bottom: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .contentWrap .facade-sec .facadeBox01 > .txtArea .archisiteBox .kikuchiBox .imgArea img {
    width: 100%;
    max-width: 200px;
  }
}
.contentWrap .facade-sec .facadeBox01 > .txtArea .archisiteBox .kikuchiBox .txtArea {
  width: 67.2413793103%;
  padding-left: 0;
}
@media only screen and (max-width: 767px) {
  .contentWrap .facade-sec .facadeBox01 > .txtArea .archisiteBox .kikuchiBox .txtArea {
    width: 100%;
  }
}
.contentWrap .facade-sec .facadeBox01 > .txtArea .archisiteBox .kikuchiBox .txtArea .archisiteTtl {
  font-size: 21px;
  line-height: 1;
  margin-bottom: 18px;
}
@media only screen and (max-width: 767px) {
  .contentWrap .facade-sec .facadeBox01 > .txtArea .archisiteBox .kikuchiBox .txtArea .archisiteTtl {
    font-size: 16px;
  }
}
.contentWrap .facade-sec .facadeBox01 > .txtArea .archisiteBox .kikuchiBox .txtArea .nameBox {
  padding-top: 26px;
}
.contentWrap .facade-sec .facadeBox01 > .txtArea .archisiteBox .kikuchiBox .txtArea .company {
  font-size: 13px;
  margin-bottom: 10px;
}
.contentWrap .facade-sec .facadeBox01 > .txtArea .archisiteBox .kikuchiBox .txtArea .name {
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  .contentWrap .facade-sec .facadeBox01 > .txtArea .archisiteBox .kikuchiBox .txtArea .name {
    font-size: 12px;
  }
}
.contentWrap .facade-sec .facadeBox01 > .txtArea .archisiteBox .kikuchiBox .txtArea .name strong {
  font-size: 200%;
  font-weight: normal;
}
.contentWrap .facade-sec .facadeBox01 > .txtArea .archisiteBox .kikuchiBox .txtArea .name span {
  display: inline-block;
  line-height: 1;
}
.contentWrap .facade-sec .facadeBox01 > .txtArea .archisiteBox .kikuchiBox .txtArea .name span.ja {
  margin-right: 20px;
}
@media only screen and (max-width: 767px) {
  .contentWrap .facade-sec .facadeBox01 > .txtArea .archisiteBox .kikuchiBox .txtArea .name span.ja {
    margin-right: 15px;
  }
}
.contentWrap .facade-sec .facadeBox01 > .txtArea .archisiteBox .kikuchiBox .txtArea .name span.enserif {
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  .contentWrap .facade-sec .facadeBox01 > .txtArea .archisiteBox .kikuchiBox .txtArea .name span.enserif {
    font-size: 12px;
  }
}
.contentWrap .facade-sec .facadeBox01 > .txtArea .archisiteBox .txt {
  margin-top: 25px;
  font-size: 13px;
  line-height: 1.5em;
}
@media only screen and (max-width: 767px) {
  .contentWrap .facade-sec .facadeBox01 > .txtArea .archisiteBox .txt {
    font-size: 12px;
  }
}
.contentWrap .facade-sec .facadeBox01 .imgArea {
  width: 50%;
}
@media only screen and (max-width: 991px) {
  .contentWrap .facade-sec .facadeBox01 .imgArea {
    width: 100%;
  }
}
.contentWrap .approach-sec {
  padding-top: 250px;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .contentWrap .approach-sec {
    padding-top: 80px;
  }
}
.contentWrap .approach-sec .approachBox01 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 991px) {
  .contentWrap .approach-sec .approachBox01 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .contentWrap .approach-sec .approachBox01 {
    row-gap: 40px;
  }
}
.contentWrap .approach-sec .approachBox01 .imgArea {
  width: 50%;
}
@media only screen and (max-width: 991px) {
  .contentWrap .approach-sec .approachBox01 .imgArea {
    width: 100%;
  }
}
.contentWrap .approach-sec .approachBox01 .txtArea {
  width: 45.8333333333%;
}
@media only screen and (max-width: 991px) {
  .contentWrap .approach-sec .approachBox01 .txtArea {
    width: 100%;
  }
}
.contentWrap .limited-sec {
  padding-top: 250px;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .contentWrap .limited-sec {
    padding-top: 80px;
  }
}
.contentWrap .limited-sec .content-ttlWrap {
  margin-bottom: 30px;
}
.contentWrap .limited-sec .content-ttlWrap .content-ttl {
  display: block;
}
.contentWrap .limited-sec .content-ttlWrap .content-ttl h2 {
  color: var(--txt_silver_dark);
}
.contentWrap .limited-sec .content-ttlWrap .content-ttl .content-jp-ttl {
  padding-left: 0;
}
.contentWrap .limited-sec .content-ttlWrap .content-line {
  background: var(--txt_silver_dark);
}
.contentWrap .limited-sec .limitedWrap {
  background: -webkit-linear-gradient(135deg, rgb(211, 218, 222), rgba(211, 218, 222, 0.3), rgb(211, 218, 222));
  background: linear-gradient(-45deg, rgb(211, 218, 222), rgba(211, 218, 222, 0.3), rgb(211, 218, 222));
  position: relative;
  padding: 60px;
}
@media only screen and (max-width: 1440px) {
  .contentWrap .limited-sec .limitedWrap {
    padding: 60px 40px;
  }
}
@media only screen and (max-width: 767px) {
  .contentWrap .limited-sec .limitedWrap {
    padding: 40px 20px;
  }
}
.contentWrap .limited-sec .limitedWrap .linkBox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 30px;
}
@media only screen and (max-width: 991px) {
  .contentWrap .limited-sec .limitedWrap .linkBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 30px;
    margin-top: 20px;
  }
}
.contentWrap .limited-sec .limitedWrap .linkBox .imgArea {
  width: 57.8125%;
  max-width: 740px;
}
@media only screen and (max-width: 991px) {
  .contentWrap .limited-sec .limitedWrap .linkBox .imgArea {
    width: 100%;
    max-width: none;
  }
}
.contentWrap .limited-sec .limitedWrap .linkBox .btnArea {
  width: 40%;
  max-width: 396px;
}
@media only screen and (max-width: 991px) {
  .contentWrap .limited-sec .limitedWrap .linkBox .btnArea {
    width: 100%;
    max-width: none;
  }
}
.contentWrap .limited-sec .limitedWrap .linkBox .btnArea .limitedBtns a.limitedBtn {
  background: none !important;
}
.contentWrap .limited-sec .limitedWrap .limitedList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
}
@media only screen and (max-width: 767px) {
  .contentWrap .limited-sec .limitedWrap .limitedList {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.contentWrap .limited-sec .limitedWrap .limitedList li {
  width: calc(50% - 5px);
  position: relative;
}
@media only screen and (max-width: 767px) {
  .contentWrap .limited-sec .limitedWrap .limitedList li {
    width: 100%;
  }
}
.contentWrap .limited-sec .limitedWrap .limitedList li .txtBox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 20px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.contentWrap .limited-sec .limitedWrap .limitedList li .txtBox p {
  color: #fff;
}
.contentWrap .limited-sec .limitedWrap .limitedList li .txtBox p.en-ttl {
  font-size: 36px;
  line-height: 1;
}
@media only screen and (max-width: 1280px) {
  .contentWrap .limited-sec .limitedWrap .limitedList li .txtBox p.en-ttl {
    font-size: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .contentWrap .limited-sec .limitedWrap .limitedList li .txtBox p.en-ttl {
    font-size: 24px;
  }
}
.contentWrap .limited-sec .limitedWrap .limitedList li .txtBox p.ja-ttl {
  font-size: 14px;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .contentWrap .limited-sec .limitedWrap .limitedList li .txtBox p.ja-ttl {
    font-size: 11px;
  }
}
.contentWrap .limited-sec .limitedWrap .txtArea {
  padding-top: 30px;
}
@media only screen and (max-width: 767px) {
  .contentWrap .limited-sec .limitedWrap .txtArea {
    padding-top: 20px;
  }
}
.contentWrap .designTxtArea {
  width: 50%;
  margin: 40px 0 0 auto;
}
@media only screen and (max-width: 991px) {
  .contentWrap .designTxtArea {
    width: 100%;
  }
}
.contentWrap .designTxtArea.wide {
  width: 60%;
}
@media only screen and (max-width: 1440px) {
  .contentWrap .designTxtArea.wide {
    width: 70%;
  }
}
@media only screen and (max-width: 1280px) {
  .contentWrap .designTxtArea.wide {
    width: 80%;
  }
}
@media only screen and (max-width: 991px) {
  .contentWrap .designTxtArea.wide {
    width: 100%;
  }
}
.contentWrap .contentsImgArea {
  width: 100%;
  aspect-ratio: 1440/960;
  position: relative;
  overflow: hidden;
}
.contentWrap .contentsImgArea figure {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.contentWrap .contentsImgArea figure img {
  width: 100%;
  height: 120%;
  -o-object-fit: cover;
     object-fit: cover;
}
.contentWrap .entrance-sec, .contentWrap .terrace-sec, .contentWrap .lounge-sec {
  padding-top: 250px;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .contentWrap .entrance-sec, .contentWrap .terrace-sec, .contentWrap .lounge-sec {
    padding-top: 80px;
  }
}