@charset "UTF-8";

/* =========================================
   基本設定・変数
   ========================================= */
:root {
    --primary-color: #4CAF50;      /* メインの緑 */
    --primary-dark: #2E7D32;       /* 濃い緑 */
    --accent-color: #ff9800;       /* オレンジ */
    --accent-dark: #ef6c00;        /* 濃いオレンジ */
    --bg-color: #fdfdf7;           /* 背景のクリーム色 */
    --text-color: #333333;         /* テキスト黒 */
    --text-light: #666666;         /* テキストグレー */
    --white: #ffffff;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 20px rgba(0,0,0,0.12);
    --radius-md: 12px;
    --radius-lg: 20px;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Zen Maru Gothic', sans-serif; /* Google Font適用 */
    color: var(--text-color);
    line-height: 1.8;
    background-color: var(--bg-color);
    /* 背景にうっすらテクスチャを入れるとさらにリッチになりますが、今回はシンプルに */
}

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

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

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

/* =========================================
   共通コンポーネント
   ========================================= */
main {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

/* カードスタイル（白い箱） */
.card-style {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 40px;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden; /* 角丸からはみ出さない */
}

/* マーカー装飾 */
.marker {
    background: linear-gradient(transparent 60%, #ffecb3 60%);
    font-weight: bold;
}

/* =========================================
   ヘッダーエリア
   ========================================= */
.site-header {
    margin-bottom: 40px;
}

.hero-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-image-container {
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    line-height: 0;
}

.green-message-badge {
    background: var(--primary-color);
    color: var(--white);
    max-width: 800px;
    margin: -5px auto 0; /* 画像に少し被せる */
    padding: 20px 30px;
    border-radius: var(--radius-md);
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-md);
    font-weight: 500;
}

.green-message-badge .highlight {
    font-size: 1.2em;
    font-weight: bold;
    color: #fff9c4; /* 薄い黄色 */
}

/* =========================================
   コンテンツセクション
   ========================================= */
.section-title {
    font-size: 1.5rem;
    color: var(--primary-dark);
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}

.section-icon {
    width: 35px;
    margin-right: 12px;
}

.flex-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.flex-content .text-area {
    flex: 1;
}

.flex-content .image-area {
    flex: 1;
}

.rounded-shadow-img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

/* スマホ対応 */
@media (max-width: 768px) {
    .flex-content {
        flex-direction: column-reverse; /* スマホでは画像が上に来るようにしてもOK */
    }
    .card-style {
        padding: 25px;
    }
}

/* =========================================
   店長セクション
   ========================================= */
.bg-accent {
    background-color: #fffde7; /* 薄い黄色背景 */
    border: 2px dashed var(--primary-color);
}

.section-title-simple {
    text-align: center;
    color: var(--primary-dark);
    margin-bottom: 30px;
    font-size: 1.4rem;
}

.manager-box {
    display: flex;
    gap: 30px;
    align-items: center;
}

.manager-illustration {
    width: 200px;
    text-align: center;
    flex-shrink: 0;
}

.speech-bubble {
    background: var(--white);
    border: 1px solid #ccc;
    border-radius: 15px;
    padding: 15px;
    font-size: 0.9rem;
    position: relative;
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
}

.speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 10px 10px 0;
    border-style: solid;
    border-color: #fff transparent transparent;
    display: block;
    width: 0;
}

.manager-img {
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: var(--shadow-sm);
}

/* =========================================
   CTA バナー（リッチ版）
   ========================================= */
.cta-banner-rich {
    background: linear-gradient(135deg, #fdfbfb 0%, #f7f7f7 100%);
    border: 1px solid #eee;
    padding: 30px;
    text-align: center;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    margin: 40px 0;
}

.cta-label {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 4px 0 var(--accent-dark);
    transition: transform 0.1s;
}

.cta-button:active {
    transform: translateY(4px);
    box-shadow: none;
}

.cta-button .icon {
    font-size: 1.2rem;
    vertical-align: middle;
}

.cta-button .sub-text {
    display: block;
    font-size: 0.8rem;
    font-weight: normal;
    margin-top: 5px;
    opacity: 0.9;
}

/* =========================================
   チェックリスト
   ========================================= */
.check-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.check-list-grid li {
    background: #f1f8e9;
    padding: 12px 15px;
    border-radius: 8px;
    position: relative;
    padding-left: 40px;
    font-weight: 500;
}

.check-list-grid li::before {
    content: '✔';
    position: absolute;
    left: 15px;
    color: var(--primary-color);
    font-weight: bold;
}

/* =========================================
   お客様の声（稲穂装飾）
   ========================================= */
.voice-bg-decoration {
    position: absolute;
    bottom: 0;
    
    right: 40px;  /* 例：40pxくらい空ける */
    
    width: 300px;
    pointer-events: none;
    z-index: 0;
}

.voice-content {
    position: relative;
    z-index: 1; /* テキストを画像の上に */
    background: rgba(255,255,255,0.8); /* 文字が読みやすいように背景を少し白く */
    padding: 20px;
    border-radius: var(--radius-md);
}

.green-bar-title {
    border-left: 6px solid var(--primary-color);
    padding-left: 15px;
    color: var(--primary-dark);
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.voice-name {
    text-align: right;
    font-weight: bold;
    margin-top: 15px;
    color: var(--text-light);
}

/* =========================================
   料金・アクセス グリッド
   ========================================= */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
}

/* 料金表 */
.price-title {
    background: var(--accent-color);
    color: white;
    margin: -40px -40px 30px -40px; /* カードの余白を打ち消す */
    padding: 15px;
    text-align: center;
    font-size: 1.2rem;
}

.price-highlight-box {
    background: #fff3e0;
    border: 2px solid var(--accent-color);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    margin-bottom: 20px;
}

.price-highlight-box .arrow {
    color: var(--accent-color);
    margin: 0 10px;
    font-weight: bold;
}

.big-price {
    font-size: 2rem;
    color: #e91e63;
    font-weight: bold;
    line-height: 1;
}

.big-price .unit {
    font-size: 1rem;
    color: #333;
}

.price-row {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dotted #ccc;
    padding: 10px 0;
}

.price-row dt {
    font-weight: bold;
}

.price-row dd {
    color: #c2185b;
    font-weight: bold;
}

.price-notes {
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--text-light);
}

/* アクセス */
.access-title-rich {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-dark);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
    z-index: 2;
}

.map-container-rich {
    margin: -40px -40px 20px -40px; /* カード幅いっぱいに */
    line-height: 0;
}

.access-info {
    text-align: center;
}

.route-btn-rich {
    display: inline-block;
    margin-top: 15px;
    background: var(--primary-color);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.route-btn-rich:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* =========================================
   What's New & Footer
   ========================================= */
.news-header-rich {
    font-size: 1.2rem;
    color: var(--accent-dark);
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-weight: bold;
}

.news-list-rich li {
    border-bottom: 1px solid #eee;
    padding: 10px 0;
}

.news-list-rich a:hover {
    color: var(--accent-color);
}

.news-list-rich .date {
    font-family: 'Arial', sans-serif;
    color: #999;
    margin-right: 15px;
}

.news-list-rich .tag {
    background: #eee;
    font-size: 0.75rem;
    padding: 2px 6px;
    border-radius: 4px;
    margin-right: 10px;
    vertical-align: 2px;
}

/* フッター */
.site-footer {
    background: #3e2723; /* 濃いブラウンで引き締め */
    color: white;
    padding-top: 40px;
}

.footer-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-info h4 {
    font-size: 1.4rem;
    margin: 0 0 10px 0;
    color: #ffcc80;
}

.footer-details li {
    margin-bottom: 8px;
    display: flex;
}

.footer-details span {
    display: inline-block;
    width: 80px;
    color: #bdbdbd;
    flex-shrink: 0;
}

.copyright-bar {
    background: #281a17;
    text-align: center;
    padding: 15px;
    margin-top: 40px;
    font-size: 0.8rem;
    color: #9e9e9e;
}

/* =========================================
   スクロールアニメーション設定
   ========================================= */

/* 初期状態：少し下にあり、透明 */
.scroll-trigger {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.0s cubic-bezier(0.16, 1, 0.3, 1); /* 高級感のある動き */
    will-change: opacity, transform; /* 描画パフォーマンス最適化 */
}

/* 表示状態：元の位置に戻り、不透明に */
.scroll-trigger.is-active {
    opacity: 1;
    transform: translateY(0);
}

/* 順番に表示させるための遅延設定（必要な場合に使用） */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }

/* =========================================
   Instagramボタン & CTAレイアウト
   ========================================= */

/* ボタンを並べるためのコンテナ */
.cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* スマホで折り返す */
    margin-top: 15px;
}

/* インスタグラムボタン（グラデーション） */
.insta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(220, 39, 67, 0.3); /* ピンク系の影 */
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
}

.insta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(220, 39, 67, 0.4);
    color: white;
}

.insta-button .icon-svg {
    width: 20px;
    height: 20px;
    fill: white;
    margin-right: 10px;
}

/* 既存の電話ボタンもサイズ感を合わせる調整 */
.cta-button {
    display: inline-flex; /* flexに変更して整列 */
    align-items: center;
    justify-content: center;
    /* 既存のスタイルは維持しつつ、並びのために微調整 */
    margin: 0 !important; /* 個別のマージンをリセット */
}

/* スマホ表示時の調整 */
@media (max-width: 600px) {
    .cta-group {
        flex-direction: column; /* 縦並び */
        gap: 15px;
    }
    .insta-button, .cta-button {
        width: 100%; /* 幅いっぱいに */
        box-sizing: border-box;
    }
}