/* 基本設定 */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    color: #333;
    background-color: #f9f7f5; /* やわらかいベージュ */
}

a {
    text-decoration: none;
    color: #e88a9b; /* やさしいピンク */
}

/* ヘッダー */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

header h1 {
    margin: 0;
}

header h1 a {
    font-size: 28px;
    font-weight: bold;
    color: #333;
}

header nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

header nav li {
    margin-left: 40px;
}

header nav a {
    font-size: 16px;
    font-weight: 500;
    color: #555;
    transition: color 0.3s;
}

header nav a:hover {
    color: #e88a9b;
}

/* ヒーローセクション */
#hero {
    background-image: url('image.png');
    background-size: cover;
    background-position: center;
background-color: rgba(255, 255, 255, 0.75);
    background-blend-mode: lighten;
}


/* === Hero Section Base Styles === */
.hero-section {
    background: linear-gradient(135deg, #fce4ec 0%, #f9f7f5 50%, #fff8e1 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

/* 装飾的背景要素 */
.hero-decoration-1 {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(232,138,155,0.08), transparent);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero-decoration-2 {
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212,175,55,0.05), transparent);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

.hero-decoration-3 {
    position: absolute;
    top: 40%;
    left: 20%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(232,138,155,0.03), transparent);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite;
}

/* === Pain to Solution Flow === */
.pain-to-solution {
    margin-bottom: 30px;
    text-align: center;
}

.pain-point {
    color: #666;
    font-size: 16px;
    font-style: italic;
    margin-bottom: 15px;
    opacity: 0.8;
}

.quote-mark {
    color: #e88a9b;
    font-size: 24px;
    font-weight: bold;
}

.arrow-down {
    color: #e88a9b;
    font-size: 24px;
    margin: 10px 0;
    animation: bounce 2s infinite;
}

.solution {
    color: #333;
    font-size: 18px;
    font-weight: 600;
}

.highlight {
    color: #e88a9b;
    font-weight: bold;
    background: linear-gradient(45deg, #e88a9b, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === Hero Title === */
.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-align: center;
}

.title-line1 {
    display: block;
    color: #333;
    margin-bottom: 10px;
}

.title-line2 {
    display: block;
    background: linear-gradient(45deg, #a45178, #ff008b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.accent {
    color: #e88a9b;
    font-size: 1.2em;
    font-weight: 800;
}

/* === Hero Subtitle === */
.hero-subtitle {
    font-size: 1.1rem;
    color: #000000;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.6;
}

.emphasis {
    color: #000000;
    font-weight: 600;
}

/* === Achievement Badges === */
.achievement-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.badge {
    background: white;
    border-radius: 15px;
    padding: 15px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(232,138,155,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(232,138,155,0.2);
    border-color: #e88a9b;
}

.badge .number {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #e88a9b;
    margin-bottom: 5px;
}

.badge .label {
    font-size: 0.9rem;
    color: #666;
}

/* === CTA Buttons === */
.hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.cta-primary {
    background: linear-gradient(45deg, #e88a9b, #d4af37);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(232,138,155,0.3);
    animation: pulse 2s infinite;
    position: relative;
    overflow: hidden;
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.cta-primary:hover::before {
    left: 100%;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(232,138,155,0.4);
}

.cta-text {
    display: block;
    font-size: 18px;
}

.cta-sub {
    display: block;
    font-size: 12px;
    opacity: 0.9;
    margin-top: 2px;
}

.cta-secondary {
    background: transparent;
    color: #e88a9b;
    border: 2px solid #e88a9b;
    border-radius: 30px;
    padding: 16px 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #e88a9b;
    color: white;
    transform: translateY(-2px);
}

/* === Trust Elements === */
.trust-elements {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #000000;
    font-size: 14px;
}

.trust-item i {
    color: #212121;
    font-size: 16px;
}

/* === Visual Section === */
.hero-visual {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-image-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin-top: 40px;
}

.main-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    background: linear-gradient(45deg, rgba(232,138,155,0.1), rgba(212,175,55,0.1));
}

.success-popup {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    animation: slideInRight 1s ease-out;
}

.popup-title {
    display: block;
    font-weight: bold;
    color: #e88a9b;
    font-size: 14px;
}

.popup-subtitle {
    display: block;
    color: #666;
    font-size: 12px;
    margin-top: 5px;
}

/* === Floating Elements === */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.element {
    position: absolute;
    font-size: 24px;
    animation: float 3s ease-in-out infinite;
}

.element-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    top: 60%;
    right: 15%;
    animation-delay: 1s;
}

.element-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

/* === Animations === */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

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

@keyframes pulse {
    0% { box-shadow: 0 8px 25px rgba(232,138,155,0.3); }
    50% { box-shadow: 0 8px 35px rgba(232,138,155,0.6); }
    100% { box-shadow: 0 8px 25px rgba(232,138,155,0.3); }
}

@keyframes slideInRight {
    from { transform: translateX(100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* === Responsive Design === */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .achievement-badges {
        gap: 15px;
    }
    
    .badge {
        padding: 12px 15px;
    }
    
    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-primary, .cta-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .trust-elements {
        gap: 20px;
    }
    
    .trust-item {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .title-line1 {
        font-size: 1rem;
    }

    .achievement-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .badge {
        width: 100%;
        max-width: 200px;
    }
}


/* タイピング効果 */
.typing-effect {
    overflow: hidden;
    border-right: 2px solid #e88a9b;
    white-space: nowrap;
    animation: typing 3s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: #e88a9b; }
}

/* スクロール時のフェードイン */
.animate {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ホバー時の3D効果 */
.hero-visual:hover .main-image {
    transform: perspective(1000px) rotateY(10deg) rotateX(5deg);
    transition: transform 0.3s ease;
}



/* セクション共通 */
section {
    padding: 100px 50px;
    text-align: center;
}

section:nth-child(even) {
    background-color: #fff;
}

section h2 {
    font-size: 36px;
    margin-bottom: 60px;
    color: #333;
    position: relative;
    display: inline-block;
}

section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 50px;
    height: 3px;
    background-color: #e88a9b;
}

/* なぜセミパーソナルがおすすめなのかセクション */
#why-semipersonal {
    padding: 100px 50px;
    text-align: center;
    background-color: #fce4ec; /* やわらかいピンク */
}

#why-semipersonal h2 {
    font-size: 36px;
    margin-bottom: 60px;
    color: #333;
    position: relative;
    display: inline-block;
}

#why-semipersonal h2::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 50px;
    height: 3px;
    background-color: #e88a9b;
}

.reason-points {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.reason-points .reason-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    width: 90%;
    text-align: left;
}

.reason-points .reason-item h3 {
    font-size: 24px;
    color: #e88a9b;
    margin-bottom: 15px;
}

.reason-points .reason-item h3 i {
    margin-right: 10px;
}

.reason-points .reason-item p {
    font-size: 16px;
    line-height: 1.6;
}

/* なぜセミパーソナルがおすすめなのかセクション */
#why-semipersonal {
    padding: 100px 50px;
    text-align: center;
    background-color: #fce4ec; /* やわらかいピンク */
}

#why-semipersonal h2 {
    font-size: 36px;
    margin-bottom: 60px;
    color: #333;
    position: relative;
    display: inline-block;
}

#why-semipersonal h2::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 50px;
    height: 3px;
    background-color: #e88a9b;
}

.reason-points {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.reason-points .reason-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    width: 90%;
    text-align: left;
}

.reason-points .reason-item h3 {
    font-size: 24px;
    color: #e88a9b;
    margin-bottom: 15px;
}

.reason-points .reason-item h3 i {
    margin-right: 10px;
}

.reason-points .reason-item p {
    font-size: 16px;
    line-height: 1.6;
}

.additional-points {
    margin-top: 40px;
}

.additional-points ul {
    list-style: none;
    padding: 0;
    display: inline-block;
    text-align: left;
}

.additional-points li {
    font-size: 18px;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.additional-points li i {
    position: absolute;
    left: 0;
    color: #e88a9b;
}

/* さらに！嬉しいポイントセクション */
#additional-benefits {
    padding: 100px 50px;
    text-align: center;
    background-color: #f9f7f5; /* やわらかいベージュ */
}

#additional-benefits h2 {
    font-size: 36px;
    margin-bottom: 60px;
    color: #333;
    position: relative;
    display: inline-block;
}

#additional-benefits h2::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 50px;
    height: 3px;
    background-color: #e88a9b;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

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

.benefit-item i {
    font-size: 48px;
    color: #e88a9b;
    margin-bottom: 20px;
}

.benefit-item h3 {
    font-size: 20px;
    color: #333;
    margin: 0;
}

/* メニューセクション */
.menu-container {
    display: flex;
    justify-content: space-around;
}

.menu-item {
    width: 30%;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.menu-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.menu-item h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #e88a9b;
}

/* お悩み、おすすめの方セクション */
#problem, #for-you {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

#problem .content, #for-you .content {
    width: 50%;
}

#problem ul, #for-you ul {
    list-style: none;
    padding: 0;
    display: inline-block;
    text-align: left;
}

#problem li, #for-you li {
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 18px;
    position: relative;
}

#problem li::before, #for-you li::before {
    content: '\2713';
    color: #e88a9b;
    position: absolute;
    left: 0;
}

#problem .problem-image,
#for-you .for-you-image {
    width: 40%;
    max-width: 400px;
}

/* 選ばれる理由、特徴セクション */
.reason-container, .feature-container {
    display: flex;
    justify-content: space-around;
}

.reason-item, .feature-item {
    width: 30%;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.reason-item h3, .feature-item h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #e88a9b;
}

/* お客様の声セクション */
.voice-container {
    display: block;
}

.voice-item {
    width: 80%;
    margin: 0 auto 30px;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
}

.voice-item::before {
    content: '\201C';
    font-size: 50px;
    color: #e88a9b;
    position: absolute;
    top: 10px;
    left: 15px;
}

/* 料金プランセクション */
.price-container {
    display: flex;
    justify-content: space-around;
}

.price-item {
    width: 30%;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.price-item h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #e88a9b;
}

/* 体験予約セクション */
#trial {
    background-color: #e88a9b;
    color: #fff;
    padding: 100px 50px;
    text-align: center;
}

#trial h2 {
    font-size: 42px;
    margin-bottom: 10px;
    color: #fff;
}

#trial h2::after {
    display: none;
}

#trial .sub-heading {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

#trial .trial-benefits {
    margin-bottom: 40px;
}

#trial .trial-benefits h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #fff;
}

#trial .trial-benefits ul {
    list-style: none;
    padding: 0;
    display: inline-block;
    text-align: left;
}

#trial .trial-benefits li {
    font-size: 18px;
    margin-bottom: 15px;
}

#trial .trial-benefits .fa-check-circle {
    margin-right: 10px;
    color: #fff;
}

#trial .limited-offer {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 60px;
    display: block;
    border: 2px dashed #fff;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

#trial .limited-offer p {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
}

#trial .trial-btn {
    background-color: #00B900;
    color: #fff;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 30px;
    font-weight: bold;
    transition: all 0.3s;
    border: 2px solid #00B900;
    margin-top: 20px;
}

#trial .trial-btn:hover {
    background-color: #fff;
    color: #00B900;
    border: 2px solid #00B900;
}

#trial .trial-note {
    margin-top: 40px;
    font-size: 14px;
    opacity: 0.8;
}

/* よくある質問セクション */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    margin-bottom: 30px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
}

.faq-item h3::before {
    content: 'Q.';
    position: absolute;
    left: 0;
    color: #e88a9b;
}

.faq-item p {
    padding-left: 30px;
}


/* お問い合わせセクション */
#contact {
    background-color: #f9f7f5;
}

#contact .btn {
    margin-top: 20px;
}

/* トレーナーご挨拶セクション */
#trainer-greeting {
    padding: 100px 50px;
    text-align: center;
    background-color: #fff;
}

#trainer-greeting h2 {
    font-size: 36px;
    margin-bottom: 60px;
    color: #333;
    position: relative;
    display: inline-block;
}

#trainer-greeting h2::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 50px;
    height: 3px;
    background-color: #e88a9b;
}

.trainer-profile {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.trainer-photo {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #e88a9b;
    flex-shrink: 0;
}

.trainer-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trainer-info {
    text-align: left;
    max-width: 600px;
}

.trainer-info h3 {
    font-size: 32px;
    color: #e88a9b;
    margin-bottom: 20px;
}

.greeting-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.qualifications h4 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
}

.qualifications ul {
    list-style: none;
    padding: 0;
}

.qualifications ul li {
    font-size: 16px;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.qualifications ul li::before {
    content: '•';
    color: #e88a9b;
    position: absolute;
    left: 0;
}

/* 店舗情報・アクセスセクション */
#access {
    padding: 100px 50px;
    text-align: center;
    background-color: #f9f7f5;
}

#access h2 {
    font-size: 36px;
    margin-bottom: 60px;
    color: #333;
    position: relative;
    display: inline-block;
}

#access h2::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 50px;
    height: 3px;
    background-color: #e88a9b;
}

.access-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

.access-info {
    text-align: left;
    max-width: 500px;
}

.access-info h3 {
    font-size: 28px;
    color: #e88a9b;
    margin-bottom: 20px;
}

.access-info p,
.access-info ul {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.access-info ul {
    list-style: none;
    padding-left: 20px;
}

.access-info ul li::before {
    content: '\2022';
    color: #e88a9b;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.access-map iframe {
    width: 100%;
    max-width: 600px;
    height: 450px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Instagramセクション */
#instagram {
    padding: 100px 50px;
    text-align: center;
    background-color: #fff;
}

#instagram h2 {
    font-size: 36px;
    margin-bottom: 60px;
    color: #333;
    position: relative;
    display: inline-block;
}

#instagram h2::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 50px;
    height: 3px;
    background-color: #e88a9b;
}

.instagram-embed-container {
    max-width: 800px;
    margin: 0 auto;
}

/* フッター */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 30px 0;
}

/* フローティングバナー */
.floating-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #00B900; /* LINEの緑 */
    color: #fff;
    text-align: center;
    padding: 15px 0;
    font-size: 18px;
    font-weight: bold;
    z-index: 1000;
    transition: bottom 0.3s;
}

.floating-banner:hover {
    background-color: #00a300;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    /* ヘッダー */
    header {
        flex-direction: column;
        padding: 20px;
    }

    header nav ul {
        flex-direction: column;
        margin-top: 20px;
    }

    header nav li {
        margin-left: 0;
        margin-bottom: 15px;
    }

    /* ヒーローセクション */
    .hero-text h2 {
        font-size: 28px;
    }

    .hero-text p {
        font-size: 16px;
    }

    /* セクション共通 */
    section {
        padding: 60px 20px;
    }

    section h2 {
        font-size: 28px;
    }

    /* コンテナ系 */
    .menu-container,
    .reason-container,
    .feature-container,
    .voice-container,
    .price-container {
        flex-direction: column;
        align-items: center;
    }

    .menu-item,
    .reason-item,
    .feature-item,
    .voice-item,
    .price-item {
        width: 90%;
        margin-bottom: 30px;
    }

    .voice-item {
        width: 90%;
    }

    /* よくある質問 */
    .faq-item h3 {
        font-size: 18px;
    }

    .faq-item p {
        font-size: 15px;
    }
}

.big {
	font-size: 20px;
	font-weight: bold;
}

.middle {
	font-size: 17px;
	font-weight: bold;
}

/* === LINE CTA Button === */
/* LINE予約ボタン - スマホ対応完全版 */
.line-button-wrapper {
    text-align: center;
    margin: 20px 0;
    padding: 0 15px;
}

.line-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    background: #00C300 !important;
    color: #ffffff !important;
    text-decoration: none !important;
    border-radius: 25px;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 195, 0, 0.3);
    transition: all 0.3s ease;
    gap: 10px;
    border: none !important;
    outline: none;
    min-height: 50px;
    position: relative;
}

.line-btn-icon {
    font-size: 24px !important;
    color: #ffffff !important;
    flex-shrink: 0;
}

.line-btn-text {
    color: #ffffff !important;
    line-height: 1.3;
    text-align: center;
}

/* ホバー・アクティブ効果 */
.line-btn:hover,
.line-btn:focus,
.line-btn:active {
    background: #00B900 !important;
    color: #ffffff !important;
    text-decoration: none !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 195, 0, 0.4);
}

/* スマホ専用調整 */
@media (max-width: 768px) {
    .line-button-wrapper {
        padding: 0 10px;
        margin: 15px 0;
    }
    
    .line-btn {
        width: calc(100% - 20px) !important;
        max-width: 320px !important;
        margin: 0 auto !important;
        padding: 18px 20px !important;
        font-size: 16px !important;
        border-radius: 25px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .line-btn-icon {
        font-size: 22px !important;
        margin-right: 8px !important;
    }
    
    .line-btn-text {
        font-size: 16px !important;
        font-weight: 600 !important;
    }
}

@media (max-width: 480px) {
    .line-btn {
        width: calc(100% - 10px) !important;
        margin: 0 auto !important;
        padding: 16px 15px !important;
    }
    
    .line-btn-text {
        font-size: 15px !important;
    }
}




/* === Testimonials Section === */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, rgba(252,228,236,0.3) 0%, transparent 100%);
}

/* セクションヘッダー */
.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #e88a9b, #d4af37);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* === 縦並びコンテナ === */
.testimonials-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

/* 証言カード */
.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(232,138,155,0.1);
    width: 85%;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    border-color: rgba(232,138,155,0.2);
}

/* カードヘッダー */
.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    gap: 25px;
}

/* 顔写真コンテナ */
.customer-photo-container {
    flex-shrink: 0;
    position: relative;
}

.photo-frame {
    position: relative;
    width: 85px;
    height: 85px;
}

.customer-photo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #e88a9b;
    box-shadow: 0 6px 20px rgba(232,138,155,0.3);
    transition: all 0.3s ease;
}

.testimonial-card:hover .customer-photo {
    border-color: #d4af37;
    box-shadow: 0 8px 25px rgba(232,138,155,0.4);
    transform: scale(1.05);
}

/* 成功バッジ */
.photo-overlay {
    position: absolute;
    top: -8px;
    right: -8px;
}

.success-badge {
    background: linear-gradient(45deg, #e88a9b, #d4af37);
    color: white;
    font-size: 11px;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    animation: gentle-bounce 2s ease-in-out infinite;
}

.couple-badge {
    font-size: 10px;
    padding: 4px 8px;
}

/* 顧客情報 */
.customer-info {
    flex: 1;
}

.customer-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.customer-details {
    font-size: 1rem;
    color: #666;
    margin-bottom: 10px;
}

/* 評価星 */
.rating {
    display: flex;
    gap: 3px;
}

.rating i {
    color: #ffd700;
    font-size: 16px;
}

/* 証言コンテンツ */
.testimonial-content {
    position: relative;
}

.quote-mark {
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 70px;
    color: rgba(232,138,155,0.15);
    font-family: serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
    padding-left: 25px;
    position: relative;
    z-index: 2;
}

/* 結果サマリー */
.results-summary {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(252,228,236,0.4), rgba(249,247,245,0.4));
    border-radius: 15px;
    margin-top: 25px;
    border: 1px solid rgba(232,138,155,0.1);
}

.result-item {
    text-align: center;
    flex: 1;
}

.result-item .label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
    font-weight: 500;
}

.result-item .value {
    display: block;
    font-size: 1.3rem;
    font-weight: bold;
    color: #e88a9b;
}

/* 夫婦用の結果表示 */
.couple-results {
    display: flex;
    justify-content: center;
    gap: 40px;
}

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

.couple-result .person {
    display: block;
    font-size: 1rem;
    color: #666;
    margin-bottom: 8px;
    font-weight: 500;
}

.couple-result .value {
    display: block;
    font-size: 1.4rem;
    font-weight: bold;
    color: #e88a9b;
}

/* 夫婦カード専用スタイル */
.testimonial-couple {
    border: 2px solid rgba(232,138,155,0.2);
    background: linear-gradient(135deg, rgba(252,228,236,0.05), rgba(255,255,255,1));
}

.couple-photos .photo-frame {
    width: 95px;
    height: 95px;
}

/* アニメーション */
@keyframes gentle-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

/* === レスポンシブ対応 === */
@media (max-width: 768px) {
    .testimonials-container {
        gap: 25px;
        padding: 0 15px;
    }
    
    .testimonial-card {
        padding: 25px;
        border-radius: 15px;
    }
    
    .card-header {
        gap: 20px;
        margin-bottom: 25px;
    }
    
    .photo-frame {
        width: 75px;
        height: 75px;
    }
    
    .customer-name {
        font-size: 1.2rem;
    }
    
    .customer-details {
        font-size: 0.9rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
        padding-left: 20px;
    }
    
    .results-summary {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }
    
    .result-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 15px;
        background: rgba(255,255,255,0.7);
        border-radius: 8px;
    }
    
    .result-item .label,
    .result-item .value {
        display: inline;
        margin-bottom: 0;
    }
    
    .couple-results {
        flex-direction: column;
        gap: 15px;
    }
    
    .couple-result {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 15px;
        background: rgba(255,255,255,0.7);
        border-radius: 8px;
    }
    
    .couple-result .person,
    .couple-result .value {
        display: inline;
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .testimonials-container {
        gap: 20px;
        padding: 0 10px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .card-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .photo-frame {
        width: 80px;
        height: 80px;
        margin: 0 auto;
    }
    
    .quote-mark {
        font-size: 50px;
        top: -15px;
        left: -5px;
    }
    
    .testimonial-text {
        padding-left: 10px;
        font-size: 0.95rem;
    }
    
    .results-summary {
        padding: 12px;
    }
}


/* プライバシー保護版 */
.customer-photo.privacy-protected::after {
    content: '';
    position: absolute;
    top: 25%;
    left: 15%;
    right: 15%;
    height: 30%;
    background: linear-gradient(45deg, #e88a9b, #d4af37);
    border-radius: 10px;
    opacity: 0.9;
}

/* または、イラスト風にぼかす場合 */
.customer-photo.illustrated {
    filter: blur(1px) contrast(1.2) saturate(1.3);
    opacity: 0.9;
}

