*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg-warm: #f8f5f0;
  --bg-cream: #faf9f5;
  --dark: #141413;
  --dark-deep: #101315;
  --dark-text: #1a1a1a;
  --text-body: #333;
  --text-muted: #666;
  --text-light: #f8f5f0;
  --text-dimmed: #a6a199;
  --border-light: #e0ded9;
  --border-warm: #d9d4cc;
}

body {
  font-family: "Shippori Mincho", serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-body);
  background: var(--bg-warm);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ========== HEADER ========== */
.header {
  background: #fff;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
}
.header__logo { height: 35px; }
.header__logo img { height: 100%; width: auto; }
.header__nav {
  display: flex;
  align-items: center;
  gap: 100px;
}
.header__nav-link {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--dark-text);
  letter-spacing: 2.1px;
  white-space: nowrap;
}
.header__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--dark);
  color: #fff;
  width: 200px;
  height: 50px;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 14px;
  border: none;
  cursor: pointer;
}
.header__cta-arrow {
  width: 12px;
  height: 12px;
  display: inline-block;
  vertical-align: middle;
}
.header__divider {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--border-warm);
  z-index: 100;
}
.header-spacer {
  height: 81px;
}

/* ========== HAMBURGER / SP MENU ========== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 200;
}
.hamburger__line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark-text);
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.is-open .hamburger__line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.is-open .hamburger__line:nth-child(2) {
  opacity: 0;
}
.hamburger.is-open .hamburger__line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.sp-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 90;
}
.sp-overlay.is-open { display: block; }
.sp-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100vh;
  background: #fff;
  z-index: 150;
  padding: 100px 40px 40px;
  flex-direction: column;
  gap: 0;
  transition: right 0.3s ease;
}
.sp-menu.is-open {
  display: flex;
  right: 0;
}
.sp-menu__link {
  display: block;
  padding: 20px 0;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--dark-text);
  letter-spacing: 2px;
  border-bottom: 1px solid rgba(20,20,19,0.08);
}
.sp-menu__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--dark);
  color: #fff;
  height: 50px;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 14px;
  margin-top: 32px;
}

/* ========== BREADCRUMB ========== */
.breadcrumb {
  background: var(--bg-warm);
  height: 50px;
  display: flex;
  align-items: center;
  padding: 0 80px;
}
.breadcrumb__text {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 12px;
  color: var(--text-muted);
}
.breadcrumb__text a:hover { text-decoration: underline; }

/* ========== SECTION HEADING ========== */
.section-heading {
  padding: 10px;
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
}
.section-heading__en {
  font-family: "Cormorant", serif;
  font-weight: 500;
  font-size: 56px;
  letter-spacing: 2px;
  line-height: 1;
}
.section-heading__ja {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 16px;
}
.section-heading--dark .section-heading__en { color: var(--dark); opacity: 0.08; }
.section-heading--dark .section-heading__ja { color: var(--dark); }
.section-heading--light .section-heading__en { color: #fff; }
.section-heading--light .section-heading__ja { color: #fff; }
.section-heading--dim .section-heading__en { color: rgba(255,255,255,0.6); }
.section-heading--dim .section-heading__ja { color: rgba(255,255,255,0.6); }

/* ========== TOP: HERO ========== */
.hero {
  position: relative;
  width: 100%;
  height: 800px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero-top.jpg') center/cover no-repeat;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--dark-text);
  mix-blend-mode: multiply;
  opacity: 0.2;
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}
.hero__brand {
  font-family: "Cormorant", serif;
  font-weight: 500;
  font-size: 66px;
  letter-spacing: 6.6px;
  line-height: 1;
}
.hero__tagline {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 4.8px;
  line-height: 1.5;
}
.hero__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid #fff;
  color: #fff;
  width: 200px;
  height: 50px;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  background: transparent;
  transition: background 0.3s, color 0.3s;
}

/* Generic fade-in (blur + lift) — reused by HERO and ABOUT headings */
@keyframes fadeBlurIn {
  from {
    opacity: 0;
    filter: blur(12px);
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}
.hero__brand,
.hero__tagline > p,
.hero__cta {
  opacity: 0;
}
.hero.is-loaded .hero__brand,
.hero.is-loaded .hero__tagline > p,
.hero.is-loaded .hero__cta {
  animation: fadeBlurIn 1s cubic-bezier(.22,.61,.36,1) forwards;
}
.hero.is-loaded .hero__brand              { animation-delay: 0.1s; }
.hero.is-loaded .hero__tagline > p:nth-child(1) { animation-delay: 0.4s; }
.hero.is-loaded .hero__tagline > p:nth-child(2) { animation-delay: 0.65s; }
.hero.is-loaded .hero__cta                { animation-delay: 0.95s; }

@media (prefers-reduced-motion: reduce) {
  .hero__brand,
  .hero__tagline > p,
  .hero__cta {
    animation: none;
    opacity: 1;
    filter: none;
    transform: none;
  }
}
.hero__cta:hover {
  background: rgba(255,255,255,0.1);
}
.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  opacity: 0.5;
  font-family: "Inter", sans-serif;
  font-size: 20px;
}

/* ========== TOP: ABOUT ========== */
.about {
  position: relative;
  width: 100%;
  height: 720px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.about__bg {
  position: absolute;
  inset: 0;
  background: url('../images/about-bg.jpg') center/cover no-repeat;
}
.about__overlay {
  position: absolute;
  inset: 0;
  background: var(--dark-text);
  mix-blend-mode: multiply;
  opacity: 0.2;
}
.about__content {
  position: relative;
  z-index: 2;
  margin-left: auto;
  margin-right: 200px;
  color: #fff;
  width: 364px;
}
.about__heading-en {
  font-family: "Cormorant", serif;
  font-weight: 500;
  font-size: 56px;
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 16px;
}
.about__heading-ja {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 26px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.about__text {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 28px;
}
.about__text p + p { margin-top: 0; }
.about__text .spacer { height: 28px; }

/* ABOUT reveal — triggered when section scrolls into view */
@keyframes aboutTextIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}
.about__heading-en,
.about__heading-ja,
.about__text > p {
  opacity: 0;
}
.about.is-inview .about__heading-en,
.about.is-inview .about__heading-ja {
  animation: fadeBlurIn 1s cubic-bezier(.22,.61,.36,1) forwards;
}
.about.is-inview .about__heading-en { animation-delay: 0.05s; }
.about.is-inview .about__heading-ja { animation-delay: 0.25s; }
.about.is-inview .about__text > p {
  animation: aboutTextIn 0.7s cubic-bezier(.22,.61,.36,1) forwards;
  animation-delay: calc(0.5s + var(--i, 0) * 0.08s);
}

@media (prefers-reduced-motion: reduce) {
  .about__heading-en,
  .about__heading-ja,
  .about__text > p {
    animation: none;
    opacity: 1;
    filter: none;
    transform: none;
  }
}

/* ========== TOP: PROPERTIES ========== */
.properties {
  background: var(--dark-deep);
  padding: 100px 0;
  min-height: 721px;
}
.properties__inner {
  max-width: 1000px;
  margin: 0 auto;
}
.properties__heading-en {
  font-family: "Cormorant", serif;
  font-weight: 500;
  font-size: 56px;
  color: #fff;
  opacity: 0.6;
  letter-spacing: 2px;
  line-height: 1;
}
.properties__heading-sub {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  opacity: 0.4;
  margin-top: 10px;
}
.properties__heading-catch {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 22px;
  color: var(--text-light);
  letter-spacing: 2px;
  margin-top: 10px;
}
.properties__card {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-top: 14px;
}
.properties__photo {
  width: 544px;
  height: 364px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.properties__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.properties__badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--text-light);
  padding: 6px 12px;
  font-family: "Inter", sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--dark);
}
.properties__info {
  flex: 1;
}
.properties__name {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 36px;
  color: var(--text-light);
  letter-spacing: 2px;
  line-height: 1;
  padding: 10px 0;
}
.properties__location {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 13px;
  color: #fff;
  opacity: 0.5;
}
.properties__tags {
  display: flex;
  gap: 14px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.properties__tag {
  border: 0.5px solid #fff;
  opacity: 0.6;
  padding: 8px 16px;
  font-family: "Shippori Mincho", serif;
  font-size: 11px;
  color: var(--text-light);
}
.properties__buttons {
  display: flex;
  gap: 10px;
  margin-top: 39px;
}
.properties__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 40px;
  font-family: "Shippori Mincho", serif;
  font-size: 13px;
  cursor: pointer;
  transition: opacity 0.3s;
  white-space: nowrap;
}
.properties__btn:hover { opacity: 0.8; }
.properties__btn--outline {
  border: 1px solid var(--text-light);
  color: var(--text-light);
  background: transparent;
}
.properties__btn--filled {
  background: var(--text-light);
  color: var(--dark-deep);
  border: none;
}

/* ========== TOP: COMPANY ========== */
.company {
  background: var(--bg-cream);
  padding: 80px 0 80px;
  min-height: 655px;
}
.company__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
}
.company__heading-en {
  font-family: "Cormorant", serif;
  font-weight: 500;
  font-size: 56px;
  color: var(--dark);
  opacity: 0.08;
  letter-spacing: 2px;
  line-height: 1;
}
.company__heading-ja {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--dark);
  margin-top: 12px;
  margin-bottom: 24px;
}
.company__table {
  width: 100%;
}
.company__row {
  display: flex;
  align-items: baseline;
  padding: 16px 0;
  border-top: 1px solid rgba(20, 20, 19, 0.08);
  font-family: "Shippori Mincho", serif;
  font-size: 13px;
}
.company__row:last-child {
  border-bottom: 1px solid rgba(20, 20, 19, 0.08);
}
.company__label {
  width: 200px;
  color: var(--text-muted);
  flex-shrink: 0;
}
.company__value {
  color: var(--dark);
}

/* ========== DETAIL: HERO ========== */
.detail-hero { width: 100%; }
.detail-hero__image {
  width: 100%;
  height: 420px;
  overflow: hidden;
}
.detail-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.detail-hero__text {
  background: var(--dark-deep);
  padding: 19px 158px;
  height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
}
.detail-hero__name-en {
  font-family: "Cormorant", serif;
  font-weight: 500;
  font-size: 42px;
  color: #fff;
  letter-spacing: 2px;
  line-height: 1;
}
.detail-hero__name-ja {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 18px;
  color: #fff;
  letter-spacing: 3px;
}
.detail-hero__address {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 13px;
  color: #fff;
}

/* ========== DETAIL: CONCEPT ========== */
.concept {
  position: relative;
  width: 100%;
  height: 590px;
  overflow: hidden;
}
.concept__bg {
  position: absolute;
  inset: 0;
  background: url('../images/concept-bg.jpg') center/cover no-repeat;
}
.concept__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(89.3deg, #1a1a1a 0.2%, rgba(26,26,26,0.7) 99.7%);
  mix-blend-mode: multiply;
  opacity: 0.8;
}
.concept__content {
  position: relative;
  z-index: 2;
  padding: 102px 0 0 155px;
  width: 480px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.concept__catch {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 26px;
  color: #fff;
  letter-spacing: 2px;
  line-height: 44px;
}
.concept__text {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  line-height: 28px;
}
.concept__text p + p { margin-top: 16px; }

/* ========== DETAIL: FACILITY ========== */
.facility {
  background: var(--dark-deep);
  padding: 100px 0;
}
.facility__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 125px;
}
.facility__grid {
  display: grid;
  grid-template-columns: repeat(3, 380px);
  gap: 25px 25px;
  margin-top: 35px;
}
.facility__item-img {
  width: 380px;
  height: 215px;
  overflow: hidden;
}
.facility__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.facility__item-name {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--text-light);
  margin-top: 12px;
}
.facility__item-desc {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 13px;
  color: var(--text-dimmed);
  line-height: 22px;
  margin-top: 11px;
}

/* ========== DETAIL: PRICING ========== */
.pricing {
  background: var(--bg-warm);
  padding: 100px 80px;
}
.pricing__card {
  background: var(--bg-cream);
  padding: 40px 48px;
  margin-top: 47px;
  display: flex;
  gap: 0;
  min-height: 310px;
}
.pricing__left {
  flex: 0 0 572px;
  padding-right: 48px;
  position: relative;
}
.pricing__price {
  font-family: "Cormorant", serif;
  font-weight: 500;
  color: var(--dark);
}
.pricing__price-amount { font-size: 48px; }
.pricing__price-suffix { font-size: 32px; }
.pricing__price-unit {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--text-muted);
  margin-left: 86px;
  position: relative;
  top: -10px;
}
.pricing__note {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
}
.pricing__divider {
  width: 1px;
  background: rgba(20,20,19,0.08);
  align-self: stretch;
  flex-shrink: 0;
}
.pricing__right {
  flex: 1;
  padding-left: 50px;
}
.pricing__option-title {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--dark);
  padding-left: 14px;
  border-left: 3px solid rgba(20,20,19,0.3);
}
.pricing__option-list { margin-top: 22px; }
.pricing__option-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(20,20,19,0.08);
  font-family: "Shippori Mincho", serif;
  font-size: 13px;
}
.pricing__option-row:first-child { padding-top: 0; }
.pricing__option-name { color: var(--dark); }
.pricing__option-value { color: var(--text-muted); }

/* ========== DETAIL: ACCESS ========== */
.access {
  background: var(--bg-cream);
  padding: 100px 80px;
}
.access__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  margin-top: 15px;
}
.access__map {
  width: 600px;
  height: 340px;
  overflow: hidden;
  flex-shrink: 0;
}
.access__map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.access__info {
  width: 500px;
  display: flex;
  flex-direction: column;
  gap: 34px;
}
.access__info-label {
  font-family: "Cormorant", serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 2px;
  margin-bottom: 7px;
}
.access__info-value {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--dark);
  line-height: 26px;
}

/* ========== CTA ========== */
.cta {
  position: relative;
  width: 100%;
  height: 477px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(16, 19, 21, 0.55);
}
.cta__content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 75px;
}
.cta__heading {
  font-family: "Cormorant", serif;
  font-weight: 500;
  font-size: 56px;
  color: var(--text-light);
  letter-spacing: 4px;
  text-align: center;
}
.cta__buttons {
  display: flex;
  gap: 63px;
}
.cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--text-light);
  color: var(--text-light);
  background: transparent;
  padding: 14px 36px;
  font-family: "Shippori Mincho", serif;
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.3s;
}
.cta__btn:hover {
  background: rgba(255,255,255,0.1);
}

/* ========== FOOTER ========== */
.footer {
  background: #fff;
  position: relative;
}
.footer__divider {
  width: 100%;
  height: 1px;
  background: var(--border-light);
}
.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__logo { height: 35px; }
.footer__logo img { height: 100%; width: auto; }
.footer__nav {
  display: flex;
  gap: 40px;
}
.footer__nav-link {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--dark-text);
  letter-spacing: 2.1px;
  white-space: nowrap;
}
.footer__copyright {
  background: var(--dark-text);
  text-align: center;
  padding: 5px 10px;
}
.footer__copyright p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 10px;
  color: #fff;
  opacity: 0.6;
}

/* ========== RESPONSIVE (SP: 768px以下) ========== */
@media (max-width: 768px) {
  /* HEADER */
  .header {
    padding: 0 20px;
    height: 64px;
  }
  .header__logo { height: 28px; }
  .header__nav { display: none; }
  .hamburger { display: flex; }
  .header__divider { top: 64px; }
  .header-spacer { height: 65px; }

  /* BREADCRUMB */
  .breadcrumb { padding: 0 20px; height: 40px; }
  .breadcrumb__text { font-size: 11px; }

  /* SECTION HEADING */
  .section-heading__en { font-size: 36px; }
  .section-heading__ja { font-size: 14px; }

  /* TOP: HERO */
  .hero { height: 500px; }
  .hero__brand { font-size: 36px; letter-spacing: 3px; }
  .hero__tagline { font-size: 20px; letter-spacing: 2px; }
  .hero__cta {
    width: 180px;
    height: 44px;
    font-size: 13px;
  }

  /* TOP: ABOUT */
  .about {
    height: auto;
    min-height: 500px;
    padding: 60px 0;
    align-items: center;
    justify-content: center;
  }
  .about__content {
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    max-width: 375px;
    margin-right: auto;
  }
  .about__heading-en { font-size: 36px; }
  .about__heading-ja { font-size: 20px; }
  .about__text { font-size: 13px; line-height: 24px; }

  /* TOP: PROPERTIES */
  .properties { padding: 60px 0; min-height: auto; }
  .properties__inner { padding: 0 24px; }
  .properties__heading-en { font-size: 36px; }
  .properties__heading-catch { font-size: 18px; }
  .properties__card {
    flex-direction: column;
    gap: 24px;
    margin-top: 24px;
  }
  .properties__photo {
    width: 100%;
    height: 220px;
  }
  .properties__name { font-size: 26px; }
  .properties__tags { gap: 8px; }
  .properties__tag { padding: 6px 12px; font-size: 10px; }
  .properties__buttons { margin-top: 24px; }

  /* TOP: COMPANY */
  .company { padding: 60px 0; min-height: auto; }
  .company__inner { padding: 0 24px; }
  .company__heading-en { font-size: 36px; }
  .company__row { flex-direction: column; gap: 4px; padding: 12px 0; }
  .company__label { width: auto; font-size: 12px; }
  .company__value { font-size: 13px; }

  /* DETAIL: HERO */
  .detail-hero__image { height: 240px; }
  .detail-hero__text {
    padding: 16px 24px;
    height: auto;
  }
  .detail-hero__name-en { font-size: 28px; }
  .detail-hero__name-ja { font-size: 15px; }
  .detail-hero__address { font-size: 12px; }

  /* DETAIL: CONCEPT */
  .concept { height: auto; min-height: 400px; }
  .concept__content {
    padding: 48px 24px;
    width: 100%;
  }
  .concept__catch { font-size: 20px; line-height: 36px; }
  .concept__text { font-size: 13px; line-height: 24px; }
  .concept__text br { display: none; }

  /* DETAIL: FACILITY */
  .facility { padding: 60px 0; }
  .facility__inner { padding: 0 24px; }
  .facility__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .facility__item-img {
    width: 100%;
    height: 200px;
  }

  /* DETAIL: PRICING */
  .pricing { padding: 60px 24px; }
  .pricing__card {
    flex-direction: column;
    padding: 24px;
    min-height: auto;
  }
  .pricing__left {
    flex: none;
    padding-right: 0;
    padding-bottom: 24px;
  }
  .pricing__price-amount { font-size: 36px; }
  .pricing__price-suffix { font-size: 24px; }
  .pricing__price-unit { margin-left: 40px; }
  .pricing__divider {
    width: 100%;
    height: 1px;
  }
  .pricing__right {
    padding-left: 0;
    padding-top: 24px;
  }

  /* DETAIL: ACCESS */
  .access { padding: 60px 24px; }
  .access__content {
    flex-direction: column;
    gap: 32px;
    margin-top: 24px;
  }
  .access__map {
    width: 100%;
    height: 220px;
  }
  .access__info { width: 100%; gap: 24px; }
  .access__info-value { font-size: 13px; line-height: 24px; }

  /* CTA */
  .cta { height: 360px; }
  .cta__heading { font-size: 32px; letter-spacing: 2px; }
  .cta__buttons { flex-direction: column; gap: 16px; }
  .cta__btn { padding: 14px 32px; }
  .cta__content { gap: 40px; }

  /* FOOTER */
  .footer__inner {
    flex-direction: column;
    gap: 24px;
    padding: 32px 24px;
    align-items: flex-start;
  }
  .footer__nav { flex-wrap: wrap; gap: 16px; }
  .footer__nav-link { font-size: 12px; }
}
