:root {
  --ink: #142120;
  --muted: #66716f;
  --line: #dce2df;
  --paper: #ffffff;
  --mist: #f6f7f4;
  --deep: #071211;
  --accent: #008b7c;
  --accent-dark: #00665d;
  --gold: #b99a5b;
  --soft-gold: #efe6d3;
  --shadow: 0 24px 60px rgba(19, 32, 31, 0.12);
  --sharp-shadow: 0 18px 44px rgba(21, 60, 59, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(0, 139, 124, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(185, 154, 91, 0.028) 1px, transparent 1px),
    var(--paper);
  background-size: 54px 54px;
  font-family: "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  line-height: 1.8;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 0 clamp(20px, 5vw, 64px);
  background:
    linear-gradient(90deg, rgba(246, 242, 231, 0.9), rgba(255, 255, 255, 0.96) 34%, rgba(249, 250, 248, 0.96)),
    #fff;
  border-bottom: 1px solid rgba(203, 210, 207, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 0;
}

.brand-frame {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 78px;
  padding: 0 2px;
}

.brand-symbol {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding-right: 16px;
  color: var(--accent-dark);
  border-right: 1px solid rgba(185, 154, 91, 0.5);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
}

.brand-text {
  display: grid;
  gap: 1px;
}

.brand-text strong {
  color: #172423;
  font-size: clamp(15px, 1.45vw, 18px);
  font-weight: 900;
  line-height: 1.25;
}

.brand-text small {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.25;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.3vw, 28px);
  color: #68716f;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.site-nav a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover {
  color: var(--deep);
  border-color: var(--gold);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 78vh;
  padding: clamp(66px, 8vw, 108px) clamp(20px, 5vw, 64px) 52px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 33% 38%, rgba(0, 139, 124, 0.48), transparent 32%),
    radial-gradient(circle at 76% 18%, rgba(185, 154, 91, 0.24), transparent 28%),
    linear-gradient(118deg, rgba(7, 18, 17, 0.98), rgba(10, 34, 32, 0.94) 52%, rgba(28, 42, 40, 0.96));
  background-size: 58px 58px, 58px 58px, auto, auto, auto;
}

.hero::after {
  content: "";
  position: absolute;
  right: -8vw;
  bottom: -22vh;
  width: 54vw;
  min-width: 420px;
  aspect-ratio: 1;
  border: 1px solid rgba(241, 207, 145, 0.24);
  transform: rotate(18deg) skew(-8deg);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.78fr);
  gap: clamp(42px, 7vw, 90px);
  align-items: center;
  max-width: 1180px;
  min-height: 58vh;
  margin: 0 auto;
}

.eyebrow,
.section-label {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}

.hero .eyebrow {
  color: #f1cf91;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(42px, 6.2vw, 78px);
  line-height: 1.13;
  letter-spacing: 0;
}

.hero-title {
  max-width: 980px;
  font-size: clamp(42px, 5.1vw, 68px);
}

.hero-title span {
  display: block;
  white-space: nowrap;
}

h2 {
  margin: 0;
  font-size: clamp(28px, 3.8vw, 46px);
  line-height: 1.25;
}

.lead {
  max-width: 760px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(16px, 1.7vw, 19px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 900;
  line-height: 1.25;
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
}

.button.secondary {
  color: var(--deep);
  background: #fff;
  border-color: var(--line);
}

.hero .button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.35);
}

.hero-mark {
  display: grid;
  place-items: center;
  padding: clamp(18px, 3vw, 28px);
  background:
    radial-gradient(circle at 22% 45%, rgba(0, 139, 124, 0.32), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(185, 154, 91, 0.28);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-mark img {
  width: min(100%, 540px);
  aspect-ratio: 1035 / 455;
  object-fit: contain;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(72px, 10vw, 120px) clamp(20px, 5vw, 64px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-intro {
  max-width: 820px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.message {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.message p:last-child,
.message-body {
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.message-body {
  max-width: 760px;
  margin-top: 0;
}

.message-body p {
  margin: 0 0 18px;
}

.message-body p:last-child {
  margin-bottom: 0;
}

.message-body strong {
  color: var(--accent-dark);
  font-weight: 900;
}

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

.business-card,
.location-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.business-card {
  min-height: 336px;
  padding: 28px;
  box-shadow: 0 14px 34px rgba(23, 32, 42, 0.045);
  background: linear-gradient(180deg, #ffffff, #fbfcfb);
}

.media-card {
  display: grid;
  grid-template-rows: 172px 1fr;
  gap: 22px;
  padding: 0;
  overflow: hidden;
}

.media-card > img {
  width: 100%;
  height: 172px;
  object-fit: cover;
}

.media-card > div {
  padding: 0 28px 28px;
}

.content-business-card {
  display: grid;
  grid-column: span 2;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  min-height: 336px;
  padding: 24px;
  overflow: hidden;
}

.content-logo-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.content-logo-strip img {
  width: 100%;
  aspect-ratio: 1.25 / 1;
  object-fit: contain;
  padding: 12px;
  background: linear-gradient(135deg, #fff, #f4f0e7);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.card-number {
  margin: 0 0 42px;
  color: var(--gold);
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
}

.media-card .card-number {
  margin-bottom: 22px;
}

.business-card h3,
.location-item h3 {
  margin: 0 0 16px;
  font-size: 21px;
  line-height: 1.4;
}

.business-card p:last-child,
.location-item p {
  margin: 0;
  color: var(--muted);
}

.property-section {
  padding: clamp(70px, 9vw, 110px) clamp(20px, 5vw, 64px);
  background:
    radial-gradient(circle at 80% 18%, rgba(185, 154, 91, 0.16), transparent 32%),
    linear-gradient(135deg, rgba(239, 230, 211, 0.74), rgba(246, 247, 244, 0.96) 48%, rgba(226, 241, 238, 0.78));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contents-section {
  padding: clamp(70px, 9vw, 110px) clamp(20px, 5vw, 64px);
  background:
    radial-gradient(circle at 20% 20%, rgba(185, 154, 91, 0.16), transparent 30%),
    linear-gradient(135deg, #f9f7f1, #eef6f4 62%, #f7f4ed);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contents-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.contents-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.content-card {
  display: grid;
  gap: 18px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--sharp-shadow);
}

.content-card img {
  width: 100%;
  max-height: 210px;
  object-fit: contain;
  background: #f7f6f1;
  border-radius: 6px;
}

.content-card h3 {
  margin: 0;
  color: var(--deep);
  font-size: 24px;
}

.content-card p {
  margin: 0;
  color: var(--muted);
}

.content-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2px;
}

.content-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  color: #fff;
  background: linear-gradient(135deg, #0c7469, #0f4f49);
  border: 1px solid rgba(12, 116, 105, 0.22);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(8, 66, 61, 0.14);
}

.content-link:hover {
  background: linear-gradient(135deg, #0d8175, #0b5a53);
}

.policy-note {
  margin-top: 18px;
  padding: 20px 22px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.policy-note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--deep);
}

.policy-note p {
  margin: 0;
}

.property-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.property-heading {
  max-width: 850px;
}

.property-heading p:not(.section-label) {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.property-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.78fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 34px;
}

.property-card {
  display: grid;
  grid-template-rows: minmax(190px, auto) 1fr;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--sharp-shadow);
}

.feature-property {
  grid-template-rows: minmax(300px, auto) 1fr;
}

.property-photo {
  min-height: 300px;
  overflow: hidden;
  background: #e7ece9;
}

.property-photo img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.property-logo-panel {
  display: grid;
  place-items: center;
  min-height: 190px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(0, 143, 124, 0.08), rgba(184, 138, 61, 0.12)), #fff;
}

.share-logo {
  width: min(100%, 330px);
  max-height: 150px;
  object-fit: contain;
}

.share-space-photo img {
  object-position: center center;
}

.property-card-body {
  padding: 24px 26px 28px;
}

.with-logo {
  display: grid;
  gap: 12px;
}

.equator-logo {
  width: min(100%, 320px);
  max-height: 72px;
  object-fit: contain;
  margin-bottom: 4px;
}

.property-type {
  margin: 0;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
}

.property-card h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.35;
}

.property-card-body p:last-child {
  margin: 0;
  color: var(--muted);
}

.asahi {
  background:
    radial-gradient(circle at 72% 22%, rgba(185, 154, 91, 0.16), transparent 30%),
    linear-gradient(135deg, #fbfaf7, #f4f7f4 60%, #eef5f3);
  padding: clamp(70px, 9vw, 110px) clamp(20px, 5vw, 64px);
}

.asahi-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(300px, 0.72fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.asahi-copy p:not(.section-label) {
  max-width: 720px;
  color: var(--muted);
  font-size: 17px;
}

.asahi-logo {
  width: min(430px, 100%);
  height: auto;
  margin: 0 0 26px;
  mix-blend-mode: multiply;
}

.asahi-side {
  display: grid;
  gap: 16px;
}

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

.bali-gallery img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(23, 32, 42, 0.08);
}

.qr-card {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--sharp-shadow);
}

.qr-card p {
  grid-column: 1 / -1;
  margin: 0 0 -4px;
  color: var(--accent);
  font-weight: 900;
}

.qr-card img {
  width: 116px;
  height: 116px;
  object-fit: contain;
  border-radius: 6px;
  border: 1px solid var(--line);
}

.qr-card span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.energy-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1fr);
  align-items: stretch;
  min-height: 440px;
  color: #fff;
  background: var(--deep);
}

.energy-copy {
  display: grid;
  align-content: center;
  padding: clamp(48px, 7vw, 88px) clamp(20px, 5vw, 64px);
  background:
    radial-gradient(circle at 22% 34%, rgba(0, 139, 124, 0.42), transparent 38%),
    linear-gradient(135deg, #071211, #112624);
}

.energy-copy p:not(.section-label) {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.78);
}

.energy-band > img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.location-item {
  padding: 24px;
}

.company {
  max-width: 1040px;
}

.company-list {
  margin: 0;
  border-top: 1px solid var(--line);
}

.company-list div {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 22px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.company-list dt {
  color: var(--muted);
  font-weight: 900;
}

.company-list dd {
  margin: 0;
}

.company-list a {
  color: var(--accent);
  font-weight: 900;
}

.group-company {
  margin-top: 34px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(0, 139, 124, 0.06), rgba(185, 154, 91, 0.08)), #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.group-company h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.35;
}

.group-note {
  display: inline-flex;
  margin: 10px 0 18px;
  padding: 3px 10px;
  color: var(--accent-dark);
  background: rgba(0, 139, 124, 0.08);
  border: 1px solid rgba(0, 139, 124, 0.16);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.group-company dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 28px;
  margin: 0;
}

.group-company dl div {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 10px;
}

.group-company dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.group-company dd {
  margin: 0;
  font-weight: 800;
}

.contact {
  padding: clamp(70px, 9vw, 110px) clamp(20px, 5vw, 64px);
  color: #fff;
  background:
    radial-gradient(circle at 24% 30%, rgba(0, 139, 124, 0.26), transparent 34%),
    linear-gradient(135deg, #071211, #102422 72%, #1b1d1b);
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.65fr);
  gap: clamp(28px, 6vw, 72px);
  max-width: 1180px;
  margin: 0 auto;
}

.contact h2 {
  color: #fff;
}

.contact p:not(.section-label) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
}

.contact-links {
  display: grid;
  gap: 12px;
}

.contact-links a {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 64px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
}

.contact-links span {
  color: #f1cf91;
  font-size: 12px;
  font-weight: 900;
}

.site-footer {
  padding: 24px 20px;
  color: var(--muted);
  text-align: center;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
  font-size: 13px;
}

.footer-network {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 700;
}

.footer-network a {
  color: var(--deep);
  text-decoration: none;
  border-bottom: 1px solid rgba(12, 116, 105, 0.2);
}

.footer-network a:hover {
  color: var(--green);
}

@media (max-width: 980px) {
  .site-header {
    position: static;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner,
  .message,
  .asahi-inner,
  .contact-inner,
  .energy-band {
    grid-template-columns: 1fr;
  }

  .business-grid,
  .property-grid,
  .location-grid,
  .contents-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .content-business-card {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }

  .business-card {
    min-height: 260px;
  }
}

@media (max-width: 660px) {
  .site-header {
    gap: 12px;
    min-height: auto;
  }

  .brand,
  .brand-frame {
    width: 100%;
  }

  .brand-frame {
    min-height: 58px;
    max-width: none;
    padding: 0;
  }

  .brand-symbol {
    min-height: 30px;
    padding-right: 12px;
    font-size: 21px;
  }

  .brand-text strong {
    font-size: 15px;
  }

  .brand-text small {
    font-size: 10px;
  }

  .site-nav {
    gap: 18px;
    font-size: 13px;
    padding-bottom: 6px;
  }

  .hero {
    padding-top: 54px;
    padding-bottom: 34px;
  }

  h1 {
    font-size: 38px;
  }

  .hero-title {
    font-size: clamp(32px, 9vw, 42px);
  }

  .lead,
  .message p:last-child,
  .message-body {
    font-size: 16px;
  }

  .hero-actions,
  .asahi-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-mark {
    padding: 14px;
  }

  .business-grid,
  .property-grid,
  .location-grid,
  .bali-gallery,
  .contents-grid {
    grid-template-columns: 1fr;
  }

  .business-card {
    min-height: auto;
  }

  .content-business-card {
    grid-column: auto;
  }

  .content-logo-strip {
    grid-template-columns: 1fr;
  }

  .media-card {
    position: relative;
    display: grid;
    min-height: 420px;
    overflow: hidden;
    background: var(--deep);
  }

  .media-card > img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    grid-area: 1 / 1;
  }

  .media-card > div {
    position: relative;
    z-index: 1;
    display: grid;
    align-content: end;
    grid-area: 1 / 1;
    min-height: 420px;
    padding: 150px 22px 26px;
    background: linear-gradient(180deg, rgba(7, 18, 17, 0.08), rgba(7, 18, 17, 0.62) 44%, rgba(7, 18, 17, 0.9));
    color: #fff;
  }

  .media-card .card-number {
    color: #fff;
    text-shadow:
      0 0 1px rgba(7, 18, 17, 0.95),
      0 2px 10px rgba(0, 0, 0, 0.55);
  }

  .media-card h3,
  .media-card p:last-child {
    color: #fff;
    text-shadow:
      -1px -1px 0 rgba(7, 18, 17, 0.6),
      1px -1px 0 rgba(7, 18, 17, 0.6),
      -1px 1px 0 rgba(7, 18, 17, 0.6),
      1px 1px 0 rgba(7, 18, 17, 0.6),
      0 4px 16px rgba(0, 0, 0, 0.72);
  }

  .qr-card {
    grid-template-columns: 98px minmax(0, 1fr);
  }

  .qr-card img {
    width: 98px;
    height: 98px;
  }

  .company-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .group-company dl,
  .group-company dl div {
    grid-template-columns: 1fr;
  }

  .contact-links a {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
