/* ============================================
   双伸の家 LP - Base Styles
   ============================================ */

/* ----- Reset & Base ----- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #F0F4F7;
  display: flex;
  justify-content: center;
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

/* ----- Layout: 3 Column Structure ----- */

.side-panel {
  position: fixed;
  top: 0;
  bottom: 0;
  background-color: #F0F4F7;
  z-index: 10;
  overflow-y: hidden;
}

.side-panel--left {
  left: 0;
  right: calc(50% + 187.5px);
}

.side-panel__logo {
  display: block;
  position: absolute;
  top: 25px;
  left: 40px;
  z-index: 20;
  padding: 0 20px 0 0;
}

.side-panel__logo img {
  width: 197px;
  height: auto;
}

.copyright {
  position: absolute;
  bottom: 25px;
  left: 40px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: #333;
  z-index: 20;
}

.side-panel--right {
  left: calc(50% + 187.5px);
  right: 0;
  ;
}

.side-panel__inner {
  padding: 20px;
  height: 100%;
}

.main-content {
  width: 375px;
  min-height: 100vh;
  background-color: #fff;
  position: relative;
  z-index: 5;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.06);
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
}

.main-content__inner {
  width: 100%;
  min-height: 100vh;
}

.mobile-logo {
  display: block;
  position: absolute;
  top: 5px;
  left: 15px;
  z-index: 100;
}

.mobile-logo img {
  width: 120px;
  height: auto;
}

/* ============================================
   セクション0001: ファーストビュー (FV)
   ============================================ */

.fv {
  position: relative;
  overflow: hidden;
  background-color: #fff;
}

.fv__bg {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.fv__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fv__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  padding-top: 85px;
  text-align: center;
}

.fv__badge {
  display: inline-block;
  padding: 4px 15px;
  background-color: #1113CA;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.05em;
  border-radius: 100px;
  font-family: 'Noto Sans JP', sans-serif;
}

.fv__heading {
  margin-top: 8px;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 35px;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
}

.fv__count {
  margin-top: 10px;
  text-align: center;
  position: relative;
}

.fv__count-number {
  font-family: 'Oswald', sans-serif;
  font-size: 11rem;
  font-weight: 600;
  color: #E71F19;
  line-height: 1;
}

.fv__count-label {
  font-size: 2.5rem;
  font-weight: 700;
  color: #E71F19;
  letter-spacing: 0.05em;
  line-height: 32px;
  margin-top: 0px;
  font-family: 'Noto Sans JP', sans-serif;
}

.fv__count-status {
  display: inline-block;
  margin-top: 4px;
  padding: 2px 28px;
  background-color: #E71F19;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 26px;
  border-radius: 100px;
  font-family: 'Noto Sans JP', sans-serif;
}

.fv__character {
  position: relative;
  width: 100%;
  height: 240px;
  margin-top: -100px;
  z-index: 3;
}

.fv__fukidashi-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.fv__fukidashi {
  position: absolute;
  z-index: 2;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
}

.fv__fukidashi--01 {
  width: 112px;
  height: auto;
  top: -100px;
  left: 15px;
}

.fv__fukidashi--02 {
  width: 112px;
  height: auto;
  bottom: 120px;
  left: 5px;
}

.fv__fukidashi--03 {
  width: 112px;
  height: auto;
  top: -82px;
  right: 12px;
}

.fv__fukidashi--04 {
  width: 112px;
  height: auto;
  bottom: 100px;
  right: 15px;
}

.fv__tora {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: auto;
  z-index: 1;
}

.fv__tora-shadow {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 13px;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.fv__bottom {
  position: relative;
  z-index: 4;
  text-align: center;
  padding: 12px 0 6px;
  background-color: #fff;
}

.fv__bottom-text {
  font-size: 1.7rem;
  font-weight: 700;
  color: #000;
  line-height: 27px;
  font-family: 'Noto Sans JP', sans-serif;
}

.fv__bottom-cta {
  font-size: 2.2rem;
  font-weight: 700;
  color: #000;
  line-height: 35px;
  letter-spacing: 0.05em;
  margin-top: 2px;
  font-family: 'Noto Sans JP', sans-serif;
}

span.line {
  background: linear-gradient(transparent 80%, #FFCE00 80%);
}

.fv__bottom-line {
  display: block;
  width: 225px;
  height: 5px;
  background-color: #FFCE00;
  margin: 0 auto;
}

/* ============================================
   セクション0002: 住宅供給実績
   ============================================ */

.supply {
  padding: 30px 8px 0;
  background-color: #fff;
}

/* --- 共通セクション見出しバッジ --- */
.heading-badge {
  display: block;
  width: 100%;
  padding: 7px 28px;
  background-color: #1113CA;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 35px;
  letter-spacing: 0.05em;
  border-radius: 4px;
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
}

/* --- 共通セクション見出しライン --- */
.heading-line {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #000;
  line-height: 32px;
  padding-left: 10px;
  position: relative;
}

.heading-line::before {
  content: '';
  position: absolute;
  top: 1px;
  left: 0;
  width: 5px;
  height: 30px;
  background-color: #FFCE00;
}

/* --- ランキング --- */
.supply__ranking {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  margin-top: 12px;
  position: relative;
  padding: 0 0 0 20px;
}

.supply__ranking-inner {
  text-align: center;
}

.supply__years {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
}

.supply__year {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #070707;
  line-height: 1;
}

.supply__years-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #000;
  letter-spacing: 0.05em;
}

.supply__city-rank {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-top: -5px;
}

.supply__city {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 4.6rem;
  font-weight: 700;
  color: #000;
  letter-spacing: 0.05em;
  line-height: 1.2;
  -webkit-text-stroke: 2px #fff;
  paint-order: stroke fill;
}

.supply__rank-number {
  font-family: 'Oswald', sans-serif;
  font-size: 6rem;
  font-weight: 600;
  color: #E71F19;
  line-height: 1;
}

.supply__rank-unit {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #E71F19;
  letter-spacing: 0.05em;
  line-height: 1;
}

.supply__trophy {
  position: absolute;
  width: 88px;
  height: auto;
  flex-shrink: 0;
  right: 0;
}

/* --- 注釈 --- */
.supply__note {
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 20px;
  color: #777;
  margin-top: 6px;
  display: flex;
  justify-self: flex-start;
  padding: 0 0 0 20px;
}

/* --- 吹き出し会話 --- */
.supply__talk {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.supply__talk-img {
  margin-top: 20px;
  width: 100%;
}

.supply__talk-img img {
  width: 100%;
  height: auto;
}


.supply__talk-row {
  display: flex;
  align-items: center;
}

.supply__talk-row--right {
  justify-content: center;
}

.supply__talk-row--left {
  justify-content: flex-start;
  margin-top: -50px;
}

/* キャラクター */
.supply__talk-chara {
  position: relative;
  flex-shrink: 0;
}

.supply__talk-chara--left img {
  width: 110px;
  height: auto;
}

.--second .supply__talk-chara--left img {
  width: 180px !important;
}

.supply__talk-chara--right img {
  width: 110px;
  height: auto;
}

.supply__talk-shadow {
  display: block;
  width: 76px;
  height: 14px;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  margin: -2px auto 0;
}

/* バルーン */
.supply__balloon {
  position: relative;
  padding: 18px 20px;
  border-radius: 100px;
  max-width: 265px;
}

.supply__balloon p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 20px;
}

.supply__balloon--green {
  background-color: #5BA838;
}

.supply__balloon--green p {
  color: #fff;
}

/* 緑吹き出しの三角（左下向き） */
.supply__balloon--green::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 25px;
  width: 0;
  height: 0;
  border-left: 12px solid #5BA838;
  border-right: 12px solid transparent;
  border-top: 12px solid #5BA838;
  border-bottom: 12px solid transparent;
}

.supply__balloon--yellow {
  background-color: #FFCE00;
  margin-right: -20px;
}

.supply__balloon--yellow p {
  color: #000;
}

/* 黄色吹き出しの三角（右下向き） */
.supply__balloon--yellow::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: 25px;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid #FFCE00;
  border-top: 12px solid #FFCE00;
  border-bottom: 12px solid transparent;
}

/* ============================================
   セクション0003: 土地情報
   ============================================ */

.land-info {
  padding: 30px 18px 40px;
  background-color: #fff;
}

.land-info .heading-badge {
  margin-bottom: 25px;
}

.land-info__lead {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: #000;
  text-align: center;
  line-height: 25px;
  margin-bottom: 0px;
}

.land-info__count {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
  margin-bottom: 25px;
}

.land-info__count-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 2.0rem;
  font-weight: 700;
  color: #1113CA;
  line-height: 32px;
  letter-spacing: 0.05em;
}

.land-info__count-num {
  font-family: 'Oswald', sans-serif;
  font-size: 8.3rem;
  font-weight: 600;
  color: #E71F19;
  line-height: 1;
  padding: 0 4px;
}

.land-info__list-wrap {
  border-top: 1px solid #DDDDDD;
  border-bottom: 1px solid #DDDDDD;
  padding: 15px 0;
}

.land-info__list-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.land-info__list-row:not(:first-child) {
  margin-top: 5px;
}

.land-info__list-row li {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.5rem;
  color: #000;
  line-height: 25px;
}

.blue-dot {
  color: #1113CA;
}

/* ============================================
   Fade Up Animation
   ============================================ */

.js-fadeup {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.js-fadeup.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fv__fukidashi--01.js-fadeup {
  transition-delay: 0.1s;
}

.fv__fukidashi--02.js-fadeup {
  transition-delay: 0.3s;
}

.fv__fukidashi--03.js-fadeup {
  transition-delay: 0.5s;
}

.fv__fukidashi--04.js-fadeup {
  transition-delay: 0.7s;
}

/* ============================================
   セクション0004: Slider styles
   ============================================ */

.land-info__slider-wrap {
  margin-top: 25px;
}

.land-info__slider-top {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid #DDDDDD;
}

/* Swipe! Tooltip */
.land-info__swipe {
  position: absolute;
  top: 0px;
  right: -10px;
  width: 68px;
  height: auto;
  z-index: 10;
  animation: swipeAnim 1.5s ease-in-out infinite;
}

@keyframes swipeAnim {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-10px);
  }
}

/* Slider Card Styles */
.js-land-slider {
  margin-right: -18px;
  /* allow cards to bleed to right edge */
}

/* Align heights for sliders removed to allow variable height */


/* Hide slick buttons if they appear */
.slick-prev,
.slick-next {
  display: none !important;
}

.slick-list {
  padding-bottom: 30px !important;
  /* Buffer for adaptive height and shadows */
}

.land-card {
  width: 280px;
  margin-right: 20px;
  padding-top: 10px;
  padding-bottom: 20px;
  /* Add internal padding */
  outline: none;
  display: flex;
  flex-direction: column;
}

.land-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.land-card__area {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #000;
  line-height: 32px;
}

.land-card__badge-lot {
  font-family: 'IBM Plex Sans JP', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
  background-color: #1113CA;
  padding: 0 8px;
  border-radius: 100px;
  line-height: 20px;
  height: 20px;
}

.land-card__project {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: #777;
  line-height: 32px;
  margin-top: -3px;
}

.land-card__img {
  width: 280px;
  height: 200px;
  margin-top: 5px;
  background-color: #e0e0e0;
}

.land-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Price */
.land-card__price-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
  margin-top: 10px;
}

.land-card__price-label {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #000;
}

.land-card__price-num {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  font-weight: 600;
  color: #E71F19;
  line-height: 1;
}

.land-card__price-unit {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #000;
  letter-spacing: 0.05em;
}

/* Subsidy */
.land-card__subsidy {
  margin-top: 10px;
}

.land-card__subsidy-top {
  background-color: #C4D8ED;
  color: #566E88;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  text-align: center;
  line-height: 30px;
  height: 30px;
}

.land-card__subsidy-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 5px;
}

.land-card__subsidy-type {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: #566E88;
}

.land-card__subsidy-badge {
  font-family: 'IBM Plex Sans JP', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
  background-color: #566E88;
  padding: 0 8px;
  border-radius: 2px;
  line-height: 20px;
  height: 20px;
}

.land-card__subsidy-amount {
  display: flex;
  align-items: baseline;
  color: #566E88;
}

.land-card__subsidy-num {
  font-family: 'Oswald', sans-serif;
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1;
}

.land-card__subsidy-unit {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-left: 3px;
  letter-spacing: 0.05em;
}

/* Spec Table */
.land-card__spec {
  width: 100%;
  margin-top: 15px;
  border-collapse: collapse;
}

.land-card__spec th,
.land-card__spec td {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.3rem;
  line-height: 25px;
  text-align: left;
  vertical-align: top;
}

.land-card__spec th {
  font-weight: 600;
  color: #777;
  width: 70px;
  padding-right: 15px;
}

.land-card__spec td {
  font-weight: 400;
  color: #777;
}

/* Buttons */
.land-card__btns {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 15px;
}

.land-card__btn {
  width: 135px;
  height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  text-decoration: none;
  position: relative;
  transition: opacity 0.3s;
}

.land-card__btn:only-child {
  width: 100%;
}

.land-card__btn:hover {
  opacity: 0.8;
}

.land-card__btn::after {
  position: absolute;
  right: 5px;
  font-family: 'Material Symbols Outlined';
  font-size: 1.8rem;
  line-height: 1;
}

.land-card__btn--detail {
  background-color: #1113CA;
  color: #fff;
}

.land-card__btn--detail::after {
  content: 'filter_none';
  font-family: 'Material Symbols Outlined';
  color: #fff;
  font-size: 1.5rem;
}

.land-card__btn--map {
  background-color: #fff;
  color: #1113CA;
  border: 1px solid #1113CA;
}

.land-card__btn--map::after {
  content: 'location_on';
  margin-top: -2px;
}

/* ============================================
   セクション0006: 現地見学Q&A
   ============================================ */

.tour-qa {
  padding: 0 8px 20px;
  background-color: #fff;
}

.tour-qa .supply__talk-chara--left img {
  width: 75px;
}

.tour-qa .supply__talk-chara--right img {
  width: 84px;
}

/* ============================================
   共通CTAコンポーネント (旧 セクション0005)
   ============================================ */

.c-cta {
  position: relative;
  background-color: #EAF7F8;
  padding: 27px 20px 41px;
  text-align: center;
  z-index: 1;
}

.c-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 250px;
  background-color: #1113CA;
  z-index: -1;
}

.c-cta__deco {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}

.c-cta__title {
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.38;
  position: relative;
  z-index: 1;
}

.c-cta__img {
  margin-top: 13px;
  width: 100%;
  max-width: 335px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

.c-cta__img img {
  width: 100%;
  height: auto;
  display: block;
}

.c-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto 0;
  width: 100%;
  max-width: 335px;
  height: 60px;
  background-color: #1113CA;
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 5px;
  position: relative;
  transition: opacity 0.3s;
}

.c-cta__btn:hover {
  opacity: 0.8;
}

.c-cta__btn::after {
  content: 'filter_none';
  font-family: 'Material Symbols Outlined';
  position: absolute;
  right: 15px;
  font-size: 1.8rem;
  line-height: 1;
}

.c-cta__note {
  margin-top: 14px;
  color: #1113CA;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.78;
  letter-spacing: 0.05em;
  font-family: 'Noto Sans JP', sans-serif;
}

/* ----- Responsive: モバイル表示 ----- */
.hamburger-menu {
  display: none;
}

.mobile-nav {
  display: none;
}

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

  .main-content {
    width: 100%;
    box-shadow: none;
    border-left: none;
  }

  .mobile-logo {
    display: block;
    position: absolute;
    top: 5px;
    left: 15px;
    z-index: 100;
  }

  .mobile-logo img {
    width: 120px;
    height: auto;
  }

  /* Hamburger Menu */
  .main-content .hamburger-menu {
    display: flex;
    position: fixed;
    top: 10px;
    right: 10px;
    width: 44px;
    height: 44px;
    background-color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    z-index: 2000;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    transition: background-color 0.3s ease;
    box-shadow: 0px 4px 21px rgb(0 0 0 / 15%);
  }

  .hamburger-menu__bar {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #1113CA;
    transition: all 0.3s ease;
  }

  /* Transformation to X */
  .hamburger-menu.is-active .hamburger-menu__bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger-menu.is-active .hamburger-menu__bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger-menu.is-active .hamburger-menu__bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Mobile Navigation Overlay */
  .main-content .mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
    display: block;
  }

  .mobile-nav.is-active {
    opacity: 1;
    visibility: visible;
  }

  .mobile-nav__inner {
    padding: 100px 20px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .mobile-nav__list {
    width: 100%;
    margin-bottom: 40px;
  }

  .mobile-nav__item {
    border-bottom: 1px dashed #ddd;
  }

  .mobile-nav__link {
    display: block;
    padding: 15px 0;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #333;
    text-align: center;
  }

  .mobile-nav__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 280px;
    padding: 15px 20px;
    background-color: #E71F19;
    color: #fff;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
}

/* ============================================
   セクション0008: 会社紹介
   ============================================ */

.about {
  padding: 40px 20px 50px;
  background-color: #fff;
}

.about__heading-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 25px;
}

.about__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #E71F19;
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.7rem;
  font-weight: 600;
  height: 30px;
  padding: 0 28px;
  border-radius: 100px;
  margin-bottom: 15px;
  position: relative;
}

.about__badge::after {
  border-top: 8px solid #E71F19;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  content: '';
  margin-left: -8px;
  position: absolute;
  bottom: -7px;
  left: 50%;
}

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

.about__title img {
  height: 72px;
  width: auto;
  max-width: 100%;
}


.about__block {
  margin-bottom: 35px;
}

.about__block:last-child {
  margin-bottom: 0;
}

.about__text {
  font-family: 'Hiragino Sans', 'Noto Sans JP', sans-serif;
  font-size: 1.5rem;
  /* 15px */
  font-weight: 500;
  line-height: 1.66;
  /* 25px */
  letter-spacing: 0.03em;
  color: #000;
  margin-top: 40px;
}

.about__slider-wrap {
  width: 100%;
}

.about__slider {
  margin: 0;
}

/* .about__slide height: 100% removed */

.about__slide img {
  width: 100%;
  height: auto;
}

/* Slick Custom Dots for About & Property Slider */
.about__slider .slick-dots,
.js-property-img-slider .slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  list-style: none;
}

.about__slider .slick-dots li,
.js-property-img-slider .slick-dots li {
  margin: 0;
  width: auto;
  height: auto;
}

.about__slider .slick-dots button,
.js-property-img-slider .slick-dots button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 12px;
  height: 12px;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: #BFBFBF;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.about__slider .slick-dots button::before,
.js-property-img-slider .slick-dots button::before {
  display: none;
}

.about__slider .slick-dots .slick-active button,
.js-property-img-slider .slick-dots .slick-active button {
  background: #1113CA;
}

/* ============================================
   セクション0009: 会社紹介の続き・実績詳細
   ============================================ */

.achievements {
  padding: 0px 18px 50px;
  background-color: #fff;
}

.achievements__img {
  margin-top: 0px;
  text-align: center;
}

.achievements__img img {
  width: 100%;
  max-width: 314px;
  height: auto;
}

.achievements__cumulative {
  margin-top: 15px;
  text-align: center;
}

.achievements__cumulative-top {
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.achievements__cumulative-label {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: #000;
  line-height: 1;
}

.achievements__cumulative-num {
  font-family: 'Oswald', sans-serif;
  font-size: 4.2rem;
  font-weight: 600;
  color: #E71F19;
  line-height: 1;
  margin: 0 5px;
  letter-spacing: 0;
}

.achievements__cumulative-unit {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: #000;
  line-height: 1;
}

.achievements__cumulative-sub {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: #000;
  margin-top: 10px;
}

.achievements__title-wrap {
  text-align: center;
  margin-top: 35px;
}

.achievements__dots {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  margin-bottom: 8px;
  width: 125px;
  margin: 0 auto;
}

.achievements__dots span {
  display: block;
  width: 8px;
  height: 8px;
  background-color: #E71F19;
  border-radius: 50%;
}

.achievements__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 2.9rem;
  font-weight: 700;
  color: #000;
  line-height: 1.4;
  position: relative;
  display: inline-block;
  z-index: 1;
}

.achievements__lead {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: #000;
  line-height: 1.76;
  margin-top: 20px;
  text-align: center;
}

.achievements__features {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.achievements__feature {
  background-color: #FFCE00;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: calc(50% - 6px);
  max-width: 162px;
  min-height: 118px;
  padding: 15px 10px;
  box-sizing: border-box;
}

.achievements__feature p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #000;
  line-height: 1.56;
}

.achievements__feature--wide {
  width: 100%;
  max-width: 336px;
  margin: 12px auto 0;
}

.achievements__talk {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
  padding-bottom: 0px;
}

.achievements__talk-chara {
  position: relative;
  width: 120px;
}

.achievements__talk-chara img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}

.achievements__talk-shadow {
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 76px;
  height: 14px;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.achievements__talk-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: #000;
  line-height: 1.76;
  text-align: center;
  margin-top: 15px;
}

/* ============================================
   セクション0010: 家づくりの特徴
   ============================================ */

.features {
  padding: 40px 18px 50px;
  background-color: #EAF7F8;
}

.features__heading-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 25px;
}

.features__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #E71F19;
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.7rem;
  font-weight: 600;
  height: 30px;
  padding: 0 24px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.features__title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #000;
  line-height: 1.4;
}

.features__title-logo {
  width: 195px;
  height: auto;
  margin-right: 4px;
}

.features__block {
  text-align: center;
}

.features__chara {
  position: relative;
  width: 163px;
  margin: 0 auto;
}

.features__chara img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}

.features__chara-shadow {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 20px;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.features__text-wrap {
  margin: 0px 0 0px;
  text-align: center;
}

.features__lead {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: #000;
  line-height: 1.76;
  position: relative;
}

.features__lead .about__badge {
  position: absolute;
  top: -35px;
}

.features__hl {
  position: relative;
  display: inline-block;
  z-index: 1;
}


.features__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
}

.features__grid-item {
  background-color: #1113CA;
  border-radius: 4px;
  text-align: center;
  padding: 20px 8px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.features__grid-item--small {
  width: calc(50% - 6px);
  min-height: 118px;
}

.features__grid-item--large {
  width: 100%;
  min-height: 118px;
}

.features__grid-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 8px;
}

.features__grid-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.4rem;
  line-height: 1.4;
}

.features__more {
  margin-top: -25px;
  text-align: center;
  position: relative;
}

.features__badge--more {
  padding: 0 16px;
  margin-bottom: 20px;
  font-size: 1.4rem;
  height: 30px;
  display: inline-flex;
}

.features__more-chara {
  position: relative;
  width: 100px;
  margin: 0 auto;
}

.features__more-chara img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}

.features__more-chara .features__chara-shadow {
  width: 76px;
  height: 14px;
  bottom: -4px;
}

.features__collage {
  margin: 25px auto 20px;
  max-width: 336px;
}

.features__collage img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

/* ============================================
   セクション0011: モデルハウスのご紹介
   ============================================ */

.model-house {
  padding: 20px 0 20px;
  background-color: #fff;
}

.model-house__main-title {
  background-color: #1113CA;
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  line-height: 45px;
  letter-spacing: 0.15em;
  margin: 0 19px 40px;
  border-radius: 4px;
}

.model-house__block {
  margin-bottom: 50px;
}

.model-house__head {
  padding: 0 19px;
  margin-bottom: 15px;
}

.model-house__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #E71F19;
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.1rem;
  height: 22px;
  padding: 0 10px;
  border-radius: 100px;
  margin-bottom: 12px;
  position: relative;
}

.model-house__badge::after {
  border-top: 8px solid #E71F19;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  content: '';
  margin-left: -8px;
  position: absolute;
  bottom: -7px;
  left: 50%;
}

.model-house__title-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  position: relative;
}

.model-house__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #000;
  line-height: 1.4;
  position: relative;
  padding-left: 10px;
}

.model-house__title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: #FFCE00;
}

.model-house__title-wrap .land-info__swipe {
  top: -10px;
}

.model-house__swipe {
  width: 68px;
  height: auto;
}

.model-house__slider-wrap {
  position: relative;
  padding-bottom: 0px;
  padding-left: 19px;
}

.model-house__slider .slick-list {
  overflow: hidden;
}

.model-house__slide {
  margin-right: 20px;
  padding-bottom: 20px;
  /* Add internal padding */
}

.model-house__slide img {
  width: 280px;
  height: auto;
  border-radius: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.model-house__asset {
  position: absolute;
  width: 113px;
  height: auto;
  z-index: 10;
  right: 19px;
}

.model-house__asset img {
  width: 100%;
  height: auto;
}

.model-house__asset--1 {
  top: 310px;
}

.model-house__asset--2 {
  top: 310px;
}

/* ============================================
   セクション0012: モデルハウスCTA
   ============================================ */

.c-cta--staff {
  /* ベースの c-cta と同様のパディングを使用 */
  padding-top: 27px;
}

.c-cta__staff {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.c-cta__staff img {
  width: 100%;
  height: auto;
}

.c-cta__staff--left {
  width: 114px;
  left: 9px;
  top: 74px;
}

.c-cta__staff--right {
  width: 93px;
  right: 12px;
  top: 103px;
}

/* 共通パーツの余白をそのまま活用 */
.c-cta--staff .c-cta__img {
  position: relative;
  z-index: 1;
}

.c-cta--staff .c-cta__title {
  position: relative;
  z-index: 3;
  /* キャストより上に表示 */
}

/* ============================================
   セクション0013: スペックも充実
   ============================================ */

.spec {
  padding: 50px 0 60px;
  background-color: #fff;
  overflow: hidden;
}

.spec__inner {
  padding: 0 18px;
}

.spec__header {
  text-align: center;
  margin-bottom: 30px;
}

.spec__badge {
  display: inline-block;
  padding: 4px 20px;
  background-color: #E71F19;
  color: #fff;
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.2;
  border-radius: 100px;
  margin-bottom: 12px;
}

.spec__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #000;
  line-height: 1.4;
}

.spec__title img {
  width: auto;
  height: 28px;
}

.spec__title span {
  font-size: 1.8rem;
}

/* --- Visual --- */
.spec__visual {
  margin-bottom: 0px;
  display: flex;
  justify-content: center;
}

.spec__chara-wrap {
  position: relative;
  width: 250px;
  /* Adjusted to fit layout */
  height: 263px;
}

.spec__chara-wrap img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: auto;
  height: 100%;
}

.spec__balloon {
  position: absolute;
  top: 0;
  left: -20px;
  background-color: #fff;
  padding: 12px 18px;
  border-radius: 100px;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
  z-index: 2;
}

.spec__balloon::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 15px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 15px solid #fff;
  transform: translateY(10px) rotate(-30deg);
}

.spec__balloon p {
  color: #5BA838;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.spec__chara-shadow {
  position: absolute;
  bottom: -6px;
  right: 10px;
  width: 100px;
  height: 13px;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
}

/* --- Grades --- */
.spec__grades {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.grade-item {
  text-align: center;
}

.grade-item__category {
  background-color: #EAF7F8;
  color: #1113CA;
  font-size: 2rem;
  font-weight: 700;
  line-height: 36px;
  height: 36px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.05em;
}

.grade-item__content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 8px;
}

.grade-item__number {
  font-family: 'Oswald', sans-serif;
  font-size: 6rem;
  font-weight: 600;
  color: #E71F19;
  line-height: 1;
  width: 100%;
  display: block;
}

.grade-item__badge {
  background-color: #E71F19;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 2px 12px;
  line-height: 1.4;
  height: 20px;
  display: flex;
  align-items: center;
}

.grade-item__desc {
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.5;
  color: #000;
}

/* --- Footer --- */
.spec__footer {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #DDDDDD;
  position: relative;
  text-align: center;
}

.spec__footer-text {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.6;
  color: #000;
  position: relative;
  z-index: 2;
}

.spec__lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.spec__line {
  position: absolute;
  height: 5px;
  background-color: #FFCE00;
}

.spec__line--1 {
  width: 179px;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
}

.spec__line--2 {
  width: 88px;
  top: 70px;
  left: calc(50% - 92px);
}

.spec__line--3 {
  width: 66px;
  top: 70px;
  left: calc(50% + 22px);
}

/* ============================================
   セクション0014: 納得の充実保証!
   ============================================ */

.warranty {
  padding: 40px 18px 50px;
  background-color: #EAF7F8;
}

.warranty__banner {
  background-color: #1113CA;
  border-radius: 4px;
  padding: 10px;
  margin-bottom: 25px;
  text-align: center;
}

.warranty__banner-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.1em;
  line-height: 1.2;
}

.warranty__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.warranty-card {
  background-color: #fff;
  border-radius: 4px;
  padding: 20px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 162px;
}

.warranty-card__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.8rem;
  /* JSON says 20px, so 2rem. But for mobile 18px might be better */
  font-weight: 700;
  color: #000;
  line-height: 1.25;
  margin-bottom: 8px;
}

.warranty-card__content {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.warranty-card__label {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #000;
  writing-mode: vertical-rl;
  margin-right: 4px;
  line-height: 1.1;
  height: 2.5em;
  /* approximate for "最大" */
}

.warranty-card__num {
  font-family: 'Oswald', sans-serif;
  font-size: 6.8rem;
  font-weight: 600;
  color: #E71F19;
  line-height: 1;
}

.warranty-card__unit {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #000;
  margin-left: 2px;
}

/* Character card */
.warranty-card--illust {
  background-color: rgba(255, 255, 255, 0);
  padding: 15px 0 0;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
}

.warranty-card__illust-head {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 5px;
}

.warranty-card__illust-badge {
  display: inline-block;
  background-color: #E71F19;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 100px;
  margin-bottom: 6px;
  position: relative;

}

.warranty-card__illust-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #000;
  line-height: 1.4;
}

.warranty-card__illust-badge::after {
  border-top: 8px solid #E71F19;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  content: '';
  margin-left: -8px;
  position: absolute;
  bottom: -7px;
  left: 50%;

}

.warranty-card__img {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: auto;
}

.warranty-card__img img {
  width: 138px;
  height: auto;
  object-fit: contain;
}

.warranty__footer {
  margin-top: 35px;
}

.warranty__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  background-color: #1113CA;
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  border-radius: 5px;
  transition: background-color 0.3s, opacity 0.3s;
}

.warranty__btn:hover {
  opacity: 0.9;
}

/* ============================================
   セクション0015: 物件特集
   ============================================ */

.property-feature {
  padding: 40px 18px 20px;
  background-color: #fff;
}

.property-feature__header {
  text-align: center;
  margin-bottom: 25px;
}

.property-feature__sub {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 5px;
}

.property-feature__title-wrap {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-bottom: 20px;
}

.property-feature__char {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 5px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 4.5rem;
  font-weight: 600;
}

.property-feature__char--blue {
  background-color: #1113CA;
  color: #fff;
}

.property-feature__char--white {
  background-color: #fff;
  color: #1113CA;
  border: 3px solid #1113CA;
}

.property-feature__slider-wrap {
  margin-top: 25px;
  position: relative;
}

.property-feature__slider-top {
  position: relative;
  height: 1px;
  background-color: #DDDDDD;
  margin-bottom: 25px;
  width: 100%;
}

.property-feature__slider {
  margin-right: -18px;
}

/* Property Card */
.property-card {
  width: 280px;
  margin-right: 20px;
  padding-bottom: 20px;
  /* Add internal padding */
  outline: none;
  display: flex;
  flex-direction: column;
}

.property-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 5px;
}

.property-card__tag {
  display: inline-block;
  padding: 2px 10px;
  background-color: #C4D8ED;
  color: #566E88;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.3rem;
  border-radius: 100px;
  line-height: 1.4;
}

.property-card__head {
  margin-top: 10px;
}

.property-card__title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.property-card__area {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #000;
}

.property-card__badge {
  font-family: 'IBM Plex Sans JP', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
  background-color: #1113CA;
  padding: 0 8px;
  border-radius: 100px;
  line-height: 20px;
}

.property-card__project {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.3rem;
  color: #777;
  margin-top: 2px;
}

.property-card__img {
  width: 280px;
  height: auto;
  margin-top: 10px;
}

.property-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.property-card__img .slick-list {
  padding-bottom: 10px !important;
}

/* Common Parts Reused from land-card */
.property-card__price-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
  margin-top: 5px;
}

.property-card__price-label {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
}

.property-card__price-num {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  font-weight: 600;
  color: #E71F19;
}

.property-card__price-unit {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
}

.property-card__price-tax {
  font-size: 1rem;
  font-weight: 700;
}

.property-card__subsidy {
  margin-top: 10px;
}

.property-card__subsidy-top {
  background-color: #C4D8ED;
  color: #566E88;
  font-size: 1.3rem;
  text-align: center;
  line-height: 30px;
}

.property-card__subsidy-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 5px;
}

.property-card__subsidy-type {
  font-size: 1.3rem;
  font-weight: 500;
  color: #566E88;
}

.property-card__subsidy-badge {
  font-family: 'IBM Plex Sans JP', sans-serif;
  font-size: 1.1rem;
  color: #fff;
  background-color: #566E88;
  padding: 0 6px;
  border-radius: 2px;
}

.property-card__subsidy-num {
  font-family: 'Oswald', sans-serif;
  font-size: 2.6rem;
  font-weight: 600;
  color: #566E88;
}

.property-card__subsidy-unit {
  font-size: 1.5rem;
  font-weight: 700;
  color: #566E88;
}

.property-card__spec {
  width: 100%;
  margin-top: 15px;
  border-collapse: collapse;
}

.property-card__spec th,
.property-card__spec td {
  padding: 5px 0;
  font-size: 1.3rem;
  vertical-align: top;
}

.property-card__spec th {
  width: 65px;
  color: #777;
  font-weight: 600;
  text-align: left;
}

.property-card__spec td {
  color: #777;
}

.property-card__btns {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.property-card__btn {
  flex: 1;
  height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 500;
  position: relative;
  border-radius: 4px;
}

.property-card__btn::after {
  position: absolute;
  right: 12px;
  font-family: 'Material Symbols Outlined';
  font-size: 2rem;
  line-height: 1;
}

.property-card__btn--detail {
  background-color: #1113CA;
  color: #fff;
}

.property-card__btn--detail::after {
  content: 'filter_none';
  font-family: 'Material Symbols Outlined';
  color: #fff;
}

.property-card__btn--map {
  background-color: #fff;
  color: #1113CA;
  border: 1px solid #1113CA;
}

.property-card__btn--map::after {
  content: 'location_on';
}

/* ============================================
   左サイドパネル (Left Panel)
   ============================================ */



.side-panel--left .side-panel__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.left-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: clamp(200px, 35.5vw, 568px);
  /* Fit the design max width — scales with viewport */
  text-align: center;
  padding: clamp(10px, 1.25vw, 20px);
}

.left-panel__img {
  margin-bottom: 0px;
}

.left-panel__img img {
  width: clamp(100px, 15vw, 240px);
  height: auto;
}

.left-panel__text-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(5px, 0.625vw, 10px);
}

.left-panel__text-top {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: clamp(2px, 0.31vw, 5px);
}

.left-panel__text-large {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(1.8rem, 2.19vw, 3.5rem);
  /* 37px — scales with viewport */
  font-weight: 700;
  color: #000;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

span.blue {
  color: #1113CA;
}

.left-panel__text-small {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(1.4rem, 1.56vw, 2.5rem);
  /* 25px — scales with viewport */
  font-weight: 700;
  color: #000;
  line-height: 1.2;
  margin-left: clamp(2px, 0.31vw, 5px);
  letter-spacing: 0.05em;
}

.left-panel__text-bottom {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(1.4rem, 1.56vw, 2.5rem);
  /* 25px — scales with viewport */
  font-weight: 700;
  color: #000;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.left-panel__text-hl {
  position: relative;
  z-index: 1;
}

.left-panel__text-hl::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: clamp(3px, 0.31vw, 5px);
  background-color: #FFCE00;
  z-index: -1;
}

.left-panel__btns {
  width: 100%;
  display: flex;
  gap: 0px;
  margin-top: clamp(15px, 1.875vw, 30px);
  flex-wrap: wrap;
  /* allow wrapping on smaller screens */
  justify-content: space-between;
}

.left-panel__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 49%;
  height: clamp(35px, 3.75vw, 60px);
  background-color: #1113CA;
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(1.2rem, 1.06vw, 1.7rem);
  /* 18px — scales with viewport */
  font-weight: 500;
  border-radius: 5px;
  position: relative;
  transition: opacity 0.3s ease;
}

.left-panel__btn:hover {
  opacity: 0.8;
}

.left-panel__btn::after {
  content: 'filter_none';
  font-family: 'Material Symbols Outlined';
  position: absolute;
  right: clamp(8px, 0.94vw, 15px);
  font-size: clamp(1rem, 1vw, 1.6rem);
}

@media screen and (max-width: 1050px) {
  .left-panel {
    display: none;
  }
}

/* ============================================
   右サイドパネル（Side Navigation）
   ============================================ */



.side-panel--right .side-panel__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.side-nav {
  width: clamp(160px, 18.75vw, 300px);
}

.side-nav__title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.3rem, 1.25vw, 2rem);
  font-weight: 600;
  color: #000;
  letter-spacing: 0.03em;
  margin-bottom: clamp(10px, 1.25vw, 20px);
}

.side-nav__list {
  display: flex;
  flex-direction: column;
  gap: clamp(4px, 0.44vw, 7px);
}

.side-nav__link {
  display: flex;
  align-items: center;
  width: 100%;
  height: clamp(30px, 2.81vw, 45px);
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid #FFFFFF;
  border-radius: 4px;
  padding: 0 clamp(8px, 1vw, 16px);
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.side-nav__link:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

.side-nav__dot {
  width: clamp(6px, 0.56vw, 9px);
  height: clamp(6px, 0.56vw, 9px);
  border-radius: 50%;
  background-color: #1113CA;
  margin-right: clamp(6px, 0.75vw, 12px);
  flex-shrink: 0;
}

.side-nav__dot--red {
  background-color: #E71F19;
}

.side-nav__text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(1rem, 0.94vw, 1.5rem);
  font-weight: 500;
  color: #000;
  line-height: 1;
}

.side-nav__text--red {
  color: #E71F19;
}

/* Current state */
.side-nav__link.is-current .side-nav__dot {
  background-color: #E71F19;
}

.side-nav__link.is-current .side-nav__text {
  color: #E71F19;
}

.side-nav__bottom {
  margin-top: clamp(10px, 1.25vw, 20px);
}

.side-nav__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: clamp(35px, 3.125vw, 50px);
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid #1113CA;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  position: relative;
}

.side-nav__btn:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

.side-nav__btn-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(1.1rem, 1vw, 1.6rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #000;
}

.side-nav__btn-icon {
  position: absolute;
  right: clamp(10px, 1.25vw, 20px);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.side-nav__btn-icon::after {
  content: 'filter_none';
  font-family: 'Material Symbols Outlined';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(1rem, 1vw, 1.6rem);
  color: #1113CA;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background-color: #fff;
  padding: 50px 18px 25px;
  text-align: center;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer__logo {
  display: inline-block;
  margin-bottom: 15px;
}

.footer__logo img {
  width: 170px;
  height: auto;
}

.footer__address {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 10px;
  color: #000;
  font-weight: 500;
}

.footer__tel {
  margin-bottom: 30px;
}

.footer__tel-link {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 4rem;
  font-weight: 600;
  color: #1113CA;
  line-height: 1.2;
}

.footer__tel-time {
  display: block;
  font-size: 1.3rem;
  margin-top: 5px;
  color: #333;
  font-weight: 500;
}

.footer__btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  margin-bottom: 40px;
}

.footer__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 55px;
  font-size: 1.6rem;
  font-weight: 700;
  border-radius: 4px;
  text-align: center;
  transition: opacity 0.3s;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  position: relative;
}

.footer__btn::after {
  content: 'filter_none';
  font-family: 'Material Symbols Outlined';
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.8rem;
}

.footer__btn:hover {
  opacity: 0.8;
}

.footer__btn--contact {
  background-color: #fff;
  color: #000;
  border: 1px solid #ddd;
}

.footer__btn--contact::after {
  color: #000;
}

.footer__btn--inquiry {
  background-color: #1113CA;
  color: #fff;
}

.footer__btn--reserve {
  background-color: #1113CA;
  color: #fff;
}

.footer__menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 20px;
  column-gap: 5px;
  text-align: left;
  margin-bottom: 40px;
  width: 100%;
}

.footer__menu a {
  font-size: 1.3rem;
  position: relative;
  padding-left: 20px;
  font-weight: 500;
  color: #333;
}

.footer__menu a::before {
  content: '\e315';
  /* Material Symbols outline chevron_right */
  font-family: 'Material Symbols Outlined';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  color: #1113CA;
}

.footer__copyright {
  font-size: 1.1rem;
  color: #777;
  letter-spacing: 0.05em;
  width: 100%;
  padding-top: 20px;
  border-top: 1px solid #ddd;
}

/* SP Fixed Buttons */
@media screen and (max-width: 768px) {
  .footer {
    padding-bottom: 90px;
  }

  .footer__btns {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    margin-bottom: 0;
    flex-direction: row;
    gap: 0;
    z-index: 100;
  }

  .footer__btn {
    border-radius: 0;
    height: 50px;
    font-size: 1.4rem;
    box-shadow: none;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
  }

  .footer__btn:last-child {
    border-right: none;
  }

  .footer__btn::after {
    font-size: 1.4rem;
    right: 5px;
  }

  .footer__btn--contact {
    border-top: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-bottom: none;
    border-left: none;
  }
}

.bnr-image {
  padding: 12px;
}

.bnr-image img {
  width: 100%;
  height: auto;
}

.model-house .slick-list {
  padding-bottom: 0px !important;
}