@charset "utf-8";

/* ===================================
   ▼ 基本設定
   =================================== */
body {
    margin: 0;
    padding: 0;
    font-family: "Noto Serif JP", serif;
    color: #444;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

/* ===================================
   ▼ ヘッダー（ロゴとメニュー）修正版
   =================================== */
header {
    width: 100%;
    background-color: #fff;
    padding: 10px 0; /* 高さを少しスリムに */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.header-inner {
    /* ★幅制限を解除して、画面いっぱいに広げる */
    width: 100%; 
    max-width: 100%;
    
    /* ★左右にたっぷりと余白（クッション）を入れる */
    padding: 0 50px; 
    
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box; /* パディングを含めて計算させる */
}

/* スマホ・タブレット（1024px以下）の時は余白を少し減らす */
@media (max-width: 1024px) {
    .header-inner {
        padding: 0 20px; /* スマホでは端っこすぎないように */
    }
}

.logo img {
    height: 40px;
    width: auto;
    display: block;
}

/* メニュー（PC用） */
.pc-nav ul {
    display: flex;
    gap: 25px; /* メニュー同士の間隔を程よく */
    align-items: center;
    margin: 0; /* 余計な隙間を削除 */
}

/* メニューの文字リンク */
.pc-nav a {
    font-size: 14px;
    letter-spacing: 0.05em;
    transition: color 0.3s;
    color: #444;
    white-space: nowrap; /* 改行禁止（崩れ防止） */
    font-weight: 500;
}

.pc-nav a:hover {
    color: #dfaec0;
}

/* アイコン（SHOP）の調整 */
.pc-nav i {
    margin-right: 5px;
    color: #dfaec0;
}

/* 予約ボタン（消えないようにデザインを固定） */
.btn-reserve {
    margin-left: 10px; /* 他のメニューと少し離す */
}

.btn-reserve a {
    display: inline-block; /* 形を崩さない */
    background-color: #444;
    color: #fff !important; /* 文字色を白で強制 */
    padding: 12px 25px;
    border-radius: 2px;
    font-size: 14px;
    line-height: 1;
}

.btn-reserve a:hover {
    background-color: #dfaec0;
    color: #fff !important;
}

/* ===================================
   ▼ ヒーローエリア（スプリットレイアウト＆スライドショー）
   =================================== */
.hero-split {
    display: flex;
    width: 100%;
    margin-top: 80px; /* ヘッダーの高さ分 */
    min-height: calc(100vh - 80px); 
    background-color: #f9f9f9;
}

/* --- 左側：文字エリア --- */
.hero-content {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    box-sizing: border-box;
}

.hero-text-inner {
    max-width: 400px;
}

.hero-text-inner h2 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: 0.05em;
    color: #333;
    font-family: sans-serif;
    font-weight: normal;
}

.hero-text-inner .catch-copy {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #444;
}

.hero-text-inner .sub-copy {
    font-size: 1rem;
    color: #888;
    line-height: 1.8;
}

/* --- 右側：画像エリア（スライドショー） --- */
.hero-image {
    width: 60%;
    position: relative;
    overflow: hidden;
}

.slide-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    /* 12秒で1周するアニメ（画像2枚 × 6秒） */
    animation: slideAnime 12s infinite; 
}

/* スライドショーのアニメーション */
@keyframes slideAnime {
    0% { opacity: 0; }
    8% { opacity: 1; }
    42% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 0; }
}

/* タイミング調整 */
.slide-wrapper img:nth-child(1) { animation-delay: 0s; }
.slide-wrapper img:nth-child(2) { animation-delay: 6s; }


/* ===================================
   ★スマホ対応：ヒーローエリア修正
   =================================== */
@media (max-width: 900px) {
    .hero-split {
        flex-direction: column-reverse; /* 画像を上に */
        margin-top: 80px;
        height: auto;
    }

    /* 文字エリア */
    .hero-content {
        width: 100%;
        padding: 50px 20px;
        text-align: center;
        background-color: #fff;
    }

    .hero-text-inner h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .hero-text-inner .catch-copy {
        font-size: 1.2rem;
    }

    /* 画像エリア */
    .hero-image {
        width: 100%;
        /* ★高さを450pxから380pxに減らす（これで下の余白が詰まります） */
        height: 380px; 
    }

    .hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* ★ここを「center top」にして、上端を基準に表示させる */
        object-position: center top; 
    }
}

/* ===================================
   ▼ 共通セクション設定
   =================================== */
section {
    padding: 80px 20px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

/* ★スマホで余白を広げる設定 */
@media (max-width: 900px) {
    .container {
        padding-left: 30px;  /* ★左余白追加 */
        padding-right: 30px; /* ★右余白追加 */
    }
}

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

.sub-title {
    color: #dfaec0;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
    letter-spacing: 0.1em;
}

.section-title h2 {
    font-size: 2rem;
    color: #444;
    margin-top: 10px;
}

/* ===================================
   ▼ 背景の装飾文字（筆記体デザイン）
   =================================== */
@import url('https://fonts.googleapis.com/css2?family=Allura&display=swap');

.bg-deco {
    position: relative;
}

.bg-deco::before {
    content: attr(data-en);
    position: absolute;
    top: -20px;
    left: 20px;
    font-family: 'Allura', cursive;
    font-size: 8rem;
    color: rgba(223, 174, 192, 0.15);
    z-index: 0;
    pointer-events: none;
    line-height: 1;
}

@media (max-width: 900px) {
    .bg-deco::before {
        font-size: 5rem;
        top: 0;
    }
}

/* ===================================
   ▼ コンセプトセクション（縦書き対応）
   =================================== */
.section-concept {
    background-color: #fffafa;
}

.concept-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.concept-text {
    flex: 1;
}

/* 縦書きボックス（PC用） */
.tategaki-box {
    writing-mode: vertical-rl;
    height: 380px;
    margin-bottom: 30px;
    line-height: 2.2;
    letter-spacing: 0.1em;
    text-align: justify;
}

.tategaki-box h2 {
    font-size: 1.8rem;
    margin-left: 40px;
    margin-bottom: 0;
    color: #333;
    border-left: none;
}

.tategaki-box p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 0;
}

.concept-image {
    flex: 1;
}

.concept-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 10px 10px 0px #f3d1df;
}

/* ★スマホ対応（コンセプト・縦書き解除・中央寄せ） */
@media (max-width: 900px) {
    .concept-content { flex-direction: column; }
    .concept-text, .concept-image { width: 100%; }
    
    .concept-text {
        text-align: center; /* ★全体を中央寄せ */
    }

    .tategaki-box {
        writing-mode: horizontal-tb; /* ★横書きに戻す */
        height: auto;
        margin-bottom: 20px;
        text-align: center; /* ★文字を中央揃え */
    }

    .tategaki-box h2 {
        font-size: 1.5rem;
        margin-left: 0;
        margin-bottom: 25px;
        line-height: 1.4;
    }

    .tategaki-box p {
        text-align: center;
        display: inline-block;
    }
}

/* ===================================
   ▼ メニューセクション
   =================================== */
.section-menu {
    background-color: #ffffff;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.menu-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.menu-card:hover {
    transform: translateY(-5px);
}

.menu-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.menu-text {
    padding: 25px;
    text-align: center;
}

.menu-text h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #444;
}

.menu-text p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.btn-link {
    color: #dfaec0;
    font-weight: bold;
    font-size: 0.9rem;
}

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

.btn-more {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid #444;
    color: #444;
    text-decoration: none;
    transition: all 0.3s;
    letter-spacing: 0.1em;
}

.btn-more:hover {
    background-color: #444;
    color: #fff;
}

/* ===================================
   ▼ 店舗情報・アクセス
   =================================== */
.section-salon {
    background-color: #f9f9f9;
}

.salon-wrapper {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.salon-box {
    background: #fff;
    width: 45%;
    padding: 40px;
    border: 1px solid #eee;
    text-align: center;
    box-sizing: border-box;
}

.salon-box h3 {
    color: #dfaec0;
    font-size: 1.2rem;
    margin-bottom: 20px;
    border-bottom: 1px solid #dfaec0;
    display: inline-block;
    padding-bottom: 5px;
}

.address {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.map-area {
    width: 100%;
    height: 250px;
    margin-bottom: 20px;
    background-color: #eee;
}

.map-area iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.action-area { margin-top: 20px; }

.btn-hotpepper {
    display: block;
    width: 100%;
    padding: 15px 0;
    background-color: #dfaec0;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
}

.btn-hotpepper:hover {
    background-color: #c48b9f;
    transform: translateY(2px);
    box-shadow: none;
}

.sns-buttons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.btn-sns {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 0;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    border-radius: 5px;
    transition: opacity 0.3s;
    font-weight: bold;
}

.btn-sns:hover { opacity: 0.8; }
.btn-sns i { font-size: 1.2rem; margin-right: 8px; }

.instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.line { background-color: #06c755; }

/* ===================================
   ▼ フッター（プロ仕様・センターデザイン）
   =================================== */
footer {
    background-color: #333; /* 背景色：ダークグレー */
    color: #fff;
    padding: 60px 20px 30px; /* 上・左右・下の余白 */
    font-family: "Noto Serif JP", serif;
}

.footer-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center; /* ★すべて中央揃えにする */
}

/* 1. ブランド情報 */
.footer-brand h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: normal;
    letter-spacing: 0.05em;
    font-family: 'Allura', cursive, serif; /* 英語はおしゃれなフォントがあれば優先 */
}

.footer-brand p {
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 5px;
}

.footer-address {
    margin-top: 15px;
    font-size: 0.85rem;
    line-height: 1.8;
    color: #aaa !important;
}

/* 2. アクションボタン（SNS・ショップ） */
.footer-actions {
    margin: 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

/* SNSアイコン */
.icon-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    border-radius: 50%; /* 丸くする */
    background-color: #444;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.icon-link:hover {
    background-color: #dfaec0;
    transform: translateY(-3px);
}

/* ショップボタン */
.btn-footer-shop {
    padding: 12px 25px;
    border: 1px solid #666;
    color: #fff;
    border-radius: 30px;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.btn-footer-shop:hover {
    background-color: #fff;
    color: #333;
    border-color: #fff;
}

/* 3. ナビゲーション（横並び） */
.footer-nav-list {
    display: flex;
    justify-content: center;
    gap: 30px; /* メニュー同士の間隔 */
    margin-bottom: 40px;
    flex-wrap: wrap; /* スマホで折り返せるように */
    border-top: 1px solid #444; /* 上に区切り線 */
    padding-top: 40px;
}

.footer-nav-list li {
    list-style: none;
}

.footer-nav-list a {
    color: #bbb;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s;
    letter-spacing: 0.05em;
}

.footer-nav-list a:hover {
    color: #dfaec0; /* ホバー時はピンク */
}

/* 4. コピーライト */
.copyright {
    font-size: 0.75rem;
    color: #666;
}

/* ▼ スマホ対応 */
@media (max-width: 768px) {
    .footer-nav-list {
        flex-direction: column; /* 縦並びにする */
        gap: 20px;
    }
    
    .footer-actions {
        flex-direction: column; /* アイコンとボタンを縦に */
    }
}

/* ===================================
   ▼ 右端固定の予約ボタン（フローティング）
   =================================== */
.floating-reserve {
    position: fixed;
    top: 20%;
    right: 0;
    z-index: 999;
    background-color: #333;
    color: #fff;
    padding: 20px 10px;
    border-radius: 5px 0 0 5px;
    box-shadow: -2px 2px 5px rgba(0,0,0,0.2);
    transition: all 0.3s;
    text-align: center;
    writing-mode: vertical-rl;
    letter-spacing: 0.2em;
    font-weight: bold;
    text-decoration: none;
    font-family: "Noto Serif JP", serif;
}

.floating-reserve:hover {
    background-color: #dfaec0;
    right: -5px;
}

.floating-reserve i {
    font-size: 1.2rem;
    margin-top: 10px;
    writing-mode: horizontal-tb;
}

/* ===================================
   ▼ ページ別：会社概要
   =================================== */
.company-main {
    padding-top: 120px;
    padding-bottom: 80px;
    background-color: #fffafa;
}

.company-table {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.company-table dl {
    display: flex;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
    margin: 0;
}

.company-table dl:last-child { border-bottom: none; }
.company-table dt { width: 30%; font-weight: bold; color: #444; }
.company-table dd { width: 70%; margin: 0; color: #666; line-height: 1.8; }

/* ===================================
   ▼ ページ別：メニュー・料金表
   =================================== */
.price-main {
    padding-top: 120px;
    padding-bottom: 80px;
    background-color: #fff;
}

.price-section { margin-bottom: 80px; }
.price-section h3 {
    font-size: 1.8rem;
    color: #dfaec0;
    border-bottom: 2px solid #dfaec0;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-weight: normal;
}
.price-section h3 .jp-name {
    font-size: 1rem;
    color: #444;
    margin-left: 15px;
    font-weight: bold;
}

.menu-desc { margin-bottom: 30px; color: #666; line-height: 1.8; }

.price-section h4 {
    font-size: 1.2rem;
    color: #444;
    margin-top: 40px;
    margin-bottom: 15px;
    border-left: 4px solid #dfaec0;
    padding-left: 10px;
}

/* 料金テーブル */
.table-scroll {
    overflow-x: auto;
    width: 100%;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
}

.price-table th {
    text-align: left;
    padding: 15px 10px;
    background-color: #f9f9f9;
    color: #444;
    border-bottom: 2px solid #ddd;
    font-weight: bold;
    white-space: nowrap;
}

.price-table td {
    padding: 15px 10px;
    border-bottom: 1px solid #eee;
    color: #555;
}

.w-price { width: 25%; }
.w-unit { width: 25%; }
.w-note { width: 20%; }

.price-table .price { font-weight: bold; color: #333; font-size: 1.1rem; }
.price-table .unit-price { color: #888; font-size: 0.95rem; }
.price-table .note { font-size: 0.85rem; color: #888; }

/* ホームケア */
.homecare-grid { display: flex; gap: 30px; margin-top: 30px; }
.homecare-box {
    flex: 1;
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 8px;
    background-color: #fff;
}
.homecare-box.pink { border-top: 4px solid #ffb7c5; }
.homecare-box.white { border-top: 4px solid #ddd; }

.homecare-box h4 { margin: 0 0 15px 0; font-size: 1.2rem; border: none; padding: 0; }
.homecare-box .price { font-size: 1.5rem; font-weight: bold; color: #444; margin-bottom: 10px; }
.homecare-box .tax { font-size: 0.9rem; font-weight: normal; }
.homecare-box .target { font-weight: bold; margin-bottom: 20px; color: #666; }
.homecare-box ul { list-style: disc; padding-left: 20px; color: #666; }
.homecare-box li { margin-bottom: 5px; }

/* ECサイトリンク */
.ec-link-area { margin-top: 80px; text-align: center; }
.ec-box {
    background-color: #f9f9f9;
    padding: 50px;
    border: 1px solid #eee;
    border-radius: 8px;
}
.ec-box h3 { font-size: 1.5rem; margin-bottom: 15px; color: #444; }
.ec-box p { margin-bottom: 30px; color: #666; }
.btn-ec {
    display: inline-block;
    background-color: #444;
    color: #fff;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    letter-spacing: 0.05em;
}
.btn-ec:hover { background-color: #dfaec0; }

/* ===================================
   ▼ ヘッダーのスマホ対応（ハンバーガーメニュー）
   =================================== */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 200;
}

/* ===================================
   ▼ スマホ対応（その他一括設定）
   =================================== */
@media (max-width: 900px) {
    /* メニュー関連 */
    .menu-grid { grid-template-columns: 1fr; gap: 40px; }
    .salon-box { width: 100%; }
    .sns-buttons { flex-direction: column; }
    .footer-inner { flex-direction: column; text-align: center; gap: 30px; }
    .footer-links ul { text-align: center; }
    
    /* 会社概要・料金 */
    .company-table { padding: 20px; }
    .company-table dl { display: block; }
    .company-table dt { width: 100%; margin-bottom: 5px; color: #dfaec0; }
    .company-table dd { width: 100%; }
    .homecare-grid { flex-direction: column; }
    .price-section h3 { font-size: 1.5rem; }
    .ec-box { padding: 30px 20px; }

    /* 予約ボタン（下固定） */
    .floating-reserve {
        top: auto;
        bottom: 0;
        right: 0;
        width: 100%;
        height: auto;
        writing-mode: horizontal-tb;
        padding: 15px 0;
        border-radius: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        font-size: 1.1rem;
        background-color: rgba(51, 51, 51, 0.95);
    }
    .floating-reserve i { margin-top: 0; }
    footer { padding-bottom: 80px; }

    /* ハンバーガーメニュー */
    .hamburger {
        display: block;
        width: 30px;
        height: 25px;
        position: relative;
    }
    .hamburger span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #444;
        transition: all 0.3s;
    }
    .hamburger span:nth-child(1) { top: 0; }
    .hamburger span:nth-child(2) { top: 11px; }
    .hamburger span:nth-child(3) { bottom: 0; }
    
    .hamburger.active span:nth-child(1) { transform: rotate(45deg); top: 11px; }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg); bottom: 11px; }

    .pc-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.95);
        transition: right 0.3s;
        z-index: 150;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .pc-nav.active { right: 0; }
    .pc-nav ul { flex-direction: column; gap: 30px; text-align: center; }
    .pc-nav a { font-size: 1.2rem; font-weight: bold; color: #444; }
    .btn-reserve a { background-color: #dfaec0; padding: 15px 40px; }
}

/* ===================================
   ▼ アニメーション（フワッと表示）
   =================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.5s ease, transform 1.5s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
/* ===================================
   ▼ オンラインショップ誘導エリア
   =================================== */
.section-shop {
    background-color: #fffafa; /* 薄いピンクベージュ */
}

.shop-banner {
    background-color: #fff;
    padding: 60px 40px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(223, 174, 192, 0.1); /* ふんわりピンクの影 */
    max-width: 800px;
    margin: 0 auto; /* 真ん中に配置 */
}

.shop-content h2 {
    font-size: 1.8rem;
    color: #444;
    margin-bottom: 20px;
}

.shop-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* ショップへのボタンデザイン */
.btn-shop {
    display: inline-block;
    background-color: #444;
    color: #fff;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px; /* 丸っこいボタン */
    font-weight: bold;
    letter-spacing: 0.05em;
    transition: all 0.3s;
}

.btn-shop:hover {
    background-color: #dfaec0; /* ホバーでピンクに */
    transform: translateY(-3px); /* 少し浮く */
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.btn-shop i {
    margin-left: 10px; /* アイコンとの隙間 */
}

/* スマホ対応 */
@media (max-width: 900px) {
    .shop-banner {
        padding: 40px 20px;
    }
    .shop-content h2 {
        font-size: 1.4rem;
    }
}
/* ===================================
   ▼ オープニングアニメーション
   =================================== */
/* 最初に見える白い幕 */
#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    z-index: 9999; /* 最前面に */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 1s ease, visibility 1s ease; /* 1秒かけて消える */
}

/* 真ん中のロゴ */
.loading-logo {
    text-align: center;
    opacity: 0;
    animation: logoFadeIn 1s forwards; /* ロゴがふわっと出る */
}

.loading-logo img {
    width: 150px; /* ロゴのサイズ */
    margin-bottom: 10px;
}

.loading-logo p {
    font-family: 'Allura', cursive;
    font-size: 1.5rem;
    color: #dfaec0;
}

/* ロゴが出るアニメ */
@keyframes logoFadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* サイトが表示されたら幕を消すクラス */
#loading.loaded {
    opacity: 0;
    visibility: hidden;
}
/* スマホ用設定の中に追記 */
@media (max-width: 768px) {
    .menu-grid {
        display: flex;
        flex-direction: column; /* 縦に並べる */
    }

    /* バストケアのカードを1番目に */
    .menu-item.bust-care { 
        order: 1; 
    }

    /* フェイシャルのカードを2番目に */
    .menu-item.facial { 
        order: 2; 
    }

    /* ボディメイクのカードを3番目に */
    .menu-item.body-make { 
        order: 3; 
    }
}