@charset "utf-8";

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
    background: #FFF000;
    color: #222;
    line-height: 1.7;
}

a { color: #222; }
a:hover { opacity: 0.75; }

img { max-width: 100%; height: auto; display: block; }

/* ============== ヒーロー ============== */
.shop-hero {
    width: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    padding: 32px 16px;
}
.hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}
.shop-hero img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    object-position: center top;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.hero-caption {
    color: #fff;
}
.hero-caption .shop-name {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: bold;
    margin: 0 0 12px;
    letter-spacing: 0.04em;
    color: #FFF000;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.hero-caption .shop-lead {
    font-size: clamp(15px, 1.6vw, 18px);
    font-weight: bold;
    margin: 0 0 24px;
    color: #fff;
}
.hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    transition: transform 0.15s, box-shadow 0.15s;
    border: 2px solid transparent;
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
    opacity: 1;
}
.btn-primary {
    background: #FFF000;
    color: #000;
}
.btn-secondary {
    background: transparent;
    color: #FFF000;
    border-color: #FFF000;
}
.btn-lg {
    padding: 18px 36px;
    font-size: 22px;
}

/* ============== ナビ ============== */
.shop-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #000;
    border-bottom: 2px solid #FFF000;
}
.nav-inner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 2px;
    padding: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.nav-inner::-webkit-scrollbar { display: none; }
.shop-nav a {
    color: #FFF000;
    text-decoration: none;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 6px;
    transition: background 0.15s;
    white-space: nowrap;
    flex-shrink: 0;
}
.shop-nav a:hover {
    background: rgba(255, 240, 0, 0.15);
    opacity: 1;
}

/* ============== レイアウト ============== */
.shop-wrapper {
    max-width: 960px;
    margin: 0 auto;
    padding: 24px 16px 64px;
}

.section {
    background: #fff;
    border-radius: 12px;
    padding: 28px 24px;
    margin-bottom: 24px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.section-title {
    font-size: clamp(20px, 3vw, 26px);
    font-weight: bold;
    margin: 0 0 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid #000;
    position: relative;
}
.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 60px;
    height: 3px;
    background: #FFD700;
}

.section-desc {
    color: #666;
    margin: 0 0 20px;
}

/* ============== 特徴グリッド ============== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}
.feature-card {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.feature-icon {
    font-size: 40px;
    margin-bottom: 12px;
}
.feature-card h3 {
    font-size: 16px;
    margin: 0 0 8px;
    color: #000;
}
.feature-card p {
    font-size: 14px;
    color: #555;
    margin: 0;
    line-height: 1.6;
}

/* ============== 店舗情報 ============== */
.shop-info {
    background: #fff;
    border-radius: 12px;
    padding: 28px 24px;
    margin-bottom: 24px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.info-list { margin: 0; padding: 0; }
.info-row {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px dashed #ccc;
}
.info-row:last-child { border-bottom: none; }
.info-row dt {
    flex: 0 0 110px;
    font-weight: bold;
    color: #555;
}
.info-row dd { margin: 0; flex: 1; }
.info-row a { font-size: 1.15em; font-weight: bold; color: #c00; }

/* ============== 料金プラン ============== */
.shop-plan {
    display: flex;
    align-items: center;
    gap: 24px;
    background: linear-gradient(135deg, #fffacd 0%, #fff 100%);
    border: 2px solid #FFD700;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.plan-badge {
    flex: 0 0 auto;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #000;
    color: #FFF000;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.plan-time { font-size: 56px; font-weight: bold; line-height: 1; }
.plan-unit { font-size: 20px; font-weight: bold; }
.plan-detail { flex: 1; min-width: 220px; }
.plan-price {
    font-size: clamp(18px, 3vw, 24px);
    border-left: 6px solid #000;
    padding-left: 12px;
    margin: 0 0 12px;
}
.plan-price strong { font-size: 1.3em; color: #c00; }
.plan-nomi {
    border-left: 6px solid #666;
    padding-left: 12px;
    margin: 0 0 12px;
}
.plan-label { font-weight: bold; }
.plan-remark { margin: 0; font-weight: bold; color: #c00; }

.plan-note {
    background: #f8f8f8;
    border-radius: 8px;
    padding: 20px;
    margin-top: 16px;
}
.plan-note ol { margin: 8px 0; padding-left: 24px; }
.plan-note ol li { margin-bottom: 4px; }
.plan-note .small { font-size: 13px; color: #666; margin-top: 10px; }

/* ============== メニュー ============== */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}
.menu-card {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 20px;
}
.menu-card h3 {
    margin: 0 0 12px;
    font-size: 16px;
    color: #000;
    padding-bottom: 8px;
    border-bottom: 2px solid #FFD700;
}
.menu-card ul { padding-left: 20px; margin: 0; }
.menu-card li { margin-bottom: 4px; }
.menu-card .small { font-size: 12px; color: #666; margin: 8px 0 0; }

/* ============== ギャラリー(修正: 人物の頭が切れないように) ============== */
.shop-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
}
.shop-gallery figure {
    margin: 0;
    overflow: hidden;
    border-radius: 10px;
    background: #f0f0f0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.shop-gallery img {
    width: 100%;
    aspect-ratio: 3 / 4;          /* 縦長の人物写真に合わせて縦長 */
    object-fit: cover;
    object-position: center top;   /* 頭が切れないよう上を優先 */
    transition: transform 0.4s;
}
.shop-gallery figure:hover img {
    transform: scale(1.03);
}

/* ============== おすすめ ============== */
.recommend-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}
.recommend-card {
    background: #fffacd;
    border: 2px solid #FFD700;
    border-radius: 10px;
    padding: 16px;
    text-align: center;
    font-weight: bold;
}

/* ============== アクセス ============== */
.access-box {
    background: #f8f8f8;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 16px;
}
.access-box p { margin: 0 0 8px; }
.access-box .small { font-size: 13px; color: #666; margin-top: 10px; }
.map-wrap {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* ============== FAQ ============== */
.faq-list details {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 14px 18px;
    margin-bottom: 10px;
    transition: background 0.15s;
}
.faq-list details[open] {
    background: #fffacd;
    border-color: #FFD700;
}
.faq-list summary {
    font-weight: bold;
    cursor: pointer;
    outline: none;
    padding: 4px 0;
    position: relative;
    padding-right: 28px;
    list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::marker { content: ''; }
.faq-list summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    font-weight: bold;
    color: #c00;
    transition: transform 0.2s;
}
.faq-list details[open] summary::after {
    content: '−';
}
.faq-list details p {
    margin: 10px 0 0;
    padding-top: 10px;
    border-top: 1px dashed #ccc;
    color: #444;
    font-size: 14px;
    line-height: 1.7;
}

/* ============== CTA セクション ============== */
.cta-section {
    background: #000;
    color: #FFF000;
    border-radius: 12px;
    padding: 40px 24px;
    text-align: center;
    margin-bottom: 24px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.cta-section h2 {
    margin: 0 0 12px;
    font-size: clamp(22px, 3vw, 28px);
}
.cta-section p {
    margin: 0 0 20px;
    color: #fff;
}
.cta-section .btn-primary {
    background: #FFF000;
    color: #000;
}
.cta-section .small {
    font-size: 13px;
    margin-top: 16px;
    color: #ccc;
}

/* ============== フッター ============== */
.shop-footer {
    background: #000;
    color: #FFF000;
    text-align: center;
    padding: 20px;
    font-size: 13px;
}
.shop-footer p { margin: 0; }

/* ============== レスポンシブ ============== */
@media (max-width: 768px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .shop-hero {
        padding: 20px 12px;
    }
    .shop-hero img {
        max-height: 380px;
    }
    .hero-caption {
        text-align: center;
    }
    .hero-cta {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .shop-wrapper { padding: 16px 12px 48px; }
    .section { padding: 20px 16px; }
    .shop-plan { gap: 14px; padding: 16px; justify-content: center; }
    .plan-badge { width: 96px; height: 96px; }
    .plan-time { font-size: 44px; }
    .info-row { flex-direction: column; gap: 2px; padding: 10px 0; }
    .info-row dt { flex: none; }
    .shop-gallery { gap: 10px; }
    .btn-lg { padding: 16px 28px; font-size: 20px; }
    .shop-nav a { padding: 10px 10px; font-size: 13px; }
    .nav-inner { justify-content: flex-start; }
}
