/* ========================================
   フジケン「名古屋単身 × 西三河一戸建て」LP
   カスタムスタイル
   ======================================== */

:root {
  --text-color: #333;
  --bg-light: #ffffff;
  --bg-blue: #40949a;
  --bg-yellow: #ffff00;
}

html {
  scroll-behavior: smooth;
}

/* Bootstrap bg-light の上書き */
.bg-light {
  background-color: var(--bg-light) !important;
}

/* 基本設定 */
body {
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  color: var(--text-color);
  line-height: 1.7;
}

@media screen and (max-width: 767.9px) {
  .pc-only {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .sp-only {
    display: none !important;
  }
}

.arrow {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  margin: 40px auto 40px auto;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  border-left: none;
  border-top: none;
  border-right: 2px #fff solid;
  border-bottom: 2px #fff solid;
  animation: arrow-bounce 2s infinite;
}

.arrow:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 20px;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  border-left: none;
  border-top: none;
  border-right: 1px #fff solid;
  border-bottom: 1px #fff solid;
}

@keyframes arrow-bounce {
  0%,
  100% {
    transform: translateY(0) rotate(45deg);
    opacity: 1;
  }
  50% {
    transform: translateY(10px) rotate(45deg);
    opacity: 0.7;
  }
}

.hr__white {
  border: 1px solid rgb(255, 255, 255);
  width: 100%;
  margin: 0.5rem 0 2rem 0;
}

.hr__black {
  border: 1px solid rgb(0, 0, 0);
  width: 100%;
  margin: 0.5rem 0 2rem 0;
}

/* Section 1: hero */
.hero {
  position: relative;
  background-image: url(../img/gamingroom.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  overflow: hidden;
}

.hero__container {
  position: relative;
  padding: 0 250px 0 150px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  bottom: 0;
}

.hero__fujikenlogo {
  position: absolute;
  top: 2%;
  left: 50%;
  transform: translate(-50%, 0);
  width: 300px;
  max-width: 100%;
  z-index: 3;
}

.hero__fujikenlogo img {
  width: 50%;
  margin: 0 auto;
  display: block;
}

.hero__lplogo {
  position: relative;
  top: 2%;
  left: 0;
  transform: translate(-50%, 0);
  justify-content: center;
  z-index: 5;
  width: 150%;
}

.hero__lplogo img {
  width: 200%;
  height: auto;
  object-fit: cover;
  object-position: center;
}

/* Hero CTA Button */
.hero__cta {
  position: absolute;
  bottom: 12%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  text-align: center;
}

.hero__cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #40949a, #0d6efd);
  border: 0.5px solid #ffffff;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: bold;
  padding: 14px 32px;
  border-radius: 50px; /* pill形状 */
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s;
  white-space: nowrap;
}

.hero__cta-button:hover {
  opacity: 0.85;
  color: #ffffff;
}

.hero__cta-highlight {
  color: #ffff00;
  font-size: 1.25rem;
  text-decoration: none;
  text-underline-offset: 3px;
}

@media screen and (min-width: 768px) {
  .hero__lplogo {
    width: 45%;
    top: 15%;
    left: 10%;
    transform: translateX(-50%);
  }

  .hero__lplogo img {
    width: 120%;
  }

  .hero__cta {
    width: 50%;
    left: 38%;
    bottom: 27%;
    border-radius: 80px;
  }

  .hero__cta-button {
    font-size: 2rem;
    padding: 14px 32px;
  }

  .hero__cta-highlight {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 767.9px) {
  .hero {
    height: 100vh;
    background-position: 70% center;
  }

  .hero__container {
    padding: 0 20px;
  }

  .hero__lplogo {
    top: 8%;
    width: min(100%, 504px);
  }

  .hero__lplogo img {
    width: 100%;
  }

  .hero__cta-button {
    font-size: 1.5rem;
    padding: 14px 32px;
  }

  .hero__cta-highlight {
    font-size: 2rem;
  }
}

/* Section 2: caption*/
.caption {
  position: relative;
  height: 100vh;
  padding: 120px 0;
  overflow: hidden;
  background-color: var(--bg-light);
  z-index: 3;
}

.caption__container {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 80px);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.caption__title {
  font-weight: 600;
  color: #000000;
  text-align: center;
  line-height: 1.8;
}

.caption__title p {
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  font-size: 4rem;
  color: #000000;
  margin: 0;
}

.caption__title p:last-child {
  font-size: 5.5rem;
  font-weight: 700;
  color: #000000;
}

.caption__image {
  position: relative;
  top: 0;
  left: 0;
  z-index: 1;
}

.caption__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media screen and (min-width: 768px) {
  .caption {
    margin-top: clamp(40px, 6vh, 80px);
    padding: clamp(130px, 14vh, 180px) 0;
  }
  .caption__title {
    padding-top: 2rem;
  }
  .caption__title p {
    font-size: 3.6rem;
  }
  .caption__title p:last-child {
    font-size: 4.8rem;
  }
  .caption__image {
    width: min(680px, 60vw);
    padding-bottom: 2rem;
  }
}

@media screen and (max-width: 767.9px) {
  .caption {
    position: sticky;
    top: 0;
    z-index: 2;
    height: 100vh;
    padding: 60px 0;
  }

  .possibility {
    position: relative;
    z-index: 4;
  }
  .caption__container {
    padding: 0 20px;
  }
  .caption__title {
    font-size: 1rem;
    line-height: 2.5;
  }
  .caption__title p {
    font-size: 2rem;
  }
  .caption__title p:last-child {
    font-size: 3rem;
  }
}

/* Section 2: possibility*/
.possibility {
  color: #ffffff;
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background-color: var(--bg-blue);
  z-index: 3;
}

.possibility__container {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 80px);
}

.possibility__wrapper {
  display: block;
  margin-bottom: 2rem;
}

.possibility__title {
  display: flex;
  flex-direction: column;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  text-align: start;
  line-height: 1.2;
  align-items: start;
}

.possibility__title p {
  font-size: 3.5rem;
  font-weight: 500;
  margin: 0;
  line-height: 1.1;
}

.possibility__title p:last-child {
  font-size: 4.75rem;
  font-weight: 700;
}

.possibility__subtitle {
  font-size: 2.25rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin: 5rem 0 1.5rem 0;
  letter-spacing: 0.05em;
}

.possibility__contents {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 2rem;
  align-items: center;
}

.possibility__contents--item {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}

.possibility__contents--item img.slide-image {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
}

.possibility__contents--item--title--highlight {
  color: #ffff00;
}

.possibility__contents--item--title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #ffffff;
  text-align: start;
  margin-bottom: 1.25rem;
  line-height: 1.4;
}

.possibility__contents--item--description {
  font-size: 1.15rem;
  font-weight: 400;
  color: #ffffff;
  text-align: start;
  margin-bottom: 1rem;
  line-height: 1.9;
}

.possibility__method {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

.possibility__method--title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffff00;
  text-align: center;
  margin-bottom: 1rem;
}

.possibility__method--text {
  font-size: 2.25rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 1rem;
  line-height: 2;
}

.possibility__method--description {
  font-size: 0.875rem;
  font-weight: 400;
  color: #ffffff;
  text-align: center;
}

@media screen and (max-width: 767.9px) {
  .possibility {
    padding: 60px 0 60px 0;
  }
  .possibility__container {
    padding: 40px 20px;
  }

  .possibility__wrapper {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .possibility__title {
    font-size: 1.25rem;
  }
  .possibility__title p {
    font-size: 2.25rem;
  }
  .possibility__title p:last-child {
    font-size: 3.5rem;
  }
  .possibility__subtitle {
    font-size: 1.25rem;
  }
  .possibility__contents {
    gap: 1rem;
  }

  /* スマホ限定：画像を縦長に拡大 */
  .possibility__contents--item img.slide-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    border-radius: 3px;
  }

  .possibility__contents--item--title {
    font-size: 0.85rem;
  }
  .possibility__contents--item--description {
    font-size: 0.875rem;
  }
  .possibility__method {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .possibility__method--item img.slide-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    object-position: center;
  }

  .possibility__method--title {
    font-size: 1.75rem;
    line-height: 2;
  }
  .possibility__method--description {
    font-size: 0.875rem;
    margin-bottom: 0rem;
  }
}

/* ===== 物件スライダー ===== */
.swiper-container {
  position: relative;
  max-width: 1500px;
  margin: 2rem auto 2.5rem;
  padding: 0 clamp(15px, 3vw, 60px);
  z-index: 5;
}

.swiper {
  width: 100%;
  margin: 0 auto;
  padding-bottom: 60px;
}

.swiper-wrapper {
  padding: 0;
}

/* PC：横並びカード（画像左 / コンテンツ右） */
.swiper-slide {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13);
  display: flex;
  flex-direction: row;
  height: 540px;
  box-sizing: border-box;
}

/* 画像ブロック - 全カードで完全に同一サイズ */
.slide-image-wrapper {
  position: relative;
  flex-shrink: 0;
  width: 42%;
  height: 100%;
  align-self: stretch;
}

.slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* コンテンツブロック */
.slide-content {
  flex: 1;
  padding: 2.25rem 2.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.slide-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0.1rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.slide-description {
  font-size: 1rem;
  color: #888;
  margin: 0;
  line-height: 1;
}

.slide-description-price {
  font-size: 2.6rem;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: -0.02em;
}

.slide-description-box {
  background: #f5f8f9;
  border: 1.5px solid #40949a;
  border-radius: 12px;
  padding: 0.85rem 1rem 0.65rem;
  margin: 0;
}

.slide-description-box p {
  text-align: center;
  margin: 0;
  line-height: 1.6;
}

.slide-description-box span {
  margin: 0;
}

.slide-description-note {
  font-size: 0.72rem;
  font-weight: 400;
  color: #999;
}

/* 支払い例 2カラムグリッド */
.slide-payment-header {
  font-size: 0.85rem;
  font-weight: 600;
  color: #888;
  text-align: center;
  margin: 0 0 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.slide-payment-grid {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.slide-payment-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 0.5rem;
  gap: 0.3rem;
  background: rgba(64, 148, 154, 0.06);
  border-radius: 8px;
  border: 1.5px solid #40949a;
}

.slide-payment-term {
  font-size: 0.95rem;
  font-weight: 600;
  color: #555;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.slide-payment-freq {
  font-size: 0.7rem;
  font-weight: 400;
  color: #999;
}

.slide-payment-amount {
  display: flex;
  align-items: baseline;
  gap: 0.1rem;
  line-height: 1;
}

.slide-payment-amount .slide-description-price {
  font-size: 2.3rem;
  color: #40949a;
  letter-spacing: -0.03em;
}

.slide-payment-unit {
  font-size: 1.05rem;
  font-weight: 700;
  color: #40949a;
}

.slide-payment-divider {
  width: 1px;
  background: #dde3e5;
  align-self: stretch;
  margin: 0.2rem 0;
  flex-shrink: 0;
}

/* ページネーション */
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.35);
  opacity: 1;
  transition:
    width 0.3s,
    background 0.3s;
}

.swiper-pagination-bullet-active {
  width: 24px;
  border-radius: 4px;
  background: #40949a;
  opacity: 1;
}

/* ナビゲーションボタン */
.swiper-button-next,
.swiper-button-prev {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.3s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(64, 148, 154, 0.5);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1rem;
  font-weight: 800;
}

/* SP：縦積みカード */
@media (max-width: 767.9px) {
  .swiper-container {
    padding: 0 16px;
    margin-top: 0;
  }

  .swiper {
    width: 100%;
  }

  .swiper-slide {
    flex-direction: column;
    min-height: auto;
    border-radius: 12px;
  }

  .slide-image-wrapper {
    width: 100%;
    height: 220px;
  }

  .slide-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
  }

  .slide-content {
    padding: 1.25rem;
    gap: 0.7rem;
  }

  .slide-title {
    font-size: 1.15rem;
    margin: 0;
  }

  .slide-description {
    font-size: 0.85rem;
  }

  .slide-description-price {
    font-size: 1.9rem;
  }

  .slide-description-box {
    padding: 0.6rem 0.65rem 0.4rem;
    border-radius: 8px;
  }

  .slide-payment-amount .slide-description-price {
    font-size: 1.55rem;
  }

  .slide-payment-term {
    font-size: 0.75rem;
  }

  .slide-payment-unit {
    font-size: 0.8rem;
  }

  .slide-payment-header {
    font-size: 0.7rem;
  }

  .slide-description-note {
    font-size: 0.6rem;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}

/* Section 3: モデルハウス */
.area {
  position: relative;
  overflow: hidden;
  background-color: #ebebeb;
  padding: 120px 0;
  z-index: 4;
}

.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.area__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.area__container {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 80px);
  overflow: hidden;
  z-index: 5;
}

.area__title {
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  text-align: start;
  line-height: 1.2;
  mix-blend-mode: exclusion;
  color: rgb(255, 255, 255);
}

.area__title p {
  font-size: 3.5rem;
  font-weight: 500;
  margin: 0;
  line-height: 1.1;
}

.area__title p:last-child {
  font-size: 4.75rem;
  font-weight: 700;
}

.area__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  align-items: center;
  margin: 0;
  gap: 0.4rem;
}

.area__tag {
  display: inline-block;
  font-size: 0.85rem;
  border-radius: 50px;
  background: #eef2f3;
  border: 1px solid #cfd8da;
  color: #4a6366;
  padding: 0.3rem 0.85rem;
  transition: all 0.2s ease;
}

/* タグ強調（modifierクラス）— 追加するだけでブランドカラーで目立たせる */
.area__tag.area__tag--highlight {
  background: linear-gradient(135deg, #40949a 0%, #2c7a80 100%);
  border-color: #40949a;
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(64, 148, 154, 0.35);
}

button.area__material-button {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, #40949a, #2563eb);
  color: #ffffff;
  border: none;
  padding: 1.15rem 2rem;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(64, 148, 154, 0.4);
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
  margin: 0 auto;
  letter-spacing: 0.05em;
}

.area__material-button-link {
  text-decoration: none;
  color: #ffffff;
}

button.area__material-button:hover {
  filter: brightness(1.12);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(64, 148, 154, 0.55);
}

button.area__material-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(64, 148, 154, 0.3);
}

/* 契約済 — 資料請求CTA無効化 */
.area__material-button-link--sold {
  pointer-events: none;
  cursor: not-allowed;
}

button.area__material-button--sold {
  background: #b8b8b8;
  color: #ffffff;
  box-shadow: none;
  opacity: 0.7;
  cursor: not-allowed;
}

button.area__material-button--sold:hover,
button.area__material-button--sold:active {
  filter: none;
  transform: none;
  box-shadow: none;
  background: #b8b8b8;
}

.area__subtitle {
  font-size: 1.25rem;
  font-weight: 700;
  color: #000000;
  text-align: center;
  margin-bottom: 2rem;
}

.area__description {
  position: relative;
  max-width: 1280px;
  margin: 3rem auto;
  padding: 0 clamp(20px, 4vw, 80px);
  z-index: 5;
}

.area__description--text {
  font-family:
    Noto Sans JP,
    sans-serif;
  font-size: 2rem;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

button.area__description--button {
  display: inline-block;
  background-color: #ffffff;
  color: #000000;
  border: none;
  padding: 1.75rem 7.5rem;
  font-size: 1.6rem;
  font-weight: 700;
  cursor: pointer;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
  margin-top: 1.5rem;
}

button.area__description--button:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

button.area__description--button:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 767.9px) {
  .area {
    padding: 0;
  }
  .area__container {
    padding: 60px 15px;
  }
  .area__title {
    font-size: 1.25rem;
  }
  .area__title p {
    font-size: 2.25rem;
  }
  .area__title p:last-child {
    font-size: 3rem;
  }
  .area__tags {
    gap: 0.3rem;
    margin-bottom: 0;
  }
  .area__tag {
    font-size: 0.72rem;
    padding: 0.22rem 0.7rem;
  }
  .area__subtitle {
    font-size: 1rem;
    margin: 3rem 0;
  }

  .area__description {
    padding: 0 20px;
  }
  .area__description--text {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  button.area__description--button {
    padding: 1rem 3rem;
    font-size: 1rem;
    width: 90%;
    max-width: 350px;
  }
}

/* Section 5: gap*/

.gap {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background-color: #251c1c;
  z-index: 5;
  color: #ffffff;
}

.gap__container {
  position: relative;
  padding: 0 350px;
  overflow: hidden;
}

.gap__title {
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  font-size: 3rem;
  text-align: start;
  line-height: 1.2;
}

.gap__title p {
  font-size: 3rem;
  font-weight: 500;
  margin: 0;
  line-height: 1;
}

.gap__title p:last-child {
  font-size: 4rem;
  font-weight: 700;
}

.gap__features {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.gap__features-item-img {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.gap__features-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.gap__features-item-img canvas {
  width: 100% !important;
  height: 500px !important;
  background: #fff;
}

/* グラフ説明文のスタイル */
.gap__chart-description {
  text-align: center;
  padding: 40px 20px 20px;
  color: #fff;
}

.gap__chart-description-main {
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.6;
}

.gap__chart-highlight {
  color: #ffff00;
  font-size: 2.2rem;
  text-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
  font-weight: bold;
}

.gap__chart-description-sub {
  font-size: 1.1rem;
  color: #ddd;
  line-height: 2;
}

.gap__chart-note {
  color: #ff790a;
  font-weight: bold;
  font-size: 1.2rem;
}

.gap__usecase {
  display: grid;
  grid-template-columns: 400px 1fr; /* PC：画像固定 + テキスト */
  grid-template-rows: 400px 1fr;
  gap: 24px;
  align-items: center; /* 縦中央揃え */
}

/* lottieサイズ管理 */
.gap__usecase-image dotlottie-wc {
  width: 400px;
  height: 400px;
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

/* テキストを画像の高さ内に収める */
.gap__usecase-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 clamp(20px, 5vw, 60px);
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.gap__usecase-text p {
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 1rem;
}

@media screen and (min-width: 768px) {
  .gap__usecase-text {
    flex-direction: row;
    gap: 3rem;
    height: auto;
    align-items: center;
    justify-content: center;
    padding-bottom: 2rem;
  }

  .gap__usecase-text p {
    font-size: 2.75rem;
    margin-bottom: 0;
  }
}

.gap__usecase-result {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  height: 300px;
  padding: 0 100px;
  grid-column: 1 / 3;
  grid-row: 2 / 3;
}

.gap__usecase-result p {
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 1rem;
}

@media screen and (max-width: 767.9px) {
  .gap {
    padding: 60px 0 60px 0;
  }
  .gap__container {
    padding: 0 15px;
  }
  .gap__title {
    font-size: 1.25rem;
  }
  .gap__title p {
    font-size: 2.25rem;
  }
  .gap__title p:last-child {
    font-size: 3.5rem;
    letter-spacing: -0.3rem;
  }

  /* グラフのスタイル */

  .gap__features-item-img {
    padding: 0 10px;
  }

  .gap__features-item-img canvas {
    height: 700px !important;
  }

  .gap__chart-description {
    padding: 30px 15px 20px;
  }

  .gap__chart-description-main {
    font-size: 1.2rem;
  }

  .gap__chart-highlight {
    font-size: 1.8rem;
  }

  .gap__chart-description-sub {
    font-size: 0.95rem;
    line-height: 1.8;
  }

  .gap__chart-note {
    font-size: 1rem;
  }

  .gap__usecase {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    gap: 1rem;
  }

  .gap__usecase-image {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }

  .gap__usecase-text {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    padding: 0 20px;
    justify-content: center;
    align-items: center;
  }

  .gap__usecase-result {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
    padding: 0 20px;
  }

  .gap__usecase-text p {
    font-size: 2rem;
  }

  .gap__usecase-result p {
    font-size: 2.5rem;
  }
}

/* Comparison Table */
.comparison {
  margin: 4rem auto 0;
  max-width: 1200px;
  padding: 0 20px;
}

.comparison__scroll-note {
  text-align: center;
  font-size: 0.875rem;
  color: #000000;
  background-color: #ff790a;
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
  border-radius: 4px;
  font-weight: 500;
}

.comparison__table-wrapper {
  overflow-x: auto;
  margin-bottom: 1rem;
}

.comparison__table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.comparison__header {
  padding: 1rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  background-color: #f5f5f5;
  border-bottom: 2px solid #ddd;
  color: #333;
}

.comparison__header--rental {
  background-color: #f8f8f8;
}

.comparison__header--purchase {
  background-color: #ffa358;
  color: #2c2925;
}

.comparison__item {
  padding: 1rem;
  font-weight: 600;
  text-align: left;
  background-color: #fafafa;
  border-bottom: 1px solid #eee;
  color: #333;
  width: 30%;
  font-size: 0.875rem;
}

.comparison__value {
  padding: 0.5rem;
  text-align: center;
  border-bottom: 1px solid #eee;
  color: #666;
  font-size: 0.875rem;
}

.comparison__value--highlight {
  background-color: #ffdbbd;
  color: #2c2925;
  font-weight: 600;
}

.comparison__note {
  text-align: center;
  font-size: 0.875rem;
  color: #888;
  margin-top: 1rem;
}

@media screen and (max-width: 767.9px) {
  .comparison {
    margin: 2rem auto 0;
    padding: 0 10px;
  }

  .comparison__table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -10px;
    padding: 0 10px;
  }

  .comparison__table {
    min-width: 600px;
    width: auto;
  }

  .comparison__header {
    padding: 0.8rem 0.5rem;
    font-size: 0.9rem;
    white-space: nowrap;
  }

  .comparison__item {
    padding: 0.8rem 0.5rem;
    font-size: 0.85rem;
    width: 35%;
    min-width: 120px;
  }

  .comparison__value {
    padding: 0.8rem 0.5rem;
    font-size: 0.85rem;
    min-width: 100px;
  }

  .comparison__note {
    font-size: 0.75rem;
  }
}

/* Section 5: contact */
.contact {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background-color: #ffffff;
  z-index: 6;
}

.contact__container {
  position: relative;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 clamp(15px, 3vw, 60px);
  overflow: hidden;
}

/* タイトル・特別バナー・hr・CTAはarea__container(1280px)と同じ幅に統一 */
.contact__special,
.contact__title,
.contact__cta,
.contact__container > .hr__black {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.contact__special {
  background: #40949a;
  color: #ffffff;
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
  width: 100%;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  margin-bottom: 2.5rem;
}

.contact__title {
  color: #2c2424;
  font-family: "Noto Sans JP", sans-serif;
  text-align: start;
}

.contact__title p {
  margin: 0;
  line-height: 1.3;
}

.contact__title p:first-child {
  font-size: 2.5rem;
  font-weight: 500;
  color: #2b2020;
}

.contact__title p:nth-child(2) {
  font-size: 3rem;
  font-weight: 500;
  color: #2b2020;
}

.contact__title p:nth-child(3) {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--bg-blue);
}

/* PC：ギャラリー・コンテンツ・プレビューを2カラムに */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: start;
  margin-bottom: 2rem;
}

.contact__preview-outer {
  grid-column: 1 / -1;
}

@media screen and (max-width: 767.9px) {
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .contact__preview-outer {
    grid-column: 1;
  }
}

.contact__gallery {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.contact__gallery img {
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
}

@media screen and (min-width: 768px) {
  .contact__gallery img {
    max-width: 1080px;
  }
}

.contact__content {
  background-color: #f5f5f5;
  padding: 2.5rem;
  border-radius: 1rem;
  margin-bottom: 2rem;
  font-family: "shuei-gothic-gin-std", sans-serif;
}

.contact__subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c2424;
  text-align: center;
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
}

.contact__contents-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  justify-content: center;
  align-items: start;
}

.contact__preview {
  margin-bottom: 2rem;
}

/* contact CTA Button */
.contact__cta {
  position: relative;
  text-align: center;
}
.contact__cta p {
  font-size: 2rem;
  font-weight: bold;
  color: #ffffff;
}

.contact__cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #40949a, #0d6efd);
  border: 0.5px solid #ffffff;
  color: #ffffff;
  font-size: 2rem;
  font-weight: bold;
  padding: 20px 48px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s;
  white-space: nowrap;
  line-height: 1.3;
}

.contact__cta-button p {
  margin: 0;
  font-size: 1.4rem;
}

.contact__cta-button:hover {
  opacity: 0.85;
  color: #ffffff;
}

.contact__cta-highlight {
  color: #ffff00;
  font-size: 2.4rem;
  text-decoration: none;
  text-underline-offset: 3px;
}

@media screen and (max-width: 767.9px) {
  .contact {
    padding: 60px 0 60px 0;
  }
  .contact__container {
    padding: 0 20px;
  }
  .contact__title p:first-child {
    font-size: 1.5rem;
  }
  .contact__title p:nth-child(2) {
    font-size: 2.25rem;
  }
  .contact__title p:nth-child(3) {
    font-size: 2.25rem;
    letter-spacing: -0.3rem;
  }

  .contact--img01 {
    width: 100%;
  }

  .contact__content {
    padding: 1rem;
  }
  .contact__subtitle {
    font-size: 1rem;
  }
  .contact__contents-list {
    gap: 0.25rem;
  }

  .contact__cta-button {
    font-size: 1.25rem;
    padding: 14px 32px;
  }

  .contact__cta-highlight {
    font-size: 1.5rem;
  }
}

/* Footer */
.footer {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background-color: #000000;
}

.footer__container {
  position: relative;
  padding: 0 100px;
  overflow: hidden;
}

.footer__title {
  font-size: 2.5rem;
  text-align: center;
  line-height: 1.2;
}

.footer__title p {
  margin: 0;
  line-height: 1;
}

.footer__title p:first-child {
  font-size: 2.75rem;
  font-weight: 700;
  color: #ffffff;
}

.footer__title p:nth-child(2) {
  font-size: 1.25rem;
  font-weight: 700;
}

@media screen and (max-width: 767.9px) {
  .footer {
    padding: 120px 0 120px 0;
  }
  .footer__container {
    padding: 0 20px;
  }
  .footer__title {
    font-size: 1.25rem;
  }
}

/* ========================================
   フェードインアニメーション（GSAP）
   ======================================== */
.fade {
  opacity: 0;
  transform: translateY(30px);
  will-change: opacity, transform;
}

/* ========================================
   物件画像の「販売中」バッジ
   ======================================== */
/* 画像ラッパー */
.slide-image-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}

/* 販売中バッジ */
.property-status-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(64, 148, 154, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 5px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 10;
  letter-spacing: 0.1em;
  line-height: 1;
  border-radius: 4px;
}

/* バッジ：契約済バリエーション */
.property-status-badge--sold {
  background: var(--bg-yellow);
  border-color: var(--bg-yellow);
  color: #000000;
}

/* 画像ラッパー：契約済状態 → 半透明グレーをオーバーレイ */
.slide-image-wrapper--sold::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(40, 40, 40, 0.45);
  z-index: 5;
  pointer-events: none;
}

@media (max-width: 767.9px) {
  .property-status-badge {
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    font-size: 0.7rem;
  }
}

/* contact preview swiper */
.contact__preview-outer {
  overflow: hidden;
  padding: 0 10%;
  margin: 0 -10%;
  margin-bottom: 2rem;
}

.contact-preview-swiper {
  width: 100%;
  padding-bottom: 40px;
  overflow: visible !important;
}

.contact-preview-swiper .swiper-slide {
  opacity: 0.5;
  transition: opacity 0.3s;
  border-radius: 8px;
  overflow: hidden;
}

.contact-preview-swiper .swiper-slide-active {
  opacity: 1;
}

.contact-preview-swiper .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.contact-preview-swiper .swiper-pagination-bullet {
  background-color: #333;
  opacity: 0.4;
}

.contact-preview-swiper .swiper-pagination-bullet-active {
  background-color: #333;
  opacity: 1;
}

/* PC：previewスライダーを縮小・中央配置 */
@media screen and (min-width: 768px) {
  .contact-preview-swiper {
    width: 50%;
    margin: 0 auto;
  }
}

/* ========================================
   CTAボタン ぽよぽよアニメーション
   ======================================== */
.anim-box.poyopoyo {
  animation: poyopoyo 2s ease-out infinite;
  opacity: 1;
}

@keyframes poyopoyo {
  0%,
  40%,
  60%,
  80% {
    transform: scale(1);
  }
  50%,
  70% {
    transform: scale(0.95);
  }
}
