@charset "UTF-8";
/* /scss/style.scss */
/* /scss/base/_reset.scss */
/* =========================
   RESET
========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
dl,
dd,
figure,
blockquote {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

iframe {
  display: block;
  width: 100%;
  border: 0;
}

body {
  min-width: 320px;
  background: #0a090d;
  color: #f7f3ef;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: "Inter", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

:root {
  --bg: #0a090d;
  --bg-soft: #15111a;
  --bg-card: rgba(255, 255, 255, 0.05);
  --bg-card-strong: rgba(255, 255, 255, 0.08);
  --text: #f7f3ef;
  --text-soft: rgba(247, 243, 239, 0.78);
  --line: rgba(255, 255, 255, 0.12);
  --gold: #caa66a;
  --gold-strong: #f0cf93;
  --wine: #4b1121;
  --wine-strong: #7b1734;
  --pink: #ff4dc4;
  --pink-soft: rgba(255, 77, 196, 0.18);
  --line-brand: #06c755;
  --instagram-a: #833ab4;
  --instagram-b: #fd1d1d;
  --instagram-c: #fcb045;
  --shadow-lg: 0 18px 50px rgba(0, 0, 0, 0.38);
  --shadow-md: 0 10px 24px rgba(0, 0, 0, 0.28);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: min(100% - 32px, 1120px);
}

/* /scss/components/_content.scss */
/* =========================
   BASE LAYOUT
========================= */
.siteHeader {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(10, 9, 13, 0.78);
  border-bottom: 1px solid var(--line);
}

.siteHeader__inner {
  width: var(--container);
  margin: 0 auto;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.siteHeader__logo {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.siteHeader__logo span {
  display: inline-block;
  margin-left: 6px;
  font-size: 20px;
  letter-spacing: 0.08em;
  color: var(--gold-strong);
}

.siteHeader__nav {
  display: none;
}

.siteFooter {
  padding: 28px 16px calc(100px + env(safe-area-inset-bottom));
  text-align: center;
  font-size: 12px;
  color: var(--text-soft);
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent), #0a090d;
}

.content,
.closing {
  position: relative;
  padding: 72px 0;
}

.content > *,
.closing > * {
  position: relative;
  z-index: 1;
}

.content--dark {
  background: linear-gradient(180deg, rgba(123, 23, 52, 0.1), rgba(10, 9, 13, 0.1)), #0d0b11;
}

.content--accent {
  background: radial-gradient(circle at center, rgba(255, 77, 196, 0.12), transparent 45%), linear-gradient(180deg, rgba(75, 17, 33, 0.55), rgba(10, 9, 13, 0.96));
}

.sectionHeading {
  width: var(--container);
  margin: 0 auto 32px;
  text-align: center;
}

.sectionHeading__sub {
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--gold);
}

.sectionHeading__title {
  font-size: clamp(26px, 4.5vw, 34px);
  line-height: 1.35;
  letter-spacing: 0.02em;
  font-weight: 600;
}

.btn {
  min-height: 56px;
  padding: 0 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--line {
  color: #fff;
  background-color: #0cc755;
}

.btn--instagram {
  color: #fff;
  background: linear-gradient(135deg, var(--instagram-a), var(--instagram-b), var(--instagram-c));
}

.sectionHead {
  margin-bottom: 28px;
}

.sectionHead__sub {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  border: 1px solid rgba(255, 214, 140, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #d7a85e;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
}

.sectionHead__title {
  margin-top: 14px;
  font-size: clamp(28px, 7.2vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.06em;
  color: #fff8fb;
}

/* =========================
   feature
========================= */
.features {
  position: relative;
  overflow: hidden;
  background: #09060d;
}

.features__bgWrap {
  position: absolute;
  inset: 0;
  clip: rect(0, auto, auto, 0);
  pointer-events: none;
}

.features__bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(180deg, rgba(8, 5, 12, 0.58) 0%, rgba(8, 5, 12, 0.78) 100%), url("../img/shop-bg.webp") center center/cover no-repeat;
  transform: translateZ(0);
}

.features .sectionHeading,
.features .featureGrid {
  position: relative;
  z-index: 1;
}

.featureGrid {
  max-width: 1100px;
  margin: 0 auto;
  width: var(--container);
}

.featureList {
  display: grid;
  gap: 36px;
}

.featureCard {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%), rgba(18, 10, 22, 0.78);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.featureCard__media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.featureCard__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 5, 12, 0.04) 0%, rgba(8, 5, 12, 0.14) 55%, rgba(8, 5, 12, 0.34) 100%);
  pointer-events: none;
}

.featureCard__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.featureCard__body {
  padding: 22px 18px 20px;
}

.featureCard__title {
  color: #fff7fb;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.04em;
}

.featureCard__text {
  margin-top: 10px;
  color: rgba(255, 244, 248, 0.84);
  font-size: 14px;
  line-height: 1.95;
  letter-spacing: 0.03em;
}

@media (min-width: 768px) {
  .featureList {
    gap: 24px;
  }
  .featureCard {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    align-items: stretch;
  }
  .featureCard:nth-child(even) .featureCard__media {
    order: 2;
  }
  .featureCard:nth-child(even) .featureCard__body {
    order: 1;
  }
  .featureCard__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 28px 24px;
  }
  .featureCard__title {
    font-size: 24px;
  }
  .featureCard__text {
    font-size: 15px;
  }
}
/* =========================
   PRICE
========================= */
.pricing {
  position: relative;
  padding: 72px 20px;
}

.priceGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 28px 20px 28px;
}

.priceCard {
  position: relative;
  min-width: 0;
  padding: 20px 16px 18px;
  border: 1px solid rgba(202, 162, 91, 0.22);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%), linear-gradient(135deg, rgba(26, 18, 14, 0.94) 0%, rgba(14, 10, 10, 0.98) 100%);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.priceCard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 16px;
  right: 16px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(228, 193, 119, 0.72) 50%, transparent 100%);
}

.priceCard--primary {
  border-color: rgba(221, 177, 90, 0.34);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%), linear-gradient(135deg, rgba(42, 28, 16, 0.96) 0%, rgba(18, 12, 10, 0.98) 100%);
}

.priceCard__label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(212, 169, 94, 0.3);
  border-radius: 999px;
  background: rgba(212, 169, 94, 0.1);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.14em;
  color: #d8b16a;
}

.priceCard__title {
  margin-top: 14px;
  font-size: clamp(26px, 7vw, 32px);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff7eb;
}

.priceCard__title {
  font-size: clamp(26px, 6vw, 32px);
  line-height: 1.2;
  font-weight: 700;
}

.priceCard__type {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #caa25a;
  margin-bottom: 6px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(202, 162, 91, 0.35);
}

.priceCard__sub {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 245, 230, 0.74);
}

.priceCard__list {
  display: grid;
  gap: 9px;
  margin-top: 16px;
  padding: 0;
  list-style: none;
}

.priceCard__list li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 247, 236, 0.88);
}

.priceCard__list li::before {
  content: "";
  position: absolute;
  top: 0.9em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(180deg, #f0cf87 0%, #bb8935 100%);
  transform: translateY(-50%);
}

@media (min-width: 768px) {
  .pricing {
    padding: 88px 32px;
  }
  .priceGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 36px;
  }
  .priceCard {
    display: flex;
    flex-direction: column;
    padding: 24px 20px 22px;
  }
  .priceCard__title {
    font-size: 30px;
  }
  .priceCard__sub {
    font-size: 14px;
  }
  .priceCard__list li {
    font-size: 15px;
  }
}
@media (min-width: 1100px) {
  .pricing {
    padding: 96px 40px;
  }
  .priceGrid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
  }
  .priceCard {
    height: 100%;
  }
  .priceCard__title {
    font-size: 28px;
  }
  .priceCard__list {
    margin-top: 18px;
  }
}
/* =========================
   SCENE
========================= */
.scene {
  position: relative;
  padding: 72px 20px;
  overflow: hidden;
}

.scene .sectionHeading {
  position: relative;
  z-index: 1;
}

.sceneGrid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.sceneCard {
  position: relative;
  padding: 22px 18px 20px;
  border: 1px solid rgba(201, 160, 83, 0.22);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%), linear-gradient(135deg, rgba(32, 24, 16, 0.92) 0%, rgba(14, 11, 9, 0.96) 100%);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.sceneCard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(226, 191, 118, 0.7) 50%, transparent 100%);
}

.sceneCard__meta {
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #cda45a;
}

.sceneCard__title {
  margin-top: 12px;
  font-size: 22px;
  line-height: 1.4;
  font-weight: 700;
  color: #fffaf0;
  letter-spacing: 0.04em;
}

.sceneCard__text {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255, 248, 236, 0.82);
}

@media (min-width: 768px) {
  .scene {
    padding: 96px 32px;
  }
  .sceneGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 36px;
  }
  .sceneCard {
    min-height: 220px;
    padding: 26px 24px 24px;
  }
  .sceneCard__title {
    font-size: 24px;
  }
  .sceneCard__text {
    font-size: 15px;
  }
}
@media (min-width: 1100px) {
  .sceneGrid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
/* =========================
   SHOP
========================= */
.shopLayout {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.shopCard,
.mapCard {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)), var(--bg-card);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
}

.shopCard {
  padding: 22px 18px;
}

.shopInfoList {
  display: grid;
  gap: 18px;
}

.shopInfoList div {
  display: grid;
  gap: 4px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.shopInfoList div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.shopInfoList dt {
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--gold);
  font-weight: 700;
}

.shopInfoList dd {
  font-size: 15px;
  color: var(--text);
}

.shopInfoList a {
  color: var(--gold-strong);
  word-break: break-all;
}

.mapCard iframe {
  min-height: 320px;
  filter: grayscale(0.15) contrast(1.05);
}

/* =========================
   SNS
========================= */
.snsGrid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.snsCard {
  padding: 20px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)), var(--bg-card);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
}

.snsCard i {
  font-size: 28px;
  margin-top: 2px;
}

.snsCard img {
  width: 28px;
  margin-top: 2px;
}

.snsCard h3 {
  font-size: 18px;
  line-height: 1.4;
}

.snsCard p {
  margin-top: 6px;
  color: var(--text-soft);
  font-size: 14px;
}

.snsCard--line i {
  color: var(--line-brand);
}

.snsCard--instagram i {
  color: #ff8ac7;
}

.snsCard--x i {
  color: #f7f3ef;
}

/* =========================
   FAQ
========================= */
.faqList {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faqItem {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)), var(--bg-card);
  box-shadow: var(--shadow-md);
}

.faqItem__question {
  width: 100%;
  min-height: 68px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.faqItem__question i {
  flex-shrink: 0;
  font-size: 14px;
  color: var(--gold-strong);
  transition: transform 0.3s ease;
}

.faqItem__question[aria-expanded=true] i {
  transform: rotate(45deg);
}

.faqItem__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faqItem__answer p {
  padding: 0 18px 18px;
  color: var(--text-soft);
  font-size: 14px;
}

/* =========================
   CLOSING
========================= */
.closing__inner {
  width: var(--container);
  margin: 0 auto;
  padding: 32px 20px;
  border-radius: 28px;
  border: 1px solid rgba(202, 166, 106, 0.24);
  text-align: center;
  background: radial-gradient(circle at top, rgba(255, 77, 196, 0.12), transparent 32%), linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)), rgba(21, 17, 26, 0.98);
  box-shadow: var(--shadow-lg);
}

.closing__sub {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--gold);
}

.closing__title {
  margin-top: 12px;
  font-size: clamp(30px, 7vw, 48px);
  line-height: 1.2;
}

.closing__text {
  margin-top: 16px;
  color: var(--text-soft);
}

.closing__cta {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}

/* =========================
   RESPONSIVE
========================= */
@media (min-width: 768px) {
  .siteHeader__inner {
    min-height: 72px;
  }
  .siteHeader__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
    color: var(--text-soft);
  }
  .siteHeader__nav a {
    transition: color 0.3s ease;
  }
  .siteHeader__nav a:hover {
    color: var(--gold-strong);
  }
  .featureGrid {
    grid-template-columns: repeat(3, 1fr);
  }
  .galleryGrid {
    grid-template-columns: repeat(4, 1fr);
  }
  .galleryCard--large {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 100%;
  }
  .priceGrid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
  .shopLayout {
    grid-template-columns: 1.05fr 1fr;
  }
  .snsGrid {
    grid-template-columns: repeat(3, 1fr);
  }
  .closing__cta {
    grid-template-columns: repeat(2, minmax(0, 280px));
    justify-content: center;
  }
}
/* =========================
   FIRST VIEW
========================= */
.fv {
  position: relative;
  min-height: min(100svh, 900px);
  display: flex;
  align-items: flex-end;
  background: #040405;
  overflow: hidden;
  isolation: isolate;
}

/* 背景 */
.fv__bgWrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.fv__bgFixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100svh;
  background: url("../img/fv.webp") center/cover no-repeat;
  filter: brightness(0.9) contrast(1.08) saturate(0.96);
}

.fv__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.56) 55%, rgba(0, 0, 0, 0.9) 100%);
}

/* INNER */
.fv__inner {
  position: relative;
  z-index: 3;
  width: var(--container);
  margin: 0 auto;
  padding: 92px 0 136px;
  display: flex;
  flex-direction: column;
}

/* COPY */
.fv__copy {
  max-width: 620px;
}

/* LOGO */
.fv__logo {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.fv__logo img {
  width: 150px;
  height: auto;
  display: block;
}

/* TEXT */
.fv__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 245, 248, 0.18);
  font-size: 11px;
  letter-spacing: 0.28em;
  color: #c9a35f;
}

.fv__title {
  margin-top: 14px;
  font-size: clamp(38px, 10vw, 72px);
  line-height: 1.02;
  font-weight: 700;
  color: #f6f1f2;
}

.fv__catch {
  margin-top: 20px;
  font-size: clamp(15px, 4vw, 18px);
  line-height: 1.62;
  color: rgba(245, 238, 241, 0.86);
}

.fv__catchLead {
  display: block;
  font-size: clamp(18px, 5vw, 28px);
  font-weight: 500;
}

.fv__catchText {
  display: block;
  font-size: clamp(12px, 3.2vw, 17px);
  color: rgba(255, 244, 248, 0.7);
}

/* BADGES */
.fv__badges {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.fv__badges span {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(86, 60, 80, 0.24);
  border: 1px solid rgba(255, 245, 248, 0.14);
  font-size: 12px;
  font-weight: 700;
}

/* HOURS */
.fv__hours {
  margin-top: 24px;
  display: grid;
  gap: 16px;
}

.fv__hours div {
  padding: 13px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255, 246, 248, 0.12);
  background: rgba(20, 16, 24, 0.26);
}

.fv__hours dt {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #ddb267;
}

.fv__hours dd {
  margin-top: 4px;
  font-size: 15px;
}

/* CTA */
.fv__cta {
  margin-top: 22px;
  display: grid;
  gap: 12px;
  max-width: 560px;
}

.fv__note {
  margin-top: 14px;
  font-size: 12px;
  color: rgba(255, 244, 248, 0.74);
}

.fv__hoursNote {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: rgba(255, 245, 248, 0.7);
  letter-spacing: 0.02em;
}

/* =========================
   TABLET
========================= */
@media (min-width: 768px) {
  .fv {
    align-items: center;
  }
  .fv__hours {
    grid-template-columns: repeat(2, 1fr);
  }
  .fv__cta {
    grid-template-columns: repeat(2, 260px);
  }
  .fv__logo img {
    width: 220px;
  }
}
/* =========================
   PC
========================= */
@media (min-width: 1024px) {
  .fv__inner {
    display: grid;
    grid-template-columns: 620px 1fr;
    align-items: center;
    column-gap: 72px;
  }
  .fv__logo {
    grid-column: 2;
    margin: 0;
    justify-content: center;
  }
  .fv__logo img {
    width: 280px;
  }
}
/* =========================
   FV CTA
========================= */
.fv__cta {
  margin-top: 28px;
  display: grid;
  gap: 14px;
  max-width: 560px;
}

/* =========================
   BUTTON BASE
========================= */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 22px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.26);
}

.btn img {
  width: 26px;
  height: auto;
}

/* =========================
   LINE
========================= */
.btn--line {
  color: #fff;
  background: #03c756;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.32), 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 -1px 0 rgba(0, 0, 0, 0.15) inset;
}

/* =========================
   INSTAGRAM
========================= */
.btn--instagram {
  color: #fff;
  background: linear-gradient(45deg, #f58529 0%, #dd2a7b 35%, #8134af 65%, #515bd4 100%);
  border: none;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.32), 0 1px 0 rgba(255, 255, 255, 0.18) inset, 0 -1px 0 rgba(0, 0, 0, 0.15) inset;
}

.btn--instagram:hover {
  filter: brightness(1.06);
}

/* =========================
   HOVER
========================= */
.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

/* =========================
   SP LOGO POSITION
========================= */
.fv__inner {
  display: flex;
  flex-direction: column;
}

.fv__logo {
  order: -1;
  margin-bottom: 18px;
  display: flex;
  justify-content: center;
}

.fv__logo img {
  width: 220px;
}

/* =========================
   PC
========================= */
@media (min-width: 1024px) {
  .fv__inner {
    display: grid;
    grid-template-columns: 620px 1fr;
    align-items: center;
    column-gap: 72px;
  }
  .fv__logo {
    order: 0;
    grid-column: 2;
    justify-content: center;
    margin: 0;
  }
  .fv__logo img {
    width: 100%;
  }
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.8s ease;
  will-change: transform, opacity;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* scss/components/_cta.scss */
/* =========================
   FIXED CTA
========================= */
.fixedCta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 18px;
  border-radius: 999px;
  color: #ffffff;
  background-color: #0cc755;
  box-shadow: 0 12px 28px rgba(6, 199, 85, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.14) inset;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.04em;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, 16px, 0);
  transition: opacity 0.28s ease, visibility 0.28s ease, transform 0.28s ease;
}

.fixedCta img {
  width: 28px;
  margin-right: 10px;
}

.fixedCta.is-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.fixedCta i {
  margin-right: 8px;
  font-size: 18px;
  flex-shrink: 0;
}

@media (max-width: 374px) {
  .fixedCta {
    left: 10px;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    min-height: 54px;
    padding: 0 14px;
    font-size: 15px;
  }
  .fixedCta i {
    margin-right: 6px;
    font-size: 16px;
  }
}
@media (min-width: 768px) {
  .fixedCta {
    left: auto;
    right: 24px;
    bottom: 24px;
    min-width: 280px;
    padding: 0 24px;
  }
}
