/* =========================================================
   Kobe Ribbon LP — styles.css
   Reference: assets/reference/LP_reference.png (864 x 1821)
   ========================================================= */

:root {
  --black: #111111;
  --muted: #6d7370;
  --line-green: #07b53b;
  --lime: #cdf000;
  --mint: #7edec6;
  --pink: #ff6f9e;
  --purple: #7b4cff;
  --border: #dfe5e2;
  --panel: #fbfbfb;

  --font-ja: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  --font-latin: "Montserrat", "Inter", Arial, sans-serif;

  --page-w: 864px;
  --pad-x: 40px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-ja);
  color: var(--black);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p { margin: 0; }

.page {
  position: relative;
  width: 100%;
  max-width: var(--page-w);
  margin: 0 auto;
  background: #fff;
  overflow: hidden;
}

.section-en {
  font-family: var(--font-latin);
  letter-spacing: 0.04em;
  font-weight: 800;
}

/* ============== HEADER ============== */
.site-header { padding: 14px 28px 10px; }
.header-inner {
  display: flex;
  align-items: center;
  gap: 18px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-logo {
  width: 70px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f0f0;
  border: 1px solid #e1e1e1;
  font-family: var(--font-latin);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: #777;
}
.brand-sub {
  font-family: var(--font-latin);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #555;
  line-height: 1.3;
}
.nav-main {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: 30px;
  font-family: var(--font-latin);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #1a1a1a;
}
.nav-main a:hover { color: var(--purple); }
.header-cta { margin-left: auto; }
.header-cta img {
  height: 66px;
  width: auto;
}

/* ============== HERO ============== */
.hero {
  position: relative;
  padding: 8px 28px 20px;
  min-height: 410px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 0;
  align-items: start;
  position: relative;
  z-index: 5;
}
.hero-text {
  padding-top: 8px;
}
.hero-eyebrow {
  font-size: 13px;
  color: var(--black);
  margin-bottom: 8px;
  font-weight: 500;
}
.hero-headline {
  font-size: 42px;
  font-weight: 900;
  line-height: 1.22;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
  white-space: nowrap;
}
.hl-lime {
  background: linear-gradient(transparent 60%, var(--lime) 60%, var(--lime) 96%, transparent 96%);
  padding: 0 1px;
}
.hero-lead {
  font-size: 12px;
  color: #2a2a2a;
  line-height: 1.85;
  margin-bottom: 20px;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-bottom: 18px;
  max-width: 380px;
}
.proof-row li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}
.proof-row li img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.proof-row li span {
  font-size: 8.5px;
  line-height: 1.45;
  color: #2a2a2a;
}

.hero-cta img {
  height: 96px;
  width: auto;
}
.hero-cta-sub {
  display: block;
  margin-top: -2px;
  font-size: 11px;
  color: #1a1a1a;
  letter-spacing: 0.04em;
  font-weight: 500;
  text-align: center;
}
.hero-cta {
  display: inline-block;
  position: relative;
  text-decoration: none;
}

/* Hero visual area — overlaps from middle to right */
.hero-visual {
  position: absolute;
  top: 4px;
  right: 8px;
  width: 420px;
  height: 380px;
  z-index: 1;
}
.hero-photo {
  position: absolute;
  top: 24px;
  left: 20px;
  width: 380px;
  height: 330px;
  z-index: 3;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: url(#hero-photo-clip);
  -webkit-clip-path: url(#hero-photo-clip);
}

.decor { position: absolute; pointer-events: none; }

/* Lime blob — sits at upper-left of photo, in front of photo */
.hero-visual .decor-lime-blob {
  width: 150px;
  top: 18px;
  left: 30px;
  z-index: 4;
}
/* Purple blob — at right-middle, partly outside the photo on its right edge */
.hero-visual .decor-purple-blob {
  width: 110px;
  top: 150px;
  right: -10px;
  z-index: 4;
}
/* Pink dots — TOP RIGHT, just outside photo */
.hero-visual .decor-pink-dots {
  width: 65px;
  top: 14px;
  right: -8px;
  z-index: 4;
}
/* Handwriting — below photo, overlapping bottom area between proof icons and photo bottom */
.decor-handwriting {
  position: absolute;
  width: 240px;
  bottom: 32px;
  right: 80px;
  z-index: 4;
  pointer-events: none;
}
.hero-scroll {
  position: absolute;
  right: -10px;
  bottom: 30px;
  width: 16px;
  height: auto;
  z-index: 4;
}

/* Hero side decorations */
.decor-purple-dots-top {
  width: 70px;
  top: 50px;
  left: 4px;
  z-index: 0;
  opacity: 0.9;
}
.decor-side-pink-top {
  width: 60px;
  top: 130px;
  left: 0;
  z-index: 0;
  opacity: 0.9;
}

/* ============== SECTION HEADS ============== */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 14px;
}
.section-title {
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.section-en {
  font-size: 24px;
  letter-spacing: 0.06em;
  color: var(--black);
}
.section-ja {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.06em;
}
.more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: #2a2a2a;
  font-weight: 500;
}
.more-link img { width: 18px; height: auto; }

/* ============== EVENT ============== */
.event-section {
  position: relative;
  padding: 14px 28px 14px;
}
.event-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.event-card {
  display: flex;
  flex-direction: column;
}
.event-thumb {
  width: 100%;
  aspect-ratio: 190 / 132;
  overflow: hidden;
  border-radius: 4px;
  background: #f0eee8;
}
.event-thumb img { width: 100%; height: 100%; object-fit: cover; }
.event-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}
.event-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 999px;
  color: #1a1a1a;
  line-height: 1.4;
}
.badge-lime { background: var(--lime); }
.badge-mint { background: var(--mint); }
.badge-pink { background: var(--pink); color: #fff; }
.badge-purple { background: var(--purple); color: #fff; }
.event-date {
  font-family: var(--font-latin);
  font-size: 10px;
  color: var(--muted);
  font-weight: 600;
  margin-left: auto;
}
.event-title {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}
.event-body {
  margin-top: 5px;
  font-size: 10px;
  color: var(--muted);
  line-height: 1.6;
}

.decor-pink-dots-event {
  width: 56px;
  top: -10px;
  left: 0;
  z-index: 0;
  opacity: 0.85;
  pointer-events: none;
}
.event-section .section-head { position: relative; z-index: 2; }
.decor-side-pink-mid {
  width: 50px;
  top: 80px;
  right: 0;
  z-index: 0;
  opacity: 0.85;
  pointer-events: none;
}
.event-section .event-grid { position: relative; z-index: 2; }

/* ============== NEWS ============== */
.news-section {
  padding: 0 28px;
  margin: 4px 0 12px;
}
.news-row {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 10px 4px;
  font-size: 11px;
}
.news-label {
  font-family: var(--font-latin);
  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: 13px;
}
.news-date {
  font-family: var(--font-latin);
  color: var(--muted);
  font-weight: 600;
  font-size: 10.5px;
}
.news-text {
  color: #2a2a2a;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 10.5px;
}
.news-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 10.5px;
}
.news-more img { width: 16px; }

/* ============== ACCESS ============== */
.access-section {
  position: relative;
  padding: 12px 28px 22px;
}
.access-grid {
  display: grid;
  grid-template-columns: 220px 250px 1fr;
  gap: 18px;
  align-items: start;
}
.access-info .section-title { margin-bottom: 6px; }
.access-lead {
  font-size: 9.5px;
  color: var(--muted);
  margin-bottom: 12px;
  line-height: 1.55;
}
.access-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}
.access-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.access-list img {
  width: 22px; height: 22px; flex: none;
  margin-top: 2px;
}
.al-title {
  font-weight: 700;
  font-size: 11px;
  margin-bottom: 1px;
}
.al-body {
  font-size: 9.5px;
  color: var(--muted);
  line-height: 1.55;
}
.access-photo {
  position: relative;
  width: 200px;
  aspect-ratio: 200 / 100;
  border-radius: 4px;
  overflow: hidden;
}
.access-photo > img:first-child { width: 100%; height: 100%; object-fit: cover; }
.parking-badge {
  position: absolute;
  right: -22px;
  bottom: -8px;
  width: 56px;
  height: auto;
  z-index: 2;
}

.access-map {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--panel);
  border-radius: 4px;
  overflow: hidden;
}
.access-map img { width: 100%; height: 100%; object-fit: cover; }

.access-route {
  font-size: 10px;
  line-height: 1.6;
}
.route-title {
  font-size: 11.5px;
  font-weight: 700;
  margin-bottom: 8px;
  padding-bottom: 5px;
  border-bottom: 1.5px solid var(--lime);
  display: inline-block;
}
.route-steps {
  list-style: none;
  padding: 0;
  color: #2a2a2a;
  counter-reset: step;
}
.route-steps li {
  margin-bottom: 6px;
  padding-left: 22px;
  position: relative;
  counter-increment: step;
  font-size: 10px;
  line-height: 1.55;
}
.route-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0; top: 1px;
  width: 16px; height: 16px;
  border: 1px solid var(--black);
  border-radius: 50%;
  font-family: var(--font-latin);
  font-weight: 700;
  font-size: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.route-note {
  margin-top: 8px;
  font-size: 9px;
  color: var(--muted);
}

.decor-squiggle {
  width: 80px;
  bottom: 20px;
  right: 16px;
  z-index: 0;
  opacity: 0.85;
}

/* ============== STRENGTH ============== */
.strength-section {
  padding: 14px 28px 18px;
  position: relative;
}
.strength-section .section-title { margin-bottom: 16px; }
.strength-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.strength-card + .strength-card {
  border-left: 1px solid #e5e5e5;
  padding-left: 18px;
}
.strength-card {
  position: relative;
  text-align: left;
  display: grid;
  grid-template-columns: 50px 1fr;
  column-gap: 10px;
  row-gap: 0;
  align-items: start;
  padding: 0;
  background: transparent;
  border: 0;
}
.strength-icon {
  grid-row: 1 / 3;
  grid-column: 1;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.strength-icon img { width: 44px; height: 44px; }
.strength-icon.bg-lime,
.strength-icon.bg-pink,
.strength-icon.bg-purple,
.strength-icon.bg-mint { background: transparent; }
.strength-no {
  grid-column: 2;
  grid-row: 1;
  align-self: start;
  padding-top: 4px;
  font-family: var(--font-latin);
  font-weight: 800;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.06em;
  line-height: 1;
}
.strength-title {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  margin-top: 4px;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}
.strength-body {
  grid-column: 2;
  grid-row: 3;
  margin-top: 8px;
  font-size: 10px;
  color: var(--muted);
  line-height: 1.65;
}

/* ============== PRICE ============== */
.price-section {
  position: relative;
  padding: 8px 28px 18px;
}
.price-section .section-title { margin-bottom: 14px; }
.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.price-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  text-align: center;
}
.price-title {
  font-size: 10.5px;
  font-weight: 700;
  color: #1a1a1a;
  background: #efefef;
  padding: 3px 12px;
  border-radius: 999px;
  margin-bottom: 4px;
}
.price-value {
  font-family: var(--font-latin);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin: 2px 0;
}
.price-value-text {
  font-size: 13px;
  font-weight: 700;
  margin: 4px 0;
  line-height: 1.45;
}
.price-value-text-sm {
  font-size: 11px;
  font-weight: 700;
  margin: 4px 0;
  line-height: 1.5;
}
.price-note {
  font-size: 9px;
  color: var(--muted);
  line-height: 1.55;
  margin-top: auto;
}
.payment-row { width: 100%; margin-top: 4px; }
.payment-row img { width: 100%; height: auto; }

.decor-side-mint-price {
  width: 90px;
  top: -10px;
  right: 0;
  z-index: 0;
  opacity: 0.55;
}

/* ============== FAQ ============== */
.faq-section {
  position: relative;
  padding: 14px 28px 22px;
}
.faq-section .section-title { margin-bottom: 14px; }
.faq-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 22px;
  align-items: start;
}
.faq-image {
  width: 100%;
  aspect-ratio: 215 / 130;
  border-radius: 50%;
  overflow: hidden;
}
.faq-image img {
  width: 100%; height: 100%; object-fit: cover;
}
.faq-list {
  display: flex; flex-direction: column;
  gap: 5px;
}
.faq-row {
  display: grid;
  grid-template-columns: 28px 1fr 20px;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  transition: background .15s;
}
.faq-row:hover { background: var(--panel); }
.faq-q {
  font-family: var(--font-latin);
  font-weight: 700;
  color: #1a1a1a;
  font-size: 11px;
}
.faq-text {
  font-size: 11px;
  font-weight: 500;
  color: #1a1a1a;
}
.faq-plus {
  font-size: 14px;
  color: var(--muted);
  text-align: right;
  font-weight: 400;
}

.decor-mint-faq {
  width: 50px;
  top: -8px;
  left: 200px;
  z-index: 0;
  opacity: 0.6;
  pointer-events: none;
}
.faq-section .section-title { position: relative; z-index: 2; }

/* ============== BOTTOM CTA ============== */
.bottom-cta {
  position: relative;
  margin: 18px 14px 22px;
  min-height: 165px;
  display: grid;
  grid-template-columns: 180px 1fr 240px;
  align-items: center;
  gap: 16px;
  padding: 22px 32px 22px 20px;
  overflow: visible;
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  object-fit: fill;
}
.cta-phone-mock {
  position: relative;
  width: 175px;
  height: auto;
  margin: -36px 0 -22px -10px;
  z-index: 2;
  align-self: end;
}
.cta-content {
  position: relative;
  z-index: 2;
  color: #1a1a1a;
}
.cta-eyebrow {
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 5px;
  letter-spacing: 0.02em;
}
.cta-headline {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.cta-points {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 11px;
  color: #1a1a1a;
}
.cta-points li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}
.cta-points li::before {
  content: "✓";
  width: 14px;
  height: 14px;
  background: var(--black);
  color: var(--lime);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  font-size: 9px;
  font-weight: 800;
}
.cta-action {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.cta-action-sub {
  font-size: 11px;
  font-weight: 600;
  color: #1a1a1a;
  white-space: nowrap;
}
.cta-action-btn {
  display: block;
  width: 100%;
}
.cta-action-btn img {
  width: 100%;
  max-width: 777px;
  height: auto;
}

/* ============== RESPONSIVE ============== */
@media (max-width: 720px) {
  :root { --pad-x: 18px; }
  .site-header { padding: 12px 18px; }
  .header-inner { flex-wrap: wrap; gap: 10px; }
  .nav-main { gap: 12px; font-size: 10px; order: 3; width: 100%; justify-content: center; margin-left: 0; }
  .header-cta { margin-left: auto; }

  .hero { padding: 8px 18px 20px; min-height: 0; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { position: relative; right: 0; width: 100%; max-width: 380px; margin: 16px auto 0; height: 360px; }
  .hero-photo { left: 8px; right: 8px; width: auto; }
  .hero-headline { font-size: 32px; white-space: normal; }
  .proof-row { grid-template-columns: repeat(2, 1fr); max-width: none; }
  .decor-handwriting { display: none; }

  .event-section, .access-section, .strength-section, .price-section, .faq-section { padding-left: 18px; padding-right: 18px; }
  .news-section { padding-left: 18px; padding-right: 18px; }

  .event-grid { grid-template-columns: repeat(2, 1fr); }
  .access-grid { grid-template-columns: 1fr; }
  .strength-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-image { max-width: 280px; margin: 0 auto; }

  .news-text { white-space: normal; }
  .access-photo { width: 100%; }

  .bottom-cta {
    margin: 14px 18px 22px;
    grid-template-columns: 1fr;
    padding: 18px;
  }
  .cta-phone-mock {
    margin: 0 auto -10px;
  }
}
