/* ===== 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;
  }

  /* ===== 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: none;
    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: 'Lora', serif;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.12em;
    color: var(--brown-mid);
    text-decoration: none;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--coral); }

  /* ===== 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: 'Lora', 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: 'Lora', 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;
  }

  /* ===== CONCEPT SECTION ===== */
  .concept-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--brown-deep); /* 背景画像なし時のフォールバック */
  }

  .concept-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    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: 'Lora', 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: 'Lora', 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); }

  .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: 'Lora', 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: 1.00rem;
    letter-spacing: 0.12em;
    color: var(--coral);
    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(--cream); 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: 'Lora', 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.35rem;
    font-weight: 500;
    color: var(--cream);
    letter-spacing: 0.08em;
    line-height: 1.45;
    margin-bottom: 6px;
    position: relative;
  }
  .plan-time {
    font-family: 'Lora', serif;
    font-size: 0.82rem;
    color: rgba(250,246,242,0.65);
    letter-spacing: 0.18em;
    margin-bottom: 18px;
    position: relative;
  }
  .plan-price {
    font-family: 'Lora', serif;
    font-size: 2.1rem;
    color: var(--coral-light);
    letter-spacing: 0.04em;
    margin-bottom: 18px;
    position: relative;
  }
  .plan-price small {
    font-size: 0.78rem;
    color: rgba(250,246,242,0.75);
    margin-left: 4px;
    font-family: 'Noto Serif JP', serif;
    letter-spacing: 0.08em;
  }
  .plan-detail-link {
    font-family: 'Lora', 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;
    max-width: 900px;
    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: 'Lora', 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: 'Lora', serif;
    font-size: 1.3rem;
    color: var(--coral-light);
    letter-spacing: 0.05em;
  }
  .service-option-price-kanji {
    font-family: 'Lora', 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: 'Lora', 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: 'Lora', 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: 'Lora', 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-notes-title {
    font-family: 'Lora', 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;
  }

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

  .contact-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    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: 'Lora', 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: 'Lora', 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(--brown-deep);
    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); }

  /* ===== SECTION COMMON ===== */
  .section-num {
    font-family: 'Lora', serif;
    font-size: 5rem;
    font-weight: 300;
    color: var(--coral-pale);
    line-height: 1;
    margin-bottom: -8px;
  }
  .section-label {
    font-family: 'Lora', 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;
  }

  /* ===== EXTRACTED INLINE STYLES ===== */
  .z-rel { position: relative; z-index: 1; }
  .works-gallery-label {
    font-family: 'Lora', serif;
    font-style: italic;
    color: var(--text-light);
    font-size: 0.9rem;
    letter-spacing: 0.15em;
  }
  .cta-icon { flex-shrink: 0; filter: brightness(0) invert(1); }
  .contact-links {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }
  .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); }
  .btn-outline--flex {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .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; }

  /* ===== BTN ===== */
  .btn-primary {
    display: inline-flex;
    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: 'Lora', 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); }

  /* ===== 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: 'Lora', 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: 'Lora', serif;
    font-style: italic;
    font-size: 0.75rem;
    color: var(--coral);
    letter-spacing: 0.18em;
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 768px) {
    nav { padding: 20px 6vw; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .nav-drawer { display: flex; }
    .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-body { padding: 4px 20px 32px; }
    .service-option-block { padding: 24px 20px; }
    .qa-section { padding: 72px 6vw; }
    .qa-list { margin-top: 40px; }
    .contact-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; }
    .voice-section { padding: 72px 6vw; }
    .voice-grid { grid-template-columns: 1fr; gap: 16px; }
  }

/* ===== NEW HERO ===== */
.hero-new {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--beige);
}
.hero-new-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='104' viewBox='0 0 60 104'%3E%3Cg fill='none' stroke='%233A2419' stroke-width='1'%3E%3Cpolygon points='30,0 60,17.3 60,52 30,69.3 0,52 0,17.3'/%3E%3Cpolygon points='30,34.6 60,52 60,86.6 30,104 0,86.6 0,52'/%3E%3Cline x1='30' y1='0' x2='30' y2='34.6'/%3E%3Cline x1='0' y1='17.3' x2='30' y2='34.6'/%3E%3Cline x1='60' y1='17.3' x2='30' y2='34.6'/%3E%3Cline x1='30' y1='69.3' x2='30' y2='104'/%3E%3Cline x1='0' y1='86.6' x2='30' y2='69.3'/%3E%3Cline x1='60' y1='86.6' x2='30' y2='69.3'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 60px 104px;
}
.hero-new-line-left,
.hero-new-line-right {
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: 0.35;
}
.hero-new-line-left  { left: 60px; }
.hero-new-line-right { right: 60px; }
.hero-new-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 40px 100px;
  animation: heroFadeUp 1.6s ease forwards;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-new-eyebrow {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 0.82rem;
  letter-spacing: 0.38em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
  opacity: 0;
  animation: heroFadeUp 1.4s ease 0.2s forwards;
}
.hero-new-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 auto 28px;
  opacity: 0;
  animation: heroFadeUp 1.4s ease 0.35s forwards;
}
.hero-new-divider::before,
.hero-new-divider::after {
  content: '';
  display: block;
  width: 56px;
  height: 1px;
  background: var(--coral);
  opacity: 0.5;
}
.hero-new-divider-diamond {
  width: 6px;
  height: 6px;
  background: var(--coral);
  transform: rotate(45deg);
  opacity: 0.75;
}
.hero-new-title {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(1.5rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--brown-deep);
  line-height: 1.65;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  opacity: 0;
  animation: heroFadeUp 1.4s ease 0.5s forwards;
}
.hero-new-sub {
  font-size: clamp(0.78rem, 1.3vw, 0.9rem);
  color: var(--text-mid);
  line-height: 2.2;
  letter-spacing: 0.1em;
  margin-bottom: 48px;
  opacity: 0;
  animation: heroFadeUp 1.4s ease 0.7s forwards;
}
.hero-new-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  opacity: 0;
  animation: heroFadeUp 1.4s ease 0.9s forwards;
}
.btn-hero-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: var(--coral);
  color: var(--cream);
  font-family: 'Shippori Mincho', serif;
  font-size: 0.88rem;
  letter-spacing: 0.2em;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}
.btn-hero-line::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-hero-line:hover::before { transform: translateX(0); }
.btn-hero-line span { position: relative; z-index: 1; }
.btn-hero-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border: 1px solid rgba(58,36,25,0.25);
  color: var(--brown-mid);
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 0.88rem;
  letter-spacing: 0.18em;
  text-decoration: none;
  transition: border-color 0.3s, color 0.3s;
}
.btn-hero-text:hover { border-color: var(--coral); color: var(--coral); }
.btn-hero-text::after { content: '→'; transition: transform 0.3s; }
.btn-hero-text:hover::after { transform: translateX(4px); }
.hero-new-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: heroFadeUp 1.4s ease 1.2s forwards;
  pointer-events: none;
}
.hero-new-scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(58,36,25,0.18);
  position: relative;
  overflow: hidden;
}
.hero-new-scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--coral);
  animation: scrollDown 1.8s infinite;
}
.hero-new-scroll-label {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  color: var(--text-light);
}
@media (max-width: 768px) {
  .hero-new-line-left  { left: 20px; }
  .hero-new-line-right { right: 20px; }
  .hero-new-content { padding: 60px 24px 90px; }
  .hero-new-title { font-size: clamp(1.3rem, 6vw, 1.8rem); }
  .hero-new-cta { flex-direction: column; align-items: center; }
}

/* ===== SERVICE SECTION NEW (D layout) ===== */
.service-section-new {
  padding: 100px 8vw;
  background: var(--cream);
}
.section-heading-dark {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.1rem, 2.2vw, 1.8rem);
  font-weight: 500;
  color: var(--brown-deep);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.section-divider-coral {
  width: 36px; height: 1px;
  background: var(--coral);
  margin: 20px 0 52px;
}
.menu-block {
  max-width: 760px;
  margin-bottom: 72px;
}
.menu-block-heading {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 500;
  color: var(--brown-deep);
  letter-spacing: 0.1em;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--coral);
}
.menu-block-subtitle {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.88rem;
  color: var(--text-mid);
  letter-spacing: 0.1em;
  margin-top: 10px;
  margin-bottom: 16px;
}
.menu-block-rule {
  width: 100%; height: 1px;
  background: var(--coral-pale);
}
.menu-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: baseline;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--coral-pale);
}
.menu-row-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: #1a0c06;
  letter-spacing: 0.06em;
}
.menu-row-note {
  font-size: 0.8rem;
  color: var(--coral);
  letter-spacing: 0.05em;
  margin-top: 3px;
  display: block;
  font-family: 'Noto Serif JP', serif;
}
.menu-row-time {
  font-family: 'Lora', serif;
  font-size: 0.9rem;
  color: var(--text-mid);
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.menu-row-price {
  font-family: 'Lora', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: #1a0c06;
  letter-spacing: 0.04em;
  white-space: nowrap;
  text-align: right;
}
.menu-row-price small {
  font-size: 0.78rem;
  color: var(--text-mid);
  font-family: 'Noto Serif JP', serif;
  margin-left: 3px;
}
.menu-option-block {
  max-width: 760px;
  padding: 32px 36px;
  background: var(--beige);
  border-left: 3px solid var(--coral);
}
.menu-option-label {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 0.78rem;
  color: var(--coral);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}
.menu-option-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(196,116,90,0.18);
}
.menu-option-row:last-child { border-bottom: none; }
.menu-option-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.0rem;
  font-weight: 500;
  color: #1a0c06;
  letter-spacing: 0.06em;
}
.menu-option-name small {
  font-size: 0.8rem;
  color: var(--text-mid);
  display: block;
  margin-top: 3px;
  font-weight: 400;
}
.menu-option-price {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #1a0c06;
  white-space: nowrap;
  text-align: right;
}
@media (max-width: 768px) {
  .service-section-new { padding: 72px 6vw; }
  .menu-option-block { padding: 24px 20px; }
  .menu-row {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 4px 16px;
  }
  .menu-row-name { grid-column: 1; grid-row: 1; }
  .menu-row-time { grid-column: 1; grid-row: 2; }
  .menu-row-price { grid-column: 2; grid-row: 1 / 3; align-self: center; }
}
