/* ========================================
   リセット & 基本設定
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* 旅結株式会社 ブランドカラー */
    --primary-gold: #BB9B62;
    --primary-navy: #041529;
    --navy-dark: #030f1c;
    --navy-light: #0a2540;
    --gold-light: #d4b886;
    --gold-dark: #9d8350;
    
    /* 補助カラー */
    --bg-light: #F5F5F5;
    --bg-white: #FFFFFF;
    --border-color: #e0e0e0;
    --text-dark: #041529;
    --text-medium: #5a6b7d;
    --text-light: #8a9aa8;
    
    /* シャドウ */
    --shadow-sm: 0 2px 4px rgba(4, 21, 41, 0.08);
    --shadow-md: 0 4px 12px rgba(4, 21, 41, 0.12);
    --shadow-lg: 0 8px 24px rgba(4, 21, 41, 0.15);
    --shadow-xl: 0 16px 48px rgba(4, 21, 41, 0.2);
    
    /* グラデーション */
    --gradient-navy: linear-gradient(135deg, #041529 0%, #0a2540 100%);
    --gradient-gold: linear-gradient(135deg, #BB9B62 0%, #d4b886 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(4, 21, 41, 0.9) 0%, rgba(10, 37, 64, 0.85) 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Hiragino Mincho Pro', 'ヒラギノ明朝 Pro', 'Yu Mincho', '游明朝', 'YuMincho', 'Noto Serif JP', serif;
    line-height: 1.8;
    color: var(--text-dark);
    background-color: var(--bg-white);
    font-feature-settings: "palt";
    letter-spacing: 0.05em;
}

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

/* ========================================
   ヘッダー
======================================== */
.header {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 18px 0;
    border-bottom: 1px solid var(--primary-gold);
}

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

.logo {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-navy);
    letter-spacing: 0.1em;
    position: relative;
    padding-left: 40px;
}

.logo::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: var(--gradient-gold);
    border-radius: 50%;
    opacity: 0.2;
}

.header-cta-btn {
    background: var(--gradient-navy);
    color: var(--primary-gold);
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--primary-gold);
    letter-spacing: 0.08em;
}

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

/* ========================================
   ファーストビュー
======================================== */
.hero {
    background: var(--bg-white);
    color: var(--primary-navy);
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid var(--primary-gold);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(187, 155, 98, 0.05) 2px, rgba(187, 155, 98, 0.05) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(187, 155, 98, 0.05) 2px, rgba(187, 155, 98, 0.05) 4px);
    opacity: 0.8;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(187, 155, 98, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

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

.hero-title {
    font-size: 2.6rem;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 30px;
    letter-spacing: 0.08em;
    color: var(--primary-navy);
}

.hero-title .highlight {
    color: var(--primary-gold);
    position: relative;
    display: inline-block;
    padding: 0 8px;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-gold);
    box-shadow: 0 2px 4px rgba(187, 155, 98, 0.3);
}

.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 45px;
    color: var(--primary-navy);
    opacity: 0.85;
    font-weight: 400;
}

.cta-button {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--primary-navy);
    padding: 18px 45px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(187, 155, 98, 0.3);
    border: 2px solid var(--primary-gold);
    cursor: pointer;
    letter-spacing: 0.1em;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(187, 155, 98, 0.4);
    background: var(--primary-gold);
}

.cta-button i {
    margin-right: 10px;
}

.cta-button.pulse {
    animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(187, 155, 98, 0.3);
    }
    50% {
        box-shadow: 0 8px 32px rgba(187, 155, 98, 0.5);
    }
}

.cta-button.large {
    font-size: 1.2rem;
    padding: 20px 55px;
}

.hero-note {
    margin-top: 25px;
    font-size: 0.9rem;
    color: var(--primary-navy);
    opacity: 0.75;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: var(--bg-light);
    clip-path: polygon(0 40%, 100% 0, 100% 100%, 0 100%);
}

/* ========================================
   共通セクションスタイル
======================================== */
section {
    padding: 90px 0;
}

section:nth-child(even) {
    background: var(--bg-light);
}

.section-title {
    font-size: 2.4rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 25px;
    color: var(--primary-navy);
    position: relative;
    padding-bottom: 20px;
    letter-spacing: 0.08em;
}

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

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 55px;
    line-height: 1.9;
    letter-spacing: 0.05em;
}

.highlight-text {
    color: var(--primary-gold);
    font-weight: 700;
}

.highlight-large {
    font-size: 1.4em;
    color: var(--primary-gold);
    font-weight: 700;
}

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

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-bottom: 55px;
}

.problem-card {
    background: white;
    padding: 35px;
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border-left: 3px solid var(--primary-gold);
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-left-width: 5px;
}

.problem-card i {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 18px;
    display: block;
}

.problem-card p {
    color: var(--text-medium);
    line-height: 1.8;
}

.problems-quote {
    background: white;
    padding: 45px;
    border-radius: 4px;
    border: 2px solid var(--primary-gold);
    margin: 55px auto;
    max-width: 800px;
    box-shadow: var(--shadow-md);
    position: relative;
}

.problems-quote::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-gold);
    border-radius: 4px;
    z-index: -1;
    opacity: 0.1;
}

.problems-quote p {
    font-size: 1.25rem;
    color: var(--text-dark);
    text-align: center;
    line-height: 1.9;
    letter-spacing: 0.05em;
}

.problems-solution {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-top: 45px;
    line-height: 1.9;
}

/* ========================================
   Before→After
======================================== */
.before-after {
    background: var(--bg-white);
}

.ba-items {
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.ba-item {
    background: var(--bg-light);
    border-radius: 4px;
    padding: 45px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.ba-item h3 {
    font-size: 1.6rem;
    color: var(--primary-navy);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    letter-spacing: 0.05em;
}

.ba-item h3 i {
    font-size: 1.8rem;
    color: var(--primary-gold);
}

.ba-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 35px;
    align-items: center;
}

.ba-before, .ba-after {
    background: white;
    padding: 30px;
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
}

.ba-label {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 15px;
    padding: 6px 18px;
    border-radius: 3px;
    display: inline-block;
    letter-spacing: 0.08em;
}

.ba-before .ba-label {
    background: rgba(4, 21, 41, 0.08);
    color: var(--primary-navy);
}

.ba-after .ba-label {
    background: rgba(187, 155, 98, 0.15);
    color: var(--gold-dark);
}

.ba-before p, .ba-after p {
    color: var(--text-medium);
    line-height: 1.8;
}

.ba-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ba-arrow i {
    font-size: 2rem;
    color: var(--primary-gold);
}

/* ========================================
   なぜ伴走顧問なのか
======================================== */
.why-consult {
    background: var(--bg-light);
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 55px;
}

.why-problem, .why-solution {
    background: white;
    padding: 45px;
    border-radius: 4px;
    box-shadow: var(--shadow-md);
}

.why-problem h3, .why-solution h3 {
    font-size: 1.6rem;
    margin-bottom: 25px;
    color: var(--primary-navy);
    letter-spacing: 0.05em;
}

.why-list {
    list-style: none;
    margin-top: 25px;
}

.why-list li {
    display: flex;
    align-items: start;
    gap: 15px;
    margin-bottom: 18px;
    color: var(--text-medium);
    line-height: 1.8;
}

.why-list i {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-top: 5px;
}

.goal-box {
    background: var(--gradient-navy);
    color: white;
    padding: 35px;
    border-radius: 4px;
    margin: 30px 0;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--primary-gold);
}

.goal-text {
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: 0.05em;
}

.why-detail {
    margin: 25px 0;
    color: var(--text-medium);
    line-height: 1.8;
}

.graduation-note {
    background: rgba(187, 155, 98, 0.08);
    padding: 30px;
    border-radius: 4px;
    margin-top: 30px;
    display: flex;
    gap: 18px;
    align-items: start;
    border-left: 3px solid var(--primary-gold);
}

.graduation-note i {
    font-size: 2rem;
    color: var(--primary-gold);
    flex-shrink: 0;
}

.graduation-note p {
    color: var(--text-dark);
    line-height: 1.8;
}

/* ========================================
   サービス内容
======================================== */
.service-content {
    background: var(--bg-white);
}

.service-items {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 55px;
}

.service-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 35px;
    background: var(--bg-light);
    padding: 45px;
    border-radius: 4px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.service-number {
    width: 65px;
    height: 65px;
    background: var(--gradient-gold);
    color: var(--primary-navy);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.service-details h3 {
    font-size: 1.6rem;
    color: var(--primary-navy);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: 0.05em;
}

.service-details h3 i {
    color: var(--primary-gold);
    font-size: 1.5rem;
}

.service-desc {
    color: var(--text-medium);
    margin-bottom: 25px;
    line-height: 1.8;
}

.service-list {
    list-style: none;
    margin: 25px 0;
}

.service-list > li {
    margin-bottom: 18px;
    padding-left: 28px;
    position: relative;
    color: var(--text-medium);
    line-height: 1.8;
}

.service-list > li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--primary-gold);
    border-radius: 50%;
}

.service-list ul {
    list-style: none;
    margin-top: 12px;
    margin-left: 20px;
}

.service-list ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    color: var(--text-light);
}

.service-list ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
}

.deliverable {
    background: white;
    padding: 30px;
    border-radius: 4px;
    margin-top: 30px;
    border-left: 4px solid var(--primary-gold);
    display: flex;
    gap: 18px;
    box-shadow: var(--shadow-sm);
}

.deliverable i {
    font-size: 2rem;
    color: var(--primary-gold);
    flex-shrink: 0;
}

.deliverable strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 12px;
}

.deliverable p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 12px;
}

.deliverable ul {
    list-style: none;
    margin: 12px 0;
}

.deliverable ul li {
    padding-left: 20px;
    position: relative;
    color: var(--text-medium);
    margin-bottom: 6px;
}

.deliverable ul li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-size: 1.3rem;
}

.chat-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.chat-spec {
    background: white;
    padding: 25px;
    border-radius: 4px;
    display: flex;
    gap: 15px;
    align-items: start;
    box-shadow: var(--shadow-sm);
    border-top: 2px solid var(--primary-gold);
}

.chat-spec i {
    font-size: 1.8rem;
    color: var(--primary-gold);
    flex-shrink: 0;
}

.chat-spec strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.chat-spec p {
    color: var(--text-medium);
    font-size: 0.9rem;
}

.chat-examples {
    background: white;
    padding: 30px;
    border-radius: 4px;
    margin-top: 25px;
    box-shadow: var(--shadow-sm);
}

.chat-examples strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 18px;
    font-size: 1.05rem;
}

.chat-examples ul {
    list-style: none;
}

.chat-examples ul li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
    color: var(--text-medium);
    line-height: 1.7;
}

.chat-examples ul li::before {
    content: '💬';
    position: absolute;
    left: 0;
    font-size: 1.1rem;
}

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

.pricing-main {
    background: white;
    padding: 55px;
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 55px;
    border: 2px solid var(--primary-gold);
}

.pricing-title {
    font-size: 1.9rem;
    color: var(--primary-navy);
    text-align: center;
    margin-bottom: 35px;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.pricing-box {
    text-align: center;
    margin: 45px 0;
    padding: 35px;
    background: var(--gradient-navy);
    border-radius: 4px;
}

.price-tag {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
}

.price-amount {
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    line-height: 1;
}

.price-unit {
    font-size: 1.4rem;
    color: var(--bg-white);
    font-weight: 600;
}

.price-period {
    font-size: 1.3rem;
    color: var(--gold-light);
}

.price-note {
    color: var(--gold-light);
    font-size: 0.95rem;
}

.pricing-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 35px;
    margin-top: 45px;
}

.pricing-item h4 {
    color: var(--primary-navy);
    margin-bottom: 18px;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-item h4 i {
    color: var(--primary-gold);
}

.pricing-item p {
    color: var(--text-medium);
    line-height: 1.8;
}

.pricing-item ul {
    list-style: none;
}

.pricing-item ul li {
    padding-left: 22px;
    position: relative;
    margin-bottom: 10px;
    color: var(--text-medium);
}

.pricing-item ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 5px;
    height: 5px;
    background: var(--primary-gold);
    border-radius: 50%;
}

.pricing-note-box {
    background: rgba(187, 155, 98, 0.08);
    padding: 25px;
    border-radius: 4px;
    margin-top: 35px;
    display: flex;
    gap: 18px;
    align-items: start;
    border-left: 3px solid var(--primary-gold);
}

.pricing-note-box i {
    color: var(--primary-gold);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.pricing-note-box p {
    color: var(--text-dark);
    line-height: 1.8;
}

.pricing-continue {
    background: white;
    padding: 45px;
    border-radius: 4px;
    box-shadow: var(--shadow-md);
}

.pricing-subtitle {
    font-size: 1.6rem;
    color: var(--primary-navy);
    margin-bottom: 25px;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.pricing-continue > p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 18px;
}

.continue-list {
    list-style: none;
    margin: 25px 0;
}

.continue-list li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
    color: var(--text-medium);
}

.continue-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--primary-gold);
    border-radius: 50%;
}

.continue-plan {
    background: var(--gradient-navy);
    color: var(--primary-gold);
    padding: 25px;
    border-radius: 4px;
    text-align: center;
    margin: 25px 0;
    border: 2px solid var(--primary-gold);
}

.continue-plan p {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.05em;
}

.continue-note {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 18px;
}

/* ========================================
   向き不向き
======================================== */
.suitability {
    background: var(--bg-white);
}

.suit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    margin-top: 55px;
}

.suit-card {
    padding: 45px;
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
    border: 2px solid;
}

.suit-card.suitable {
    background: white;
    border-color: var(--primary-gold);
}

.suit-card.unsuitable {
    background: var(--bg-light);
    border-color: var(--text-light);
}

.suit-card h3 {
    font-size: 1.6rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    letter-spacing: 0.05em;
}

.suit-card.suitable h3 {
    color: var(--primary-navy);
}

.suit-card.suitable h3 i {
    color: var(--primary-gold);
    font-size: 1.8rem;
}

.suit-card.unsuitable h3 {
    color: var(--text-medium);
}

.suit-card.unsuitable h3 i {
    color: var(--text-light);
    font-size: 1.8rem;
}

.suit-card ul {
    list-style: none;
}

.suit-card ul li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.8;
}

.suit-card.suitable ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--primary-gold);
    border-radius: 50%;
}

.suit-card.unsuitable ul li::before {
    content: '';
    position: absolute;
    left: 3px;
    top: 7px;
    width: 12px;
    height: 2px;
    background: var(--text-light);
    transform: rotate(45deg);
}

.suit-card.unsuitable ul li::after {
    content: '';
    position: absolute;
    left: 3px;
    top: 7px;
    width: 12px;
    height: 2px;
    background: var(--text-light);
    transform: rotate(-45deg);
}

.suit-message {
    background: rgba(187, 155, 98, 0.08);
    padding: 35px;
    border-radius: 4px;
    margin-top: 45px;
    display: flex;
    gap: 18px;
    align-items: start;
    border-left: 3px solid var(--primary-gold);
}

.suit-message i {
    font-size: 2rem;
    color: var(--primary-gold);
    flex-shrink: 0;
}

.suit-message p {
    color: var(--text-dark);
    line-height: 1.8;
}

/* ========================================
   プロフィール
======================================== */
.profile {
    background: var(--bg-light);
}

.profile-card {
    background: white;
    border-radius: 4px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 2px solid var(--primary-gold);
}

.profile-header {
    background: var(--gradient-navy);
    color: white;
    padding: 55px;
    display: flex;
    gap: 35px;
    align-items: center;
    position: relative;
}

.profile-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(187, 155, 98, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.profile-avatar {
    width: 180px;
    height: 180px;
    background: rgba(187, 155, 98, 0.2);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 3px solid var(--primary-gold);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.profile-avatar i {
    font-size: 5rem;
    color: var(--primary-gold);
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.profile-name {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 0.1em;
}

.profile-title {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 25px;
    color: var(--gold-light);
}

.profile-stats {
    display: flex;
    gap: 35px;
}

.stat-item {
    display: flex;
    gap: 12px;
    align-items: center;
}

.stat-item i {
    font-size: 1.5rem;
    color: var(--primary-gold);
}

.stat-item strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 1.15rem;
    font-weight: 700;
}

.profile-content {
    padding: 55px;
}

.profile-section {
    margin-bottom: 45px;
}

.profile-section h4 {
    font-size: 1.5rem;
    color: var(--primary-navy);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: 0.05em;
}

.profile-section h4 i {
    color: var(--primary-gold);
}

.profile-section p {
    color: var(--text-medium);
    line-height: 1.9;
    margin-bottom: 18px;
}

.profile-section ul {
    list-style: none;
    margin: 18px 0;
}

.profile-section ul li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
    color: var(--text-medium);
    line-height: 1.8;
}

.profile-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--primary-gold);
    border-radius: 50%;
}

.profile-closing {
    font-size: 1.15rem;
    color: var(--primary-gold);
    font-weight: 600;
    margin-top: 25px;
    letter-spacing: 0.05em;
}

/* ========================================
   事例紹介
======================================== */
.case-studies {
    background: var(--bg-white);
}

.case-disclaimer {
    text-align: center;
    color: var(--text-light);
    font-size: 0.95rem;
    margin-top: 12px;
}

.cases {
    display: flex;
    flex-direction: column;
    gap: 45px;
    margin-top: 55px;
}

.case-card {
    background: var(--bg-light);
    border-radius: 4px;
    padding: 45px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.case-header {
    display: flex;
    gap: 25px;
    align-items: center;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--primary-gold);
}

.case-icon {
    width: 65px;
    height: 65px;
    background: var(--gradient-gold);
    color: var(--primary-navy);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.case-icon i {
    font-size: 1.8rem;
}

.case-header h3 {
    font-size: 1.6rem;
    color: var(--primary-navy);
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

.case-client {
    color: var(--text-medium);
    font-size: 1rem;
}

.case-content {
    background: white;
    padding: 35px;
    border-radius: 4px;
}

.case-before-after {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: start;
    margin-bottom: 35px;
}

.case-ba-col h4 {
    font-size: 1.25rem;
    margin-bottom: 18px;
    padding: 8px 18px;
    border-radius: 3px;
    display: inline-block;
    letter-spacing: 0.05em;
}

.case-ba-col:first-child h4 {
    background: rgba(4, 21, 41, 0.08);
    color: var(--primary-navy);
}

.case-after-col h4 {
    background: rgba(187, 155, 98, 0.15);
    color: var(--gold-dark);
}

.case-ba-col ul {
    list-style: none;
}

.case-ba-col ul li {
    margin-bottom: 15px;
    color: var(--text-medium);
    line-height: 1.8;
}

.case-ba-col ul li strong {
    color: var(--text-dark);
}

.case-ba-col ul ul {
    margin-left: 20px;
    margin-top: 10px;
}

.case-arrow-col {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 45px;
}

.case-arrow-col i {
    font-size: 2rem;
    color: var(--primary-gold);
}

.case-comment {
    background: rgba(187, 155, 98, 0.05);
    padding: 30px;
    border-radius: 4px;
    position: relative;
    padding-left: 55px;
    border-left: 3px solid var(--primary-gold);
}

.case-comment i {
    position: absolute;
    left: 20px;
    top: 25px;
    font-size: 1.5rem;
    color: var(--primary-gold);
    opacity: 0.4;
}

.case-comment p {
    color: var(--text-dark);
    line-height: 1.9;
}

/* ========================================
   お申し込みフロー
======================================== */
.flow {
    background: var(--bg-light);
}

.flow-steps {
    max-width: 700px;
    margin: 55px auto 0;
}

.flow-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 30px;
    background: white;
    padding: 35px;
    border-radius: 4px;
    box-shadow: var(--shadow-md);
    border-left: 3px solid var(--primary-gold);
}

.flow-number {
    width: 55px;
    height: 55px;
    background: var(--gradient-gold);
    color: var(--primary-navy);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.flow-content h3 {
    font-size: 1.35rem;
    color: var(--primary-navy);
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}

.flow-content p {
    color: var(--text-medium);
    line-height: 1.8;
}

.flow-arrow {
    text-align: center;
    padding: 18px 0;
}

.flow-arrow i {
    font-size: 2rem;
    color: var(--primary-gold);
}

/* ========================================
   FAQ
======================================== */
.faq {
    background: var(--bg-white);
}

.faq-items {
    max-width: 900px;
    margin: 55px auto 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-item {
    background: var(--bg-light);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.faq-question {
    display: flex;
    gap: 18px;
    align-items: start;
    padding: 30px;
    background: white;
    cursor: pointer;
    border-left: 3px solid var(--primary-gold);
}

.faq-question i {
    color: var(--primary-gold);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 5px;
}

.faq-question h3 {
    font-size: 1.2rem;
    color: var(--primary-navy);
    line-height: 1.7;
    letter-spacing: 0.03em;
}

.faq-answer {
    padding: 30px;
    background: var(--bg-light);
}

.faq-answer p {
    color: var(--text-medium);
    line-height: 1.9;
}

/* ========================================
   最終CTA
======================================== */
.final-cta {
    background: var(--gradient-navy);
    color: white;
    padding: 90px 0;
    position: relative;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(187, 155, 98, 0.03) 2px, rgba(187, 155, 98, 0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(187, 155, 98, 0.03) 2px, rgba(187, 155, 98, 0.03) 4px);
}

.final-cta .section-title {
    color: white;
}

.final-cta .section-title::after {
    background: var(--gradient-gold);
}

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

.cta-content > p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 25px;
    opacity: 0.95;
}

.cta-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 55px;
    border-radius: 4px;
    margin: 55px 0;
    border: 2px solid var(--primary-gold);
}

.cta-message {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 35px;
    letter-spacing: 0.03em;
}

.cta-note {
    margin-top: 25px;
    font-size: 0.9rem;
    opacity: 0.85;
}

/* ========================================
   お問い合わせフォーム
======================================== */
.contact-form {
    max-width: 700px;
    margin: 65px auto 0;
    background: white;
    padding: 55px;
    border-radius: 4px;
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--primary-gold);
}

.contact-form h3 {
    font-size: 1.9rem;
    color: var(--primary-navy);
    text-align: center;
    margin-bottom: 45px;
    letter-spacing: 0.05em;
}

.form-group {
    margin-bottom: 28px;
}

.form-group label {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 0.03em;
}

.form-group .required {
    color: var(--primary-gold);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    letter-spacing: 0.03em;
}

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

.form-group textarea {
    resize: vertical;
}

.form-group label input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
}

.submit-button {
    width: 100%;
    background: var(--gradient-gold);
    color: var(--primary-navy);
    padding: 16px;
    border: 2px solid var(--primary-gold);
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    letter-spacing: 0.1em;
}

.submit-button:hover {
    background: var(--primary-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.submit-button i {
    margin-right: 10px;
}

.form-message {
    margin-top: 25px;
    padding: 18px;
    border-radius: 4px;
    text-align: center;
}

.form-message.success {
    background: rgba(187, 155, 98, 0.15);
    color: var(--gold-dark);
    border: 1px solid var(--primary-gold);
}

.form-message.error {
    background: rgba(4, 21, 41, 0.08);
    color: var(--primary-navy);
    border: 1px solid var(--primary-navy);
}

/* ========================================
   フッター
======================================== */
.footer {
    background: var(--primary-navy);
    color: white;
    padding: 55px 0 35px;
    border-top: 2px solid var(--primary-gold);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid rgba(187, 155, 98, 0.2);
}

.footer-logo {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-gold);
    letter-spacing: 0.1em;
}

.footer-nav {
    display: flex;
    gap: 35px;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: 0.05em;
}

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

.footer-copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ========================================
   モーダル
======================================== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 21, 41, 0.8);
    overflow: auto;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    margin: 50px auto;
    padding: 55px;
    border-radius: 4px;
    max-width: 800px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--primary-gold);
}

.close {
    position: absolute;
    right: 25px;
    top: 25px;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.3s ease;
}

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

.modal-content h2 {
    font-size: 1.9rem;
    color: var(--primary-navy);
    margin-bottom: 35px;
    letter-spacing: 0.05em;
}

.legal-content {
    color: var(--text-medium);
    line-height: 1.9;
}

.legal-content h3 {
    font-size: 1.35rem;
    color: var(--primary-navy);
    margin-top: 30px;
    margin-bottom: 18px;
    letter-spacing: 0.03em;
}

.legal-content p {
    margin-bottom: 18px;
}

.legal-content ul {
    margin: 18px 0;
    padding-left: 28px;
}

.legal-content ul li {
    margin-bottom: 10px;
}

.legal-content a {
    color: var(--primary-gold);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-content strong {
    color: var(--primary-navy);
}

/* ========================================
   レスポンシブ
======================================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .why-content {
        grid-template-columns: 1fr;
    }

    .suit-grid {
        grid-template-columns: 1fr;
    }

    .profile-header {
        flex-direction: column;
        text-align: center;
    }

    .profile-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .header .container {
        flex-direction: column;
        gap: 15px;
    }

    .logo {
        padding-left: 0;
    }

    .logo::before {
        display: none;
    }

    .hero {
        padding: 70px 0 90px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .section-intro {
        font-size: 1rem;
    }

    .problems-grid {
        grid-template-columns: 1fr;
    }

    .ba-content {
        grid-template-columns: 1fr;
    }

    .ba-arrow {
        transform: rotate(90deg);
        padding: 12px 0;
    }

    .service-item {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .chat-info {
        grid-template-columns: 1fr;
    }

    .pricing-main {
        padding: 35px 25px;
    }

    .price-amount {
        font-size: 3.5rem;
    }

    .pricing-details {
        grid-template-columns: 1fr;
    }

    .case-before-after {
        grid-template-columns: 1fr;
    }

    .case-arrow-col {
        transform: rotate(90deg);
        padding: 0;
    }

    .footer-content {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .footer-nav {
        flex-direction: column;
        gap: 18px;
    }

    .contact-form {
        padding: 35px 25px;
    }

    .modal-content {
        padding: 35px 25px;
        margin: 20px;
    }

    .cta-box {
        padding: 35px 25px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .cta-button {
        padding: 16px 35px;
        font-size: 1rem;
    }

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

    .profile-content {
        padding: 35px 25px;
    }
}
