/* ====================================================================
   ELYS — Shared site styles
   Tiffany blue + Pegasus aesthetic
   ==================================================================== */

:root {
  --bg: #ffffff;
  --bg-2: #f7faf9;
  --bg-3: #eaf4f2;
  --pale: #e6f5f3;
  --line: #dfeae8;
  --line-2: #c4dcd8;
  --tiff: #0ABAB5;
  --tiff-2: #66c5c1;
  --tiff-3: #066c69;
  --ink: #0c3a37;
  --text: #222222;
  --text-dim: #4f5e5d;
  --muted: #828d8c;
  --gold: #c9a961;
  --danger: #d54b48;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.serif { font-family: "Noto Serif JP", "Cormorant Garamond", serif; }
.display { font-family: "Cormorant Garamond", "Noto Serif JP", serif; letter-spacing: 0.02em; }
.tiff { color: var(--tiff); }

.divider {
  width: 60px; height: 1px; margin: 16px auto;
  background: linear-gradient(90deg, transparent, var(--tiff), transparent);
}
.divider-ornate {
  width: 80px; height: 12px; margin: 18px auto; position: relative;
}
.divider-ornate::before, .divider-ornate::after {
  content: ""; position: absolute; top: 50%;
  width: 32px; height: 1px; background: var(--tiff);
}
.divider-ornate::before { left: 0; }
.divider-ornate::after { right: 0; }
.divider-ornate span {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 8px; height: 8px;
  background: var(--tiff);
}

/* ============= TOP BAR ============= */
.topbar {
  background: var(--ink);
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 0.08em;
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 36px;
}
.topbar-left { color: #b7d8d4; }
.topbar-right { display: flex; gap: 18px; }
.topbar-right a { color: #ffffff; }
.topbar-right a:hover { color: var(--tiff-2); }
@media (max-width: 720px) { .topbar { display: none; } }

/* ============= HEADER ============= */
header.site {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 88px;
}
.logo {
  display: flex; align-items: center; gap: 12px;
}
.logo-mark {
  width: 50px; height: 50px;
  display: grid; place-items: center;
}
.logo-mark img { width: 100%; height: 100%; object-fit: contain; }
.logo-text {
  font-family: "Noto Serif JP", serif;
  font-weight: 700; letter-spacing: 0.18em;
  font-size: 22px; color: var(--ink);
}
.logo-text small {
  display: block; font-size: 11.5px; letter-spacing: 0.34em; margin-top: 2px;
  color: var(--tiff); font-weight: 500;
}
.nav-links {
  display: flex; gap: 28px; font-size: 13px; letter-spacing: 0.06em;
}
.nav-links a {
  color: var(--ink);
  padding: 4px 0;
  position: relative;
  transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--tiff); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -8px;
  height: 2px; background: var(--tiff);
}
.nav-cta {
  display: flex; align-items: center; gap: 12px;
}
.tel-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--tiff);
  color: var(--tiff);
  font-family: "Cormorant Garamond", serif; font-weight: 600;
  letter-spacing: 0.05em; font-size: 15px;
  transition: all .25s;
}
.tel-chip:hover { background: var(--tiff); color: #fff; }
.tel-chip .ico { width: 14px; height: 14px; }

.menu-btn {
  display: none;
  width: 36px; height: 36px;
  background: none; border: 0;
  position: relative;
}
.menu-btn::before, .menu-btn::after, .menu-btn span {
  content: ""; position: absolute; left: 6px; right: 6px; height: 2px;
  background: var(--ink); transition: transform .3s;
}
.menu-btn::before { top: 11px; }
.menu-btn span { top: 17px; }
.menu-btn::after { top: 23px; }

@media (max-width: 1000px) {
  .nav-links { display: none; }
  .menu-btn { display: block; }
  .tel-chip span.txt { display: none; }
}

/* ============= MOBILE MENU ============= */
.mobile-menu {
  position: fixed; inset: 0; z-index: 200;
  background: var(--ink); color: #fff;
  display: none; flex-direction: column; padding: 100px 32px 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 16px 0; border-bottom: 1px solid #1a4f4a; font-size: 15px; }
.mobile-close { position: absolute; top: 24px; right: 24px; color: #fff; font-size: 30px; }

/* ============= SECTION BASE ============= */
section.block { padding: 110px 0; position: relative; }
section.block.tight { padding: 70px 0; }
.bg-soft { background: var(--bg-2); }
.bg-pale { background: var(--pale); }
.bg-ink { background: var(--ink); color: #fff; }

.sec-head { text-align: center; margin-bottom: 64px; }
.sec-eyebrow {
  color: var(--tiff); font-size: 12px; letter-spacing: 0.4em; font-weight: 500;
}
.sec-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 44px);
  margin-top: 12px; letter-spacing: 0.04em;
  color: var(--ink);
}
.sec-title em { font-style: normal; color: var(--tiff); }
.sec-lead { color: var(--text-dim); margin-top: 14px; font-size: 15px; }

/* ============= BUTTONS ============= */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; padding: 16px 28px;
  font-size: 14px; font-weight: 500; letter-spacing: 0.1em;
  transition: all .3s cubic-bezier(.2,.8,.2,1);
  min-width: 200px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--tiff) 0%, var(--tiff-2) 100%);
  color: #fff; font-weight: 700;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(10,186,181,0.32); }
.btn-outline { border: 1px solid var(--tiff); color: var(--tiff); }
.btn-outline:hover { background: var(--tiff); color: #fff; }
.btn-line {
  background: #06c755; color: #fff; font-weight: 700;
}
.btn-line:hover { background: #05a949; transform: translateY(-2px); }
.btn .arrow { transition: transform .3s; }
.btn:hover .arrow { transform: translateX(4px); }

/* ============= HERO ============= */
.hero {
  position: relative;
  padding: 60px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(10,186,181,0.10), transparent 55%),
    radial-gradient(ellipse at 80% 90%, rgba(10,186,181,0.06), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, var(--pale) 100%);
}
.hero-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px;
  align-items: center; min-height: 70vh;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  color: var(--tiff); font-size: 12px; letter-spacing: 0.35em;
  margin-bottom: 24px; font-weight: 500;
}
.hero-eyebrow::before {
  content: ""; width: 32px; height: 1px; background: var(--tiff);
}
.hero h1 {
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  font-size: clamp(34px, 4.8vw, 60px);
  line-height: 1.28;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin-bottom: 24px;
}
.hero h1 .accent {
  background: linear-gradient(90deg, var(--tiff) 0%, var(--tiff-3) 50%, var(--tiff) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: 16px; color: var(--text-dim);
  margin-bottom: 36px; max-width: 520px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual {
  position: relative; aspect-ratio: 1/1;
  display: grid; place-items: center;
}
.hero-pegasus {
  width: 100%; height: 100%; object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(12,58,55,0.18));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero-badge {
  position: absolute;
  background: #ffffff;
  border: 1px solid var(--tiff);
  padding: 12px 16px;
  font-size: 12px; letter-spacing: 0.1em;
  box-shadow: 0 14px 36px rgba(12,58,55,0.10);
}
.hero-badge strong {
  color: var(--tiff); display: block;
  font-size: 18px; font-family: "Cormorant Garamond", serif;
  margin-bottom: 2px;
}
.hero-badge.top { top: 8%; right: -6%; }
.hero-badge.bot { bottom: 8%; left: -8%; }
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero-visual { max-width: 360px; margin: 0 auto; }
}

/* ============= PAGE HEADER (subpages) ============= */
.page-hero {
  position: relative;
  padding: 90px 0 70px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(10,186,181,0.10), transparent 65%),
    linear-gradient(180deg, var(--pale) 0%, #fff 100%);
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(30px, 4vw, 48px);
  color: var(--ink);
  letter-spacing: 0.04em;
}
.page-hero .crumb {
  color: var(--tiff); font-size: 11px; letter-spacing: 0.4em;
  margin-bottom: 14px;
}
.page-hero p {
  margin-top: 14px; color: var(--text-dim);
  max-width: 640px; margin-left: auto; margin-right: auto; font-size: 15px;
}

/* ============= GRID UTILITIES ============= */
.g-cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.g-cards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.g-cards-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
@media (max-width: 1000px) {
  .g-cards-4 { grid-template-columns: repeat(2, 1fr); }
  .g-cards-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .g-cards-4, .g-cards-3, .g-cards-2 { grid-template-columns: 1fr; }
}

/* ============= CARDS (general) ============= */
.card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 28px 24px;
  transition: all .3s ease;
  position: relative;
}
.card:hover { transform: translateY(-4px); border-color: var(--tiff); box-shadow: 0 18px 40px rgba(12,58,55,0.10); }
.card .num {
  font-family: "Cormorant Garamond", serif;
  font-size: 56px; line-height: 1;
  color: var(--tiff); opacity: .35;
  position: absolute; top: 16px; right: 22px;
}
.card .ico {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border: 1px solid var(--tiff);
  color: var(--tiff);
  margin-bottom: 20px;
}
.card h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 18px; font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}
.card p { color: var(--text-dim); font-size: 13.5px; line-height: 1.85; }

/* ============= ITEM/BRAND CARDS ============= */
.tile {
  background: #fff;
  border: 1px solid var(--line);
  text-align: center;
  padding: 24px 14px 20px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.tile:hover { border-color: var(--tiff); transform: translateY(-3px); }
.tile::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--tiff); transition: width .4s;
}
.tile:hover::after { width: 100%; }
.tile .vis {
  height: 80px; display: grid; place-items: center;
  margin-bottom: 12px;
  color: var(--tiff);
}
.tile .vis svg { width: 56px; height: 56px; stroke-width: 1.4; }
.tile h4 {
  font-family: "Noto Serif JP", serif;
  font-size: 14px; color: var(--ink); margin-bottom: 4px;
}
.tile small { color: var(--muted); font-size: 11px; letter-spacing: 0.1em; }

/* ============= NEWS LIST ============= */
.news-list { display: grid; gap: 0; }
.news-item {
  display: grid;
  grid-template-columns: 110px 90px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.news-item:hover { background: var(--bg-2); }
.news-date { color: var(--muted); font-size: 12px; font-family: "Cormorant Garamond", serif; letter-spacing: 0.1em; }
.news-tag {
  display: inline-block; padding: 4px 10px;
  background: var(--pale);
  color: var(--tiff-3);
  font-size: 11px; letter-spacing: 0.15em;
  text-align: center;
}
.news-tag.campaign { background: var(--tiff); color: #fff; }
.news-tag.notice { background: #f1ede0; color: #8a7332; }
.news-title { color: var(--ink); font-size: 14px; }
@media (max-width: 720px) {
  .news-item { grid-template-columns: 1fr; gap: 4px; padding: 14px 0; }
  .news-tag { width: fit-content; }
}

/* ============= FAQ ============= */
.faq-list { display: grid; gap: 12px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--tiff);
}
.faq-q {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  color: var(--ink);
  font-size: 15px;
  transition: background .2s;
}
.faq-q:hover { background: var(--bg-2); }
.faq-q::before {
  content: "Q"; flex-shrink: 0;
  width: 32px; height: 32px;
  display: grid; place-items: center;
  background: var(--tiff); color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
}
.faq-q::after {
  content: "+"; margin-left: auto;
  font-size: 24px; color: var(--tiff);
  transition: transform .3s;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 0 24px 24px 72px;
  color: var(--text-dim); font-size: 14px;
  line-height: 1.95;
}
.faq-item.open .faq-a { display: block; }

/* ============= RESULT CARDS ============= */
.result-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.result-card {
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: all .35s;
}
.result-card:hover { border-color: var(--tiff); transform: translateY(-4px); box-shadow: 0 22px 50px rgba(12,58,55,0.10); }
.result-vis {
  aspect-ratio: 4/3;
  background:
    radial-gradient(circle at 50% 45%, var(--pale) 0%, #fff 70%);
  display: grid; place-items: center;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.result-vis .orb {
  width: 60%; aspect-ratio: 1/1; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff, var(--pale) 70%);
  border: 2px solid var(--tiff);
  display: grid; place-items: center;
  box-shadow: inset 0 0 18px rgba(10,186,181,0.18);
}
.result-vis .orb span {
  font-family: "Cormorant Garamond", serif;
  color: var(--tiff-3); letter-spacing: 0.18em;
  font-size: 15px; text-align: center;
}
.result-vis .orb span em {
  font-style: normal; display: block; font-size: 0.6em;
  color: var(--text-dim); letter-spacing: 0.25em; margin-top: 4px;
}
.result-vis .badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--tiff); color: #fff;
  padding: 4px 10px; font-size: 10px; letter-spacing: 0.2em;
}
.result-body { padding: 20px 22px; }
.result-body .brand-tag { color: var(--tiff); font-size: 11px; letter-spacing: 0.25em; }
.result-body .model {
  font-family: "Noto Serif JP", serif;
  color: var(--ink); font-weight: 700;
  margin: 6px 0 14px; font-size: 15px;
}
.result-body .price-row {
  display: flex; align-items: baseline; justify-content: space-between;
  padding-top: 14px; border-top: 1px solid var(--line);
}
.result-body .price-row .lbl { font-size: 11px; color: var(--muted); letter-spacing: 0.15em; }
.result-body .price-row .amount {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px; color: var(--tiff-3); font-weight: 600;
}
.result-body .price-row .amount small {
  font-size: 13px; margin-left: 3px; color: var(--tiff);
}
@media (max-width: 900px) { .result-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .result-grid { grid-template-columns: 1fr; } }

/* ============= CTA BAND ============= */
.cta-band {
  background:
    linear-gradient(120deg, rgba(10,186,181,0.08), rgba(10,186,181,0)),
    var(--pale);
  border-top: 1px solid var(--tiff);
  border-bottom: 1px solid var(--tiff);
  padding: 70px 0;
  text-align: center;
}
.cta-band h2 {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(26px, 3.2vw, 38px);
  color: var(--ink); margin-bottom: 8px;
}
.cta-band .tel-big {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(36px, 5vw, 58px);
  color: var(--tiff); letter-spacing: 0.08em; font-weight: 600;
  margin: 12px 0 6px; display: inline-block;
}
.cta-band .tel-note { color: var(--text-dim); font-size: 13px; letter-spacing: 0.15em; margin-bottom: 22px; }
.cta-band .btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 14px; }

/* ============= FOOTER ============= */
footer.site {
  background: var(--ink);
  color: #b7d8d4;
  padding: 70px 0 28px;
}
footer.site a { color: #b7d8d4; transition: color .2s; }
footer.site a:hover { color: var(--tiff-2); }
.foot-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.foot-grid h5 {
  color: var(--tiff-2); font-size: 12px; letter-spacing: 0.25em;
  margin-bottom: 18px; font-weight: 500;
}
.foot-grid ul { list-style: none; }
.foot-grid li { padding: 6px 0; font-size: 13px; }
.foot-about p { font-size: 13px; margin-top: 14px; }
.foot-about .logo .logo-text { color: #fff; }
.foot-about .logo .logo-text small { color: var(--tiff-2); }
.foot-bot {
  padding-top: 24px; border-top: 1px solid #1a4f4a;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 12px; color: #6b8e8b; letter-spacing: 0.08em;
}
.foot-license {
  background: #0a2e2c;
  padding: 14px; margin-top: 18px;
  font-size: 11px; line-height: 1.8; color: #8db5b1;
}
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; } }

/* ============= REVEAL ============= */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .9s ease, transform .9s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============= FLOATING CTA (mobile) ============= */
.float-cta {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.96);
  border-top: 1px solid var(--tiff);
  padding: 10px 14px;
  display: none; gap: 8px; z-index: 90;
  backdrop-filter: blur(10px);
}
.float-cta a {
  flex: 1; padding: 12px;
  text-align: center; font-size: 13px; letter-spacing: 0.08em;
  font-weight: 600;
}
.float-cta .c1 { background: var(--tiff); color: #fff; }
.float-cta .c2 { border: 1px solid var(--tiff); color: var(--tiff); }
.float-cta .c3 { background: #06c755; color: #fff; }
@media (max-width: 720px) {
  .float-cta { display: flex; }
  body { padding-bottom: 70px; }
}

/* ============= STORE INFO ============= */
.store-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  align-items: stretch;
}
.store-info {
  padding: 40px;
  background: #fff;
  border: 1px solid var(--line);
}
.store-info h3 {
  font-family: "Noto Serif JP", serif;
  color: var(--ink); font-size: 22px; margin-bottom: 6px;
}
.store-info .kana {
  color: var(--tiff); font-size: 12px;
  letter-spacing: 0.25em; margin-bottom: 24px;
}
.store-row {
  display: grid; grid-template-columns: 100px 1fr;
  padding: 14px 0; border-top: 1px solid var(--line);
  gap: 12px; font-size: 14px;
}
.store-row:last-of-type { border-bottom: 1px solid var(--line); }
.store-row dt { color: var(--tiff); font-size: 11px; letter-spacing: 0.15em; padding-top: 2px; }
.store-row dd { color: var(--text-dim); }
.map-frame {
  background:
    radial-gradient(circle at 60% 40%, rgba(10,186,181,0.10), transparent 60%),
    repeating-linear-gradient(45deg, var(--bg-2) 0 12px, var(--bg-3) 12px 24px);
  border: 1px solid var(--line);
  min-height: 380px;
  position: relative;
  display: grid; place-items: center;
  overflow: hidden;
}
.pin {
  width: 56px; height: 56px;
  border-radius: 50% 50% 50% 0;
  background: linear-gradient(135deg, var(--tiff), var(--tiff-3));
  transform: rotate(-45deg);
  position: relative;
  box-shadow: 0 14px 30px rgba(12,58,55,.20);
}
.pin::after { content: ""; position: absolute; inset: 12px; border-radius: 50%; background: #fff; }
.pin-label {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  background: #fff; border: 1px solid var(--tiff);
  padding: 6px 12px; font-size: 11px;
  letter-spacing: 0.1em; color: var(--tiff);
  white-space: nowrap;
}
@media (max-width: 900px) { .store-wrap { grid-template-columns: 1fr; } }

/* ============= PROMISE / WHY US ============= */
.promise-list {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px;
  counter-reset: promise;
}
.promise {
  background: #fff;
  border: 1px solid var(--line);
  padding: 28px 18px 22px;
  text-align: center;
  position: relative;
}
.promise::before {
  counter-increment: promise;
  content: counter(promise, decimal-leading-zero);
  font-family: "Cormorant Garamond", serif;
  font-size: 28px; color: var(--tiff);
  font-weight: 600;
  letter-spacing: 0.05em;
}
.promise h4 {
  font-family: "Noto Serif JP", serif;
  font-size: 15px; color: var(--ink);
  margin: 6px 0 10px;
}
.promise p { font-size: 12px; color: var(--text-dim); line-height: 1.8; }
@media (max-width: 900px) { .promise-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .promise-list { grid-template-columns: 1fr; } }

/* ============= CAMPAIGN BAR ============= */
.campaign-bar {
  background: linear-gradient(135deg, var(--tiff), var(--tiff-3));
  color: #fff;
  padding: 18px 0;
  text-align: center;
  font-size: 14px; letter-spacing: 0.1em;
}
.campaign-bar strong {
  background: #fff; color: var(--tiff-3);
  padding: 3px 10px; margin: 0 6px;
  font-family: "Cormorant Garamond", serif; font-weight: 700;
}

/* ============= SOCIAL ============= */
.social-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.social-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 36px 32px;
  display: flex; align-items: center; gap: 24px;
  transition: all .3s;
}
.social-card:hover { border-color: var(--tiff); transform: translateY(-3px); }
.social-card .ico {
  width: 60px; height: 60px;
  display: grid; place-items: center;
  flex-shrink: 0;
  border-radius: 14px;
  color: #fff; font-size: 24px; font-weight: 700;
}
.social-card.line .ico { background: #06c755; }
.social-card.ig .ico { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-card h4 { font-family: "Noto Serif JP", serif; font-size: 17px; color: var(--ink); margin-bottom: 4px; }
.social-card p { font-size: 12px; color: var(--text-dim); }
@media (max-width: 720px) { .social-block { grid-template-columns: 1fr; } }


/* ============== CONCEPT BAND : 業界初 ============== */
.concept-band {
  position: relative;
  background:
    radial-gradient(circle at 20% 0%, rgba(10,186,181,0.10), transparent 55%),
    radial-gradient(circle at 85% 100%, rgba(10,186,181,0.07), transparent 50%),
    linear-gradient(180deg, #0c3a37 0%, #082b29 100%);
  color: #e6f5f3;
  padding: 110px 0 120px;
  overflow: hidden;
}
.concept-band .container { position: relative; z-index: 2; }
.concept-bg-veil {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.012) 0 2px, transparent 2px 7px);
  pointer-events: none;
  z-index: 1;
}

.concept-eyebrow {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.34em;
  color: var(--tiff);
  margin: 0 0 36px;
  font-weight: 600;
}
.concept-eyebrow .dot { margin: 0 10px; opacity: 0.55; }

.concept-head { text-align: center; margin: 0 auto 50px; }

.concept-title {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "游明朝", "Yu Mincho", serif;
  font-weight: 900;
  font-size: clamp(72px, 13.5vw, 196px);
  line-height: 0.95;
  letter-spacing: 0.06em;
  margin: 0 0 30px;
  color: #ffffff;
  display: inline-block;
  position: relative;
  text-shadow: 0 2px 60px rgba(10,186,181,0.18);
}
.concept-title::before {
  content: "";
  position: absolute;
  top: 50%; left: -56px;
  width: 38px; height: 1px;
  background: var(--tiff);
  opacity: 0.55;
}
.concept-title::after {
  content: "";
  position: absolute;
  top: 50%; right: -56px;
  width: 38px; height: 1px;
  background: var(--tiff);
  opacity: 0.55;
}
.concept-period {
  color: var(--tiff);
  font-weight: 900;
  margin-left: -0.04em;
}

.concept-sub {
  max-width: 640px;
  margin: 0 auto;
  font-size: clamp(14.5px, 1.7vw, 18px);
  line-height: 1.95;
  letter-spacing: 0.05em;
  color: #c4ddd9;
  font-weight: 400;
}

.concept-divider {
  width: 88px; height: 1px;
  background: var(--tiff);
  margin: 0 auto 50px;
  position: relative;
  opacity: 0.7;
}
.concept-divider::before {
  content: "◆";
  position: absolute;
  top: -8px; left: 50%;
  transform: translateX(-50%);
  background: #0a3331;
  padding: 0 14px;
  color: var(--tiff);
  font-size: 9px;
  letter-spacing: 0;
}

.concept-body {
  max-width: 720px;
  margin: 0 auto;
  font-size: 15.5px;
  line-height: 2.05;
  color: #d7eeec;
  letter-spacing: 0.04em;
}
.concept-body p { margin: 0 0 22px; }
.concept-body p:last-child { margin-bottom: 0; }
.concept-body em {
  color: var(--tiff);
  font-style: normal;
  font-weight: 600;
  padding: 0 0.12em;
  border-bottom: 1px dotted rgba(10,186,181,0.5);
}

.concept-quote {
  max-width: 720px;
  margin: 44px auto 0;
  padding: 36px 40px 32px;
  background: rgba(255,255,255,0.035);
  border-left: 2px solid var(--tiff);
  border-radius: 2px;
  position: relative;
}
.concept-quote::before {
  content: "“";
  position: absolute;
  top: -12px; left: 24px;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", serif;
  font-size: 64px;
  color: var(--tiff);
  line-height: 1;
  opacity: 0.85;
}
.concept-quote-headline {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "游明朝", "Yu Mincho", serif;
  font-size: clamp(20px, 2.7vw, 28px);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 16px;
  line-height: 1.55;
  letter-spacing: 0.04em;
}
.concept-quote-tail {
  font-size: 13.5px;
  line-height: 1.95;
  color: #b6d3cf;
  margin: 0;
  letter-spacing: 0.03em;
}

.concept-ctas {
  margin: 48px auto 0;
  max-width: 720px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
}
.concept-ctas .concept-cta {
  min-width: 220px;
  padding: 16px 32px;
  font-size: 14.5px;
  letter-spacing: 0.08em;
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
  transition: transform .25s ease, box-shadow .25s ease;
}
.concept-ctas .btn-primary.concept-cta {
  background: var(--tiff);
  color: #ffffff;
  border: 1px solid var(--tiff);
}
.concept-ctas .btn-primary.concept-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(10,186,181,0.35);
  background: #08a39e;
  border-color: #08a39e;
  color: #fff;
}
.concept-ctas .btn-line.concept-cta {
  background: #06C755;
  color: #ffffff;
  border: 1px solid #06C755;
}
.concept-ctas .btn-line.concept-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(6,199,85,0.30);
  background: #05b34c;
  border-color: #05b34c;
  color: #fff;
}
.concept-cta-note {
  flex-basis: 100%;
  margin: 14px 0 0;
  font-size: 12px;
  color: #8fb6b1;
  letter-spacing: 0.06em;
  font-weight: 400;
}
@media (max-width: 600px) {
  .concept-ctas { gap: 10px; margin-top: 36px; }
  .concept-ctas .concept-cta { min-width: 0; width: 100%; padding: 14px 24px; }
}

@media (max-width: 720px) {
  .concept-band { padding: 80px 0 88px; }
  .concept-title { font-size: clamp(60px, 16vw, 96px); }
  .concept-title::before, .concept-title::after { display: none; }
  .concept-quote { padding: 28px 24px 24px; }
  .concept-quote::before { font-size: 48px; top: -8px; left: 14px; }
  .concept-body { font-size: 14.5px; line-height: 1.95; }
}


/* ============== HERO CURRENCY VISUAL ============== */
.hero-currency-frame {
  position: relative;
  margin: 0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(12,58,55,0.18), 0 12px 32px rgba(12,58,55,0.10);
  aspect-ratio: 4 / 3;
  background: #1a1a1a;
}
.hero-currency-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.05) brightness(0.96);
  transition: transform 1.2s ease;
}
.hero-currency-frame:hover img { transform: scale(1.025); }
.hero-currency-frame::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0) 35%, rgba(12,58,55,0.55) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero-currency-frame::after {
  content: "";
  position: absolute;
  top: 14px; left: 14px;
  width: 38px; height: 1px;
  background: var(--tiff);
  box-shadow: 0 36px 0 var(--tiff);
  pointer-events: none;
  z-index: 2;
}
.hero-currency-cap {
  position: absolute;
  left: 22px; right: 22px; bottom: 18px;
  display: flex; flex-direction: column; gap: 4px;
  z-index: 2;
  color: #f6fbfa;
  letter-spacing: 0.06em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.45);
}
.hero-currency-eyebrow {
  font-size: 10.5px;
  letter-spacing: 0.32em;
  color: var(--tiff);
  font-weight: 600;
}
.hero-currency-line {
  font-size: 12.5px;
  letter-spacing: 0.18em;
  font-weight: 500;
  opacity: 0.92;
}
@media (max-width: 720px) {
  .hero-currency-frame { aspect-ratio: 16 / 11; }
  .hero-currency-cap { left: 16px; right: 16px; bottom: 14px; }
  .hero-currency-eyebrow { font-size: 9.5px; letter-spacing: 0.26em; }
  .hero-currency-line { font-size: 11px; letter-spacing: 0.14em; }
}