/* =============================================
   夢雪 in 兵庫丹波 — Claude版 LP
   ============================================= */

:root {
    --color-deep-indigo: #1a2c42;
    --color-soft-indigo: #2d4a6f;
    --color-matcha: #789478;
    --color-matcha-light: #a3b8a3;
    --color-bg: #faf7f4;
    --color-bg-cool: #f0f3f5;
    --color-white: #ffffff;
    --color-text: #3a3a3a;
    --color-text-light: #6b6b6b;
    --color-border: #e8e4e0;
    --color-line-green: #06C755;
    --color-instagram: #c13584;
    --font-serif: 'Noto Serif JP', 'YuMincho', 'Yu Mincho', serif;
    --section-gap: 100px;
    --section-gap-sp: 70px;
    --transition-smooth: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---- Reset ---- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-serif);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.9;
    overflow-x: hidden;
    font-weight: 300;
    letter-spacing: 0.04em;
    font-size: 15px;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

ul { list-style: none; }

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px;
}

.sp-only { display: none; }
@media (max-width: 768px) {
    .sp-only { display: inline; }
}


/* =============================================
   ヘッダー
   ============================================= */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 72px;
    z-index: 100;
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

header.scrolled {
    background-color: rgba(250, 247, 244, 0.96);
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.presented-by {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.presented-text {
    font-size: 9px;
    letter-spacing: 0.15em;
    color: var(--color-matcha);
    text-transform: uppercase;
    font-weight: 400;
}

.farm-logo {
    height: 22px;
    width: auto;
    object-fit: contain;
}

.nav-desktop ul {
    display: flex;
    gap: 32px;
}

.nav-desktop a {
    font-size: 13px;
    letter-spacing: 0.08em;
    color: var(--color-deep-indigo);
    position: relative;
    font-weight: 400;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-matcha);
    transition: width 0.3s ease;
}

.nav-desktop a:hover::after {
    width: 100%;
}

.nav-desktop a:hover {
    opacity: 1;
}

/* ハンバーガー */
.nav-toggle {
    display: none;
    width: 28px;
    height: 20px;
    position: relative;
    cursor: pointer;
    z-index: 200;
    background: none;
    border: none;
    padding: 0;
}

.nav-toggle span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--color-deep-indigo);
    transition: 0.35s var(--transition-smooth);
}

.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-toggle span:nth-child(3) { bottom: 0; }

.nav-toggle.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

@media (max-width: 768px) {
    .nav-desktop { display: none; }
    .nav-toggle { display: block; }
}

/* モバイルナビ */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 140;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.nav-mobile {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    height: 100dvh;
    background-color: var(--color-bg);
    z-index: 150;
    transition: right 0.45s var(--transition-smooth);
    padding: 100px 36px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.nav-mobile.active {
    right: 0;
}

.nav-mobile ul li {
    margin-bottom: 28px;
}

.nav-mobile a {
    font-size: 16px;
    letter-spacing: 0.1em;
    display: block;
    color: var(--color-deep-indigo);
}

.nav-mobile-sns {
    display: flex;
    gap: 12px;
    padding-top: 30px;
    border-top: 1px solid var(--color-border);
}

.nav-mobile-sns a {
    font-size: 12px;
    padding: 8px 16px;
    border: 1px solid var(--color-deep-indigo);
    border-radius: 2px;
    letter-spacing: 0.05em;
}


/* =============================================
   ファーストビュー
   ============================================= */

.hero {
    height: 100vh;
    height: 100dvh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    overflow: hidden;
    text-align: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(26, 44, 66, 0.25) 0%,
        rgba(26, 44, 66, 0.40) 60%,
        rgba(26, 44, 66, 0.55) 100%
    );
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    padding: 0 24px;
    animation: heroFadeIn 1.2s ease-out;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-logo-wrap {
    background: rgba(255, 255, 255, 0.88);
    padding: 24px 32px 18px;
    border-radius: 6px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.hero-logo {
    width: 110px;
    height: auto;
}

.hero-text {
    margin-top: 4px;
}

.main-copy {
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    margin-bottom: 14px;
    line-height: 1.5;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

.sub-copy {
    font-size: 1rem;
    letter-spacing: 0.12em;
    line-height: 2;
    opacity: 0.92;
    font-weight: 300;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.15);
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 3px;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    color: var(--color-white);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    background: rgba(255, 255, 255, 0.08);
    transition: all 0.35s ease;
}

.btn-hero:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: var(--color-white);
    opacity: 1;
    transform: translateY(-1px);
}

.btn-hero svg {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .main-copy {
        font-size: 1.5rem;
        letter-spacing: 0.18em;
    }
    .sub-copy {
        font-size: 0.88rem;
    }
    .hero-cta {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        align-items: center;
    }
    .btn-hero {
        width: 240px;
        justify-content: center;
    }
    .hero-logo {
        width: 90px;
    }
    .hero-logo-wrap {
        padding: 18px 26px 14px;
    }
}


/* =============================================
   共通セクションスタイル
   ============================================= */

.section {
    padding: var(--section-gap) 0;
}

@media (max-width: 768px) {
    .section {
        padding: var(--section-gap-sp) 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-en {
    display: block;
    font-size: 11px;
    color: var(--color-matcha);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 400;
}

.section-title {
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    position: relative;
    padding-bottom: 18px;
    color: var(--color-deep-indigo);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 1px;
    background-color: var(--color-matcha);
}

.section-lead {
    margin-top: 16px;
    font-size: 0.9rem;
    color: var(--color-matcha);
    letter-spacing: 0.12em;
    font-weight: 400;
}


/* =============================================
   3. 夢雪とは
   ============================================= */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img img {
    border-radius: 4px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.about-lead {
    font-size: 1.25rem;
    color: var(--color-deep-indigo);
    margin-bottom: 4px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
}

.about-spacer {
    height: 28px;
}

.about-text p {
    margin-bottom: 1.4em;
    line-height: 2.1;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .about-lead {
        font-size: 1.1rem;
    }
}


/* =============================================
   4. お品書き
   ============================================= */

.menu-section {
    background-color: var(--color-bg-cool);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.menu-card {
    background: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    transition: transform 0.5s var(--transition-smooth),
                box-shadow 0.5s var(--transition-smooth);
    cursor: default;
}

.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.menu-card-img {
    height: 180px;
    overflow: hidden;
}

.menu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--transition-smooth);
}

.menu-card:hover .menu-card-img img {
    transform: scale(1.04);
}

.menu-card-body {
    padding: 20px 16px 24px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.menu-card-body h3 {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--color-deep-indigo);
    margin-bottom: 12px;
    letter-spacing: 0.04em;
    line-height: 1.5;
}

.menu-card-body p {
    font-size: 0.78rem;
    color: var(--color-text-light);
    line-height: 1.9;
    letter-spacing: 0.02em;
}

@media (max-width: 1024px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .menu-card-body h3 {
        font-size: 0.95rem;
    }
    .menu-card-body p {
        font-size: 0.82rem;
    }
}

@media (max-width: 480px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .menu-card-img {
        height: 140px;
    }
    .menu-card-body {
        padding: 14px 10px 18px;
    }
    .menu-card-body h3 {
        font-size: 0.82rem;
        margin-bottom: 8px;
    }
    .menu-card-body p {
        font-size: 0.72rem;
        line-height: 1.8;
    }
}


/* =============================================
   お客様の声
   ============================================= */

.voices-section {
    background-color: var(--color-bg-cool);
}

/* 写真帯 */
.voices-photos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 48px;
}

.voices-photo-item {
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.voices-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--transition-smooth);
}

.voices-photo-item:hover img {
    transform: scale(1.03);
}

/* 声カードグリッド */
.voices-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.voice-card {
    background: var(--color-white);
    border-radius: 8px;
    padding: 28px 26px;
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.05);
    position: relative;
}

.voice-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    left: 20px;
    font-size: 2.8rem;
    line-height: 1;
    color: var(--color-matcha-light);
    font-family: Georgia, serif;
    opacity: 0.5;
}

.voice-headline {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-deep-indigo);
    line-height: 1.85;
    margin-bottom: 12px;
    letter-spacing: 0.02em;
    padding-top: 20px;
}

.voice-detail {
    font-size: 0.78rem;
    color: var(--color-text-light);
    line-height: 2;
}

@media (max-width: 768px) {
    .voices-photos {
        gap: 8px;
        margin-bottom: 32px;
    }

    .voices-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .voice-card {
        padding: 24px 20px;
    }

    .voice-card::before {
        top: 14px;
        left: 16px;
        font-size: 2.4rem;
    }
}


/* =============================================
   5. 三つのこだわり
   ============================================= */

.commitment-list {
    display: flex;
    flex-direction: column;
    gap: 64px;
    max-width: 720px;
    margin: 0 auto;
}

.commitment-item {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.commitment-number {
    flex-shrink: 0;
    width: 48px;
    text-align: center;
}

.commitment-number span {
    font-size: 1.8rem;
    color: var(--color-matcha);
    font-weight: 400;
    display: block;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--color-matcha-light);
}

.commitment-body h3 {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-deep-indigo);
    margin-bottom: 14px;
    letter-spacing: 0.08em;
}

.commitment-body p {
    margin-bottom: 0.9em;
    line-height: 2;
}

.commitment-closing {
    margin-top: 12px;
    font-style: italic;
    color: var(--color-matcha);
    font-weight: 400;
    letter-spacing: 0.06em;
}

@media (max-width: 768px) {
    .commitment-item {
        flex-direction: column;
        gap: 14px;
    }
    .commitment-number {
        width: auto;
    }
    .commitment-number span {
        display: inline-block;
        border-bottom: 1px solid var(--color-matcha-light);
        padding-bottom: 4px;
    }
}


/* =============================================
   つくり手セクション
   ============================================= */

.makers-section {
    background-color: var(--color-bg);
}

.makers-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 820px;
    margin: 0 auto;
}

.makers-img {
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.makers-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.makers-text {
    text-align: left;
}

.makers-lead {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--color-deep-indigo);
    letter-spacing: 0.12em;
    line-height: 1.9;
    margin-bottom: 20px;
}

.makers-body {
    font-size: 0.92rem;
    line-height: 2.1;
    color: var(--color-text-light);
}

@media (max-width: 768px) {
    .makers-inner {
        grid-template-columns: 1fr;
        gap: 28px;
        max-width: 480px;
    }

    .makers-lead {
        font-size: 1.2rem;
        text-align: center;
    }

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


/* =============================================
   6. 古民家ギャラリー
   ============================================= */

.gallery-section {
    background-color: var(--color-bg-cool);
}

.gallery-lead {
    text-align: center;
    margin-bottom: 48px;
    font-size: 0.92rem;
    line-height: 2.2;
    color: var(--color-text-light);
    letter-spacing: 0.06em;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: auto auto auto;
    gap: 10px;
}

/* 1枚目: 梁と和傘 — 左上に大きく */
.gallery-item-hero {
    grid-column: 1 / 4;
    grid-row: 1 / 3;
}

/* 2枚目: ステンドグラスギター — 右上 */
.gallery-grid .gallery-item:nth-child(2) {
    grid-column: 4 / 7;
    grid-row: 1 / 2;
}

/* 3枚目: 青空と外観 — 右中 */
.gallery-grid .gallery-item:nth-child(3) {
    grid-column: 4 / 7;
    grid-row: 2 / 3;
}

/* 4枚目: ランプたち — 下段ワイド */
.gallery-item-wide {
    grid-column: 1 / 4;
    grid-row: 3 / 4;
}

/* 5枚目: しつらえ */
.gallery-grid .gallery-item:nth-child(5) {
    grid-column: 4 / 5;
    grid-row: 3 / 4;
}

/* 6枚目: ざくろ */
.gallery-grid .gallery-item:nth-child(6) {
    grid-column: 5 / 7;
    grid-row: 3 / 4;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--transition-smooth);
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.04);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 14px 10px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.45));
    color: var(--color-white);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-align: right;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 8px;
    }

    .gallery-item-hero {
        grid-column: 1 / -1;
        grid-row: auto;
        aspect-ratio: 16 / 10;
    }

    .gallery-grid .gallery-item:nth-child(2),
    .gallery-grid .gallery-item:nth-child(3) {
        grid-column: auto;
        grid-row: auto;
        aspect-ratio: 1 / 1;
    }

    .gallery-item-wide {
        grid-column: 1 / -1;
        grid-row: auto;
        aspect-ratio: 16 / 9;
    }

    .gallery-grid .gallery-item:nth-child(5),
    .gallery-grid .gallery-item:nth-child(6) {
        grid-column: auto;
        grid-row: auto;
        aspect-ratio: 1 / 1;
    }

    .gallery-caption {
        opacity: 1;
        font-size: 0.68rem;
        padding: 16px 10px 8px;
    }
}


/* =============================================
   7. アクセス
   ============================================= */

.access-card {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
    background: var(--color-white);
    padding: 48px;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.access-name {
    font-size: 1.3rem;
    color: var(--color-deep-indigo);
    margin-bottom: 4px;
    font-weight: 500;
    letter-spacing: 0.08em;
}

.access-tagline {
    font-size: 0.82rem;
    color: var(--color-matcha);
    margin-bottom: 28px;
    letter-spacing: 0.08em;
}

.access-details p {
    margin-bottom: 16px;
    font-size: 0.9rem;
    line-height: 1.9;
}

.access-buttons {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.access-map img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 4px;
    border: 1px solid var(--color-border);
}

@media (max-width: 768px) {
    .access-card {
        grid-template-columns: 1fr;
        padding: 32px 24px;
    }
    .access-map {
        order: -1;
    }
    .access-buttons {
        align-items: center;
    }
}


/* =============================================
   8. 最新情報・ご予約
   ============================================= */

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

.contact-body {
    max-width: 560px;
    margin: 0 auto;
}

.contact-lead {
    font-size: 0.95rem;
    line-height: 2;
    margin-bottom: 12px;
}

.contact-sub {
    font-size: 0.88rem;
    color: var(--color-text-light);
    margin-bottom: 36px;
    line-height: 1.9;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

@media (max-width: 768px) {
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
}


/* =============================================
   ボタン共通
   ============================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 32px;
    border-radius: 3px;
    font-size: 0.88rem;
    font-family: var(--font-serif);
    letter-spacing: 0.06em;
    color: var(--color-white);
    transition: all 0.3s ease;
    min-width: 220px;
    font-weight: 400;
}

.btn:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

.btn svg {
    flex-shrink: 0;
}

.btn-primary {
    background-color: var(--color-deep-indigo);
}

.btn-line {
    background-color: var(--color-line-green);
}

.btn-instagram {
    background: linear-gradient(135deg, #833ab4, #c13584, #e1306c, #fd1d1d);
}


/* =============================================
   フッター
   ============================================= */

.footer {
    background-color: var(--color-deep-indigo);
    color: var(--color-white);
    padding: 56px 24px 28px;
    text-align: center;
}

.footer-logo-wrap {
    display: inline-block;
    background: rgba(255, 255, 255, 0.9);
    padding: 14px 24px;
    border-radius: 6px;
    margin-bottom: 28px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.footer-logo-wrap img {
    width: 72px;
    height: auto;
    margin: 0 auto;
}

.copyright {
    font-size: 10px;
    opacity: 0.5;
    letter-spacing: 0.1em;
    font-weight: 300;
}


/* =============================================
   アニメーション
   ============================================= */

.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease, transform 0.8s var(--transition-smooth);
}

.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* 連続表示のディレイ */
.fade-in.delay-1 { transition-delay: 0.1s; }
.fade-in.delay-2 { transition-delay: 0.2s; }
.fade-in.delay-3 { transition-delay: 0.3s; }
