:root {
  --ink: #151714;
  --charcoal: #20241f;
  --green: #17372f;
  --green-2: #315a4e;
  --gold: #b99153;
  --gold-2: #e5c98d;
  --paper: #f7f4ee;
  --soft: #ece6db;
  --stone: #d8d2c6;
  --smoke: #6f756f;
  --wine: #5d2f2e;
  --white: #fff;
  --max: 1180px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html[lang="ja"] body {
  font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

html[lang="zh-CN"] body {
  font-family: "Microsoft YaHei", "Noto Sans SC", "PingFang SC", "Hiragino Sans GB", sans-serif;
}

html[lang="en"] body {
  font-family: "Segoe UI", "Inter", Arial, sans-serif;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  line-height: 1.8;
  animation: page-in .72s cubic-bezier(.2, .8, .2, 1) both;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(23, 55, 47, .9);
  border-bottom: 1px solid rgba(229, 201, 141, .14);
  backdrop-filter: blur(14px) saturate(1.08);
  -webkit-backdrop-filter: blur(14px) saturate(1.08);
  transition: background .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.site-header.is-scrolled {
  background: rgba(23, 55, 47, .94);
  border-color: rgba(229, 201, 141, .18);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .22);
}

.header-inner {
  max-width: 1360px;
  min-height: 82px;
  margin: 0 auto;
  padding: 0 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 280px;
}

.brand-mark {
  width: 50px;
  height: 50px;
  transition: transform .35s ease, filter .35s ease;
}

.brand:hover .brand-mark {
  transform: translateY(-1px) scale(1.035);
  filter: drop-shadow(0 8px 16px rgba(229, 201, 141, .16));
}

.brand-name {
  display: block;
  color: var(--white);
  font-weight: 800;
  font-size: 16px;
  line-height: 1.2;
}

.brand-en {
  display: block;
  margin-top: 3px;
  color: var(--gold-2);
  font-family: Georgia, "Yu Mincho", serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.1;
}

.brand-sub {
  display: block;
  color: #e8e0d2;
  font-size: 9px;
  line-height: 1.2;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #f2efe7;
  font-size: 14px;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(229, 201, 141, .34);
  border-radius: 999px;
  background: rgba(255, 255, 255, .14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lang-switcher button {
  min-width: 34px;
  height: 28px;
  padding: 0 9px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #f2efe7;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: background .22s ease, color .22s ease, transform .22s ease;
}

.lang-switcher button:hover {
  transform: translateY(-1px);
  color: var(--white);
}

.lang-switcher button.active {
  background: var(--gold-2);
  color: var(--ink);
}

.site-nav a {
  position: relative;
  padding: 30px 0;
  transition: color .25s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 24px;
  width: 0;
  height: 1px;
  background: var(--gold-2);
  transition: width .2s ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  width: 100%;
}

.site-nav a:hover {
  color: var(--white);
}

.site-nav .nav-cta {
  min-height: 40px;
  padding: 0 18px;
  margin-left: -4px;
  border-radius: 5px;
}

.site-nav .nav-cta::after {
  display: none;
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 4px;
  background: var(--gold-2);
  color: var(--ink);
  font-weight: 800;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transform: translateZ(0);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}

.nav-cta::before,
.btn::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -55%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .38), transparent);
  transform: skewX(-18deg);
  transition: left .55s ease;
}

.nav-cta:hover,
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(21, 23, 20, .18);
}

.nav-cta:hover::before,
.btn:hover::before {
  left: 115%;
}

.btn:active,
.nav-cta:active {
  transform: translateY(0);
}

.btn.dark {
  background: var(--green);
  color: var(--white);
}

.btn.ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, .76);
  color: var(--white);
}

.menu-button {
  display: none;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(185, 145, 83, .45);
  border-radius: 4px;
  background: rgba(255, 255, 255, .56);
  color: var(--green);
  font-size: 19px;
  line-height: 1;
  cursor: pointer;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.menu-button:hover {
  transform: translateY(-1px);
  border-color: var(--gold-2);
}

.hero {
  min-height: 620px;
  position: relative;
  display: grid;
  align-items: center;
  color: var(--white);
  background: var(--charcoal);
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(12, 18, 15, .78), rgba(12, 18, 15, .46) 42%, rgba(12, 18, 15, .16) 72%, rgba(12, 18, 15, .06)), var(--hero-image);
  background-size: cover;
  background-position: center;
  filter: saturate(1.08) brightness(1.18);
  transform: translate3d(0, calc(var(--hero-shift, 0px) * .16), 0) scale(1.035);
  transition: transform .16s linear;
  animation: hero-image-in 1.35s cubic-bezier(.2, .8, .2, 1) both;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(10, 12, 10, .12), transparent 34%),
    radial-gradient(circle at 22% 48%, rgba(10, 12, 10, .22), transparent 36%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 90px 0 110px;
  display: grid;
  grid-template-columns: minmax(0, 650px) 1fr;
  gap: 80px;
}

.hero .eyebrow,
.hero h1,
.hero .hero-lead,
.hero .hero-actions,
.hero .hero-point {
  animation: hero-copy-in .78s cubic-bezier(.2, .8, .2, 1) both;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .42);
}

.hero h1 {
  animation-delay: .08s;
}

.hero .hero-lead {
  animation-delay: .16s;
}

.hero .hero-actions {
  animation-delay: .24s;
}

.hero .hero-point:nth-child(1) {
  animation-delay: .22s;
}

.hero .hero-point:nth-child(2) {
  animation-delay: .32s;
}

.hero .hero-point:nth-child(3) {
  animation-delay: .42s;
}

.eyebrow {
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: .03em;
  font-weight: 800;
  font-size: 13px;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h1,
.section-title {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-weight: 800;
}

html[lang="zh-CN"] h1,
html[lang="zh-CN"] .section-title {
  font-family: "Noto Serif SC", "Source Han Serif SC", "SimSun", "Microsoft YaHei", serif;
  font-weight: 800;
}

html[lang="zh-CN"] .brand-name {
  font-family: "Noto Serif SC", "Source Han Serif SC", "SimSun", "Microsoft YaHei", serif;
  font-weight: 800;
}

html[lang="en"] h1,
html[lang="en"] .section-title {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

h1 {
  margin-top: 30px;
  font-size: 60px;
  line-height: 1.18;
}

.hero-lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: #e7e2d8;
  font-size: 17px;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-points {
  align-self: center;
  display: grid;
  gap: 30px;
  border-left: 1px solid rgba(255, 255, 255, .36);
  padding-left: 28px;
}

.hero-point strong {
  display: block;
  font-family: Georgia, "Yu Mincho", serif;
  font-size: 34px;
  line-height: 1.2;
}

.hero-point span {
  color: #e7e2d8;
  font-size: 13px;
}

.home-hero::before {
  background-image: linear-gradient(90deg, rgba(12, 18, 15, .76), rgba(12, 18, 15, .42) 42%, rgba(12, 18, 15, .14) 72%, rgba(12, 18, 15, .05)), var(--hero-image);
  background-position: center 48%;
}

.home-hero .hero-inner {
  grid-template-columns: minmax(0, 720px);
  align-items: center;
}

.section {
  padding: 82px 0;
  position: relative;
}

.section.white {
  background: var(--white);
}

.section.green,
.section.dark {
  color: var(--white);
  background: var(--green);
}

.section.dark {
  background: var(--charcoal);
}

.container {
  max-width: var(--max);
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 620px) minmax(280px, 440px);
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 44px;
}

.section-title {
  font-size: 42px;
  line-height: 1.25;
}

.section-copy {
  margin: 8px 0 0;
  color: var(--smoke);
  font-size: 15px;
}

.green .section-copy,
.dark .section-copy {
  color: #d8d2c6;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.owner-concern-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.owner-concern-grid .card {
  min-height: 308px;
  padding: 0;
  overflow: hidden;
}

.concern-photo {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-bottom: 1px solid #dfd8cc;
}

.concern-body {
  padding: 20px 22px 24px;
}

.concern-title-row {
  min-height: 54px;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.owner-concern-grid h3 {
  min-height: 0;
  margin: 2px 0 0;
  font-size: 17px;
  flex: 1;
}

.owner-concern-grid p {
  margin: 0;
}

.home-menu-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.home-menu-card {
  min-height: 280px;
  padding: 24px;
  border: 1px solid #dfd8cc;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, #fbfaf7);
  display: flex;
  flex-direction: column;
  transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease;
}

.home-menu-card:hover {
  transform: translateY(-4px);
  border-color: rgba(185, 145, 83, .42);
  box-shadow: 0 18px 42px rgba(32, 36, 31, .1);
}

.home-menu-card span {
  color: var(--gold);
  font-family: Georgia, "Yu Mincho", serif;
  font-weight: 800;
  font-size: 13px;
}

.home-menu-card h3 {
  margin-top: 14px;
  font-size: 19px;
}

.home-menu-card p {
  color: var(--smoke);
  font-size: 14px;
}

.home-menu-card .btn {
  width: 100%;
  margin-top: auto;
}

.card,
.facility-card,
.faq-item,
.info-card {
  background: var(--white);
  border: 1px solid #dfd8cc;
  border-radius: var(--radius);
  transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease, background .32s ease;
}

.facility-card:hover,
.info-card:hover,
.faq-item:hover {
  transform: translateY(-4px);
  border-color: rgba(185, 145, 83, .42);
  box-shadow: 0 18px 42px rgba(32, 36, 31, .1);
}

.card {
  min-height: 190px;
  padding: 26px;
}

.number {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-radius: 3px;
  background: var(--gold-2);
  color: var(--ink);
  font-weight: 800;
  font-size: 12px;
}

.card h3,
.facility-card h3,
.info-card h3 {
  font-size: 18px;
  line-height: 1.45;
}

.card p,
.facility-card p,
.info-card p {
  color: var(--smoke);
  font-size: 14px;
}

.area-layout {
  display: grid;
  grid-template-columns: minmax(0, 690px) 1fr 1fr;
  gap: 14px;
  align-items: stretch;
}

.area-photo {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2, .8, .2, 1), filter .7s ease;
}

.area-tile {
  min-height: 420px;
  padding: 260px 36px 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
  overflow: hidden;
  position: relative;
  transition: transform .32s ease, filter .32s ease;
}

.area-tile::before {
  content: "";
  position: absolute;
  left: 36px;
  right: 36px;
  top: 34px;
  height: 1px;
  background: rgba(229, 201, 141, .62);
  transform: scaleX(.34);
  transform-origin: left;
  transition: transform .38s ease;
}

.area-layout:hover .area-photo {
  transform: scale(1.025);
  filter: saturate(1.04);
}

.area-tile:hover {
  transform: translateY(-4px);
}

.area-tile:hover::before {
  transform: scaleX(1);
}

.area-tile.green-tile {
  background: var(--green);
}

.area-tile.wine-tile {
  background: var(--wine);
}

.area-tile strong {
  font-family: Georgia, "Yu Mincho", serif;
  font-size: 36px;
  line-height: 1.1;
}

.owner-band {
  display: grid;
  grid-template-columns: minmax(0, 470px) minmax(420px, 560px);
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

.owner-band img,
.split img {
  width: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: transform .65s cubic-bezier(.2, .8, .2, 1), filter .65s ease;
}

.owner-band img:hover,
.split img:hover {
  transform: scale(1.018);
  filter: saturate(1.04) contrast(1.02);
}

.owner-band img {
  height: 340px;
}

.filter-box {
  max-width: var(--max);
  margin: 0 auto 44px;
  min-height: 0;
  padding: 14px;
  display: grid;
  grid-template-columns: repeat(5, minmax(180px, 1fr));
  gap: 12px;
}

.filter-box:hover {
  transform: none;
  box-shadow: none;
}

.filter-field,
.filter-button {
  height: 50px;
  border: 1px solid #dfd8cc;
  border-radius: 4px;
  background: #fbfaf7;
  color: var(--smoke);
  font: inherit;
  padding: 0 18px;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .24s ease, border-color .24s ease, background .24s ease, color .24s ease, box-shadow .24s ease;
}

.filter-button {
  font-weight: 800;
}

.filter-field:hover,
.filter-button:hover,
.filter-field.active,
.filter-button.active {
  transform: translateY(-2px);
  border-color: var(--gold);
  background: var(--green);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(23, 55, 47, .14);
}

.facility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.facility-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.facility-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  cursor: zoom-in;
  transition: transform .72s cubic-bezier(.2, .8, .2, 1), filter .72s ease;
}

.facility-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.05);
}

.facility-card.filter-enter {
  animation: filter-card-in .34s ease both;
}

.facility-card.facility-focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(229, 201, 141, .28), 0 24px 54px rgba(32, 36, 31, .14);
}

.facility-body {
  padding: 26px;
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 326px;
}

.facility-card h3 {
  min-height: 54px;
  display: flex;
  align-items: flex-start;
}

.facility-card p:not(.meta) {
  min-height: 78px;
}

.facility-card .meta {
  min-height: 42px;
  margin-top: 10px;
}

.facility-detail {
  margin: 18px 0;
  border: 0;
}

.facility-detail summary {
  min-height: 46px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #ddcba6;
  border-radius: 4px;
  background: linear-gradient(180deg, #f6e9cd, #ead094);
  color: var(--green);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
  box-shadow: 0 12px 28px rgba(34, 48, 40, .08);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.facility-detail summary:hover {
  transform: translateY(-1px);
  border-color: var(--gold);
  box-shadow: 0 16px 34px rgba(34, 48, 40, .12);
}

.facility-detail summary::-webkit-details-marker {
  display: none;
}

.facility-detail summary::after {
  content: ">";
  color: var(--gold);
  margin-left: 14px;
  font-size: 16px;
  line-height: 1;
  transition: transform .25s ease;
}

.facility-detail[open] summary::after {
  transform: rotate(45deg);
}

.facility-detail-card {
  display: none;
  padding: 0 0 18px;
}

.facility-detail-card dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 0 0 14px;
}

.facility-detail-card dl div {
  padding: 12px;
  background: var(--paper);
  border-radius: 4px;
}

.facility-detail-card dt {
  color: var(--smoke);
  font-size: 11px;
  font-weight: 800;
}

.facility-detail-card dd {
  margin: 2px 0 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.facility-mini-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}

.facility-mini-gallery img {
  height: 76px;
  border-radius: 4px;
}

.facility-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.facility-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  padding: 42px;
  background: rgba(10, 12, 10, .72);
  backdrop-filter: blur(10px);
}

.facility-modal.open {
  display: grid;
  place-items: center;
}

.facility-modal-card {
  width: min(1080px, 100%);
  max-height: min(820px, calc(100vh - 60px));
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
  background: var(--white);
  border: 1px solid rgba(229, 201, 141, .34);
  border-radius: var(--radius);
  box-shadow: 0 34px 90px rgba(0, 0, 0, .34);
}

.facility-modal-gallery {
  position: relative;
  display: block;
  overflow: hidden;
  background: #111410;
}

.facility-modal-gallery img {
  width: 100%;
  min-width: 0;
  height: 100%;
  max-height: calc(100vh - 60px);
  object-fit: cover;
  display: block;
  transition: opacity .22s ease, transform .22s ease;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .65);
  border-radius: 50%;
  background: rgba(20, 60, 50, .74);
  color: var(--white);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .24);
  transition: background .2s ease, transform .2s ease;
}

.gallery-arrow:hover {
  background: rgba(229, 201, 141, .88);
  color: #11221c;
  transform: translateY(-50%) scale(1.04);
}

.gallery-arrow.prev {
  left: 18px;
}

.gallery-arrow.next {
  right: 18px;
}

.gallery-counter {
  position: absolute;
  left: 50%;
  bottom: 16px;
  z-index: 2;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(12, 18, 15, .62);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  transform: translateX(-50%);
}

.facility-modal-body {
  padding: 34px;
  overflow-y: auto;
}

.facility-modal-body h2 {
  font-size: 28px;
  line-height: 1.35;
}

.facility-modal-body p {
  color: var(--smoke);
}

.facility-modal-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 22px 0;
}

.facility-modal-meta span {
  padding: 12px 14px;
  background: var(--paper);
  color: var(--green);
  font-weight: 800;
  font-size: 13px;
}

.facility-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.facility-modal-close {
  position: absolute;
  right: 28px;
  top: 24px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 50%;
  background: rgba(32, 36, 31, .76);
  color: var(--white);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.facility-links {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.facility-links .btn {
  margin-top: 0;
  min-width: 184px;
  justify-content: center;
}

.facility-detail-actions .btn {
  min-height: 40px;
  margin-top: 0;
  padding: 0 16px;
}

.btn.ghost-dark {
  background: transparent;
  border-color: #dfd8cc;
  color: var(--green);
}

.btn.ghost-dark:hover {
  border-color: var(--gold);
  background: #fbfaf7;
}

.meta {
  color: var(--green);
  font-weight: 800;
  font-size: 13px;
}

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

.case-card {
  padding: 30px;
  display: flex;
  flex-direction: column;
  min-height: 354px;
}

.case-card > p:first-of-type {
  min-height: 108px;
}

.case-card .metrics {
  margin-top: auto;
}

.dynamic-cases-wrap {
  margin-top: 76px;
}

.dynamic-cases-head {
  margin-bottom: 32px;
}

.dynamic-case-card {
  overflow: hidden;
  padding: 0;
}

.dynamic-case-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.dynamic-case-body {
  padding: 28px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 24px 0;
}

.metric {
  padding: 16px;
  background: var(--paper);
  border-radius: 4px;
}

.metric strong {
  display: block;
  color: var(--green);
  font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 21px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
  line-height: 1.2;
  white-space: nowrap;
}

.case-note {
  margin: 28px 0 0;
  color: var(--smoke);
  font-size: 12px;
  line-height: 1.8;
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.case-flow-grid {
  grid-template-columns: repeat(2, 1fr);
}

.flow-card {
  padding: 24px;
  border: 1px solid #53584f;
  border-radius: var(--radius);
  background: #2c302a;
}

.flow-card .number {
  width: auto;
  min-width: 82px;
  height: 34px;
  padding: 0 13px;
  margin-bottom: 12px;
  background: var(--gold-2);
  color: var(--ink);
  font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 13px;
  font-weight: 800;
  justify-content: center;
  white-space: nowrap;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(380px, 1fr);
  gap: 70px;
  align-items: center;
}

.service-list {
  columns: 2;
  column-gap: 40px;
  margin-top: 30px;
}

.service-list span {
  display: block;
  break-inside: avoid;
  padding: 8px 0;
  border-bottom: 1px solid #dfd8cc;
  font-size: 13px;
}

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 34px;
}

.service-card {
  position: relative;
  min-height: 210px;
  padding: 24px;
  border: 1px solid #dfd8cc;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, #fbfaf7);
}

.service-card:not(:nth-child(3n))::after {
  content: "";
  position: absolute;
  right: -29px;
  top: 50%;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(185, 145, 83, .62);
  border-radius: 50%;
  background: linear-gradient(180deg, #fffefb, #f7f0e2);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .9), 0 4px 10px rgba(42, 34, 18, .06);
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 2;
}

.service-card:not(:nth-child(3n))::before {
  content: "\203A";
  position: absolute;
  right: -29px;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: rgba(142, 104, 49, .94);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1;
  text-indent: 1px;
  transform: translateY(-53%);
  pointer-events: none;
  z-index: 3;
}

.service-card h3 {
  margin-bottom: 12px;
  color: var(--green);
  font-size: 18px;
  line-height: 1.45;
}

.service-card p {
  margin: 0;
  color: var(--smoke);
  font-size: 14px;
  line-height: 1.85;
}

.faq-wrap {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
}

.faq-side {
  align-self: start;
  min-height: 0;
  padding: 30px;
  border-radius: var(--radius);
  background: var(--green);
  color: var(--white);
}

.faq-side strong {
  display: block;
  margin-bottom: 20px;
  font-family: Georgia, "Yu Mincho", serif;
  font-size: 38px;
}

.faq-side p {
  color: #d8d2c6;
}

.faq-group + .faq-group {
  margin-top: 38px;
}

.faq-group h2 {
  margin-bottom: 18px;
  font-size: 20px;
}

.faq-item + .faq-item {
  margin-top: 16px;
}

.faq-question {
  width: 100%;
  padding: 22px 58px 22px 22px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 20px;
  color: var(--gold);
  font-size: 20px;
  transition: transform .25s ease;
}

.faq-item.open .faq-question::after {
  content: "-";
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 22px;
  color: var(--smoke);
  font-size: 14px;
  transition: max-height .36s ease, opacity .28s ease, padding .36s ease;
}

.faq-item.open .faq-answer {
  max-height: 260px;
  opacity: 1;
  padding: 0 22px 24px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.info-card {
  min-height: 174px;
  padding: 26px;
}

.consultation-section {
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: flex-start;
}

.consultation-layout {
  display: grid;
  grid-template-columns: minmax(0, 650px) minmax(360px, 470px);
  gap: 70px;
  align-items: start;
}

.consultation-head {
  grid-template-columns: auto minmax(0, 1fr);
  margin-bottom: 28px;
}

.consultation-head .section-title {
  white-space: nowrap;
}

.contact-form {
  max-width: 880px;
}

.contact-form label {
  display: block;
  margin-bottom: 20px;
}

.contact-form label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-radius: 0;
  background: rgba(241, 240, 239, .92);
  color: var(--ink);
  font: inherit;
  font-weight: 700;
}

.contact-form input {
  min-height: 70px;
  padding: 0 32px;
}

.contact-form textarea {
  min-height: 170px;
  padding: 28px 32px;
  resize: vertical;
}

.contact-form input[name="website"] {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #727772;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(185, 145, 83, .42);
  outline-offset: 0;
  background: #f7f5f1;
}

.contact-submit {
  min-width: 112px;
  min-height: 48px;
  padding: 0 28px;
  border: 0;
  border-radius: 0;
  background: var(--ink);
  color: var(--white);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.contact-submit:hover {
  background: var(--green);
}

.contact-form-status {
  display: none;
  max-width: 880px;
  margin: 0 0 20px;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-weight: 800;
}

.contact-form-status.show {
  display: block;
}

.contact-form-status.success {
  background: #e8f1ea;
  color: #1f5639;
}

.contact-form-status.error {
  background: #f6dfdc;
  color: #7a2828;
}

.company-layout {
  display: grid;
  grid-template-columns: minmax(0, 650px) minmax(360px, 470px);
  gap: 70px;
  align-items: start;
}

.company-table {
  width: 100%;
  border-collapse: collapse;
}

.company-table th,
.company-table td {
  padding: 22px 24px;
  border: 0;
  text-align: left;
  vertical-align: top;
}

.company-table tr:nth-child(odd) {
  background: #fbfaf7;
}

.company-table tr {
  transition: background .25s ease, transform .25s ease;
}

.company-table th {
  width: 180px;
  color: var(--green);
  font-size: 14px;
}

.company-table td {
  font-size: 14px;
}

.site-footer {
  background: var(--ink);
  color: #a9aca5;
  padding: 28px 0;
  font-size: 13px;
}

.footer-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 56px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.footer-inner strong {
  color: #d8d2c6;
  font-weight: 500;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .68s cubic-bezier(.2, .8, .2, 1), transform .68s cubic-bezier(.2, .8, .2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

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

@keyframes page-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes hero-image-in {
  from {
    opacity: .65;
    transform: translate3d(0, 0, 0) scale(1.08);
  }
  to {
    opacity: 1;
    transform: translate3d(0, calc(var(--hero-shift, 0px) * .16), 0) scale(1.035);
  }
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes filter-card-in {
  from {
    opacity: 0;
    transform: translateY(14px) scale(.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 900px) {
  .header-inner {
    min-height: 86px;
    padding: 0 12px;
  }

  .brand {
    min-width: 0;
    gap: 12px;
  }

  .brand-mark {
    width: 58px;
    height: 58px;
  }

  .brand-name {
    font-size: 13px;
    white-space: nowrap;
  }

  .brand-en {
    padding-bottom: 5px;
    border-bottom: 1px solid var(--gold);
    font-size: 7px;
  }

  .brand-sub {
    margin-top: 4px;
    font-size: 7px;
  }

  .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .lang-switcher {
    position: fixed;
    right: 58px;
    top: 27px;
    z-index: 33;
    background: rgba(250, 248, 243, .92);
    border-color: rgba(185, 145, 83, .44);
    box-shadow: 0 10px 26px rgba(32, 36, 31, .12);
  }

  .lang-switcher button {
    min-width: 28px;
    height: 26px;
    padding: 0 7px;
    color: #3d473f;
    font-size: 11px;
  }

  .lang-switcher button:hover {
    color: var(--green);
  }

  .site-nav {
    position: fixed;
    inset: 86px 0 auto;
    display: flex;
    padding: 18px;
    background: rgba(250, 248, 243, .96);
    border-top: 1px solid rgba(185, 145, 83, .24);
    box-shadow: 0 24px 60px rgba(32, 36, 31, .18);
    color: var(--green);
    backdrop-filter: blur(18px) saturate(1.08);
    -webkit-backdrop-filter: blur(18px) saturate(1.08);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .28s ease, transform .28s ease;
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px 4px;
    border-bottom: 1px solid rgba(23, 55, 47, .14);
    color: var(--green);
    font-weight: 800;
  }

  .site-nav a:hover,
  .site-nav a.active {
    color: var(--ink);
  }

  .site-nav a::after {
    display: none;
  }

  .nav-cta {
    margin-top: 14px;
  }

  .hero {
    min-height: 610px;
  }

  .hero::before {
    background-image: linear-gradient(90deg, rgba(12, 18, 15, .72), rgba(12, 18, 15, .32) 58%, rgba(12, 18, 15, .1)), linear-gradient(0deg, rgba(12, 18, 15, .1), transparent 45%), var(--hero-image);
    background-position: center;
  }

  .hero-inner {
    display: block;
    padding: 184px 18px 74px;
  }

  h1 {
    margin-top: 24px;
    font-size: 32px;
    line-height: 1.22;
  }

  .hero-lead {
    font-size: 13px;
  }

  .hero-actions {
    display: block;
  }

  .hero-actions .btn {
    width: 100%;
    margin-top: 12px;
  }

  .hero-points {
    display: none;
  }

  .home-hero .hero-inner {
    display: block;
    padding: 148px 18px 58px;
  }

  .section {
    padding: 58px 18px;
  }

  .container {
    max-width: 100%;
  }

  .section-head,
  .feature-grid,
  .home-menu-grid,
  .area-layout,
  .owner-band,
  .filter-box,
  .facility-grid,
  .case-grid,
  .flow-grid,
  .split,
  .service-card-grid,
  .faq-wrap,
  .info-grid,
  .company-layout,
  .consultation-layout {
    grid-template-columns: 1fr;
  }

  .consultation-section {
    min-height: 0;
  }

  .section-head {
    gap: 12px;
    margin-bottom: 30px;
  }

  .section-title {
    font-size: 28px;
  }

  .section-copy {
    font-size: 13px;
  }

  .card {
    min-height: 118px;
    padding: 22px;
  }

  .card .number {
    float: left;
    margin: 2px 18px 20px 0;
  }

  .owner-concern-grid .card .number {
    float: none;
    margin: 0;
  }

  .concern-body {
    padding: 20px;
  }

  .concern-title-row {
    min-height: 0;
    align-items: flex-start;
  }

  .owner-concern-grid h3 {
    min-height: 0;
  }

  .card h3 {
    font-size: 15px;
  }

  .card p {
    font-size: 12px;
  }

  .home-menu-card {
    min-height: 0;
  }

  .area-photo {
    height: 290px;
  }

  .area-tile {
    min-height: 150px;
    padding: 28px;
  }

  .owner-band {
    gap: 34px;
  }

  .owner-band img {
    height: 280px;
  }

  .filter-box {
    gap: 10px;
    padding: 10px;
    margin-bottom: 28px;
  }

  .facility-card img {
    height: 250px;
  }

  .facility-detail-card dl,
  .facility-mini-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .facility-detail-actions .btn {
    width: 100%;
  }

  .facility-modal {
    padding: 16px;
  }

  .facility-modal-card {
    max-height: calc(100vh - 32px);
    grid-template-columns: 1fr;
  }

  .facility-modal-gallery {
    height: 260px;
  }

  .facility-modal-gallery img {
    max-height: none;
  }

  .gallery-arrow {
    width: 38px;
    height: 38px;
    font-size: 24px;
  }

  .gallery-arrow.prev {
    left: 10px;
  }

  .gallery-arrow.next {
    right: 10px;
  }

  .gallery-counter {
    bottom: 10px;
  }

  .facility-modal-body {
    padding: 24px;
  }

  .facility-modal-body h2 {
    font-size: 22px;
  }

  .metrics {
    grid-template-columns: 1fr;
  }

  .case-card {
    min-height: 0;
  }

  .case-card > p:first-of-type {
    min-height: 0;
  }

  .split {
    gap: 36px;
  }

  .service-list {
    columns: 1;
  }

  .service-card::after {
    display: none;
  }

  .service-card::before {
    display: none;
  }

  .faq-side {
    display: none;
  }

  .faq-question {
    padding: 20px 54px 20px 22px;
    font-size: 14px;
  }

  .faq-answer {
    font-size: 13px;
  }

  .company-table,
  .company-table tbody,
  .company-table tr,
  .company-table th,
  .company-table td {
    display: block;
    width: 100%;
  }

  .company-table th {
    padding-bottom: 0;
  }

  .company-table td {
    padding-top: 4px;
  }

  .footer-inner {
    padding: 0 18px;
    display: block;
  }

  .footer-inner div + div {
    margin-top: 10px;
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .owner-concern-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
