/* ===== RESET & BASE ===== */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --coral: #C4745A;
    --coral-light: #D4896E;
    --coral-pale: #EDD5C8;
    --brown-deep: #3A2419;
    --brown-mid: #6B3F2A;
    --beige: #F5EDE4;
    --beige-warm: #EDE0D4;
    --cream: #FAF6F2;
    --gold: #B8965A;
    --text-dark: #2A1810;
    --text-mid: #5C3A28;
    --text-light: #9A7060;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Noto Serif JP', serif;
    background: var(--cream);
    color: var(--text-dark);
    overflow-x: hidden;
    cursor: none;
  }

  /* ===== CUSTOM CURSOR ===== */
  .cursor {
    position: fixed;
    width: 8px; height: 8px;
    background: var(--coral);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s;
    transform: translate(-50%, -50%);
  }
  .cursor-ring {
    position: fixed;
    width: 36px; height: 36px;
    border: 1px solid var(--coral);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), width 0.3s, height 0.3s, opacity 0.3s;
    transform: translate(-50%, -50%);
    opacity: 0.6;
  }
  .cursor-ring.hover { width: 56px; height: 56px; opacity: 1; }

  /* ===== NAV ===== */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 48px;
    mix-blend-mode: normal;
  }

  .nav-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
  }
  .nav-logo img {
    height: 56px;
    width: auto;
    filter: brightness(0) invert(1) drop-shadow(0 1px 8px rgba(0,0,0,0.4));
    transition: opacity 0.2s;
  }
  .nav-logo:hover img { opacity: 0.75; }

  .nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
  }
  .nav-links a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.12em;
    color: var(--cream);
    text-decoration: none;
    text-shadow: 0 1px 6px rgba(0,0,0,0.3);
    transition: opacity 0.2s;
  }
  .nav-links a:hover { opacity: 0.7; }

  /* ===== Q&A SECTION ===== */
  .qa-section {
    padding: 120px 8vw;
    background: var(--beige);
    position: relative;
  }
  .qa-section::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url('bg_seigaiha.png');
    background-size: 200px;
  }
  .qa-section .section-label { color: var(--coral); }
  .qa-section .section-heading { color: var(--brown-deep); }

  .qa-list {
    margin-top: 64px;
    max-width: 760px;
  }

  .qa-item {
    border-top: 1px solid var(--coral-pale);
    position: relative;
  }
  .qa-item:last-child { border-bottom: 1px solid var(--coral-pale); }

  .qa-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 0;
    cursor: pointer;
    gap: 24px;
  }
  .qa-question-text {
    display: flex;
    align-items: baseline;
    gap: 20px;
  }
  .qa-q-mark {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.5rem;
    color: var(--coral);
    flex-shrink: 0;
    line-height: 1;
  }
  .qa-question-label {
    font-family: 'Shippori Mincho', serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--brown-deep);
    letter-spacing: 0.05em;
    line-height: 1.6;
  }
  .qa-toggle {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    position: relative;
    border: 1px solid var(--coral-pale);
    border-radius: 50%;
  }
  .qa-toggle::before,
  .qa-toggle::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    background: var(--coral);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.3s;
  }
  .qa-toggle::before {
    width: 10px; height: 1px;
    transform: translate(-50%, -50%);
  }
  .qa-toggle::after {
    width: 1px; height: 10px;
    transform: translate(-50%, -50%);
  }
  .qa-item.open .qa-toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
  }

  .qa-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.4,0,0.2,1);
  }
  .qa-item.open .qa-answer {
    grid-template-rows: 1fr;
  }
  .qa-answer-inner {
    overflow: hidden;
  }
  .qa-answer-content {
    display: flex;
    gap: 20px;
    padding: 0 0 28px 0;
    align-items: baseline;
  }
  .qa-a-mark {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.5rem;
    color: var(--text-light);
    flex-shrink: 0;
    line-height: 1;
  }
  .qa-answer-text {
    font-size: 0.95rem;
    line-height: 2.1;
    color: var(--text-mid);
    letter-spacing: 0.05em;
  }

  /* ===== HERO ===== */
  .hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
  }

  .hero-slides {
    position: absolute;
    inset: 0;
  }

  .hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .hero-slide.active { opacity: 1; }
  .hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(58,36,25,0.55) 0%, rgba(58,36,25,0.2) 60%, transparent 100%);
  }

  .hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 8vw;
    z-index: 2;
  }

  .hero-eyebrow {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(0.85rem, 1.2vw, 1rem);
    color: var(--coral-pale);
    letter-spacing: 0.2em;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s 0.3s ease forwards;
  }

  .hero-title {
    font-family: 'Shippori Mincho', serif;
    font-size: clamp(1.45rem, 2.8vw, 2.6rem);
    font-weight: 400;
    color: var(--cream);
    line-height: 1.55;
    letter-spacing: 0.06em;
    text-shadow: 0 2px 30px rgba(0,0,0,0.3);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s 0.5s ease forwards;
    max-width: 620px;
  }

  .hero-title span {
    display: block;
    font-family: 'Shippori Mincho', serif;
    font-style: normal;
    font-size: clamp(0.8rem, 1.3vw, 1.05rem);
    font-weight: 400;
    color: rgba(250,246,242,0.65);
    margin-top: 12px;
    letter-spacing: 0.12em;
    line-height: 1.9;
  }

  .hero-brand {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(0.85rem, 1.2vw, 1rem);
    color: var(--coral-pale);
    letter-spacing: 0.35em;
    margin-top: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s 0.75s ease forwards;
  }

  .hero-desc {
    margin-top: 32px;
    font-size: clamp(0.85rem, 1.1vw, 1rem);
    color: rgba(250,246,242,0.85);
    line-height: 2;
    letter-spacing: 0.1em;
    max-width: 480px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s 0.8s ease forwards;
  }

  .hero-cta {
    margin-top: 48px;
    display: flex;
    gap: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s 1.1s ease forwards;
  }

  .btn-primary {
    display: inline-flex;        /* ← inline-block から変更 */
    align-items: center;         /* ← アイコンと文字を縦中央に */
    gap: 10px;                   /* ← アイコンと文字の間隔 */
    padding: 12px 40px;
    background: var(--coral);
    color: var(--cream);
    font-family: 'Shippori Mincho', serif;
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
    position: relative;
    overflow: hidden;
    border-radius: 8px;          /* ← 角丸を追加 */
  }
  .btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--coral-light);
    transform: translateX(-101%);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  }
  .btn-primary:hover::before { transform: translateX(0); }
  .btn-primary span { position: relative; z-index: 1; }

  .btn-outline {
    display: inline-block;
    padding: 15px 40px;
    border: 1px solid rgba(250,246,242,0.6);
    color: var(--cream);
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    font-style: italic;
    letter-spacing: 0.18em;
    text-decoration: none;
    transition: background 0.3s, border-color 0.3s;
  }
  .btn-outline:hover { background: rgba(250,246,242,0.1); border-color: var(--coral-pale); }

  .hero-dots {
    position: absolute;
    bottom: 40px;
    left: 8vw;
    display: flex;
    gap: 10px;
    z-index: 2;
  }
  .hero-dot {
    width: 24px; height: 2px;
    background: rgba(250,246,242,0.4);
    cursor: pointer;
    transition: background 0.3s, width 0.3s;
  }
  .hero-dot.active { width: 48px; background: var(--coral); }

  .hero-scroll {
    position: absolute;
    right: 48px;
    bottom: 40px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(250,246,242,0.6);
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    writing-mode: vertical-rl;
  }
  .scroll-line {
    width: 1px;
    height: 60px;
    background: rgba(250,246,242,0.3);
    position: relative;
    overflow: hidden;
  }
  .scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--coral);
    animation: scrollDown 1.8s infinite;
  }

  /* ===== SPLIT SECTION (C+A CORE) ===== */
  .split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    position: relative;
  }

  /* Left panel - sticky storytelling */
  .split-left {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 64px 80px 8vw;
    background: var(--cream);
    overflow: hidden;
  }

  .split-left::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--coral-pale), transparent);
  }

  .bg-pattern-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.035;
    background-image: url('bg_asanoha.png');
    background-size: 200px;
  }

  .section-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    font-weight: 300;
    color: var(--coral-pale);
    line-height: 1;
    margin-bottom: -8px;
  }

  .section-label {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 0.8rem;
    color: var(--coral);
    letter-spacing: 0.3em;
    margin-bottom: 24px;
    text-transform: uppercase;
  }

  .section-heading {
    font-family: 'Shippori Mincho', serif;
    font-size: clamp(1.0rem, 2vw, 2.0rem);
    font-weight: 500;
    color: var(--brown-deep);
    line-height: 1.4;
    letter-spacing: 0.05em;
    margin-bottom: 28px;
  }

  .section-heading em {
    font-style: normal;
    color: var(--coral);
    display: block;
  }

  .section-body {
    font-size: 0.8rem;
    line-height: 2.2;
    color: var(--text-mid);
    letter-spacing: 0.06em;
    max-width: 380px;
  }

  .section-divider {
    width: 40px;
    height: 1px;
    background: var(--coral);
    margin: 28px 0;
  }

  /* Right panel - scrolling photos */
  .split-right {
    padding: 80px 6vw 80px 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: var(--beige);
  }

  .photo-card {
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .photo-card.visible { opacity: 1; transform: translateY(0); }

  .photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
    display: block;
  }
  .photo-card:hover img { transform: scale(1.04); }

  .photo-card-tall { height: 480px; }
  .photo-card-short { height: 320px; }

  .photo-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 20px 24px;
    background: linear-gradient(to top, rgba(58,36,25,0.7), transparent);
    color: rgba(250,246,242,0.9);
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    transform: translateY(100%);
    transition: transform 0.4s ease;
  }
  .photo-card:hover .photo-caption { transform: translateY(0); }

  /* ===== CONCEPT SECTION ===== */
  .concept-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .concept-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: brightness(0.45) saturate(0.8);
  }

  .concept-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.08;
    background-image: url('bg_seigaiha.png');
    background-size: 150px;
  }

  .concept-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 80px 8vw;
    max-width: 800px;
  }

  .concept-eyebrow {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 0.85rem;
    color: var(--coral-pale);
    letter-spacing: 0.4em;
    text-transform: uppercase;
    margin-bottom: 24px;
  }

  .concept-title {
    font-family: 'Shippori Mincho', serif;
    font-size: clamp(1.6rem, 3vw, 3.0rem);
    font-weight: 400;
    color: var(--cream);
    line-height: 1.6;
    letter-spacing: 0.1em;
    margin-bottom: 32px;
  }

  .concept-title span {
    color: var(--coral-pale);
    display: inline;
  }

  .concept-body {
    font-size: 0.8rem;
    line-height: 2.3;
    color: rgba(250,246,242,0.8);
    letter-spacing: 0.08em;
    font-weight: 300;
  }

  /* ===== NAMI SECTION ===== */
  .nami-section {
    background: var(--cream);
    padding: 100px 8vw;
    position: relative;
  }
  .nami-section::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url('bg_washi.png');
    background-size: 300px;
  }

  .nami-card {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    gap: 72px;
    max-width: 900px;
  }

  .nami-photo {
    flex-shrink: 0;
    width: 300px;
    height: 380px;
    overflow: hidden;
    position: relative;
  }
  .nami-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 8s ease;
    display: block;
  }
  .nami-photo:hover img { transform: scale(1.05); }

  .nami-content {
    flex: 1;
    padding-top: 8px;
  }

  .nami-name {
    font-family: 'Shippori Mincho', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 500;
    color: var(--brown-deep);
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    line-height: 1.2;
  }

  .nami-title {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 0.95rem;
    color: var(--coral);
    letter-spacing: 0.2em;
    margin-bottom: 32px;
  }

  .nami-bio {
    font-size: 0.95rem;
    line-height: 2.2;
    color: var(--text-mid);
    letter-spacing: 0.05em;
  }
  .nami-bio p + p { margin-top: 20px; }

  /* ===== WORKS GRID ===== */
  .works-section {
    padding: 100px 8vw;
    background: var(--beige);
  }

  .section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 56px;
  }

  .section-header-text {}

  .works-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 16px;
  }

  .work-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .work-item.visible { opacity: 1; transform: translateY(0); }

  /* 1枚目（works03）：横幅いっぱい */
  .work-item:nth-child(1) { grid-column: 1 / 3; }
  .work-item:nth-child(2),
  .work-item:nth-child(3),
  .work-item:nth-child(4),
  .work-item:nth-child(5) { grid-column: auto; }

  .work-item img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
  }
  /* 横長メイン写真の高さ */
  .work-item:nth-child(1) img { min-height: 440px; max-height: 560px; object-position: center top; }
  .work-item:hover img { transform: scale(1.06); }

  .work-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(58,36,25,0.8) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
    display: flex;
    align-items: flex-end;
    padding: 24px;
  }
  .work-item:hover .work-overlay { opacity: 1; }

  .work-overlay-text {
    color: var(--cream);
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    transform: translateY(10px);
    transition: transform 0.4s;
  }
  .work-item:hover .work-overlay-text { transform: translateY(0); }

  /* ===== SERVICE SECTION ===== */
  .service-section {
    padding: 120px 8vw;
    background: var(--brown-deep);
    position: relative;
    overflow: hidden;
  }
  .service-section::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image: url('bg_karesansui.png');
    background-size: 400px;
    pointer-events: none;
  }
  .service-section .section-heading { color: var(--cream); }
  .service-section .section-label { color: var(--coral-light); }
  .service-section .section-divider { background: var(--coral); }

  /* カテゴリタブ */
  .service-tabs {
    display: flex;
    gap: 0;
    margin-top: 48px;
    border-bottom: 1px solid rgba(196,116,90,0.25);
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
  }
  .service-tab {
    padding: 14px 28px;
    font-family: 'Shippori Mincho', serif;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    color: rgba(250,246,242,0.45);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: color 0.3s, border-color 0.3s;
    white-space: nowrap;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
  }
  .service-tab:hover { color: rgba(250,246,242,0.75); }
  .service-tab.active { color: var(--coral-light); border-bottom-color: var(--coral); }

  /* タブパネル */
  .service-panel { display: none; position: relative; z-index: 1; }
  .service-panel.active { display: block; }

  /* プランカードグリッド */
  .plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
    margin-top: 32px;
  }
  .plan-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(196,116,90,0.18);
    padding: 28px 24px 22px;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s, transform 0.25s;
    position: relative;
    overflow: hidden;
  }
  .plan-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(196,116,90,0.07);
    transform: translateY(101%);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
    pointer-events: none;
  }
  .plan-card:hover { border-color: rgba(196,116,90,0.45); transform: translateY(-2px); }
  .plan-card:hover::before { transform: translateY(0); }
  .plan-en {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 0.72rem;
    letter-spacing: 0.35em;
    color: var(--coral);
    text-transform: uppercase;
    margin-bottom: 10px;
    position: relative;
  }
  .plan-name {
    font-family: 'Shippori Mincho', serif;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--cream);
    letter-spacing: 0.08em;
    line-height: 1.45;
    margin-bottom: 6px;
    position: relative;
  }
  .plan-time {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.78rem;
    color: rgba(250,246,242,0.38);
    letter-spacing: 0.18em;
    margin-bottom: 18px;
    position: relative;
  }
  .plan-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--coral-light);
    letter-spacing: 0.04em;
    margin-bottom: 18px;
    position: relative;
  }
  .plan-price small {
    font-size: 0.72rem;
    color: rgba(250,246,242,0.4);
    margin-left: 4px;
    font-family: 'Noto Serif JP', serif;
    letter-spacing: 0.08em;
  }
  .plan-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    position: relative;
    margin-bottom: 20px;
  }
  .badge {
    font-family: 'Noto Serif JP', serif;
    font-size: 0.65rem;
    letter-spacing: 0.06em;
    padding: 3px 9px;
    border-radius: 2px;
  }
  .badge-in { background: rgba(196,116,90,0.18); color: var(--coral-pale); border: 1px solid rgba(196,116,90,0.28); }
  .badge-op { background: rgba(184,150,90,0.12); color: rgba(184,150,90,0.9); border: 1px solid rgba(184,150,90,0.28); }
  .plan-detail-link {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    color: rgba(250,246,242,0.35);
    position: relative;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .plan-detail-link::after { content: '→'; transition: transform 0.3s; }
  .plan-card:hover .plan-detail-link { color: var(--coral-light); }
  .plan-card:hover .plan-detail-link::after { transform: translateX(4px); }

  /* オプション */
  .service-option-block {
    margin-top: 48px;
    padding: 32px 40px;
    border: 1px solid rgba(196,116,90,0.25);
    border-radius: 2px;
    background: rgba(196,116,90,0.05);
  }
  .service-option-label {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 0.8rem;
    letter-spacing: 0.35em;
    color: var(--coral);
    margin-bottom: 20px;
  }
  .service-option-list { display: flex; gap: 0; flex-direction: column; }
  .service-option-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 14px 0;
    border-bottom: 1px solid rgba(196,116,90,0.15);
  }
  .service-option-item:last-child { border-bottom: none; }
  .service-option-name {
    font-family: 'Shippori Mincho', serif;
    font-size: 0.95rem;
    color: rgba(250,246,242,0.8);
    letter-spacing: 0.1em;
  }
  .service-option-name small {
    font-size: 0.75rem;
    color: rgba(250,246,242,0.45);
    display: block;
    margin-top: 4px;
    letter-spacing: 0.05em;
  }
  .service-option-sub { font-size: 0.75rem; color: rgba(250,246,242,0.45); margin-left: 6px; }
  .service-option-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--coral-light);
    letter-spacing: 0.05em;
  }
  .service-option-price-kanji {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    color: var(--coral-light);
    letter-spacing: 0.05em;
  }

  /* ===== MODAL ===== */
  .modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(40,22,12,0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
  }
  .modal-overlay.open { opacity: 1; pointer-events: auto; }
  .modal-box {
    background: #271710;
    border: 1px solid rgba(196,116,90,0.28);
    max-width: 580px;
    width: 100%;
    max-height: 88vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(28px) scale(0.98);
    transition: transform 0.38s cubic-bezier(0.34,1.56,0.64,1);
    scrollbar-width: thin;
    scrollbar-color: rgba(196,116,90,0.3) transparent;
  }
  .modal-overlay.open .modal-box { transform: translateY(0) scale(1); }
  .modal-header-bar {
    position: sticky;
    top: 0;
    display: flex;
    justify-content: flex-end;
    padding: 14px 18px;
    background: #271710;
    z-index: 2;
    border-bottom: 1px solid rgba(196,116,90,0.1);
  }
  .modal-close-btn {
    width: 34px; height: 34px;
    background: none;
    border: 1px solid rgba(196,116,90,0.22);
    cursor: pointer;
    color: rgba(250,246,242,0.45);
    font-size: 1.1rem;
    display: flex; align-items: center; justify-content: center;
    transition: border-color 0.2s, color 0.2s;
    border-radius: 50%;
    line-height: 1;
  }
  .modal-close-btn:hover { border-color: var(--coral); color: var(--coral-light); }
  .modal-body { padding: 4px 32px 40px; }
  .modal-en {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 0.75rem;
    letter-spacing: 0.45em;
    color: var(--coral);
    text-transform: uppercase;
    margin-bottom: 8px;
  }
  .modal-name {
    font-family: 'Shippori Mincho', serif;
    font-size: 1.55rem;
    font-weight: 500;
    color: var(--cream);
    letter-spacing: 0.06em;
    line-height: 1.45;
    margin-bottom: 4px;
  }
  .modal-time {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.82rem;
    color: rgba(250,246,242,0.38);
    letter-spacing: 0.18em;
    margin-bottom: 18px;
  }
  .modal-price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 24px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(196,116,90,0.18);
  }
  .modal-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.3rem;
    color: var(--coral-light);
  }
  .modal-price small {
    font-size: 0.78rem;
    color: rgba(250,246,242,0.42);
    font-family: 'Noto Serif JP', serif;
    margin-left: 4px;
  }
  .modal-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 28px;
  }
  .modal-feat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    padding: 14px 8px;
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(196,116,90,0.1);
  }
  .modal-feat-label {
    font-family: 'Noto Serif JP', serif;
    font-size: 0.68rem;
    color: rgba(250,246,242,0.38);
    letter-spacing: 0.06em;
    text-align: center;
  }
  .modal-feat-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
  }
  .fv-in { color: var(--coral-light); }
  .fv-op { color: rgba(184,150,90,0.9); }
  .fv-no { color: rgba(250,246,242,0.18); }
  .modal-notes-title {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 0.72rem;
    letter-spacing: 0.35em;
    color: var(--coral);
    text-transform: uppercase;
    margin-bottom: 12px;
  }
  .modal-notes {
    font-family: 'Noto Serif JP', serif;
    font-size: 0.85rem;
    line-height: 2.1;
    color: rgba(250,246,242,0.58);
    letter-spacing: 0.04em;
  }

  /* ===== OPENING PRICE NOTICE ===== */
  .opening-notice-wrap {
    margin-top: 56px;
    margin-bottom: -16px;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .opening-notice-bar {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
  }

  .opening-notice-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, var(--gold), transparent);
    opacity: 0.5;
  }
  .opening-notice-line.right {
    background: linear-gradient(to left, var(--gold), transparent);
  }

  .opening-notice-label {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 0.72rem;
    letter-spacing: 0.45em;
    color: var(--gold);
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 0.9;
  }

  .opening-notice-text {
    font-family: 'Shippori Mincho', serif;
    font-size: 0.78rem;
    color: rgba(250,246,242,0.45);
    letter-spacing: 0.18em;
    line-height: 2;
    padding-left: 2px;
  }
  .opening-notice-text em {
    font-style: normal;
    color: rgba(184,150,90,0.7);
  }

  /* 各カードの価格バッジ */
  .opening-badge {
    display: inline-block;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    color: var(--gold);
    border: 1px solid rgba(184,150,90,0.45);
    padding: 3px 10px;
    border-radius: 1px;
    text-transform: uppercase;
    opacity: 0.85;
    white-space: nowrap;
  }

  /* ===== CONTACT ===== */
  .contact-section {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
  }

  .contact-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: brightness(0.35) saturate(0.6);
  }

  .contact-content {
    position: relative;
    z-index: 2;
    padding: 80px 8vw;
  }

  .contact-title {
    font-family: 'Shippori Mincho', serif;
    font-size: clamp(1rem, 2vw, 2.0rem);
    color: var(--cream);
    letter-spacing: 0.1em;
    margin-bottom: 20px;
  }

  .contact-sub {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1rem;
    color: var(--coral-pale);
    letter-spacing: 0.2em;
    margin-bottom: 48px;
  }

  /* ===== FOOTER ===== */
  footer {
    background: var(--brown-deep);
    padding: 48px 8vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(196,116,90,0.15);
  }

  .footer-logo img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.85;
  }

  .footer-copy {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 0.8rem;
    color: rgba(250,246,242,0.3);
    letter-spacing: 0.15em;
  }

  /* ===== ANIMATIONS ===== */
  @keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes scrollDown {
    0% { top: -100%; }
    100% { top: 100%; }
  }

  /* ===== HAMBURGER (スマホ用) ===== */
  .hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 201;
  }
  .hamburger span {
    display: block;
    height: 1px;
    background: var(--cream);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.3s;
    transform-origin: center;
  }
  .hamburger span:nth-child(1) { width: 24px; }
  .hamburger span:nth-child(2) { width: 16px; }
  .hamburger span:nth-child(3) { width: 24px; }
  .hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); width: 24px; }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); width: 24px; }

  .nav-drawer {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(58,36,25,0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
  }
  .nav-drawer.open { opacity: 1; pointer-events: auto; }
  .nav-drawer ul { list-style: none; display: flex; flex-direction: column; align-items: center; }
  .nav-drawer ul li a {
    display: block;
    padding: 18px 48px;
    font-family: 'Shippori Mincho', serif;
    font-size: 1.5rem;
    color: var(--cream);
    text-decoration: none;
    letter-spacing: 0.15em;
    transition: color 0.2s;
  }
  .nav-drawer ul li a:hover { color: var(--coral-pale); }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 768px) {
    /* カーソル非表示 */
    .cursor, .cursor-ring { display: none; }
    body { cursor: auto; }

    /* ナビ */
    nav { padding: 20px 6vw; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .nav-drawer { display: flex; }
    .nav-logo { font-size: 0.85rem; }

    /* ヒーロー */
    .hero-content { padding: 0 6vw; }
    .hero-title { font-size: clamp(1.2rem, 5.5vw, 1.8rem); }
    .hero-desc { font-size: 0.82rem; }
    .hero-scroll { display: none; }
    .hero-dots { left: 6vw; }

    /* スプリット */
    .split-section { grid-template-columns: 1fr; }
    .split-left { position: relative; height: auto; min-height: 0; padding: 56px 6vw; }
    .split-right { padding: 0 6vw 56px; }

    /* なみ */
    .nami-section { padding: 72px 6vw; }
    .nami-card { flex-direction: column; gap: 32px; }
    .nami-photo { width: 100%; height: 72vw; }

    /* ワークス */
    .works-section { padding: 72px 6vw; }
    /* スマホはカラム間隔を少し狭める */
    .works-grid { gap: 10px; }
    /* スマホ向け高さ調整 */
    .work-item img { min-height: 160px; }
    .work-item:nth-child(1) img { min-height: 220px; max-height: 320px; }

    /* サービス */
    .service-section { padding: 72px 6vw; }
    .service-tabs { gap: 0; overflow-x: auto; flex-wrap: nowrap; }
    .service-tab { padding: 12px 18px; font-size: 0.8rem; }
    .plan-grid { grid-template-columns: 1fr; }
    .modal-features { grid-template-columns: repeat(3, 1fr); }
    .modal-body { padding: 4px 20px 32px; }
    .service-option-block { padding: 24px 20px; }

    /* Q&A */
    .qa-section { padding: 72px 6vw; }
    .qa-list { margin-top: 40px; }

    /* コンタクト・コンセプト（parallax OFF） */
    .contact-bg, .concept-bg { background-attachment: scroll; }
    .contact-content { padding: 60px 6vw; }
    .concept-content { padding: 60px 6vw; }

    /* フッター */
    footer { flex-direction: column; gap: 12px; text-align: center; padding: 36px 6vw; }
  }

.itoiori-credit { --credit-color: #888888; }
    

      .itolab-credit { --credit-color: #888888; }

/* ===== EXTRACTED INLINE STYLES ===== */

/* Split section variants */
.split-left--beige { background: var(--beige); }
.split-right--cream { background: var(--cream); }
.bg-pattern-overlay--seigaiha { background-image: url('bg_seigaiha.png'); }

/* z-index helper (used on multiple elements inside split-left) */
.z-rel { position: relative; z-index: 1; }

/* Gallery label in works section header */
.works-gallery-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--text-light);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
}

/* Service option block override */
.service-option-block { margin-top: 48px; max-width: 900px; }

/* Contact CTA icons */
.cta-icon { flex-shrink: 0; filter: brightness(0) invert(1); }

/* Contact inline link group */
.contact-links {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

/* Contact policy/email links */
.contact-policy-link {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.3s;
}
.contact-policy-link:hover { color: rgba(255,255,255,0.8); }

/* Instagram button flex fix */
.btn-outline--flex {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Footer credit blocks */
.footer-credit {
  margin-top: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  justify-content: flex-end;
  width: 100%;
}
.footer-credit-text {
  font-size: 0.75rem;
  color: #888888;
}
.footer-credit-link {
  display: inline-block;
  opacity: 0.75;
  transition: opacity 0.2s;
}
.footer-credit-link:hover { opacity: 1; }
.footer-credit-logo {
  height: 36px;
  width: auto;
  vertical-align: middle;
}

  /* ===== CUSTOMER VOICE ===== */
  .voice-section {
    padding: 120px 8vw;
    background: var(--beige);
    position: relative;
  }
  .voice-section::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url('bg_seigaiha.png');
    background-size: 200px;
  }
  .voice-section .section-label { color: var(--coral); }
  .voice-section .section-heading { color: var(--brown-deep); }
  .voice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
    position: relative;
    z-index: 1;
  }
  .voice-card {
    background: var(--cream);
    border: 1px solid var(--coral-pale);
    padding: 36px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .voice-quote-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    color: var(--coral-pale);
    line-height: 1;
    margin-bottom: -12px;
  }
  .voice-text {
    font-size: 0.88rem;
    line-height: 2.1;
    color: var(--text-mid);
    letter-spacing: 0.05em;
    flex: 1;
  }
  .voice-footer {
    border-top: 1px solid var(--coral-pale);
    padding-top: 16px;
  }
  .voice-name {
    font-family: 'Shippori Mincho', serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--brown-deep);
    letter-spacing: 0.12em;
    margin-bottom: 4px;
  }
  .voice-tag {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 0.75rem;
    color: var(--coral);
    letter-spacing: 0.18em;
  }
  @media (max-width: 768px) {
    .voice-section { padding: 72px 6vw; }
    .voice-grid { grid-template-columns: 1fr; gap: 16px; }
  }
