/* ツチヤフォトスタジオ 共通スタイルシート */

    :root {
      --gold: #b8860b;
      --gold-light: #d4a017;
      --gold-pale: #f5edd6;
      --white: #ffffff;
      --off-white: #fafaf8;
      --gray-100: #f4f4f2;
      --gray-200: #e8e8e4;
      --gray-400: #9e9e96;
      --gray-700: #4a4a42;
      --gray-900: #1a1a14;
      --red: #c0392b;
      --font-serif: 'Noto Serif JP', serif;
      --font-sans: 'Noto Sans JP', sans-serif;
    }

    /* ── リセット ── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; overflow-x: hidden; }
    body {
      font-family: var(--font-sans);
      color: var(--gray-900);
      background: var(--white);
      line-height: 1.7;
      font-size: 15px;
      overflow-x: hidden;          /* 横スクロール完全防止 */
      -webkit-text-size-adjust: 100%; /* iOS フォント自動拡大防止 */
    }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; height: auto; display: block; }

    /* ── HEADER ── */
    .site-header {
      position: sticky; top: 0; z-index: 1000;
      background: var(--white);
      border-bottom: 2px solid var(--gold);
      box-shadow: 0 2px 12px rgba(184,134,11,.12);
    }
    .header-inner {
      max-width: 1100px; margin: 0 auto;
      padding: 0 12px;
      display: flex; align-items: center;
      justify-content: space-between;
      min-height: 56px;
      gap: 8px;
    }
    .logo-area {
      display: flex; flex-direction: column;
      line-height: 1.2; flex: 1; min-width: 0;
    }
    .logo-main {
      font-family: var(--font-serif);
      font-size: clamp(13px, 3.8vw, 20px);
      font-weight: 700;
      color: var(--gray-900);
      letter-spacing: .05em;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .logo-sub {
      font-size: 9px; color: var(--gold);
      letter-spacing: .12em;
      text-transform: uppercase;
      white-space: nowrap;
    }
    .header-tel {
      font-family: var(--font-serif);
      font-size: clamp(14px, 4vw, 22px);
      font-weight: 700; color: var(--gold);
      letter-spacing: .04em;
      white-space: nowrap;
      flex-shrink: 0;
    }
    .header-tel a { color: inherit; }
    .header-tel small {
      font-size: 9px; display: block;
      text-align: center; color: var(--gray-400);
      font-family: var(--font-sans); font-weight: 400;
    }

    /* ── ハンバーガー ── */
    .hamburger {
      display: flex;               /* 常に表示 */
      flex-direction: column; gap: 5px;
      background: none; border: none; cursor: pointer;
      padding: 8px; flex-shrink: 0;
      -webkit-tap-highlight-color: transparent;
    }
    .hamburger span {
      display: block; width: 22px; height: 2px;
      background: var(--gray-900); border-radius: 2px;
      transition: all .3s;
      pointer-events: none;
    }
    .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); }

    /* ── デスクトップではハンバーガー非表示 ── */
    @media (min-width: 769px) {
      .hamburger { display: none; }
    }

    /* ── グローバルナビ ── */
    nav.global-nav { background: var(--gray-900); }

    /* スマホ: 非表示→ハンバーガーで開く */
    @media (max-width: 768px) {
      nav.global-nav { display: none; }
      nav.global-nav.open { display: block; }
    }

    .nav-inner {
      max-width: 1100px; margin: 0 auto;
      padding: 0 12px;
      display: flex; flex-wrap: wrap;
    }
    .nav-inner a {
      color: var(--gray-200);
      font-size: 12px; padding: 10px 10px;
      letter-spacing: .04em;
      transition: color .2s, background .2s;
      display: block;
    }
    .nav-inner a:hover, .nav-inner a.active { color: var(--gold); }

    @media (max-width: 768px) {
      .nav-inner { flex-direction: column; }
      .nav-inner a {
        border-top: 1px solid #2a2a22;
        padding: 14px 16px;
        font-size: 14px;
      }
    }

    /* ── FOOTER ── */
    .site-footer {
      background: var(--gray-900);
      color: var(--gray-200);
      padding: 48px 16px 24px;
      margin-top: 64px;
    }
    .footer-inner {
      max-width: 1100px; margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 28px;
      padding-bottom: 32px;
      border-bottom: 1px solid #333;
    }
    .footer-brand .logo-main { color: var(--white); font-size: 17px; }
    .footer-brand address {
      font-style: normal; font-size: 13px;
      color: var(--gray-400); margin-top: 12px; line-height: 1.8;
    }
    .footer-brand .f-tel {
      font-size: 20px; color: var(--gold); font-weight: 700;
      font-family: var(--font-serif); margin-top: 8px;
    }
    .footer-col h4 {
      font-size: 11px; letter-spacing: .18em;
      text-transform: uppercase; color: var(--gold);
      margin-bottom: 10px; padding-bottom: 6px;
      border-bottom: 1px solid #333;
    }
    .footer-col a {
      display: block; font-size: 13px;
      color: var(--gray-400); padding: 4px 0;
      transition: color .2s;
    }
    .footer-col a:hover { color: var(--white); }
    .footer-bottom {
      text-align: center; margin-top: 24px;
      font-size: 11px; color: var(--gray-400);
    }

    /* ── CALENDAR ── */
    .cal-section {
      background: var(--off-white);
      border-top: 1px solid var(--gray-200);
      border-bottom: 1px solid var(--gray-200);
      padding: 32px 12px;
    }
    .cal-wrap {
      max-width: 400px; margin: 0 auto;
      background: var(--white);
      border-radius: 8px;
      box-shadow: 0 2px 12px rgba(0,0,0,.06);
      overflow: hidden;
    }
    .cal-header {
      background: var(--gray-900); color: var(--white);
      display: flex; align-items: center;
      justify-content: space-between; padding: 10px 14px;
    }
    .cal-header button {
      background: none; border: none; color: var(--gold);
      font-size: 22px; cursor: pointer; padding: 4px 10px;
      -webkit-tap-highlight-color: transparent;
      min-width: 44px; min-height: 44px;  /* タップ領域確保 */
      display: flex; align-items: center; justify-content: center;
    }
    .cal-title {
      font-family: var(--font-serif); font-size: 15px; font-weight: 700;
    }
    .cal-grid { display: grid; grid-template-columns: repeat(7,1fr); }
    .cal-grid .dow {
      text-align: center; font-size: 11px; font-weight: 700;
      padding: 7px 2px; background: var(--gray-100);
      color: var(--gray-700); letter-spacing: .04em;
    }
    .cal-grid .dow.sun { color: var(--red); }
    .cal-grid .dow.sat { color: #1a5fa8; }
    .cal-day {
      text-align: center;
      padding: 10px 2px;
      font-size: 13px;
      cursor: pointer;
      border-top: 1px solid var(--gray-100);
      -webkit-tap-highlight-color: transparent;
      min-height: 40px;
      display: flex; align-items: center; justify-content: center;
    }
    .cal-day.empty { cursor: default; pointer-events: none; }
    .cal-day.sun { color: var(--red); }
    .cal-day.sat { color: #1a5fa8; }
    .cal-day.closed { background: #fde8e8; color: var(--red); font-weight: 700; }
    .cal-day.half { background: #fff9db; color: #856404; font-weight: 700; }
    .cal-day.today { outline: 2px solid var(--gold); outline-offset: -2px; font-weight: 700; }
    .cal-legend {
      display: flex; gap: 10px; flex-wrap: wrap;
      justify-content: center; padding: 10px 12px;
      font-size: 11px; border-top: 1px solid var(--gray-200);
    }
    .cal-legend span { display: flex; align-items: center; gap: 4px; }
    .cal-legend .dot { width: 10px; height: 10px; border-radius: 2px; flex-shrink: 0; }
    .dot-closed { background: #fde8e8; border: 1px solid var(--red); }
    .dot-half { background: #fff9db; border: 1px solid #856404; }

    /* ── ポップアップ ── */
    .cal-popup {
      display: none; position: fixed; z-index: 9999;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      background: var(--white); border-radius: 12px;
      box-shadow: 0 8px 48px rgba(0,0,0,.22);
      padding: 28px 24px; width: 90%; max-width: 300px;
      text-align: center;
    }
    .cal-popup.open { display: block; }
    .cal-overlay {
      display: none; position: fixed; z-index: 9998;
      inset: 0; background: rgba(0,0,0,.45);
    }
    .cal-overlay.open { display: block; }
    .cal-popup h3 {
      font-family: var(--font-serif); font-size: 17px; margin-bottom: 10px;
    }
    .cal-popup p { font-size: 14px; color: var(--gray-700); }
    .cal-popup .close-btn {
      margin-top: 18px; padding: 10px 28px;
      background: var(--gold); color: var(--white);
      border: none; border-radius: 4px; cursor: pointer;
      font-size: 14px; min-height: 44px;
      -webkit-tap-highlight-color: transparent;
    }
    .popup-closed { color: var(--red); font-weight: 700; font-size: 16px; }
    .popup-half { color: #856404; font-weight: 700; font-size: 16px; }
    .popup-open { color: #1a7a3c; font-weight: 700; font-size: 16px; }

    /* ── UTILITIES ── */
    .container { max-width: 1100px; margin: 0 auto; padding: 0 16px; }
    .section { padding: 48px 16px; }

    .sec-sub {
      font-size: 11px; letter-spacing: .2em;
      text-transform: uppercase; color: var(--gold); margin-bottom: 6px;
    }
    .sec-title {
      font-family: var(--font-serif);
      font-size: clamp(20px, 4.5vw, 28px);
      font-weight: 700; letter-spacing: .05em;
    }
    .sec-title span { color: var(--gold); }

    .btn-gold {
      display: inline-block;
      background: var(--gold); color: var(--white);
      padding: 13px 24px; border-radius: 4px;
      font-size: 14px; font-weight: 700; letter-spacing: .06em;
      transition: background .2s;
      -webkit-tap-highlight-color: transparent;
      min-height: 48px; line-height: 1.4;
      text-align: center;
    }
    .btn-gold:hover, .btn-gold:active { background: var(--gold-light); }
    .btn-outline {
      display: inline-block;
      border: 2px solid var(--gold); color: var(--gold);
      padding: 11px 22px; border-radius: 4px;
      font-size: 14px; font-weight: 700; letter-spacing: .06em;
      transition: all .2s;
      min-height: 48px; line-height: 1.4; text-align: center;
      -webkit-tap-highlight-color: transparent;
    }
    .btn-outline:hover, .btn-outline:active {
      background: var(--gold); color: var(--white);
    }

    /* ── PAGE HERO ── */
    .page-hero {
      background: linear-gradient(135deg, var(--gray-900) 0%, #2c2c20 100%);
      color: var(--white); text-align: center;
      padding: 44px 16px 36px;
    }
    .page-hero .ph-label {
      font-size: 10px; letter-spacing: .28em;
      text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
    }
    .page-hero h1 {
      font-family: var(--font-serif);
      font-size: clamp(20px, 5vw, 34px);
      font-weight: 700; letter-spacing: .06em;
    }
    .page-hero p { color: var(--gray-400); margin-top: 10px; font-size: 13px; }

    /* ── TABLE — スマホでスクロール可 ── */
    .table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .price-table {
      width: 100%; border-collapse: collapse;
      margin-top: 16px; min-width: 320px;
    }
    .price-table th, .price-table td {
      border: 1px solid var(--gray-200);
      padding: 10px 12px; font-size: 13px; text-align: left;
      vertical-align: top;
    }
    .price-table th {
      background: var(--gray-900); color: var(--white);
      font-weight: 500; letter-spacing: .03em; white-space: nowrap;
    }
    .price-table tr:nth-child(even) td { background: var(--gray-100); }
    .price-table .price { color: var(--gold); font-weight: 700; }

    /* ── BREADCRUMB ── */
    .breadcrumb {
      max-width: 1100px; margin: 0 auto;
      padding: 10px 16px; font-size: 12px;
      color: var(--gray-400); overflow: hidden;
      text-overflow: ellipsis; white-space: nowrap;
    }
    .breadcrumb a { color: var(--gray-400); }
    .breadcrumb a:hover { color: var(--gold); }
    .breadcrumb span { color: var(--gray-700); }

    /* ── HOURS BOX ── */
    .hours-box {
      background: var(--gray-900); color: var(--white);
      border-radius: 8px; padding: 20px 16px; margin-top: 20px;
    }
    .hours-box h4 {
      font-family: var(--font-serif); font-size: 15px;
      color: var(--gold); margin-bottom: 10px;
    }
    .hours-row {
      display: flex; justify-content: space-between; align-items: center;
      font-size: 13px; padding: 7px 0;
      border-bottom: 1px solid #333; gap: 8px;
    }
    .hours-row:last-child { border-bottom: none; }
    .hours-row span:first-child { flex-shrink: 0; }
  

/* ━━ トップページ専用 ━━ */

    /* ── HERO 新デザイン：白背景・2カラム ── */
    .hero{background:var(--white);border-bottom:2px solid var(--gold);padding:32px 16px;}
    .hero-inner{max-width:1100px;margin:0 auto;display:flex;align-items:center;gap:32px;flex-wrap:wrap;}
    .hero-photo{flex:0 0 280px;max-width:280px;}
    .hero-photo img{width:100%;height:220px;object-fit:cover;border-radius:8px;border:2px solid var(--gold);}
    .hero-photo-placeholder{width:100%;height:220px;background:var(--gray-100);border-radius:8px;border:2px dashed var(--gold);display:flex;flex-direction:column;align-items:center;justify-content:center;gap:10px;color:var(--gray-400);font-size:13px;text-align:center;}
    .hero-content{flex:1;min-width:260px;}
    .hero-badge{display:inline-block;background:var(--gold-pale);border:1px solid var(--gold);color:var(--gold);font-size:11px;padding:4px 12px;border-radius:20px;letter-spacing:.08em;margin-bottom:12px;}
    .hero h1{font-family:var(--font-serif);font-size:clamp(18px,4vw,32px);font-weight:700;letter-spacing:.05em;line-height:1.4;margin-bottom:12px;color:var(--gray-900);}
    .hero h1 em{color:var(--gold);font-style:normal;}
    .hero-lead{font-size:clamp(13px,2.5vw,14px);color:var(--gray-700);max-width:480px;margin:0 0 20px;}
    .hero-btns{display:flex;gap:10px;flex-wrap:wrap;}
    @media(max-width:600px){
      .hero-photo{flex:0 0 100%;max-width:100%;}
      .hero-photo,.hero-photo-placeholder{height:180px;}
    }

    .grid4{display:grid;grid-template-columns:repeat(2,1fr);gap:2px;background:var(--gray-200);}
    @media(min-width:600px){.grid4{grid-template-columns:repeat(4,1fr);}}
    .grid4-item{background:var(--white);text-align:center;padding:24px 8px;}
    .grid4-item .g4-icon{font-size:32px;margin-bottom:8px;line-height:1;}
    .grid4-item h3{font-size:13px;font-weight:700;}
    .grid4-item p{font-size:11px;color:var(--gray-400);margin-top:3px;}

    .strip{background:var(--gray-900);color:var(--white);padding:14px 16px;display:flex;flex-wrap:wrap;gap:14px;justify-content:center;align-items:center;}
    .strip-item{display:flex;align-items:center;gap:6px;font-size:13px;}
    .strip-item .ico{font-size:18px;}
    .strip-item strong{color:var(--gold);}

    .cards-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:16px;margin-top:28px;align-items:start;}
    .service-card{display:block;background:var(--white);border-radius:10px;border:1px solid var(--gray-200);box-shadow:0 2px 12px rgba(0,0,0,.06);overflow:hidden;cursor:pointer;color:inherit;text-decoration:none;transition:box-shadow .2s,transform .2s,border-color .2s;}
.service-card:hover{box-shadow:0 6px 20px rgba(184,134,11,.18);border-color:var(--gold);transform:translateY(-2px);}
    .sc-thumb{height:120px;display:flex;align-items:center;justify-content:center;font-size:48px;overflow:hidden;}
    .sc-thumb img{height:100%;width:auto;max-width:none;object-fit:contain;flex-shrink:0;display:block;margin:0 auto;}
    .sc-body{padding:14px 16px 18px;}
    .sc-body h3{font-family:var(--font-serif);font-size:16px;margin-bottom:6px;}
    .sc-body p{font-size:13px;color:var(--gray-700);line-height:1.6;}
    .sc-body a{display:inline-block;margin-top:10px;font-size:12px;color:var(--gold);font-weight:700;}

    .features-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:16px;margin-top:28px;}
    .feat-item{text-align:center;padding:20px 12px;border:1px solid var(--gray-200);border-radius:8px;}
    .feat-item .fi{font-size:28px;margin-bottom:8px;line-height:1;}
    .feat-item h4{font-size:14px;font-weight:700;margin-bottom:4px;}
    .feat-item p{font-size:12px;color:var(--gray-400);line-height:1.5;}

    .news-list{margin-top:20px;}
    .news-item{display:flex;gap:10px;align-items:flex-start;padding:12px 0;border-bottom:1px solid var(--gray-200);font-size:13px;flex-wrap:wrap;}
    .news-date{font-size:12px;color:var(--gray-400);white-space:nowrap;flex-shrink:0;}
    .news-tag{background:var(--gold);color:var(--white);font-size:10px;padding:2px 7px;border-radius:2px;white-space:nowrap;font-weight:700;flex-shrink:0;}
  

