/* ========================================
   報告書ページ専用CSS
   BEM命名規則 / CSS変数管理
======================================== */

/* ----------------------------------------
   CSS変数（デザイントークン）
---------------------------------------- */
:root {
    --report-color-main: #0c71c5;
    --report-color-main-light: #6ba9dc;
    --report-color-main-lighter: #b3d3ee;
    --report-color-main-lightest: #e2eff9;
    --report-color-accent: #fa9500;
    --report-color-accent-light: #fcbf66;
    --report-color-accent-lightest: #fef4e5;
    --report-color-text: #000;
    --report-color-text-sub: #333;
    --report-color-gray: #f9f9f9;
    --report-color-gray-dark: #d4d4d4;
    --report-color-gray-darker: #535353;
    --report-color-white: #fff;
    --report-corner-small: 8px;
    --report-corner-large: 16px;
    --report-corner-full: 1000px;
    --report-font-base: 'Noto Sans JP', sans-serif;
    --report-font-accent: 'Lato', 'Noto Sans JP', sans-serif;
}

/* ----------------------------------------
   グローバルリセット（報告書ページ内）
---------------------------------------- */
.report-page * {
    box-sizing: border-box;
    font-feature-settings: 'palt';
}

.report-page {
    font-family: var(--report-font-base);
    color: var(--report-color-text);
    line-height: 1.8;
    overflow-x: hidden;
}

/* ----------------------------------------
   共通ユーティリティ
---------------------------------------- */
.report-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ----------------------------------------
   FVセクション
---------------------------------------- */
.report-fv {
    width: 100%;
    padding-top: 190px;
    padding-bottom: 190px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 1%, rgba(255, 255, 255, 0.33) 100%), url('./images/report/reports-fv__bg.webp') no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

/* パターンオーバーレイ */
.report-fv::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(data:image/svg+xml;base64,PHN2ZyAgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjMpIiBoZWlnaHQ9IjU2cHgiIHdpZHRoPSI1NnB4IiB2aWV3Qm94PSIwIDAgNTYgNTYiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTI4LDI4SDU2VjU2SDI4Wk0wLDBIMjhWMjhIMFoiLz48L3N2Zz4=);
    background-size: 10px 10px;
    pointer-events: none;
}

/* 底部ウェーブディバイダー */
.report-fv::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDBweCIgdmlld0JveD0iMCAwIDEyODAgMTQwIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxnIGZpbGw9IiNmZmZmZmYiPjxwYXRoIGQ9Ik0wIDQ3LjQ0TDE3MCAwbDYyNi40OCA5NC44OUwxMTEwIDg3LjExbDE3MC0zOS42N1YxNDBIMFY0Ny40NHoiIGZpbGwtb3BhY2l0eT0iLjUiLz48cGF0aCBkPSJNMCA5MC43MmwxNDAtMjguMjggMzE1LjUyIDI0LjE0TDc5Ni40OCA2NS44IDExNDAgMTA0Ljg5bDE0MC0xNC4xN1YxNDBIMFY5MC43MnoiLz48L2c+PC9zdmc+);
    background-size: 100% 100px;
    z-index: 1;
    pointer-events: none;
}

.report-fv__heading {
    position: relative;
    display: inline-block;
    z-index: 2;
}

.report-fv__paint {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 403px;
    height: auto;
    pointer-events: none;
    z-index: 0;
}

.report-fv .report-fv__title {
    position: relative;
    z-index: 1;
    display: inline-block;
    color: var(--report-color-text);
    font-size: 50px;
    font-weight: 600;
    font-family: var(--report-font-base);
    letter-spacing: 2px;
    line-height: 1.1em;
    margin: 0;
    padding: 14px 115px;
}

/* ----------------------------------------
   Heroセクション
---------------------------------------- */
.report-hero {
    background: var(--report-color-white);
    padding: 64px 0 32px;
    overflow: hidden;
}

.report-hero__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

.report-hero__bg-deco {
    position: absolute;
    top: 60%;
    left: 54.5%;
    width: 49.5%;
    height: auto;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.report-hero__title {
    font-size: 32px;
    font-weight: bold;
    color: var(--report-color-main);
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.report-hero__title-br--sp {
    display: none;
}

.report-hero__content {
    display: flex;
    gap: 32px;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.report-hero__text {
    font-size: 18px;
    line-height: 1.8;
    max-width: 480px;
    flex: 1;
}

.report-hero__thumb {
    max-width: 480px;
    width: 100%;
    height: 320px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.report-hero__thumb-img {
    position: absolute;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.12);
    object-fit: cover;
}

.report-hero__thumb-img--01 {
    left: 0;
    top: 0;
    width: 183px;
    height: 276px;
}

.report-hero__thumb-img--02 {
    left: 28px;
    top: 19px;
    width: 193px;
    height: 294px;
}

.report-hero__thumb-img--03 {
    left: 230px;
    top: 0;
    width: 183px;
    height: 277px;
}

.report-hero__thumb-img--04 {
    left: 258px;
    top: 19px;
    width: 204px;
    height: 294px;
}

.report-hero__thumb-img-sp {
    display: none;
}

/* ----------------------------------------
   Featuresセクション
---------------------------------------- */
.report-features {
    padding: 32px 0;
}

.report-features__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

.report-features__grid {
    display: flex;
    gap: 16px;
}

.report-features__col {
    flex: 1;
    background: var(--report-color-gray);
    border: 1px solid var(--report-color-gray-dark);
    border-radius: 4px;
    overflow: hidden;
}

.report-features__header {
    background: var(--report-color-gray-dark);
    padding: 24px 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    align-items: center;
    justify-content: center;
}

.report-features__number {
    background: var(--report-color-main);
    padding: 8px 32px;
    font-size: 24px;
    font-weight: bold;
    color: var(--report-color-gray);
    line-height: 1.5;
    white-space: nowrap;
    flex-shrink: 0;
}

.report-features__title-text {
    font-size: 32px;
    font-weight: bold;
    color: var(--report-color-gray-darker);
    line-height: 1.5;
}

.report-features__content {
    padding: 0 32px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.report-features__point-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    padding-top: 24px;
}

.report-features__point-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.report-features__point-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: var(--report-color-main);
    color: var(--report-color-white);
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.report-features__point-text {
    font-size: 18px;
    line-height: 1.8;
}

.report-features__point-text strong {
    color: var(--report-color-main);
}

.report-features__images {
    display: flex;
    gap: 8px;
}

.report-features__img-wrap {
    flex: 1;
}

.report-features__img-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

/* ----------------------------------------
   Aboutセクション
---------------------------------------- */
.report-about {
    padding: 32px 0;
}

.report-about__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

.report-about__title-wrap {
    max-width: 800px;
    margin: 0 auto;
    background: var(--report-color-main-lightest);
    border: 1px solid var(--report-color-main-light);
    padding: 24px 32px;
    text-align: center;
}

.report-about__title {
    font-size: 32px;
    font-weight: bold;
    color: var(--report-color-main);
    line-height: 1.5;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.report-about__content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    padding: 0 32px 32px;
    margin-top: 32px;
}

.report-about__img-wrap {
    max-width: 480px;
    width: 100%;
}

@media (min-width: 1200px) {
    .report-about__content {
        flex-direction: row;
    }

    .report-about__img-wrap {
        flex-shrink: 0;
    }
}

.report-about__img-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

.report-about__text-area {
    max-width: 720px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.report-about__paragraph {
    font-size: 18px;
    line-height: 1.8;
}

.report-about__paragraph--quote {
    font-size: 18px;
    font-weight: bold;
    color: var(--report-color-gray-darker);
    line-height: 1.8;
}

.report-about__paragraph--highlight {
    font-size: 18px;
    font-weight: bold;
    color: var(--report-color-main);
    line-height: 1.8;
}

/* ----------------------------------------
   共通セクションタイトル
---------------------------------------- */
.report-section-title-wrap--blue {
    max-width: 800px;
    margin: 0 auto;
    background: var(--report-color-main-lightest);
    border: 1px solid var(--report-color-main-light);
    padding: 24px 32px;
    text-align: center;
}

.report-section-title--blue {
    font-size: 32px;
    font-weight: bold;
    color: var(--report-color-main);
    line-height: 1.5;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.report-section-title-wrap--orange {
    max-width: 800px;
    margin: 0 auto;
    background: var(--report-color-accent-lightest);
    border: 1px solid var(--report-color-accent-light);
    padding: 24px 32px;
    text-align: center;
}

.report-section-title--orange {
    font-size: 32px;
    font-weight: bold;
    color: var(--report-color-accent);
    line-height: 1.5;
    word-break: keep-all;
    overflow-wrap: break-word;
}

/* ----------------------------------------
   Report Surveyセクション（青テーマ）
---------------------------------------- */
.report-survey {
    padding: 32px 0;
}

.report-survey__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

.report-survey__content {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.report-survey__desc {
    max-width: 640px;
    width: 100%;
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
}

.report-survey__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
    width: 100%;
}

.report-survey__card {
    background: var(--report-color-gray);
    border: 2px solid var(--report-color-main);
    border-radius: var(--report-corner-small);
    padding: 24px;
    position: relative;
    display: grid;
    grid-template-rows: 200px auto;
    row-gap: 16px;
}

.report-survey__card-number {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    background: var(--report-color-main);
    border-radius: 60px;
    font-size: 24px;
    font-weight: bold;
    color: var(--report-color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.report-survey__card-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
    display: block;
}

.report-survey__card-text {
    font-size: 18px;
    line-height: 1.8;
}

/* ----------------------------------------
   Report Completionセクション（オレンジテーマ）
---------------------------------------- */
.report-completion {
    padding: 32px 0;
}

.report-completion__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

.report-completion__content {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.report-completion__desc {
    max-width: 640px;
    width: 100%;
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
}

.report-completion__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
    width: 100%;
}

.report-completion__card {
    background: var(--report-color-gray);
    border: 2px solid var(--report-color-accent);
    border-radius: var(--report-corner-small);
    padding: 24px;
    position: relative;
    display: grid;
    grid-template-rows: 220px auto;
    row-gap: 16px;
}

.report-completion__card-number {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    background: var(--report-color-accent);
    border-radius: 60px;
    font-size: 24px;
    font-weight: bold;
    color: var(--report-color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.report-completion__card-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
    display: block;
}

.report-completion__card-text {
    font-size: 18px;
    line-height: 1.8;
}

/* ----------------------------------------
   Voiceセクション（お客様の声）
---------------------------------------- */
.report-voice {
    padding: 32px 0;
}

.report-voice__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

.report-voice__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding-top: 24px;
}

.report-voice__card {
    border: 1px solid var(--report-color-gray-dark);
    border-radius: var(--report-corner-small);
    background: var(--report-color-white);
    overflow: hidden;
}

.report-voice__card-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* ----------------------------------------
   CTAセクション
---------------------------------------- */
.report-cta {
    background: var(--report-color-main-lighter);
    padding: 64px 40px;
}

.report-cta__inner {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.report-cta__balloon {
    background: var(--report-color-white);
    padding: 16px 40px;
    border-radius: var(--report-corner-small);
    text-align: center;
    position: relative;
    filter: drop-shadow(0px 1px 4px rgba(0, 0, 0, 0.25));
}

.report-cta__balloon-text {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.6;
    font-family: var(--report-font-base);
    word-break: keep-all;
    overflow-wrap: break-word;
}

.report-cta__balloon-highlight {
    font-size: 32px;
    font-weight: bold;
    color: var(--report-color-main);
}

.report-cta__balloon::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--report-color-white);
}

.report-cta__desc {
    font-size: 24px;
    line-height: 1.75;
    text-align: center;
    color: var(--report-color-text-sub);
    font-family: var(--report-font-base);
}

.report-cta__desc-highlight {
    font-weight: bold;
    color: var(--report-color-main);
}

.report-cta__box {
    background: var(--report-color-main-lightest);
    border-radius: var(--report-corner-large);
    padding: 24px 12px;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.08);
    width: 100%;
    container-type: inline-size;
}

.report-cta__box-title {
    font-size: 32px;
    font-weight: bold;
    color: var(--report-color-main);
    text-align: center;
    margin-bottom: 24px;
    font-family: var(--report-font-base);
}

.report-cta__buttons {
    display: flex;
    gap: 16px;
    max-width: 640px;
    margin: 0 auto;
}

/* 見積もりボタン */
.report-cta__btn-estimate {
    flex: 1;
    position: relative;
    background: var(--report-color-white);
    border: 1px solid var(--report-color-main);
    border-radius: var(--report-corner-small);
    padding: 16px 32px 16px 48px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 320px;
    width: 100%;
    margin: 0 auto;
    transition: background 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

.report-cta__btn-estimate:hover {
    background: var(--report-color-main-lightest);
}

.report-cta__btn-estimate-badge {
    position: absolute;
    top: -25px;
    left: -17px;
    width: 64px;
    height: 64px;
    background: var(--report-color-main);
    border-radius: 140px;
    font-size: 24px;
    font-weight: bold;
    color: var(--report-color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--report-font-base);
    flex-shrink: 0;
    line-height: 1;
}

.report-cta__btn-estimate-text {
    font-size: 24px;
    font-weight: bold;
    color: var(--report-color-main);
    line-height: 1.25;
    text-align: center;
    font-family: var(--report-font-base);
}

/* 電話ボタン */
.report-cta__btn-tel {
    flex: 1;
    position: relative;
    background: var(--report-color-accent);
    border-radius: var(--report-corner-small);
    padding: 20px 32px 16px;
    text-align: center;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    max-width: 320px;
    width: 100%;
    margin: 0 auto;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.report-cta__btn-tel:hover {
    opacity: 0.9;
}

.report-cta__btn-tel-label {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--report-color-white);
    border: 1px solid var(--report-color-accent);
    border-radius: var(--report-corner-full);
    padding: 4px 16px;
    font-size: 16px;
    font-weight: bold;
    color: var(--report-color-accent);
    line-height: 1.25;
    white-space: nowrap;
    font-family: var(--report-font-accent);
}

.report-cta__btn-tel-number {
    font-size: 24px;
    font-weight: 900;
    color: var(--report-color-white);
    font-family: var(--report-font-accent);
    line-height: 1.25;
    letter-spacing: 1px;
}

.report-cta__btn-tel-time {
    font-size: 14px;
    font-weight: bold;
    color: var(--report-color-accent-lightest);
    font-family: var(--report-font-base);
    line-height: 1.25;
}

/* ========================================
   レスポンシブ対応
======================================== */

/* ----------------------------------------
   980px以下（タブレット）
---------------------------------------- */
@media (max-width: 980px) {
    .report-fv {
        padding-top: 125px;
        padding-bottom: 125px;
    }

    .report-fv__title {
        font-size: 50px;
    }

    .report-hero__inner,
    .report-features__inner,
    .report-about__inner,
    .report-survey__inner,
    .report-completion__inner,
    .report-voice__inner {
        padding: 0 24px;
    }

    .report-survey__cards {
        grid-template-columns: repeat(2, 1fr);
        max-width: 560px;

    }

    .report-completion__cards {
        grid-template-columns: repeat(2, 1fr);
        max-width: 560px;

    }

    .report-hero {
        padding: 48px 0 24px;
    }

    .report-features,
    .report-about,
    .report-survey,
    .report-completion,
    .report-voice {
        padding: 24px 0;
    }
}

/* ----------------------------------------
   768px以下（モバイル）
---------------------------------------- */
@media (max-width: 768px) {
    /* FV */
    .report-fv {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .report-fv::after {
        height: 60px;
        background-size: 100% 60px;
    }

    .report-fv .report-fv__title {
        font-size: 32px;
        padding: 12px 48px;
        word-break: auto-phrase;
        text-align: center;
    }

    .report-fv__paint {
        width: 280px;
        bottom: -30px;
    }

    /* Hero */
    .report-hero {
        padding: 32px 0 16px;
    }

    .report-hero__inner {
        padding: 0 16px;
    }

    .report-hero__title {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .report-hero__title-br--sp {
        display: block;
    }

    .report-hero__content {
        flex-direction: column;
    }

    .report-hero__text {
        font-size: 16px;
        max-width: 100%;
    }

    .report-hero__thumb {
        max-width: 100%;
        height: auto;
    }

    .report-hero__thumb-img {
        display: none;
    }

    .report-hero__thumb-img-sp {
        display: block;
        width: 100%;
        height: auto;
        position: static;
        box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.12);
    }

    .report-hero__bg-deco {
        width: 60%;
        opacity: 0.15;
    }

    /* Features */
    .report-features {
        padding: 16px 0;
    }

    .report-features__inner {
        padding: 0 16px;
    }

    .report-features__grid {
        flex-direction: column;
    }

    .report-page .report-features__point-list {
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    .report-features__title-text {
        font-size: 24px;
    }

    .report-features__number {
        font-size: 18px;
        padding: 6px 20px;
    }

    .report-features__header {
        flex-direction: column;
        padding: 16px 20px;
        gap: 8px;
    }

    .report-features__content {
        padding: 0 16px 24px;
    }

    .report-features__point-text {
        font-size: 16px;
    }


    /* About */
    .report-about {
        padding: 16px 0;
    }

    .report-about__inner {
        padding: 0 16px;
    }

    .report-about__title {
        font-size: 24px;
    }

    .report-about__content {
        padding: 0 0 24px;
        margin-top: 24px;
        gap: 24px;
    }

    .report-about__paragraph {
        font-size: 16px;
    }

    .report-about__paragraph--quote {
        font-size: 16px;
    }

    .report-about__paragraph--highlight {
        font-size: 16px;
    }

    /* セクションタイトル共通 */
    .report-section-title--blue,
    .report-section-title--orange {
        font-size: 24px;
    }

    .report-section-title-wrap--blue,
    .report-section-title-wrap--orange {
        padding: 16px 20px;
        max-width: 560px;
    }

    /* Report Survey */
    .report-survey {
        padding: 16px 0;
    }

    .report-survey__inner {
        padding: 0 16px;
    }

    .report-survey__content {
        padding: 0 0 24px;
    }

    .report-survey__desc {
        font-size: 16px;
    }

    .report-survey__cards {
        grid-template-columns: 1fr;
    }

    .report-survey__card {
        grid-template-rows: auto auto;
    }

    .report-survey__card-img {
        height: auto;
    }

    .report-survey__card-text {
        font-size: 16px;
    }

    /* Report Completion */
    .report-completion {
        padding: 16px 0;
    }

    .report-completion__inner {
        padding: 0 16px;
    }

    .report-completion__content {
        padding: 0 0 24px;
    }

    .report-completion__desc {
        font-size: 16px;
    }

    .report-completion__cards {
        grid-template-columns: 1fr;
    }

    .report-completion__card {
        grid-template-rows: auto auto;
    }

    .report-completion__card-img {
        height: auto;
    }

    .report-completion__card-text {
        font-size: 16px;
    }

    /* Voice */
    .report-voice {
        padding: 16px 0;
    }

    .report-voice__inner {
        padding: 0 16px;
    }

    .report-voice__grid {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin: 0 auto;
    }

    /* CTA */
    .report-cta {
        padding: 40px 16px;
    }

    .report-cta__balloon-text {
        font-size: 18px;
    }

    .report-cta__balloon-highlight {
        font-size: 24px;
    }

    .report-cta__desc {
        font-size: 18px;
    }
    
    .report-cta__box {
        max-width: 640px;
    }

    .report-cta__box-title {
        font-size: 24px;
    }

    .report-cta__buttons {
        max-width: 100%;
        gap: 24px;
    }

    .report-cta__btn-estimate {
        padding: 20px 24px 16px 40px;
    }

    .report-cta__btn-estimate-text {
        font-size: 18px;
    }

    .report-cta__btn-tel-number {
        font-size: 20px;
    }
}

/* ----------------------------------------
   480px以下（モバイル-small）
---------------------------------------- */

@media (max-width: 480px) {

.report-fv .report-fv__title {
    font-size: 24px;
    padding: 12px 24px;
}

}

/* ----------------------------------------
   report-cta__boxのコンテナクエリ（横幅400px以下でボタンを縦並びに）
---------------------------------------- */
@container (max-width: 480px) {
    .report-cta__buttons {
        flex-direction: column;
        justify-content: center;
        gap: 16px;
    }
}