@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;700&display=swap');

/* =========================================
   ベース設定（全体の色やフォント）
========================================= */
:root {
    --color-bg: #ffffff;             /* 背景：白 */
    --color-sub-bg: #fff0f5;         /* 薄いピンク */
    --color-main: #ffb6c1;           /* メインのピンク */
    --color-accent: #ff69b4;         /* 濃いピンク */
    --color-text: #555555;           /* 文字：グレー */
    --font-base: 'Zen Maru Gothic', sans-serif; /* 丸っこいフォント */
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-base);
    margin: 0; padding: 0;
    line-height: 1.8;
    
    /* ▼▼ 追加：フッターを下に押し下げるための魔法 ▼▼ */
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* 画面の高さ100%を確保 */
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; padding: 0; margin: 0; }
img { width: 100%; display: block; border-radius: 8px; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 15px; }

/* =========================================
   ヘッダー
========================================= */
header {
    background: #fff0f5;
    border-bottom: 3px solid var(--color-main);
    position: relative;
    overflow: hidden;
}

/* きらめくシャボン玉のエフェクト */
.bubble-container {
    position: absolute;
    width: 100%; height: 100%;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 0;
}

.bubble {
    position: absolute;
    bottom: -50px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, 
        rgba(255,255,255,1), 
        rgba(255,255,255,0.4) 40%, 
        rgba(255,105,180,0.3) 70%, 
        rgba(135,206,235,0.4) 100%);
    border: 1px solid rgba(255, 255, 255, 0.9);
    opacity: 0.85;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
    animation: floatUp linear infinite;
}

@keyframes floatUp {
    0% { transform: translateY(0) rotate(0deg); opacity: 0; }
    20% { opacity: 0.8; }
    100% { transform: translateY(-200px) rotate(360deg); opacity: 0; }
}

.x1 { width: 40px; height: 40px; left: 10%; animation-duration: 7s; }
.x2 { width: 60px; height: 60px; left: 30%; animation-duration: 9s; animation-delay: 1s; }
.x3 { width: 30px; height: 30px; left: 55%; animation-duration: 6s; animation-delay: 2s; }
.x4 { width: 50px; height: 50px; left: 75%; animation-duration: 8s; animation-delay: 0.5s; }
.x5 { width: 70px; height: 70px; left: 90%; animation-duration: 10s; animation-delay: 3s; }

/* ヘッダーメインエリア */
.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    position: relative; z-index: 1;
}

.header-left {
    display: flex;
    align-items: baseline;
    gap: 15px;
    flex-wrap: wrap;
}

.shop-info {
    font-size: 0.85rem;
    color: var(--color-text);
    font-weight: bold;
    opacity: 0.8;
}

.site-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--color-accent);
    text-shadow: 2px 2px 0px #fff, 4px 4px 0px rgba(255, 182, 193, 0.5);
    letter-spacing: 0.05em;
}

.header-tel {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--color-accent);
    border: 2px solid var(--color-main);
    border-radius: 20px;
    padding: 5px 15px;
}

/* ナビゲーションメニュー */
.nav-scroller {
    overflow-x: auto;
    white-space: nowrap;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 240, 245, 0.95);
    border-top: 1px solid #fff;
    border-bottom: 3px solid var(--color-main);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    padding: 5px 0; 
}

.global-nav { display: flex; justify-content: space-between; min-width: 900px; }
.global-nav a {
    display: block;
    padding: 10px 15px;
    font-weight: bold;
    border-radius: 20px;
    margin: 0 5px;
    color: var(--color-text);
    transition: all 0.3s ease;
    border: 1px solid transparent; 
}

.global-nav a:hover {
    background: var(--color-sub-bg);
    color: var(--color-accent);
    border-color: var(--color-main);
    transform: translateY(-2px);
}

/* 箱のデザイン・レイアウト */
.panel-box {
    background: #ffffff;
    border: 2px solid var(--color-main);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(255, 182, 193, 0.2);
    height: 100%;
    display: flex; flex-direction: column;
}

.panel-header {
    background: var(--color-sub-bg);
    padding: 10px 0; text-align: center;
    border-bottom: 2px solid var(--color-main);
}
.panel-header h2 {
    margin: 0; font-size: 1.1rem; color: var(--color-accent); font-weight: bold;
}

.panel-body {
    padding: 20px; background: #fff;
    flex: 1; min-height: 200px;
}

.layout-grid {
    display: flex; justify-content: space-between; gap: 20px;
    margin-bottom: 30px;
}
.layout-left, .layout-right { width: 48%; }

@media (max-width: 768px) {
    .header-main { flex-direction: column; gap: 10px; }
    .header-left { flex-direction: column; gap: 5px; }
    .layout-grid { display: block; }
    .layout-left, .layout-right { width: 100%; margin-bottom: 20px; }
}

/* スライドバナー */
.hero-slider {
    width: 100%;
    aspect-ratio: 1.618 / 1;
    position: relative;
    overflow: hidden;
    margin-top: 30px;
    margin-bottom: 30px;
    border: 2px solid var(--color-main);
    border-radius: 15px;
    background: #fff0f5;
    box-shadow: 0 4px 10px rgba(255, 182, 193, 0.2);
}

.slide-item {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease;
    z-index: 1;
}

.slide-item.active {
    opacity: 1;
    z-index: 2;
}

.slide-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 13px; 
}

/* =========================================
   ▼ フッター（店舗情報・横並び版）
========================================= */
footer {
    background-color: var(--color-sub-bg);
    color: var(--color-text);
    padding: 20px 0 15px;
    text-align: center;
    border-top: 3px solid var(--color-main);
    font-family: var(--font-base);
    
    /* ▼▼ 変更：自動的に一番下まで押し下げる ▼▼ */
    margin-top: auto; 
}

/* フッター内のリンクグループ */
.text-links-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 15px; /* 下の要素との距離を詰める */
    gap: 0;
}

.text-links-group a {
    color: var(--color-text);
    text-decoration: none;
    font-size: 12px; /* 少し文字を小さくしてスリム化 */
    letter-spacing: 0.05em;
    padding: 0 10px;
    border-right: 1px solid var(--color-main);
    line-height: 1;
    transition: all 0.3s ease;
    font-weight: bold;
}

.text-links-group a:last-child {
    border-right: none;
}

.text-links-group a:hover {
    color: var(--color-accent);
    opacity: 0.7;
}

/* 店舗情報エリア：ここを横並びに変更！ */
.footer-info {
    display: flex;           /* 横並びにする魔法 */
    justify-content: center; /* 中央寄せ */
    align-items: center;     /* 上下の高さを合わせる */
    gap: 20px;               /* 項目ごとの間隔 */
    margin-bottom: 15px;     /* コピーライトとの距離 */
    flex-wrap: wrap;         /* 画面が狭いときは折り返す */
}

.footer-info h3 {
    font-size: 1.2rem;
    color: var(--color-accent);
    margin: 0; /* 不要な余白を削除 */
    letter-spacing: 0.05em;
    font-weight: bold;
}

.footer-info p {
    font-size: 12px;
    line-height: 1;
    color: var(--color-text);
    margin: 0; /* 不要な余白を削除 */
}

/* コピーライト */
.copyright {
    font-size: 10px;
    color: #888;
    margin-top: 10px;
}

/* スマホ表示の調整 */
@media screen and (max-width: 768px) {
    .text-links-group {
        gap: 8px 12px;
        margin-bottom: 20px;
    }
    .text-links-group a {
        border-right: none;
        padding: 0;
        font-size: 11px;
    }
    /* スマホでは店舗情報が横に並びすぎると崩れるので、自然に折り返す */
    .footer-info {
        gap: 10px;
    }
}

/* スマホ（横幅768px以下）の時だけ u-pc-only という名前がついた要素を消す */
@media screen and (max-width: 768px) {
    .u-pc-only {
        display: none !important;
    }
}