:root {
    --sun:    #ffffff;
    --paper:  #fffdf8;
    --warm:   #fdf6e8;
    --amber:  #c8860a;
    --gold:   #e8a020;
    --pale:   #f0c050;
    --ink:    #1a1208;
    --ink2:   #2e2010;
    --muted:  #8a6a40;
    --soft:   #c8a878;
    --border: #e8d8b8;
    --ray:    #f5c040;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  body {
    background: var(--paper);
    color: var(--ink);
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 400;
    overflow-x: hidden;
    cursor: auto;
  }

  
  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 48px;
  }
  nav::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255,253,248,0.96), rgba(255,253,248,0));
    pointer-events: none;
  }
  .nav-logo {
    position: relative;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 22px;
    letter-spacing: 0.06em;
    color: var(--ink);
    text-decoration: none;
  }
  .nav-logo span { color: var(--gold); }
  .nav-links {
    position: relative;
    display: flex;
    gap: 40px;
    list-style: none;
  }
  .nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: color 0.3s;
  }
  .nav-links a:hover { color: var(--amber); }

  /* HERO */
  #hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #fffdf8 0%, #fef8e8 40%, #fdf2d0 100%);
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.pexels.com/photos/1581186/pexels-photo-1581186.jpeg?auto=compress&cs=tinysrgb&w=1920');
    background-size: cover;
    background-position: center;
    opacity: 0.22;
    z-index: 0;
  }

  /* 背景の光の円 */
  .hero-glow {
    position: absolute;
    top: -10%;
    left: -5%;
    width: 70%;
    height: 120%;
    background: radial-gradient(ellipse at 20% 40%, rgba(248,200,80,0.22) 0%, rgba(240,180,40,0.10) 35%, transparent 70%);
    pointer-events: none;
    z-index: 1;
  }
  .hero-glow2 {
    position: absolute;
    top: 10%;
    right: -10%;
    width: 50%;
    height: 80%;
    background: radial-gradient(ellipse at 80% 30%, rgba(255,240,180,0.18) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
  }

  /* 放射ライン */
  .rays {
    position: absolute;
    left: 108px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px; height: 2px;
    pointer-events: none;
    z-index: 2;
  }
  .ray {
    position: absolute;
    top: 0; left: 0;
    width: 1px;
    transform-origin: 0 0;
    background: linear-gradient(to right, var(--ray), transparent);
    opacity: 0;
    animation: rayAppear 2s ease forwards;
  }
  .ray:nth-child(1) { width: 320px; transform: rotate(-54deg); animation-delay: 0.1s; }
  .ray:nth-child(2) { width: 340px; transform: rotate(-38deg); animation-delay: 0.2s; }
  .ray:nth-child(3) { width: 360px; transform: rotate(-20deg); animation-delay: 0.3s; }
  .ray:nth-child(4) { width: 360px; transform: rotate(-4deg);  animation-delay: 0.4s; }
  .ray:nth-child(5) { width: 340px; transform: rotate(12deg);  animation-delay: 0.5s; }
  .ray:nth-child(6) { width: 320px; transform: rotate(26deg);  animation-delay: 0.6s; }
  .ray:nth-child(7) { width: 280px; transform: rotate(40deg);  animation-delay: 0.7s; }

  @keyframes rayAppear {
    from { opacity: 0; }
    to   { opacity: 0.55; }
  }
  .ray:nth-child(3), .ray:nth-child(4) { filter: brightness(1.1); }

  .hero-content {
    position: relative;
    padding: 0 160px;
    z-index: 2;
    opacity: 0;
    transform: translateY(24px);
    animation: fadeUp 1.2s ease 0.5s forwards;
  }
  @keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-eyebrow {
    font-size: 10px;
    letter-spacing: 0.5em;
    color: var(--amber);
    text-transform: uppercase;
    margin-bottom: 32px;
  }
  .hero-title {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: clamp(64px, 9vw, 120px);
    font-weight: 400;
    line-height: 0.92;
    letter-spacing: -0.01em;
    color: var(--ink);
    margin-bottom: 48px;
  }
  .hero-title .line {
    display: block;
    width: 100%;
    height: 0.5px;
    background: var(--amber);
    margin: 14px 0;
    opacity: 0.5;
  }
  .hero-title .sub {
    font-size: 14px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 400;
    letter-spacing: 0.5em;
    color: var(--amber);
    display: block;
    margin-top: 8px;
  }
  .hero-desc {
    font-size: 15px;
    line-height: 1.9;
    color: var(--muted);
    font-weight: 500;
    max-width: 400px;
    margin-bottom: 56px;
  }
  .hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    color: var(--ink);
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--border);
    padding-bottom: 8px;
    transition: border-color 0.3s, color 0.3s;
  }
  .hero-cta:hover { border-color: var(--amber); color: var(--amber); }
  .hero-cta::after { content: '→'; transition: transform 0.3s; }
  .hero-cta:hover::after { transform: translateX(4px); }

  .hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 160px;
    z-index: 2;
    font-size: 9px;
    letter-spacing: 0.4em;
    color: var(--soft);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .hero-scroll::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--soft);
    animation: scrollLine 2s ease infinite;
  }
  @keyframes scrollLine {
    0%, 100% { width: 40px; opacity: 0.4; }
    50% { width: 64px; opacity: 0.8; }
  }

  /* SECTION共通 */
  section { padding: 120px 160px; }
  .section-label {
    font-size: 9px;
    letter-spacing: 0.5em;
    color: var(--amber);
    text-transform: uppercase;
    margin-bottom: 64px;
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .section-label::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--amber);
  }

  /* PHILOSOPHY */
  #philosophy {
    background: var(--warm);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  #philosophy::before {
    content: 'LUMERI';
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 200px;
    color: transparent;
    -webkit-text-stroke: 1px rgba(200,134,10,0.07);
    pointer-events: none;
    white-space: nowrap;
  }
  .philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .philosophy-headline {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 400;
    line-height: 1.3;
    color: var(--ink);
  }
  .philosophy-headline em { font-style: italic; color: var(--amber); }
  .philosophy-text {
    font-size: 14px;
    line-height: 2.1;
    color: var(--muted);
    font-weight: 500;
  }
  .philosophy-text p + p { margin-top: 24px; }
  .philosophy-tagline-hidden {
    margin-top: 48px;
    font-size: 10px;
    letter-spacing: 0.4em;
    color: var(--amber);
    text-transform: uppercase;
    padding-top: 32px;
    border-top: 1px solid var(--border);
  }


  .works-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 56px 64px;
    background: var(--paper);
    border: 1px solid var(--border);
  }
  .works-cta-text {
    font-size: 16px;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: 0.06em;
    line-height: 1.8;
  }
  .works-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--ink);
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--border);
    padding-bottom: 8px;
    white-space: nowrap;
    margin-left: 48px;
    transition: color 0.3s, border-color 0.3s;
  }
  .works-cta-btn:hover { color: var(--amber); border-color: var(--amber); }
  /* SERVICES */
  #services {
    background: var(--paper);
  }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
  }
  .service-item {
    background: var(--paper);
    padding: 52px 44px;
    position: relative;
    overflow: hidden;
    transition: background 0.4s;
  }
  .service-item::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: linear-gradient(to right, var(--amber), var(--pale));
    transition: width 0.5s;
  }
  .service-item:hover { background: var(--warm); }
  .service-item:hover::after { width: 100%; }
  .service-num {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 11px;
    color: var(--soft);
    letter-spacing: 0.3em;
    margin-bottom: 32px;
  }
  .service-title {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--ink);
  }
  .service-desc {
    font-size: 14px;
    line-height: 1.9;
    color: var(--muted);
    font-weight: 500;
  }

  /* WORKS */
  #works {
    background: var(--warm);
    border-top: 1px solid var(--border);
  }
  .works-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
    align-items: end;
  }
  .works-headline {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: clamp(40px, 4vw, 56px);
    font-weight: 400;
    line-height: 1.2;
    color: var(--ink);
  }
  .works-note {
    font-size: 14px;
    line-height: 1.9;
    color: var(--muted);
    font-weight: 500;
  }
  .works-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 2px;
  }
  .work-item {
    aspect-ratio: 16/9;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 32px;
    cursor: pointer;
    border: 1px solid var(--border);
  }
  .work-item:nth-child(1) { grid-row: span 2; aspect-ratio: auto; min-height: 500px; }
  .work-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(255,248,224,0.7) 0%, transparent 60%);
    z-index: 1;
  }
  .work-item-bg {
    position: absolute;
    inset: 0;
    transition: transform 0.6s ease;
  }
  .work-item:nth-child(1) .work-item-bg { background: linear-gradient(135deg, #f5e8c0 0%, #ead5a0 100%); }
  .work-item:nth-child(2) .work-item-bg { background: linear-gradient(135deg, #e8dfc0 0%, #ddd0a8 100%); }
  .work-item:nth-child(3) .work-item-bg { background: linear-gradient(135deg, #ecdfc5 0%, #e0d0a8 100%); }
  .work-item:hover .work-item-bg { transform: scale(1.04); }
  .work-item-content { position: relative; z-index: 2; }
  .work-tag {
    font-size: 9px;
    letter-spacing: 0.4em;
    color: var(--amber);
    text-transform: uppercase;
    margin-bottom: 8px;
  }
  .work-title {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 22px;
    color: var(--ink);
  }

  /* CONTACT */
  #contact {
    background: linear-gradient(135deg, #fdf8ec 0%, #fef4d8 50%, #fdf0c8 100%);
    text-align: center;
    padding: 160px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border);
  }
  #contact::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 700px; height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(248,200,80,0.15) 0%, transparent 65%);
    pointer-events: none;
  }
  .contact-eyebrow {
    font-size: 9px;
    letter-spacing: 0.5em;
    color: var(--amber);
    text-transform: uppercase;
    margin-bottom: 40px;
  }
  .contact-headline {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 400;
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 32px;
  }
  .contact-headline em { font-style: italic; color: var(--amber); }
  .contact-sub {
    font-size: 14px;
    color: var(--muted);
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-bottom: 64px;
  }
  .contact-email {
    display: inline-block;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 24px;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: 0.1em;
    border-bottom: 1px solid var(--border);
    padding-bottom: 8px;
    transition: color 0.3s, border-color 0.3s;
  }
  .contact-email:hover { color: var(--amber); border-color: var(--amber); }


  /* CONTACT FORM */
  .contact-form-wrap {
    max-width: 680px;
    margin: 0 auto;
    text-align: left;
  }
  .contact-form {
    background: var(--paper);
    border: 1px solid var(--border);
    padding: 56px;
    margin-bottom: 32px;
  }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
  }
  .form-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .required { color: var(--amber); }
  .form-input {
    background: var(--warm);
    border: 1px solid var(--border);
    border-radius: 0;
    padding: 14px 18px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    outline: none;
    transition: border-color 0.3s;
    width: 100%;
    appearance: none;
  }
  .form-input::placeholder { color: var(--soft); }
  .form-input:focus { border-color: var(--amber); background: #fff; }
  .form-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c8860a' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
  }
  .form-textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.8;
  }
  .form-submit-wrap { text-align: right; }
  .form-submit {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--amber);
    color: var(--paper);
    border: none;
    padding: 16px 40px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 11px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
  }
  .form-submit:hover { background: var(--gold); color: var(--paper); }
  .form-success {
    display: none;
    margin-top: 24px;
    padding: 20px 24px;
    background: var(--warm);
    border-left: 2px solid var(--amber);
    font-size: 13px;
    line-height: 1.9;
    color: var(--muted);
    text-align: center;
  }
  .contact-info {
    text-align: center;
    padding-top: 8px;
  }
  .contact-info-label {
    font-size: 10px;
    letter-spacing: 0.3em;
    color: var(--soft);
    text-transform: uppercase;
    margin-bottom: 12px;
  }
  

  .form-error {
    display: none;
    font-size: 11px;
    color: #c0392b;
    margin-top: 4px;
    letter-spacing: 0.05em;
  }
  .form-input.error { border-color: #c0392b; }
  .form-input.error:focus { border-color: #c0392b; }

  /* ABOUT */
  #about {
    background: var(--paper);
    border-top: 1px solid var(--border);
  }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
  }
  .about-left {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .about-initial {
    width: 160px;
    height: 160px;
    border: 1px solid var(--border);
    background: var(--warm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 80px;
    font-weight: 500;
    color: var(--amber);
    letter-spacing: 0;
  }
  .about-name {
    font-size: 32px;
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    color: var(--ink);
  }
  .about-role {
    font-size: 11px;
    letter-spacing: 0.3em;
    color: var(--amber);
    text-transform: uppercase;
    margin-bottom: 36px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
  }
  .about-text {
    font-size: 14px;
    line-height: 2.1;
    color: var(--muted);
    margin-bottom: 40px;
  }
  .about-text p + p { margin-top: 20px; }
  .about-meta {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
  }
  .about-meta-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 16px;
    font-size: 13px;
  }
  .about-meta-label {
    color: var(--soft);
    letter-spacing: 0.1em;
  }
  .about-meta-value {
    color: var(--ink);
    font-weight: 500;
  }
  

  /* NEWS */
  .news-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .news-item {
    display: flex;
    align-items: baseline;
    gap: 24px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    transition: background 0.3s;
  }
  .news-item:first-child {
    border-top: 1px solid var(--border);
  }
  .news-date {
    font-size: 12px;
    font-weight: 500;
    color: var(--soft);
    letter-spacing: 0.1em;
    white-space: nowrap;
    min-width: 90px;
  }
  .news-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--amber);
    background: var(--warm);
    border: 1px solid var(--border);
    padding: 3px 10px;
    white-space: nowrap;
  }
  .news-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.7;
  }
  

  .hamburger { display: none; }
  .mobile-menu { display: none; }
  @media (max-width: 768px) {
    .hamburger { display: flex; position: relative; z-index: 200; }
  }

  /* ========== レスポンシブ ========== */
  @media (max-width: 768px) {
    /* 全体 */
    section { padding: 60px 24px !important; }

    /* ナビ */
    nav { padding: 20px 24px; }
    .nav-links { display: none; }
    .nav-logo { font-size: 18px; }

    /* ハンバーガーメニュー */
    .hamburger {
      position: relative;
      display: flex;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      z-index: 200;
    }
    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--ink);
      transition: all 0.3s;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .mobile-menu {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--paper);
      z-index: 500;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 40px;
      overflow: hidden;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu-close {
      position: absolute;
      top: 24px;
      right: 24px;
      background: none;
      border: none;
      font-size: 28px;
      color: var(--ink);
      cursor: pointer;
      font-weight: 700;
      line-height: 1;
      padding: 8px;
      z-index: 600;
      transition: color 0.3s;
    }
    .mobile-menu-close:hover { color: var(--amber); }
    .mobile-menu a {
      font-size: 22px;
      font-weight: 700;
      color: var(--ink);
      text-decoration: none;
      letter-spacing: 0.1em;
      padding: 8px 0;
    }
    .mobile-menu a:hover { color: var(--amber); }

    /* ヒーロー */
    #hero { min-height: 100svh; }
    .hero-content { padding: 0 24px !important; }
    .hero-title { font-size: 48px !important; }
    .hero-desc { font-size: 14px; }
    .hero-scroll { left: 24px; }
    .rays { left: 60px; }

    /* セクションラベル */
    .section-label { margin-bottom: 40px; }

    /* 理念 */
    .philosophy-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
    .philosophy-headline { font-size: 28px !important; }

    /* サービス */
    .services-grid { grid-template-columns: 1fr !important; gap: 1px; }
    .service-item { padding: 36px 28px; }
    .service-title { font-size: 22px; }

    /* About */
    .about-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
    .about-name { font-size: 26px; }
    .about-meta-item { grid-template-columns: 80px 1fr; font-size: 12px; }

    /* Works */
    .works-intro { grid-template-columns: 1fr !important; gap: 24px !important; }
    .works-headline { font-size: 32px !important; }
    .works-cta { flex-direction: column; gap: 24px; padding: 36px 28px; align-items: flex-start; }
    .works-cta-btn { margin-left: 0; }

    /* ニュース */
    .news-item { flex-wrap: wrap; gap: 8px; }

    /* お問合せ */
    #contact { padding: 80px 24px !important; }
    .contact-headline { font-size: 28px !important; }
    .contact-form-wrap { padding: 0; }
    .contact-form { padding: 32px 20px; }
    .form-row { grid-template-columns: 1fr !important; gap: 0; }

    /* フッター */
    footer {
      padding: 40px 24px !important;
      flex-direction: column !important;
      gap: 28px !important;
      text-align: center !important;
    }
    .footer-links {
      flex-wrap: wrap;
      justify-content: center;
      gap: 16px !important;
    }

    /* プライバシー */
    .privacy-wrap { padding: 120px 24px 80px; }
    .privacy-contact { padding: 28px 20px; }
  }
  /* FOOTER */
  footer {
    background: var(--warm);
    color: var(--muted);
    padding: 40px 160px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border);
  }
  .footer-logo {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: 0.06em;
  }
  .footer-logo span { color: var(--gold); }
  .footer-copy { font-size: 10px; letter-spacing: 0.2em; color: var(--soft); }
  .footer-links { display: flex; gap: 32px; list-style: none; }
  .footer-links a {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--muted);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s;
  }
  .footer-links a:hover { color: var(--gold); }

  /* リビール */
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  


/* ページ内アンカー不要なのでスクロールオフセット削除 */

  /* THANKS PAGE */
  .thanks-wrap {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
    padding: 120px 40px 80px;
    opacity: 0;
    transform: translateY(24px);
    animation: fadeUp 0.9s ease 0.2s forwards;
  }
  @keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
  }
  .thanks-icon {
    margin: 0 auto 40px;
    width: 72px;
    height: 72px;
  }
  .thanks-icon svg { width: 100%; height: 100%; }
  .thanks-label {
    font-size: 10px;
    letter-spacing: 0.5em;
    color: var(--amber);
    text-transform: uppercase;
    margin-bottom: 24px;
  }
  .thanks-title {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 32px;
    color: var(--ink);
  }
  .thanks-title em {
    font-style: normal;
    color: var(--amber);
  }
  .thanks-text {
    font-size: 14px;
    font-weight: 500;
    line-height: 2;
    color: var(--muted);
    margin-bottom: 56px;
    padding: 32px 40px;
    background: var(--paper);
    border: 1px solid var(--border);
    text-align: left;
  }
  .thanks-text p + p { margin-top: 16px; }
  .thanks-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--ink);
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--border);
    padding-bottom: 8px;
    transition: color 0.3s, border-color 0.3s;
  }
  .thanks-btn:hover { color: var(--amber); border-color: var(--amber); }
  .thanks-btn::before { content: '←'; transition: transform 0.3s; }
  .thanks-btn:hover::before { transform: translateX(-4px); }
  .thanks-footer {
    margin-top: 64px;
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--soft);
  }
  .thanks-footer a { color: var(--soft); text-decoration: none; }
  .thanks-footer a:hover { color: var(--amber); }

  /* PRIVACY PAGE */
  .privacy-wrap {
    max-width: 800px;
    margin: 0 auto;
    padding: 160px 40px 120px;
  }
  .privacy-title {
    font-size: 32px;
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    color: var(--ink);
  }
  .privacy-date {
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--soft);
    margin-bottom: 64px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
  }
  .privacy-section {
    margin-bottom: 48px;
  }
  .privacy-section h2 {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--ink);
    margin-bottom: 16px;
    padding-left: 12px;
    border-left: 2px solid var(--amber);
  }
  .privacy-section p {
    font-size: 14px;
    font-weight: 500;
    line-height: 2.1;
    color: var(--muted);
    margin-bottom: 12px;
  }
  .privacy-section ul {
    list-style: none;
    padding: 0;
  }
  .privacy-section ul li {
    font-size: 14px;
    font-weight: 500;
    line-height: 2.1;
    color: var(--muted);
    padding-left: 1.2em;
    position: relative;
  }
  .privacy-section ul li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: var(--amber);
  }
  .privacy-contact {
    margin-top: 64px;
    padding: 40px;
    background: var(--warm);
    border: 1px solid var(--border);
  }
  .privacy-contact p {
    font-size: 14px;
    font-weight: 500;
    line-height: 2;
    color: var(--muted);
  }
  .privacy-contact a {
    color: var(--amber);
    text-decoration: none;
  }
  .privacy-contact a:hover { text-decoration: underline; }
