/* カスタムフォントとベース設定 */
/* FontAwesomeアイコンを除外してフォント適用 */
body, h1, h2, h3, h4, h5, h6, p, a:not(.fas):not(.fa):not(.far):not(.fab):not(.fal):not(.fad), 
button:not(.fas):not(.fa):not(.far):not(.fab):not(.fal):not(.fad), 
input, textarea, select, li, 
span:not(.fas):not(.fa):not(.far):not(.fab):not(.fal):not(.fad), 
div:not(.fas):not(.fa):not(.far):not(.fab):not(.fal):not(.fad) {
    font-family: 'M PLUS Rounded 1c', sans-serif !important;
}

body {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    scroll-behavior: smooth;
}

/* Tailwind CSSのfont-sansクラスを上書き */
.font-sans {
    font-family: 'M PLUS Rounded 1c', sans-serif !important;
}

/* 見出しタグすべてに適用 */
h1, h2, h3, h4, h5, h6 {
    font-family: 'M PLUS Rounded 1c', sans-serif !important;
}

/* FontAwesomeアイコンは必ず"Font Awesome"フォントを使用 */
.fas, .fa, .far, .fab, .fal, .fad, [class^="fa-"], [class*=" fa-"] {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "FontAwesome" !important;
    font-weight: 900 !important;
}

/* ナビゲーションリンク */
.nav-link {
    color: #374151;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #dc2626;
}

.nav-link-mobile {
    color: #374151;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-link-mobile:hover {
    color: #dc2626;
}

/* ボタンスタイル */
.btn-primary {
    background: linear-gradient(135deg, #dc2626 0%, #f97316 100%);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

/* ヒーローセクション（スマホ最適化 + 今風デザイン） */
.hero-section-optionb {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #f9fafb;
}

/* 背景写真グリッド */
.hero-bg-photos {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    z-index: 0;
}

.hero-bg-photo {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-bg-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    /* 写真を明るく表示 */
    opacity: 0.9;
    filter: brightness(1.15) saturate(1.1);
}

/* 右上の写真：頭〜バストアップが見えるように */
.hero-photo-top-right img {
    object-position: center 30%;
}

/* 左下の写真：顔が見えるように上寄せ */
.hero-photo-bottom-left img {
    object-position: center top;
}

/* 極薄のグラデーションオーバーレイ（統一感） */
.hero-bg-photo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, rgba(234, 88, 12, 0.05) 100%);
    pointer-events: none;
}

/* コンテンツラッパー */
.hero-content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ボックスを完全透明に（写真が100%見える） */
.hero-white-box {
    max-width: 700px;
    margin: 0 auto;
    /* 背景を完全透明に */
    background: transparent;
    /* ぼかし効果を削除 */
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    /* 縁取りを削除 */
    border: none;
    border-radius: 0;
    /* パディングを削減 */
    padding: 1.5rem 1rem;
    /* シャドウを削除 */
    box-shadow: none;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

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

/* タイトル（白文字 + 黒影で超読みやすい） */
.hero-title-optionb {
    font-size: clamp(1.5rem, 5vw, 3.5rem); /* レスポンシブ: 最小1.5rem、最大3.5rem */
    font-weight: 900;
    color: #ffffff;  /* 白文字 */
    line-height: 1.3;
    margin-bottom: 0.75rem;
    /* PC版では改行させない */
    white-space: nowrap;
    /* 中央揃え */
    text-align: center;
    /* 横スクロールを防ぐ */
    width: 100%;
    overflow: visible;
    /* フォントを明示的に指定 */
    font-family: 'M PLUS Rounded 1c', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    /* 黒い強い影 */
    text-shadow: 
        0 0 60px rgba(0, 0, 0, 1),        /* 超強黒グロー */
        0 0 30px rgba(0, 0, 0, 0.9),      /* 二重黒グロー */
        0 0 15px rgba(0, 0, 0, 0.8),      /* 三重黒グロー */
        0 4px 30px rgba(0, 0, 0, 0.9),    /* 強い黒影 */
        0 2px 15px rgba(0, 0, 0, 0.7);    /* 二重黒影 */
    /* 縁取りを削除（フォントが潰れる原因） */
    -webkit-text-stroke: none;
    text-stroke: none;
}

/* 改行させない部分 */
.no-wrap {
    white-space: nowrap;
}

/* スマホ専用改行用span - PC版ではinline表示 */
.sp-block {
    display: inline;
}


/* テキストの途中で改行させない（inline要素用） */
.no-wrap-text {
    display: inline-block;
}

/* サブタイトル（白文字 + 黒影） */
.hero-subtitle-optionb {
    font-size: clamp(0.875rem, 2.5vw, 1.5rem); /* レスポンシブ: 最小0.875rem、最大1.5rem */
    color: #ffffff;  /* 白文字 */
    line-height: 1.5;
    margin-bottom: 1rem;
    font-weight: 600;
    /* フォントを明示的に指定 */
    font-family: 'M PLUS Rounded 1c', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    /* 黒い強い影 */
    text-shadow: 
        0 0 50px rgba(0, 0, 0, 1),
        0 0 25px rgba(0, 0, 0, 0.9),
        0 2px 20px rgba(0, 0, 0, 0.8),
        0 1px 10px rgba(0, 0, 0, 0.7);
    /* 縁取りを削除 */
    -webkit-text-stroke: none;
    text-stroke: none;
}

/* ボタン（強い影で目立つ） */
.btn-hero-optionb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #dc2626 0%, #ea580c 100%);
    color: white;
    padding: 1.125rem 2.5rem;
    border-radius: 3rem;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 0;
    /* 強いシャドウ */
    box-shadow: 
        0 0 30px rgba(220, 38, 38, 0.6),
        0 4px 20px rgba(0, 0, 0, 0.4),
        0 2px 10px rgba(0, 0, 0, 0.3);
    /* タップ領域を広く */
    min-height: 48px;
    /* ボタンテキストにも影 */
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.5),
        0 1px 5px rgba(0, 0, 0, 0.3);
}

.btn-hero-optionb:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 0 40px rgba(220, 38, 38, 0.8),
        0 8px 30px rgba(0, 0, 0, 0.5),
        0 4px 15px rgba(0, 0, 0, 0.4);
}

.btn-hero-optionb:active {
    transform: translateY(0);
}

/* スマホ対応（最優先） */
@media (max-width: 768px) {
    /* 2×2グリッドで大きく表示 */
    .hero-bg-photos {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
    }
    
    .hero-content-wrapper {
        padding: 1rem;
    }
    
    .hero-white-box {
        padding: 1.25rem 0.75rem;
        /* 背景は透明のまま */
        background: transparent;
    }
    
    .hero-title-optionb {
        /* clampで自動調整されるため削除 */
        margin-bottom: 0.5rem;
        /* スマホでも改行させない */
        white-space: normal;
    }
    
    /* スマホのみで改行させる */
    .sp-block {
        display: block;
    }
    
    /* 改行させない部分（すべてのデバイス） */
    .no-wrap {
        white-space: nowrap !important;
    }
    
    .hero-subtitle-optionb {
        /* clampで自動調整されるため削除 */
        line-height: 1.4;
        margin-bottom: 0.75rem;
    }
    
    .btn-hero-optionb {
        padding: 1rem 2rem;
        font-size: clamp(0.875rem, 2vw, 1rem);
        width: 100%;
        max-width: 280px;
        margin-top: 0;
    }
}

/* タブレット対応 */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-bg-photos {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
    }
    
    .hero-title-optionb {
        font-size: 2.25rem;
    }
}


/* 背景モザイク - 一時的に無効化
.hero-mosaic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(3, 1fr);
    opacity: 0.5;
    z-index: 0;
}

.mosaic-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: mosaicFade 20s infinite;
    filter: grayscale(30%) brightness(0.8);
    transition: all 0.5s ease;
    display: block;
}

.mosaic-img:hover {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.02);
}

.mosaic-img:nth-child(1) { animation-delay: 0s; }
.mosaic-img:nth-child(2) { animation-delay: 1.5s; }
.mosaic-img:nth-child(3) { animation-delay: 3s; }
.mosaic-img:nth-child(4) { animation-delay: 4.5s; }
.mosaic-img:nth-child(5) { animation-delay: 6s; }
.mosaic-img:nth-child(6) { animation-delay: 7.5s; }
.mosaic-img:nth-child(7) { animation-delay: 9s; }
.mosaic-img:nth-child(8) { animation-delay: 10.5s; }
.mosaic-img:nth-child(9) { animation-delay: 12s; }
.mosaic-img:nth-child(10) { animation-delay: 13.5s; }
.mosaic-img:nth-child(11) { animation-delay: 15s; }
.mosaic-img:nth-child(12) { animation-delay: 16.5s; }
.mosaic-img:nth-child(13) { animation-delay: 18s; }
.mosaic-img:nth-child(14) { animation-delay: 19.5s; }
.mosaic-img:nth-child(15) { animation-delay: 21s; }

@keyframes mosaicFade {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1); 
    }
    50% { 
        opacity: 1; 
        transform: scale(1.05); 
    }
}

@media (max-width: 768px) {
    .hero-mosaic {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(5, 1fr);
        opacity: 0.25;
    }
}
*/


.hero-overlay {
    position: relative;
    z-index: 10;
    padding: 4rem 0;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.7) 100%);
    width: 100%;
    backdrop-filter: blur(1px);
}

.text-shadow {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.text-shadow-lg {
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.9);
}

/* ヒーローボタン */
.btn-hero {
    display: inline-block;
    background: white;
    color: #dc2626;
    padding: 1rem 3rem;
    border-radius: 9999px;
    font-weight: 900;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: pulse-button 2s infinite;
}

.btn-hero:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

@keyframes pulse-button {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
    }
}

/* アニメーション */
@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fade-in 1s ease-out;
}

.animate-fade-in-delay {
    animation: fade-in 1s ease-out 0.3s backwards;
}

/* セクション共通 */
.section-padding {
    padding: 5rem 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 3rem 0;
    }
}

.section-title {
    font-size: 1.75rem; /* 2.5rem → 1.75rem (-30%) */
    font-weight: 900;
    text-align: center;
    margin-bottom: 1.5rem; /* 3rem → 2rem → 1.5rem */
    position: relative;
    padding-bottom: 0.75rem; /* 1rem → 0.75rem */
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px; /* 80px → 60px */
    height: 3px; /* 4px → 3px */
    background: linear-gradient(90deg, #dc2626 0%, #f97316 100%);
    border-radius: 2px;
}

/* 仕事内容カード */
.work-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.work-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.work-icon {
    width: 48px; /* 80px → 48px (会社紹介のアイコンサイズに合わせる) */
    height: 48px; /* 80px → 48px */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 1.5rem;
}

.work-title {
    font-size: 1.125rem; /* 1.75rem → 1.125rem (会社紹介に合わせる) */
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: #1f2937;
}

.work-description {
    text-align: center;
    color: #6b7280;
    font-size: 0.95rem; /* 1.1rem → 0.95rem */
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.work-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    color: #374151;
    font-size: 1rem;
}

/* スキルカード */
.skill-card {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.skill-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.2);
}

/* バッジ */
.badge-item {
    display: inline-block;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* キャリアパス */
.career-path {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.career-step {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    min-width: 150px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.career-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 900;
    font-size: 1.5rem;
    margin: 0 auto 0.75rem;
}

.career-step-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.career-step-desc {
    font-size: 0.875rem;
    color: #6b7280;
}

.career-arrow {
    font-size: 1.5rem;
    color: #a855f7;
    font-weight: 900;
}

@media (max-width: 768px) {
    .career-arrow {
        display: none;
    }
}

/* 店舗カード */
.shop-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.shop-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.shop-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.shop-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.shop-card:hover .shop-img {
    transform: scale(1.1);
}

.shop-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #ea580c;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.875rem;
}

.shop-content {
    padding: 1.5rem;
}

.shop-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.shop-address {
    color: #6b7280;
    font-size: 0.875rem;
    display: flex;
    align-items: start;
}

/* 魅力カード */
.benefit-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: start;
    gap: 2rem;
}

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

.benefit-icon {
    flex-shrink: 0;
}

.benefit-content {
    flex: 1;
}

.benefit-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1f2937;
}

.benefit-description {
    color: #4b5563;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* メンバーの声 */
.voice-section {
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
    border-radius: 1rem;
    padding: 1.5rem;
    border-left: 4px solid #a855f7;
}

.voice-section-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: #6b21a8;
}

.voice-section-text {
    color: #374151;
    line-height: 1.8;
}

/* 募集要項カード */
.requirement-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.requirement-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.highlight-card {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border: 2px solid #fca5a5;
}

.requirement-title {
    font-size: 1.125rem; /* 1.5rem → 1.125rem (会社紹介に合わせる) */
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1f2937;
    display: flex;
    align-items: center;
}

.requirement-value {
    color: #374151;
    font-size: 1.05rem; /* 1.25rem → 1.05rem */
    font-weight: 600;
}

/* インセンティブボックス */
.incentive-box {
    background: linear-gradient(135deg, #dc2626 0%, #ea580c 100%);
    border-radius: 1rem;
    padding: 2rem;
    margin-top: 1.5rem;
}

.incentive-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 1rem;
    text-align: center;
}

/* シフト例 */
.shift-example {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 2px solid #93c5fd;
}

/* フォーム */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1f2937;
    font-size: 1rem;
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.required-badge {
    background: #dc2626;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: 0.5rem;
}

.optional-badge {
    background: #9ca3af;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: 0.5rem;
}

.btn-submit {
    background: linear-gradient(135deg, #dc2626 0%, #f97316 100%);
    color: white;
    padding: 1rem 3rem;
    border-radius: 9999px;
    font-weight: 900;
    font-size: 1.25rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(220, 38, 38, 0.4);
}

.btn-submit:active {
    transform: translateY(0);
}

/* スクロールトップボタン */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #dc2626 0%, #f97316 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.25rem;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
    transition: all 0.3s ease;
    z-index: 100;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.5);
}

.scroll-to-top.hidden {
    opacity: 0;
    pointer-events: none;
}

/* レスポンシブ調整 */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.375rem; /* 1.5rem → 1.375rem */
        margin-bottom: 1rem; /* 1.5rem → 1rem */
    }

    .work-title {
        font-size: 1.25rem; /* 1.5rem → 1.25rem */
    }

    .benefit-title {
        font-size: 1.25rem; /* 1.5rem → 1.25rem */
    }

    .requirement-title {
        font-size: 1.125rem; /* 1.25rem → 1.125rem */
    }

}

/* 送信完了メッセージのアニメーション */
#success-message {
    animation: fadeInScale 0.5s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ローディングアニメーション */
#loading {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
