@charset "UTF-8";

/* ==========================================================================
   1. 変数・リセット・基本設定
   ========================================================================== */
:root {
    --color-bg: #1a1a1a;       /* 背景：濃いグレー */
    --color-text: #f2f2f2;     /* 文字：オフホワイト */
    --color-gold: #c5a059;     /* アクセント：ゴールド */
    --color-black: #000000;    /* 真っ黒 */
    --font-base: "Noto Serif JP", serif;
    --font-mincho: "Shippori Mincho", serif;
}

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

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-base);
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.05em;
    -webkit-font-smoothing: antialiased;
}

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

a:hover {
    opacity: 0.7;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

ul, ol {
    list-style: none;
}

/* 共通コンテナ (ここが全体の幅を決定します) */
.inner {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 0;
}

/* セクションタイトル */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-family: var(--font-mincho);
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 5px;
}

.section-subtitle {
    display: block;
    color: var(--color-gold);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    font-family: sans-serif;
}

/* ボタン共通 */
.btn {
    display: inline-block;
    padding: 14px 30px;
    border: 1px solid currentColor;
    border-radius: 0;
    text-align: center;
    font-size: 1rem;
    cursor: pointer;
    min-width: 200px;
}

.btn--gold {
    background-color: var(--color-gold);
    color: #fff;
    border-color: var(--color-gold);
}

.btn--gold:hover {
    background-color: #fff;
    color: var(--color-gold);
}

/* ==========================================================================
   2. ヘッダー (Header)
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-color: rgba(26, 26, 26, 0.95);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header__inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.header__site-title {
    font-family: var(--font-mincho);
    font-size: 1.25rem;
    font-weight: bold;
    color: #fff;
    margin: 0;
    line-height: 1;
}

.header__site-subtitle {
    display: block;
    font-size: 0.6rem;
    color: var(--color-gold);
    letter-spacing: 0.1em;
    margin-top: 4px;
}

/* ハンバーガーボタン (スマホ用) */
.hamburger-btn {
    position: relative;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.hamburger-btn__bar {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    left: 10px;
    transition: 0.3s;
}

.hamburger-btn__bar:nth-child(1) { top: 14px; }
.hamburger-btn__bar:nth-child(2) { top: 21px; }
.hamburger-btn__bar:nth-child(3) { top: 28px; }

/* メニュー展開時のハンバーガーアニメーション */
.hamburger-btn.active .hamburger-btn__bar:nth-child(1) {
    top: 21px;
    transform: rotate(45deg);
}
.hamburger-btn.active .hamburger-btn__bar:nth-child(2) {
    opacity: 0;
}
.hamburger-btn.active .hamburger-btn__bar:nth-child(3) {
    top: 21px;
    transform: rotate(-45deg);
}

/* グローバルナビ (スマホ用初期状態：隠す) */
.global-nav {
    position: fixed;
    top: 0;
    right: -100%; /* 画面外へ */
    width: 100%;
    height: 100vh;
    background-color: var(--color-black);
    transition: 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
}

.global-nav.active {
    right: 0; /* 画面内へスライドイン */
}

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

.global-nav__list li {
    margin-bottom: 30px;
}

.global-nav__list a {
    font-size: 1.2rem;
    font-family: var(--font-mincho);
    display: block;
    padding: 10px;
}

/* ==========================================================================
   3. メインビジュアル (Hero)
   ========================================================================== */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    background-image: url('http://guuta-fukuchiyama.jp/wp-content/uploads/2025/12/top.png');
    background-size: cover;
    background-position: center;
    opacity: 0.6;
    z-index: -1;
}

.hero__text-vertical {
    writing-mode: vertical-rl; /* 縦書き */
    font-family: var(--font-mincho);
    color: #fff;
    letter-spacing: 0.2em;
    margin-top: 60px;
}

.hero__catch {
    font-size: 1.8rem;
    line-height: 2;
    margin-left: 20px;
    border-right: 1px solid var(--color-gold); /* 縦書きなので右側に線 */
    padding-right: 20px;
}

.hero__sub {
    font-size: 1rem;
    color: #ccc;
}

/* スクロールダウン */
.hero__scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero__scroll-text {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    color: var(--color-gold);
}

.hero__scroll-line {
    width: 1px;
    height: 60px;
    background-color: var(--color-gold);
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ==========================================================================
   4. 各セクション (Parts)
   ========================================================================== */
/* お知らせ */
.news-list__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.news-list__link {
    display: block;
    padding: 15px 0;
}

.news-list__date {
    display: block;
    font-size: 0.8rem;
    color: var(--color-gold);
    margin-bottom: 5px;
}

/* コンセプト */
.section-concept {
    background-color: #222;
}

.img-placeholder {
    width: 100%;
    height: 300px;
    background-color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    border: 1px solid #444;
}
.img-placeholder::after {
    content: "Image Area";
}

.concept-text {
    margin-bottom: 40px;
}

/* スマホ調整（空間とおもてなし） */
@media screen and (max-width: 768px) {
    .concept-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .concept-desc {
        text-align: left;
        display: inline-block;
        width: fit-content;
        max-width: 100%;
        margin-bottom: 30px;
    }
}

/* メニューPDF */
.section-menu-pdf {
    text-align: center;
    background-color: var(--color-bg);
}

.menu-pdf__desc {
    margin-bottom: 30px;
    font-size: 0.9rem;
}

/* アクセス */
.access__map {
    margin-bottom: 30px;
    filter: grayscale(100%); /* 地図をモノクロに */
}

.access__row {
    display: flex;
    flex-wrap: wrap;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.access__row dt {
    width: 30%;
    color: var(--color-gold);
    font-weight: bold;
}

.access__row dd {
    width: 70%;
}

/* リクルートバナー */
.section-recruit-banner {
    background-color: var(--color-gold);
    padding: 40px 0;
    text-align: center;
}

.recruit-link {
    color: #fff;
    display: block;
}

.recruit-link__text {
    display: block;
    font-size: 1.2rem;
    font-family: var(--font-mincho);
    margin-bottom: 10px;
}

.recruit-link__btn {
    display: inline-block;
    background: #fff;
    color: var(--color-gold);
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

/* ==========================================================================
   5. 固定ページ (下層共通)
   ========================================================================== */
.page-header {
    padding-top: 100px; /* ヘッダー分空ける */
    padding-bottom: 40px;
    text-align: center;
    background-color: #111;
}

.page-header__title {
    font-family: var(--font-mincho);
    font-size: 2rem;
    margin-bottom: 5px;
}

.page-header__en {
    color: var(--color-gold);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    font-family: var(--font-mincho);
}

.page-intro {
    text-align: center;
    margin-bottom: 60px;
    line-height: 2;
    font-family: var(--font-mincho);
}

/* ==========================================================================
   5-1. お席のご案内 (Seats)
   ========================================================================== */
.seat-item {
    margin-bottom: 60px;
}

.seat-item__title {
    font-family: var(--font-mincho);
    font-size: 1.5rem;
    margin: 20px 0 15px;
    color: var(--color-gold);
}

/* スペック表 */
.seat-item__data {
    margin-top: 20px;
    background-color: #222;
    padding: 20px;
    border: 1px solid #333;
}

.seat-spec__row {
    display: flex;
    border-bottom: 1px solid #444;
    padding: 10px 0;
}

.seat-spec__row:last-child {
    border-bottom: none;
}

.seat-spec__row dt {
    width: 35%;
    color: var(--color-gold);
    font-weight: bold;
    font-size: 0.9rem;
}

.seat-spec__row dd {
    width: 65%;
    font-size: 0.9rem;
}

.placeholder-text {
    color: #888;
    text-align: center;
    font-size: 0.8rem;
}

/* 貸切セクション */
.seat-charter {
    margin-top: 80px;
    background-color: #222;
    padding: 60px 20px;
    text-align: center;
    border: 1px solid var(--color-gold);
}

.seat-charter__title {
    font-family: var(--font-mincho);
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.seat-charter__desc {
    margin-bottom: 30px;
}

/* ==========================================================================
   5-2. 求人ページ (Recruit)
   ========================================================================== */
.inner--small {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.recruit-lead {
    text-align: center;
    margin-bottom: 60px;
    line-height: 2;
    font-size: 1rem;
}

.recruit-list {
    border-top: 1px solid #333;
    margin-bottom: 80px;
}

.recruit-row {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #333;
    padding: 20px 0;
}

.recruit-row dt {
    width: 30%;
    font-weight: bold;
    color: #c5a059;
    padding-right: 20px;
    display: flex;
    align-items: center;
}

.recruit-row dd {
    width: 70%;
    margin: 0;
    line-height: 1.8;
}

.recruit-row .note {
    display: block;
    font-size: 0.9em;
    color: #ccc;
    margin-top: 5px;
}

.recruit-contact {
    text-align: center;
    background-color: #1a1a1a;
    padding: 60px 20px;
    border-radius: 4px;
}

.recruit-contact__text {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.recruit-contact__action {
    margin-bottom: 20px;
}

.recruit-contact__note {
    font-size: 0.9rem;
    color: #888;
}

.btn--large {
    padding: 15px 50px;
    font-size: 1.5rem;
    font-family: "Oswald", sans-serif;
    letter-spacing: 0.05em;
}

.tel-icon {
    font-size: 0.7em;
    margin-right: 10px;
    vertical-align: middle;
}

@media screen and (max-width: 768px) {
    .recruit-row {
        display: block;
    }
    .recruit-row dt {
        width: 100%;
        margin-bottom: 10px;
        color: #c5a059;
    }
    .recruit-row dd {
        width: 100%;
        padding-left: 0;
    }
    .btn--large {
        font-size: 1.2rem;
        padding: 15px 30px;
        width: 100%;
        box-sizing: border-box;
    }
}

/* ==========================================================================
   5-3. お品書きページ (Menu Page)
   ========================================================================== */
.inner--menu {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
}

.menu-nav {
    position: sticky;
    top: 70px;
    background: rgba(0, 0, 0, 0.9);
    padding: 10px 0;
    margin: 0 -15px 30px -15px;
    z-index: 50;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}

.menu-nav__list {
    display: flex;
    justify-content: center;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0 10px;
}

.menu-nav__list li {
    flex: 1;
    max-width: 120px;
}

.menu-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: #1a1a1a;
    color: #c5a059;
    border: 1px solid #c5a059;
    padding: 10px 0;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.menu-btn:active,
.menu-btn:hover {
    background: #c5a059;
    color: #000;
}

.menu-note {
    text-align: center;
    font-size: 0.8rem;
    color: #aaa;
    margin-bottom: 20px;
}

.menu-section {
    margin-bottom: 50px;
    scroll-margin-top: 140px;
}

.menu-section__title {
    font-size: 1.3rem;
    color: #fff;
    border-bottom: 2px solid #c5a059;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-family: serif;
}

.menu-item {
    margin-bottom: 25px;
    border: 1px solid #333;
    background: #000;
    position: relative;
}

.menu-item img {
    width: 100%;
    height: auto;
    display: block;
}

.menu-item a {
    display: block;
    position: relative;
}

.zoom-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 5px 10px;
    font-size: 0.8rem;
    border-radius: 4px;
    pointer-events: none;
}

.common-btn-gold {
    display: block;
    max-width: 250px;
    margin: 40px auto;
    padding: 15px 20px;
    background-color: #c5a059;
    color: #000 !important;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    font-size: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    transition: opacity 0.3s;
}

.common-btn-gold:hover {
    opacity: 0.8;
}

.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.95);
    overflow: auto;
    padding-top: 60px;
}

.image-modal__content {
    margin: auto;
    display: block;
    width: 95%;
    max-width: 1000px;
    border: 2px solid #fff;
}

.image-modal__close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    background: rgba(0,0,0,0.5);
    width: 50px;
    height: 50px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
}

@media screen and (max-width: 768px) {
    .menu-nav {
        top: 60px;
    }
}

@media screen and (max-width: 480px) {
    .menu-btn {
        font-size: 0.75rem; 
        padding: 8px 0;
    }
    .menu-nav__list {
        gap: 5px;
    }
    .menu-section__title {
        font-size: 1.2rem;
    }
}

/* ==========================================================================
   6. Single Post (記事詳細ページ)
   ========================================================================== */
.page-single {
    padding-top: 120px;
    min-height: 60vh;
}

.page-single .inner {
    max-width: 900px;
    padding-left: 40px;
    padding-right: 40px;
}

.entry-header {
    text-align: center;
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(197, 160, 89, 0.3);
    padding-bottom: 40px;
}

.entry-meta {
    font-size: 0.9rem;
    color: var(--color-gold);
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.entry-cat {
    background-color: var(--color-gold);
    color: #fff;
    padding: 4px 12px;
    font-size: 0.75rem;
    border-radius: 2px;
}

.entry-title {
    font-family: var(--font-mincho);
    font-size: 2rem;
    line-height: 1.5;
    margin-top: 15px;
    font-feature-settings: "palt";
}

.entry-thumbnail {
    margin-bottom: 60px;
    text-align: center;
}
.entry-thumbnail img {
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.entry-content {
    margin-bottom: 80px;
    font-size: 1.05rem;
    line-height: 2.2;
    letter-spacing: 0.08em;
}

.entry-content p {
    margin-bottom: 2.5em;
}

.entry-content h2 {
    font-family: var(--font-mincho);
    font-size: 1.6rem;
    border-bottom: 2px solid var(--color-gold);
    padding-bottom: 10px;
    margin: 80px 0 40px;
    color: #fff;
}

.entry-content h3 {
    font-size: 1.3rem;
    color: var(--color-gold);
    margin: 50px 0 25px;
    padding-left: 15px;
    border-left: 4px solid var(--color-gold);
}

.entry-content ul, 
.entry-content ol {
    margin: 3em 0;
    padding: 30px;
    background-color: #222;
    border: 1px solid #333;
    border-radius: 4px;
}

.entry-content li {
    list-style: none;
    margin-bottom: 15px;
    position: relative;
    padding-left: 1.5em;
}

.entry-content li::before {
    content: "・";
    color: var(--color-gold);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.entry-content li:last-child {
    margin-bottom: 0;
}

.entry-content a {
    color: var(--color-gold);
    text-decoration: underline;
}

.entry-footer {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 60px;
}

/* ==========================================================================
   7. フッター
   ========================================================================== */
.footer {
    background-color: #000;
    padding: 0; /* innerのpaddingに任せるため0にします */
    font-size: 0.9rem;
}

/* .inner は共通スタイル (max-width: 1100px) が適用されます */
.footer__container {
    padding-top: 80px;
    padding-bottom: 40px;
    
    display: flex;
    justify-content: space-between; /* 左右の端に配置 */
    align-items: flex-start;        /* 上揃え */
    flex-wrap: wrap;
}

/* 左側：ブランドロゴ */
.footer__brand {
    /* ロゴは左側に固定 */
    flex: 0 0 auto; 
    text-align: left;
    margin-bottom: 40px;
    margin-right: 40px; /* 右側の情報との干渉を防ぐ余白 */
}

.footer__logo {
    font-family: var(--font-mincho);
    font-size: 1.8rem;
    margin-bottom: 5px;
    color: #fff;
}

.footer__sub {
    color: var(--color-gold);
    letter-spacing: 0.2em;
    font-size: 0.8rem;
}

/* 右側：店舗情報 */
.footer__info {
    text-align: left;
}

.footer__address, .footer__tel, .footer__parking, .footer__payment {
    margin-bottom: 15px;
    line-height: 1.8;
}

.footer__tel a {
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}

/* 営業時間リスト */
.footer__hours {
    margin-bottom: 25px;
    margin-top: 20px;
}

.footer__hours-row {
    display: flex;
    justify-content: flex-start;
    align-items: baseline;
    gap: 40px; /* ラベルと時間の距離 */
    margin-bottom: 8px;
}

.footer__hours-row dt {
    width: 60px;
    flex-shrink: 0;
    font-weight: normal;
}

.footer__hours-row dd {
    margin: 0;
}

/* 駐車場・決済 */
.footer__parking {
    color: #ccc;
    font-size: 0.95rem;
    margin-top: 20px;
}

.footer__payment {
    margin-top: 10px;
}

/* SNSブロック */
.footer__sns {
    margin-top: 25px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
}

.footer__sns-label {
    color: var(--color-gold);
    font-weight: bold;
}

.footer__sns-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
}

.footer__copyright {
    width: 100%;
    margin-top: 60px;
    text-align: center;
    color: #666;
    border-top: 1px solid #222;
    padding-top: 20px;
}

/* フッター用レスポンシブ */
@media screen and (max-width: 768px) {
    .footer__container {
        padding-top: 60px;
        padding-bottom: 30px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer__brand {
        margin-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }

    .footer__info {
        width: 100%;
        text-align: center;
    }

    .footer__address, .footer__tel, .footer__parking, .footer__payment {
        text-align: center;
    }

    .footer__hours-row {
        justify-content: center;
        gap: 15px;
    }
    
    .footer__hours-row dt {
        width: auto;
    }

    .footer__sns {
        justify-content: center;
        margin-top: 30px;
    }
}

/* ==========================================================================
   8. その他ユーティリティ
   ========================================================================== */
.page-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--color-gold);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 900;
}
.page-top::after {
    content: "↑";
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.page-top.show {
    opacity: 1;
    visibility: visible;
}

/* ==========================================================================
   9. アニメーション
   ========================================================================== */
.js-fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 1.2s ease, transform 1.2s ease;
}

.js-fade-in.init {
    opacity: 0;
    transform: translateY(30px);
}

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

/* ==========================================================================
   10. スプラッシュ画面 (新規追加)
   ========================================================================== */
#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1a1a1a; /* 背景色に合わせて濃いグレーまたは黒 */
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

body.loaded #splash-screen {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

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

.splash-logo {
    font-family: var(--font-mincho);
    font-size: 2rem;
    font-weight: bold;
    color: var(--color-gold);
    margin-bottom: 20px;
    letter-spacing: 0.2em;
    animation: pulseLogo 2s infinite;
}

.splash-loader {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(197, 160, 89, 0.2);
    border-top: 2px solid var(--color-gold);
    border-radius: 50%;
    margin: 0 auto;
    animation: spinLoader 1s linear infinite;
}

@keyframes pulseLogo {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(0.98); }
}

@keyframes spinLoader {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* ==================================================
   ★ 追加：メインビジュアルのテキストアニメーション
   「ぼやっと」→「くっきり」表示させる設定
   ================================================== */

/* 1. アニメーションの動きを定義 */
@keyframes blurFadeIn {
    0% {
        opacity: 0;             /* 最初は透明 */
        filter: blur(20px);     /* 強くぼかす */
        transform: scale(1.1);  /* 少しだけ拡大しておく（ふわっと感を出すため） */
    }
    100% {
        opacity: 1;             /* 不透明に */
        filter: blur(0);        /* ぼかしなし（くっきり） */
        transform: scale(1);    /* 元のサイズへ */
    }
}

/* 2. PC・スマホ共通のアニメーション適用 */
.hero__text-vertical {
    /* 初期状態を隠す */
    opacity: 0;
    
    /* アニメーション実行設定 
       3秒かけて(3s)、滑らかに(ease-out)、最後の状態を維持(forwards) */
    animation: blurFadeIn 3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    
    /* スプラッシュ画面が消えるのを待ってから開始する遅延時間 */
    animation-delay: 1.5s; 
}

/* 3. スマホ表示時の干渉を防ぐための調整 
   responsive.cssの強力な指定(transform)と喧嘩しないように、
   スマホのときだけscaleの動きをオフにして、ぼかしとフェードのみにします
*/
@media screen and (max-width: 767px) {
    @keyframes blurFadeInMobile {
        0% {
            opacity: 0;
            filter: blur(20px);
        }
        100% {
            opacity: 1;
            filter: blur(0);
        }
    }

    .hero__text-vertical {
        animation-name: blurFadeInMobile; /* スマホ専用のアニメーション名に切り替え */
    }
}