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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: #000;
    line-height: 1.6;
    background-color: #fff;
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* ========================================
   レイアウト
======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    position: relative;
    overflow: hidden;
}

/* ========================================
   ヘッダー
======================================== */
.header {
    background-color: #fff;
    height: 100px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo img {
    height: 60px;
    width: auto;
}

.tel-button {
    background-color: #137fec;
    border-radius: 10px;
    padding: 10px 35px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.tel-icon {
    width: 40px;
    height: 40px;
}

.tel-number {
    font-size: 28px;
    font-weight: 500;
    color: #fff;
    line-height: 36px;
}

/* ========================================
   ファーストビュー
======================================== */
.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
    padding: 40px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 1;
}

.hero-left {
    max-width: 580px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.hero-title .highlight {
    color: #ffd700;
}

.hero-subtitle {
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    text-align: center;
}

.hero-subtitle .highlight {
    color: #ffd700;
}

.hero-description {
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    line-height: 1.5;
}

.hero-right {
    max-width: 480px;
    margin-top: 328px;
}

.hero-info-box {
    background-color: rgba(0, 51, 102, 0.9);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.info-title {
    font-size: 21px;
    font-weight: 400;
    color: #fff;
    text-align: center;
    line-height: 1.5;
}

.info-text {
    font-size: 15.816px;
    font-weight: 400;
    color: #fff;
    line-height: 1.4;
}

/* ========================================
   ボタン
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-large {
    padding: 28px 56px;
    font-size: 32px;
    line-height: 40px;
    height: 100px;
    min-width: 400px;
}

.btn-line {
    background-color: #00b900;
    color: #fff;
}

.btn-line:hover {
    background-color: #009900;
}

.btn-phone {
    background-color: #137fec;
    color: #fff;
}

.btn-phone:hover {
    background-color: #0a5dc9;
}

/* ========================================
   セクションタイトル
======================================== */
.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #036;
    text-align: center;
    margin-bottom: 40px;
}

.section-subtitle {
    font-size: 28px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 40px;
    color: #000;
}

/* ========================================
   Wave Top
======================================== */
.wave-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 140px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 140' preserveAspectRatio='none'%3E%3Cg%3E%3Crect fill='%23137fec' x='0' y='0' width='1440' height='100'/%3E%3Cpolygon fill='%23137fec' points='720,140 780,100 660,100'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: top center;
    z-index: 1;
}

/* ========================================
   チェックリスト
======================================== */
.checklist {
    background-color: #f1f8ff;
    padding-top: 180px;
    padding-bottom: 80px;
}

.checklist .section-title {
    color: #fff;
    position: absolute;
    top: 50px; /* 青いバー(100px)の中央 */
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    margin-bottom: 0;
    white-space: nowrap;
}

.checklist-items {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 80px;
}

.check-content {
    display: flex;
    gap: 35px;
    align-items: flex-start;
    flex: 1;
}

.checkbox-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 8px;
}

.check-text {
    flex: 1;
}

.check-title {
    font-size: 28px;
    font-weight: 700;
    color: #036;
    margin-bottom: 23px;
    line-height: 1.2;
}

.check-description {
    font-size: 14px;
    font-weight: 400;
    color: #000;
    line-height: 1.5;
}

.check-image {
    width: 256px;
    height: 128px;
    flex-shrink: 0;
}

.check-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* ========================================
   損失シミュレーション
======================================== */
.simulation {
    position: relative;
    min-height: 800px;
    background-color: #ebebeb;
    padding: 80px 0;
}

.simulation-background {
    position: absolute;
    inset: 0;
}

.simulation-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.simulation-content {
    position: relative;
    max-width: 960px;
    margin: 386px auto 0;
    z-index: 1;
}

.simulation-badge {
    background-color: #dc2626;
    color: #fff;
    font-size: 17.96px;
    font-weight: 700;
    padding: 8px 32px;
    border-radius: 9999px;
    text-align: center;
    width: fit-content;
    margin: 0 auto -26px;
    position: relative;
    z-index: 2;
    line-height: 32px;
}

.simulation-box {
    background-color: #fefce8;
    border: 4px solid #ef4444;
    border-radius: 16px;
    padding: 64px 48px 48px;
    display: flex;
    gap: 75px;
}

.simulation-left {
    flex: 1;
}

.simulation-title {
    font-size: 24px;
    font-weight: 700;
    color: #036;
    margin-bottom: 24px;
    line-height: 32px;
}

.simulation-amount {
    font-size: 0;
    margin-bottom: 24px;
}

.amount-prefix,
.amount-suffix {
    font-size: 27.495px;
    color: #4b5563;
    line-height: 1.3;
}

.amount-value {
    font-size: 68.737px;
    font-weight: 900;
    color: #dc2626;
    line-height: 1.3;
}

.simulation-note {
    font-size: 15.843px;
    font-weight: 500;
    color: #374151;
    line-height: 1.5;
}

.simulation-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 384px;
}

.risk-box {
    background-color: #fff;
    border: 1px solid #fee2e2;
    border-radius: 8px;
    padding: 23px 26px;
    font-size: 20px;
    font-weight: 700;
    color: #036;
    text-align: center;
    line-height: 24px;
}

/* ========================================
   安心のサービスフロー
======================================== */
.service-flow {
    background-color: #dbeafe;
    padding-top: 180px;
    padding-bottom: 80px;
}

.service-flow .section-title {
    color: #fff;
    position: absolute;
    top: 50px; /* 青いバー(100px)の中央 */
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    margin-bottom: 0;
    white-space: nowrap;
}

.service-flow .section-subtitle {
    margin-top: 20px;
    margin-bottom: 60px;
}

.flow-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 45px;
    margin-bottom: 80px;
}

.flow-step {
    background-color: #fff;
    border-radius: 10px;
    padding: 14px 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.step-image {
    width: 200px;
    height: 200px;
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.step-title {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    text-align: center;
    line-height: 1.2;
}

.step-description {
    font-size: 14px;
    font-weight: 400;
    color: #000;
    line-height: 1.5;
    text-align: left;
}

.service-merits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 69px;
}

.merit-card {
    background-color: #fff;
    border-left: 4px solid #ff8c00;
    border-radius: 12px;
    padding: 24px 25px;
    display: flex;
    flex-direction: column;
    gap: 23px;
}

.merit-title {
    font-size: 18px;
    font-weight: 700;
    color: #036;
    line-height: 1.6;
}

.merit-description {
    font-size: 13.817px;
    font-weight: 400;
    color: #4b5563;
    line-height: 1.45;
}

/* ========================================
   CTA
======================================== */
.cta {
    position: relative;
    min-height: 540px;
    padding: 80px 0;
}

.cta-background {
    position: absolute;
    inset: 0;
}

.cta-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-content {
    position: relative;
    display: flex;
    gap: 115px;
    align-items: center;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 238px;
}

.cta-message {
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    padding: 42px 46px;
    flex-shrink: 0;
}

.cta-text {
    font-size: 28px;
    font-weight: 700;
    color: #dc2626;
    line-height: 1.7;
    text-align: center;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 68px;
}

/* ========================================
   選ばれる3つの理由
======================================== */
.reasons {
    background-color: #dbeafe;
    padding-top: 180px;
    padding-bottom: 80px;
}

.reasons .section-title {
    color: #fff;
    position: absolute;
    top: 50px; /* 青いバー(100px)の中央 */
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    margin-bottom: 0;
    white-space: nowrap;
}

.reason-items {
    display: flex;
    flex-direction: column;
    gap: 27px;
    margin-top: 20px;
}

.reason-item {
    background-color: #fff;
    display: flex;
    gap: 63px;
    align-items: center;
    padding: 20px 30px;
    border-radius: 8px;
}

.reason-image {
    width: 200px;
    height: 200px;
    flex-shrink: 0;
}

.reason-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.reason-content {
    flex: 1;
}

.reason-title {
    font-size: 36px;
    font-weight: 700;
    color: #036;
    margin-bottom: 20px;
    line-height: 1.2;
}

.reason-number {
    display: inline-block;
    margin-right: 10px;
}

.reason-description {
    font-size: 20px;
    font-weight: 400;
    color: #000;
    line-height: 1.6;
}

/* ========================================
   卒FIT
======================================== */
.fit {
    position: relative;
    min-height: 600px;
    padding: 80px 0;
}

.fit-background {
    position: absolute;
    inset: 0;
}

.fit-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fit-content {
    position: relative;
    display: flex;
    gap: 100px;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.fit-left {
    flex: 1;
    color: #fff;
    padding-top: 40px;
}

.fit-badge {
    background-color: #ffd700;
    color: #036;
    font-size: 12px;
    font-weight: 700;
    padding: 15px 7px;
    border-radius: 50px;
    text-align: center;
    width: fit-content;
    letter-spacing: 0.6px;
    line-height: 17px;
    margin-bottom: 20px;
}

.fit-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: 0.6px;
}

.fit-subtitle {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 40px;
    letter-spacing: 0.6px;
}

.fit-description {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 60px;
    letter-spacing: 0.6px;
}

.fit-features {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.fit-feature {
    display: flex;
    align-items: center;
    gap: 19px;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: 0.6px;
}

.feature-icon {
    width: 35px;
    height: 35px;
}

.fit-right {
    width: 520px;
    background-color: rgba(255, 255, 255, 0.75);
    border-radius: 10px;
    padding: 40px;
    margin-top: 138px;
}

.fit-comparison-title {
    font-size: 21px;
    font-weight: 700;
    color: #036;
    text-align: center;
    margin-bottom: 30px;
}

.fit-comparison {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.comparison-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 16px;
}

.comparison-item.highlight {
    background-color: #fff;
    border: 2px solid #ffd700;
}

.comparison-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.comparison-label {
    font-size: 14px;
    font-weight: 700;
    color: #036;
}

.comparison-price {
    font-size: 12px;
    font-weight: 400;
    color: #6b7280;
}

.comparison-item.highlight .comparison-price {
    color: #ef4444;
}

.comparison-bar {
    background-color: #e5e7eb;
    height: 10px;
    border-radius: 9999px;
    overflow: hidden;
}

.comparison-value {
    background-color: #9ca3af;
    height: 100%;
    border-radius: 9999px;
}

.comparison-item.highlight .comparison-value {
    background-color: #ffd700;
}

.comparison-result {
    font-size: 20px;
    font-weight: 700;
    color: #ff8c00;
    text-align: right;
    margin-top: 18px;
}

.comparison-vs {
    font-size: 20.208px;
    font-weight: 900;
    color: #036;
    text-align: center;
    line-height: 32px;
}

/* ========================================
   FAQ
======================================== */
.faq {
    background-color: #fff;
    padding: 80px 0;
}

.faq-items {
    max-width: 1043px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-item.active {
    background-color: #ebebeb;
}

.faq-question {
    width: 100%;
    padding: 24px 30px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: inherit;
}

.faq-text {
    font-size: 20px;
    font-weight: 700;
    color: #565246;
    text-align: left;
    line-height: 1.5;
}

.faq-item.active .faq-text {
    color: #000;
}

.faq-icon {
    font-size: 16px;
    color: #565246;
    transition: transform 0.3s ease;
}

.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 30px 24px;
    font-size: 16px;
    font-weight: 400;
    color: #606267;
    line-height: 1.75;
}

/* ========================================
   お客様の声
======================================== */
.voice {
    background-color: #f3f3f3;
    padding: 80px 0;
}

.voice-items {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.voice-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.voice-item.reverse {
    flex-direction: row-reverse;
}

.voice-avatar {
    width: 150px;
    height: 150px;
    flex-shrink: 0;
}

.voice-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.voice-bubble {
    flex: 1;
    background-color: #fff;
    border-radius: 16px;
    padding: 30px;
    position: relative;
}

.voice-item .voice-bubble::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 30px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 20px 15px 0;
    border-color: transparent #fff transparent transparent;
}

.voice-item.reverse .voice-bubble::before {
    left: auto;
    right: -20px;
    border-width: 15px 0 15px 20px;
    border-color: transparent transparent transparent #fff;
}

.voice-text {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 1.5;
    margin-bottom: 37px;
}

.voice-author {
    font-size: 14px;
    font-weight: 400;
    color: #000;
    text-align: right;
    line-height: 1.5;
}

/* ========================================
   お問い合わせ
======================================== */
.contact {
    background-color: #ff8c00;
    min-height: 720px;
    padding-top: 180px;
    padding-bottom: 80px;
}

/* お問い合わせセクションのバーを白色に */
.contact .wave-top {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 140' preserveAspectRatio='none'%3E%3Cg%3E%3Crect fill='%23ffffff' x='0' y='0' width='1440' height='100'/%3E%3Cpolygon fill='%23ffffff' points='720,140 780,100 660,100'/%3E%3C/g%3E%3C/svg%3E");
}

.contact .section-title {
    color: #ff8c00;
    position: absolute;
    top: 50px; /* 青いバー(100px)の中央 */
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    margin-bottom: 0;
    white-space: nowrap;
}

.contact-subtitle {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 43px;
    line-height: 1.5;
}

.contact-text {
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    text-align: center;
    margin-bottom: 70px;
    line-height: 1.5;
}

.contact-buttons {
    display: flex;
    gap: 210px;
    justify-content: center;
}

/* ========================================
   フッター
======================================== */
.footer {
    background-color: #036;
    color: #fff;
    padding: 30px 0;
}

.footer-intro {
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 30px;
    line-height: 2.25;
}

.footer-content {
    display: flex;
    gap: 50px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
}

.footer-company {
    padding-left: 113px;
}

.footer-company p:first-child,
.footer-business p:first-child {
    margin-bottom: 8px;
}

.footer-business {
    padding-left: 52px;
}

/* ========================================
   ページトップへ戻るボタン
======================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #137fec;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #0a5dc9;
    transform: translateY(-5px);
}

/* ========================================
   スクロールアニメーション
======================================== */

/* セクションの初期状態（アニメーション前） */
.hero,
.checklist,
.simulation,
.service-flow,
.cta,
.reasons,
.fit,
.faq,
.voice,
.contact {
    opacity: 0;
    transform: translateY(30px);
}

/* 個別要素の初期状態（アニメーション前） */
.checklist-item,
.flow-step,
.merit-card,
.reason-item,
.voice-item,
.faq-item {
    opacity: 0;
    transform: translateY(30px);
}

/* ヘッダーとフッターは常に表示 */
.header,
.footer {
    opacity: 1 !important;
    transform: none !important;
}

/* フェードインアニメーション */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* 個別要素のより速いアニメーション */
.checklist-item.fade-in,
.flow-step.fade-in,
.merit-card.fade-in,
.reason-item.fade-in,
.voice-item.fade-in,
.faq-item.fade-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* ========================================
   スマホ用改行制御
======================================== */
.sp-br {
    display: none;
}

/* ========================================
   レスポンシブ対応
======================================== */

/* タブレット〜小型デスクトップ */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }

    .hero-content {
        flex-direction: column;
        gap: 40px;
    }

    .hero-right {
        margin-top: 0;
    }

    .simulation-box {
        flex-direction: column;
    }

    .simulation-right {
        width: 100%;
    }

    .flow-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-merits {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .cta-content {
        flex-direction: column;
        gap: 40px;
        padding-top: 100px;
    }

    .fit-content {
        flex-direction: column;
        gap: 40px;
    }

    .fit-right {
        width: 100%;
        margin-top: 0;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .footer-company {
        padding-left: 0;
    }

    .footer-business {
        padding-left: 0;
    }
}

@media (max-width: 1024px) {
    .contact-buttons {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
}

/* スマートフォン対応 (375px〜767px) */
@media (max-width: 767px) {
    /* スマホ用改行を表示 */
    .sp-br {
        display: inline;
    }

    /* ベーススタイル */
    body {
        min-width: 375px;
    }

    /* レイアウト */
    .container {
        max-width: 375px;
        padding: 0 16px;
    }

    /* ヘッダー */
    .header {
        height: 70px;
    }

    .header-container {
        padding: 0 16px;
    }

    .header-logo img {
        height: 35px;
    }

    .tel-button {
        border-radius: 8px;
        padding: 6px 12px;
        gap: 8px;
    }

    .tel-icon {
        width: 20px;
        height: 20px;
    }

    .tel-number {
        font-size: 14px;
        line-height: 1.2;
    }

    /* ファーストビュー */
    .hero {
        min-height: 500px;
        height: auto;
    }

    .hero-content {
        padding: 30px 16px;
        flex-direction: column;
        gap: 20px;
    }

    .hero-left {
        max-width: 100%;
        gap: 20px;
    }

    .hero-title {
        font-size: 26px;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 22px;
    }

    .hero-description {
        font-size: 14px;
        line-height: 1.6;
    }

    .hero-right {
        max-width: 100%;
        margin-top: 0;
    }

    .hero-info-box {
        padding: 16px;
    }

    .info-title {
        font-size: 16px;
        font-weight: 700;
    }

    .info-text {
        font-size: 13px;
        line-height: 1.5;
    }

    /* ボタン */
    .btn {
        width: 100%;
    }

    .btn-large {
        padding: 18px 24px;
        font-size: 18px;
        line-height: 1.4;
        min-height: 60px;
        min-width: auto;
        height: auto;
    }

    /* セクションタイトル */
    .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .section-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    /* Wave Top */
    .wave-top {
        height: 80px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cg%3E%3Crect fill='%23137fec' x='0' y='0' width='1440' height='60'/%3E%3Cpolygon fill='%23137fec' points='720,80 780,60 660,60'/%3E%3C/g%3E%3C/svg%3E");
    }

    /* チェックリスト */
    .checklist {
        padding-top: 120px;
        padding-bottom: 40px;
    }

    .checklist .section-title {
        top: 30px;
        font-size: 20px;
    }

    .checklist-items {
        gap: 30px;
    }

    .checklist-item {
        flex-direction: column;
        gap: 16px;
    }

    .check-content {
        gap: 12px;
    }

    .checkbox-icon {
        width: 20px;
        height: 20px;
        margin-top: 4px;
    }

    .check-title {
        font-size: 18px;
        margin-bottom: 8px;
        line-height: 1.3;
    }

    .check-description {
        font-size: 13px;
    }

    .check-image {
        width: 100%;
        height: auto;
    }

    /* 損失シミュレーション */
    .simulation {
        min-height: 600px;
        padding: 40px 0;
    }

    .simulation-content {
        margin-top: 200px;
    }

    .simulation-badge {
        font-size: 14px;
        padding: 8px 20px;
        margin: 0 auto -20px;
        line-height: 1.5;
    }

    .simulation-box {
        border: 3px solid #ef4444;
        border-radius: 12px;
        padding: 40px 16px 24px;
        flex-direction: column;
        gap: 30px;
    }

    .simulation-title {
        font-size: 20px;
        margin-bottom: 20px;
        line-height: 1.3;
    }

    .simulation-amount {
        margin-bottom: 20px;
    }

    .amount-prefix,
    .amount-suffix {
        font-size: 20px;
    }

    .amount-value {
        font-size: 48px;
    }

    .simulation-note {
        font-size: 12px;
        line-height: 1.6;
    }

    .simulation-right {
        width: 100%;
        gap: 12px;
    }

    .risk-box {
        padding: 16px;
        font-size: 16px;
        line-height: 1.5;
    }

    /* 安心のサービスフロー */
    .service-flow {
        padding-top: 120px;
        padding-bottom: 40px;
    }

    .service-flow .section-title {
        top: 30px;
        font-size: 20px;
    }

    .service-flow .section-subtitle {
        margin-top: 20px;
        margin-bottom: 40px;
    }

    .flow-steps {
        flex-direction: column;
        gap: 24px;
        margin-bottom: 40px;
    }

    .flow-step {
        padding: 20px;
        gap: 16px;
    }

    .step-image {
        width: 100%;
        max-width: 200px;
        height: auto;
    }

    .step-title {
        font-size: 18px;
        line-height: 1.3;
    }

    .step-description {
        font-size: 13px;
        line-height: 1.6;
    }

    .service-merits {
        flex-direction: column;
        gap: 16px;
    }

    .merit-card {
        padding: 20px;
        gap: 12px;
    }

    .merit-title {
        font-size: 16px;
        line-height: 1.5;
    }

    .merit-description {
        font-size: 13px;
        line-height: 1.6;
    }

    /* CTA */
    .cta {
        min-height: 400px;
        padding: 40px 0;
    }

    .cta-content {
        flex-direction: column;
        gap: 30px;
        padding-top: 150px;
    }

    .cta-message {
        padding: 24px 20px;
    }

    .cta-text {
        font-size: 18px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 20px;
        width: 100%;
        max-width: 343px;
    }

    /* 選ばれる3つの理由 */
    .reasons {
        padding-top: 120px;
        padding-bottom: 40px;
    }

    .reasons .section-title {
        top: 30px;
        font-size: 20px;
    }

    .reason-items {
        gap: 20px;
    }

    .reason-item {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
    }

    .reason-image {
        width: 100%;
        max-width: 200px;
        height: auto;
        margin: 0 auto;
    }

    .reason-title {
        font-size: 20px;
        margin-bottom: 12px;
        line-height: 1.3;
    }

    .reason-number {
        margin-right: 8px;
    }

    .reason-description {
        font-size: 14px;
        line-height: 1.6;
    }

    /* 卒FIT */
    .fit {
        min-height: 600px;
        padding: 40px 0;
    }

    .fit-content {
        flex-direction: column;
        gap: 30px;
    }

    .fit-left {
        padding-top: 20px;
    }

    .fit-badge {
        font-size: 11px;
        padding: 10px 16px;
        margin-bottom: 16px;
        line-height: 1.5;
    }

    .fit-title {
        font-size: 28px;
        margin-bottom: 16px;
        line-height: 1.3;
        letter-spacing: 0.4px;
    }

    .fit-subtitle {
        font-size: 24px;
        margin-bottom: 24px;
        line-height: 1.3;
        letter-spacing: 0.4px;
    }

    .fit-description {
        font-size: 14px;
        margin-bottom: 30px;
        letter-spacing: 0.4px;
    }

    .fit-features {
        gap: 16px;
    }

    .fit-feature {
        gap: 12px;
        font-size: 15px;
        line-height: 1.5;
        letter-spacing: 0.4px;
    }

    .feature-icon {
        width: 28px;
        height: 28px;
    }

    .fit-right {
        width: 100%;
        padding: 24px 16px;
        margin-top: 0;
    }

    .fit-comparison-title {
        font-size: 18px;
        margin-bottom: 24px;
    }

    .fit-comparison {
        gap: 16px;
    }

    .comparison-header {
        margin-bottom: 8px;
        flex-wrap: wrap;
        gap: 4px;
    }

    .comparison-label {
        font-size: 12px;
    }

    .comparison-price {
        font-size: 11px;
    }

    .comparison-result {
        font-size: 16px;
        margin-top: 12px;
    }

    .comparison-vs {
        font-size: 18px;
        line-height: 1.5;
    }

    /* FAQ */
    .faq {
        padding: 40px 0;
    }

    .faq-items {
        gap: 12px;
    }

    .faq-question {
        padding: 16px;
    }

    .faq-text {
        font-size: 15px;
        line-height: 1.6;
    }

    .faq-icon {
        font-size: 14px;
        margin-left: 8px;
    }

    .faq-answer p {
        padding: 0 16px 16px;
        font-size: 13px;
        line-height: 1.7;
    }

    /* お客様の声 */
    .voice {
        padding: 40px 0;
    }

    .voice-items {
        gap: 30px;
    }

    .voice-item {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .voice-item.reverse {
        flex-direction: column;
    }

    .voice-avatar {
        width: 100px;
        height: 100px;
    }

    .voice-bubble {
        padding: 20px;
    }

    .voice-bubble::before {
        display: none;
    }

    .voice-text {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .voice-author {
        font-size: 12px;
    }

    /* お問い合わせ */
    .contact {
        min-height: 500px;
        padding-top: 120px;
        padding-bottom: 40px;
    }

    .contact .wave-top {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cg%3E%3Crect fill='%23ffffff' x='0' y='0' width='1440' height='60'/%3E%3Cpolygon fill='%23ffffff' points='720,80 780,60 660,60'/%3E%3C/g%3E%3C/svg%3E");
    }

    .contact .section-title {
        top: 30px;
        font-size: 20px;
    }

    .contact-subtitle {
        font-size: 20px;
        margin-top: 40px;
        margin-bottom: 24px;
        line-height: 1.6;
    }

    .contact-text {
        font-size: 16px;
        margin-bottom: 40px;
        line-height: 1.6;
    }

    .contact-buttons {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    /* フッター */
    .footer {
        padding: 30px 0;
    }

    .footer-intro {
        font-size: 13px;
        margin-bottom: 24px;
        line-height: 2;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        font-size: 12px;
        line-height: 1.7;
    }

    .footer-company p:first-child,
    .footer-business p:first-child {
        font-weight: 700;
    }

    /* ページトップへ戻るボタン */
    .back-to-top {
        bottom: 20px;
        right: 20px;
    }
}
