@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700&family=Playfair+Display:wght@300;400;500;600&display=swap');

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

body {
    font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.8;
    color: #2c2c2c;
    background-color: #fefefe;
    overflow-x: hidden;
    font-size: 16px;
    font-weight: 400;
}

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

/* ヒーローセクション */
.hero-section {
    min-height: 100vh;
    padding-top: 100px;
    background: linear-gradient(180deg, #5A3622 0%, #8B6914 30%, #D2B48C 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 50%);
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    position: relative;
}

.hero-subtitle {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: #fff;
}

.hero-main-text {
    font-size: 2.8rem;
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.hero-sub-text {
    font-size: 2.2rem;
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.hero-english {
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 3rem;
    opacity: 0.8;
    text-transform: uppercase;
}

.hero-description {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 300;
}

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

.section-cream {
    background-color: #F5F3F0;
}

.section-white {
    background-color: #fff;
}

.section-bg-text {
    position: absolute;
    right: -50px;
    bottom: -30px;
    font-size: 12rem;
    font-weight: 100;
    color: rgba(139, 105, 20, 0.05);
    font-family: 'Playfair Display', serif;
    z-index: 1;
    user-select: none;
    pointer-events: none;
}

.section-header {
    text-align: left;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.section-subtitle {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #8B6914;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 300;
    color: #2c2c2c;
    letter-spacing: 2px;
    line-height: 1.3;
}

/* About セクション - 修正版 */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.about-text-wrapper {
    padding-top: 60px;
}

.about-text {
    font-size: 1.3rem;
    line-height: 2.2;
    color: #555;
    font-weight: 300;
    margin-bottom: 40px;
}

.about-note {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #888;
    font-weight: 300;
    border-left: 3px solid #8B6914;
    padding-left: 20px;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 0;
    filter: sepia(10%) saturate(80%);
    display: block;
}

/* サービス一覧 - 修正版 */
.services-content {
    position: relative;
    z-index: 2;
}

.services-grid {
    display: grid;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-item {
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}

.service-content {
    padding: 60px;
}

.service-number {
    font-size: 0.8rem;
    font-weight: 600;
    color: #8B6914;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.service-title-ja {
    font-size: 2rem;
    font-weight: 300;
    color: #2c2c2c;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.service-title-en {
    font-size: 0.9rem;
    font-weight: 300;
    color: #8B6914;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.service-description {
    font-size: 1rem;
    line-height: 2;
    color: #666;
    font-weight: 300;
    margin-bottom: 2rem;
}

.service-note {
    background: #F5F3F0;
    padding: 20px;
    border-left: 3px solid #8B6914;
    font-size: 0.9rem;
    color: #777;
    font-weight: 300;
}

.service-feature {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #f0f0f0;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 500;
    color: #8B6914;
    margin-bottom: 1rem;
}

.feature-description {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #666;
    font-weight: 300;
}

/* 強みセクション */
.strengths-content {
    position: relative;
    z-index: 2;
}

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

.strength-item {
    background: #fff;
    padding: 60px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.06);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid #f5f5f5;
}

.strength-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0,0,0,0.12);
}

.strength-icon {
    margin-bottom: 40px;
}

.strength-icon-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 25px;
    display: block;
    filter: sepia(10%) saturate(80%);
}

.strength-label {
    display: inline-block;
    background: #8B6914;
    color: white;
    padding: 8px 20px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.strength-title {
    font-size: 1.6rem;
    font-weight: 300;
    color: #2c2c2c;
    margin: 40px 0 30px 0;
    line-height: 1.4;
}

.strength-list {
    list-style: none;
    text-align: left;
    margin: 0;
}

.strength-list li {
    padding: 15px 0;
    position: relative;
    padding-left: 30px;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #666;
    font-weight: 300;
}

.strength-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    top: 15px;
    color: #8B6914;
    font-weight: 300;
}

/* 参加の流れ */
.flow-content {
    position: relative;
    z-index: 2;
}

.flow-steps {
    display: grid;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.flow-step {
    display: flex;
    gap: 40px;
    align-items: center;
    background: linear-gradient(135deg, #fff 0%, #FEFCFA 100%);
    padding: 50px;
    box-shadow: 0 15px 50px rgba(139, 105, 20, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 105, 20, 0.05);
    position: relative;
}

.flow-step::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(135deg, #8B6914 0%, #D4AF37 50%, #F4D03F 100%);
}

.flow-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(139, 105, 20, 0.12);
    background: linear-gradient(135deg, #FEFCFA 0%, #F8F6F3 100%);
}

.step-number {
    width: 80px;
    height: 80px;
    background: #8B6914;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 300;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 300;
    color: #2c2c2c;
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
}

.step-description {
    color: #666;
    line-height: 1.8;
    font-weight: 300;
}

/* 料金セクション */
.price-wrapper {
    position: relative;
    z-index: 2;
}

.price-intro {
    max-width: 800px;
    margin: 0 auto 80px;
    text-align: center;
}

.price-intro-text {
    font-size: 1.2rem;
    line-height: 2.2;
    color: #666;
    font-weight: 300;
    background: #fff;
    padding: 50px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.06);
    border-left: 4px solid #8B6914;
}

.price-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.price-card {
    background: #fff;
    padding: 0;
    box-shadow: 0 25px 80px rgba(0,0,0,0.12);
    overflow: hidden;
    position: relative;
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(135deg, #8B6914 0%, #D4AF37 100%);
}

.price-header {
    background: linear-gradient(135deg, #f8f6f3 0%, #f0ede8 100%);
    padding: 50px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.price-badge {
    display: inline-block;
    background: #8B6914;
    color: white;
    padding: 8px 25px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.price-title {
    font-size: 1.8rem;
    font-weight: 300;
    color: #2c2c2c;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.price-display {
    margin-bottom: 20px;
}

.price-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.price-original {
    text-decoration: line-through;
    color: #999;
    font-size: 1.2rem;
    font-weight: 300;
}

.price-arrow {
    color: #8B6914;
    font-weight: 400;
    font-size: 1.1rem;
}

.price-current {
    color: #8B6914;
    font-size: 2.8rem;
    font-weight: 300;
    line-height: 1;
}

.price-unit {
    color: #666;
    font-size: 0.9rem;
    font-weight: 300;
    margin-left: 8px;
}

.price-note {
    font-size: 0.85rem;
    color: #888;
    font-weight: 300;
}

.price-body {
    padding: 50px;
}

.price-benefits {
    margin: 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px 0;
    border-bottom: 1px solid #f8f8f8;
}

.benefit-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.benefit-icon {
    width: 20px;
    height: 20px;
    background: #8B6914;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    margin-top: 2px;
}

.benefit-icon::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 10px;
}

.benefit-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    font-weight: 300;
}

/* 運営体制セクション */
.organizers-wrapper {
    position: relative;
    z-index: 2;
}

.organizer-hero {
    max-width: 800px;
    margin: 0 auto 100px;
    text-align: center;
}

.organizer-hero-text {
    font-size: 1.2rem;
    line-height: 2.2;
    color: #666;
    font-weight: 300;
    background: #fff;
    padding: 50px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.06);
    border-left: 4px solid #8B6914;
}

.organizers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 100px;
    margin-bottom: 120px;
}

.organizer-card {
    background: #fff;
    box-shadow: 0 25px 80px rgba(0,0,0,0.12);
    overflow: hidden;
    position: relative;
}

.organizer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(135deg, #8B6914 0%, #D4AF37 100%);
}

.organizer-content {
    display: flex;
    align-items: stretch;
    gap: 20px;
}

.organizer-photo-section {
    background: linear-gradient(135deg, #f8f6f3 0%, #f0ede8 100%);
    padding: 60px;
    text-align: center;
    border-right: 1px solid #f0f0f0;
    flex-shrink: 0;
    width: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.organizer-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 30px;
    overflow: hidden;
    background: #8B6914;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

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

.organizer-title {
    color: #8B6914;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.organizer-name {
    font-size: 1.8rem;
    font-weight: 300;
    color: #2c2c2c;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.organizer-text-section {
    padding: 60px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}

.organizer-quote {
    font-size: 1.4rem;
    font-weight: 300;
    color: #2c2c2c;
    line-height: 1.8;
    margin-bottom: 40px;
    font-style: italic;
    position: relative;
    padding-left: 30px;
}

.organizer-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: #8B6914;
    opacity: 0.3;
    font-family: 'Playfair Display', serif;
}

.organizer-bio {
    font-size: 0.95rem;
    line-height: 2;
    color: #666;
    font-weight: 300;
}

/* 執行役員セクション */
.executives-section {
    border-top: 2px solid #f0f0f0;
    padding-top: 100px;
}

.executives-title {
    text-align: center;
    margin-bottom: 80px;
}

.executives-title h3 {
    font-size: 2.2rem;
    font-weight: 300;
    color: #2c2c2c;
    letter-spacing: 2px;
}

.executives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.executive-card {
    background: #fff;
    padding: 0;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
}

.executive-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #8B6914 0%, #D4AF37 100%);
}

.executive-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}

.executive-header {
    background: linear-gradient(135deg, #f8f6f3 0%, #f0ede8 100%);
    padding: 40px;
    border-bottom: 1px solid #f0f0f0;
}

.executive-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 25px;
    overflow: hidden;
    background: #8B6914;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.executive-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.executive-body {
    padding: 30px 40px 40px;
}

.executive-name {
    font-size: 1.3rem;
    font-weight: 300;
    color: #2c2c2c;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.executive-position {
    font-size: 0.9rem;
    color: #8B6914;
    font-weight: 400;
    letter-spacing: 1px;
}

/* 活動実績 */
.achievements-intro {
    max-width: 800px;
    margin: 0 auto 100px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.achievements-intro-text {
    background: #fff;
    padding: 50px;
    font-size: 1.2rem;
    line-height: 2.2;
    color: #666;
    box-shadow: 0 15px 50px rgba(0,0,0,0.06);
    font-weight: 300;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.achievement-item {
    background: #fff;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.achievement-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.achievement-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    filter: sepia(5%) saturate(90%);
}

.achievement-caption {
    padding: 40px;
    text-align: center;
}

.achievement-title {
    font-size: 1.4rem;
    font-weight: 300;
    color: #2c2c2c;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.achievement-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.8;
    font-weight: 300;
}

/* 参加者の声 */
.voice-content {
    position: relative;
    z-index: 2;
}

.voice-intro {
    text-align: center;
    margin-bottom: 100px;
    position: relative;
    z-index: 2;
}

.voice-intro-image {
    width: 100%;
    max-width: 700px;
    height: 250px;
    object-fit: cover;
    margin: 0 auto 50px;
    display: block;
    filter: sepia(5%) saturate(90%);
}

.voice-intro-text {
    background: #fff;
    padding: 40px;
    font-size: 1.2rem;
    line-height: 2.2;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 15px 50px rgba(0,0,0,0.06);
    font-weight: 300;
}

.voice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
    position: relative;
    z-index: 2;
}

.voice-item {
    background: #fff;
    padding: 50px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    position: relative;
}

.voice-item::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 6rem;
    color: rgba(139, 105, 20, 0.1);
    line-height: 1;
    font-family: 'Playfair Display', serif;
    font-weight: 300;
}

.voice-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.voice-text {
    font-size: 1rem;
    line-height: 2;
    color: #666;
    margin-bottom: 30px;
    font-style: italic;
    font-weight: 300;
}

.voice-author {
    font-size: 0.9rem;
    color: #8B6914;
    font-weight: 400;
    text-align: right;
    letter-spacing: 1px;
}

/* 参加者の業種 */
.participants-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 100px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.participants-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    filter: sepia(5%) saturate(90%);
}

.participants-list {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: flex-start;
}

.participant-item {
    background: #8B6914;
    color: white;
    padding: 18px 35px;
    font-size: 0.95rem;
    font-weight: 300;
    white-space: nowrap;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.participant-item:hover {
    background: #6B4423;
    transform: translateY(-3px);
}

/* FAQ */
.faq-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-list {
    margin: 0;
}

.faq-item {
    margin-bottom: 40px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.06);
}

.faq-question {
    background: #8B6914;
    padding: 30px;
    color: white;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 400;
    color: white;
    letter-spacing: 1px;
    line-height: 1.6;
}

.faq-answer {
    padding: 30px;
}

.faq-answer p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    font-weight: 400;
}

.faq-answer p:not(:last-child) {
    margin-bottom: 18px;
}

.faq-policy {
    background: #F5F3F0;
    padding: 18px 25px;
    border-left: 3px solid #8B6914;
    margin: 12px 0 !important;
    font-size: 1rem;
}

/* CTA */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #5A3622 0%, #8B6914 30%, #D2B48C 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(255,255,255,0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255,255,255,0.05) 0%, transparent 50%);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3.2rem;
    font-weight: 300;
    color: #fff;
    margin: 0 0 60px 0;
    line-height: 1.4;
    letter-spacing: 2px;
}

.cta-buttons {
    display: flex;
    gap: 50px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 25px 60px;
    font-weight: 300;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.4s ease;
    white-space: nowrap;
    min-width: 300px;
    justify-content: center;
    letter-spacing: 1px;
}

.cta-btn.primary {
    background: linear-gradient(135deg, #06c755 0%, #05a747 100%);
    color: white;
    box-shadow: 0 15px 50px rgba(6, 199, 85, 0.3);
}

.cta-btn.primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 25px 70px rgba(6, 199, 85, 0.4);
    color: white;
}

.cta-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 25px 70px rgba(255, 255, 255, 0.2);
}

/* レスポンシブ対応 - タブレット */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .section-bg-text {
        font-size: 10rem;
        right: -40px;
        bottom: -25px;
    }
    
    .about-content {
        gap: 80px;
    }
    
    .organizer-content {
        flex-direction: column;
    }
    
    .organizer-photo-section {
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
        width: auto;
    }
    
    .price-content {
        gap: 60px;
    }
}

/* レスポンシブ対応 - スマホ (768px以下) */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-main-text {
        font-size: 2.2rem;
    }
    
    .hero-sub-text {
        font-size: 1.8rem;
    }
    
    .hero-description {
        padding: 1.5rem;
        font-size: 0.95rem;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
        text-align: center;
    }
    
    .section-header {
        text-align: center;
        margin-bottom: 60px;
    }
    
    .section-bg-text {
        font-size: 8rem;
        right: -30px;
        bottom: -20px;
    }
    
    /* About Us - 完全縦表示 */
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .about-text-wrapper {
        padding-top: 0;
        order: 2;
    }
    
    .about-image-wrapper {
        order: 1;
    }
    
    .about-image {
        height: 300px;
        border-radius: 15px;
    }
    
    .about-text {
        font-size: 1.1rem;
        padding: 40px;
        text-align: left;
    }
    
    /* Services - 完全縦表示 */
    .service-content {
        padding: 40px 30px;
    }
    
    .service-title-ja {
        font-size: 1.6rem;
    }
    
    .service-description {
        font-size: 0.95rem;
        line-height: 1.8;
    }
    
    /* Strengths - 1列表示 */
    .strengths-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .strength-item {
        padding: 40px 30px;
    }
    
    .strength-icon-image {
        width: 100px;
        height: 100px;
    }
    
    .strength-title {
        font-size: 1.4rem;
    }
    
    /* Flow - 縦表示 */
    .flow-step {
        flex-direction: column;
        text-align: center;
        padding: 30px;
        gap: 20px;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }
    
    .step-title {
        font-size: 1.3rem;
    }
    
    /* Price - 完全縦表示 */
    .price-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .price-intro {
        margin-bottom: 50px;
    }
    
    .price-intro-text {
        padding: 30px;
        font-size: 1rem;
    }
    
    .price-card {
        margin-bottom: 30px;
    }
    
    .price-header {
        padding: 30px;
    }
    
    .price-title {
        font-size: 1.5rem;
    }
    
    .price-current {
        font-size: 2.2rem;
    }
    
    .price-body {
        padding: 30px;
    }
    
    .price-line {
        justify-content: center;
        text-align: center;
    }
    
    /* Organizers - 完全縦表示 */
    .organizer-content {
        flex-direction: column;
    }
    
    .organizer-photo-section {
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
        padding: 40px;
        width: auto;
    }
    
    .organizer-text-section {
        padding: 40px;
    }
    
    .organizer-quote {
        font-size: 1.2rem;
        padding-left: 25px;
    }
    
    .organizer-bio {
        font-size: 0.9rem;
        line-height: 1.8;
    }
    
    .organizers-grid {
        gap: 50px;
    }
    
    /* Staff Interview - 1列表示 */
    .executives-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .executive-header {
        padding: 30px;
    }
    
    .executive-photo {
        width: 100px;
        height: 100px;
    }
    
    .executive-body {
        padding: 25px 30px 30px;
    }
    
    /* Achievements */
    .achievements-intro-text {
        padding: 30px;
        font-size: 1rem;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .achievement-image {
        height: 200px;
        border-radius: 15px 15px 0 0;
    }
    
    .achievement-caption {
        padding: 25px;
    }
    
    /* Participants */
    .participants-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .participants-image {
        height: 200px;
        border-radius: 15px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .participants-list {
        justify-content: center;
        gap: 15px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .participant-item {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    /* Voice */
    .voice-intro-image {
        height: 200px;
        border-radius: 15px;
        margin-bottom: 30px;
    }
    
    .voice-intro-text {
        padding: 30px;
        font-size: 1rem;
    }
    
    .voice-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .voice-item {
        padding: 30px;
        border-radius: 15px;
    }
    
    /* FAQ */
    .faq-item {
        margin-bottom: 25px;
        border-radius: 15px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-answer {
        padding: 20px;
    }
    
    /* CTA */
    .cta-title {
        font-size: 2.4rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 25px;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
        padding: 18px 40px;
    }
}

/* スマホ小画面 (480px以下) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-main-text {
        font-size: 1.8rem;
    }
    
    .hero-sub-text {
        font-size: 1.4rem;
    }
    
    .hero-english {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }
    
    .hero-description {
        padding: 1.2rem;
        font-size: 0.9rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .section-bg-text {
        font-size: 6rem;
        right: -20px;
        bottom: -15px;
    }
    
    /* About */
    .about-text {
        font-size: 1rem;
        padding: 25px;
        line-height: 1.8;
    }
    
    .about-note {
        font-size: 0.85rem;
        padding-left: 15px;
    }
    
    .about-image {
        height: 250px;
    }
    
    /* Services */
    .service-content {
        padding: 25px 20px;
    }
    
    .service-title-ja {
        font-size: 1.4rem;
    }
    
    .service-title-en {
        font-size: 0.8rem;
        letter-spacing: 3px;
    }
    
    .service-description {
        font-size: 0.9rem;
    }
    
    .service-note {
        padding: 15px;
        font-size: 0.85rem;
    }
    
    /* Strengths */
    .strength-item {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .strength-header {
        padding: 25px 20px;
    }
    
    .strength-number {
        font-size: 2rem;
        top: 15px;
        right: 20px;
    }
    
    .strength-title {
        font-size: 1.2rem;
    }
    
    .strength-body {
        padding: 30px 20px;
    }
    
    .strength-list li {
        font-size: 0.85rem;
        padding: 12px 0;
        padding-left: 30px;
    }
    
    /* Flow */
    .flow-step {
        padding: 25px 20px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .step-title {
        font-size: 1.1rem;
    }
    
    .step-description {
        font-size: 0.9rem;
    }
    
    /* Price */
    .price-intro-text {
        padding: 25px;
        font-size: 0.95rem;
    }
    
    .price-header {
        padding: 25px;
    }
    
    .price-title {
        font-size: 1.3rem;
    }
    
    .price-current {
        font-size: 2rem;
    }
    
    .price-body {
        padding: 25px;
    }
    
    .benefit-text {
        font-size: 0.85rem;
    }
    
    /* Organizers - スマホ小画面対応 */
    .organizer-photo-section {
        padding: 30px 20px;
        width: 100%;
    }
    
    .organizer-photo {
        width: 120px;
        height: 120px;
        margin: 0 auto 20px;
    }
    
    .organizer-name {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .organizer-text-section {
        padding: 30px 20px;
    }
    
    .organizer-quote {
        font-size: 1.1rem;
        padding-left: 20px;
        margin-bottom: 30px;
    }
    
    .organizer-bio {
        font-size: 0.85rem;
        line-height: 1.7;
    }
    
    /* CTA */
    .cta-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .cta-btn {
        max-width: 280px;
        padding: 15px 30px;
        font-size: 1rem;
    }
}

/* ========================================
   スマホ横ブレ完全修正版
   ======================================== */

@media (max-width: 768px) {
    /* 全要素の基本設定 */
    html {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }
    
    body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }
    
    /* WordPressの基本構造 */
    #page,
    .site,
    .site-content,
    .site-main,
    main {
        overflow-x: hidden !important;
        max-width: 100vw !important;
        width: 100% !important;
    }
    
    /* すべてのセクション */
    section,
    .section {
        overflow-x: hidden !important;
        max-width: 100vw !important;
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    /* コンテナ */
    .container {
        overflow-x: hidden !important;
        max-width: 100% !important;
        width: 100% !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        box-sizing: border-box !important;
    }
    
    /* HTMLの<br>タグを無効化（スマホでは不要な改行が横ブレの原因） */
    br {
        display: none !important;
    }
    
    /* ただし、mobile-break クラスのbrは表示 */
    .mobile-break br,
    span.mobile-break::before {
        display: block !important;
    }
    
    /* テキストの折り返し */
    p, h1, h2, h3, h4, h5, h6, span, div, li {
        overflow-wrap: break-word !important;
        word-wrap: break-word !important;
        word-break: break-word !important;
        max-width: 100% !important;
    }
    
    /* 運営理事の経歴テキスト（横ブレの主な原因） */
    .profile-section p,
    .organizer-bio p {
        max-width: 100% !important;
        overflow-wrap: break-word !important;
        word-wrap: break-word !important;
    }
    
    /* 背景装飾テキスト削除 */
    .section-bg-text {
        display: none !important;
    }
}