/* ===================================
   CSS Variables
   =================================== */
:root {
    --navy: #1a1a2e;
    --gold: #d4af37;
    --gold-light: #e6c968;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --gray: #666666;
    --gray-dark: #333333;
    
    --font-primary: 'Noto Sans JP', sans-serif;
    --font-secondary: 'Noto Serif JP', serif;
    
    --transition: all 0.3s ease;
}

/* ===================================
   Reset & Base Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 1.1rem;
}

body {
    font-family: var(--font-primary);
    color: var(--gray-dark);
    line-height: 1.8;
    background-color: var(--white);
}

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

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

ul {
    list-style: none;
}

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

/* ===================================
   Section Title
   =================================== */
.section-title {
    font-size: 2.8rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    color: var(--navy);
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 2px;
}

/* ===================================
   Buttons
   =================================== */
.btn-primary,
.btn-secondary,
.btn-header,
.btn-contact {
    display: inline-block;
    padding: 20px 45px;
    border-radius: 50px;
    font-weight: 700;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 1.2rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--navy);
}

.btn-header {
    background: var(--gold);
    color: var(--navy);
    padding: 15px 35px;
    font-size: 1.1rem;
}

.btn-header:hover {
    background: var(--gold-light);
}

.btn-contact {
    width: 100%;
    background: var(--navy);
    color: var(--white);
    margin-bottom: 15px;
}

.btn-contact:hover {
    background: var(--gold);
    color: var(--navy);
}

.btn-contact i {
    margin-right: 10px;
}

/* ===================================
   Header
   =================================== */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo h1 {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 5px;
}

.anniversary {
    font-size: 1.1rem;
    color: var(--gold);
    font-weight: 700;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(26, 26, 46, 0.7)),
                url('https://images.unsplash.com/photo-1566073771259-6a8506099945?w=1600&q=80') center/cover;
    color: var(--white);
    padding: 100px 0 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent, rgba(26, 26, 46, 0.5));
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: left;
    max-width: 900px;
    margin: 0;
}

.hero-label {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    padding: 10px 28px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 40px;
    color: var(--white);
    line-height: 1.8;
}

.hero-info {
    display: flex;
    justify-content: flex-start;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.hero-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.hero-info-item i {
    font-size: 1.8rem;
    color: var(--gold);
}

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

/* ===================================
   Why Section
   =================================== */
.why-section {
    padding: 100px 0;
    background: var(--gray-light);
}

.why-intro {
    max-width: 900px;
    margin: 0 auto 60px;
}

.intro-emphasis {
    text-align: left;
    margin-bottom: 30px;
}

.emphasis-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.8;
    margin-bottom: 10px;
}

.why-question {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
    text-align: left;
    margin: 30px 0;
}

.excuse-list {
    background: var(--white);
    padding: 30px 40px;
    border-radius: 15px;
    margin: 30px 0;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

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

.excuse-list li {
    font-size: 1.3rem;
    line-height: 2;
    color: var(--gray-dark);
    padding: 8px 0 8px 30px;
    position: relative;
}

.excuse-list li::before {
    content: '•';
    position: absolute;
    left: 10px;
    color: var(--gold);
    font-size: 1.5rem;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--gray-dark);
    text-align: left;
    margin: 25px 0;
}

.or-divider {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    margin: 40px 0;
    position: relative;
}

.or-divider::before,
.or-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 35%;
    height: 2px;
    background: var(--gold);
}

.or-divider::before {
    left: 0;
}

.or-divider::after {
    right: 0;
}

.important-message {
    background: linear-gradient(135deg, #fff9e6, #fffbf0);
    border: 3px solid var(--gold);
    border-radius: 15px;
    padding: 30px;
    margin: 40px 0;
    text-align: left;
}

.message-heading {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 15px;
}

.message-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--gray-dark);
}

.message-text strong {
    color: var(--navy);
    font-weight: 900;
    font-size: 1.4rem;
}

.executive-principle {
    background: var(--white);
    border-left: 5px solid var(--gold);
    padding: 30px;
    margin: 30px 0;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.principle-text {
    font-size: 1.2rem;
    line-height: 2;
    color: var(--gray-dark);
    text-align: left;
}

.principle-text strong {
    color: var(--navy);
    font-weight: 700;
    font-size: 1.25rem;
}

.risk-alert {
    background: linear-gradient(135deg, var(--navy), #2a2a3e);
    padding: 40px;
    border-radius: 15px;
    margin: 40px 0;
    text-align: left;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.alert-text {
    font-size: 1.5rem;
    line-height: 2;
    color: var(--white);
}

.alert-text strong {
    color: var(--gold);
    font-weight: 900;
}

.case-intro {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    text-align: center;
    margin: 30px 0 10px;
}

.case-intro-sub {
    font-size: 1.1rem;
    color: var(--gray-dark);
    text-align: center;
    margin-bottom: 40px;
}

.why-intro-text {
    font-size: 1.3rem;
    line-height: 2;
    color: var(--gray-dark);
    max-width: 800px;
    margin: 0 auto;
}

.why-cases {
    display: grid;
    gap: 40px;
    margin-bottom: 80px;
}

.case-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--gold);
}

.case-number {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.case-title {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 25px;
}

.case-content p {
    margin-bottom: 20px;
    line-height: 1.9;
    font-size: 1.05rem;
}

.case-situation {
    padding: 20px;
    background: #f0f8ff;
    border-radius: 10px;
    border-left: 4px solid #4a90e2;
}

.case-problem {
    padding: 20px;
    background: #fff5f5;
    border-radius: 10px;
    border-left: 4px solid #e74c3c;
}

.case-result {
    padding: 20px;
    background: #f0f0f0;
    border-radius: 10px;
    border-left: 4px solid var(--gray);
}

.case-content strong {
    color: var(--navy);
    font-weight: 700;
}

.why-stats {
    background: linear-gradient(135deg, var(--navy), #2a2a3e);
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 60px;
}

.stats-title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 50px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 15px;
}

.stat-label {
    font-size: 1rem;
    color: var(--white);
    line-height: 1.6;
    text-align: left;
}

.why-solution {
    background: var(--white);
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 60px;
}

.solution-title {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--navy);
    text-align: left;
    margin-bottom: 10px;
}

.solution-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-width: 1000px;
    margin: 0 auto;
}

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

.benefit-item i {
    font-size: 1.2rem;
    color: var(--gold);
    margin-top: 5px;
}

.benefit-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    
}

.benefit-item p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray);
}

/* Price Question Section */
.price-question {
    text-align: left;
    padding: 60px 40px;
    background: linear-gradient(135deg, #fff9e6, #fffbf0);
    border-radius: 20px;
    margin: 60px 0 40px;
}

.price-question-title {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 15px;
    line-height: 1.6;
    text-align: left;
}

.price-question-text {
    font-size: 1.3rem;
    color: var(--gray-dark);
    text-align: left;
}

/* Center Service Section */
.center-service {
    margin: 60px 0;
}

.service-title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--navy);
    text-align: center;
    margin-bottom: 30px;
}

.service-text {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--gray-dark);
    text-align: left;
    max-width: 900px;
    margin: 0 auto 40px;
}

.normal-price-box {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    border: 3px solid var(--gold);
    max-width: 800px;
    margin: 0 auto;
}

.normal-price-box h4 {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 25px;
    text-align: center;
}

.base-price {
    font-size: 1.3rem;
    color: var(--gray-dark);
    text-align: center;
    margin-bottom: 20px;
}

.price-large {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold);
    margin: 0 10px;
}

.additional-note {
    font-size: 1.1rem;
    color: var(--gray);
    text-align: center;
    margin: 20px 0 10px;
}

.additional-list {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto 30px;
}

.additional-list li {
    font-size: 1.1rem;
    padding: 8px 0 8px 30px;
    position: relative;
    color: var(--gray-dark);
}

.additional-list li::before {
    content: '•';
    position: absolute;
    left: 10px;
    color: var(--gold);
    font-size: 1.5rem;
}

.average-price {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--gray-dark);
    text-align: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid var(--gray-light);
}

.highlight-price {
    color: var(--gold);
    font-size: 1.4rem;
    font-weight: 900;
}

.price-confusion {
    text-align: left;
    margin: 40px 0;
    padding: 30px;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(192, 57, 43, 0.1));
    border-radius: 15px;
}

.confusion-text {
    font-size: 1.3rem;
    line-height: 1.9;
    color: var(--gray-dark);
}

/* Tour Value Section */
.tour-value {
    margin: 60px 0;
}

.value-title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--navy);
    text-align: center;
    margin-bottom: 40px;
}

.value-list {
    max-width: 900px;
    margin: 0 auto;
}

.value-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    font-size: 1.1rem;
}

.value-icon {
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 900;
    flex-shrink: 0;
}

.value-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray-dark);
    margin-bottom: 5px;
}

.value-price {
    font-size: 1rem;
    color: var(--gold);
    font-weight: 700;
}

.total-value {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, var(--navy), #2a2a3e);
    border-radius: 20px;
    margin-top: 40px;
}

.total-text {
    font-size: 1.4rem;
    line-height: 2;
    color: var(--white);
}

/* Anniversary Special Section */
.anniversary-special {
    margin: 60px 0;
}

.anniversary-message {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #fff9e6, #fffbf0);
    border-radius: 20px;
    margin-bottom: 40px;
}

.anniversary-text {
    font-size: 1.3rem;
    line-height: 2;
    color: var(--gray-dark);
    margin-bottom: 25px;
    text-align: left;
}

.special-announce {
    font-size: 1.4rem;
    line-height: 2;
    color: var(--navy);
    text-align: left;
}

.highlight-red {
    color: #e74c3c;
    font-weight: 900;
    font-size: 1.6rem;
}

.special-price-reveal {
    text-align: center;
    margin: 60px 0;
}

.reveal-text {
    font-size: 1.5rem;
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 30px;
}

.special-price-box {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
    margin: 40px auto;
    max-width: 500px;
}

.price-animation-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.original-price-strike {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    text-decoration: line-through;
    text-decoration-color: #ff0000;
    text-decoration-thickness: 4px;
    opacity: 0.7;
    animation: fadeInStrike 1s ease-out;
}

.original-price-strike .yen {
    font-size: 2rem;
    margin-left: 10px;
}

.arrow-down {
    font-size: 3rem;
    color: var(--white);
    animation: bounce 1s infinite;
}

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

@keyframes fadeInStrike {
    0% { opacity: 0; transform: scale(1.2); }
    100% { opacity: 0.7; transform: scale(1); }
}

@keyframes priceReveal {
    0% { opacity: 0; transform: scale(0.5); }
    50% { transform: scale(1.1); }
    100% { opacity: 1; transform: scale(1); }
}

.special-price-number {
    font-size: 6rem;
    font-weight: 900;
    color: var(--white);
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    animation: priceReveal 1.5s ease-out 0.5s both;
}

.special-price-number .yen {
    font-size: 3rem;
    margin-left: 10px;
}

.tax-note {
    font-size: 1.1rem;
    color: var(--white);
    margin-top: 10px;
}

.room-note {
    font-size: 1rem;
    color: var(--white);
    margin-top: 15px;
    opacity: 0.9;
}

.surprise-text {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--navy);
    margin-top: 40px;
    text-align: left;
}

.price-explanation {
    text-align: left;
    max-width: 800px;
    margin: 40px auto;
}

.explanation-text {
    font-size: 1.1rem!important;
    line-height: 2;
    color: var(--gray-dark);
    margin-bottom: 20px;
    text-align: left;
}

.explanation-highlight {
    font-size: 1.4rem;
    line-height: 2;
    color: var(--navy);
    font-weight: 700;
    text-align: left;
    margin-top: 30px;
}

.honest-message {
    text-align: center;
    padding: 40px;
    background: var(--white);
    border-radius: 20px;
    border-left: 5px solid var(--gold);
    margin: 40px 0;
}

.honest-text {
    font-size: 1.2rem;
    line-height: 2;
    color: var(--gray-dark);
    margin-bottom: 25px;
    text-align: left;
}

.anniversary-reason {
    font-size: 1.3rem;
    color: var(--navy);
    font-weight: 700;
    text-align: left;
}

.limited-offer {
    margin: 60px 0;
}

.limit-box {
    text-align: center;
    padding: 50px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 20px;
    color: var(--white);
    margin-bottom: 30px;
}

.limit-text {
    font-size: 1.5rem;
    line-height: 2;
    margin-bottom: 15px;
    text-align: left;
}

.highlight-large {
    font-size: 2rem;
    text-decoration: underline;
}

.urgent-text {
    font-size: 1.6rem;
    font-weight: 900;
    margin: 30px 0 20px;
    text-align: left;
}

.waiting-note {
    font-size: 1.1rem;
    margin-top: 20px;
    opacity: 0.9;
    text-align: left;
}

.already-booked {
    text-align: center;
    padding: 30px;
    background: #fff3cd;
    border-radius: 15px;
    border: 3px solid #f39c12;
    margin-bottom: 30px;
}

.booked-text {
    font-size: 1.3rem;
    line-height: 1.9;
    color: #856404;
}

.one-time-only {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 15px;
    border: 2px solid var(--navy);
}

.onetime-text {
    font-size: 1.2rem;
    line-height: 2;
    color: var(--gray-dark);
    text-align: left;
}

/* Two Paths Section */
.two-paths {
    margin: 80px 0 60px;
}

.paths-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--navy);
    text-align: center;
    margin-bottom: 50px;
}

.paths-content {
    max-width: 900px;
    margin: 0 auto 60px;
}

.path-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    padding: 40px;
    background: var(--gray-light);
    border-radius: 20px;
    margin-bottom: 30px;
}

.path-recommended {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(230, 201, 104, 0.15));
    border: 3px solid var(--gold);
}

.path-number {
    width: 60px;
    height: 60px;
    background: var(--navy);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    flex-shrink: 0;
}

.path-recommended .path-number {
    background: var(--gold);
    color: var(--navy);
}

.path-text {
    font-size: 1.3rem;
    line-height: 2;
    color: var(--gray-dark);
}

.path-divider {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
    margin: 20px 0;
}

.expert-message {
    text-align: center;
    padding: 40px;
    background: var(--white);
    border-radius: 20px;
    border-left: 5px solid var(--gold);
    margin-bottom: 40px;
}

.expert-text {
    font-size: 1.3rem;
    line-height: 2;
    color: var(--gray-dark);
}

.insurance-analogy {
    text-align: left;
    padding: 40px;
    background: var(--gray-light);
    border-radius: 20px;
    margin-bottom: 40px;
}

.analogy-text {
    font-size: 1.2rem;
    line-height: 2;
    color: var(--gray-dark);
    margin-bottom: 20px;
    text-align: left;
}

.will-advantage {
    text-align: left;
    padding: 50px;
    background: linear-gradient(135deg, var(--navy), #2a2a3e);
    border-radius: 20px;
    color: var(--white);
    margin-bottom: 40px;
}

.advantage-heading {
    font-size: 1.8rem;
    line-height: 2;
    margin-bottom: 25px;
}

.advantage-text {
    font-size: 1.3rem;
    line-height: 2;
}

.final-recommendation {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(230, 201, 104, 0.1));
    border-radius: 20px;
    border: 2px solid var(--gold);
}

.final-text {
    font-size: 1.4rem;
    line-height: 2;
    color: var(--navy);
    font-weight: 700;
}

.why-cta {
    text-align: left;
    padding: 50px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(230, 201, 104, 0.1));
    border-radius: 20px;
    border: 2px solid var(--gold);
}

.cta-text {
    font-size: 1.3rem;
    line-height: 2;
    color: var(--gray-dark);
    margin-bottom: 30px;
     text-align: left;
}

.why-cta .btn-primary {
    font-size: 1.2rem;
    padding: 20px 50px;
}

/* ===================================
   Features Section
   =================================== */
.features {
    padding: 100px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--gray-light);
    border-radius: 20px;
    transition: var(--transition);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--navy);
}

.feature-card p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--gray);
    text-align: left;
}

/* ===================================
   Target Section
   =================================== */
.target {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--navy), #2a2a3e);
    color: var(--white);
}

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

.target .section-title::after {
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.target-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: var(--transition);
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.target-item:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
    transform: translateY(-5px);
}

.target-item i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.target-item p {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5;
}

/* ===================================
   Program Section
   =================================== */
.program {
    padding: 100px 0;
    background: var(--gray-light);
}

.program-content {
    display: grid;
    gap: 60px;
}

.program-day {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.program-day-header {
    margin-bottom: 40px;
    border-bottom: 3px solid var(--gold);
    padding-bottom: 20px;
}

.day-label {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.program-day-header h3 {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--navy);
}

.program-timeline {
    position: relative;
}

.timeline-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 30px;
    margin-bottom: 25px;
    position: relative;
}

.timeline-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 75px;
    top: 30px;
    bottom: -25px;
    width: 2px;
    background: var(--gold);
    opacity: 0.3;
}

.timeline-time {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    text-align: right;
    padding-top: 5px;
}

.timeline-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 1.2rem;
    color: var(--gray);
    line-height: 1.8;
}

/* ===================================
   Price Section
   =================================== */
.price {
    padding: 100px 0;
    background: var(--white);
}

.price-content {
    max-width: 900px;
    margin: 0 auto;
}

.price-main {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, var(--navy), #2a2a3e);
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.price-amount {
    color: var(--white);
    margin-bottom: 20px;
}

.price-amount .currency {
    font-size: 2.5rem;
    vertical-align: top;
    margin-right: 5px;
}

.price-amount .number {
    font-size: 6rem;
    font-weight: 900;
    color: var(--gold);
}

.price-amount .tax {
    font-size: 1.5rem;
    margin-left: 10px;
}

.price-note {
    color: var(--white);
    font-size: 1.2rem;
}

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

.price-detail-card {
    padding: 40px;
    background: var(--gray-light);
    border-radius: 15px;
}

.price-detail-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-detail-card h3 i {
    font-size: 1.5rem;
}

.price-detail-card:first-child h3 i {
    color: var(--gold);
}

.price-detail-card:last-child h3 i {
    color: var(--gray);
}

.price-detail-card ul {
    list-style: none;
}

.price-detail-card li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 1.2rem;
    line-height: 1.6;
}

.price-detail-card li::before {
    content: '•';
    position: absolute;
    left: 10px;
    color: var(--gold);
    font-size: 1.5rem;
}

/* ===================================
   Venue Section
   =================================== */
.venue {
    padding: 100px 0;
    background: var(--gray-light);
}

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

.venue-content-single {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.venue-content-single .venue-info {
    background: var(--white);
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.venue-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.venue-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.venue-info h3 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 20px;
}

.venue-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 40px;
    text-align: left;
}

.venue-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.venue-content-single .venue-details {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.venue-detail {
    display: flex;
    gap: 20px;
}

.venue-detail i {
    font-size: 1.5rem;
    color: var(--gold);
    margin-top: 5px;
}

.venue-detail strong {
    display: block;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 5px;
}

.venue-detail p {
    font-size: 1rem;
    line-height: 1.6;
}

.venue-detail a {
    color: var(--gold);
    text-decoration: underline;
}

.venue-detail a:hover {
    color: var(--gold-light);
}

/* ===================================
   Flow Section
   =================================== */
.flow {
    padding: 100px 0;
    background: var(--white);
}

.flow-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.flow-step {
    flex: 1;
    min-width: 180px;
    text-align: center;
    padding: 30px 20px;
}

.flow-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.flow-step h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 15px;
}

.flow-step p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.6;
    text-align: left;
}

.flow-arrow {
    display: flex;
    align-items: center;
    color: var(--gold);
    font-size: 1.5rem;
    margin-top: 50px;
}

/* ===================================
   FAQ Section
   =================================== */
.faq {
    padding: 100px 0;
    background: var(--gray-light);
}

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

.faq-item {
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--gray-light);
}

.faq-question i:first-child {
    font-size: 1.5rem;
    color: var(--gold);
}

.faq-question h3 {
    flex: 1;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy);
}

.faq-toggle {
    font-size: 1rem;
    color: var(--gray);
    transition: var(--transition);
}

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

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

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

.faq-answer p {
    padding: 0 30px 30px 70px;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--gray);
}

/* ===================================
   Contact Section
   =================================== */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--navy), #2a2a3e);
    color: var(--white);
}

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

.contact .section-title::after {
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 40px;
    color: var(--gold);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-detail {
    display: flex;
    gap: 20px;
}

.contact-detail i {
    font-size: 1.5rem;
    color: var(--gold);
    margin-top: 5px;
}

.contact-detail strong {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--gold-light);
}

.contact-detail p {
    font-size: 1.2rem;
    line-height: 1.6;
}

.contact-detail a {
    color: var(--white);
    text-decoration: underline;
}

.contact-detail a:hover {
    color: var(--gold);
}

.contact-note {
    display: flex;
    gap: 15px;
    padding: 25px;
    background: rgba(212, 175, 55, 0.2);
    border-left: 4px solid var(--gold);
    border-radius: 10px;
}

.contact-note i {
    font-size: 1.5rem;
    color: var(--gold);
    margin-top: 3px;
}

.contact-note p {
    font-size: 1rem;
    line-height: 1.6;
}

.contact-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--navy);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}

.footer-logo h3 {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.footer-logo p {
    font-size: 0.9rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ===================================
   Scroll to Top Button
   =================================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

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

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

/* ===================================
   Responsive Styles
   =================================== */
.sp-only {
    display: none;
}

@media (max-width: 1024px) {
    .venue-content,
    .venue-content-single,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .venue-content-single .venue-info {
        padding: 40px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .flow-arrow {
        display: none;
    }
    
    .flow-steps {
        gap: 30px;
    }
}

@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ===================================
   Section Divider
   =================================== */
.section-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 60px auto;
    max-width: 600px;
}

/* ===================================
   Questions Box
   =================================== */
.questions-box {
    background: var(--white);
    padding: 10px 20px;
    border-radius: 15px;
    margin: 10px 0;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

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

.questions-list li {
    font-size: 1.1rem;
    line-height: 1.2;
    color: var(--navy);
    padding-left: 20px;
    position: relative;
}

.questions-list li::before {
    content: '?';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 900;
}

.how-text {
    font-size: 1.3rem;
    line-height: 2;
    color: var(--gray-dark);
    text-align: left;
    margin-top: 30px;
}

/* ===================================
   Tour Overview Box
   =================================== */
.tour-overview-box {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    margin: 40px 0;
}

.tour-overview-title {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 40px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.tour-overview-title i {
    color: var(--gold);
}

.tour-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    flex-shrink: 0;
}

.step-content h5 {
    font-size: 1.2rem!important;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 15px;
}

.step-content p {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--gray-dark);
    margin-bottom: 15px;
}

.important-note {
    background: #fff5e6;
    padding: 20px 25px;
    border-left: 4px solid var(--gold);
    border-radius: 10px;
    margin: 20px 0;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.important-note i {
    color: var(--gold);
    font-size: 1.5rem;
    margin-top: 3px;
}

.important-note p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin: 0;
}

.tour-conclusion {
    background: linear-gradient(135deg, var(--navy), #2a2a3e);
    padding: 10px;
    border-radius: 15px;
    margin-top: 40px;
    text-align: left;
}

.tour-conclusion p {
    font-size: 1.4rem;
    line-height: 2;
    color: var(--white);
    margin: 0;
}

/* ===================================
   Club Floor Styles
   =================================== */
.club-floor-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.club-floor-title i {
    color: var(--gold);
}

.club-feature {
    background: var(--white);
    padding: 30px 40px;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.club-feature .club-text {
    font-size: 1.3rem;
    line-height: 2;
    color: var(--gray-dark);
    margin: 0;
}

.club-lounge-box {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    padding: 40px;
    border-radius: 15px;
    border: 2px solid var(--gold-light);
    margin-bottom: 30px;
}

.club-lounge-box h4 {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.club-lounge-box h4 i {
    color: var(--gold);
}

.club-lounge-box p {
    font-size: 1.2rem;
    line-height: 2;
    color: var(--gray-dark);
    margin-bottom: 15px;
}

.lounge-note {
    font-size: 1.1rem !important;
    color: var(--gray) !important;
    font-style: italic;
}

.club-experience-box {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.club-experience-box h4 {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.club-experience-box h4 i {
    color: var(--gold);
}

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

.experience-list li {
    font-size: 1.1rem;
    line-height: 1.1;
    color: var(--gray-dark);
    padding-left: 20px;
    position: relative;
    margin-bottom: 5px;
}

.experience-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: 900;
}

.club-conclusion {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    padding: 50px 40px;
    border-radius: 20px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.club-conclusion p {
    font-size: 1.5rem;
    line-height: 2;
    color: var(--navy);
    font-weight: 700;
    margin: 0;
}

@media (max-width: 768px) {
    html {
        font-size: 16px;
    }
    
    .sp-only {
        display: inline;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero {
        min-height: auto;
        padding: 80px 0 60px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-info {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
    
    .emphasis-text {
        font-size: 1.2rem;
    }
    
    .why-question {
        font-size: 1.2rem;
    }
    
    .excuse-list {
        padding: 10px 15px;
    }
    
    .excuse-list li {
        font-size: 1.1rem;
    }
    
    .intro-text {
        font-size: 1.1rem;
    }
    
    .or-divider {
        font-size: 1.1rem;
    }
    
    .or-divider::before,
    .or-divider::after {
        width: 30%;
    }
    
    .important-message {
        padding: 10px;
    }
    
    .message-heading {
        font-size: 1.5rem;
    }
    
    .message-text {
        font-size: 1.1rem;
    }
    
    .message-text strong {
        font-size: 1.15rem;
    }
    
    .executive-principle {
        padding: 10px;
    }
    
    .principle-text {
        font-size: 1.05rem;
    }
    
    .principle-text strong {
        font-size: 1.1rem;
    }
    
    .risk-alert {
        padding: 15px 10px;
    }
    
    .alert-text {
        font-size: 1.2rem;
    }
    
    .case-intro {
        font-size: 1.1rem;
    }
    
    .case-intro-sub {
        font-size: 1rem;
    }
    
    .why-intro-text {
        font-size: 1.1rem;
    }
    
    .price-question {
        padding: 20px 10px;
    }
    
    .price-question-title {
        font-size: 1.4rem;
    }
    
    .price-question-text {
        font-size: 1.1rem;
    }
    
    .service-title {
        font-size: 1.6rem;
    }
    
    .service-text {
        font-size: 1.05rem;
    }
    
    .normal-price-box {
        padding: 15px 10px;
    }
    
    .normal-price-box h4 {
        font-size: 1.2rem;
    }
    
    .base-price {
        font-size: 1.1rem;
    }
    
    .price-large {
        font-size: 2rem;
    }
    
    .price-confusion {
        padding: 10px;
    }
    
    .confusion-text {
        font-size: 1.1rem;
    }
    
    .value-title {
        font-size: 1.6rem;
    }
    
    .value-item {
        padding: 10px;
        flex-direction: column;
        gap: 10px;
    }
    
    .value-content p {
        font-size: 1rem;
    }
    
    .total-value {
        padding: 15px 10px;
    }
    
    .total-text {
        font-size: 1.2rem;
    }
    
    .anniversary-message {
        padding: 15px 10px;
    }
    
    .anniversary-text {
        font-size: 1.1rem;
    }
    
    .special-announce {
        font-size: 1.2rem;
    }
    
    .highlight-red {
        font-size: 1.3rem;
    }
    
    .reveal-text {
        font-size: 1.2rem;
    }
    
    .special-price-box {
        padding: 10px 10px;
    }
    
    .original-price-strike {
        font-size: 2.5rem;
    }
    
    .original-price-strike .yen {
        font-size: 1.5rem;
    }
    
    .arrow-down {
        font-size: 2rem;
    }
    
    .special-price-number {
        font-size: 4rem;
    }
    
    .special-price-number .yen {
        font-size: 2rem;
    }
    
    .tax-note, .room-note {
        font-size: 1rem;
    }
    
    .surprise-text {
        font-size: 1.4rem;
    }
    
    .explanation-text,
    .explanation-highlight {
        font-size: 1.1rem!important;
    }
    
    .honest-message {
        padding: 15px 10px;
    }
    
    .honest-text {
        font-size: 1.05rem;
    }
    
    .anniversary-reason {
        font-size: 1.15rem;
    }
    
    .limit-box {
        padding: 20px 10px;
    }
    
    .limit-text {
        font-size: 1.2rem;
    }
    
    .highlight-large {
        font-size: 1.5rem;
    }
    
    .urgent-text {
        font-size: 1.3rem;
    }
    
    .waiting-note {
        font-size: 1rem;
    }
    
    .already-booked {
        padding: 10px;
    }
    
    .booked-text {
        font-size: 1.1rem;
    }
    
    .one-time-only {
        padding: 10px;
    }
    
    .onetime-text {
        font-size: 1.05rem;
    }
    
    .paths-title {
        font-size: 1.7rem;
    }
    
    .path-item {
        flex-direction: column;
        padding: 15px 10px;
        gap: 15px;
    }
    
    .path-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin: 0 auto;
    }
    
    .path-text {
        font-size: 1.1rem;
    }
    
    .path-divider {
        font-size: 1.2rem;
    }
    
    .expert-message {
        padding: 15px 10px;
    }
    
    .expert-text {
        font-size: 1.1rem;
    }
    
    .insurance-analogy {
        padding: 15px 10px;
    }
    
    .analogy-text {
        font-size: 1.05rem;
    }
    
    .will-advantage {
        padding: 20px 10px;
    }
    
    .advantage-heading {
        font-size: 1.4rem;
    }
    
    .advantage-text {
        font-size: 1.1rem;
    }
    
    .final-recommendation {
        padding: 15px 10px;
    }
    
    .final-text {
        font-size: 1.15rem;
    }
    
    .case-card {
        padding: 15px;
    }
    
    .questions-list li {
        font-size: 1.1rem;
    }
    
    .tour-step {
        flex-direction: column;
        gap: 20px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin: 0 auto;
    }
    
    .step-content h5 {
        font-size: 1.4rem;
    }
    
    .step-content p {
        font-size: 1.1rem;
    }
    
    .important-note p {
        font-size: 1.1rem;
    }
    
    .club-lounge-box,
    .club-experience-box {
        padding: 20px 10px;
    }
    
    .experience-list li {
        font-size: 1.1rem;
    }
    
    .club-conclusion p {
        font-size: 1.3rem;
    }
    
    .case-title {
        font-size: 1.5rem;
    }
    
    .case-content p {
        font-size: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .solution-benefits {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .why-solution {
        padding: 20px 10px;
    }
    
    .why-cta {
        padding: 20px 10px;
    }
    
    .cta-text {
        font-size: 1.1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .target-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .target-item {
        padding: 15px 5px;
        min-height: 150px;
    }
    
    .target-item i {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .target-item p {
        font-size: 0.95rem;
    }
    
    .program-day {
        padding: 20px 10px;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .timeline-time {
        text-align: left;
    }
    
    .timeline-item:not(:last-child)::before {
        display: none;
    }
    
    .price-amount .number {
        font-size: 3.5rem;
    }
    
    .price-details {
        grid-template-columns: 1fr;
    }
    
    .venue-content-single .venue-info {
        padding: 20px 10px;
    }
    
    .flow-steps {
        flex-direction: column;
    }
    
    .flow-step {
        min-width: 100%;
    }
    
    .faq-answer p {
        padding: 0 10px 10px 25px;
    }
    
    .contact-content {
        gap: 40px;
    }
    
    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* 講師紹介 */
        .instructor-section {
            background: var(--gray-light);
        }
        
        .instructor-card {
            max-width: 900px;
            margin: 0 auto;
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
            display: grid;
            grid-template-columns: 250px 1fr;
            gap: 40px;
            align-items: start;
            margin-bottom: 20px;
        }
        
        @media (max-width: 768px) {
            .instructor-card {
                grid-template-columns: 1fr;
                text-align: center;
            }
        }
        
        .instructor-photo {
            text-align: center;
            margin-top: 30px;
        }
        
        .instructor-photo img {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            object-fit: cover;
            object-position: center 25%;
            border: 5px solid var(--gold);
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
        }
        
        .instructor-name {
            font-size: 28px;
            font-weight: 900;
            color: #2c3e50;
            margin: 15px 0 10px;
        }
        
        .instructor-title {
            font-size: 16px;
            color: #666;
            margin-bottom: 10px;
        }
        
        .instructor-info p {
            font-size: 17px;
            line-height: 1.9;
            color: #555;
            margin-bottom: 15px;
            text-align: left;
        }
        
        .instructor-highlight {
            background: var(--gray-light);
            border-left: 4px solid var(--gold);;
            padding: 15px;
            border-radius: 8px;
            margin-top: 20px;
        }
        
        .instructor-highlight p {
            font-size: 15px;
            color: #856404;
            margin: 0;
            font-weight: bold;
        }
        
        .instructor-highlight-with-image {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        
        .instructor-highlight-content {
            flex: 1;
        }
        
        .instructor-highlight-image {
            flex-shrink: 0;
        }
        
        .instructor-highlight-image img {
            max-width: 150px;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        
        @media (max-width: 768px) {
            .instructor-highlight-with-image {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .instructor-highlight-image {
                width: 100%;
            }
            
            .instructor-highlight-image img {
                max-width: 100%;
            }
        }
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .logo h1 {
        font-size: 1.2rem;
    }
    
    .btn-header {
        padding: 5px 10px;
        font-size: 1.2rem!important;
    }
    
    .target-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .target-item {
        padding: 10px 5px;
        min-height: 140px;
    }
    
    .target-item i {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }
    
    .target-item p {
        font-size: 0.9rem;
    }
}