@charset "UTF-8";
/* =============================================================
   design page
============================================================= */

/* FACADE DESIGN
---------------------------------------------- */
/* Figmaのファサードは全幅グレー地（#d9d9d9）＋上部テクスチャの上に、
   左＝見出し・本文（左寄せ）／右＝外観CG（透過PNG）を横並びにする2カラム構成。
   外観CGは背景透過PNGなので、セクションのグレー地の上に継ぎ目なく重なる。 */
.facadeSect {
  position: relative;
  z-index: 1;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background-color: #d9d9d9;
  overflow: hidden;
}
/* テクスチャは全面を覆う（背の高いセクションでも継ぎ目が出ないよう cover 表示） */
.facadeSect::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("../img/design/pc/bg-facade-texture@1.5x.jpg") no-repeat center top / cover;
  opacity: 0.3;
  mix-blend-mode: multiply;
}
/* 上部の白フェード＋左下の暗がりで奥行きを出す（Figma: 250.9deg / alpha0.15） */
.facadeSect::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(217, 217, 217, 0.6) 0%, rgba(217, 217, 217, 0) 40%),
    linear-gradient(250.9deg, rgba(0, 0, 0, 0.15) 10%, rgba(0, 0, 0, 0) 66%);
}
/* 本文はFigmaに合わせて行間広め（1.8） */
.facadeSect__head .txt,
.entranceSect__head .txt {
  line-height: 1.8;
}
.facadeSect__img .photo__image {
  display: block;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .facadeSect {
    padding-top: 80px;
  }
  /* Figma: content幅1198 / 右pad144。左テキスト＋右CGを両端寄せ */
  .facadeSect__inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    max-width: 1198px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 40px;
    box-sizing: border-box;
  }
  /* テキスト列は左寄せ・内容幅。Figma txtは pt120 / gap40 */
  .facadeSect__head {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    padding-top: 120px;
    text-align: left;
  }
  .facadeSect__head .headingLv3 {
    font-size: 34px;
    line-height: 1.6;
  }
  /* CG列は残り幅を占有（最大760px）。透過PNGを縦横比維持で表示 */
  .facadeSect__img {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 760px;
  }
}
@media only screen and (max-width: 767px) {
  /* SPはFigma PCフレーム未提供のため、既存の中央寄せ縦積みを踏襲（画像のみ差し替え） */
  .facadeSect {
    padding: calc(56 / 375 * 100vw) 0 0;
    text-align: center;
  }
  .facadeSect::before {
    background-image: url("../img/design/sp/bg-facade-texture.jpg");
  }
  .facadeSect__head {
    text-align: center;
  }
  .facadeSect__head .enTtl + .headingLv3 {
    margin-top: calc(40 / 375 * 100vw);
  }
  .facadeSect__head .headingLv3 + .txt {
    margin-top: calc(40 / 375 * 100vw);
  }
  .facadeSect__img {
    max-width: calc(325 / 375 * 100vw);
    margin: calc(40 / 375 * 100vw) auto 0;
  }
}

/* ENTRANCE
---------------------------------------------- */
.entranceSect {
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .entranceSect {
    padding-top: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .entranceSect {
    padding-top: calc(56 / 375 * 100vw);
  }
}
.entranceSect__head .headingLv3 {
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .entranceSect__head .enTtl + .headingLv3 {
    margin-top: 56px;
  }
  .entranceSect__head .headingLv3 + .txt {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .entranceSect__head .enTtl + .headingLv3 {
    margin-top: calc(40 / 375 * 100vw);
  }
  .entranceSect__head .headingLv3 + .txt {
    margin-top: calc(40 / 375 * 100vw);
  }
}
/* エントランスCGは全幅（フルブリード）で見せる */
.entranceSect__img {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
@media only screen and (min-width: 768px) {
  .entranceSect__img {
    margin-top: 160px;
  }
}
@media only screen and (max-width: 767px) {
  .entranceSect__img {
    margin-top: calc(80 / 375 * 100vw);
  }
}
.entranceSect__img .photo__image {
  display: block;
  width: 100%;
}
