@charset "UTF-8";
/* font
-----------------------------------------------------*/
/* sans-serif */
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/NotoSansJP-Regular.woff2") format("woff2"), url("../assets/fonts/NotoSansJP-Regular.woff") format("woff");
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: bold;
  font-weight: 700;
  font-display: swap;
  src: url("../assets/fonts/NotoSansJP-Bold.woff2") format("woff2"), url("../assets/fonts/NotoSansJP-Bold.woff") format("woff");
}
@font-face {
  font-family: "Noto Serif CJK JP";
  font-style: normal;
  font-weight: 400;
  src: url("../assets/fonts/NotoSerifCJKjp-Regular.woff") format("woff");
}
@font-face {
  font-family: "Noto Serif CJK JP";
  font-style: bold;
  font-weight: 700;
  src: url("../assets/fonts/NotoSerifCJKjp-Bold.woff") format("woff");
}

/* --- Modern Reset CSS --- */

/* 全ての要素で余白をリセットし、サイズ計算を直感的にする */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* テキストのレンダリングを最適化し、スクロールを滑らかにする */
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%; /* iOSのフォントサイズ自動調整を防止 */
     font-size: 16px;
     letter-spacing: 0.1rem;
}

body {
    -webkit-font-smoothing: antialiased; /* 文字をくっきりさせる */
    -moz-osx-font-smoothing: grayscale;
    overflow-wrap: break-word; /* 長い単語の改行を許可 */
}

/* リンクのデフォルト装飾（下線など）を消す */
a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}
a:hover {
    opacity: 0.8;
}
h1, h2, h3, h4 {font-weight: normal;}
/* リストの黒丸を消す */
ul, ol {
    list-style: none;
}

/* 画像が親要素からはみ出さないようにし、下の隙間を消す */
img {
    max-width: 100%;
    height: auto;
}

/* フォーム要素のフォントをbodyに合わせる */
input, button, textarea, select {
    font: inherit;
    color: inherit;
}

/* ボタンのデフォルトスタイルをリセット */
button {
    background: none;
    border: none;
    cursor: pointer;
    outline: none;
}
        :root {
            --primary-blue: #151850;
            --accent-orange: #DE550B;
            --light-yellow: #F0F0F0;
            --text-yellow: #F7E900;
            --bg-gray: #f8f9fb;
        }

        body {
            margin: 0;
            font-family: Arial, "Noto Sans JP", sans-serif;
            color: var(--primary-blue);
            line-height: 1.8;
            overflow-x: hidden;
            text-align: center;
        }
        .yellow {color: var(--text-yellow);}
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .section-title {
            font-size: clamp(30px, 4vw, 50px);
            text-align: center;
            margin-bottom: 40px;
            position: relative;
            letter-spacing: 0.2rem;
        }
        .section-title:after {
            width: 80px;
            height: 4px;
            background-color: var(--primary-blue);
            content: '';
            display: block;
            margin: 0 auto;
        }
        .section-subtitle {
            font-size: 28px;
            font-weight: bold;
        }

        .highlight { color: var(--accent-orange);}
        .small {font-size: 80%;}
        .inline-block {display: inline-block;}
        .block {display: block;}
        .bold {font-weight: bold;}
        .center {text-align: center;margin-inline: auto;}
        .mb1 {margin-bottom: 1rem;}
        .mb2 {margin-bottom: 2rem;}
        .mb3 {margin-bottom: 3rem;}
        .mb4 {margin-bottom: 4rem;}

/* ===============================
  header
=============================== */
header {
    background-color: var(--primary-blue);
}
header .logo {
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 15px 50px;
}

header img {
    margin-right: 1rem;
    max-width: 250px;
    width: 50%;
}
header span.sub {
    margin-left: 1rem;
    font-size: 18px;
}

/* ===============================
  MV
=============================== */
.mv {
  position: relative;
  background: url(images/bg_mv.jpg) center/cover no-repeat;
  padding: 30px 20px 70px;
  overflow: hidden;
  line-height: 1.4;
}

.mv__inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}
/* ===============================
  パネル
=============================== */
.mv__panel {
  background: url(images/mv.png) center top/cover no-repeat;
  background-size: 1075px 544px;
  padding: 70px 40px 30px;
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.mv__pro {
    position: absolute;
    left: 72%;
    bottom: 0;
    z-index: 2;
}
@media (max-width: 970px) {
    .mv__pro {
    width: 40%;
    }
}
@media (max-width: 768px) {
    .mv__pro {
        left: calc(50% - 120px);
        width: 240px;
    }
}

.mv__title {
  font-size: 42px;
  padding: 10px;
  margin-bottom: 16px;
  font-weight: bold;
  border-top: 3px solid;
  border-bottom: 3px solid;
  display: inline-block;
  letter-spacing: -0.01em;
  font-feature-settings: "palt";
}

.mv__lead {
  font-size: 23px;
  font-weight: bold;
  margin-bottom: 10px;
}

.mv__highlight {
  background: #ffe600;
  padding: 2px 6px;
}

/* ===============================
  CTA
=============================== */
.mv__cta {
    max-width: 430px;
    margin-inline: auto;
    position: relative;
    z-index: 5;
}
@media (max-width: 768px) {
    .mv__cta {
        margin-bottom: 200px;
    }
}
/* ===============================
  下帯
=============================== */
.mv__banner {
  width: calc(100% + 40px);
  max-width: 955px;
  margin-inline: auto;
  margin-top: -20px;
  z-index: 3;
  position: relative;
}
        .cta-btn-main {
            background: var(--accent-orange);
            color: white;
            padding: 20px 50px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 22px;
            display: inline-block;
            box-shadow: 0 5px 0 #c24d10;
            transition: 0.2s;
        }
        .cta-btn-main:hover {
            box-shadow: none;
            transform: translateY(5px);
        }

        /* --- Problems --- */
        .ttl-problem {
            font-size: clamp(22px, 4vw, 42px);
            font-weight: bold;
        }
        .problem-section .section-subtitle {
            color: #fff;
        }
        .problem-section {
            padding: 100px 0;
            text-align: center;
        }
        .problem-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px; margin: 50px 0;
        }
        .problem-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            font-size: 20px;
            font-weight: bold;
        }
        .problem-card img {
            width: 200px;
            border-radius: 50%;
            margin-bottom: 1.5rem;
            display: block;
        }
        .problem-card picture {
            display: block;
        }
        .message-box {
            border-top: 3px solid var(--primary-blue);
            border-bottom: 3px solid var(--primary-blue);
            padding: 40px 0;
            font-size: 28px;
            font-weight: bold;
        }
/* ===============================
  SERVICE
=============================== */
.service-section {
    background-color: var(--primary-blue); /* 濃いネイビー */
    padding: 100px 0;
    color: white;
    text-align: center;
}
.service-section .section-title:after {
    background-color: #fff;
}


/* 吹き出しの白いメインボックス */
.service-main-card {
    font-size: 20px;
    background: #fff;
    color: var(--primary-blue);
    max-width: 1000px;
    margin: 0 auto 4rem;
    padding: 50px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 30px;
    text-align: left;
    position: relative; /* 突起配置用 */
    font-weight: bold;
}

/* 吹き出しの突起（逆三角形） */
.service-main-card::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-top: 25px solid white;
}

.service-text-content {
    flex: 1;
}

.service-highlight-orange {
    color: #f36b21;
}

.service-image {
    width: 280px;
    border-radius: 5px;
    object-fit: cover;
}

/* 調査内容リスト部分 */
.investigation-container {
    margin: 0 auto;
    width: 100%;
    max-width: 630px;
    text-align: left;
    font-size: 24px;
}

.investigation-lead {
    font-size: 18px;
    margin-bottom: 30px;
    display: block;
}

.investigation-list {
    list-style: none;
    padding: 0;
}

.investigation-list li {
    margin-bottom: 5px;
    padding: 0 20px 0 40px;
    font-size: 28px;
    font-weight: bold;
    display: flex;
    align-items: center;
    text-align: left;
    position: relative;
}

/* 縞模様（1つおきに背景色を変更） */
.investigation-list li:nth-child(odd) {
    background-color: #E2F1FA;
    color: #1a2a4c;
}

.investigation-list li:nth-child(even) {
    background-color: transparent;
    color: white;
}

/* チェック（SVG風） */
.investigation-list li::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 50%;
  width: 12px;
  height: 20px;
  border-right: 3px solid #f36b21;
  border-bottom: 3px solid #f36b21;
  transform: translateY(-60%) rotate(45deg);
}

.service-footer-msg {
    margin-top: 50px;
    font-size: 28px;
    line-height: 1.8;
    font-weight: bold;
}

    .msg-yellow {
        color: var(--text-yellow);
    }

/* スマホ対応 */
@media (max-width: 768px) {
    .service-main-card {
        flex-direction: column;
        padding: 30px;
    }
    .service-image {
        width: 100%;
        order: -1; /* 画像を上に */
    }
}
/* ===============================
  VOICE
=============================== */
.voice-section {
    background-color: #D8E9F5;
    padding: 8rem 2rem;
    text-align: center;
}

/* 横スクロールコンテナ */
.voice-scroll-container {
    display: flex;
    gap: 3rem;
    padding: 40px 20px 60px;
    justify-content: center;
}
@media (max-width: 768px) {
    .voice-scroll-container {
        flex-direction: column;
    }
}

    /* 各カードのスタイル */
    .voice-card {
        flex: 0 0 calc(100% / 3 - 50px);
        background: white;
        border-radius: 20px;
        padding: 60px 25px 40px;
        position: relative;
        scroll-snap-align: start;
        text-align: center;
    }

    /* カードの大きな数字 */
    .voice-card-number {
        position: absolute;
        top: -2rem;
        left: 50%;
        transform: translateX(-50%);
        font-size: 70px;
        font-weight: bold;
        line-height: 1;
        z-index: 1;
        font-family: Arial, Helvetica, sans-serif;
    }

    .voice-card-content {
        position: relative;
        z-index: 2;
    }

    .voice-user-img {
        width: 172px;
        height: 172px;
        margin: 0 auto 20px;
        border-radius: 50%;
        overflow: hidden;
    }

    .voice-user-info {
        font-size: 14px;
        font-weight: bold;
        margin-bottom: 15px;
        border-bottom: 5px dotted var(--primary-blue);
        display: inline-block;
        padding-bottom: 3px;
    }

    .voice-card-title {
        font-size: 20px;
        font-weight: bold;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    .voice-card-text {
        font-size: 16px;
        text-align: left;
    }
   
    /* スクロールバーをあえて薄く表示させて「横にある」ことを伝える設定 */
    .voice-scroll-container::-webkit-scrollbar {
        height: 8px;
        display: none;
    }
    .voice-scroll-container::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 10px;
    }
    .voice-scroll-container::-webkit-scrollbar-track {
        background: #f0f4f8;
    }
    
    /* ドラッグ中にテキスト選択されないようにする（操作性向上） */
    .voice-scroll-container {
        user-select: none;
        -webkit-user-select: none;
    }
/* ===============================
  INTRODUCE
=============================== */
.introduce-section {
    padding: 100px 0;
    background-color: #fff;
    text-align: center;
}

/* ===============================
  COMPARISON
=============================== */
.comp-section {
    padding: 100px 0;
    background-color: #f8f9fb;
    text-align: center;
}

/* テーブル全体のコンテナ */
.comp-table-wrapper {
    position: relative;
    overflow-x: auto;
    line-height: 1.2;
}

.comp-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    font-feature-settings: "palt";
    /* table-layout: fixed; */
}

    .comp-table th, .comp-table td {
        border: 2px solid #e0e0e0;
        padding: 2rem 1rem;
        vertical-align: middle;
        text-align: center;
    }

    /* ヘッダー行 */
    .comp-table thead th {
        background-color: var(--primary-blue);
        color: white;
        font-weight: bold;
        font-size: 18px;
        min-width: 210px;
    }

    /* 項目名列 */
    .comp-table td:first-child {
        background-color: var(--primary-blue);
        color: white;
        font-weight: bold;
        width: 200px;
        font-size: 18px;
    }

    /* イエマチカルテ列の強調 */
    .comp-highlight-first {
        border-top: 4px solid #e91e63 !important;
    }
    .comp-highlight {
        border-right: 4px solid #e91e63 !important;
        border-left: 4px solid #e91e63 !important;
        position: relative;
    }

    .comp-table thead th.comp-highlight {
        background-color: #e91e63;
        font-size: 30px;
        line-height: 1;
        min-width: 350px;
    }
    .comp-highlight-last {
        border-bottom: 4px solid #e91e63 !important;
    }
    .comp-table thead th.comp-highlight .small {font-size: 20px;}

    .comp-table td.comp-highlight {
        background-color: #fff;
        color: #e91e63;
        font-weight: bold;
        font-size: 20px;
    }


    .comp-footer-note {
        font-size: 18px;
    }

    @media (max-width: 768px) {
        .comp-table { width: 700px; } /* スマホでは横スクロールさせる */
    }
/* ===============================
  FLOW
=============================== */
.flow-section {
    padding: 100px 0;
    text-align: center;
    background-color: #D8E9F5;
    font-size: 18px;
    font-weight: bold;
}
.flow-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 50px;
}
.flow-box {
    border: 6px solid var(--primary-blue);
    border-radius: 15px;
    padding: 30px 10px;
    flex: 1;
    min-height: 320px;
    background: #fff;
    position: relative;
}
.flow-box::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 16px solid var(--primary-blue);
}
.flow-box:last-child::after {
    content: none;
}
.flow-step {
    background: var(--primary-blue);
    color: white; 
    padding: 3px 15px;
    border-radius: 5px;
    position: absolute; 
    top: -1.5rem;
    left: calc(50% - 42px);
}
        
.flow-box img {
    display: block;
    margin: 0 auto 10px;
}
/* ===============================
  BENEFITS
=============================== */
.benefits-section {
    background: #DE550B;
    padding: 100px 0;
    text-align: center;
    color: white;
    font-weight: bold;
    font-size: 28px;
}
.benefits-section .section-title:after {
    background: #fff;
}
:root {
  --card-bg: #e9e9e9;      /* カード内の薄いグレー */
}

.benefits-card {
  background-color: #E9E9E9;
  border-radius: 40px; /* 大きめの角丸 */
  max-width: 1000px;
  width: 100%;
  padding: 50px 40px;
  text-align: center;
  color: var(--primary-blue);
  margin-inline: auto;
}

.benefits-card h3 {
  font-size: 34px;
  font-weight: bold;
}
.benefits-card-read {
    font-size: 28px;
}

/* ヘッダー周り */
.sub-lead {
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.main-title {
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: 800;
}

/* アイコン（中央のギフト） */
.gift-icon {
  margin: 30px auto;
  width: 80px;
}

/* リスト部分 */
.list-container {
  display: inline-block;
  text-align: left;
  margin-bottom: 40px;
}

.list-wrapper {
  display: inline-block;
  text-align: left;
  margin-bottom: 35px;
}

.list-label {
  display: inline-block;
  border: 2px dotted var(--primary-blue);
  padding: 2px 12px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 2rem;
  font-size: 20px;
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefit-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 0.5rem;
  font-size: 24px;
}

/* --- チェックアイコン --- */
.benefit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 20px;
  height: 20px;
  background-color: var(--primary-blue);
  border-radius: 50%;
}

.benefit-list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 18px;
  width: 8px;
  height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}
@media (max-width: 768px) {
    .benefit-list li::before {
        top: 3px;
    }

    .benefit-list li::after {
        top: 9px;
    }
}
/* 下部の注釈エリア */
.footer-note {
  border-top: 4px solid var(--primary-blue);
  border-bottom: 4px solid var(--primary-blue);
  padding: 0.2rem 0;
  display: inline-block;
}
.marker { background: linear-gradient(transparent 60%, #fff100 60%); }

/* ===============================
  FAQ
=============================== */
.faq-section { padding: 100px 0; background: #F0F0F0; }
.faq-section .container{ max-width: 900px;width: 100%; }
.faq-item {
  background: #ffffff;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  overflow: hidden;
}

/* 質問エリア */
.faq-question {
  display: flex;
  align-items: center;
  padding: 24px 50px 24px 20px;
  cursor: pointer;
  list-style: none;
  position: relative;
  font-weight: bold;
  color: var(--primary-blue);
  font-size: 20px;
  text-align: left;
}

/* デフォルトのマーカー削除 */
.faq-question::-webkit-details-marker {
  display: none;
}

/* Qアイコン: 濃紺背景に白抜き文字 */
.icon-q {
    font-family: Arial, Helvetica, sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--primary-blue);
  color: #ffffff;
  border-radius: 50%;
  margin-right: 20px;
  flex-shrink: 0;
  font-size: 26px;
  font-weight: normal;
}

/* 矢印（疑似要素） */
.faq-question::after {
  content: "";
  position: absolute;
  right: 30px;
  width: 12px;
  height: 12px;
  border-top: 3px solid var(--primary-blue);
  border-right: 3px solid var(--primary-blue);
  transform: rotate(135deg); /* 下向き */
  transition: transform 0.3s ease, top 0.3s ease;
  top: 40%;
}

/* 開いた時の矢印 */
details[open] .faq-question::after {
  transform: rotate(-45deg); /* 上向き */
  top: 50%;
}

/* 回答エリア */
.faq-answer {
  border-top: 1px solid #ddd;
  padding: 2rem 1rem;
  margin: 0 1rem;
}

.answer-content {
  display: flex;
  align-items: flex-start;
}

/* Aアイコン: 白背景に紺の細い枠線 */
.icon-a {
  font-family: Arial, Helvetica, sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 2px solid var(--primary-blue); /* 枠線を細く */
  color: var(--primary-blue);
  background: #ffffff;
  border-radius: 50%;
  margin-right: 20px;
  flex-shrink: 0;
  font-size: 26px;
}

/* 回答テキスト */
.text-group {
  padding-top: 8px; /* アイコンの縦位置と微調整 */
  text-align: left;
  font-weight: bold;
}


/*  ------ 吹き出しセクション --------- */
/* 白色のメインコンテンツセクション */
        .content-section {
            position: relative; /* 吹き出しの基点 */
            padding: 80px 20px 100px; /* 下側に吹き出しのスペースを確保 */
            text-align: center;
            background-color: #ffffff;
            font-size: 28px;
            font-weight: bold;
        }

        .title {
            font-size: 42px;
            font-weight: bold;
            color: #0D1B4D;
            margin-bottom: 30px;
        }

        .highlight {
            color: #E65100;
        }

        /* 吹き出しの三角形部分 */
        .content-section::after {
            content: "";
            position: absolute;
            bottom: -2rem;
            left: 50%;
            transform: translateX(-50%);
            /* 三角形の作成 */
            border-style: solid;
            border-width: 40px 50px 0 50px; /* 上・左右・下のサイズ */
            border-color: #ffffff transparent transparent transparent; /* 上側だけ白 */
            z-index: 10;
        }

        /* 紺色のフッターセクション */
        .bottom-section {
            height: 150px;
            background-color: #1A237E; /* 濃い紺色 */
            /* 画像のような網目模様を入れる場合 */
            background-image: radial-gradient(#283593 1px, transparent 0);
            background-size: 4px 4px;
        }

        /* --- MESSAGE & FINAL CTA --- */
        .final-cta {
            background: url(images/bg_lastcta.jpg) center center no-repeat;
            color: white;
            padding: 100px 0;
            text-align: center;
            position: relative;
            background-size: cover;
        }
        .limit-tag {
            background: white;
            color: var(--accent-orange);
            padding: 5px 20px;
            border-radius: 5px;
            font-weight: bold;
            margin-bottom: 20px;
            display: inline-block;
        }
        .limit-tag span {
            color: #e91e63;
            font-size: 22px;
        }


        /* 上部：青グラデーションセクション */
        .hero-section {
            background: var(--blue-gradient);
            position: relative;
            padding: 60px 20px 100px;
            text-align: center;
            overflow: hidden;
        }

        /* 背景の薄い住宅画像（擬似要素で再現） */
        .hero-section::before {
            content: "";
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: url('house-bg.jpg') center/cover no-repeat;
            opacity: 0.1; /* 薄く表示 */
            pointer-events: none;
        }

        .person-image {
            position: absolute;
            bottom: 0;
            left: 10%;
            height: 90%;
            width: auto;
            z-index: 1;
        }
        @media (max-width: 970px) {
            .person-image {
                left: 2%;
            }
        }
        @media (max-width: 768px) {
            .person-image {
                left: -3%;
                height: 60%;
            }
        }
        @media (max-width: 674px) {
            .person-image {
                width: 240px;
                left: calc(50% - 120px);
                height: auto;
            }
        }
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
        }
        @media (max-width: 674px) {
            .hero-content {
                margin-bottom: 260px;
            }
        }

        .hero-text {
            font-size: 1.5rem;
            line-height: 2;
            font-weight: bold;
            margin-bottom: 40px;
        }
        .yellow-text {
            color: var(--text-yellow);
        }

        /* 下部：紺色セクション */
        .cta-section {
            background-color: #151850;
            padding: 80px 20px;
            text-align: center;
            position: relative;
            color: #fff;
        }
        .form-read {
            font-size: 28px;
        }

        /* 浮いているCTAボタンエリア */
        .cta-container {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            max-width: 590px;
            z-index: 10;
            padding: 0 20px;
        }

        /* 「今月受付」の白いバッジ */
        .badge {
            background: #F0F0F0;
            color: var(--accent-orange);
            padding: 1px 20px;
            border-radius: 50px;
            font-weight: bold;
            font-size: clamp(14px, 4vw, 21px);
            line-height: 1;
            margin-bottom: -20px;
            position: relative;
            z-index: 11;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
            display: inline-flex;
            align-items: center;
            letter-spacing: 0;
        }
        .badge span {
            font-size: 65px;
            margin: 0 5px;
        }

        /* メインのオレンジボタン */
        .btn-orange {
            background-image: linear-gradient(#f7732b, #d74b00);
            color: #fff;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 25px 100px 25px 60px;
            border-radius: 100px;
            font-size: clamp(22px, 4vw, 46px);
            font-weight: bold;
            box-shadow: 0 6px 15px rgba(0,0,0,0.3);
        }
        /* 白い円 */
        .btn-orange::before {
            content: "";
            width: 50px;
            height: 50px;
            background: #fff;
            border-radius: 50%;
            position: absolute;
            top: calc(50% + 25px);
            right: 20px;
            transform: translate(-50%, -50%);
        }

        /* 矢印 */
        .btn-orange::after {
            content: "";
            width: 10px;
            height: 10px;
            border-top: 4px solid #f26522;
            border-right: 4px solid #f26522;
            position: absolute;
            top: calc(50% + 25px);
            right: 57px;
            transform: translate(-60%, -50%) rotate(45deg);
        }

        /* 特典テキスト */
        .gift-info {
            margin-top: 30px;
            font-size: 28px;
            font-weight: bold;
        }

        .gift-highlight {
            background-color: var(--text-yellow);
            color: #000;
            padding: 5px 15px;
            display: inline-block;
            margin-top: 10px;
        }

        .note {
            font-size: 18px;
            margin-top: 15px;
        }
/* ===============================
  FORM
=============================== */
.form-section {
    padding: 100px 0;
    background: #F0F0F0;
    text-align: left;
}
.form {
  max-width: 1000px;
  margin: 50px auto;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #fff;
  padding: 80px 200px;
  border-radius: 60px;
}

.form__group {
  margin-bottom: 24px;
}

.form__label {
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
  font-size: 18px;
}

.form__required {
  display: inline-block;
  background: #e60012;
  color: #fff;
  font-size: 12px;
  padding: 2px 6px;
  margin-left: 8px;
}

.form__row {
  display: flex;
  gap: 12px;
}

.form__row--tel {
  align-items: center;
}

.form__input {
  width: 100%;
  height: 44px;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 0 12px;
  background: #f5f5f5;
}

.form__input--tel {
    width: 30%;
  max-width: 100px;
  text-align: center;
}

.form__dash {
  font-size: 18px;
}

.form__textarea {
  width: 100%;
  height: 120px;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 10px;
  background: #f5f5f5;
  resize: none;
}
.form a {
    text-decoration: underline;
    margin-left: 10px;
}
.form a:hover {
    text-decoration: none;
}
/* ===============================
  固定バナー
=============================== */
.fixed-banner {
  position: fixed;
  right: 20px;
  bottom: 40px;
  z-index: 999;

  opacity: 0;
  transform: translateY(30px);
  transition: all 0.4s ease;
}

/* 表示状態 */
.fixed-banner.is-show {
  opacity: 1;
  transform: translateY(0);
}

.fixed-banner img {
  width: 430px;
  height: auto;
}

/* ===============================
  footer
=============================== */
.footer {
  background: #fff;
  padding: 20px 50px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: clamp(12px, 1.2vw, 18px);
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* 左ブロック */
.footer__left {
  display: flex;
  align-items: center;
  gap: 20px; /* ロゴとナビの間 */
}

/* ナビ横並び */
.footer__nav {
  display: flex;
  gap: 16px;
}
.footer__nav a {
  padding-right: 10px;
  border-right: 2px solid;
}
.footer__nav a:last-child {
  border-right: none;
}
/* コピー右寄せ */
.footer__copy {
  text-align: right;
  color: #1e2a50;
}

@media (max-width: 955px) {
    .mv__banner {
        margin-left: -20px;
    }
}
@media (min-width: 769px) {
    .sp {display: none;}
}
@media (max-width: 768px) {
    .fixed-banner {
    bottom: 0;
    }
    .fixed-banner img {
        width: 250px;
    }
    .pc {display: none;}
    .cta-btn-main {
        display: block;
        width: 100%;
        padding: 16px 20px;
        font-size: 18px;
        text-align: center;
    }
    header .logo {
        padding: 10px;
        font-size: 18px;
    }
    header span {
        white-space: nowrap;
    }
    header span.sub {
        flex-basis: 100%;
        font-size: 12px;
        text-align: left;
        margin-top: 10px;
    }
    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .service-card, .flow-grid, .footer__left {
        flex-direction: column;
    }
    .service-card img {
        order: -1;
    }
    .form {
        padding: 40px 20px;
        border-radius: 30px;
        margin: 20px 0 10px;
    }
    .mv {
        padding: 20px 20px 20px;
    }
    .mv__panel {
        padding: 60px 10px 30px;
    }
    .mv__title {
        font-size: 24px;
    }
    .service-footer-msg, .footer-note, .title {
        font-size: 20px;
    }
    .section-subtitle, .mv__lead, .service-main-card, .faq-question, .benefits-card-read, .list-label, .form-read, .gift-info {
        font-size: 16px;
    }
    .mv__lead, .problem-card, .comp-footer-note, .text-group, .benefits-card h3, .benefit-list li, .description, .form__label, .note {
        font-size: 14px;
    }
    .problem-section {
        padding: 50px 0;
    }
    .problem-grid {
        margin: 20px 0;
        padding: 0 20px;
    }
    .message-box {
        padding: 20px 0;
        font-size: 20px;
    }
    .investigation-list li {
        padding: 5px 5px 5px 40px;
        line-height: 1.2;
        font-size: 16px;
    }
    .service-section, .voice-section, .comp-section, .flow-section, .faq-section, .benefits-section, .content-section, .form-section, .cta-section {
        padding: 50px 0;
    }
    .flow-box {
        width: 100%;
        min-height: auto;
        padding: 30px 10px 20px;
        line-height: 1.4;
    }
    .flow-box::after {
        right: initial;
        top: initial;
        bottom: -26px;
        transform: rotate(90deg);
        left: calc(50% - 0.5em);
    }
    .flow-grid {
        gap: 3rem;
    }
    .faq-answer {
        padding: 20px 5px;
    }
    .faq-question {
        padding: 20px 50px 20px 20px;
    }
    .benefits-card {
        padding: 30px 20px;
    }
    .footer__inner {
        flex-direction: column;
    }
    .footer {
        padding: 20px 10px 70px;
    }
    .footer__nav {
        margin: 10px 0;
    }
}