/* リセットとベーススタイル */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fefefe;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ファーストビュー */
.hero {
    background: linear-gradient(135deg, rgba(254, 247, 240, 0.9) 0%, rgba(255, 249, 245, 0.9) 50%, rgba(254, 245, 240, 0.9) 100%), url('images/nature_background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #4a5568;
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    color: #718096;
    margin-bottom: 40px;
}

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

.hero-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* CTAボタン */
.cta-button {
    display: inline-block;
    padding: 18px 36px;
    background: linear-gradient(135deg, #f4a6cd 0%, #f8b4d9 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(244, 166, 205, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(244, 166, 205, 0.4);
}

.cta-button.large {
    padding: 22px 44px;
    font-size: 1.2rem;
}

/* セクション共通 */
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #2d3748;
    line-height: 1.3;
}
/* 悩みへの共感 */
.empathy {
    padding: 100px 0;
    background-color: #fefcfa;
}

.empathy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.empathy-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #f4a6cd;
    transition: transform 0.3s ease;
}

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

.empathy-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 15px;
    line-height: 1.4;
}

.empathy-item p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
}

.empathy-message {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: linear-gradient(135deg, #fef7f0 0%, #fff9f5 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.empathy-message p {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 20px;
}

.empathy-hope {
    font-size: 1.3rem !important;
    color: #f4a6cd !important;
    font-weight: 600;
}

/* ストーリータイムライン */

.story-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 30px;
    background: #fefcfa;
    border-radius: 15px;
}

.story-intro p {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.7;
}

.story-message {
    text-align: center;
    max-width: 800px;
    margin: 60px auto 0;
    padding: 40px;
    background: linear-gradient(135deg, #fef7f0 0%, #fff9f5 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.story-message p {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 20px;
}00px 0;
    background: white;
}

.story-timeline {
    margin-bottom: 60px;
}

.timeline-item {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.timeline-marker {
    width: 20px;
    height: 20px;
    background: #f4a6cd;
    border-radius: 50%;
    margin-right: 30px;
    margin-top: 5px;
    flex-shrink: 0;
    position: relative;
}

.timeline-marker::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 60px;
    background: #e2e8f0;
}

.timeline-item:last-child .timeline-marker::after {
    display: none;
}

.timeline-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 1.1rem;
    color: #4a5568;
}

.profile-card {
    background: linear-gradient(135deg, #fef7f0 0%, #fff9f5 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.profile-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 20px;
}

.profile-card ul {
    list-style: none;
}

.profile-card li {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 10px;
}

/* カウンセリングの特徴 */
.features {
    padding: 100px 0;
    background: #fefcfa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature-item {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 10px;
}

.feature-item h4 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #f4a6cd;
    margin-bottom: 15px;
}

.feature-item p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.7;
}

/* 料金 */
.pricing {
    padding: 100px 0;
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

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

.pricing-card.featured {
    border-color: #f4a6cd;
    box-shadow: 0 15px 40px rgba(244, 166, 205, 0.2);
}

.pricing-card.special {
    border-color: #ffd700;
    background: linear-gradient(135deg, #fffbf0 0%, #fff8e1 100%);
}

.special-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffd700;
    color: #333;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 20px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f4a6cd;
    margin-bottom: 20px;
}

.price span {
    font-size: 1rem;
    color: #718096;
}

.pricing-card ul {
    list-style: none;
    text-align: left;
}

.pricing-card li {
    padding: 8px 0;
    color: #4a5568;
    border-bottom: 1px solid #e2e8f0;
}

.pricing-card li:last-child {
    border-bottom: none;
}

.pricing-notes {
    text-align: center;
    color: #718096;
}

.pricing-notes p {
    margin-bottom: 5px;
}

/* 予約の流れ */
.flow {
    padding: 100px 0;
    background: #fefcfa;
}

.flow-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #f4a6cd;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 15px;
}

.step p {
    color: #4a5568;
    line-height: 1.6;
}

/* FAQ */
.faq {
    padding: 100px 0;
    background: white;
}

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

.faq-item {
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 20px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #f4a6cd;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 0 20px 0;
    color: #4a5568;
    line-height: 1.7;
}

/* 最後のメッセージ */
.final-message {
    padding: 100px 0;
    background: linear-gradient(135deg, #fef7f0 0%, #fff9f5 100%);
    text-align: center;
}

.message-content {
    max-width: 800px;
    margin: 0 auto;
}

.message-content p {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 40px;
}

.no-pressure {
    font-size: 0.9rem !important;
    color: #718096 !important;
    margin-top: 20px !important;
    margin-bottom: 0 !important;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .empathy-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .flow-steps {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        flex-direction: column;
    }
    
    .timeline-marker {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .timeline-marker::after {
        display: none;
    }
}

/* スムーススクロール */
html {
    scroll-behavior: smooth;
}

/* アニメーション */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.empathy-item,
.feature-item,
.pricing-card,
.step {
    animation: fadeInUp 0.6s ease-out;
}


/* 中間CTA */
.mid-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #fef7f0 0%, #fff9f5 100%);
    text-align: center;
}

.mid-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.mid-cta-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 20px;
    line-height: 1.4;
}

.mid-cta-content p {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 30px;
    line-height: 1.6;
}



/* カウンセラー紹介 */
.counselor-intro {
    padding: 100px 0;
    background: linear-gradient(135deg, #fefcfa 0%, #fff9f5 100%);
}

.counselor-profile {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.profile-image {
    text-align: center;
    position: sticky;
    top: 100px;
}

.profile-image img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 5px solid white;
}

.counselor-name {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 10px;
    text-align: center;
}

.counselor-title {
    font-size: 1.2rem;
    color: #f4a6cd;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
}

.profile-section {
    margin-bottom: 40px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.profile-section h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 20px;
    border-bottom: 2px solid #f4a6cd;
    padding-bottom: 10px;
}

.profile-section p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
}

.credentials-list {
    list-style: none;
    padding: 0;
}

.credentials-list li {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.credentials-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #f4a6cd;
    font-weight: bold;
    font-size: 1.2rem;
}

.promises-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.promise-item {
    text-align: center;
    padding: 20px;
    background: #fef7f0;
    border-radius: 10px;
    border: 2px solid #f4a6cd;
}

.promise-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
}

.promise-item p {
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.benefits-list li::before {
    content: "🌟";
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.profile-message {
    background: linear-gradient(135deg, #f4a6cd 0%, #e91e63 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin-top: 20px;
}

.profile-message p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin: 0;
    color: white;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .counselor-profile {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .profile-image {
        position: static;
    }
    
    .profile-image img {
        width: 200px;
        height: 200px;
    }
    
    .promises-grid {
        grid-template-columns: 1fr;
    }
    
    .counselor-name {
        font-size: 1.8rem;
    }
}

