/* ============================================
   H3 VINTAGE — Sourcing LP (Ad Landing Page)
   Redesigned: Warmer, image-centric, premium feel
   ============================================ */

/* --- Custom Properties --- */
:root {
  --ivory: #faf7f2;
  --taupe: #f0ebe4;
  --brown: #2c2420;
  --brown-light: #5a4a3e;
  --gold: #b8963e;
  --gold-light: #d4b96a;
  --white: #fff;
  --line-green: #06C755;
  --warm-bg: #fdf9f4;
  --card-shadow: 0 4px 20px rgba(44, 36, 32, .06);
  --card-shadow-hover: 0 6px 28px rgba(44, 36, 32, .1);
  --radius: 14px;
  --radius-sm: 10px;
  --font-sans: 'Noto Sans JP', sans-serif;
  --font-serif: 'Noto Serif JP', serif;
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  overflow-x: hidden;
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--brown);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font: inherit; color: inherit; }

/* --- Utility --- */
.sp-only { display: inline; }

/* --- Section Common --- */
.sec-inner {
  max-width: 480px;
  margin: 0 auto;
  padding: 0 20px;
}
.sec-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: .24em;
  color: rgba(184, 150, 62, .35);
  text-align: center;
  margin-bottom: 10px;
}
.sec-label::before,
.sec-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(184, 150, 62, .25);
}
.sec-h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 5vw, 1.9rem);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 28px;
}

/* --- Reveal Animation --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.22, 1, .36, 1), transform .8s cubic-bezier(.22, 1, .36, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   CTA BANNER BUTTON (shared)
   =========================== */
.cta-banner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 360px;
  padding: 18px 28px;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--white);
  background: linear-gradient(180deg, #0ad162 0%, #05a347 50%, #048a3b 100%);
  border-radius: 60px;
  box-shadow: 0 4px 16px rgba(6, 199, 85, .25), inset 0 1px 1px rgba(255,255,255,.25);
  transition: opacity .3s, box-shadow .3s, transform .3s;
}
.cta-banner:hover {
  opacity: .92;
  box-shadow: 0 6px 24px rgba(6, 199, 85, .35);
}
.cta-banner-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.cta-banner-text {
  white-space: nowrap;
}

/* Gold variant */
.cta-banner--gold {
  background: var(--gold);
  box-shadow: 0 4px 16px rgba(184, 150, 62, .2);
}
.cta-banner--gold:hover {
  box-shadow: 0 6px 24px rgba(184, 150, 62, .3);
}

/* Outline variant */
.cta-banner--outline {
  background: var(--white);
  color: var(--brown);
  border: 2px solid var(--gold);
  box-shadow: var(--card-shadow);
}
.cta-banner--outline:hover {
  box-shadow: var(--card-shadow-hover);
}

/* Large variant (final CTA) */
.cta-banner--large {
  max-width: 380px;
  padding: 20px 32px;
  font-size: 1.08rem;
}
.cta-banner-icon--lg {
  width: 32px;
  height: 32px;
}

.cta-note {
  font-size: 1rem;
  font-weight: 300;
  margin-top: 14px;
  line-height: 1.7;
  opacity: .75;
}
.cta-note-sm {
  font-size: 1rem;
  font-weight: 400;
  color: var(--brown-light);
  margin-top: 12px;
  text-align: center;
  letter-spacing: .04em;
}

/* ===========================
   FIRST VIEW
   =========================== */
.fv {
  position: relative;
}
.fv-img {
  width: 100%;
  height: auto;
  display: block;
}
.fv-cta {
  position: relative;
  z-index: 1;
  border: none;
  width: 100%;
}
/* Glow wrap (shared) */
.cta-glow-wrap {
  display: block;
  position: relative;
  padding: 3px;
  border-radius: 62px;
  background: var(--gold);
  overflow: hidden;
  max-width: 380px;
  margin: 0 auto;
}
.cta-glow-border {
  position: absolute;
  inset: -50%;
  background: conic-gradient(
    transparent 0%,
    #fff 8%,
    var(--gold-light) 16%,
    transparent 30%,
    transparent 100%
  );
  animation: ctaSpin 2.5s linear infinite;
}
.cta-glow-wrap .cta-banner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  border-radius: 60px;
}

.fv-cta-wrap {
  position: absolute;
  bottom: 48px;
  left: 20px;
  right: 20px;
  max-width: 360px;
  margin: 0 auto;
  z-index: 2;
  padding: 3px;
  border-radius: 62px;
  background: var(--gold);
  overflow: hidden;
}
.fv-cta-border {
  position: absolute;
  inset: -50%;
  background: conic-gradient(
    transparent 0%,
    #fff 8%,
    var(--gold-light) 16%,
    transparent 30%,
    transparent 100%
  );
  animation: ctaSpin 2.5s linear infinite;
}
@keyframes ctaSpin {
  to { transform: rotate(360deg); }
}
.fv-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 36px;
}
.fv-badge {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .06em;
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 100px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(6px);
}

/* ===========================
   TRUST
   =========================== */
.trust {
  padding: 72px 0;
  background: var(--white);
}
.trust-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.trust-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px 14px 20px;
  background: var(--warm-bg);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  transition: box-shadow .3s;
}
.trust-icon {
  width: 36px;
  height: 36px;
  color: var(--gold);
}
.trust-card-title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .04em;
}
.trust-card-desc {
  font-size: 1rem;
  font-weight: 300;
  color: var(--brown-light);
  text-align: center;
  line-height: 1.5;
}


/* ===========================
   TRUST BADGES
   =========================== */
.trust-badges {
  text-align: center;
}
.trust-badges img {
  width: 100%;
  display: block;
}

/* ===========================
   WORRY (speech bubbles)
   =========================== */
.worry {
  padding: 72px 0;
  background: var(--taupe);
  text-align: center;
}
.worry-bubbles {
  margin: 0 auto 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.bubble-card {
  position: relative;
  background: var(--white);
  border-radius: 40px;
  padding: 16px 28px;
  display: inline-block;
  box-shadow: var(--card-shadow);
  text-align: left;
  width: fit-content;
}
.bubble-card:nth-child(1) {
  margin-left: 0;
}
.bubble-card:nth-child(2) {
  margin-left: auto;
}
.bubble-card:nth-child(3) {
  margin-left: 5%;
}
.bubble-card:nth-child(4) {
  margin-left: auto;
  margin-right: 15%;
}
.bubble-card p {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--brown);
}
.bubble-tail {
  position: absolute;
  bottom: -8px;
  left: 20px;
  width: 16px;
  height: 16px;
  background: var(--white);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
.bubble-card:nth-child(2) .bubble-tail,
.bubble-card:nth-child(4) .bubble-tail {
  left: auto;
  right: 20px;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}
.worry-cta-wrap {
  text-align: center;
}

/* ===========================
   SERVICE
   =========================== */
.service {
  padding: 72px 0;
  background: var(--white);
  text-align: center;
}
.service-img {
  margin-bottom: 24px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
}
.service-img img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.service-text {
  font-size: 1rem;
  line-height: 2;
  color: var(--brown-light);
  margin-bottom: 16px;
  text-align: center;
}
.service-text:last-of-type {
  margin-bottom: 32px;
}

/* ===========================
   CONCIERGE
   =========================== */
.sec-h2-lg {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 10vw, 3.6rem);
  font-weight: 700;
  letter-spacing: .12em;
  color: rgba(184, 150, 62, .25);
  text-align: center;
  margin-bottom: 8px;
  line-height: 1.2;
}
.sec-sub {
  font-size: .88rem;
  font-weight: 500;
  color: var(--brown-light);
  text-align: center;
  margin-bottom: 28px;
  letter-spacing: .06em;
}
.concierge {
  padding: 72px 0;
  background: var(--warm-bg);
  text-align: center;
}
.concierge-card {
  position: relative;
  margin-bottom: 32px;
}
.concierge-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
}
.concierge-photo img {
  width: 75%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  margin: 0 auto;
}
.concierge-overlay {
  position: relative;
  margin-top: -60px;
  margin-left: auto;
  width: 85%;
  background: var(--white);
  border-radius: 0;
  padding: 28px 24px 28px;
  box-shadow: var(--card-shadow);
  text-align: left;
  z-index: 2;
}
.concierge-msg {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--brown-light);
  margin-bottom: 16px;
}
.concierge-msg:last-of-type {
  margin-bottom: 20px;
}
.concierge-name {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--brown);
  text-align: right;
}

/* ===========================
   ITEMS
   =========================== */
.items {
  padding: 72px 0;
  background: var(--ivory);
  text-align: center;
}
.items-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}
.item-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: box-shadow .3s, transform .3s;
}
.item-img img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.item-name {
  font-size: 1rem;
  font-weight: 500;
  padding: 12px 10px;
  letter-spacing: .04em;
}
.items-note {
  margin-bottom: 28px;
  padding: 28px 24px;
  background: var(--white);
  border-radius: var(--radius);
  text-align: center;
  border: 2px solid var(--gold);
  position: relative;
  box-shadow: var(--card-shadow);
}
.items-note-text {
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.9;
  color: var(--brown);
  font-family: var(--font-serif);
}
.items-note-em {
  background: linear-gradient(transparent 60%, rgba(212, 185, 106, .35) 60%);
  font-weight: 600;
}


/* ===========================
   REASONS
   =========================== */
.reasons {
  padding: 72px 0;
  background: var(--taupe);
  text-align: center;
}
.reasons .sec-h2 sup {
  font-size: .55em;
  vertical-align: super;
}
.reason-list {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.reason-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  overflow: visible;
  box-shadow: var(--card-shadow);
  width: 85%;
  z-index: 1;
}
.reason-card:nth-child(odd) {
  margin-left: auto;
}
.reason-card:nth-child(even) {
  margin-right: auto;
}
.reason-card:nth-child(even) .reason-num {
  left: auto;
  right: -8px;
}
.reason-img {
  overflow: visible;
  position: relative;
  border-radius: var(--radius) var(--radius) 0 0;
}
.reason-img img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
}
.reason-body {
  padding: 22px 22px 26px;
  text-align: left;
}
.reason-num {
  position: absolute;
  top: -28px;
  left: -8px;
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 900;
  color: #e5b06a;
  line-height: 1;
  z-index: 2;
  text-shadow: 0 2px 6px rgba(255, 255, 255, .6);
}
.reason-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.4;
}
.reason-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--brown-light);
}

/* ===========================
   VOICE
   =========================== */
.voice {
  padding: 72px 0;
  background: var(--ivory);
  text-align: center;
}

/* --- Slider --- */
.voice-slider {
  margin-bottom: 36px;
  position: relative;
  padding: 0;
}
.voice-track-wrap {
  overflow: hidden;
  border-radius: var(--radius);
}
.voice-track {
  display: flex;
  transition: transform .4s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}
.voice-card {
  flex: 0 0 100%;
  min-width: 0;
  padding: 0 8px;
  box-sizing: border-box;
}
.voice-card-inner {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  text-align: left;
  border: 1px solid rgba(44, 36, 32, .05);
  position: relative;
  border-top: 3px solid var(--gold);
}
.voice-card::before {
  content: "\201C";
  position: absolute;
  top: 40px;
  right: 28px;
  font-size: 4.5rem;
  line-height: 1;
  color: var(--gold);
  opacity: .12;
  font-family: Georgia, serif;
  pointer-events: none;
  z-index: 1;
}
.voice-img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(44, 36, 32, .08);
  border: 2px solid var(--gold-light);
}
.voice-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.voice-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  text-align: left;
}
.voice-body {
  padding: 28px 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(44, 36, 32, .05);
  border-top: 3px solid var(--gold);
  position: relative;
  text-align: left;
}
.voice-header {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.voice-stars {
  font-size: .85rem;
  color: var(--gold);
  letter-spacing: .12em;
}
.voice-item {
  font-size: .95rem;
  font-weight: 600;
  color: var(--brown);
  font-family: var(--font-serif);
}
.voice-text {
  font-size: .95rem;
  line-height: 1.9;
  color: var(--brown);
  margin-bottom: 12px;
}
.voice-author {
  font-size: .85rem;
  font-weight: 400;
  color: var(--brown-light);
  text-align: left;
}

/* --- Dots --- */
.voice-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.voice-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--taupe);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background .3s, transform .3s;
}
.voice-dot.is-active {
  background: var(--gold);
  transform: scale(1.2);
}

/* --- Arrows --- */
.voice-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}
.voice-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(44, 36, 32, .12);
  border: 1px solid rgba(44, 36, 32, .1);
  font-size: 1.3rem;
  color: var(--brown);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, box-shadow .2s;
  line-height: 1;
  padding: 0 0 2px 0;
}
.voice-arrow:active {
  background: var(--taupe);
}

/* ===========================
   FLOW
   =========================== */
.flow {
  padding: 72px 0;
  background: var(--white);
  text-align: center;
}
.flow-steps {
  max-width: 480px;
  margin: 0 auto 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.flow-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 0;
  position: relative;
}
.flow-step::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 80px solid transparent;
  border-right: 80px solid transparent;
  border-top: 20px solid rgba(212, 185, 106, .3);
}
.flow-step:last-child::after {
  display: none;
}
.flow-circle {
  width: clamp(100px, 28vw, 140px);
  height: clamp(100px, 28vw, 140px);
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(44, 36, 32, .1);
}
.flow-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.flow-info {
  text-align: left;
  padding-top: 4px;
}
.flow-label {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .12em;
  margin-bottom: 6px;
}
.flow-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.flow-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--brown-light);
}

/* ===========================
   FAQ
   =========================== */
.faq {
  padding: 72px 0;
  background: var(--taupe);
}
.faq-list {
  max-width: 560px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 20px;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  line-height: 1.5;
}
.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
  margin-left: 14px;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--gold);
  transition: transform .3s;
}
.faq-icon::before {
  width: 14px;
  height: 2px;
  transform: translate(-50%, -50%);
}
.faq-icon::after {
  width: 2px;
  height: 14px;
  transform: translate(-50%, -50%);
}
.faq-item.is-open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-item.is-open .faq-a {
  max-height: 300px;
}
.faq-a p {
  padding: 0 20px 20px;
  font-size: 1rem;
  line-height: 1.9;
  color: var(--brown-light);
}

/* ===========================
   SHOP INFO
   =========================== */
.shop-info {
  padding: 72px 0;
  background: var(--white);
  text-align: center;
}
.shop-card {
  background: var(--warm-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
}
.shop-map {
  width: 100%;
  line-height: 0;
}
.shop-map iframe {
  width: 100%;
  height: 240px;
}
.shop-detail {
  padding: 28px 24px 32px;
  text-align: left;
}
.shop-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: .06em;
  margin-bottom: 20px;
  text-align: center;
}
.shop-name sup {
  font-size: .55em;
  vertical-align: super;
}
.shop-dl {
  display: grid;
  grid-template-columns: 5em 1fr;
  gap: 14px 16px;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 24px;
}
.shop-dl dt {
  font-weight: 700;
  color: var(--brown);
  white-space: nowrap;
}
.shop-dl dd {
  color: var(--brown-light);
}
.shop-dl dd a {
  color: var(--brown-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.shop-map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: .04em;
  transition: opacity .3s;
}
.shop-map-link:hover {
  opacity: .7;
}
.shop-map-link svg {
  flex-shrink: 0;
}

/* ===========================
   FINAL CTA
   =========================== */
.final-cta {
  position: relative;
  padding: 80px 0 80px;
  text-align: center;
  overflow: hidden;
}
.final-cta-bg {
  position: absolute;
  inset: 0;
}
.final-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.final-cta-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(44, 36, 32, .85) 0%,
    rgba(44, 36, 32, .75) 60%,
    rgba(44, 36, 32, .35) 100%
  );
}
.final-cta-inner {
  position: relative;
  z-index: 2;
}
.final-cta-brand {
  margin-bottom: 24px;
}
.final-cta-brand img {
  width: 90px;
  height: auto;
  margin: 0 auto;
}
.fv-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 0 auto 24px;
  width: 100px;
}
.fv-line::before,
.fv-line::after {
  content: '';
  flex: 1;
  height: 1px;
}
.fv-line::before {
  background: linear-gradient(to right, transparent, var(--gold-light));
}
.fv-line::after {
  background: linear-gradient(to left, transparent, var(--gold-light));
}
.fv-line i {
  width: 7px;
  height: 7px;
  background: var(--gold-light);
  transform: rotate(45deg);
  flex-shrink: 0;
  margin: 0 8px;
  font-style: normal;
}
.final-cta-h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 6vw, 2.4rem);
  font-weight: 900;
  line-height: 1.45;
  margin-bottom: 24px;
  color: var(--white);
  letter-spacing: .02em;
}
.final-cta-text {
  font-size: 1.08rem;
  line-height: 2;
  color: rgba(255, 255, 255, .85);
  margin-bottom: 16px;
}
.final-cta-text:last-of-type {
  margin-bottom: 36px;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  padding: 36px 20px 100px;
  text-align: center;
  background: var(--taupe);
}
.footer-brand {
  margin-bottom: 6px;
}
.footer-brand img {
  width: 60px;
  height: auto;
  margin: 0 auto;
}
.footer-copy {
  font-size: 1rem;
  color: var(--brown-light);
}

/* ===========================
   FIXED CTA (Mobile)
   =========================== */
.fixed-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 10px 16px;
  padding-bottom: max(10px, env(safe-area-inset-bottom));
  background: rgba(44, 36, 32, .85);
  backdrop-filter: blur(10px);
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.22, 1, .36, 1);
}
.fixed-cta.is-visible {
  transform: translateY(0);
}
.fixed-cta .cta-glow-wrap {
  max-width: 360px;
  margin: 0 auto;
}
.fixed-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 20px;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--white);
  background: linear-gradient(180deg, #0ad162 0%, #05a347 50%, #048a3b 100%);
  border-radius: 60px;
  text-align: center;
  box-shadow: inset 0 1px 1px rgba(255,255,255,.25);
  transition: opacity .3s;
  position: relative;
  z-index: 1;
}
.fixed-cta-btn:hover { opacity: .88; }
.fixed-cta-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* ===========================
   PC BACKGROUND & SIDEBARS
   SP では非表示
   =========================== */
.pc-bg { display: none; }
.sidebar-l, .sidebar-r { display: none; }

/* ===========================
   PC 3-COLUMN LAYOUT (>=1100px)
   左右 fixed / 中央のみスクロール
   =========================== */
@media (min-width: 1100px) {

  /* PC背景（ぼかし画像） */
  .pc-bg {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 0;
  }
  .pc-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(24px) brightness(.7);
    transform: scale(1.1);
  }

  /* SP専用UIを非表示 */
  .fixed-cta { display: none !important; }

  /* body */
  body {
    padding-left: 380px;
    padding-right: 380px;
    max-width: 1400px;
    margin: 0 auto;
  }

  /* フレーム */
  .lp-frame {
    position: relative;
    z-index: 1;
  }

  /* 中央コンテンツ */
  .lp-main {
    position: relative;
    z-index: 1;
  }

  /* 共通サイドバー */
  .sidebar-l,
  .sidebar-r {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    height: 100vh;
    width: 380px;
    z-index: 10;
    gap: 24px;
  }

  /* 左サイドバー */
  .sidebar-l {
    left: max(0px, calc((100vw - 1400px) / 2));
  }
  .sb-logo {
    text-align: center;
  }
  .sb-logo img {
    width: 70px;
    height: auto;
  }
  .sb-nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .sb-nav-link {
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: .08em;
    color: rgba(255,255,255,.8);
    padding: 10px 24px;
    border-radius: 8px;
    transition: background .25s, color .25s;
    text-align: center;
  }
  .sb-nav-link:hover {
    background: rgba(255,255,255,.12);
    color: var(--white);
  }

  /* 右サイドバー */
  .sidebar-r {
    right: max(0px, calc((100vw - 1400px) / 2));
  }
  .sb-r-label {
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: .1em;
    color: var(--white);
  }
  .sb-r-qr {
    width: 200px;
    height: 200px;
    background: var(--white);
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,.15);
  }
  .sb-r-qr img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .sb-r-note {
    font-size: 1rem;
    color: rgba(255,255,255,.7);
    text-align: center;
    line-height: 1.6;
  }
  .sb-r-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: .06em;
    color: var(--white);
    background: var(--line-green);
    border-radius: 60px;
    box-shadow: 0 3px 12px rgba(6, 199, 85, .3);
    transition: opacity .3s, transform .3s;
  }
  .sb-r-btn:hover {
    opacity: .9;
    transform: translateY(-1px);
  }
  .sb-r-btn-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
  }
}

