@import url('aizebot.css');

/* === advisor.html 専用のカスタマイズ === */

/* ヒーロー（2行ヘッドライン想定で少し低め） */
.hero-advisor {
    min-height: 82vh;
    padding: 110px 20px 60px;
}
.hero-advisor h1 {
    font-size: calc(26px + 1.6vw);
    max-width: 820px;
}

@media (max-width: 768px) {
    .hero.hero-advisor {
        min-height: 78vh;
        padding: 100px 20px 40px;
    }
}

/* 権威性バッジ（ピル型タグ） */
.credibility-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}
.credibility-badges .badge {
    background-color: rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    padding: 6px 16px;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

/* ヒーローのサブCTA（リンク調） */
.hero-subcta {
    display: block;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 15px;
    text-decoration: underline;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUpElement 0.8s ease-out 1.1s forwards;
}
.hero-subcta:hover {
    color: #FF4500;
}

/* ご相談のきっかけ（consultingから継承） */
.consultation-triggers {
    background-color: #f8f9fa;
    padding: 80px 0;
}
.trigger-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}
.trigger-card {
    background: #fff;
    padding: 32px 28px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.trigger-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.trigger-card .trigger-icon {
    font-size: 40px;
    margin-bottom: 16px;
    display: block;
}
.trigger-card .trigger-text {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.7;
    color: #1a1a1a;
    margin: 0;
}
@media (max-width: 768px) {
    .consultation-triggers { padding: 60px 20px; }
    .trigger-grid { grid-template-columns: 1fr; gap: 16px; }
    .trigger-card { padding: 24px 20px; }
    .trigger-card .trigger-icon { font-size: 32px; margin-bottom: 12px; }
}

/* 実績・事例 */
.case-studies { background-color: #ffffff; }
.case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.case-card {
    background-color: #FAFAFA;
    border-radius: 12px;
    padding: 32px 28px;
    box-shadow: 0 5px 20px rgba(0, 60, 143, 0.08);
    border-top: 5px solid #003C8F;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.case-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 60, 143, 0.15);
}
.case-card .case-icon { font-size: 38px; margin-bottom: 16px; }
.case-card h3 { font-size: 20px; color: #002c6f; margin-bottom: 12px; }
.case-card p { color: #546E7A; font-size: 15px; line-height: 1.7; }
.case-card a { color: #003C8F; text-decoration: underline; font-weight: 600; }
.case-card a:hover { color: #FF4500; }

/* サービスの全体像（フロー図） */
.service-flow { background-color: #f8f9fa; }
.flow-diagram {
    max-width: 760px;
    margin: 0 auto 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}
.flow-step {
    width: 100%;
    background: #fff;
    border-radius: 12px;
    padding: 22px 28px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
    text-align: center;
    border: 1px solid #E0E0E0;
}
.flow-step .flow-step-title {
    font-size: 18px;
    font-weight: 700;
    color: #002c6f;
    margin-bottom: 4px;
}
.flow-step .flow-step-sub { font-size: 14px; color: #546E7A; }
.flow-arrow {
    font-size: 26px;
    color: #B8E986;
    line-height: 1;
    margin: 12px 0;
}
.flow-lead {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    color: #546E7A;
    font-size: 16px;
    line-height: 1.9;
}

/* 料金プラン */
.pricing { background-color: #ffffff; }
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    align-items: stretch;
}
.pricing-card {
    background-color: #FAFAFA;
    border-radius: 14px;
    padding: 34px 28px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    border: 1px solid #E0E0E0;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}
.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.pricing-card.is-recommended {
    border: 2px solid #FF4500;
    box-shadow: 0 10px 30px rgba(255, 69, 0, 0.18);
}
.recommend-ribbon {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #FF4500;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 5px 18px;
    border-radius: 999px;
    box-shadow: 0 3px 10px rgba(255, 69, 0, 0.4);
    white-space: nowrap;
}
.pricing-card .plan-name {
    font-size: 21px;
    font-weight: 700;
    color: #002c6f;
    margin-bottom: 10px;
}
.pricing-card .plan-price {
    font-size: 30px;
    font-weight: 900;
    color: #003C8F;
    line-height: 1.2;
    margin-bottom: 4px;
}
.pricing-card .plan-price .yen { font-size: 18px; }
.pricing-card .plan-price .unit { font-size: 15px; font-weight: 500; color: #546E7A; }
.pricing-card .plan-price.is-free { color: #22c55e; }
.pricing-card .plan-target {
    font-size: 14px;
    color: #1a1a1a;
    background: #eef3ff;
    border-radius: 8px;
    padding: 10px 14px;
    margin: 14px 0 18px;
    line-height: 1.6;
}
.pricing-card .plan-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    text-align: left;
    flex-grow: 1;
}
.pricing-card .plan-list li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #546E7A;
    line-height: 1.7;
}
.pricing-card .plan-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    top: 1px;
    color: #B8E986;
    font-weight: bold;
}
.pricing-card .plan-list li.plan-note {
    padding-left: 0;
    font-size: 13px;
    color: #888;
}
.pricing-card .plan-list li.plan-note::before { content: none; }
.pricing-card .plan-list li strong { color: #002c6f; }
.pricing-card .cta-button {
    margin-top: auto;
    align-self: stretch;
    text-align: center;
    font-size: 16px;
    padding: 14px 20px;
}
.pricing-card .cta-button.cta-secondary {
    background-color: #003C8F;
    box-shadow: 0 5px 15px rgba(0, 60, 143, 0.3);
}
.pricing-card .cta-button.cta-secondary:hover {
    background-color: #002c6f;
}

/* 追加プロジェクト */
.addon-project { background-color: #f8f9fa; }
.addon-box {
    max-width: 820px;
    margin: 0 auto;
    background: #fff;
    border-radius: 14px;
    padding: 40px 36px;
    box-shadow: 0 6px 22px rgba(0,0,0,0.07);
    border-left: 6px solid #FF4500;
}
.addon-box p { color: #546E7A; font-size: 16px; line-height: 1.9; margin-bottom: 14px; }
.addon-box p:last-child { margin-bottom: 0; }

/* AI顧問の特徴（4カード） */
.advisor-features { background-color: #ffffff; }

/* ご利用の流れ（番号付きステップ） */
.process-flow { background-color: #f8f9fa; }
.process-steps {
    max-width: 820px;
    margin: 0 auto;
    counter-reset: step;
}
.process-step {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    background: #fff;
    border-radius: 12px;
    padding: 26px 28px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    margin-bottom: 20px;
}
.process-step .step-num {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #003C8F;
    color: #fff;
    font-weight: 900;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.process-step .step-body { padding-top: 4px; }
.process-step .step-body p { color: #37474F; font-size: 16px; line-height: 1.7; margin: 0; }
.process-step .step-body strong { color: #002c6f; }

/* 最終CTA（2ボタン） */
.final-cta .cta-button-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
}
.final-cta .cta-button.cta-secondary {
    background-color: #003C8F;
    box-shadow: 0 5px 15px rgba(0, 60, 143, 0.3);
}
.final-cta .cta-button.cta-secondary:hover {
    background-color: #002c6f;
}

@media (max-width: 768px) {
    .case-card { padding: 26px 22px; }
    .addon-box { padding: 30px 24px; }
    .process-step { padding: 22px 20px; gap: 16px; }
    .process-step .step-num { width: 40px; height: 40px; font-size: 18px; }
    .pricing-card { padding: 30px 24px; }
}
