/* ====================================================
   渋谷肉横丁 main.css
==================================================== */

:root {
    --brand: #C8102E;
    --brand-dark: #9b0c23;
    --brand-light: #fbeef0;
    --text: #1a1a1a;
    --text-muted: #6b6b6b;
    --bg: #ffffff;
    --bg-soft: #f7f7f7;
    --border: #e5e5e5;
    --footer-bg: #111111;
    --footer-text: #f5f5f5;
    --shadow-sm: 0 1px 2px rgba(0,0,0,.06);
    --shadow: 0 4px 16px rgba(0,0,0,.08);
    --shadow-lg: 0 8px 32px rgba(0,0,0,.12);
    --radius: 12px;
    --radius-lg: 18px;
    --container: 1200px;
    --header-h: 72px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }

/* ===== ヘッダー ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    height: var(--header-h);
    display: flex;
    align-items: center;
}
.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.site-header__title {
    color: var(--brand);
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: .02em;
}
.site-header__nav .nav-menu {
    display: flex;
    gap: 32px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.site-header__nav a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color .15s;
}
.site-header__nav a:hover { color: var(--brand); }

.site-header__toggle {
    display: none;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    padding: 8px;
}
.site-header__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    margin: 5px 0;
    transition: transform .2s, opacity .2s;
}

@media (max-width: 768px) {
    .site-header__toggle { display: block; }
    .site-header__nav {
        position: absolute;
        top: var(--header-h);
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1px solid var(--border);
        max-height: 0;
        overflow: hidden;
        transition: max-height .25s ease;
    }
    .site-header__nav.is-open { max-height: 400px; }
    .site-header__nav .nav-menu {
        flex-direction: column;
        padding: 16px 24px 24px;
        gap: 8px;
    }
    .site-header__nav .nav-menu li { padding: 12px 0; border-bottom: 1px solid var(--border); }
    .site-header__nav .nav-menu li:last-child { border-bottom: none; }
}

/* ===== ヒーロー ===== */
.hero {
    position: relative;
    min-height: 70vh;
    background-size: cover;
    background-position: center;
    background-color: #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero__overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    display: flex;
    align-items: center;
    width: 100%;
}
.hero__inner { width: 100%; }
.hero__card {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
    background: transparent;
    padding: 48px 32px;
    color: #fff;
}
.hero__title {
    font-size: clamp(26px, 3.4vw, 40px);
    font-weight: 700;
    margin: 0 0 16px;
    line-height: 1.4;
    color: #fff;
    letter-spacing: .02em;
    text-shadow: 0 2px 16px rgba(0,0,0,.85), 0 2px 4px rgba(0,0,0,.7), 0 0 24px rgba(0,0,0,.5);
}
.hero__subtitle {
    font-size: clamp(14px, 1.6vw, 17px);
    margin: 0 0 24px;
    opacity: 1;
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0,0,0,.85), 0 1px 3px rgba(0,0,0,.7);
}
.hero__date {
    font-size: 14px;
    opacity: .95;
    margin: 0;
    letter-spacing: .04em;
    text-shadow: 0 2px 8px rgba(0,0,0,.8);
}

/* スライダー版ヒーロー */
.hero--slider { padding: 0; min-height: 70vh; position: relative; overflow: hidden; }
.hero--slider .hero__slides { position: relative; width: 100%; height: 70vh; }
.hero__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: #2a2a2a;
    opacity: 0;
    pointer-events: none;
    transition: opacity .6s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero__slide.is-active { opacity: 1; pointer-events: auto; z-index: 2; }
.hero__slide .hero__overlay { position: absolute; inset: 0; }
.hero__link-cover { position: absolute; inset: 0; z-index: 1; }
.hero__card { position: relative; z-index: 2; }

.hero__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,.85);
    border: none;
    color: #333;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero__nav:hover { background: #fff; color: var(--brand); }
.hero__nav--prev { left: 16px; }
.hero__nav--next { right: 16px; }

.hero__dots {
    position: absolute;
    bottom: 24px;
    left: 0;
    right: 0;
    z-index: 5;
    display: flex;
    justify-content: center;
    gap: 10px;
}
.hero__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.4);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background .2s, transform .2s;
}
.hero__dot.is-active { background: #fff; transform: scale(1.2); }

/* ヘッダーロゴ画像のサイズ制御 */
.site-header .custom-logo,
.site-header img.custom-logo {
    max-height: 56px;
    width: auto;
    display: block;
}
.site-header__brand .custom-logo-link { display: inline-block; line-height: 1; }

/* ===== セクション共通 ===== */
.section {
    padding: 80px 0;
}
@media (max-width: 768px) {
    .section { padding: 56px 0; }
}
.section__title {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 700;
    text-align: center;
    margin: 0 0 12px;
    color: var(--text);
}
.section__rule {
    display: block;
    width: 56px;
    height: 3px;
    background: var(--brand);
    margin: 0 auto 24px;
    border-radius: 2px;
}
.section__lead {
    text-align: center;
    color: var(--text-muted);
    font-size: 15px;
    max-width: 720px;
    margin: 0 auto 48px;
}

/* ===== 肉横丁について ===== */
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    margin-top: 32px;
}
@media (max-width: 768px) {
    .about__grid { grid-template-columns: 1fr; gap: 32px; }
}
.about__media img,
.about__placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--radius);
    background: var(--bg-soft);
}
.about__body p {
    margin: 0 0 16px;
    color: var(--text);
    font-size: 15px;
    line-height: 1.9;
}
.about__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
}
.stat-card {
    background: var(--bg-soft);
    padding: 28px 16px;
    border-radius: var(--radius);
    text-align: center;
}
.stat-card__value {
    font-size: 32px;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-card__label {
    font-size: 13px;
    color: var(--text-muted);
}

/* ===== 店舗ピックアップ（TOP） ===== */
.pickup-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}
@media (max-width: 768px) { .pickup-grid { grid-template-columns: 1fr; } }

.pickup-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: transform .2s, box-shadow .2s;
}
.pickup-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.pickup-card__media {
    position: relative;
    aspect-ratio: 16/10;
    background: var(--bg-soft);
}
.pickup-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.pickup-card__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
}
.pickup-card__tags,
.shop-card__tags,
.single-shop__tags {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: flex-end;
    max-width: calc(100% - 24px);
    z-index: 2;
}
.pickup-card__tag,
.shop-card__tag,
.single-shop__tag {
    background: var(--brand);
    color: #fff;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(0,0,0,.15);
}
.pickup-card__body { padding: 20px; }
.pickup-card__title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--text);
}
.pickup-card__title::before {
    content: "";
    display: inline-block;
    width: 8px; height: 8px;
    background: var(--brand);
    border-radius: 50%;
    margin-right: 8px;
    vertical-align: middle;
}
.pickup-card__desc {
    margin: 0;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== 店舗一覧（archive-shop） ===== */
.shop-archive__list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.shop-card {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
@media (max-width: 768px) { .shop-card { grid-template-columns: 1fr; } }

.shop-card__media {
    position: relative;
    aspect-ratio: 4/3;
    background: var(--bg-soft);
}
.shop-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.shop-card__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
}
.shop-card__body { padding: 28px; display: flex; flex-direction: column; gap: 16px; }
.shop-card__title { font-size: 22px; font-weight: 700; margin: 0; }
.shop-card__desc { margin: 0; color: var(--text-muted); font-size: 14px; line-height: 1.8; }
.shop-card__meta { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.shop-card__meta-row {
    display: flex;
    align-items: center;
    gap: 12px;
}
.shop-card__meta-row .icon {
    color: var(--text-muted);
    flex: 0 0 auto;
}
.meta-label { font-size: 12px; color: var(--text-muted); line-height: 1.2; }
.meta-value { font-size: 14px; color: var(--text); font-weight: 500; }

/* ===== ボタン ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background .15s, transform .15s;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-dark); color: #fff; }
.btn-outline {
    background: #fff;
    color: var(--brand);
    border: 1.5px solid var(--brand);
}
.btn-outline:hover { background: var(--brand-light); color: var(--brand-dark); border-color: var(--brand-dark); }
.btn-block { width: 100%; }
.btn-lg { padding: 14px 32px; font-size: 15px; }

.shop-card__actions { display: flex; flex-direction: column; gap: 8px; }
.single-shop__actions { display: flex; flex-direction: column; gap: 8px; max-width: 480px; }

/* ===== アクセスセクション ===== */
.access__map {
    margin: 32px 0 24px;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 16/9;
    background: var(--bg-soft);
}
.access__map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
.access__info {
    text-align: center;
    color: var(--text);
    font-size: 14px;
    line-height: 1.9;
}
.access__info h3 { font-size: 18px; margin: 0 0 8px; }

/* ===== お知らせカルーセル ===== */
.news-carousel {
    position: relative;
    margin-top: 16px;
}
.news-carousel__viewport { overflow: hidden; }
.news-carousel__track {
    display: flex;
    transition: transform .4s ease;
    gap: 24px;
}
.news-carousel__slide {
    flex: 0 0 calc((100% - 48px) / 3);
    min-width: 0;
}
@media (max-width: 1024px) {
    .news-carousel__slide { flex-basis: calc((100% - 24px) / 2); }
    .news-carousel__track { gap: 24px; }
}
@media (max-width: 640px) {
    .news-carousel__slide { flex-basis: 100%; }
}
.news-card {
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.news-card__media { aspect-ratio: 16/10; background: var(--bg-soft); }
.news-card__image { width: 100%; height: 100%; object-fit: cover; }
.news-card__placeholder { width: 100%; height: 100%; background: linear-gradient(135deg,#f0f0f0,#e0e0e0); }
.news-card__body { padding: 20px; }
.news-card__date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 8px;
}
.news-card__title {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 8px;
    line-height: 1.5;
}
.news-card__title a { color: var(--text); }
.news-card__title a:hover { color: var(--brand); }
.news-card__desc {
    margin: 0;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
}
.news-carousel__nav {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
    color: var(--text-muted);
    z-index: 5;
}
.news-carousel__nav:hover { color: var(--brand); border-color: var(--brand); }
.news-carousel__nav--prev { left: -20px; }
.news-carousel__nav--next { right: -20px; }
@media (max-width: 1280px) {
    .news-carousel__nav--prev { left: 8px; }
    .news-carousel__nav--next { right: 8px; }
}
.news-carousel__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}
.news-carousel__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    padding: 0;
}
.news-carousel__dot.is-active { background: var(--brand); }

/* ===== ロゴスライダー ===== */
.logo-slider-section { background: var(--bg-soft); }
.logo-slider {
    overflow: hidden;
    margin-top: 16px;
    -webkit-mask-image: linear-gradient(to right, transparent, black 60px, black calc(100% - 60px), transparent);
            mask-image: linear-gradient(to right, transparent, black 60px, black calc(100% - 60px), transparent);
}
.logo-slider__track {
    display: flex;
    gap: 48px;
    width: max-content;
    animation: nyc-logo-scroll 40s linear infinite;
}
.logo-slider:hover .logo-slider__track { animation-play-state: paused; }
.logo-slider__item {
    flex: 0 0 auto;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: var(--radius);
    padding: 16px 32px;
    min-width: 200px;
    box-shadow: var(--shadow-sm);
}
.logo-slider__item img {
    max-height: 70px;
    width: auto;
    object-fit: contain;
}
@keyframes nyc-logo-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ===== 共通：ページヒーロー ===== */
.page-hero {
    background: var(--bg-soft);
    padding: 56px 0 32px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}
.page-hero__title {
    font-size: clamp(24px, 4vw, 36px);
    margin: 0 0 8px;
    color: var(--text);
}
.page-hero__title::after {
    content: "";
    display: block;
    width: 56px;
    height: 3px;
    background: var(--brand);
    margin: 12px auto 0;
    border-radius: 2px;
}
.page-hero__lead {
    color: var(--text-muted);
    margin: 0;
}

/* ===== 単一店舗ページ ===== */
.single-shop { padding: 56px 0; }
.back-link { display: inline-block; margin-bottom: 24px; color: var(--text-muted); }
.single-shop__media { position: relative; border-radius: var(--radius); overflow: hidden; margin-bottom: 24px; }
.single-shop__media img { width: 100%; max-height: 480px; object-fit: cover; }
.single-shop__title { font-size: clamp(24px, 4vw, 32px); margin: 0 0 16px; }
.single-shop__lead { font-size: 16px; color: var(--text-muted); margin: 0 0 24px; }
.single-shop__content { margin-bottom: 32px; line-height: 1.9; }
.single-shop__info { width: 100%; border-collapse: collapse; margin-bottom: 32px; }
.single-shop__info th, .single-shop__info td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--border); font-size: 14px; vertical-align: top; }
.single-shop__info th { width: 140px; color: var(--text-muted); font-weight: 500; background: var(--bg-soft); }

/* ===== お問い合わせ ===== */
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
}
@media (max-width: 768px) { .contact__grid { grid-template-columns: 1fr; gap: 32px; } }

.contact__info h2 {
    font-size: 18px;
    margin: 24px 0 8px;
    border-left: 3px solid var(--brand);
    padding-left: 12px;
}
.contact__info h2:first-child { margin-top: 0; }
.contact__info p { margin: 0; color: var(--text); line-height: 1.9; font-size: 14px; }

.contact__form,
.contact-form { background: var(--bg-soft); padding: 32px; border-radius: var(--radius); }
.contact-form label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 8px; }
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    background: #fff;
    font-family: inherit;
    margin-top: 6px;
}
.contact-form input:focus,
.contact-form textarea:focus { outline: 2px solid var(--brand); border-color: var(--brand); }
.form-note { font-size: 12px; color: var(--text-muted); margin-top: 12px; }

/* ===== フッター ===== */
.site-footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 56px 0 24px;
    margin-top: 80px;
}
.site-footer__cols {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 32px;
}
@media (max-width: 768px) { .site-footer__cols { grid-template-columns: 1fr; gap: 24px; } }

.site-footer__brand { margin: 0 0 12px; }
.site-footer__brand-text { font-size: 20px; margin: 0; color: #fff; }
.site-footer__logo { max-height: 64px; width: auto; display: block; filter: brightness(0) invert(1); /* 黒ロゴを白に反転 */ }
.site-footer__logo-link { display: inline-block; line-height: 1; }
.site-footer__tagline { font-size: 13px; opacity: .75; line-height: 1.8; margin: 0; }
.site-footer__heading { font-size: 14px; font-weight: 700; margin: 0 0 12px; opacity: .9; }
.site-footer__col p { font-size: 13px; opacity: .75; line-height: 1.9; margin: 0; }
.footer-menu { list-style: none; padding: 0; margin: 0; }
.footer-menu li { margin-bottom: 8px; }
.footer-menu a { color: var(--footer-text); opacity: .75; font-size: 13px; }
.footer-menu a:hover { opacity: 1; }
.site-footer__copyright {
    text-align: center;
    font-size: 12px;
    opacity: .55;
    margin: 24px 0 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.08);
}

/* ===== アイコン（CSSベース、依存ゼロ） ===== */
.icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    vertical-align: -3px;
}
.icon-clock { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23999' stroke-width='2'><circle cx='12' cy='12' r='9'/><path d='M12 7v5l3 3'/></svg>"); }
.icon-phone { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23C8102E' stroke-width='2'><path d='M3 5c0-1 1-2 2-2h2l2 5-2 1c1 3 3 5 6 6l1-2 5 2v2c0 1-1 2-2 2C9 19 5 15 3 5Z'/></svg>"); }
.icon-pin { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23C8102E' stroke-width='2'><path d='M12 22s7-7 7-12a7 7 0 0 0-14 0c0 5 7 12 7 12Z'/><circle cx='12' cy='10' r='2.5'/></svg>"); }
.icon-calendar { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23999' stroke-width='2'><rect x='3' y='5' width='18' height='16' rx='2'/><path d='M3 9h18M8 3v4M16 3v4'/></svg>"); }
.icon-external { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23ffffff' stroke-width='2'><path d='M14 4h6v6M20 4l-9 9M10 4H6a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-4'/></svg>"); }
.icon-external-r { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23C8102E' stroke-width='2'><path d='M14 4h6v6M20 4l-9 9M10 4H6a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-4'/></svg>"); }
.icon-phone-w { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23ffffff' stroke-width='2'><path d='M3 5c0-1 1-2 2-2h2l2 5-2 1c1 3 3 5 6 6l1-2 5 2v2c0 1-1 2-2 2C9 19 5 15 3 5Z'/></svg>"); }
.icon-arrow-right { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23ffffff' stroke-width='2'><path d='M5 12h14M13 5l7 7-7 7'/></svg>"); }

/* ===== モーション ===== */
@media (prefers-reduced-motion: reduce) {
    [data-anim] { opacity: 1 !important; transform: none !important; transition: none !important; }
}

[data-anim] {
    opacity: 0;
    transition: opacity .8s ease, transform .8s ease;
    will-change: opacity, transform;
}
[data-anim="fade-up"]   { transform: translateY(28px); }
[data-anim="fade-in"]   { transform: none; }
[data-anim="zoom-in"]   { transform: scale(.96); }
[data-anim="fade-left"] { transform: translateX(-32px); }
[data-anim="fade-right"]{ transform: translateX(32px); }

[data-anim].is-visible {
    opacity: 1;
    transform: none;
}

/* 子要素を順に出すstagger */
[data-anim-stagger] > * {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .65s ease, transform .65s ease;
}
[data-anim-stagger].is-visible > * {
    opacity: 1;
    transform: none;
}
[data-anim-stagger].is-visible > *:nth-child(1) { transition-delay: .00s; }
[data-anim-stagger].is-visible > *:nth-child(2) { transition-delay: .08s; }
[data-anim-stagger].is-visible > *:nth-child(3) { transition-delay: .16s; }
[data-anim-stagger].is-visible > *:nth-child(4) { transition-delay: .24s; }
[data-anim-stagger].is-visible > *:nth-child(5) { transition-delay: .32s; }
[data-anim-stagger].is-visible > *:nth-child(6) { transition-delay: .40s; }
[data-anim-stagger].is-visible > *:nth-child(7) { transition-delay: .48s; }
[data-anim-stagger].is-visible > *:nth-child(8) { transition-delay: .56s; }

/* ヒーロー初期表示モーション */
.hero__card .hero__title,
.hero__card .hero__subtitle,
.hero__card .hero__date {
    opacity: 0;
    transform: translateY(20px);
    animation: nyc-rise .9s ease forwards;
}
.hero__card .hero__title    { animation-delay: .15s; }
.hero__card .hero__subtitle { animation-delay: .35s; }
.hero__card .hero__date     { animation-delay: .55s; }

@keyframes nyc-rise {
    to { opacity: 1; transform: translateY(0); }
}

/* セクション見出しの赤線が左から伸びる */
.section__rule, .page-hero__title::after {
    transform-origin: center;
    transform: scaleX(0);
    transition: transform .7s ease .15s;
}
[data-anim].is-visible .section__rule,
.is-visible.section__rule,
.is-visible .page-hero__title::after { transform: scaleX(1); }
.is-visible.page-hero__title::after { transform: scaleX(1); }

/* カードホバー演出強化 */
.pickup-card, .news-card, .shop-card { transition: transform .25s ease, box-shadow .25s ease; }
.pickup-card:hover, .news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.shop-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.pickup-card__image, .news-card__image, .shop-card__image { transition: transform .6s ease; }
.pickup-card:hover .pickup-card__image,
.news-card:hover .news-card__image,
.shop-card:hover .shop-card__image { transform: scale(1.05); }

/* スクロールで画像がズームアウト */
.about__media img { transition: transform 1.2s ease; transform: scale(1.04); }
[data-anim].is-visible.about__media img,
.about__media[data-anim].is-visible img { transform: scale(1); }

/* ボタンのホバーリフト */
.btn-primary { transition: background .15s, transform .15s, box-shadow .15s; }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(200,16,46,.3); }

/* ===== 汎用 ===== */
.empty-state { text-align: center; color: var(--text-muted); padding: 40px 16px; }
.generic-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.generic-page { padding: 40px 0; line-height: 1.9; }
.page-title { font-size: 28px; margin: 24px 0; }
