:root {
    --primary-color: #FF6B00; /* Energy Orange */
    --primary-hover: #E65A00;
    --secondary-color: #FFC107; /* Sunflower Yellow */
    --accent-color: #00C49F; /* Mint Green */
    --line-color: #06C755; /* LINE Green */
    --bg-color: #FAFAFA; /* Off White */
    --text-color: #333333;
    --gray-color: #777777;
    --light-gray: #EBEBEB;
    --font-heading: 'M PLUS Rounded 1c', sans-serif;
    --font-body: 'Noto Sans JP', sans-serif;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 25px rgba(255, 107, 0, 0.3);
    --peatix-color: #00BFB2; /* Peatix公式ブランドカラー */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.8;
    letter-spacing: 0.03em;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

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

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

ul {
    list-style: none;
}

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

.section {
    padding: 80px 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.text-left {
    text-align: left;
}

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

.text-sm {
    font-size: 0.85rem;
}

.font-bold {
    font-weight: 700;
}

.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }

.bg-gray {
    background-color: var(--light-gray);
}

/* --------------- Buttons --------------- */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    font-family: var(--font-body); /* 滑らかさを優先し、ボタン内はNoto Sans JPへ */
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    letter-spacing: 0.05em;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-main {
    background: var(--primary-color);
    color: #fff !important;
    border: none;
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.2);
}
.btn-main:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(255, 107, 0, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}
.btn-outline:hover {
    background: var(--primary-color);
    color: #fff;
}

.btn-line {
    background-color: #06C755;
    color: #fff !important;
    border: none;
    box-shadow: 0 4px 12px rgba(6, 199, 85, 0.2);
}
.btn-line:hover {
    background-color: #05b14c;
    box-shadow: 0 8px 25px rgba(6, 199, 85, 0.4);
}

.btn-line-outline {
    background: #06C755; /* LINE公式カラー */
    color: #fff !important;
    border: none;
    box-shadow: 0 4px 12px rgba(6, 199, 85, 0.2);
    font-weight: 700;
}
.btn-line-outline:hover {
    background: #05b14c;
    box-shadow: 0 6px 18px rgba(6, 199, 85, 0.3);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.2rem;
    width: 100%;
    max-width: 400px;
}

/* Micro copy */
.micro-copy {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
}
.text-dark {
    color: var(--text-color) !important;
}

/* --------------- Header --------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(250, 250, 250, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 1000;
    padding: 15px 0;
}

.header-container {
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: inline-block;
    transition: all 0.3s ease;
}
.logo a:hover {
    opacity: 0.8;
    transform: translateY(-1px);
}
.logo img {
    height: 48px; /* ヘッダーに合わせた適切な高さ */
    width: auto;
    display: block;
}

.nav ul {
    display: flex;
    gap: 20px;
}

.nav a {
    font-weight: 500;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--primary-color);
    transition: 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

.header-cta {
    display: flex;
    gap: 10px;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--text-color);
    border-radius: 3px;
    transition: 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: 0.4s ease-in-out;
}

.mobile-menu.open {
    transform: translateY(0);
}

.mobile-menu ul {
    text-align: center;
}

.mobile-menu li {
    margin: 20px 0;
}

.mobile-menu a {
    font-size: 1.2rem;
    font-weight: 700;
}


/* --------------- Hero Slider Section (New V18) --------------- */
.hero-slider-section {
    position: relative;
    width: 100%;
    height: 90vh; /* スマホで見栄えが良い高さ */
    min-height: 600px;
    overflow: hidden;
    background-color: #000;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* プロ仕様のスライダーオーバーレイ（文字を常に読みやすくする） */
.hero-slider::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.4); 
    z-index: 5;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    z-index: 0;
    animation: smoothCrossfade 18s infinite; /* 1枚6秒×3枚 */
}

/* 各スライドの出現タイミングをずらす */
.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 6s; }
.hero-slide:nth-child(3) { animation-delay: 12s; }

@keyframes smoothCrossfade {
    0% { opacity: 0; transform: scale(1); z-index: 2; }
    11% { opacity: 1; transform: scale(1.03); z-index: 2; } /* 2秒で完全にフェードイン */
    33% { opacity: 1; transform: scale(1.1); z-index: 1; } /* 6秒保持（次のスライドがフェードインし始める） */
    44% { opacity: 0; transform: scale(1.13); z-index: 0; } /* 次のスライドが完全に表示されたら消沈する */
    100% { opacity: 0; transform: scale(1.13); z-index: 0; }
}

.hero-slider-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    text-align: left; /* PCでは左寄せでプロ感を演出 */
    color: #fff;
    padding-top: 140px; /* 上部のヘッダーやバッジ被りを防止 */
}

@media screen and (max-width: 768px) {
    . hero-slider-content {
        text-align: center; /* スマホでは中央寄せで見やすく */
    }
}

.hero-text-center {
    max-width: 800px;
    padding: 0 20px;
}

.sub-copy-badge {
    background: var(--primary-color);
    color: #fff;
    display: inline-block;
    padding: 6px 24px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(255,107,0,0.3);
}

.hero-main-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 5vw, 3rem); /* 交流ランチ会が一行に収まるように縮小 */
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 4px 15px rgba(0,0,0,0.5);
    word-break: keep-all; /* 不自然な改行を防ぐ */
}

.hero-logo-img {
    max-width: 90%;
    width: 650px;
    margin-top: 15px;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.5)); /* 立体的な配置感 */
    transition: transform 0.3s ease;
}

@media screen and (max-width: 768px) {
    .hero-logo-img {
        width: 400px;
        margin-top: 5px;
    }
}

.hero-lead-text {
    font-size: clamp(1rem, 4vw, 1.4rem);
    line-height: 1.6;
    margin-bottom: 35px;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: flex-start; /* PCでは左揃え */
    margin-bottom: 35px;
}

@media screen and (max-width: 768px) {
    .hero-buttons {
        justify-content: center;
    }
}

.hero-buttons .btn {
    min-width: 280px;
}

.hero-price-badge {
    background: rgba(255,255,255,0.95);
    color: #333;
    padding: 15px 30px;
    border-radius: 15px;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border-bottom: 4px solid var(--primary-color);
}

.hero-price-badge strong {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.hero-price-badge span {
    display: block;
    font-size: 0.8rem;
    margin-top: 5px;
    font-weight: 700;
    color: #666;
}

/* --------------- Animations (表示不具合解消用) --------------- */
.reveal, .slide-up {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}
.reveal.active, .slide-up.active {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Scroll indicator */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--gray-color);
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 2px;
}

.arrow {
    width: 2px;
    height: 40px;
    background-color: var(--primary-color);
    margin-top: 10px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    50.1% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* --------------- Concept Section --------------- */
.concept {
    text-align: center;
    background-color: #fff;
}

.concept-lead {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.concept-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--gray-color);
    line-height: 1.8;
}


/* --------------- Targets Section --------------- */
.target-section {
    background-color: #fff;
    text-align: center;
}

.target-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.target-item {
    background: var(--bg-color);
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
}

.target-item:hover {
    transform: translateY(-5px);
}

.target-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: #fff;
    border-radius: 50%;
    margin-bottom: 15px;
    font-size: 2.2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 3px solid #fff;
}

/* 4つのアイコンをカラフルに色分け */
.target-item:nth-child(1) .target-icon { background: linear-gradient(135deg, #FF6B00, #ff8c3a); color: #fff; }
.target-item:nth-child(2) .target-icon { background: linear-gradient(135deg, #4A90E2, #63a4ff); color: #fff; }
.target-item:nth-child(3) .target-icon { background: linear-gradient(135deg, #00C49F, #2ce9c2); color: #fff; }
.target-item:nth-child(4) .target-icon { background: linear-gradient(135deg, #FFC107, #ffd54f); color: #fff; }

.target-item h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.target-item p {
    font-size: 0.9rem;
    color: var(--gray-color);
    line-height: 1.6;
    display: table; /* 中央配置かつ内部左寄せ */
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

/* --------------- Benefits Section --------------- */
.benefit-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    position: relative;
    border-top: 5px solid var(--secondary-color);
    transition: transform 0.3s ease;
}

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

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: #fff;
    font-size: 1.8rem;
    font-family: var(--font-heading);
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -70px auto 20px;
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.4);
}

.card h3 {
    font-size: 1.2rem;
    font-family: var(--font-heading);
    margin-bottom: 15px;
    color: var(--text-color);
}

.card p {
    font-size: 0.95rem;
    color: var(--gray-color);
}

.benefit-images {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.img-box {
    flex: 1;
    max-width: 500px;
}

.img-rounded {
    border-radius: 20px;
    box-shadow: var(--shadow);
    width: 100%;
}


/* --------------- Hub & Voices --------------- */
.hub-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.mock-sns-feed {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.mock-post {
    border-bottom: 1px solid var(--light-gray);
    padding: 15px 0;
}
.mock-post:last-child {
    border-bottom: none;
}

.mock-post-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.mock-avatar {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23fff"><path d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"/></svg>');
    background-size: 70%;
    background-position: center;
    background-repeat: no-repeat;
}

.voice-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    position: relative;
}

.voice-card::before {
    content: '“';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 3rem;
    font-family: serif;
    color: var(--secondary-color);
    opacity: 0.3;
    line-height: 1;
}

.voice-text {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.voice-author {
    font-size: 0.9rem;
    color: var(--gray-color);
    text-align: right;
}

/* --------------- FAQ --------------- */
.faq {
    background-color: #fff;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-color);
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.faq-item summary {
    padding: 20px;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    list-style: none;
    font-family: var(--font-heading);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: 0.3s;
}

.faq-item[open] summary::after {
    content: '-';
}

.faq-answer {
    padding: 0 20px 20px;
    color: var(--gray-color);
}


/* --------------- Final CTA --------------- */
.cta-section {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: #fff;
    text-align: center;
}

.cta-box {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    padding: 60px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.2);
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-desc {
    font-size: 1.1rem;
    margin-bottom: 40px;
    font-weight: 500;
}

.cta-item {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: var(--shadow);
}


/* --------------- Footer --------------- */
.footer {
    background-color: var(--text-color);
    color: #fff;
    padding: 40px 0 20px;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
}

.footer-links a {
    color: var(--light-gray);
    font-size: 0.9rem;
}
.footer-links a:hover {
    color: var(--secondary-color);
}

.copyright {
    font-size: 0.8rem;
    color: #888;
}


/* --------------- Animations (Micro-interactions) --------------- */
.bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(255, 107, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0); }
}


/* Reveal Animation Classes */
.reveal, .slide-up, .slide-up-delay {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-delay-1 {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1) 0.2s;
}

.reveal-delay-2 {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1) 0.4s;
}

.reveal-delay-3 {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1) 0.6s;
}

.active {
    opacity: 1;
    transform: translateY(0);
}


/* --------------- Responsive Media Queries --------------- */
@media screen and (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    .hero-text-area {
        margin-bottom: 50px;
    }
    .main-copy {
        font-size: 2.2rem;
    }
    .hero-bg {
        width: 100%;
        right: 0;
        top: 30%;
    }
    .benefit-cards {
        grid-template-columns: 1fr;
        gap: 80px;
        margin-top: 40px;
    }
    .hub-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .nav, .header-cta {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .main-copy {
        font-size: 1.8rem;
    }
    .benefit-images {
        flex-direction: column;
    }
    .footer-content {
        flex-direction: column;
        gap: 15px;
    }
}

/* --------------- Additional Styles for LP Improvement --------------- */

/* Trust Badges - Hero Section */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.trust-badge {
    background: #fff;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid var(--light-gray);
}

.trust-badge i {
    font-size: 1.1rem;
}

/* Target Section */
.target-section {
    background-color: #fff;
    padding: 60px 0;
    text-align: center;
}

.target-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.target-item {
    background: var(--bg-color);
    padding: 30px 20px;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.target-item:hover {
    transform: translateY(-5px);
}

.target-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.target-item h4 {
    font-family: var(--font-heading);
    color: var(--text-color);
    margin-bottom: 5px;
}

/* Marker utility */
.marker {
    background: linear-gradient(transparent 60%, var(--secondary-color) 60%);
    font-weight: 700;
}

/* Hub Feed Improvements */
.mock-sns-feed {
    border: 1px solid var(--light-gray);
}

/* Responsive fixes */
@media screen and (max-width: 768px) {
    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .trust-badge {
        width: fit-content;
    }
}

/* --------------- Additional Styles for LP Improvement (Phase 2) --------------- */

/* Summary Table Section */
.summary-section {
    background-color: var(--light-gray);
    padding: 60px 0;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.summary-item {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.summary-label {
    background: var(--primary-color);
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    min-width: 70px;
    text-align: center;
}

.summary-value {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-color);
}

/* SNS Hub Refresh */
.sns-links-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.sns-link-card {
    flex: 1;
    min-width: 140px;
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--light-gray);
    transition: all 0.3s ease;
}

.sns-link-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

/* Closing points */
.closing-points {
    max-width: 600px;
    margin: 0 auto 40px;
    text-align: left;
    background: rgba(255,255,255,0.2);
    padding: 25px;
    border-radius: 15px;
}

.closing-point {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.closing-point:last-child {
    margin-bottom: 0;
}

.closing-icon {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

/* Adjustments */
.header-cta .btn {
    box-shadow: none;
}

/* --------------- Additional Styles for LP Improvement (Phase 3 - Sapporo) --------------- */

/* Price Info for Hero */
.price-info {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.price-tag {
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 20px;
    border-radius: 10px;
    border: 2px solid var(--secondary-color);
    font-size: 0.9rem;
    color: var(--text-color);
}

.price-tag strong {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.text-xs { font-size: 0.75rem; }

/* Target Section Fix */
.target-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

/* Adjustments for Sapporo Context */
.footer-logo {
    color: var(--secondary-color);
}
/* =============== V4: Real Photos & Authentic Energy Updates =============== */

/* ---- Placeholder Utility ---- */
.placeholder-wrap {
    background-color: #E6E6E6;
    border: 2px dashed #bbbbbb;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #777;
    text-align: center;
    padding: 1rem;
    position: relative;
    overflow: hidden;
}
.placeholder-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #999;
}
.placeholder-text {
    font-size: 0.85rem;
    font-weight: bold;
}
.placeholder-sub {
    font-size: 0.7rem;
    margin-top: 0.3rem;
}

/* ---- Hero Collage ---- */
.hero-collage {
    position: relative;
    width: 100%;
    height: 400px;
}
.collage-item {
    position: absolute;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    background: #fff;
    padding: 6px; /* White border effect like a photo */
    transition: transform 0.3s ease;
}
.collage-item:hover {
    transform: scale(1.05) z-index(10);
    z-index: 10;
}
.collage-item img, .collage-item .placeholder-wrap {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}
/* Positioning the 3 items */
.collage-1 {
    width: 65%;
    height: 70%;
    top: 5%;
    left: 0;
    transform: rotate(-3deg);
    z-index: 2;
}
.collage-2 {
    width: 50%;
    height: 50%;
    top: 50%;
    right: 5%;
    transform: rotate(5deg);
    z-index: 3;
}
.collage-3 {
    width: 45%;
    height: 45%;
    bottom: -5%;
    left: 15%;
    transform: rotate(-6deg);
    z-index: 1;
}

/* ---- SNS Preview Section ---- */
.sns-preview-section {
    background-color: #fff;
}
.sns-scroll-container {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 10px 5px 30px 5px;
    scroll-snap-type: x mandatory;
    /* Hide scrollbar */
    scrollbar-width: none; 
}
.sns-scroll-container::-webkit-scrollbar {
    display: none;
}
.sns-post-card {
    flex: 0 0 300px; /* Fixed width for cards */
    scroll-snap-align: center;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    border: 1px solid #eee;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.sns-post-header {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
}
.sns-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 12px;
}
.sns-meta {
    flex: 1;
}
.sns-name {
    font-weight: bold;
    font-size: 0.9rem;
    color: var(--text-color);
}
.sns-date {
    font-size: 0.75rem;
    color: #999;
}
.sns-image-area {
    width: 100%;
    height: 180px;
}
.sns-content {
    padding: 15px;
    font-size: 0.85rem;
    color: #555;
    flex-grow: 1;
}
.sns-action {
    padding: 0 15px 15px 15px;
    text-align: right;
}
.sns-action a {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: bold;
}
.sns-action a:hover {
    text-decoration: underline;
}

/* ---- Actual Venue Gallery ---- */
.venue-gallery {
    padding: 20px 0 0 0;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 15px;
}
.gallery-img-wrapper {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.gallery-img-wrapper img, .gallery-img-wrapper .placeholder-wrap {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-img-wrapper:hover img {
    transform: scale(1.1);
}
.gallery-large {
    grid-column: span 2;
    grid-row: span 2;
}

/* ---- Responsive Updates ---- */
@media screen and (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .gallery-large {
        grid-column: span 2;
        grid-row: auto;
        height: 250px;
    }
    .gallery-img-wrapper:not(.gallery-large) {
        height: 150px;
    }
    .hero-collage {
        height: 300px;
        margin-top: 20px;
    }
    .sns-post-card {
        flex: 0 0 85%; /* Shows a peek of the next card */
    }
}
/* =============== V5: Dynamic JS SNS Cards & Real Photos Update =============== */

/* ---- Dyanmic SNS Card UI ---- */
.sns-showcase-grid {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 10px 10px 40px 10px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; 
}
.sns-showcase-grid::-webkit-scrollbar {
    display: none;
}
.dyn-sns-card {
    flex: 0 0 320px;
    scroll-snap-align: center;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}
.dyn-sns-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}
.dyn-sns-image-box {
    position: relative;
    width: 100%;
    height: 180px;
    background-color: #e9e9e9; /* fallback background */
}
.dyn-sns-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.dyn-sns-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: bold;
}
.dyn-sns-badge.facebook { background: #1877F2; }
.dyn-sns-badge.threads { background: #000000; }

.dyn-sns-body {
    padding: 20px 20px 10px 20px;
    flex-grow: 1;
}
.dyn-sns-date {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 6px;
}
.dyn-sns-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
    line-height: 1.4;
}
.dyn-sns-excerpt {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.6;
}
.dyn-sns-footer {
    padding: 0 20px 20px 20px;
}
.dyn-sns-action {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: bold;
    color: var(--primary-color);
}
.dyn-sns-card:hover .dyn-sns-action {
    text-decoration: underline;
}

@media screen and (max-width: 768px) {
    .dyn-sns-card {
        flex: 0 0 85%;
    }
}

/* ---- LINE Consultation Section ---- */
.line-consult-box {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    border: 2px solid #EBEBEB;
    gap: 30px;
}
.line-consult-content {
    flex: 1;
}
.line-consult-title {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.5;
}
.line-consult-text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}
.line-consult-action {
    flex: 0 0 auto;
    width: 320px;
    text-align: center;
}
@media screen and (max-width: 768px) {
    .line-consult-box {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    .line-consult-action {
        width: 100%;
    }
}
/* =============== V6: 1+2 Showcase Grid & Deduplicated UX =============== */

/* ---- Grid Layout ---- */
.sns-showcase-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    grid-template-rows: auto auto;
    gap: 30px;
    padding: 10px 0 30px 0;
}
.dyn-sns-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #f2f2f2;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.dyn-sns-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Large Card (Left side) */
.card-large {
    grid-row: span 2;
}
.card-large .dyn-sns-image-box {
    height: 250px;
}
.card-large .dyn-sns-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.card-large .dyn-sns-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
}
.card-large .dyn-sns-excerpt {
    font-size: 0.95rem;
    margin-bottom: 20px;
}

/* Small Card (Right side) */
.card-small {
    flex-direction: row;
    height: 100%;
    align-items: center;
}
.card-small .dyn-sns-image-box {
    width: 40%;
    height: 160px;
}
.card-small .dyn-sns-body {
    width: 60%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.card-small .dyn-sns-title {
    font-size: 1.05rem;
    margin-bottom: 8px;
}
.card-small .dyn-sns-excerpt {
    font-size: 0.85rem;
    margin-bottom: 12px;
}
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}

/* Common Card Elements */
.dyn-sns-image-box {
    width: 100%;
    position: relative;
    background: #e9e9e9;
}
.dyn-sns-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.dyn-sns-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    color: #fff;
    font-size: 0.75rem;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: bold;
    text-transform: capitalize;
}
.dyn-sns-badge.facebook { background: #1877F2; }
.dyn-sns-badge.threads { background: #000000; }
.dyn-sns-badge.gallery { background: var(--primary-color); }

.dyn-sns-date {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 8px;
    font-weight: 500;
}
.dyn-sns-title {
    font-weight: 700;
    color: #222;
    line-height: 1.4;
}
.dyn-sns-excerpt {
    color: #555;
    line-height: 1.6;
    flex-grow: 1;
}
.dyn-sns-footer-text {
    margin-top: auto;
}
.dyn-sns-action {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: bold;
    color: var(--primary-color);
}
.dyn-sns-card:hover .dyn-sns-action {
    text-decoration: underline;
}

/* Mobile Responsive */
@media screen and (max-width: 900px) {
    .sns-showcase-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .card-large {
        grid-row: auto;
    }
    .card-small {
        flex-direction: column;
    }
    .card-small .dyn-sns-image-box {
        width: 100%;
        height: 200px;
    }
    .card-small .dyn-sns-body {
        width: 100%;
    }
    .line-clamp-2 {
        -webkit-line-clamp: 3;
    }
}
/* =============== V7: Explicit 1FB + 1TH Layout Guarantee =============== */
.sns-showcase-grid-explicit {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 10px 0 30px 0;
}
@media screen and (max-width: 768px) {
    .sns-showcase-grid-explicit {
        grid-template-columns: 1fr;
    }
}
.sns-slot {
    display: flex;
    flex-direction: column;
}
.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}
/* =============== V8: Facebook iframe & Threads direct styling =============== */
.sns-embed-wrapper {
    width: 100%;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    display: flex;
    justify-content: center;
    border: 1px solid #EBEBEB;
}

/* =============== Timeline Flow Section =============== */
.flow-section {
    padding-top: 40px;
    padding-bottom: 40px;
}

.flow-timeline {
    position: relative;
    max-width: 800px;
    margin: 40px auto 0;
    padding: 20px 0;
}

/* 縦のライン */
.flow-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 140px;
    height: 100%;
    width: 3px;
    background: var(--light-gray);
}

.flow-step {
    position: relative;
    display: flex;
    margin-bottom: 40px;
    align-items: flex-start;
}
.flow-step:last-child {
    margin-bottom: 0;
}

.flow-time {
    width: 120px;
    padding-top: 2px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: right;
    font-size: 1.05rem;
    line-height: 1.4;
}
.flow-time span {
    font-size: 0.85rem;
    color: var(--gray-color);
}

.flow-dot {
    width: 24px;
    height: 24px;
    background: #fff;
    border: 5px solid var(--primary-color);
    border-radius: 50%;
    position: absolute;
    left: 130px; /* 140 - 10(half of width) */
    top: 5px;
    z-index: 2;
    box-shadow: 0 0 0 4px #fff;
}

.flow-content {
    flex: 1;
    margin-left: 60px;
    background: #ffffff;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 2px solid var(--primary-color);
    position: relative;
    text-align: left;
}
/* 吹き出しの三角 */
.flow-content::before {
    content: '';
    position: absolute;
    top: 10px;
    left: -10px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid var(--primary-color);
}
.flow-content::after {
    content: '';
    position: absolute;
    top: 10px;
    left: -7px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid #fff;
}

.flow-content h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text-color);
    border-bottom: 2px dashed #EBEBEB;
    padding-bottom: 8px;
}

.flow-content p {
    font-size: 0.95rem;
    color: var(--gray-color);
    line-height: 1.7;
}

.flow-summary-box {
    margin: 50px auto 0;
    max-width: 800px;
    background-color: var(--primary-color);
    color: #fff;
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    font-size: 1.2rem;
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.3);
}

/* スマホ版タイムライン調整 */
@media screen and (max-width: 768px) {
    .flow-timeline::before {
        left: 20px;
    }
    .flow-step {
        flex-direction: column;
    }
    .flow-time {
        width: 100%;
        text-align: left;
        padding-left: 50px;
        margin-bottom: 10px;
    }
    .flow-dot {
        left: 9px;
    }
    .flow-content {
        margin-left: 50px;
        width: calc(100% - 50px);
        padding: 20px;
    }
    /* 吹き出し三角の向きを上にする */
    .flow-content::before {
        top: -10px;
        left: 20px;
        border-top: none;
        border-right: 10px solid transparent;
        border-left: 10px solid transparent;
        border-bottom: 10px solid var(--primary-color);
    }
    .flow-content::after {
        top: -7px;
        left: 20px;
        border-top: none;
        border-right: 10px solid transparent;
        border-left: 10px solid transparent;
        border-bottom: 10px solid #fff;
    }
}

/* =============== V9: Pastel Color Backgrounds and Mobile Adjustments =============== */
:root {
    /* 画像を参考にした4つのパステルカラー */
    --bg-pastel-yellow: #fbe689;
    --bg-pastel-blue: #bbd6eb;
    --bg-pastel-pink: #e4a1a5;
    --bg-pastel-green: #d6e897;
    
    /* 読解性を損なわない極薄い黄色（少し濃いめに調整） */
    --bg-very-pale-yellow: #FFF0B3;
}

/* すべての背景エリアを極薄い黄色に塗り替え */
body, 
.target-section, 
#line-consultation, 
.concept,
#relief {
    background-color: var(--bg-very-pale-yellow) !important;
}

/* --- 白抜きの枠で囲うエリア（背景白・枠付き・テキスト左寄せ） --- */
/* ① LINE相談枠 */
.line-consult-box {
    background-color: #ffffff !important;
    border: 2px solid var(--primary-color) !important;
    border-radius: 16px;
    padding: 40px !important;
    max-width: 900px;
    margin: 0 auto !important;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.line-consult-content, 
.line-consult-title, 
.line-consult-text {
    text-align: left !important;
    width: 100%;
}
.line-consult-action {
    align-self: center; /* ボタンは中央に */
    margin-top: 20px;
}

/* ② コンセプト枠（美味しいだから…） */
#concept .container {
    background-color: #ffffff !important;
    border: 2px solid var(--primary-color) !important;
    border-radius: 16px;
    padding: 40px 30px !important;
    max-width: 900px;
    margin: 0 auto !important;
}
#concept .section-title,
#concept .concept-text {
    text-align: left !important;
}

/* ③ 定例会枠（初参加の方へ） */
.relief-box {
    background-color: #ffffff !important;
    border: 2px solid var(--primary-color) !important;
    border-radius: 16px;
    padding: 40px 30px !important;
    max-width: 900px;
    margin: 0 auto !important;
}
.relief-box .section-title,
.relief-box .relief-text p {
    text-align: left !important;
}

/* スマートフォン向けの枠の余白調整 */
@media screen and (max-width: 768px) {
    .line-consult-box, 
    #concept .container, 
    .relief-box {
        padding: 30px 20px !important;
    }
}

/* ① 英語表記ロゴの帯（Header）をグリーンに */
.header {
    background-color: var(--bg-pastel-green) !important;
}

/* ③ 実際の投稿から見るガンバルマンランチ を薄いブルーに */
#sns-showcase {
    background-color: var(--bg-pastel-blue) !important;
}

/* ⑤ 開催概要 を薄いブルーに */
#summary {
    background-color: var(--bg-pastel-blue) !important;
}

/* ⑦ フッター背景を帯と同じグリーンに、文字を黒、ロゴをオレンジに */
.footer {
    background-color: var(--bg-pastel-green) !important;
    color: #000 !important;
}
.footer p, 
.footer a {
    color: #000 !important;
    font-weight: 500;
}
.footer-logo {
    color: var(--primary-color) !important;
    font-weight: 900;
    text-shadow: none !important;
}

/* ⑧ スマートフォン表示でHeroの中央寄せを解除し、左寄せ（折り返し整列）に */
@media screen and (max-width: 768px) {
    .hero-slider-content {
        text-align: left !important;
    }
    .hero-buttons {
        justify-content: flex-start !important;
    }
}

/* =============== V10: Character Images Layout =============== */

/* コンテナの上部等に猫が配置されるための余白を確保し、被り・崩れを完全に防ぐ */
.target-section,
#sns-showcase,
#line-consultation,
#relief,
#flow {
    overflow: visible;
}

/* --- Flexboxベースの見出しとキャラクターの整列用ユーティリティ --- */
.title-with-char-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
    position: relative;
    z-index: 10;
    text-align: center;
}
.title-with-char-row {
    display: inline-flex;
    align-items: flex-end;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    position: relative;
    z-index: 10;
}

/* サイト全体で統一する「中心配置＋左寄せ折り返し」 */
.text-center-left-wrap {
    text-align: center !important;
    width: 100%;
}

.text-center-left-align-sp {
    display: inline-block !important; /* 安定のインラインブロック */
    text-align: left !important;
    line-height: 1.6;
    max-width: 100%;
    word-break: normal !important; /* スマホで折れるように戻す */
    overflow-wrap: break-word !important; /* 画面端での溢れを完全防止 */
}

/* セクションタイトル自体のブロック挙動を調整 */
h2.text-center-left-align-sp, 
h3.text-center-left-align-sp {
    width: auto !important;
    margin-bottom: 20px !important;
}

/* --- 個別の猫のスタイリング --- */

/* 1. 見出し共通 */
.section-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

/* --- 2重枠（ダブルフレーム）デザイン --- */
.u-double-frame {
    background-color: #ffffff;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    padding: 8px; /* 枠と枠の間のスペース */
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.u-double-frame-inner {
    border: 1px solid var(--primary-color);
    border-radius: 14px;
    padding: 40px 30px;
    height: 100%;
}
/* スマホ用調整 */
@media (max-width: 768px) {
    .u-double-frame-inner {
        padding: 30px 15px;
    }
}

.hero-price {
    font-size: 1.2rem;
    line-height: 1.3;
    padding: 15px 25px !important;
}
.hero-price strong {
    font-size: 2.2rem; /* 1,500円を強調 */
    color: var(--primary-color);
    margin-left: 5px;
}

/* 3/4. 各種タイトル上部の特大猫 */
.char-standing-top {
    height: 160px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 6px 12px rgba(0,0,0,0.2));
    margin-bottom: -15px; /* タイトルに少し被せる演出 */
}

/* 5. LINE相談枠・Flow枠横の猫 */
.char-line-box {
    padding-left: 20px; 
    min-height: 200px;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 30px;
}
.char-flex-left {
    height: 180px; /* 大幅アップ！ */
    width: auto;
    object-fit: contain;
    margin-bottom: -15px;
    z-index: 10;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.25));
}
/* ガンバルニャン特大化用の拡張クラス */
.char-huge {
    height: 270px; /* 気持ちさらに大きく */
    object-fit: contain;
    filter: none !important; /* 黒い薄い影が汚いとの指示により撤去 */
    z-index: 20;
    margin-bottom: -5px;
}
/* 6. 定例会枠右上 */
/* 初参加の方へ セクションの猫 */
.relief-box {
    position: relative;
    margin-top: 40px;
    padding-top: 20px;
}
.char-relief-embed {
    display: block;
    margin: 0 auto 20px;
    height: 150px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 6px 12px rgba(0,0,0,0.2));
}

/* 7. フッターの特大猫とヘッダー猫 */
.char-header {
    height: 90px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.15));
}
.char-footer-bottom {
    height: 130px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.15));
}

/* 8. ガンバルニャンファイターズ */
.nyan-group-img {
    width: 100%;
    max-width: 900px;
    height: auto;
    display: block;
    margin: 30px auto 0;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
}

/* ガンバルニャンファイターズのテキスト装飾（18pt相当など大きめ指定への対応） */
.nyan-fighter-title {
    color: var(--primary-color);
    font-family: var(--font-heading);
    margin-bottom: 20px;
    font-size: 1.6rem; /* 大きくハッキリと */
    text-align: center;
    font-weight: 800;
}
.nyan-fighter-text {
    font-size: 1.15rem; /* 大きく読みやすく(約18pt相当) */
    line-height: 1.8;
    color: var(--text-color);
    font-weight: 500;
}

/* --- スマホ版での安全な特大配置（重なり・崩れ・横揺れ防止） --- */
@media screen and (max-width: 768px) {
    /* 縦並びに強制し、余白を確保して文字被りを絶対に防ぐ */
    .title-with-char-row {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .char-flex-header { height: 75px !important; }
    .hero-slider-section {
        height: auto !important; /* 高さを固定せず、内容に合わせて伸ばす */
        min-height: 100vh;
        overflow: visible !important;
    }
    .hero-slider-content {
        height: auto !important;
        padding-top: 100px !important;
        padding-bottom: 60px !important; /* 下部に余白を確保 */
    }
    .hero-slider-section {
        height: auto !important;
        min-height: 100vh !important;
        overflow: visible !important;
    }
    .hero-slider-content {
        height: auto !important;
        padding-top: 100px !important;
        padding-bottom: 80px !important;
    }
    .hero-price { 
        position: relative !important; 
        margin: 30px auto 0 !important; 
        bottom: auto !important; 
        right: auto !important; 
        display: flex !important; 
        width: 100% !important; 
        justify-content: center;
        zoom: 0.75;
        padding: 10px 20px !important;
    }
    .hero-price img {
        height: 130px !important;
    }
    
    /* LINEコンテナのスマホ向け縦並び処理 */
    .char-line-box {
        flex-direction: column !important;
        align-items: center !important;
        padding: 40px 20px 30px !important;
        text-align: center;
        gap: 15px;
    }
    .char-flex-left {
        height: 160px;
        margin: -40px auto 10px; /* 枠の上に座らせる */
    }
    
    .char-relief-top-right { right: 50%; transform: translateX(50%); top: -90px; height: 130px; }
    
    /* ヘッダーの文字切れ防止 */
    .char-header { height: 45px !important; }
    .header-logo-img { max-width: 60vw !important; height: auto !important; }
    
    /* 中心左寄せ折り返しの文字スタイル */
    .text-center-left-align-sp {
        display: inline-block;
        text-align: left;
    }
    
    .char-footer-bottom { height: 100px !important; }
    
    /* ガンバルニャンの主役特大表示 */
    .char-huge {
        height: 190px !important;
    }
    
    .nyan-fighter-title { font-size: 1.3rem; }
    /* オレンジ色の強調枠（ハイライト）内の文字組みをスマホ専用に最適化 */
    .u-highlight-banner {
        display: block !important;
        text-align: center !important;
        width: calc(100% - 40px) !important;
        margin: 20px auto !important;
        padding: 15px 10px !important;
        line-height: 1.6 !important;
        word-break: break-all !important;
        border: none !important;
    }
    .u-highlight-banner .text-center-left-align-sp {
        display: inline-block !important;
        text-align: left !important;
        max-width: 100%;
    }
}


/* --- お申し込みゲートウェイ（Peatix & こくちーず） --- */
.registration-section {
    background-color: var(--bg-pale-yellow);
    padding: 80px 0;
}
.reg-gateway {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.reg-card {
    background: #fff;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    padding: 40px 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.reg-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
}
.btn-peatix {
    background-color: var(--peatix-color) !important;
    color: white !important;
    border: none !important;
    width: 100%;
}
.btn-peatix:hover {
    background-color: #00a095 !important;
    box-shadow: 0 8px 20px rgba(0, 191, 178, 0.4);
}
@media (max-width: 768px) {
    .reg-gateway {
        grid-template-columns: 1fr;
    }
}

/* --- iPhone 12 mini などの極小画面 (幅380px以下) 専用の最終調整 --- */
@media screen and (max-width: 380px) {
    /* メインタイトルが絶対に右端で切れないようにvw（画面幅基準）で自動縮小 */
    .hero-main-title {
        font-size: 6.5vw !important; 
        letter-spacing: -0.02em !important;
        word-break: keep-all;
        margin-right: 0 !important;
        padding-right: 0 !important;
        line-height: 1.3 !important;
    }
    
    /* お申し込みボタンの「ら」が絶対に改行されないように固定 */
    .hero-buttons .btn-main {
        font-size: 0.82rem !important; 
        padding-left: 5px !important;
        padding-right: 5px !important;
        letter-spacing: -0.04em !important;
        white-space: nowrap !important; /* 強制的に1行にする */
        width: auto !important;
        display: inline-flex !important;
        justify-content: center;
        align-items: center;
    }

    /* オレンジ枠（ハイライト）も1行に収めるための調整 */
    .u-highlight-banner {
        font-size: 0.85rem !important;
        padding: 10px 8px !important;
        letter-spacing: -0.03em !important;
        line-height: 1.4 !important;
    }
    
    /* 価格バッジ（ニャンフク含む）のサイズをさらに最適化 */
    .hero-price {
        zoom: 0.6 !important;
        margin-top: 10px !important;
    }
    /* ヒーローセクションの背景（黒い枠）のズレを解消 */
    .hero-slider-content {
        padding: 100px 0 60px 0 !important;
        width: 100% !important;
        overflow-x: hidden !important; /* はみ出し防止 */
    }
    .hero-slider-content .container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    .hero-text-center {
        max-width: 100% !important;
        width: 100% !important;
        padding: 30px 15px !important;
        background: rgba(0,0,0,0.5) !important;
        border-radius: 0 !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }
    
    /* Facebook埋め込みの文字切れを解消 */
    .sns-embed-wrapper {
        padding: 0 !important;
        width: 100% !important;
        overflow: hidden;
        border: none !important;
        background: transparent !important;
    }
    .sns-embed-wrapper iframe {
        max-width: 100% !important;
        width: 100% !important;
        min-width: unset !important;
    }

    /* ページ全体の横揺れ（横スクロール）を完全に防止 */
    html, body {
        overflow-x: hidden !important;
        position: relative;
        width: 100% !important;
    }
    .header-container, .footer-container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}
