/* ============================================
   Personal Soccer Design - シンプル版
   30代女性向け・超分かりやすいデザイン
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* 30代女性が好むパステルカラー */
    --coral: #FF9A8A;
    --mint: #A8E6CF;
    --lavender: #C8B6E2;
    --peach: #FFD3B6;
    --sky: #A8D8EA;
    
    /* ベースカラー */
    --primary: #FF9A8A;
    --secondary: #A8E6CF;
    --white: #ffffff;
    --text-dark: #4A4A4A;
    --text-light: #7A7A7A;
    --bg-cream: #FFF9F5;
    --border: #F0E5DD;
}

body {
    font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
    color: var(--text-dark);
    line-height: 1.8;
    background: var(--white);
}

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

/* ヘッダー - シンプル */
.header {
    background: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
}

.logo-subtitle {
    font-size: 11px;
    color: var(--text-light);
    white-space: nowrap;
}

.logo-subtitle {
    font-size: 11px;
    color: var(--text-light);
    white-space: nowrap;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* ハンバーガーメニュー - PCでは非表示 */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger:hover span {
    background: var(--coral);
}

/* モバイルメニュー */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 1002;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 2px solid var(--border);
}

.mobile-menu-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 36px;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 36px;
    height: 36px;
}

.mobile-menu-close:hover {
    color: var(--primary);
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-list li {
    border-bottom: 1px solid var(--border);
}

.mobile-menu-list li.current {
    background: linear-gradient(to right, var(--peach) 0%, transparent 100%);
}

.mobile-menu-list a {
    display: block;
    padding: 18px 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-menu-list li.current a {
    color: var(--primary);
    font-weight: 700;
}

.mobile-menu-list a:hover {
    background: var(--peach);
    padding-left: 30px;
    color: var(--primary);
}

.mobile-menu-cta {
    padding: 20px;
}

.mobile-menu-cta .btn {
    width: 100%;
    text-align: center;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ボタン - 大きくて分かりやすい */
.btn {
    display: inline-block;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--coral) 0%, #FF7A6A 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 154, 138, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 154, 138, 0.5);
}

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

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

/* ヒーロー - 明るくてはっきり */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--white) 100%);
    padding: 60px 20px;
}

.hero-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 0 0 100px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-title span {
    color: var(--primary);
}

.hero-description {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text-light);
    max-width: 500px;
}

.hero-price {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary);
    margin: 20px 0;
}

.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* セクション */
.section {
    padding: 80px 20px;
}

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

.section-title {
    font-size: 36px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 18px;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
}

/* 3つの特徴 - 超シンプル */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--bg-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

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

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

/* ステップ - 番号付きで分かりやすい */
.steps {
    background: var(--bg-cream);
    padding: 80px 20px;
}

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

.step-item {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 15px;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 20px;
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

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

/* 料金 - でかく分かりやすく */
.pricing {
    padding: 80px 20px;
}

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

.pricing-card {
    background: var(--white);
    border: 3px solid var(--border);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(255, 154, 138, 0.3);
    transform: scale(1.05);
}

.pricing-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.pricing-price {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary);
    margin: 20px 0;
}

.pricing-price small {
    font-size: 20px;
}

.pricing-features {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    border-bottom: 1px solid var(--border);
}

.pricing-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 900;
    font-size: 20px;
}

/* CTA - 目立つ */
.cta-section {
    background: linear-gradient(135deg, var(--coral) 0%, #FF7A6A 100%);
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
}

.cta-title {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

/* LINE CTAボックス */
.line-cta-box {
    background: rgba(255, 255, 255, 0.15);
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 40px 30px;
    max-width: 500px;
    margin: 40px auto 0;
}

.line-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.line-cta-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--white);
}

.line-cta-text {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
    opacity: 0.95;
}

.btn-line {
    background: #00B900 !important;
    border: none !important;
    font-size: 20px !important;
    font-weight: 800 !important;
    padding: 18px 50px !important;
    box-shadow: 0 6px 20px rgba(0, 185, 0, 0.4) !important;
}

.btn-line:hover {
    background: #00D000 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(0, 185, 0, 0.5) !important;
}

.line-note {
    font-size: 13px;
    margin-top: 15px;
    opacity: 0.8;
}

/* フォーム - シンプル */
.form-container {
    max-width: 600px;
    margin: 40px auto;
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
}

.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.form-label {
    display: block;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
}

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

.form-submit {
    width: 100%;
    padding: 18px;
    font-size: 20px;
    font-weight: 700;
}

/* お客様の声 - 吹き出し風 */
.testimonials {
    padding: 80px 20px;
    background: var(--bg-cream);
}

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

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    position: relative;
}

.testimonial-card:before {
    content: "❝";
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 60px;
    color: var(--primary);
    opacity: 0.2;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
    padding-top: 30px;
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary);
}

/* フッター */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 50px 20px 30px;
    text-align: center;
}

/* フッター */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 50px 20px 30px;
    text-align: center;
}

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

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

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--coral);
    font-weight: 800;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
}

.footer-section a {
    font-size: 15px;
    line-height: 1.9;
    color: var(--coral);
    display: block;
    margin-bottom: 12px;
    text-decoration: underline;
    font-weight: 700;
}

.footer-section a:hover {
    color: var(--mint);
    padding-left: 4px;
}

/* LINE友達追加リンクの強調 */
.footer-section a.line-link {
    color: #00B900;
    background: rgba(0, 185, 0, 0.15);
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 800;
    text-decoration: none;
    display: inline-block;
    margin-top: 8px;
    border: 2px solid rgba(0, 185, 0, 0.3);
}

.footer-section a.line-link:hover {
    background: rgba(0, 185, 0, 0.25);
    border-color: rgba(0, 185, 0, 0.5);
    transform: translateY(-2px);
    padding-left: 20px;
    box-shadow: 0 4px 12px rgba(0, 185, 0, 0.3);
}

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

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--coral);
    text-decoration: underline;
    font-weight: 700;
    opacity: 1;
}

.footer-links a:hover {
    color: var(--mint);
    transform: translateY(-2px);
}

/* レスポンシブ */
@media (max-width: 768px) {
    /* ヘッダー - ハンバーガーメニュー表示 */
    .header {
        padding: 10px 0;
    }
    
    .logo-image {
        width: 35px;
        height: 35px;
    }
    
    .logo-title {
        font-size: 16px;
    }
    
    .logo-subtitle {
        font-size: 9px;
    }
    
    .header-cta {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    /* ヒーローセクション */
    .hero {
        min-height: auto !important;
        padding: 0 !important;
        flex-direction: column !important;
        display: block !important;
        background: var(--white) !important;
    }
    
    .hero-image {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        left: auto !important;
        width: 100% !important;
        height: 250px !important;
        border-radius: 0 0 20px 20px !important;
        margin-bottom: 0 !important;
    }
    
    .hero-overlay {
        display: none !important;
    }
    
    .hero-content {
        position: relative !important;
        z-index: 1 !important;
        padding: 25px 20px !important;
        background: var(--white) !important;
        max-width: 100% !important;
        margin: 0 !important;
    }
    
    .hero-badge {
        font-size: 11px !important;
        padding: 6px 14px !important;
        margin-bottom: 15px !important;
        display: inline-block !important;
    }
    
    .hero-title {
        font-size: 20px !important;
        line-height: 1.5 !important;
        margin-bottom: 15px !important;
        max-width: 100% !important;
    }
    
    .hero-title br {
        display: none !important;
    }
    
    .hero-subtitle {
        font-size: 14px !important;
        line-height: 1.6 !important;
        margin-bottom: 12px !important;
        max-width: 100% !important;
    }
    
    .hero-subtitle br {
        display: none !important;
    }
    
    .hero-description {
        font-size: 13px !important;
        line-height: 1.7 !important;
        margin-bottom: 20px !important;
        max-width: 100% !important;
    }
    
    .hero-description br {
        display: none !important;
    }
    
    .hero-cta {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        align-items: stretch !important;
        flex-wrap: nowrap !important;
    }
    
    .hero-cta .btn {
        width: 100% !important;
        text-align: center !important;
        padding: 14px 20px !important;
        font-size: 14px !important;
    }
    
    .price-highlight {
        font-size: 18px !important;
        margin-left: 8px !important;
    }
    
    .section {
        padding: 40px 15px !important;
    }
    
    .section-title {
        font-size: 22px !important;
    }
    
    .section-description {
        font-size: 14px !important;
    }
    
    .pricing-card.featured {
        transform: scale(1) !important;
    }
    
    .features,
    .steps-grid,
    .pricing-cards,
    .testimonials-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* ヘッダー・ロゴのスマホ対応 */
    .header {
        padding: 10px 0 !important;
    }
    
    .header-container {
        padding: 0 15px !important;
        gap: 10px !important;
    }
    
    .logo {
        gap: 8px !important;
    }
    
    .logo-image {
        width: 35px !important;
        height: 35px !important;
    }
    
    .logo-title {
        font-size: 16px !important;
    }
    
    .logo-subtitle {
        font-size: 9px !important;
    }
    
    .btn {
        padding: 10px 20px !important;
        font-size: 13px !important;
        white-space: nowrap !important;
    }
    
    /* 地域ページ用レスポンシブ修正 */
    div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
    
    div[style*="grid-template-columns: repeat(auto-fit, minmax(350px, 1fr))"] {
        grid-template-columns: 1fr !important;
    }
    
    img[style*="height: 300px"],
    img[style*="height: 400px"] {
        height: 200px !important;
    }
    
    h2[style*="font-size: 32px"] {
        font-size: 20px !important;
    }
    
    h3[style*="font-size: 18px"],
    h3[style*="font-size: 20px"] {
        font-size: 16px !important;
    }
    
    p[style*="font-size: 14px"],
    p[style*="font-size: 16px"] {
        font-size: 13px !important;
    }
}
