@charset "utf-8";

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black: #111111;
  --dark: #1c1c1c;
  --steel: #e0ddd8;
  --accent: #b8960c;
  --accent2: #d4ae2a;
  --white: #ffffff;
  --bg: #f7f5f2;
  --muted: #888888;
  --text: #222222;
  --textsub: #555555;
}

body {
  background: var(--white);
  color: var(--text);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

/* BREADCRUMB */
#pan {
  border-bottom: 1px solid var(--steel);
  padding: 10px 40px;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.06em;
}
#pan a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
#pan a:hover {
  color: var(--accent);
}

#contents {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 0px;
}

/* EYEBROW */
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 48px 0 28px;
}
.section-eyebrow::before {
  content: "";
  display: block;
  width: 3px;
  height: 26px;
  background: var(--accent);
}
.section-eyebrow span {
  font-family: "Bebas Neue", sans-serif;
  font-size: 12px;
  letter-spacing: 0.28em;
  color: var(--accent);
}

/* HERO */
.hero-block {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
}
.hero-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.6);
  transition: transform 6s ease;
}
.hero-block:hover img {
  transform: scale(1.03);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(17, 17, 17, 0.65) 0%,
    rgba(17, 17, 17, 0.1) 70%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 52px 60px;
}
.hero-tag {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: "Bebas Neue", sans-serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  padding: 4px 14px;
  margin-bottom: 16px;
  width: fit-content;
}
.hero-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(48px, 6.5vw, 82px);
  letter-spacing: 0.06em;
  line-height: 1;
  color: #fff;
  margin-bottom: 16px;
}
.hero-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.04em;
  line-height: 1.8;
}

/* STATS STRIP */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--steel);
  border-top: 3px solid var(--accent);
  background: var(--bg);
  margin-bottom: 72px;
}
.stat-item {
  padding: 28px 32px;
  border-right: 1px solid var(--steel);
}
.stat-item:last-child {
  border-right: none;
}
.stat-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 46px;
  color: var(--accent);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-num sub {
  font-size: 22px;
}
.stat-label {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.16em;
}

/* CONTENT GRID */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
  align-items: start;
  margin-bottom: 72px;
}

.body-copy h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(30px, 3.5vw, 44px);
  letter-spacing: 0.08em;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 24px;
  border-top: none !important;
  border-bottom: none !important;
  text-align: left !important;
}

.body-copy h3 span {
  color: var(--accent);
}

.body-copy p {
  font-size: 15px;
  line-height: 1.95;
  color: var(--textsub);
  margin-bottom: 16px;
}

.feature-list {
  list-style: none;
  margin-top: 28px;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--steel);
  font-size: 14px;
  color: var(--textsub);
  letter-spacing: 0.02em;
}
.feature-list li::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 6px;
  transform: rotate(45deg);
}

/* SIDE CARD */
.side-card {
  background: var(--bg);
  border: 1px solid var(--steel);
  border-top: 3px solid var(--accent);
  padding: 32px;
  position: sticky;
  top: 24px;
}
.side-card h4 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 20px;
  letter-spacing: 0.14em;
  color: var(--black);
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--steel);
}
.side-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 20px;
}
.cta-btn {
  display: block;
  width: 100%;
  background: var(--accent);
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-family: "Bebas Neue", sans-serif;
  font-size: 15px;
  letter-spacing: 0.2em;
  padding: 14px 24px;
  transition:
    background 0.2s,
    transform 0.15s;
  border: none;
  cursor: pointer;
}
.cta-btn:hover {
  background: var(--accent2);
  transform: translateY(-1px);
}
.cta-btn-outline {
  display: block;
  width: 100%;
  background: transparent;
  color: var(--accent);
  text-align: center;
  text-decoration: none;
  font-family: "Bebas Neue", sans-serif;
  font-size: 15px;
  letter-spacing: 0.2em;
  padding: 13px 24px;
  border: 1px solid var(--accent);
  transition:
    background 0.2s,
    color 0.2s;
  margin-top: 12px;
}
.cta-btn-outline:hover {
  background: var(--accent);
  color: #fff;
}

/* GALLERY */
.gallery-section {
  margin-bottom: 72px;
}
.gallery-label {
  font-family: "Bebas Neue", sans-serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--muted);
  margin-bottom: 16px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 4px;
}
.g-main {
  overflow: hidden;
  position: relative;
}
.g-sub {
  overflow: hidden;
  position: relative;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.85) saturate(0.85);
  transition:
    transform 0.5s ease,
    filter 0.3s;
}
.g-main:hover img,
.g-sub:hover img {
  transform: scale(1.04);
  filter: brightness(1) saturate(1);
}
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(17, 17, 17, 0.7));
  padding: 24px 16px 12px;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.82);
  text-transform: uppercase;
}

/* DIVIDER */
.gold-line {
  height: 1px;
  background: linear-gradient(to right, var(--accent), transparent);
  margin: 0 0 48px;
  width: 50%;
}

/* FOOTER */
#footer {
  background: #e7f7fe;
  border-top: 1px solid var(--steel);
}

#footer .list_block {
  width: 300px;
  float: left;
  padding: 30px 10px;
  line-height: 1.5;
  margin: 0 auto;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  #contents {
    padding: 0 20px 60px;
  }
  #pan {
    padding: 10px 20px;
  }
  .content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .side-card {
    position: static;
  }
  .hero-block {
    height: 380px;
  }
  .hero-overlay {
    padding: 32px 28px;
  }
  .stats-strip {
    grid-template-columns: 1fr;
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--steel);
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 280px 200px 200px;
  }
  .g-main {
    grid-row: auto;
  }
}
