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

html {
    scroll-behavior: smooth;
}

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

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

/* ヘッダー */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.logo h1 {
    font-family: 'Noto Serif JP', serif;
    font-size: 28px;
    font-weight: 600;
    color: #8b4513;
    margin-bottom: 2px;
}

.logo span {
    font-size: 14px;
    color: #a0a0a0;
    letter-spacing: 1px;
}

/* ファーストビュー */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

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

.hero-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.6;
    color: #2c2c2c;
    margin-bottom: 30px;
}

.hero-title .highlight {
    color: #8b4513;
    position: relative;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
}

.hero-cta {
    margin-top: 40px;
}

.cta-button {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(135deg, #d4af37, #b8941f);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

.cta-button::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-button:hover::before {
    left: 100%;
}

.hero-image {
    position: relative;
}

.chocolate-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.chocolate-image:hover {
    transform: scale(1.02);
}

/* セクション共通スタイル */
section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    color: #2c2c2c;
    margin-bottom: 60px;
    position: relative;
}

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

/* 説明会で得られること */
.benefits {
    background: linear-gradient(135deg, #fefcf8, #f9f6f0);
}

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

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

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.benefit-item h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 20px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 15px;
}

.benefit-item p {
    color: #666;
    line-height: 1.7;
}

/* 共感パート */
.empathy {
    background: white;
}

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

.empathy-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.highlight-text {
    font-weight: 600;
    color: #8b4513;
    font-size: 20px !important;
}

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

/* 未来のイメージ */
.future-vision {
    background: linear-gradient(135deg, #f9f6f0, #f5f1e8);
    text-align: center;
}

.vision-scenarios {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.scenario {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    max-width: 400px;
}

.scenario-dialogue {
    margin-bottom: 15px;
}

.speaker {
    font-weight: 600;
    margin-bottom: 8px;
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
    font-size: 14px;
}

.speaker.friend {
    background: #ffe4e1;
    color: #d63384;
}

.speaker.you {
    background: #e7f3ff;
    color: #0066cc;
}

.speaker.husband {
    background: #e8f5e8;
    color: #198754;
}

.dialogue {
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 15px;
    font-style: italic;
    border-left: 4px solid #d4af37;
}

.vision-conclusion {
    font-family: 'Noto Serif JP', serif;
    font-size: 22px;
    font-weight: 600;
    color: #8b4513;
    margin-top: 40px;
}

/* ローチョコの魅力 */
.raw-chocolate-appeal {
    background: white;
}

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

.appeal-item {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, #fefcf8, #f9f6f0);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.appeal-item:hover {
    transform: translateY(-3px);
}

.appeal-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 15px;
}

.appeal-note {
    text-align: center;
    font-style: italic;
    color: #888;
    margin-top: 30px;
}

/* 社会的証明 */
.social-proof {
    background: linear-gradient(135deg, #f9f6f0, #f5f1e8);
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.proof-item {
    background: white;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.proof-image {
    margin-bottom: 20px;
}

.media-image, .achievement-image, .class-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.proof-item h3 {
    font-size: 20px;
    color: #8B4513;
    margin-bottom: 15px;
    font-weight: bold;
}

.proof-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

@media (max-width: 768px) {
    .proof-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .proof-item {
        padding: 20px;
    }
    
    .media-image, .achievement-image, .class-image {
        height: 150px;
    }
}

/* 講師紹介 */
.instructor {
    background: white;
}

.instructor-profile {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.instructor-info h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 28px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 10px;
}

.instructor-title {
    font-size: 16px;
    color: #8b4513;
    font-weight: 600;
    margin-bottom: 30px;
}

.instructor-description p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.instructor-achievements {
    margin-top: 30px;
}

.instructor-achievements h4 {
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 15px;
}

.instructor-achievements ul {
    list-style: none;
}

.instructor-achievements li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.instructor-achievements li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
}

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

/* 説明会詳細 */
.seminar-details {
    background: linear-gradient(135deg, #f9f6f0, #f5f1e8);
    text-align: center;
}

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

.detail-item {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.detail-item h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 18px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 15px;
}

/* 限定特典 */
.special-offers {
    background: white;
}

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

.offer-item {
    background: linear-gradient(135deg, #fefcf8, #f9f6f0);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #d4af37;
    transition: transform 0.3s ease;
}

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

.offer-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.offer-item h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 18px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 15px;
}

/* 安心感 */
.reassurance {
    background: linear-gradient(135deg, #f9f6f0, #f5f1e8);
    text-align: center;
}

.reassurance-text {
    font-size: 20px;
    line-height: 1.8;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

/* 申し込みフォーム */
.application {
    background: white;
    text-align: center;
}

.application-subtitle {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.application-form {
    max-width: 800px;
    margin: 0 auto;
    background: #f9f9f9;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* フッター */
.footer {
    background: #2c2c2c;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 24px;
    font-weight: 600;
    color: #d4af37;
    margin-bottom: 5px;
}

.footer-logo p {
    color: #ccc;
    font-size: 14px;
}

.footer-info p {
    line-height: 1.7;
    color: #ccc;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: #999;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .empathy-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .vision-scenarios {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .instructor-profile {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 26px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 14px;
    }
    
    .benefit-item,
    .offer-item,
    .media-item {
        padding: 30px 20px;
    }
}


/* 受講生の声セクション */
.testimonials {
    background: linear-gradient(135deg, #f8f6f0 0%, #f0ede5 100%);
    padding: 80px 0;
}

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

.testimonial-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    font-style: italic;
}

.testimonial-author {
    text-align: right;
    font-weight: bold;
    color: #8B4513;
    font-size: 14px;
}

/* 未来のイメージセクション - 画像追加 */
.vision-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin: 40px 0;
}

.vision-scenarios {
    flex: 1;
}

.vision-image {
    flex: 1;
}

.vision-chocolate-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* プティリスの魅力セクション - 詳細スタイル */
.appeal-main {
    margin-bottom: 60px;
}

.appeal-hero {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 30px;
}

.appeal-hero-text {
    flex: 2;
}

.appeal-hero-text h3 {
    font-size: 28px;
    color: #8B4513;
    margin-bottom: 20px;
}

.appeal-hero-image {
    flex: 1;
}

.organic-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.appeal-details {
    background: rgba(255, 255, 255, 0.8);
    padding: 30px;
    border-radius: 15px;
    margin-top: 30px;
}

.appeal-details p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.appeal-item-image {
    margin-bottom: 20px;
}

.appeal-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

/* 社会的証明セクション - 画像追加 */
.proof-image {
    margin-bottom: 20px;
}

.media-image, .achievement-image, .class-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* 講師紹介セクション - 画像更新 */
.instructor-profile {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.instructor-image {
    flex: 1;
}

.instructor-photo {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.instructor-info {
    flex: 2;
}

.instructor-description p {
    margin-bottom: 20px;
    line-height: 1.8;
}

/* 特典セクション - 画像追加 */
.offer-image {
    margin-bottom: 15px;
}

.offer-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}

/* 追加のレスポンシブ対応 */
@media (max-width: 768px) {
    .vision-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .appeal-hero {
        flex-direction: column;
        gap: 30px;
    }
    
    .instructor-profile {
        flex-direction: column;
        gap: 30px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .instructor-photo {
        height: 300px;
    }
}


/* ファーストビューのレスポンシブ調整 */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 26px;
        line-height: 1.6;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 24px;
        line-height: 1.6;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 20px;
        line-height: 1.5;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
}



/* 4つの魅力セクション */
.appeal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.appeal-item {
    background: white;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.appeal-item-image {
    margin-bottom: 20px;
}

.appeal-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.appeal-item h3 {
    font-size: 20px;
    color: #8B4513;
    margin-bottom: 15px;
    font-weight: bold;
}

.appeal-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

@media (max-width: 768px) {
    .appeal-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .appeal-item {
        padding: 20px;
    }
    
    .appeal-image {
        height: 150px;
    }
}


/* Q&A Section */
.faq {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f5f0 0%, #f0ebe5 100%);
}

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

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
}

.faq-question {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    color: white;
    padding: 25px 30px;
    cursor: pointer;
}

.faq-question h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

.faq-answer {
    padding: 25px 30px;
    background: white;
}

.faq-answer p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

@media (max-width: 768px) {
    .faq {
        padding: 60px 0;
    }
    
    .faq-question {
        padding: 20px 25px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
    
    .faq-answer {
        padding: 20px 25px;
    }
    
    .faq-answer p {
        font-size: 14px;
    }
}

