/* サービスページ共通スタイル（ゴルフ・ジム） */

/* ヒーローセクション */
.service-hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    margin-top: 70px;
}

.golf-hero {
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.75) 0%, rgba(58, 107, 29, 0.75) 100%), url('../images/golf-simulator-1.jpg');
    background-size: cover;
    background-position: center;
}

.gym-hero {
    background: linear-gradient(135deg, rgba(26, 77, 109, 0.75) 0%, rgba(35, 109, 148, 0.75) 100%), url('../images/gym-training-1.jpg');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-white);
}

.hero-badge {
    display: inline-block;
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 8px 25px;
    border-radius: 30px;
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    margin-bottom: 30px;
}

.service-hero-title {
    font-size: 4rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-bottom: 30px;
    color: var(--text-white);
}

.service-hero-subtitle {
    font-size: 1.3rem;
    line-height: 2;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.95);
}

/* ブランドコンセプト */
.brand-concept {
    background: #fff;
    padding: 100px 0;
}

.concept-box {
    background: var(--bg-light);
    padding: 60px;
    border-radius: 10px;
    max-width: 900px;
    margin: 0 auto;
}

.concept-text {
    font-family: var(--font-mincho);
    font-size: 1.2rem;
    line-height: 2.2;
    text-align: center;
    letter-spacing: 0.05em;
}

/* 悩みセクション */
.problems {
    background: var(--bg-light);
    padding: 100px 0;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.problem-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.problem-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
}

.golf-page .problem-icon {
    background: var(--accent-golf);
}

.gym-page .problem-icon {
    background: var(--accent-gym);
}

.problem-card h4 {
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 500;
}

.solution-text {
    text-align: center;
    padding: 60px 40px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.solution-text h3 {
    font-family: var(--font-mincho);
    font-size: 2rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.golf-page .solution-text h3 {
    color: var(--accent-golf);
}

.gym-page .solution-text h3 {
    color: var(--accent-gym);
}

.solution-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* 選ばれる理由 */
.strengths {
    background: #fff;
    padding: 100px 0;
}

.strengths-list {
    max-width: 1100px;
    margin: 0 auto;
}

.strength-item {
    display: grid;
    grid-template-columns: 80px 1fr 400px;
    gap: 40px;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
}

.strength-item:last-child {
    margin-bottom: 0;
}

.strength-item.reverse {
    grid-template-columns: 80px 400px 1fr;
}

.strength-item.reverse .strength-content {
    order: 3;
}

.strength-item.reverse .strength-image {
    order: 2;
}

.strength-number {
    font-family: var(--font-mincho);
    font-size: 3rem;
    font-weight: 500;
    color: var(--border-color);
}

.strength-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.golf-page .strength-content h3 {
    color: var(--accent-golf);
}

.gym-page .strength-content h3 {
    color: var(--accent-gym);
}

.strength-content p {
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-weight: 500;
}

.feature-list i {
    font-size: 1.1rem;
}

.golf-page .feature-list i {
    color: var(--accent-golf);
}

.gym-page .feature-list i {
    color: var(--accent-gym);
}

.strength-image {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.8);
}

.golf-placeholder-1 { 
    background: url('../images/golf-simulator-2.jpg');
    background-size: cover;
    background-position: center;
}
.golf-placeholder-2 { 
    background: url('../images/golf-facility-1.jpg');
    background-size: cover;
    background-position: center;
}
.golf-placeholder-3 { 
    background: url('../images/golf-simulator-3.jpg');
    background-size: cover;
    background-position: center;
}
.golf-placeholder-4 { 
    background: url('../images/golf-simulator-1.jpg');
    background-size: cover;
    background-position: center;
}
.golf-placeholder-5 { 
    background: url('../images/golf-course-2.jpg');
    background-size: cover;
    background-position: center;
}
.golf-placeholder-6 { 
    background: url('../images/golf-facility-1.jpg');
    background-size: cover;
    background-position: center;
}

.gym-placeholder-1 { 
    background: url('../images/gym-training-2.jpg');
    background-size: cover;
    background-position: center;
}
.gym-placeholder-2 { 
    background: url('../images/gym-training-1.jpg');
    background-size: cover;
    background-position: center;
}
.gym-placeholder-3 { 
    background: url('../images/gym-equipment-2.jpg');
    background-size: cover;
    background-position: center;
}
.gym-placeholder-4 { 
    background: url('../images/gym-interior-1.jpg');
    background-size: cover;
    background-position: center;
}
.gym-placeholder-5 { 
    background: url('../images/gym-interior-2.jpg');
    background-size: cover;
    background-position: center;
}
.gym-placeholder-6 { 
    background: url('../images/gym-workout-1.jpg');
    background-size: cover;
    background-position: center;
}

/* 施設案内 */
.facilities {
    background: var(--bg-light);
    padding: 100px 0;
}

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

.facility-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.facility-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.facility-image {
    width: 100%;
    height: 250px;
}

.facility-card h4 {
    padding: 25px 25px 10px;
    font-size: 1.3rem;
    font-weight: 500;
}

.facility-card p {
    padding: 0 25px 25px;
    color: var(--text-secondary);
}

/* 活用例 */
.use-cases {
    background: #fff;
    padding: 100px 0;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.case-card {
    text-align: center;
    padding: 40px 25px;
    background: var(--bg-light);
    border-radius: 10px;
    transition: all 0.3s ease;
}

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

.case-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--text-white);
}

.golf-page .case-icon {
    background: var(--accent-golf);
}

.gym-page .case-icon {
    background: var(--accent-gym);
}

.case-card h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 500;
}

.case-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* 料金プラン */
.pricing {
    background: var(--bg-light);
    padding: 100px 0;
}

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

.pricing-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 3px solid;
}

.golf-page .pricing-card.featured {
    border-color: var(--accent-golf);
}

.gym-page .pricing-card.featured {
    border-color: var(--accent-gym);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-white);
}

.golf-page .pricing-badge {
    background: var(--accent-golf);
}

.gym-page .pricing-badge {
    background: var(--accent-gym);
}

.pricing-header {
    padding: 40px 30px;
    text-align: center;
    border-bottom: 2px solid var(--border-color);
}

.pricing-header h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
}

.golf-page .price-amount {
    color: var(--accent-golf);
}

.gym-page .price-amount {
    color: var(--accent-gym);
}

.price-period {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

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

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.pricing-features i {
    font-size: 1.1rem;
}

.golf-page .pricing-features i {
    color: var(--accent-golf);
}

.gym-page .pricing-features i {
    color: var(--accent-gym);
}

.pricing-button {
    display: block;
    margin: 0 30px 30px;
    padding: 15px;
    text-align: center;
    border-radius: 30px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid;
}

.golf-page .pricing-button {
    background: var(--accent-golf);
    border-color: var(--accent-golf);
    color: var(--text-white);
}

.gym-page .pricing-button {
    background: var(--accent-gym);
    border-color: var(--accent-gym);
    color: var(--text-white);
}

.pricing-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.pricing-note {
    text-align: center;
    color: var(--text-secondary);
}

.pricing-note p {
    margin-bottom: 8px;
}

/* 利用の流れ */
.flow {
    background: #fff;
    padding: 100px 0;
}

.flow-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.flow-step {
    text-align: center;
    flex: 0 0 180px;
}

.flow-number {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
}

.golf-page .flow-number {
    color: var(--accent-golf);
}

.gym-page .flow-number {
    color: var(--accent-gym);
}

.flow-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 2rem;
    color: var(--text-white);
}

.golf-page .flow-icon {
    background: var(--accent-golf);
}

.gym-page .flow-icon {
    background: var(--accent-gym);
}

.flow-step h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.flow-step p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.flow-arrow {
    font-size: 1.5rem;
    color: var(--border-color);
    flex: 0 0 30px;
}

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

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

.faq-item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

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

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

.faq-question h4 {
    font-size: 1.1rem;
    font-weight: 500;
}

.faq-question i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.golf-page .faq-question i {
    color: var(--accent-golf);
}

.gym-page .faq-question i {
    color: var(--accent-gym);
}

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

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

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

.faq-answer p {
    padding: 0 30px 25px;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* クロスプロモーション */
.cross-promotion {
    background: #fff;
    padding: 80px 0;
}

.cross-promo-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px;
    border-radius: 15px;
    background: var(--bg-light);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.cross-promo-content {
    flex: 1;
}

.cross-promo-content h3 {
    font-family: var(--font-mincho);
    font-size: 2rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.cross-promo-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text-secondary);
}

.cross-promo-icon {
    flex: 0 0 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--text-white);
}

.golf-page .cross-promo-icon {
    background: var(--accent-gym);
}

.gym-page .cross-promo-icon {
    background: var(--accent-golf);
}

/* コンタクトセクション */
.contact {
    padding: 100px 0;
    text-align: center;
}

.golf-contact {
    background: linear-gradient(135deg, var(--accent-golf) 0%, #3a6b1d 100%);
}

.gym-contact {
    background: linear-gradient(135deg, var(--accent-gym) 0%, #236d94 100%);
}

.contact-content h2 {
    color: var(--text-white);
    margin-bottom: 25px;
}

.contact-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 40px;
}

.contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.contact .cta-button {
    background: #fff;
    font-size: 1.1rem;
    padding: 15px 50px;
}

.golf-contact .cta-button {
    color: var(--accent-golf);
}

.gym-contact .cta-button {
    color: var(--accent-gym);
}

.contact .cta-button:hover {
    background: var(--bg-light);
    transform: translateY(-3px);
}

.contact .cta-button-outline {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
    padding: 13px 48px;
    font-size: 1.1rem;
}

.contact .cta-button-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* レスポンシブ */
@media (max-width: 1024px) {
    .strength-item,
    .strength-item.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .strength-item.reverse .strength-content {
        order: 1;
    }
    
    .strength-item.reverse .strength-image {
        order: 2;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .flow-steps {
        flex-direction: column;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
    }
    
    .cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-hero {
        height: 70vh;
        min-height: 500px;
        margin-top: 60px;
    }
    
    .service-hero-title {
        font-size: 2.5rem;
    }
    
    .service-hero-subtitle {
        font-size: 1rem;
    }
    
    .concept-box {
        padding: 40px 30px;
    }
    
    .concept-text {
        font-size: 1rem;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .facilities-grid {
        grid-template-columns: 1fr;
    }
    
    .cases-grid {
        grid-template-columns: 1fr;
    }
    
    .cross-promo-card {
        flex-direction: column;
        padding: 40px 30px;
        gap: 30px;
        text-align: center;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
}
