/* ========================================
   グローバル設定
======================================== */
:root {
    /* カラーパレット - Mrs Global Earth Tokyo デザインシステム */
    --primary-color: #E91E63;
    --primary-dark: #C2185B;
    --primary-light: #F48FB1;
    --secondary-color: #2c3e50;
    --accent-color: #FF4081;
    --text-dark: #2c3e50;
    --text-light: black;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --gradient-start: #E91E63;
    --gradient-end: #C2185B;
    
    /* タイポグラフィ - Mrs Global Earth Tokyo スタイル */
    --font-primary: 'Noto Sans JP', sans-serif;
    --font-heading: 'Cormorant Garamond', 'Noto Serif JP', serif;
    
    /* スペーシング */
    --section-padding: 80px;
    --container-max-width: 1200px;
    
    /* トランジション */
    --transition-speed: 0.3s;
    
    /* シャドウ */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* リセット */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--bg-white);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-speed);
}

ul {
    list-style: none;
}

/* ========================================
   ユーティリティクラス
======================================== */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding) 0;
}

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

.bg-gradient {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
}

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

.section-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.section-label.light {
    color: var(--bg-white);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.section-title.light {
    color: var(--bg-white);
}

.section-description {
    font-size: 16px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-description.light {
    color: rgba(255, 255, 255, 0.9);
}

/* ボタン */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-speed);
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    color: var(--bg-white);
    border-color: var(--bg-white);
}

.btn-outline:hover {
    background-color: var(--bg-white);
    color: var(--primary-color);
}

.btn-outline-dark {
    background-color: transparent;
    color: var(--text-dark);
    border-color: var(--text-dark);
}

.btn-outline-dark:hover {
    background-color: var(--text-dark);
    color: var(--bg-white);
}

/* ========================================
   ヘッダー
======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-speed);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.logo-subtitle {
    font-size: 12px;
    color: var(--text-light);
    margin-top: -5px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-menu a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    transition: color var(--transition-speed);
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: all var(--transition-speed);
}

/* ========================================
   ヒーローセクション
======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #E91E63 0%, #C2185B 50%, #880E4F 100%);
    color: var(--bg-white);
    text-align: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.flow-wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 32px;
    color: var(--bg-white);
}

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

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

/* ========================================
   ビジョンセクション
======================================== */
.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.vision-card {
    background-color: var(--bg-white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all var(--transition-speed);
}

.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.vision-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    color: var(--bg-white);
}

.vision-icon i {
    font-size: 36px;
}

.vision-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.vision-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

/* ========================================
   事業概要セクション
======================================== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.about-text p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding: 15px;
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 20px;
}

.feature-item span {
    font-size: 15px;
    color: var(--text-dark);
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.image-placeholder {
    width: 100%;
    height: 500px;
    background-color: var(--bg-white);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    border: 2px dashed var(--border-color);
}

.image-placeholder i {
    font-size: 64px;
    color: var(--border-color);
    margin-bottom: 15px;
}

.image-placeholder p {
    font-size: 16px;
    color: var(--text-light);
    text-align: center;
}

/* ========================================
   対象者セクション
======================================== */
.target-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.target-card {
    background-color: var(--bg-light);
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-speed);
}

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

.target-card.highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--bg-white);
}

.target-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    border-radius: 50%;
    color: var(--bg-white);
}

.target-card.highlight .target-icon {
    background-color: rgba(255, 255, 255, 0.3);
}

.target-icon i {
    font-size: 28px;
}

.target-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.target-card.highlight h3 {
    color: var(--bg-white);
}

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

.target-card ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
    color: var(--text-light);
}

.target-card.highlight ul li {
    color: rgba(255, 255, 255, 0.9);
}

.target-card ul li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.target-card.highlight ul li::before {
    color: var(--bg-white);
}

.emphasis {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.5;
}

/* ========================================
   プログラムセクション
======================================== */
.program-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.program-overview,
.program-special,
.program-conditions {
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.program-overview h3,
.program-special h3,
.program-conditions h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.program-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.detail-item i {
    font-size: 28px;
    color: var(--primary-color);
    margin-top: 5px;
}

.detail-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.detail-item p {
    font-size: 15px;
    color: var(--text-light);
}

.special-card {
    background-color: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
}

.special-card i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.special-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.special-card p {
    font-size: 15px;
    color: var(--text-light);
}

.conditions-box {
    background-color: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.conditions-box i {
    font-size: 32px;
    color: var(--primary-color);
}

.conditions-box p {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 600;
}

.program-note {
    background-color: var(--bg-white);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.program-note p {
    font-size: 15px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.program-note i {
    color: var(--primary-color);
}

/* ========================================
   説明会セクション
======================================== */
.flow-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.flow-step {
    background-color: var(--bg-white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    position: relative;
}

.flow-number {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--bg-white);
    font-size: 14px;
    font-weight: 700;
    border-radius: 20px;
    margin-bottom: 20px;
}

.flow-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-light);
    border-radius: 50%;
    color: var(--primary-color);
}

.flow-icon i {
    font-size: 36px;
}

.flow-step h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.flow-step p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.flow-arrow {
    font-size: 32px;
    color: var(--primary-color);
    flex-shrink: 0;
    display: none;
}

.flow-arrow i {
    animation: flowArrow 1.5s infinite;
}

@keyframes flowArrow {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(10px);
    }
}

.seminar-details {
    margin-bottom: 40px;
}

.seminar-card {
    background-color: var(--bg-white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.seminar-card h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 40px;
}

.seminar-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.seminar-option {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.option-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    color: var(--bg-white);
}

.option-icon i {
    font-size: 32px;
}

.seminar-option h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.seminar-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.seminar-option ul {
    list-style: none;
    text-align: left;
}

.seminar-option ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 15px;
    color: var(--text-dark);
}

.seminar-option ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
}

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

.seminar-note {
    background-color: var(--bg-white);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.seminar-note p {
    font-size: 15px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.seminar-note i {
    color: var(--primary-color);
}

/* ========================================
   料金セクション
======================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: var(--shadow-md);
    text-align: center;
    position: relative;
    transition: all var(--transition-speed);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-badge {
    display: inline-block;
    padding: 8px 20px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-size: 14px;
    font-weight: 700;
    border-radius: 20px;
    margin-bottom: 20px;
}

.pricing-badge.special {
    background-color: var(--accent-color);
}

.pricing-card h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 15px;
}

.currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-light);
    margin-right: 5px;
}

.amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
}

.contact-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.pricing-description {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 30px;
    min-height: 40px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 12px 0;
    font-size: 15px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pricing-features i {
    color: var(--primary-color);
}

.pricing-special {
    margin-bottom: 20px;
}

.special-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.special-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.special-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.special-option .label {
    font-weight: 600;
    color: var(--text-dark);
}

.special-option .price {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
}

.pricing-note {
    background-color: var(--bg-white);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.pricing-note p {
    font-size: 15px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-note i {
    color: var(--primary-color);
}

/* ========================================
   実績セクション
======================================== */
.results-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.stat-card {
    background-color: var(--bg-white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all var(--transition-speed);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    color: var(--bg-white);
}

.stat-icon i {
    font-size: 32px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 600;
}

.results-info {
    margin-bottom: 50px;
}

.info-box {
    background-color: var(--bg-white);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-box i {
    font-size: 24px;
    color: var(--primary-color);
}

.info-box p {
    font-size: 15px;
    color: var(--text-light);
}

/* 卒業生の声 */
.testimonials {
    margin-top: 60px;
}

.testimonials-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 50px;
}

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

.testimonial-card {
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-speed);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.quote-icon {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.author-title {
    font-size: 14px;
    color: var(--text-light);
}

.testimonials-note {
    background-color: var(--bg-white);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.testimonials-note p {
    font-size: 15px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonials-note i {
    color: var(--primary-color);
}

/* ========================================
   ギャラリーセクション
======================================== */
.gallery-section {
    background-color: var(--bg-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: all var(--transition-speed);
    grid-column: span 4;
}

.gallery-item.large {
    grid-column: span 8;
    grid-row: span 2;
}

.gallery-item.featured {
    grid-column: span 8;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 30px 20px;
    transform: translateY(100%);
    transition: transform var(--transition-speed);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-caption {
    color: var(--bg-white);
}

.gallery-caption h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.gallery-caption p {
    font-size: 14px;
    opacity: 0.9;
}

.gallery-note {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.gallery-note p {
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 0;
}

.gallery-note i {
    font-size: 24px;
}

/* ========================================
   運営体制セクション
======================================== */
.organization-main {
    background-color: var(--bg-light);
    padding: 50px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 50px;
    box-shadow: var(--shadow-md);
}

.org-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    color: var(--bg-white);
}

.org-icon i {
    font-size: 42px;
}

.organization-main h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.org-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.org-description {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

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

.support-card {
    background-color: var(--bg-light);
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all var(--transition-speed);
}

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

.support-card i {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.support-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.support-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.leadership-section {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.leadership-section h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.leadership-note {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

/* ========================================
   お問い合わせセクション
======================================== */
.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.contact-form {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.required {
    color: var(--accent-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    font-size: 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-primary);
    transition: all var(--transition-speed);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(196, 153, 109, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-card {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.contact-info-card i {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-info-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.contact-info-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ========================================
   フッター
======================================== */
.footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 60px 0 30px;
}

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

.footer-section h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: color var(--transition-speed);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--bg-white);
    transition: all var(--transition-speed);
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   スクロールトップボタン
======================================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-speed);
    box-shadow: var(--shadow-md);
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   レスポンシブデザイン
======================================== */
@media (max-width: 1024px) {
    .about-content,
    .program-info,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .hero-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 40px 20px;
        transition: left var(--transition-speed);
        box-shadow: var(--shadow-lg);
        gap: 20px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 32px;
    }

    .section-header {
    margin-bottom: 30px;
}
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .vision-grid,
    .target-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
    }
    
    .seminar-options {
        grid-template-columns: 1fr;
    }
    
    .seminar-card {
        padding: 30px 20px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item,
    .gallery-item.large,
    .gallery-item.featured {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 28px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .btn-large {
        padding: 16px 32px;
        font-size: 16px;
    }
    
    .contact-form,
    .organization-main {
        padding: 30px 20px;
    }
}

/* ENTRY FLOW section only - scoped version
   このCSSは .entry-flow-section の内側にだけ適用されます。
   画像は HTML / CSS と同階層の images フォルダに置く想定です。
*/

.entry-flow-section {
  --font-main: "Noto Serif JP", sans-serif;
  --color-main: #da0238;
  --color-base: white;
  --font-sub: "Noto Sans JP", sans-serif;
  --color-txt: #222;
  --color-accent: #ad9360;
  --160: 160%;
  --0-8: 0.8px;
  --transparent: transparent;
  --100: 100%;
  --english: "Cormorant Infant", sans-serif;
  --db023d: #db023d;
  --e50295: #e50295;
  --150: 150%;
  --120: 120%;
  --140: 140%;
}

.entry-flow-section,
.entry-flow-section * {
  box-sizing: border-box;
}

.entry-flow-section .w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.entry-flow-section h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 36px;
}

.entry-flow-section h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}

.entry-flow-section p {
  margin-bottom: 0;
}

.entry-flow-section .main-80px {
  font-family: var(--font-main);
  color: var(--color-main);
  font-size: 80px;
}

.entry-flow-section .main-30px {
  font-family: var(--font-main);
  color: var(--color-main);
  font-size: 30px;
}

.entry-flow-section .main-30px.lh-150.weight-500.mobile-vartical {
  display: none;
}

.entry-flow-section .main-30px.lh-150.weight-500.mobile {
  display: none;
}

.entry-flow-section .main-24px {
  font-family: var(--font-main);
  color: var(--color-main);
  font-size: 24px;
}

.entry-flow-section .main-txt-28px {
  font-family: var(--font-main);
  color: var(--color-txt);
  font-size: 28px;
}

.entry-flow-section .main-txt-24px {
  font-family: var(--font-main);
  color: var(--color-txt);
  font-size: 24px;
}

.entry-flow-section .main-txt-16px {
  font-family: var(--font-main);
  color: var(--color-txt);
  font-size: 16px;
}

.entry-flow-section .main-txt-16px.lh-200.weight-500.mobile {
  display: none;
}

.entry-flow-section .sub-txt-16px {
  font-family: var(--font-sub);
  color: var(--color-txt);
  font-size: 16px;
}

.entry-flow-section .sub-txt-16px.lh-200.weight-400.mobile {
  display: none;
}

.entry-flow-section .lh-150 {
  line-height: 150%;
}

.entry-flow-section .lh-180 {
  line-height: 180%;
}

.entry-flow-section .lh-200 {
  line-height: 200%;
}

.entry-flow-section .weight-400 {
  font-weight: 400;
}

.entry-flow-section .weight-500 {
  font-weight: 500;
}

.entry-flow-section ._1200px-container {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 90%;
  max-width: 1200px;
  margin-left: 0;
  margin-right: 0;
  display: flex;
  position: relative;
}

.entry-flow-section .vertical-2 {
  writing-mode: vertical-rl;
}

.entry-flow-section.flow-section {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
  padding-top: 100px;
}

.entry-flow-section .flow-wrpper {
  grid-column-gap: 4%;
  grid-template-rows: auto;
  grid-template-columns: 1fr 8fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  place-items: flex-start center;
  width: 100%;
  padding-top: 150px;
  padding-bottom: 150px;
  display: flex;
}

.entry-flow-section .flow-left {
  letter-spacing: 12px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 12%;
  display: flex;
}

.entry-flow-section .flow-right {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.entry-flow-section .flow-title {
  letter-spacing: 4px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
}

.entry-flow-section .main-txt-90px {
  font-family: var(--font-main);
  color: var(--color-txt);
  font-size: 90px;
}

.entry-flow-section .main-txt-90px.lh-150.weight-500.mobile {
  display: none;
}

.entry-flow-section .gradient-txt-1 {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(93deg, #966d32 6%, #ecc139 20%);
  -webkit-background-clip: text;
  background-clip: text;
}

.entry-flow-section .elipse-1 {
  z-index: -1;
  object-position: 100% 50%;
  width: 188px;
  height: 188px;
  position: absolute;
  top: -22px;
  left: -40px;
}

.entry-flow-section .flow-grid {
  grid-row-gap: 100px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: 76px;
  padding-left: 2%;
  display: flex;
}

.entry-flow-section .flow-card {
  background-image: url("../images/flow_card_bg_1.webp");
  background-position: 0 0;
  background-size: cover;
  justify-content: flex-end;
  align-items: stretch;
  width: 100%;
  min-height: 300px;
  padding: 60px 80px 92px 48px;
  display: flex;
  position: relative;
}

.entry-flow-section .flow-card.mobile {
  display: none;
}

.entry-flow-section .image-6 {
  aspect-ratio: 1;
  width: 100%;
  position: absolute;
}

.entry-flow-section .flow-card-right {
  grid-row-gap: 24px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 60%;
  display: flex;
  position: relative;
}

.entry-flow-section .flow-card-title {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.entry-flow-section .flow-card-top-title {
  white-space: nowrap;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: -144px;
}

.entry-flow-section .flow-card-left {
  aspect-ratio: 1;
  justify-content: center;
  align-items: center;
  width: 28%;
  max-width: 300px;
  display: flex;
  position: absolute;
  top: -48px;
  left: 48px;
}

.entry-flow-section .image-7 {
  aspect-ratio: 2;
  width: 90px;
  position: absolute;
  bottom: -28px;
  left: 14%;
}

.entry-flow-section .flow-bg-1 {
  z-index: -1;
  width: 32%;
  min-width: 320px;
  max-width: 480px;
  position: absolute;
  top: 0;
  right: 0;
}

.entry-flow-section .flow-bg-2 {
  z-index: -1;
  width: 32%;
  min-width: 320px;
  max-width: 440px;
  position: absolute;
  bottom: 0;
  left: 0;
}

@media screen and (max-width: 991px) {
  .entry-flow-section .w-layout-blockcontainer {
    max-width: 728px;
  }

  .entry-flow-section .main-80px {
    font-size: 64px;
  }

  .entry-flow-section .main-30px {
    font-size: 28px;
  }

  .entry-flow-section .main-24px {
    letter-spacing: -1px;
    font-size: 20px;
  }

  .entry-flow-section .main-txt-28px {
    font-size: 22px;
  }

  .entry-flow-section .main-txt-28px.lh-200 {
    line-height: 180%;
  }

  .entry-flow-section .main-txt-24px {
    font-size: 20px;
  }

  .entry-flow-section .main-txt-16px {
    letter-spacing: -1px;
    font-size: 14px;
  }

  .entry-flow-section .sub-txt-16px {
    letter-spacing: -1px;
    font-size: 14px;
  }

  .entry-flow-section .sub-txt-16px.lh-200 {
    line-height: 180%;
  }

  .entry-flow-section .flow-wrpper {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .entry-flow-section .gradient-txt-1 {
    font-size: 60px;
  }

  .entry-flow-section .elipse-1 {
    width: 144px;
    height: 144px;
    top: 8px;
  }

  .entry-flow-section .flow-card {
    padding: 50px 50px 60px 40px;
  }

  .entry-flow-section .flow-card-right {
    width: 62%;
  }

  .entry-flow-section .flow-card-top-title {
    top: -115px;
  }

  .entry-flow-section .flow-card-left {
    top: -40px;
    left: 40px;
  }

  .entry-flow-section .image-7 {
    width: 80px;
  }
}

@media screen and (max-width: 767px) {
  .entry-flow-section .w-layout-blockcontainer {
    max-width: none;
  }

  .entry-flow-section .main-80px {
    font-size: 50px;
  }

  .entry-flow-section.flow-section {
  padding-top: 60px;
}

  .entry-flow-section .main-80px.lh-150.weight-400.vertical-2.mobile-none {
    display: none;
  }

  .entry-flow-section .main-80px.lh-150.weight-500 {
    font-size: 40px;
  }

  .entry-flow-section .main-30px {
    font-size: 24px;
  }

  .entry-flow-section .main-30px.lh-150.weight-500.mobile-vartical {
    letter-spacing: 6px;
    writing-mode: vertical-rl;
    font-size: 15px;
    display: block;
  }

  .entry-flow-section .main-30px.lh-150.weight-500.mobile {
    font-size: 30px;
    font-weight: 300;
    display: block;
  }

  .entry-flow-section .main-24px {
    letter-spacing: 0;
    font-size: 18px;
  }

  .entry-flow-section .main-txt-28px {
    letter-spacing: -1px;
    font-size: 20px;
  }

  .entry-flow-section .main-txt-28px.lh-200.weight-500 {
    letter-spacing: 1px;
  }

  .entry-flow-section .main-txt-28px.flow {
    letter-spacing: 4px;
  }

  .entry-flow-section .main-txt-16px.lh-200.weight-500.mobile {
    display: block;
  }

  .entry-flow-section .main-txt-16px.lh-200.weight-500.mobile-none {
    display: none;
  }

  .entry-flow-section .sub-txt-16px {
    font-size: 14px;
  }

  .entry-flow-section .sub-txt-16px.lh-200.weight-400 {
    letter-spacing: 0;
  }

  .entry-flow-section .sub-txt-16px.lh-200.weight-400.mobile-none {
    display: none;
  }

  .entry-flow-section .sub-txt-16px.lh-200.weight-400.mobile {
    display: block;
  }

  .entry-flow-section .vertical-2 {
    letter-spacing: 5px;
    line-height: 0%;
  }

  .entry-flow-section .flow-wrpper {
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
  }

  .entry-flow-section .flow-left {
    position: absolute;
    top: 270px;
    left: 0;
  }

  .entry-flow-section .flow-right {
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
  }

  .entry-flow-section .main-txt-90px.lh-150.weight-500 {
    letter-spacing: 0;
  }

  .entry-flow-section .main-txt-90px.lh-150.weight-500.mobile-none {
    display: none;
  }

  .entry-flow-section .main-txt-90px.lh-150.weight-500.mobile {
    display: block;
  }

  .entry-flow-section .gradient-txt-1 {
    font-size: 70px;
  }

  .entry-flow-section .elipse-1 {
    width: 170px;
    height: 170px;
    top: -10px;
    left: -20px;
  }

  .entry-flow-section .flow-card {
    display: none;
  }

  .entry-flow-section .flow-card.mobile {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    max-width: 543px;
    margin-top: 100px;
    padding: 220px 0 0;
    display: flex;
  }

  .entry-flow-section .flow-card-right {
    width: 80%;
    top: -50px;
  }

  .entry-flow-section .flow-card-top-title {
    z-index: 1;
    position: relative;
    top: -387px;
  }

  .entry-flow-section .flow-card-left {
    width: 100%;
    max-width: 350px;
    position: absolute;
    top: -117px;
    left: auto;
  }

  .entry-flow-section .image-7 {
    left: auto;
  }

  .entry-flow-section .flow-bg-1 {
    display: none;
  }

  .entry-flow-section .flow-bg-2 {
    display: none;
  }
}

@media screen and (max-width: 479px) {
  .entry-flow-section .main-80px {
    font-size: 40px;
  }

  .entry-flow-section .main-30px {
    font-size: 20px;
  }

  .entry-flow-section .main-30px.lh-150.weight-500.mobile {
    letter-spacing: 8px;
    font-size: 20px;
  }

  .entry-flow-section .main-txt-28px {
    font-size: 18px;
  }

  .entry-flow-section .main-txt-28px.flow {
    letter-spacing: 2px;
    font-size: 16px;
  }

  .entry-flow-section .main-txt-24px {
    font-size: 18px;
  }

  .entry-flow-section .main-txt-16px {
    font-size: 12px;
  }

  .entry-flow-section .main-txt-16px.lh-200.weight-500 {
    font-size: 13px;
  }

  .entry-flow-section .sub-txt-16px.lh-200.weight-400.mobile-none {
    display: none;
  }

  .entry-flow-section .flow-left {
    z-index: 8;
    top: 233px;
    left: -6px;
  }

  .entry-flow-section .main-txt-90px.lh-150.weight-500.mobile-none {
    display: none;
  }

  .entry-flow-section .gradient-txt-1 {
    font-size: 50px;
  }

  .entry-flow-section .elipse-1 {
    width: 100px;
    height: 100px;
    top: 35px;
    left: -6px;
  }

  .entry-flow-section .flow-card.mobile {
    padding-top: 140px;
  }

  .entry-flow-section .flow-card-right {
    width: 90%;
  }

  .entry-flow-section .flow-card-top-title {
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--color-base);
    paint-order: stroke;
    top: -300px;
  }

  .entry-flow-section .flow-card-top-title._1 {
    top: -308px;
  }

  .entry-flow-section .flow-card-left {
    max-width: 260px;
  }
}