/* ============================================
   縁キャリLab - 次世代型結婚相談所
   メインスタイルシート
   ============================================ */

/* ============================================
   リセット & ベーススタイル
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* カラー設定 */
    --primary-color: #D97C7C;        /* ピンクベージュ */
    --primary-dark: #C66363;
    --primary-light: #F4E4E4;
    --secondary-color: #7C9FD9;      /* ソフトブルー */
    --accent-color: #E8A87C;         /* ウォームオレンジ */
    --text-dark: #2C3E50;
    --text-medium: #546E7A;
    --text-light: #78909C;
    --bg-light: #FAFAFA;
    --bg-white: #FFFFFF;
    --border-color: #E0E0E0;
    --success-color: #66BB6A;
    --warning-color: #FFA726;
    
    /* タイポグラフィ */
    --font-primary: 'Noto Sans JP', sans-serif;
    --font-serif: 'Noto Serif JP', serif;
    
    /* スペーシング */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-xxl: 64px;
    
    /* シャドウ */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    
    /* トランジション */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--bg-white);
    font-size: 16px;
    overflow-x: hidden;
}

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

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

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

ul {
    list-style: none;
}

/* ============================================
   ユーティリティクラス
   ============================================ */
.accent {
    color: var(--primary-color);
}

.sp-only {
    display: none;
}

.pc-only {
    display: inline;
}

@media (max-width: 768px) {
    .sp-only {
        display: inline;
    }
    
    .pc-only {
        display: none;
    }
}

/* ============================================
   ボタンスタイル
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

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

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

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

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

.btn-lg {
    padding: 18px 36px;
    font-size: 18px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ============================================
   セクション共通スタイル
   ============================================ */
section {
    padding: var(--spacing-xxl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

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

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

/* ============================================
   ヘッダー
   ============================================ */
.header {
    background: white;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 16px 0;
}

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

.logo h1 {
    font-family: var(--font-serif);
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 4px;
}

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

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

.nav-menu a {
    font-weight: 500;
    color: var(--text-dark);
}

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

.nav-cta {
    background: var(--primary-color);
    color: white !important;
    padding: 10px 24px;
    border-radius: 50px;
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

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

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
}

/* ============================================
   ヒーローセクション
   ============================================ */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-light) 0%, #FFF5F5 50%, #F0F8FF 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(217, 124, 124, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(124, 159, 217, 0.1) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: var(--spacing-xl) 0;
}

.hero-badge {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    box-shadow: var(--shadow-sm);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 56px;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 22px;
    color: var(--text-medium);
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
}

.hero-subtitle strong {
    color: var(--primary-color);
    font-size: 28px;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 16px 24px;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
}

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

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

.hero-cta {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    flex-wrap: wrap;
}

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

/* ============================================
   選ばれる理由セクション
   ============================================ */
.features {
    background: var(--bg-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
}

.feature-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-light) 0%, #FFF5F5 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

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

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

.feature-description {
    color: var(--text-medium);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

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

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--text-medium);
}

.feature-list i {
    color: var(--success-color);
    font-size: 18px;
}

.cost-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    margin: var(--spacing-md) 0;
}

.cost-item {
    text-align: center;
}

.cost-label {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.cost-value {
    font-size: 32px;
    font-weight: 900;
}

.cost-value.old {
    color: var(--text-light);
    text-decoration: line-through;
}

.cost-value.new {
    color: var(--primary-color);
}

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

.cost-note {
    text-align: center;
    font-size: 16px;
    color: var(--text-medium);
}

/* ============================================
   5つの出会いセクション
   ============================================ */
.channels {
    background: linear-gradient(180deg, white 0%, var(--bg-light) 100%);
}

.channels-comparison {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.comparison-item {
    background: white;
    padding: var(--spacing-md);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    min-width: 200px;
}

.comparison-item.highlight {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: var(--shadow-md);
}

.comparison-label {
    font-size: 14px;
    margin-bottom: 8px;
    opacity: 0.8;
}

.comparison-value {
    font-size: 24px;
    font-weight: 700;
}

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

.channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

.channel-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: var(--transition);
}

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

.channel-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    background: var(--primary-light);
    padding: 6px 14px;
    border-radius: 20px;
}

.channel-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light) 0%, #FFF5F5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

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

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

.channel-description {
    color: var(--text-medium);
    line-height: 1.8;
}

/* ============================================
   3大特典セクション
   ============================================ */
.benefits {
    background: white;
}

.benefits-list {
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-item {
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    margin-bottom: var(--spacing-lg);
    overflow: hidden;
    position: relative;
}

.benefit-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #E89F6C 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: var(--shadow-sm);
}

.benefit-content {
    padding: var(--spacing-xl);
    padding-top: 70px;
}

.benefit-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--spacing-md);
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.benefit-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefit-title i {
    color: var(--primary-color);
}

.benefit-value {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-light);
    padding: 12px 20px;
    border-radius: 50px;
}

.value-number {
    font-size: 28px;
    font-weight: 900;
    color: var(--primary-color);
}

.value-label {
    font-size: 14px;
    color: var(--text-medium);
}

.value-free {
    font-size: 20px;
    font-weight: 900;
    color: var(--success-color);
}

.benefit-tag {
    background: var(--primary-light);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.benefit-description {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.benefit-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.benefit-detail-item h4 {
    font-size: 18px;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.benefit-detail-item h4 i {
    color: var(--primary-color);
}

.benefit-detail-item ul {
    list-style: none;
}

.benefit-detail-item ul li {
    padding: 8px 0;
    color: var(--text-medium);
    padding-left: 20px;
    position: relative;
}

.benefit-detail-item ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 900;
}

.benefit-highlight {
    background: var(--primary-light);
    padding: var(--spacing-sm);
    border-radius: 10px;
    margin-top: var(--spacing-sm);
    font-weight: 600;
    color: var(--text-dark);
}

.benefit-note {
    background: var(--bg-light);
    padding: var(--spacing-sm);
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-medium);
}

.benefit-note i {
    color: var(--primary-color);
    margin-top: 4px;
}

.benefit-comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--spacing-md);
    align-items: center;
    margin: var(--spacing-md) 0;
}

.benefit-comp-item {
    background: var(--bg-light);
    padding: var(--spacing-md);
    border-radius: 15px;
}

.benefit-comp-item h4 {
    font-size: 18px;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.benefit-comp-item h4 i {
    color: var(--primary-color);
}

.benefit-comp-item ul li {
    padding: 6px 0;
    color: var(--text-medium);
}

.benefit-comp-plus {
    font-size: 32px;
    color: var(--primary-color);
    font-weight: 900;
}

.benefit-cta-text {
    text-align: center;
    font-size: 20px;
    color: var(--text-dark);
    margin-top: var(--spacing-md);
}

/* ============================================
   料金プランセクション
   ============================================ */
.pricing {
    background: linear-gradient(180deg, var(--bg-light) 0%, white 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xxl);
}

.pricing-card {
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    position: relative;
    transition: var(--transition);
}

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

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

.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #E89F6C 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: var(--shadow-sm);
}

.pricing-header {
    background: linear-gradient(135deg, var(--primary-light) 0%, #FFF5F5 100%);
    padding: var(--spacing-lg);
    text-align: center;
}

.pricing-name {
    font-size: 28px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
}

.pricing-description {
    color: var(--text-medium);
    font-size: 16px;
}

.pricing-body {
    padding: var(--spacing-lg);
}

.pricing-costs {
    margin-bottom: var(--spacing-lg);
}

.pricing-cost-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid var(--border-color);
}

.pricing-cost-item.highlight {
    background: var(--primary-light);
    padding: var(--spacing-sm);
    border-radius: 10px;
    border: none;
    margin: var(--spacing-sm) 0;
}

.cost-label {
    font-size: 16px;
    color: var(--text-medium);
}

.cost-value {
    font-size: 32px;
    font-weight: 900;
    color: var(--text-dark);
}

.cost-value small {
    font-size: 18px;
}

.pricing-cost-item.highlight .cost-value {
    color: var(--primary-color);
}

.cost-badge {
    display: block;
    font-size: 12px;
    color: var(--success-color);
    font-weight: 600;
    margin-top: 4px;
}

.pricing-features {
    margin-bottom: var(--spacing-md);
}

.pricing-features h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.pricing-features ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--text-medium);
}

.pricing-features ul li i {
    color: var(--success-color);
    font-size: 16px;
}

.feature-group {
    margin-bottom: var(--spacing-md);
}

.feature-group h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-benefits {
    background: var(--bg-light);
    padding: var(--spacing-sm);
    border-radius: 10px;
    margin-bottom: var(--spacing-md);
}

.pricing-benefits h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-benefits h4 i {
    color: var(--accent-color);
}

.pricing-benefits ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    color: var(--text-medium);
}

.pricing-benefits ul li i {
    color: var(--primary-color);
}

.pricing-footer {
    padding: 0 var(--spacing-lg) var(--spacing-lg);
}

/* コスト比較テーブル */
.cost-comparison-section {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: var(--spacing-xl);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

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

.comparison-subtitle {
    text-align: center;
    color: var(--text-medium);
    margin-bottom: var(--spacing-lg);
}

.comparison-table {
    overflow-x: auto;
    margin-bottom: var(--spacing-lg);
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: var(--spacing-sm);
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background: var(--bg-light);
    font-weight: 700;
    color: var(--text-dark);
}

.comparison-table th.highlight {
    background: var(--primary-light);
    color: var(--primary-color);
}

.comparison-table td.highlight {
    color: var(--primary-color);
    font-weight: 700;
}

.comparison-table tr.total {
    font-weight: 900;
    font-size: 18px;
}

.old-price {
    color: var(--text-light);
    text-decoration: line-through;
}

.new-price {
    color: var(--primary-color);
}

.comparison-result {
    text-align: center;
}

.result-box {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    margin-bottom: var(--spacing-sm);
}

.result-value {
    font-size: 36px;
    font-weight: 900;
}

.result-text {
    font-size: 20px;
    font-weight: 700;
}

.result-note {
    color: var(--text-medium);
    margin-top: var(--spacing-sm);
}

/* ============================================
   競合比較マトリクス
   ============================================ */
.competitive-matrix {
    background: var(--bg-light);
}

.matrix-table-wrapper {
    overflow-x: auto;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.matrix-table {
    width: 100%;
    border-collapse: collapse;
}

.matrix-table th,
.matrix-table td {
    padding: var(--spacing-md);
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.matrix-table th {
    background: var(--bg-light);
    font-weight: 700;
    color: var(--text-dark);
    font-size: 18px;
}

.matrix-table th.highlight {
    background: var(--primary-color);
    color: white;
}

.matrix-table td.highlight {
    background: var(--primary-light);
}

.matrix-table th:first-child,
.matrix-table td:first-child {
    text-align: left;
    font-weight: 600;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 4px;
}

.stars i {
    font-size: 20px;
    color: #FFD700;
}

.stars i.far {
    color: var(--border-color);
}

/* ============================================
   サービスの流れ
   ============================================ */
.process {
    background: white;
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    background: white;
    padding: var(--spacing-lg);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: var(--transition);
}

.process-step:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.process-number {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-light);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
}

.process-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.process-icon i {
    font-size: 36px;
    color: white;
}

.process-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.process-description {
    color: var(--text-medium);
    line-height: 1.8;
}

.process-arrow {
    text-align: center;
    padding: var(--spacing-md) 0;
}

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

/* ============================================
   FAQ
   ============================================ */
.faq {
    background: linear-gradient(180deg, white 0%, var(--bg-light) 100%);
}

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

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: var(--spacing-sm);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md);
    background: white;
    border: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    transition: var(--transition);
}

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

.faq-question i {
    color: var(--primary-color);
    transition: var(--transition);
}

.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: 500px;
}

.faq-answer p {
    padding: 0 var(--spacing-md) var(--spacing-md);
    color: var(--text-medium);
    line-height: 1.8;
}

/* ============================================
   お問い合わせフォーム
   ============================================ */
.contact {
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-xl);
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info {
    background: linear-gradient(135deg, var(--primary-light) 0%, #FFF5F5 100%);
    padding: var(--spacing-lg);
    border-radius: 20px;
}

.contact-info h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.contact-item {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.contact-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-top: 4px;
}

.contact-item strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-medium);
    margin-bottom: 4px;
}

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

.contact-features {
    background: white;
    padding: var(--spacing-md);
    border-radius: 15px;
    margin-top: var(--spacing-md);
}

.contact-features h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.contact-features ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--text-medium);
}

.contact-features ul li i {
    color: var(--success-color);
}

.contact-form-wrapper {
    background: white;
    padding: var(--spacing-lg);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.contact-form {
    width: 100%;
}

.form-group {
    margin-bottom: var(--spacing-md);
}

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

.required {
    color: #E53935;
    font-size: 12px;
    background: #FFEBEE;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 8px;
}

.optional {
    color: var(--text-light);
    font-size: 12px;
    background: var(--bg-light);
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 8px;
}

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

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-sm);
}

.form-privacy {
    margin-bottom: var(--spacing-md);
}

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

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

.privacy-link {
    color: var(--primary-color);
    text-decoration: underline;
}

.form-note {
    text-align: center;
    font-size: 14px;
    color: var(--text-light);
    margin-top: var(--spacing-md);
    line-height: 1.6;
}

/* ============================================
   CTAバナー
   ============================================ */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: var(--spacing-xxl) 0;
    text-align: center;
}

.cta-title {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: var(--spacing-md);
    line-height: 1.4;
}

.cta-text {
    font-size: 20px;
    margin-bottom: var(--spacing-lg);
    opacity: 0.95;
    line-height: 1.8;
}

/* ============================================
   フッター
   ============================================ */
.footer {
    background: var(--text-dark);
    color: white;
    padding: var(--spacing-xxl) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 28px;
    margin-bottom: var(--spacing-xs);
    color: white;
}

.footer-tagline {
    color: var(--primary-light);
    margin-bottom: var(--spacing-sm);
}

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

.footer-links h4 {
    font-size: 18px;
    margin-bottom: var(--spacing-sm);
    color: white;
}

.footer-links ul li {
    margin-bottom: 8px;
}

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

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

.footer-contact p {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--primary-light);
}

.footer-social {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
}

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

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

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

/* ============================================
   スクロールトップボタン
   ============================================ */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 999;
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

.scroll-top.show {
    display: flex;
}

/* ============================================
   レスポンシブデザイン
   ============================================ */
@media (max-width: 1024px) {
    .section-title {
        font-size: 36px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-lg);
    }
}

@media (max-width: 768px) {
    /* ナビゲーション */
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: var(--spacing-md);
        box-shadow: var(--shadow-lg);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav-menu.active {
        max-height: 500px;
    }
    
    .nav-menu a {
        padding: var(--spacing-sm) 0;
        border-bottom: 1px solid var(--border-color);
    }
    
    /* ヒーロー */
    .hero {
        min-height: 70vh;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    /* セクション */
    section {
        padding: var(--spacing-xl) 0;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    /* グリッド */
    .features-grid,
    .channels-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    /* 料金比較 */
    .channels-comparison {
        flex-direction: column;
    }
    
    .comparison-arrow {
        transform: rotate(90deg);
    }
    
    /* 特典 */
    .benefit-header {
        flex-direction: column;
    }
    
    .benefit-comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-comp-plus {
        transform: rotate(90deg);
    }
    
    /* お問い合わせ */
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* フッター */
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    /* テーブル */
    .comparison-table,
    .matrix-table-wrapper {
        font-size: 14px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: var(--spacing-xs);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .btn-lg {
        padding: 14px 24px;
        font-size: 16px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-content {
        padding: var(--spacing-md);
    }
}

/* ============================================
   印刷スタイル
   ============================================ */
@media print {
    .header,
    .nav,
    .cta-banner,
    .scroll-top,
    .btn {
        display: none;
    }
    
    body {
        font-size: 12pt;
    }
    
    section {
        page-break-inside: avoid;
    }
}
