/* 全体の設定 */
body {
    font-family: 'Hiragino Maru Gothic ProN', sans-serif;
    margin: 0;
    color: #4a4a4a;
    background-color: #fdfdfd;
    line-height: 1.8;
}

/* --- スクロールふわっとアニメーション --- */

/* アニメーションさせたい要素の初期状態 */
section, 
.member-card, 
.voice-item, 
.polaroid-card {
    /* 画面内に入った時に実行されるアニメーションを設定 */
    view-timeline-name: --fadein;
    view-timeline-axis: block;

    /* アニメーションの定義 */
    animation-name: fuwa-up;
    animation-fill-mode: both;
    
    /* 画面の下から20%の位置に来たらアニメーション開始、40%で完了 */
    animation-timeline: --fadein;
    animation-range: entry 20% contain 40%;
}

/* ふわっと浮き上がる動きの内容 */
@keyframes fuwa-up {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.95); /* 下から、少し小さめに */
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1); /* 定位置へ、元の大きさに */
    }
}

/* 順番に（時間差で）出したい要素への微調整 */
.member-card:nth-child(2) { animation-delay: 0.1s; }
.member-card:nth-child(3) { animation-delay: 0.2s; }
.member-card:nth-child(4) { animation-delay: 0.3s; }

/* 注意：最新のブラウザ（Chrome/Edgeなど）で動作します。
   古いブラウザへの対応が必要な場合は、簡単なJS（Intersection Observer）を使いますが、
   まずはこの最新でスマートな方法を試してみてください！
*/

/* ヘッダー：ふわふわ横並び */
.fuwafuwa-header {
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-radius: 0 0 40px 40px;
    box-shadow: 0 10px 30px rgba(46, 125, 50, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.logo { height: 65px; }

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #444;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 20px;
    transition: 0.3s;
}

/* --- ハンバーガーメニューの基本設定 --- */
#menu-btn-check {
    display: none; /* チェックボックスは隠す */
}

.menu-btn {
    display: none; /* PCでは三本線を表示しない */
}

/* --- スマホサイズ（768px以下）のスタイル --- */
@media (max-width: 768px) {
    .pc-only { display: none; } /* PC用ボタンを隠す */

    .menu-btn {
        display: flex;
        height: 60px;
        width: 60px;
        justify-content: center;
        align-items: center;
        z-index: 100;
        cursor: pointer;
    }

    /* 三本線の形 */
    .menu-btn span,
    .menu-btn span::before,
    .menu-btn span::after {
        content: '';
        display: block;
        height: 3px;
        width: 25px;
        border-radius: 3px;
        background-color: #2e7d32; /* ロゴの緑 */
        position: absolute;
        transition: all 0.3s;
    }
    .menu-btn span::before { bottom: 8px; }
    .menu-btn span::after { top: 8px; }

    /* チェックが入った時（クリック時）の×印アニメーション */
    #menu-btn-check:checked ~ .menu-btn span { background-color: rgba(255, 255, 255, 0); }
    #menu-btn-check:checked ~ .menu-btn span::before { bottom: 0; transform: rotate(45deg); }
    #menu-btn-check:checked ~ .menu-btn span::after { top: 0; transform: rotate(-45deg); }

    /* メニューの中身（ふわっと上から出てくる） */
    .header-nav {
        position: fixed;
        top: 0;
        left: 100%; /* 最初は画面の右に隠しておく */
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        transition: all 0.5s;
        z-index: 90;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .nav-links {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .nav-links a {
        font-size: 1.5rem; /* スマホで見やすい大きな文字 */
        color: #2e7d32;
    }

    /* チェックが入ったらメニューを表示 */
    #menu-btn-check:checked ~ .header-nav {
        left: 0;
    }

    /* スマホ限定の申し込みボタン */
    .btn-entry-sp {
        background: #FFADAD;
        color: #fff !important;
        padding: 10px 30px;
        border-radius: 30px;
        box-shadow: 0 4px 0 #e69595;
    }
}

.nav-links a:hover { background: #e8f5e9; color: #2e7d32; }

/* 会員申し込みボタン：ぷにぷに動く */
.btn-entry.bubble {
    background: #FFADAD;
    color: #fff;
    padding: 12px 25px;
    border-radius: 60% 40% 60% 40% / 40% 60% 40% 60%;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 0 #e69595;
    animation: pulse-cute 3s infinite ease-in-out;
}

@keyframes pulse-cute {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* メインビジュアル：写真をふわふわに */
/* FV全体のレイアウト */
.hero-layout {
    background: #fdfdfd;
    padding: 100px 5% 150px;
    overflow: hidden;
    position: relative;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* キャッチコピーを「いい感じ」にする設定 */
.hero-copy-box {
    position: relative;
    z-index: 10;
    flex: 1;
}

.hero-mini-tag {
    color: #2e7d32;
    font-weight: bold;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    border-left: 3px solid #FFADAD;
    padding-left: 10px;
    margin-bottom: 20px;
    display: block;
}

.main-visual-text {
    font-size: 4.8rem; /* 大きくしてインパクトを出す */
    color: #333;
    line-height: 1.1;
    margin: 0 0 30px 0;
    font-weight: 900;
}

.txt-row1 {
    display: block;
    margin-bottom: 10px;
}

.txt-row2 {
    display: block;
    color: #FFADAD; /* 「しよっか」をピンクに */
    padding-left: 1em; /* 少し右にずらして「いい感じ」の余白 */
}

.pink-excl {
    font-size: 5.5rem; /* びっくりマークだけさらに大きく */
    display: inline-block;
    transform: rotate(10deg); /* 少し傾けて可愛く */
}

.hero-desc {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.8;
}

/* ビジュアルエリア（写真の重なり） */
.hero-visual-box {
    position: relative;
    flex: 1.2;
    display: flex;
    justify-content: flex-end;
}

.main-blob-wrap {
    width: 500px;
    height: 500px;
    background: #fff;
    border-radius: 60% 40% 70% 30% / 40% 50% 60% 50%;
    overflow: hidden;
    border: 15px solid #fff;
    box-shadow: 0 30px 60px rgba(46, 125, 50, 0.1);
    animation: blob-move 10s infinite alternate ease-in-out;
}

.hero-img { width: 100%; height: 100%; object-fit: cover; }



/* 背景のドット装飾 */
.deco-dot-bg {
    position: absolute;
    width: 400px;
    height: 400px;
    background-image: radial-gradient(#FFADAD 2px, transparent 2px);
    background-size: 20px 20px;
    top: -50px; right: -50px;
    opacity: 0.2;
    z-index: -1;
}

/* 絵文字のぷかぷかアニメーション */
.deco-item {
    position: absolute;
    font-size: 3rem;
    z-index: 15;
    animation: float 4s infinite ease-in-out;
}
.strawberry { bottom: 20px; left: 0; }
.leaf { top: 20px; right: 0; animation-delay: 1s; }

/* アニメーション定義 */
@keyframes blob-move {
    0% { border-radius: 60% 40% 70% 30% / 40% 50% 60% 50%; }
    100% { border-radius: 40% 60% 30% 70% / 60% 40% 50% 40%; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* スマホ対応：2:2の重なりをスッキリさせる */
@media (max-width: 768px) {
    .hero-inner { flex-direction: column; text-align: center; }
    .main-visual-text { font-size: 3rem; }
    .txt-row2 { padding-left: 0; }
    .main-blob-wrap { width: 300px; height: 300px; margin-top: 50px; }
    .hero-visual-box { justify-content: center; }
}
/* コンテンツ横並び */
.section { padding: 80px 10%; }
.bg-light { background: #f9fffb; }

.flex-container {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.about-text { flex: 1; min-width: 300px; }

.photo-frame {
    width: 280px;
    height: 280px;
    background: #e8f5e9;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* カード並び */
.card-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.activity-card {
    background: #fff;
    padding: 30px;
    width: 220px;
    border-radius: 40px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.03);
}

.title-fuwa { color: #2e7d32; font-size: 2rem; text-align: center; margin-bottom: 40px; }
.highlight { background: linear-gradient(transparent 60%, #e8f5e9 60%); font-weight: bold; }

/* Aboutセクションのレイアウト調整 */
/* Aboutセクション全体のレイアウト */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 0 5%;
}

/* 左側：コラージュデザイン */
.about-collage {
    flex: 1;
    position: relative;
    height: 450px;
}

.collage-main {
    width: 380px;
    height: 280px;
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 8px solid #fff;
}

.collage-sub {
    position: absolute;
    z-index: 3;
    border-radius: 15px;
    overflow: hidden;
    border: 5px solid #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.s1 {
    width: 180px;
    height: 180px;
    bottom: 20px;
    left: 0;
}

.s2 {
    width: 200px;
    height: 150px;
    top: -30px;
    right: 20px;
}

.img-main, .img-sub {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 背景のドット装飾 */
.about-deco-dots {
    position: absolute;
    width: 250px;
    height: 250px;
    background-image: radial-gradient(#FFADAD 2px, transparent 2px);
    background-size: 15px 15px;
    bottom: -20px;
    right: 0;
    opacity: 0.3;
    z-index: 1;
}

/* 右側：テキストのデザイン */
.about-content {
    flex: 1;
}

.title-fuwa-left {
    color: #2e7d32;
    font-size: 2.2rem;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.title-fuwa-left::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: #FFADAD;
    border-radius: 2px;
}

.speech-bubble {
    background: #fff;
    padding: 25px;
    border-radius: 25px;
    border: 2px solid #e8f5e9;
    position: relative;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.about-highlight {
    font-weight: bold;
    font-size: 1.2rem;
    color: #2e7d32;
    margin-bottom: 20px;
}

.about-points {
    list-style: none;
    padding: 0;
}

.about-points li {
    margin-bottom: 10px;
    font-weight: bold;
    color: #555;
}



/* スマホ対応：スマホでは縦に並べる（写真は上、テキストは下） */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        gap: 40px;
    }
    .about-collage {
        width: 100%;
        height: 350px;
    }
    .collage-main { width: 80%; height: 200px; left: 10%; }
    .s1 { width: 120px; height: 120px; }
    .s2 { width: 140px; height: 100px; right: 0; }
}
/* 活動内容のテキスト */
.section-subtext {
    text-align: center;
    margin-bottom: 50px;
    font-weight: bold;
    color: #666;
}

/* タイムライン全体の容器 */
.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

/* 真ん中の波打つ線 */
.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(to bottom, #e8f5e9, #FFADAD, #e8f5e9);
    border-radius: 10px;
    transform: translateX(-50%);
}

/* 各アイテムの基本設定 */
.activity-item {
    position: relative;
    width: 50%;
    margin-bottom: 40px;
    display: flex;
}

/* 左右の配置切り替え */
.activity-item.left { left: 0; justify-content: flex-end; padding-right: 40px; }
.activity-item.right { left: 50%; justify-content: flex-start; padding-left: 40px; }

/* 真ん中のアイコン（丸） */
.activity-dot {
    position: absolute;
    left: 100%;
    top: 20px;
    width: 50px;
    height: 50px;
    background: #fff;
    border: 4px solid #e8f5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 2;
    transform: translateX(-50%);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.activity-item.right .activity-dot { left: 0; }

/* 吹き出しのデザイン */
.activity-bubble {
    background: #fff;
    padding: 20px 25px;
    border-radius: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
    border: 2px solid #e8f5e9;
    transition: transform 0.3s ease;
    width: 80%;
}

.activity-bubble:hover {
    transform: scale(1.05);
    background: #fafffb;
}

.activity-date {
    display: block;
    color: #FFADAD;
    font-weight: 900;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.activity-bubble h3 {
    margin: 0;
    color: #2e7d32;
    font-size: 1.2rem;
}

.activity-bubble p {
    margin: 5px 0 0;
    font-size: 0.9rem;
    color: #666;
}

/* スマホ表示：縦一列に */
@media (max-width: 600px) {
    .timeline-container::before { left: 20px; }
    .activity-item { width: 100%; left: 0 !important; padding-left: 60px !important; }
    .activity-dot { left: 20px !important; }
    .activity-bubble { width: 100%; }
}

/* メンバー紹介セクション全体の調整 */
.section-subtext {
    text-align: center;
    margin-bottom: 40px;
    color: #888;
    font-size: 0.9rem;
}

/* 4枚を横に並べる設定 */
.member-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* 画面が狭いときは自動で折り返し */
    max-width: 1200px;
    margin: 0 auto;
}

/* メンバーカード：ふわふわ質感 */
.member-card {
    background: #fff;
    width: 250px;
    border-radius: 40px;
    padding: 20px;
    border: 3px solid #e8f5e9;
    box-shadow: 0 10px 25px rgba(46, 125, 50, 0.03);
    text-align: center;
    transition: all 0.3s ease;
}

.member-card:hover {
    transform: translateY(-10px);
    border-color: #FFADAD; /* ロゴのピンク色に変わる */
}

/* メンバー写真：ぷにぷにフレーム */
.member-img-box {
    width: 160px;
    height: 160px;
    margin: 0 auto 15px;
    border-radius: 50% 50% 50% 70% / 50% 70% 50% 50%;
    overflow: hidden;
    border: 4px solid #f9fffb;
}

.member-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* テキスト情報 */
.member-tag {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: bold;
}

.member-card h3 {
    margin: 10px 0 5px;
    font-size: 1.1rem;
    color: #333;
}

.member-name {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
}

.member-crop {
    font-size: 0.85rem;
    color: #555;
    font-weight: bold;
    margin: 10px 0;
    min-height: 2.5em; /* 高さを揃えてボタンの位置を統一 */
}

/* Instagramボタン：シンプル版 */
.inst-button-simple {
    display: inline-block;
    background: #FFADAD;
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 3px 0 #e69595;
    transition: 0.2s;
}

.inst-button-simple:hover {
    transform: translateY(2px);
    box-shadow: 0 1px 0 #e69595;
}
/* メンバーの声全体コンテナ */
.voice-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px 0;
}

.voice-item {
    width: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* メンバー紹介のレイアウト（ここがポイント！） */
.member-grid-layout {
    display: grid;
    gap: 30px;
    max-width: 1000px; /* 全体の幅を少し絞ると2:2が綺麗に見えます */
    margin: 0 auto;
    
    /* 基本は 2:2 (2列) */
    grid-template-columns: repeat(2, 1fr);
}

/* 画面が広いPCでは「横並び(4列)」にする場合 */
@media (min-width: 1024px) {
    .member-grid-layout {
        grid-template-columns: repeat(4, 1fr);
        max-width: 1200px;
    }
}

/* スマホでは「縦1列」にする */
@media (max-width: 600px) {
    .member-grid-layout {
        grid-template-columns: 1fr;
    }
}

/* カードのデザイン（共通） */
.member-card {
    background: #fff;
    border-radius: 40px;
    padding: 30px 20px;
    border: 3px solid #e8f5e9;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.02);
    transition: 0.3s;
}

.member-card:hover {
    transform: translateY(-10px);
    border-color: #FFADAD;
}

.member-img-box {
    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
    border-radius: 50% 50% 50% 70% / 50% 70% 50% 50%;
    overflow: hidden;
    border: 5px solid #f9fffb;
}

.member-photo { width: 100%; height: 100%; object-fit: cover; }
.member-tag { background: #e8f5e9; color: #2e7d32; padding: 4px 12px; border-radius: 15px; font-size: 0.8rem; font-weight: bold; }
.member-name { font-size: 0.9rem; color: #888; margin-top: 5px; }
.member-crop { font-weight: bold; color: #555; margin: 10px 0; font-size: 0.9rem; }

.inst-button-simple {
    display: inline-block;
    background: #FFADAD;
    color: #fff;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: bold;
    box-shadow: 0 4px 0 #e69595;
}

/* ふわふわ吹き出しの基本スタイル */
.voice-bubble {
    position: relative;
    padding: 20px;
    border-radius: 30px;
    margin-bottom: 25px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
    background: #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.03);
    border: 2px solid transparent;
    transition: transform 0.3s;
}

.voice-bubble:hover {
    transform: translateY(-5px);
}

/* 吹き出しのしっぽ */
.voice-bubble::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-top: 15px solid #fff;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    z-index: 1;
}

/* パステルカラーバリエーション */
.voice-bubble.pink { border-color: #FFEDEE; background: #FFF9F9; }
.voice-bubble.green { border-color: #E8F5E9; background: #F6FBFA; }
.voice-bubble.blue { border-color: #E3F2FD; background: #F7FBFE; }
.voice-bubble.yellow { border-color: #FFFDE7; background: #FFFEF9; }

/* ユーザー情報（アイコンと名前） */
.voice-user {
    text-align: center;
}

.user-icon {
    font-size: 2rem;
    background: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.user-name {
    font-weight: bold;
    font-size: 0.95rem;
    color: #2e7d32;
    margin: 0;
}

/* Instagramエリア：全体の土台 */
.insta-flow-area {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 60px 0;
    /* 左右をふわっと消して、端っこがパッと消えないようにする */
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

/* 横に並べるラッパー */
.insta-flow-wrapper {
    display: flex;
    width: fit-content; /* 中身に合わせて幅を自動調整 */
    animation: flow-infinity 30s linear infinite; /* 30秒で1周。止まらず流れる */
}

.insta-flow-list {
    display: flex;
    align-items: center;
}

/* ポラロイドカード：ちょうどいいサイズに調整 */
.polaroid-card {
    background: #fff;
    padding: 12px 12px 40px 12px;
    margin: 0 20px; /* 写真同士の間隔 */
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    position: relative;
    transform: rotate(2deg);
    flex-shrink: 0; /* 潰れないように固定 */
}

.polaroid-card:nth-child(even) {
    transform: rotate(-2deg);
}

.polaroid-card img {
    width: 260px; /* 大きすぎず、小さすぎないサイズ */
    height: 260px;
    object-fit: cover;
    display: block;
}

/* マスキングテープ：サイズに合わせて調整 */
.tape {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%) rotate(-5deg);
    width: 90px;
    height: 32px;
    z-index: 10;
    opacity: 0.6;
}

.green-tape { background: #c8e6c9; }
.pink-tape  { background: #ffcdd2; transform: translateX(-50%) rotate(4deg); }
.blue-tape  { background: #bbdefb; }
.yellow-tape { background: #fff9c4; }

/* ホバー時に一時停止＆少し大きく */
.insta-flow-wrapper:hover {
    animation-play-state: paused; /* マウスを乗せると止まる */
}

.polaroid-card:hover {
    transform: scale(1.1) rotate(0deg) !important;
    z-index: 20;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* 無限ループのアニメーション（1セット分左にずれたらリセット） */
@keyframes flow-infinity {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.insta-btn-center {
    text-align: center;
    margin-top: 40px;
    padding-bottom: 60px; /* 下にゆとりを持たせる */
}

/* ぷっくり可愛いボタン */
.btn-insta-kawaii {
    display: inline-block;
    background-color: #FFADAD; /* ロゴの可愛いピンク */
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 18px 45px;
    border-radius: 50px; /* まんまるな角 */
    box-shadow: 0 8px 0 #e69595; /* ぷっくり見える影 */
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

/* マウスを乗せた時の動き */
.btn-insta-kawaii:hover {
    background-color: #ff9999;
    transform: translateY(4px); /* 4px沈み込む */
    box-shadow: 0 4px 0 #e69595; /* 影も短くして「押した感」を出す */
}

/* クリックした瞬間 */
.btn-insta-kawaii:active {
    transform: translateY(8px);
    box-shadow: none;
}

/* フッター全体 */
.footer {
    background-color: #f9fffb; /* 非常に薄いグリーン */
    padding: 80px 0 0 0;
    border-top: 2px solid #e8f5e9;
    border-radius: 80px 80px 0 0; /* 上側を大きく丸くして可愛く */
    margin-top: 50px;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px 60px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

/* フッターロゴ */
.f-logo {
    height: 45px;
    margin-bottom: 15px;
}

.f-tagline {
    font-size: 0.85rem;
    color: #666;
}

/* フッターメニュー */
.footer-nav ul {
    list-style: none;
    padding: 0;
}

.footer-nav li {
    margin-bottom: 12px;
}

.footer-nav a {
    text-decoration: none;
    color: #444;
    font-size: 0.9rem;
    font-weight: bold;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #FFADAD;
}

/* SNS・ボタンエリア */
.footer-sns p {
    font-weight: bold;
    color: #2e7d32;
    margin-bottom: 15px;
}

.btn-contact-small {
    display: inline-block;
    margin-top: 15px;
    background: #fff;
    color: #2e7d32;
    border: 2px solid #2e7d32;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.btn-contact-small:hover {
    background: #2e7d32;
    color: #fff;
}

/* コピーライトの帯 */
.footer-bottom {
    background-color: #e8f5e9;
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: #2e7d32;
    margin: 0;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}