:root {
    --pink: #FFD4DC;
    --pink-mid: #FFB3C1;
    --pink-deep: #FF8FA3;
    --blue: #C8E6F0;
    --blue-mid: #A8D5E5;
    --blue-deep: #7FB8CC;
    --cream: #FFF8F0;
    --yellow: #FFE89A;
    --ink: #2A2823;
    --ink-soft: #5A554C;
    --off-white: #FDFAF5;
    --line: rgba(42, 40, 35, 0.12);
    --shadow-soft: 0 24px 60px -20px rgba(42, 40, 35, 0.15);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: "Zen Maru Gothic", "Nunito", sans-serif;
    color: var(--ink);
    background: var(--off-white);
    line-height: 1.85;
    font-weight: 500;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  .display-en {
    font-family: "Nunito", "Zen Maru Gothic", sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
  }

  .label-en {
    font-family: "Nunito", "Zen Maru Gothic", sans-serif;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-size: 11px;
    color: var(--pink-deep);
  }

  .handwriting {
    font-family: "Caveat", cursive;
    font-weight: 700;
  }

  /* ============ Header ============ */
  header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(251, 250, 246, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
  }

  .logo img { height: 42px; width: auto; display: block; }

  .logo-text {
    font-family: "Zen Maru Gothic", "Nunito", sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.05em;
    color: var(--ink);
  }

  nav ul {
    display: flex;
    gap: 36px;
    list-style: none;
  }

  nav a {
    color: var(--ink);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: opacity 0.3s;
  }

  nav a:hover { opacity: 0.5; }

  /* ============ Hero ============ */
  .hero {
    min-height: 100vh;
    padding: 140px 48px 80px;
    position: relative;
    background: linear-gradient(180deg, var(--off-white) 0%, #FFE5EA 60%, var(--pink) 100%);
    overflow: hidden;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    grid-template-areas:
      "eyebrow visual"
      "text    visual";
    grid-template-rows: auto 1fr;
    column-gap: 60px;
    row-gap: 0;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
    min-height: calc(100vh - 220px);
  }

  .hero-eyebrow { grid-area: eyebrow; align-self: end; }
  .hero-text { grid-area: text; align-self: start; padding-top: 20px; }
  .hero-visual { grid-area: visual; align-self: center; }

  .hero-text {
    position: relative;
    z-index: 2;
  }

  .hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
  }

  .hero-eyebrow::before {
    content: "";
    width: 40px;
    height: 1px;
    background: var(--ink);
  }

  .hero h1 {
    font-family: "Zen Maru Gothic", "Nunito", sans-serif;
    font-weight: 900;
    font-size: clamp(46px, 5.8vw, 84px);
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 28px;
    color: var(--ink);
  }

  .hero h1 em {
    font-style: normal;
    font-weight: 900;
    color: var(--pink-deep);
  }

  .hero-jp {
    font-size: 17px;
    line-height: 1.9;
    color: var(--ink-soft);
    margin-bottom: 12px;
    max-width: 480px;
  }

  .hero-sub {
    font-size: 14px;
    color: var(--ink-soft);
    margin-bottom: 48px;
    max-width: 480px;
  }

  .cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: var(--ink);
    color: var(--off-white);
    padding: 18px 32px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px -12px rgba(42, 40, 35, 0.4);
  }

  .cta-primary .arrow {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--pink-deep);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--ink);
  }

  /* Hero Visual - 実機のピンク×水色ツートーンを反映 */
  .hero-visual {
    position: relative;
    width: 100%;
    max-width: 360px;
    aspect-ratio: 9 / 16;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    background: var(--pink-mid);
    margin: 0 auto;
  }

  .hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    display: block;
  }

  .hero-visual-inner {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, var(--pink-mid) 0%, var(--pink) 45%, var(--blue) 55%, var(--blue-mid) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Cotton candy illustration */
  .cotton-candy {
    width: 70%;
    aspect-ratio: 1;
    position: relative;
  }

  .cloud {
    position: absolute;
    border-radius: 50%;
    background: white;
    opacity: 0.95;
    animation: floaty 6s ease-in-out infinite;
  }

  .cloud:nth-child(1) { width: 60%; height: 60%; top: 5%; left: 20%; animation-delay: 0s; }
  .cloud:nth-child(2) { width: 45%; height: 45%; top: 20%; left: 0%; background: #FFD4DC; animation-delay: 1s; }
  .cloud:nth-child(3) { width: 50%; height: 50%; top: 25%; right: 0%; background: #D4ECF5; animation-delay: 2s; }
  .cloud:nth-child(4) { width: 40%; height: 40%; bottom: 15%; left: 15%; background: #FFE89A; animation-delay: 1.5s; }
  .cloud:nth-child(5) { width: 35%; height: 35%; bottom: 20%; right: 15%; background: #FFB3C1; animation-delay: 0.5s; }

  .stick {
    position: absolute;
    bottom: -5%;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 30%;
    background: linear-gradient(180deg, #D4B896 0%, #B89870 100%);
    border-radius: 4px;
  }

  @keyframes floaty {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-8px) scale(1.02); }
  }

  .hero-tag {
    position: absolute;
    z-index: 3;
    background: var(--off-white);
    padding: 12px 20px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
    box-shadow: 0 8px 24px -8px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .hero-tag-1 {
    top: 8%;
    right: -20px;
    transform: rotate(6deg);
  }

  .hero-tag-2 {
    bottom: 12%;
    left: -30px;
    transform: rotate(-4deg);
  }

  .hero-tag .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blue-deep);
  }

  .hero-tag-1 .dot { background: var(--pink-deep); }

  /* Floating decorations */
  .deco-text {
    position: absolute;
    font-family: "Nunito", sans-serif;
    font-weight: 800;
    color: rgba(255, 143, 163, 0.18);
    pointer-events: none;
    user-select: none;
    letter-spacing: -0.02em;
  }

  .deco-text-1 {
    bottom: 40px;
    left: 48px;
    font-size: 180px;
    line-height: 0.9;
  }

  /* Scroll indicator */
  .scroll-hint {
    position: absolute;
    bottom: 32px;
    right: 48px;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--ink-soft);
    writing-mode: vertical-rl;
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .scroll-hint::after {
    content: "";
    width: 1px;
    height: 60px;
    background: var(--ink-soft);
  }

  /* ============ Section Base ============ */
  section {
    padding: 140px 48px;
    position: relative;
  }

  .container {
    max-width: 1400px;
    margin: 0 auto;
  }

  .section-header {
    margin-bottom: 80px;
    max-width: 720px;
  }

  .section-header.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .section-title {
    font-family: "Zen Maru Gothic", "Nunito", sans-serif;
    font-weight: 900;
    font-size: clamp(34px, 4.2vw, 52px);
    line-height: 1.25;
    letter-spacing: -0.005em;
    margin: 20px 0 24px;
  }

  .section-title em {
    font-style: normal;
    color: var(--pink-deep);
  }

  /* 語句の途中で改行させないためのユーティリティ */
  .nowrap {
    display: inline-block;
    white-space: nowrap;
  }

  .section-lead {
    color: var(--ink-soft);
    font-size: 16px;
    line-height: 1.9;
  }

  /* ============ Section 2: SNS / UGC ============ */
  .sns {
    background: var(--cream);
    padding-bottom: 160px;
  }

  /* 公式アカウント紹介ブロック */
  .official-account {
    margin-top: 60px;
    background: var(--off-white);
    border-radius: 12px;
    padding: 40px 48px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 32px;
    align-items: center;
    border: 1px solid var(--line);
  }

  .official-avatar {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFD4DC 0%, #C8E6F0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Zen Maru Gothic", "Nunito", sans-serif;
    font-size: 32px;
    color: var(--off-white);
    position: relative;
    overflow: hidden;
  }

  .official-avatar::before {
    content: "";
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink-mid), var(--blue-mid));
    z-index: 0;
  }

  .official-avatar span {
    position: relative;
    z-index: 1;
  }

  .official-avatar img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
  }

  .official-info .handle {
    font-family: "Zen Maru Gothic", "Nunito", sans-serif;
    font-size: 22px;
    margin-bottom: 4px;
  }

  .official-info .bio {
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.7;
    margin-bottom: 12px;
  }

  .official-stats {
    display: flex;
    gap: 24px;
    font-size: 12px;
    color: var(--ink-soft);
  }

  .official-stats strong {
    font-family: "Zen Maru Gothic", "Nunito", sans-serif;
    font-weight: 500;
    color: var(--ink);
    font-size: 16px;
    display: block;
    margin-bottom: 2px;
  }

  .official-follow {
    background: var(--ink);
    color: var(--off-white);
    padding: 14px 28px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    white-space: nowrap;
    transition: transform 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

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

  /* UGCグリッド（インフルエンサー投稿風） */
  .sns-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
    margin-top: 60px;
  }

  /* ===== Instagram公式埋め込み ===== */
  .ig-embed-grid {
    grid-template-columns: repeat(auto-fill, minmax(326px, 1fr));
    align-items: start;
    justify-items: center;
  }

  .ig-embed-grid .instagram-media {
    margin: 0 auto !important;
    min-width: 0 !important;
  }

  .ugc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px -16px rgba(42, 40, 35, 0.25);
  }

  .ugc-card:nth-child(1) { grid-column: span 4; background: linear-gradient(135deg, #FFD4DC, #FF8FA3); }
  .ugc-card:nth-child(2) { grid-column: span 4; background: linear-gradient(135deg, #C8E6F0, #7FB8CC); }
  .ugc-card:nth-child(3) { grid-column: span 4; background: linear-gradient(135deg, #FFE89A, #FFD675); }
  .ugc-card:nth-child(4) { grid-column: span 3; background: linear-gradient(135deg, #FFE5EA, #FFB3C1); }
  .ugc-card:nth-child(5) { grid-column: span 6; background: linear-gradient(135deg, #FDFAF5, #FFE5EA); }
  .ugc-card:nth-child(6) { grid-column: span 3; background: linear-gradient(135deg, #C8E6F0, #A8D5E5); }

  /* インスタ風投稿カード */
  .ig-post {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    padding: 16px;
    color: var(--ink);
  }

  .ig-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
  }

  .ig-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--off-white);
    border: 1.5px solid var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Caveat", cursive;
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    flex-shrink: 0;
  }

  .ig-user {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
  }

  .ig-user-sub {
    font-size: 10px;
    color: var(--ink-soft);
    margin-top: 2px;
  }

  .ig-body {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .ig-caption {
    font-family: "Zen Maru Gothic", "Nunito", sans-serif;
    font-size: 17px;
    line-height: 1.4;
    text-align: center;
    color: var(--ink);
  }

  .ig-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
    font-size: 11px;
    color: var(--ink-soft);
  }

  .ig-actions {
    display: flex;
    gap: 14px;
    align-items: center;
  }

  .ig-action-item {
    display: flex;
    align-items: center;
    gap: 4px;
  }

  /* メディア型カード（写真プレースホルダ） */
  .ig-media {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
  }

  .ig-media-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .ig-media-image .placeholder-mark {
    font-family: "Caveat", cursive;
    font-size: 22px;
    color: rgba(255,255,255,0.8);
    text-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }

  .ig-media-header {
    padding: 14px 16px 0;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .ig-media-footer {
    padding: 0 16px 14px;
  }

  .ig-media-caption {
    font-size: 12px;
    color: var(--ink);
    line-height: 1.5;
    padding-top: 8px;
  }

  /* 横長フィーチャーカード */
  .featured-post {
    grid-column: span 6;
    background: var(--off-white) !important;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    aspect-ratio: auto !important;
  }

  .featured-quote-mark {
    font-family: "Zen Maru Gothic", "Nunito", sans-serif;
    font-size: 72px;
    line-height: 0.6;
    color: var(--pink-mid);
    margin-bottom: 8px;
  }

  .featured-post p {
    font-family: "Zen Maru Gothic", "Nunito", sans-serif;
    font-size: 22px;
    line-height: 1.5;
    color: var(--ink);
    margin-bottom: 16px;
  }

  .featured-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
  }

  .featured-meta-source {
    font-family: "Zen Maru Gothic", "Nunito", sans-serif;
    font-size: 11px;
    color: var(--ink-soft);
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  /* 現場の声エピソードカード */
  .field-stories {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .field-story {
    padding: 32px 28px;
    background: var(--off-white);
    border-radius: 8px;
    border: 1px solid var(--line);
    position: relative;
  }

  .field-story-tag {
    display: inline-block;
    font-family: "Zen Maru Gothic", "Nunito", sans-serif;
    font-size: 11px;
    letter-spacing: 0.15em;
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 20px;
    text-transform: uppercase;
  }

  .field-story:nth-child(1) .field-story-tag { background: var(--pink); color: var(--pink-deep); }
  .field-story:nth-child(2) .field-story-tag { background: var(--blue); color: var(--blue-deep); }
  .field-story:nth-child(3) .field-story-tag { background: var(--yellow); color: #B08400; }

  .field-story h4 {
    font-family: "Zen Maru Gothic", "Nunito", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 12px;
  }

  .field-story p {
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.75;
  }

  .field-story-source {
    margin-top: 16px;
    font-size: 11px;
    color: var(--ink-soft);
    font-family: "Zen Maru Gothic", "Nunito", sans-serif;
  }

  .hashtag-marquee {
    margin-top: 80px;
    overflow: hidden;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 24px 0;
  }

  .marquee-track {
    display: flex;
    gap: 60px;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
  }

  .marquee-track span {
    font-family: "Zen Maru Gothic", "Nunito", sans-serif;
    font-size: 24px;
    color: var(--ink);
  }

  .marquee-track .dot {
    color: var(--pink-deep);
  }

  @keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* ============ Section 3: 3 Secrets ============ */
  .secrets {
    background: var(--off-white);
  }

  .secrets-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
  }

  .secret-card {
    padding: 40px 32px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--off-white);
    transition: all 0.4s ease;
    position: relative;
  }

  .secret-card:hover {
    background: var(--cream);
    transform: translateY(-4px);
  }

  .secret-number {
    font-family: "Zen Maru Gothic", "Nunito", sans-serif;
    font-size: 14px;
    color: var(--pink-deep);
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .secret-number::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--line);
  }

  .secret-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Zen Maru Gothic", "Nunito", sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--ink);
  }

  .secret-card:nth-child(1) .secret-icon { background: var(--pink); }
  .secret-card:nth-child(2) .secret-icon { background: var(--blue); }
  .secret-card:nth-child(3) .secret-icon { background: var(--yellow); }

  .secret-title {
    font-family: "Zen Maru Gothic", "Nunito", sans-serif;
    font-weight: 500;
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 16px;
  }

  .secret-body {
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.8;
  }

  /* ============ Section 4: Movie ============ */
  .movie {
    background: var(--ink);
    color: var(--off-white);
    padding: 140px 48px;
  }

  .movie .section-title { color: var(--off-white); }
  .movie .section-title em { color: var(--pink); display: inline-block; }
  .movie .section-header { max-width: 100%; }
  .movie .label-en { color: rgba(251, 250, 246, 0.6); }
  .movie .section-lead { color: rgba(251, 250, 246, 0.7); }

  .movie-frame {
    margin-top: 60px;
    aspect-ratio: 16/9;
    border-radius: 12px;
    background: linear-gradient(135deg, #3a3832, #2a2823);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .movie-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
  }

  .play-button {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: var(--pink);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s;
    position: relative;
    z-index: 2;
  }

  .play-button:hover { transform: scale(1.1); }

  .play-button::before {
    content: "";
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    border: 1px solid rgba(250, 220, 225, 0.4);
    animation: pulse 2s ease-out infinite;
  }

  @keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
  }

  .play-button::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 20px solid var(--ink);
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 6px;
  }

  .movie-timeline {
    position: absolute;
    bottom: 32px;
    left: 32px;
    right: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255,255,255,0.6);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
  }

  .timeline-bar {
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.2);
    margin: 0 24px;
    position: relative;
  }

  .timeline-bar::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: var(--pink);
  }

  /* ============ Section 5: How to Use ============ */
  .howto {
    background: var(--blue);
    padding: 140px 48px;
  }

  .steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 80px;
    position: relative;
  }

  .steps::before {
    content: "";
    position: absolute;
    top: 32px;
    /* 円(64px)は各カラム左寄せ。円の中心はカラム左端+32px。
       4カラム等幅・gap24pxなので、1カラム幅 = (100% - 72px)/4。
       左端の線開始 = 1番目の円中心 = 32px。
       右端の線終了 = 4番目の円中心 = 右端から「1カラム幅 - 32px」。 */
    left: 32px;
    right: calc((100% - 72px) / 4 - 32px);
    height: 1px;
    border-top: 1px dashed rgba(42, 40, 35, 0.25);
  }

  .step {
    position: relative;
    z-index: 2;
  }

  .step-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Zen Maru Gothic", "Nunito", sans-serif;
    font-weight: 400;
    font-size: 24px;
    margin-bottom: 24px;
    border: 1px solid var(--line);
  }

  .step-label {
    font-family: "Zen Maru Gothic", "Nunito", sans-serif;
    font-size: 12px;
    letter-spacing: 0.2em;
    color: var(--ink-soft);
    margin-bottom: 8px;
    text-transform: uppercase;
  }

  .step-title {
    font-family: "Zen Maru Gothic", "Nunito", sans-serif;
    font-weight: 500;
    font-size: 19px;
    line-height: 1.4;
    margin-bottom: 12px;
  }

  .step-note {
    background: var(--off-white);
    border-radius: 8px;
    padding: 20px;
    margin-top: 60px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }

  .step-note-icon {
    font-family: "Caveat", cursive;
    font-size: 24px;
    color: var(--pink-deep);
    flex-shrink: 0;
  }

  .step-note-text {
    font-size: 13px;
    line-height: 1.7;
    color: var(--ink-soft);
  }

  .step-note-text strong {
    color: var(--ink);
    font-weight: 500;
  }

  /* ============ Section 6: Shop List ============ */
  .shops {
    background: var(--off-white);
  }

  .shop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 60px;
    border-top: 1px solid var(--line);
  }

  .shop-item {
    padding: 28px 24px;
    border-bottom: 1px solid var(--line);
    border-right: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
    cursor: pointer;
  }

  .shop-item:hover { background: var(--cream); }
  a.shop-item { text-decoration: none; color: inherit; }
  a.shop-item:hover .shop-arrow { opacity: 1; transform: translateX(2px); }
  .shop-arrow {
    flex-shrink: 0;
    margin-left: 16px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 12px;
    color: var(--pink-deep);
    white-space: nowrap;
    opacity: 0.65;
    transition: opacity 0.25s, transform 0.25s;
  }

  .shop-item:nth-child(3n) { border-right: none; }

  .shop-info-block {
    flex: 1;
  }

  .shop-region {
    font-family: "Zen Maru Gothic", "Nunito", sans-serif;
    font-size: 11px;
    color: var(--ink-soft);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 6px;
  }

  .shop-name {
    font-size: 15px;
    font-weight: 500;
  }

  .shop-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: var(--ink-soft);
  }

  .status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #7CB89E;
  }

  .status-dot.maint {
    background: #E8A87C;
  }

  /* ============ Section 7: Information ============ */
  .info {
    background: var(--cream);
  }

  .info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-top: 60px;
  }

  .info-block h3 {
    font-family: "Zen Maru Gothic", "Nunito", sans-serif;
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 8px;
  }

  .info-block .label-en {
    margin-bottom: 16px;
    display: block;
  }

  .info-block p {
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.8;
  }

  /* ============ Footer ============ */
  footer {
    background: var(--ink);
    color: var(--off-white);
    padding: 80px 48px 40px;
  }

  .footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
  }

  .footer-logo {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .footer-logo img { height: 72px; width: auto; }

  .footer-logo-text {
    font-family: "Zen Maru Gothic", "Nunito", sans-serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.05em;
    color: var(--off-white);
  }

  .footer-tagline {
    color: rgba(251, 250, 246, 0.6);
    font-size: 13px;
    max-width: 360px;
  }

  .footer-grid h4 {
    font-family: "Zen Maru Gothic", "Nunito", sans-serif;
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 20px;
    color: rgba(251, 250, 246, 0.5);
    letter-spacing: 0.1em;
  }

  .footer-grid ul {
    list-style: none;
  }

  .footer-grid li {
    margin-bottom: 10px;
  }

  .footer-grid a {
    color: var(--off-white);
    text-decoration: none;
    font-size: 13px;
    opacity: 0.8;
    transition: opacity 0.3s;
  }

  .footer-grid a:hover { opacity: 1; }

  .footer-social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .footer-social-icon {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    object-fit: cover;
    display: block;
  }

  .footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 32px;
    border-top: 1px solid rgba(251, 250, 246, 0.1);
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: rgba(251, 250, 246, 0.5);
    letter-spacing: 0.05em;
  }

  /* Sticky CTA */
  .sticky-cta {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
    display: none;
  }

  /* ============ Responsive ============ */
  @media (max-width: 900px) {
    header { padding: 16px 24px; }
    nav ul { display: none; }
    .hero { padding: 100px 24px 60px; }
    .hero-grid {
      grid-template-columns: 1fr;
      grid-template-areas:
        "eyebrow"
        "visual"
        "text";
      grid-template-rows: auto auto auto;
      gap: 32px;
      min-height: auto;
    }
    /* スマホでは ラベル -> 動画 -> キャッチコピー の順 */
    .hero-grid .hero-eyebrow { order: 0; }
    .hero-grid .hero-visual { order: 0; }
    .hero-grid .hero-text { order: 0; padding-top: 0; }
    .deco-text-1 { font-size: 100px; }
    .scroll-hint { display: none; }
    section { padding: 80px 24px; }
    .movie, .howto { padding: 80px 24px; }
    .sns-grid { grid-template-columns: repeat(2, 1fr); }
    .ig-embed-grid { grid-template-columns: 1fr; }
    .sns-grid .ugc-card { grid-column: span 1 !important; aspect-ratio: 1 !important; }
    .sns-grid .featured-post { grid-column: span 2 !important; aspect-ratio: auto !important; }
    .official-account { grid-template-columns: 1fr; text-align: center; padding: 32px 24px; gap: 20px; }
    .official-account .official-avatar { margin: 0 auto; }
    .official-stats { justify-content: center; }
    .field-stories { grid-template-columns: 1fr; }
    .secrets-grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr 1fr; }
    .steps::before { display: none; }
    .shop-grid { grid-template-columns: 1fr; }
    .shop-item { border-right: none !important; }
    .info-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 12px; }
    .sticky-cta { display: block; }
  }

  /* ============================================================
     店舗別広告LP 専用スタイル
     ============================================================ */

  .logo-wrap { display: flex; align-items: center; gap: 10px; }
  .logo-text {
    font-family: "Nunito", sans-serif;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.05em;
    color: var(--ink);
  }
  .header-store {
    font-size: 11px;
    font-weight: 700;
    color: var(--pink-deep);
    letter-spacing: 0.05em;
  }

  /* 固定CTA */
  .sticky-cta {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 90;
  }
  .btn-map {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--pink-deep);
    color: #fff;
    padding: 16px 28px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 12px 32px -8px rgba(255,143,163,0.5);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .btn-map:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -8px rgba(255,143,163,0.6); }
  .btn-map .pin {
    width: 20px; height: 20px;
    background: #fff;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    flex-shrink: 0;
  }

  /* Hero */
  .hero-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
  }
  .hero-region {
    font-family: "Nunito", sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--pink-deep);
    margin-bottom: 20px;
  }
  .hero-region::before {
    content: "";
    display: inline-block;
    width: 24px; height: 2px;
    background: var(--pink-deep);
    vertical-align: middle;
    margin-right: 12px;
  }
  .hero-store-name {
    font-family: "Zen Maru Gothic", "Nunito", sans-serif;
    font-weight: 900;
    font-size: clamp(28px, 5vw, 44px);
    line-height: 1.3;
    margin-bottom: 24px;
  }
  .hero-store-name em { font-style: normal; color: var(--pink-deep); }
  .hero-catch {
    font-size: clamp(16px, 2.5vw, 20px);
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 32px;
  }

  /* 稼働ステータス */
  .status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 100px;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 40px;
  }
  .status-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: #4CAF50;
    box-shadow: 0 0 0 4px rgba(76,175,80,0.2);
  }
  .status-dot.maint { background: #FF9800; box-shadow: 0 0 0 4px rgba(255,152,0,0.2); }

  /* Hero動画枠 */
  .hero-video-wrap {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 9 / 16;
    margin: 0 auto 40px;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--pink-mid), var(--blue-mid));
    box-shadow: var(--shadow-soft);
    position: relative;
  }
  .hero-video-el {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .hero-video-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
  }
  .play-btn {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    position: relative;
  }
  .play-btn::after {
    content: "";
    position: absolute;
    top: 50%; left: 54%;
    transform: translate(-50%,-50%);
    border-style: solid;
    border-width: 12px 0 12px 20px;
    border-color: transparent transparent transparent var(--pink-deep);
  }
  .video-label {
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.1em;
  }

  .hero-cta-wrap {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--ink);
    color: #fff;
    padding: 16px 32px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.3s;
  }
  .btn-primary:hover { transform: translateY(-2px); }
  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--ink);
    padding: 16px 32px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    border: 1.5px solid var(--ink);
    transition: background 0.3s, color 0.3s;
  }
  .btn-secondary:hover { background: var(--ink); color: #fff; }

  /* 設置場所セクション */
  .location { padding: 100px 24px; background: var(--cream); }
  .section-eyebrow {
    font-family: "Nunito", sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--pink-deep);
    text-align: center;
    margin-bottom: 12px;
  }
  .location-card {
    max-width: 640px;
    margin: 40px auto 0;
    background: #fff;
    border-radius: 16px;
    padding: 16px 32px;
    box-shadow: var(--shadow-soft);
  }
  .location-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
  }
  .location-row:last-child { border-bottom: none; }
  .location-icon {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--pink);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 11px;
    font-weight: 700;
    font-family: "Nunito", sans-serif;
    color: #fff;
    letter-spacing: 0.02em;
  }
  .location-label {
    font-size: 11px;
    font-weight: 700;
    font-family: "Nunito", sans-serif;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 4px;
  }
  .location-value {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
  }
  .location-sub {
    font-size: 13px;
    color: var(--ink-soft);
    margin-top: 4px;
  }

  /* 地図 */
  .map-wrap {
    max-width: 640px;
    margin: 32px auto 0;
    aspect-ratio: 16 / 10;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    background: var(--blue);
  }
  .map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }
  .map-placeholder {
    width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--ink-soft);
    font-weight: 700;
  }
  .map-cta { max-width: 640px; margin: 24px auto 0; text-align: center; }
  .btn-map-large {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--pink-deep);
    color: #fff;
    padding: 18px 40px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 12px 32px -8px rgba(255,143,163,0.5);
    transition: transform 0.3s;
  }
  .btn-map-large:hover { transform: translateY(-2px); }

  /* 使い方 */
  .howto { padding: 100px 24px; }
  .steps-simple {
    max-width: 900px;
    margin: 60px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .step-simple { text-align: center; }
  .step-num {
    font-family: "Nunito", sans-serif;
    font-weight: 800;
    font-size: 40px;
    color: var(--pink-deep);
    margin-bottom: 12px;
  }
  .step-ttl { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
  .step-desc { font-size: 13px; color: var(--ink-soft); line-height: 1.7; }

  /* 口コミ */
  .ugc { padding: 100px 24px; background: var(--cream); }
  .ugc-list {
    max-width: 720px;
    margin: 60px auto 0;
    display: grid;
    gap: 24px;
  }
  .ugc-item {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: var(--shadow-soft);
  }
  .ugc-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
  .ugc-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
  }
  .ugc-item:nth-child(1) .ugc-avatar { background: var(--pink-deep); }
  .ugc-item:nth-child(2) .ugc-avatar { background: var(--blue-deep); }
  .ugc-item:nth-child(3) .ugc-avatar { background: #A085BD; }
  .ugc-name { font-weight: 700; font-size: 15px; }
  .ugc-handle { font-size: 12px; color: var(--ink-soft); }
  .ugc-text { font-size: 15px; line-height: 1.8; margin-bottom: 12px; }
  .ugc-actions { display: flex; gap: 20px; font-size: 13px; color: var(--ink-soft); font-weight: 700; }

  /* フロアマップ画像 */
  .floor-map {
    margin: 24px 0 8px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    background: #fff;
  }
  .floor-map img {
    display: block;
    width: 100%;
    height: auto;
  }
  /* 店舗写真（設置場所の実機写真）。画像未配置時は枠ごと非表示 */
  .store-photo {
    margin: 24px 0 8px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    background: #fff;
  }
  .store-photo img {
    display: block;
    width: 100%;
    height: auto;
  }

  /* 店舗LPのセクションタイトルは中央寄せ・改行しにくく */
  .location .section-title,
  .howto .section-title,
  .ugc .section-title {
    text-align: center;
    white-space: nowrap;
  }
  .location .section-title em,
  .howto .section-title em,
  .ugc .section-title em {
    display: inline;
  }
  /* 画面が狭い場合は折り返しを許可（はみ出し防止） */
  @media (max-width: 480px) {
    .location .section-title,
    .howto .section-title,
    .ugc .section-title {
      white-space: normal;
    }
  }

  /* 最終CTA */
  .final-cta {
    padding: 100px 24px;
    background: linear-gradient(135deg, var(--pink) 0%, var(--blue) 100%);
    text-align: center;
  }
  .final-cta .label {
    font-family: "Nunito", sans-serif;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.2em;
    color: var(--pink-deep);
    margin-bottom: 16px;
  }
  .final-cta h2 {
    font-family: "Zen Maru Gothic", "Nunito", sans-serif;
    font-weight: 900;
    font-size: clamp(28px, 5vw, 44px);
    line-height: 1.3;
    margin-bottom: 20px;
  }
  .final-cta p { font-size: 16px; line-height: 1.8; margin-bottom: 32px; }
  .btn-map-final {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--ink);
    color: #fff;
    padding: 18px 44px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    box-shadow: 0 12px 32px -8px rgba(42,40,35,0.4);
    transition: transform 0.3s;
  }
  .btn-map-final:hover { transform: translateY(-2px); }

  .footer-copy { font-size: 12px; color: var(--ink-soft); }

  /* 店舗LPフッターのリンク：通常時も訪問済みも同色で固定（背景と同化させない） */
  footer a,
  footer a:link,
  footer a:visited {
    color: var(--ink-soft);
    text-decoration: underline;
    text-underline-offset: 2px;
  }
  footer a:hover {
    color: var(--ink);
  }

  /* 店舗LP レスポンシブ */
  @media (max-width: 768px) {
    .steps-simple { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
    .location-card { padding: 8px 20px; }
    .location { padding: 70px 20px; }
    .howto, .ugc, .final-cta { padding: 70px 20px; }
  }