@charset "UTF-8";

:root {
    --color-base: #ffffff;
    --color-surface: #f4f8fc;
    --color-surface-blue: #eef6ff;
    --color-main: #145ca8;
    --color-main-dark: #0c3f75;
    --color-main-light: #2878cc;
    --color-accent: #3b9847;
    --color-accent-dark: #277a34;
    --color-text: #14202b;
    --color-text-sub: #526273;
    --color-line: #dbe5ef;
    --shadow-card: 0 1rem 3rem rgba(22, 63, 101, 0.1);
    --shadow-button: 0 0.75rem 1.75rem rgba(44, 137, 56, 0.24);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 3.85rem;
}

/* 基本リセットは kiso.css に委譲（style.css より前で読み込む）。
   以下はこのサイト固有の最小上書きのみ。 */
button {
    /* kiso.css は button に 1px ボーダーを付与するため、装飾ボタン向けに打ち消す */
    border: 0;
}

.l-body {
    min-width: 20rem;
    color: var(--color-text);
    background: var(--color-base);
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    letter-spacing: 0.03em;
    -webkit-font-smoothing: antialiased;
}

.l-header {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(219, 229, 239, 0.7);
    backdrop-filter: blur(0.75rem);
    transition: box-shadow 0.25s ease;
}

.l-header.is-scrolled {
    box-shadow: 0 0.5rem 1.5rem rgba(18, 54, 86, 0.08);
}

.l-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(100% - 2rem, 75rem);
    min-height: 4.25rem;
    margin-inline: auto;
}

.l-main {
    overflow: hidden;
}

.c-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-main-dark);
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
}

.c-logo__mark {
    display: grid;
    width: 2rem;
    place-items: center;
    color: var(--color-main-light);
}

.c-logo__icon {
    display: block;
    width: 100%;
    height: auto;
}

.c-logo__text {
    font-size: 1.05rem;
    letter-spacing: 0.07em;
}

.c-header-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    min-height: 2.6rem;
    padding: 0.55rem 0.85rem;
    color: #fff;
    background: var(--color-accent);
    border-radius: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.3;
    text-decoration: none;
}

.c-header-cta__wide {
    display: none;
}

.c-header-cta__icon {
    width: 1rem;
    height: 1rem;
}

.c-heading {
    color: var(--color-text);
    font-weight: 700;
    letter-spacing: 0.035em;
}

.c-heading--hero {
    /* kiso.css は h1 に margin-block:0.67em を残すため、上マージンを明示的に打ち消す */
    margin: 0 0 1.25rem;
    font-size: clamp(1.5rem, 6.4vw, 2.05rem);
    line-height: 1.5;
}

.c-heading__keyword {
    color: var(--color-text);
}

.c-heading__accent {
    color: var(--color-main-light);
    font-weight: 800;
}

.c-heading--section {
    font-size: clamp(1.45rem, 5.6vw, 2.35rem);
    line-height: 1.45;
    text-align: center;
}

.c-heading--left {
    text-align: left;
}

.c-heading--card {
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    line-height: 1.5;
    text-align: center;
}

.c-heading--item {
    margin-bottom: 0.45rem;
    font-size: 1.05rem;
    line-height: 1.55;
}

.c-heading--contact {
    margin-bottom: 1rem;
    color: #fff;
    font-size: clamp(1.8rem, 7vw, 2.6rem);
    line-height: 1.45;
}

.c-inner {
    width: min(100% - 2rem, 70rem);
    margin-inline: auto;
}

.c-section {
    padding: 4.5rem 0;
}

.c-section-intro {
    margin-bottom: 2.25rem;
}

.c-section-intro__eyebrow {
    margin-bottom: 0.7rem;
    color: var(--color-main);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-align: center;
}

.c-section-intro .c-heading--section {
    margin-bottom: 1rem;
}

.c-section-intro__lead {
    max-width: 42rem;
    margin-inline: auto;
    color: var(--color-text-sub);
    font-size: 0.9rem;
    line-height: 1.9;
    text-align: center;
}

.c-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    min-height: 4.25rem;
    padding: 0.85rem 0.7rem 0.85rem 1rem;
    border-radius: 0.75rem;
    font-weight: 700;
    line-height: 1.45;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease;
}

.c-button--primary {
    color: #fff;
    background: linear-gradient(135deg, #4cab59, #2f8b3c);
    box-shadow: var(--shadow-button);
}

.c-button__document {
    flex: 0 0 auto;
    width: 1.55rem;
    height: 1.75rem;
}

.c-button__text {
    flex: 1 1 auto;
    font-size: 0.95rem;
}

.c-button__arrow {
    display: grid;
    flex: 0 0 auto;
    width: 2rem;
    height: 2rem;
    color: var(--color-accent-dark);
    background: #fff;
    border-radius: 50%;
    place-items: center;
}

.c-button__arrow-icon {
    width: 1rem;
    height: 1rem;
}

.p-hero {
    position: relative;
    padding: 6.4rem 0 0;
    background: radial-gradient(circle at 90% 16%, rgba(92, 174, 234, 0.25), transparent 32%), linear-gradient(155deg, #fff 0%, #fff 49%, #ecf7ff 72%, #d9edfb 100%);
}

.p-hero::before {
    position: absolute;
    top: 4.25rem;
    right: -8rem;
    width: 22rem;
    height: 22rem;
    background-image: radial-gradient(rgba(41, 120, 204, 0.16) 1px, transparent 1px);
    background-size: 1rem 1rem;
    border-radius: 50%;
    content: "";
    mask-image: radial-gradient(circle, #000 0, transparent 72%);
    pointer-events: none;
}

.p-hero__glow {
    position: absolute;
    top: 18rem;
    left: -8rem;
    width: 20rem;
    height: 20rem;
    background: rgba(113, 190, 241, 0.16);
    border-radius: 50%;
    filter: blur(1rem);
}

.p-hero__inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 2.75rem;
    width: min(100% - 2rem, 75rem);
    margin-inline: auto;
}

.p-hero__content {
    position: relative;
    z-index: 3;
}

.p-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 2rem;
    margin-bottom: 1.15rem;
    padding: 0.25rem 0.85rem;
    color: var(--color-main);
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid #7ab4ec;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.p-hero__lead {
    margin-bottom: 1.5rem;
    color: #344454;
    font-size: 0.8rem;
    line-height: 1.9;
}

.p-hero__points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.45rem;
    margin-bottom: 1.35rem;
}

.p-hero__point {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 5.3rem;
    padding: 0.55rem 0.2rem;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid #d4e1ed;
    border-radius: 0.65rem;
    box-shadow: 0 0.5rem 1.1rem rgba(22, 63, 101, 0.06);
    text-align: center;
}

.p-hero__point-icon {
    display: grid;
    width: 1.65rem;
    height: 1.65rem;
    margin-bottom: 0.25rem;
    color: var(--color-main-light);
    border: 1px solid currentColor;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 700;
    place-items: center;
}

.p-hero__point-svg {
    width: 1.15rem;
    height: 1.15rem;
}

.p-hero__point-text {
    display: block;
    color: var(--color-text-sub);
    font-size: 0.57rem;
    line-height: 1.5;
}

.p-hero__point-strong {
    display: block;
    color: var(--color-main-dark);
    font-size: 0.73rem;
}

.p-hero__button {
    margin-bottom: 0.85rem;
}

.p-hero__note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    color: #42724a;
    font-size: 0.73rem;
    text-align: center;
}

.p-hero__note-icon {
    width: 1rem;
    height: 1rem;
}

.p-hero__visual {
    position: relative;
    width: 100%;
    height: 22rem;
    margin-inline: auto;
}

.p-hero__visual::before {
    position: absolute;
    right: -25%;
    bottom: -20%;
    width: 150%;
    height: 70%;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    content: "";
    filter: blur(0.2rem);
    transform: rotate(-5deg);
}

.p-phone {
    position: absolute;
    z-index: 3;
    bottom: 0.2rem;
    left: 3%;
    width: 8.5rem;
    height: 18.25rem;
    padding: 0.35rem;
    background: linear-gradient(120deg, #0f1114, #4d5156 50%, #0a0b0c 70%);
    border: 1px solid #7a7d80;
    border-radius: 1.6rem;
    box-shadow: 0.8rem 1.1rem 1.8rem rgba(18, 50, 79, 0.25);
    transform: rotate(-4deg);
}

.p-phone__speaker {
    position: absolute;
    z-index: 4;
    top: 0.7rem;
    left: 50%;
    width: 2.4rem;
    height: 0.7rem;
    background: #050607;
    border-radius: 999px;
    transform: translateX(-50%);
}

.p-phone__screen {
    height: 100%;
    overflow: hidden;
    background: #fff;
    border-radius: 1.3rem;
    font-size: 0.36rem;
}

.p-phone__brand {
    padding: 1.6rem 0.6rem 0.25rem;
}

.p-phone__google {
    color: #2a78cf;
    font-size: 0.62rem;
    font-weight: 700;
}

.p-phone__search {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0.5rem 0.3rem;
    padding: 0.35rem 0.45rem;
    background: #f5f6f8;
    border: 1px solid #e2e5e9;
    border-radius: 999px;
    color: #30343a;
}

.p-phone__tabs {
    display: flex;
    justify-content: space-around;
    padding: 0.2rem 0.3rem;
    color: #737b84;
    border-bottom: 1px solid #e6e9ed;
}

.p-phone__tabs strong {
    color: #2878cc;
}

.p-phone__map {
    position: relative;
    height: 4.8rem;
    overflow: hidden;
    background: linear-gradient(27deg, transparent 46%, #fff 47%, #fff 52%, transparent 53%), linear-gradient(95deg, transparent 43%, #fff 44%, #fff 49%, transparent 50%), repeating-linear-gradient(0deg, rgba(174, 211, 164, 0.65) 0 0.8rem, transparent 0.8rem 1.5rem), #e4f0dc;
}

.p-phone__road {
    position: absolute;
    width: 150%;
    height: 0.22rem;
    background: #f3c96a;
}

.p-phone__road--one {
    top: 1.2rem;
    left: -1rem;
    rotate: -13deg;
}

.p-phone__road--two {
    top: 3.3rem;
    left: -1rem;
    rotate: 18deg;
}

.p-phone__pin {
    position: absolute;
    width: 0.55rem;
    height: 0.55rem;
    background: #ed584a;
    border: 0.12rem solid #fff;
    border-radius: 50% 50% 50% 0;
    box-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.2);
    rotate: -45deg;
}

.p-phone__pin--one {
    top: 1rem;
    left: 1.2rem;
}
.p-phone__pin--two {
    top: 2.7rem;
    left: 4.2rem;
}
.p-phone__pin--three {
    top: 1.8rem;
    right: 1rem;
}

.p-phone__result {
    display: flex;
    flex-direction: column;
    padding: 0.48rem 0.55rem;
    border-bottom: 1px solid #e7e9ec;
    color: #555d66;
    line-height: 1.45;
}

.p-phone__result strong {
    margin-bottom: 0.12rem;
    color: #252b31;
    font-size: 0.39rem;
}

.p-phone__result em {
    color: #edae22;
    font-style: normal;
    letter-spacing: -0.1em;
}

.p-report {
    position: absolute;
    width: 13.6rem;
    min-height: 17.6rem;
    padding: 0.8rem;
    background: #fff;
    border: 1px solid #dce4ec;
    box-shadow: 1rem 1.5rem 2.5rem rgba(18, 50, 79, 0.16);
}

.p-report--front {
    z-index: 2;
    right: 0.2rem;
    bottom: 0.8rem;
    transform: rotate(3deg);
}

.p-report--back {
    z-index: 1;
    right: -6rem;
    bottom: -0.3rem;
    transform: rotate(9deg);
}

.p-report__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 0.6rem;
    padding-bottom: 0.35rem;
    border-bottom: 1px solid #8bb5df;
}

.p-report__logo {
    color: var(--color-main-dark);
    font-size: 0.47rem;
    font-weight: 700;
}

.p-report__date {
    color: #788692;
    font-size: 0.25rem;
}

.p-report__title {
    margin-bottom: 0.3rem;
    color: #223546;
    font-size: 0.38rem;
    font-weight: 700;
}

.p-report__overview {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 0.4rem;
    margin-bottom: 0.65rem;
}

.p-report__mini-map {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.22rem;
    height: 3.8rem;
    padding: 0.35rem;
    overflow: hidden;
    background: #e8f3e8;
    border: 1px solid #dce6df;
}

.p-report__mini-map::before,
.p-report__mini-map::after {
    position: absolute;
    z-index: 1;
    background: #fff;
    content: "";
}

.p-report__mini-map::before {
    top: 45%;
    left: -10%;
    width: 120%;
    height: 0.18rem;
    rotate: 10deg;
}
.p-report__mini-map::after {
    top: -10%;
    left: 45%;
    width: 0.18rem;
    height: 120%;
    rotate: -8deg;
}

.p-report__mini-map span {
    position: relative;
    z-index: 2;
    align-self: center;
    width: 0.3rem;
    height: 0.3rem;
    background: #69c7b6;
    border-radius: 50%;
}

.p-report__mini-map i {
    position: absolute;
    z-index: 3;
    top: 45%;
    left: 55%;
    width: 0.55rem;
    height: 0.55rem;
    background: #e65745;
    border: 0.12rem solid #fff;
    border-radius: 50% 50% 50% 0;
    rotate: -45deg;
}

.p-report__score {
    display: flex;
    align-items: baseline;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    padding: 0.55rem 0.25rem;
    color: var(--color-main-dark);
    background: #f6f9fc;
    border: 1px solid #dce5ee;
    border-radius: 0.3rem;
}

.p-report__score small {
    width: 100%;
    font-size: 0.28rem;
    text-align: center;
}
.p-report__score strong {
    font-size: 1.1rem;
    line-height: 1.2;
}
.p-report__score span {
    font-size: 0.25rem;
}

.p-report__list {
    margin-bottom: 0.55rem;
    padding: 0.25rem 0.35rem;
    background: #f7f9fb;
    border: 1px solid #e1e6eb;
    border-radius: 0.25rem;
}

.p-report__list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.18rem 0;
    color: #56616b;
    border-bottom: 1px solid #e7ebef;
    font-size: 0.27rem;
}

.p-report__list li:last-child {
    border-bottom: 0;
}

.p-report__rank {
    display: grid;
    width: 0.75rem;
    height: 0.75rem;
    color: #fff;
    border-radius: 50%;
    font-size: 0.27rem;
    place-items: center;
}

.p-report__rank--high {
    background: #ed6658;
}
.p-report__rank--mid {
    background: #edb548;
}
.p-report__rank--low {
    background: #5d92c6;
}

.p-report__chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 3rem;
    padding: 0.35rem 0.6rem 0;
    background: repeating-linear-gradient(0deg, #e8edf1 0 1px, transparent 1px 0.75rem);
    border: 1px solid #e3e8ed;
}

.p-report__chart span {
    width: 0.65rem;
    height: var(--bar);
    background: linear-gradient(#3d8de0, #6eb4ef);
    border-radius: 0.1rem 0.1rem 0 0;
}

.p-report__advice {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 0.6rem;
    padding: 0.65rem;
    background: #f5f9fd;
    border: 1px solid #dce7f0;
    color: #64717d;
    font-size: 0.3rem;
}

.p-report__advice strong {
    color: var(--color-main-dark);
    font-size: 0.36rem;
}

.p-hero__bubble {
    position: absolute;
    z-index: 5;
    display: grid;
    width: 5.2rem;
    height: 5.2rem;
    color: var(--color-main);
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid #7eb6ec;
    border-radius: 50%;
    box-shadow: 0 0.7rem 1.5rem rgba(19, 71, 117, 0.1);
    font-size: 0.58rem;
    font-weight: 700;
    line-height: 1.65;
    place-items: center;
    text-align: center;
}

.p-hero__bubble::after {
    position: absolute;
    width: 1rem;
    height: 1rem;
    background: #fff;
    border-right: 1px solid #7eb6ec;
    border-bottom: 1px solid #7eb6ec;
    content: "";
    rotate: 45deg;
}

.p-hero__bubble--top {
    top: -1.4rem;
    right: 0;
}
.p-hero__bubble--top::after {
    bottom: 0.15rem;
    left: -0.1rem;
}
.p-hero__bubble--bottom {
    right: 0.8rem;
    bottom: -0.3rem;
}
.p-hero__bubble--bottom::after {
    top: -0.1rem;
    left: 0.8rem;
    rotate: 225deg;
}

.p-hero__trust {
    position: relative;
    z-index: 4;
    margin-top: 1.6rem;
    padding: 1.3rem 1rem;
    background: rgba(255, 255, 255, 0.9);
    border-top: 1px solid rgba(184, 208, 230, 0.75);
    text-align: center;
}

.p-hero__trust-title {
    margin-bottom: 0.75rem;
    color: var(--color-text-sub);
    font-size: 0.7rem;
    font-weight: 600;
}

.p-hero__trust-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.p-hero__trust-item {
    padding: 0 0.8rem;
    color: var(--color-main-dark);
    border-right: 1px solid #cbd9e5;
    font-size: 0.7rem;
    font-weight: 700;
}

.p-hero__trust-item:last-child {
    border-right: 0;
}

.p-concerns {
    background: var(--color-base);
}

.p-concerns__list {
    display: grid;
    gap: 0.75rem;
}

.p-concerns__item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    min-height: 5.25rem;
    padding: 1.15rem 1.1rem;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: 0.75rem;
    box-shadow: 0 0.8rem 2rem rgba(23, 62, 96, 0.06);
}

.p-concerns__number {
    color: #80add6;
    font-family: Arial, sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
}

.p-concerns__text {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.7;
}

.p-insights {
    background: var(--color-surface);
}

.p-insights__grid {
    display: grid;
    gap: 1rem;
}

.p-insights__card {
    position: relative;
    padding: 2rem 1.35rem 1.6rem;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: 0.8rem;
    box-shadow: 0 0.8rem 2rem rgba(23, 62, 96, 0.06);
}

.p-insights__number {
    display: grid;
    width: 2.5rem;
    height: 2.5rem;
    margin: 0 auto 1rem;
    color: #fff;
    background: var(--color-main-light);
    border-radius: 50%;
    font-family: Arial, sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    place-items: center;
}

.p-insights__text {
    color: var(--color-text-sub);
    font-size: 0.88rem;
    line-height: 1.85;
    text-align: center;
}

.p-report-detail {
    background: #fff;
}

.p-report-detail__inner {
    display: grid;
    gap: 2.5rem;
}

.p-report-detail__content .c-section-intro__eyebrow {
    text-align: left;
}

.p-report-detail__content .c-heading--section {
    margin-bottom: 1.25rem;
}

.p-report-detail__lead {
    margin-bottom: 1.5rem;
    color: var(--color-text-sub);
    font-size: 0.9rem;
    line-height: 1.9;
}

.p-report-detail__list {
    display: grid;
    gap: 0.7rem;
}

.p-report-detail__item {
    position: relative;
    display: flex;
    flex-direction: column;
    padding-left: 1.8rem;
}

.p-report-detail__item::before {
    position: absolute;
    top: 0.42rem;
    left: 0;
    width: 1.1rem;
    height: 1.1rem;
    background: var(--color-main-light);
    border-radius: 50%;
    content: "";
}

.p-report-detail__item::after {
    position: absolute;
    top: 0.7rem;
    left: 0.28rem;
    width: 0.55rem;
    height: 0.3rem;
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    content: "";
    rotate: -45deg;
}

.p-report-detail__item-title {
    margin-bottom: 0.05rem;
    font-size: 0.9rem;
}

.p-report-detail__item-text {
    color: var(--color-text-sub);
    font-size: 0.77rem;
}

.p-report-sheet {
    position: relative;
    padding: 1.25rem;
    background: #fff;
    border: 1px solid #d8e3ed;
    box-shadow: 1rem 1.2rem 2.8rem rgba(19, 58, 93, 0.13);
}

.p-report-sheet::before {
    position: absolute;
    top: -0.6rem;
    left: 50%;
    width: 3.5rem;
    height: 1.05rem;
    background: rgba(148, 179, 205, 0.32);
    content: "";
    translate: -50% 0;
    rotate: -2deg;
}

.p-report-sheet__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 0.55rem;
    border-bottom: 1px solid #8db8de;
}

.p-report-sheet__brand {
    color: var(--color-main-dark);
    font-size: 0.74rem;
    font-weight: 700;
}

.p-report-sheet__page {
    color: #8a98a5;
    font-size: 0.54rem;
}

.p-report-sheet__title {
    margin-bottom: 0.5rem;
    color: #31475a;
    font-size: 0.72rem;
    font-weight: 700;
}

.p-report-sheet__summary {
    display: grid;
    grid-template-columns: 1fr 1.55fr;
    gap: 0.65rem;
    margin-bottom: 1rem;
}

.p-report-sheet__score,
.p-report-sheet__comment {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 7rem;
    padding: 0.7rem;
    background: #f5f9fd;
    border: 1px solid #e0e8ef;
    border-radius: 0.4rem;
}

.p-report-sheet__score {
    align-items: center;
    color: var(--color-main-dark);
}

.p-report-sheet__score span {
    font-size: 0.62rem;
}
.p-report-sheet__score strong {
    color: var(--color-main-light);
    font-size: 2rem;
    line-height: 1.2;
}
.p-report-sheet__score small {
    font-size: 0.58rem;
}
.p-report-sheet__comment strong {
    margin-bottom: 0.35rem;
    color: var(--color-main-dark);
    font-size: 0.7rem;
}
.p-report-sheet__comment span {
    color: var(--color-text-sub);
    font-size: 0.58rem;
    line-height: 1.65;
}

.p-report-sheet__row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.55rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid #e3e9ee;
}

.p-report-sheet__row strong {
    font-size: 0.68rem;
}
.p-report-sheet__row small {
    color: #788692;
    font-size: 0.55rem;
}

.p-report-sheet__rank {
    display: grid;
    width: 1.55rem;
    height: 1.55rem;
    color: #fff;
    border-radius: 50%;
    font-size: 0.56rem;
    font-weight: 700;
    place-items: center;
}

.p-report-sheet__rank--high {
    background: #df6b5f;
}
.p-report-sheet__rank--mid {
    background: #d8a43a;
}
.p-report-sheet__rank--low {
    background: #5c8ebd;
}

.p-report-sheet__note {
    margin-top: 0.85rem;
    color: var(--color-main);
    font-size: 0.6rem;
    text-align: center;
}

.p-improvements {
    background: var(--color-surface);
}

.p-improvements__list {
    display: grid;
    gap: 0.85rem;
    margin-bottom: 1.25rem;
}

.p-improvements__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.35rem 1.2rem;
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: 0.75rem;
    box-shadow: 0 0.7rem 1.8rem rgba(23, 62, 96, 0.05);
}

.p-improvements__icon {
    display: grid;
    flex: 0 0 auto;
    width: 2.7rem;
    height: 2.7rem;
    color: var(--color-main);
    background: var(--color-surface-blue);
    border: 1px solid #c8def1;
    border-radius: 50%;
    font-size: 0.84rem;
    font-weight: 700;
    place-items: center;
}

.p-improvements__text {
    color: var(--color-text-sub);
    font-size: 0.84rem;
    line-height: 1.8;
}

.p-improvements__note {
    color: var(--color-main-dark);
    font-size: 0.78rem;
    font-weight: 600;
    text-align: center;
}

.p-reason {
    position: relative;
    overflow: hidden;
    background: #edf6fd;
}

.p-reason::before {
    position: absolute;
    right: -8rem;
    bottom: -10rem;
    width: 24rem;
    height: 24rem;
    border: 1px solid rgba(40, 120, 204, 0.12);
    border-radius: 50%;
    content: "";
}

.p-reason__inner {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 2rem;
}

.p-reason__content .c-section-intro__eyebrow {
    text-align: left;
}

.p-reason__content .c-heading--section {
    margin-bottom: 1.25rem;
}

.p-reason__text {
    margin-bottom: 1rem;
    color: var(--color-text-sub);
    font-size: 0.88rem;
    line-height: 1.95;
}

.p-reason__text:last-child {
    margin-bottom: 0;
}

.p-reason__promises {
    display: grid;
    gap: 0.65rem;
}

.p-reason__promise {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    column-gap: 0.7rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #d3e3f0;
    border-radius: 0.65rem;
}

.p-reason__promise strong {
    color: var(--color-main-dark);
    font-size: 0.88rem;
}
.p-reason__promise small {
    grid-column: 2;
    color: var(--color-text-sub);
    font-size: 0.7rem;
}

.p-reason__check {
    display: grid;
    grid-row: 1 / 3;
    width: 2rem;
    height: 2rem;
    color: #fff;
    background: var(--color-accent);
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 700;
    place-items: center;
}

.p-diagnosis {
    background: var(--color-surface);
}

.p-diagnosis__inner {
    display: grid;
    gap: 2.5rem;
}

.p-diagnosis__content .c-section-intro__eyebrow {
    text-align: left;
}

.p-diagnosis__lead {
    margin-top: 1.35rem;
    margin-bottom: 1.5rem;
    color: var(--color-text-sub);
    font-size: 0.92rem;
}

.p-diagnosis__check-list {
    display: grid;
    gap: 0.65rem;
}

.p-diagnosis__check-item {
    position: relative;
    padding-left: 1.75rem;
    font-size: 0.88rem;
    font-weight: 600;
}

.p-diagnosis__check-item::before {
    position: absolute;
    top: 0.42rem;
    left: 0;
    width: 1.1rem;
    height: 1.1rem;
    background: var(--color-main-light);
    border-radius: 50%;
    content: "";
}

.p-diagnosis__check-item::after {
    position: absolute;
    top: 0.7rem;
    left: 0.28rem;
    width: 0.55rem;
    height: 0.3rem;
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    content: "";
    rotate: -45deg;
}

.p-diagnosis__card {
    position: relative;
    padding: 1.3rem;
    background: #fff;
    border: 1px solid #d9e4ed;
    border-radius: 0.8rem;
    box-shadow: var(--shadow-card);
}

.p-diagnosis__card::before {
    position: absolute;
    top: -0.6rem;
    right: 1rem;
    width: 2.6rem;
    height: 0.9rem;
    background: rgba(144, 180, 211, 0.32);
    content: "";
    rotate: 4deg;
}

.p-diagnosis__card-label {
    margin-bottom: 1rem;
    padding-bottom: 0.65rem;
    color: var(--color-main-dark);
    border-bottom: 1px solid #b7cee2;
    font-size: 0.9rem;
    font-weight: 700;
}

.p-diagnosis__score-row {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 0.7rem;
    margin-bottom: 0.8rem;
}

.p-diagnosis__score,
.p-diagnosis__summary {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 6.5rem;
    padding: 0.7rem;
    background: #f5f9fd;
    border: 1px solid #e1e9f0;
    border-radius: 0.5rem;
    text-align: center;
}

.p-diagnosis__score span,
.p-diagnosis__summary span {
    color: var(--color-text-sub);
    font-size: 0.64rem;
}
.p-diagnosis__score strong {
    color: var(--color-main-light);
    font-size: 2rem;
    line-height: 1.2;
}
.p-diagnosis__score small {
    color: var(--color-text-sub);
    font-size: 0.6rem;
}
.p-diagnosis__summary strong {
    margin-bottom: 0.3rem;
    color: var(--color-main-dark);
    font-size: 0.9rem;
}

.p-diagnosis__priority {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid #e4e9ee;
    font-size: 0.7rem;
}

.p-diagnosis__priority span {
    color: var(--color-text-sub);
}
.p-diagnosis__priority strong {
    font-size: 0.72rem;
}
.p-diagnosis__priority b {
    display: grid;
    width: 1.6rem;
    height: 1.6rem;
    color: #fff;
    background: #df6b5f;
    border-radius: 50%;
    place-items: center;
}

.p-diagnosis__caption {
    margin-top: 0.9rem;
    color: var(--color-main);
    font-size: 0.68rem;
    font-weight: 600;
    text-align: center;
}

.p-features__grid {
    display: grid;
    gap: 1rem;
}

.p-features__card {
    padding: 2rem 1.3rem;
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: 0.8rem;
    box-shadow: 0 0.8rem 2rem rgba(23, 62, 96, 0.06);
}

.p-features__icon {
    display: grid;
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.1rem;
    color: var(--color-main-light);
    background: var(--color-surface-blue);
    border-radius: 50%;
    font-size: 1.15rem;
    font-weight: 700;
    place-items: center;
}

.p-features__svg {
    width: 2.4rem;
    height: 2.4rem;
}

.p-features__text {
    color: var(--color-text-sub);
    font-size: 0.86rem;
    text-align: center;
}

.p-flow {
    background: #fff;
}

.p-flow__list {
    display: grid;
    gap: 2rem;
}

.p-flow__item {
    position: relative;
    padding: 1.5rem 1.3rem;
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: 0.8rem;
    text-align: center;
}

.p-flow__item:not(:last-child)::after {
    position: absolute;
    bottom: -1.45rem;
    left: 50%;
    width: 0.7rem;
    height: 0.7rem;
    border-right: 2px solid #94b7d6;
    border-bottom: 2px solid #94b7d6;
    content: "";
    rotate: 45deg;
    transform: translateX(-50%);
}

.p-flow__step {
    display: block;
    margin-bottom: 0.3rem;
    color: var(--color-main-light);
    font-family: Arial, sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.p-flow__title {
    display: block;
    margin-bottom: 0.45rem;
    font-size: 1.05rem;
}

.p-flow__text {
    color: var(--color-text-sub);
    font-size: 0.8rem;
}

.p-faq {
    background: var(--color-surface);
}

.p-faq__inner {
    max-width: 54rem;
}

.p-faq__list {
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: 0.8rem;
    box-shadow: 0 0.8rem 2.3rem rgba(23, 62, 96, 0.06);
}

.p-faq__item {
    border-bottom: 1px solid var(--color-line);
}

.p-faq__item:last-child {
    border-bottom: 0;
}

.p-faq__question-heading {
    font-size: 1rem;
}

.p-faq__question {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    min-height: 4.75rem;
    padding: 1rem;
    color: var(--color-text);
    background: transparent;
    text-align: left;
    cursor: pointer;
}

.p-faq__q,
.p-faq__a {
    color: var(--color-main-light);
    font-family: Arial, sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
}

.p-faq__a {
    color: var(--color-accent);
}

.p-faq__question-text {
    font-size: 0.86rem;
    font-weight: 700;
    line-height: 1.65;
}

.p-faq__toggle {
    --faq-rotate: 0deg;
    position: relative;
    width: 1.35rem;
    height: 1.35rem;
}

.p-faq__toggle::before,
.p-faq__toggle::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.9rem;
    height: 1px;
    background: var(--color-main);
    content: "";
    translate: -50% -50%;
    transition: rotate 0.25s ease;
}

.p-faq__toggle::after {
    rotate: calc(90deg + var(--faq-rotate));
}

.p-faq__question.is-open .p-faq__toggle {
    --faq-rotate: 90deg;
}

.p-faq__answer {
    grid-template-columns: auto 1fr;
    gap: 0.75rem;
    padding: 0 1rem 1.25rem;
}

.p-faq__answer:not([hidden]) {
    display: grid;
}

.p-faq__answer-text {
    color: var(--color-text-sub);
    font-size: 0.82rem;
    line-height: 1.85;
}

.p-contact {
    position: relative;
    padding: 4.5rem 0;
    overflow: hidden;
    background: linear-gradient(135deg, #0e477c, #1768ad);
}

.p-contact::before {
    position: absolute;
    top: -10rem;
    right: -8rem;
    width: 24rem;
    height: 24rem;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 50%;
    content: "";
}

.p-contact__inner {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 2.3rem;
}

.p-contact__eyebrow {
    margin-bottom: 0.55rem;
    color: #b8dcfb;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.p-contact__lead {
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.88rem;
}

.p-contact__points {
    display: grid;
    gap: 0.5rem;
}

.p-contact__point {
    position: relative;
    padding-left: 1.4rem;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
}

.p-contact__point::before {
    position: absolute;
    top: 0.53rem;
    left: 0;
    width: 0.75rem;
    height: 0.4rem;
    border-bottom: 2px solid #93dd9c;
    border-left: 2px solid #93dd9c;
    content: "";
    rotate: -45deg;
}

.p-form {
    padding: 1.5rem 1.2rem;
    background: #fff;
    border-radius: 0.85rem;
    box-shadow: 0 1.5rem 3.5rem rgba(0, 30, 60, 0.2);
}

.p-form__list {
    margin-bottom: 1.25rem;
}

.p-form__description {
    margin-bottom: 1rem;
}

.p-form__description:last-child {
    margin-bottom: 0;
}

.p-form__label {
    display: block;
    margin-bottom: 0.35rem;
    color: #263746;
    font-size: 0.78rem;
    font-weight: 700;
}

.p-form__required {
    display: inline-block;
    margin-left: 0.3rem;
    padding: 0.05rem 0.35rem;
    color: #b64e45;
    background: #fff0ee;
    border-radius: 0.2rem;
    font-size: 0.58rem;
    vertical-align: 0.08rem;
}

.p-form__input {
    width: 100%;
    min-height: 3rem;
    padding: 0.75rem 0.85rem;
    color: var(--color-text);
    background: #fbfcfd;
    border: 1px solid #cedae4;
    border-radius: 0.4rem;
    font-size: 0.85rem;
    outline: none;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.p-form__input:focus {
    border-color: var(--color-main-light);
    box-shadow: 0 0 0 0.2rem rgba(40, 120, 204, 0.13);
}

.p-form__input::placeholder {
    color: #9aa7b2;
}

.c-button--form {
    min-height: 4rem;
}

.p-form__privacy {
    margin-top: 0.65rem;
    color: #7b8791;
    font-size: 0.63rem;
    text-align: center;
}

.p-form__message {
    color: var(--color-accent-dark);
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
}

.l-footer {
    padding: 2.2rem 0;
    background: var(--color-surface);
    border-top: 1px solid var(--color-line);
}

.l-footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: min(100% - 2rem, 75rem);
    margin-inline: auto;
}

.c-logo--footer {
    color: #fff;
}

.l-footer__copy {
    color: var(--color-text-sub);
    font-size: 0.64rem;
}

.u-dn-md-min {
    display: inline;
}
.u-dn-md-max {
    display: none;
}

[data-reveal] {
    opacity: 0;
    translate: 0 1rem;
    transition:
        opacity 0.65s ease,
        translate 0.65s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    translate: 0 0;
}

@media (hover: hover) {
    .c-header-cta:hover {
        background: var(--color-accent-dark);
    }
    .c-button:hover {
        background: linear-gradient(135deg, #45a552, #277a34);
        box-shadow: 0 1rem 2.2rem rgba(44, 137, 56, 0.3);
        transform: translateY(-0.15rem);
    }
    .c-logo:hover {
        opacity: 0.78;
    }
    .p-faq__question:hover {
        background: #f8fbfd;
    }
}

@media screen and (min-width: 48rem) {
    .l-header__inner {
        min-height: 5rem;
    }
    .c-logo__mark {
        width: 2.55rem;
    }
    .c-logo__text {
        font-size: 1.3rem;
    }
    .c-header-cta {
        min-height: 3rem;
        padding: 0.65rem 1.1rem;
        font-size: 0.82rem;
    }
    .c-header-cta__wide {
        display: inline;
    }
    .c-header-cta__short {
        display: none;
    }
    .c-section {
        padding: 6.5rem 0;
    }
    .c-section-intro {
        margin-bottom: 3.25rem;
    }
    .c-section-intro__eyebrow {
        font-size: 0.9rem;
    }
    .c-heading--section {
        font-size: 2.35rem;
    }
    .c-heading--contact {
        font-size: 2.5rem;
    }
    .c-button__text {
        font-size: 1rem;
    }
    .u-dn-md-min {
        display: none;
    }
    .u-dn-md-max {
        display: inline;
    }

    .p-hero {
        min-height: 48rem;
        padding-top: 8.5rem;
    }
    .p-hero__inner {
        display: grid;
        grid-template-columns: minmax(22rem, 0.9fr) minmax(27rem, 1.1fr);
        align-items: center;
        gap: 1.2rem;
    }
    .p-hero__eyebrow {
        margin-bottom: 1.45rem;
        padding-inline: 1.1rem;
        font-size: 0.82rem;
    }
    .c-heading--hero {
        margin-bottom: 1.5rem;
        font-size: clamp(1.95rem, 2.9vw, 2.5rem);
        line-height: 1.55;
    }
    .p-hero__lead {
        margin-bottom: 1.6rem;
        font-size: 1rem;
    }
    .p-hero__points {
        gap: 0.65rem;
    }
    .p-hero__point {
        min-height: 5.7rem;
    }
    .p-hero__point-text {
        font-size: 0.61rem;
    }
    .p-hero__point-strong {
        font-size: 0.78rem;
    }
    .p-hero__button {
        max-width: 31rem;
        min-height: 4.6rem;
    }
    .p-hero__note {
        justify-content: flex-start;
        padding-left: 3rem;
        font-size: 0.76rem;
    }
    .p-hero__visual {
        height: 32rem;
    }
    .p-phone {
        left: 0;
        width: 11.3rem;
        height: 24rem;
        border-radius: 2rem;
    }
    .p-phone__screen {
        border-radius: 1.7rem;
    }
    .p-phone__speaker {
        width: 3.2rem;
        height: 0.9rem;
    }
    .p-phone__brand {
        padding-top: 2rem;
    }
    .p-phone__map {
        height: 6.2rem;
    }
    .p-phone__result {
        padding: 0.7rem;
        font-size: 0.45rem;
    }
    .p-phone__result strong {
        font-size: 0.51rem;
    }
    .p-report {
        width: 18rem;
        min-height: 23rem;
        padding: 1.1rem;
    }
    .p-report--front {
        right: 1rem;
        bottom: 1.1rem;
    }
    .p-report--back {
        right: -10rem;
        bottom: -0.5rem;
    }
    .p-report__logo {
        font-size: 0.58rem;
    }
    .p-report__date {
        font-size: 0.3rem;
    }
    .p-report__title {
        font-size: 0.47rem;
    }
    .p-report__overview {
        gap: 0.6rem;
    }
    .p-report__mini-map {
        height: 5rem;
    }
    .p-report__list li {
        font-size: 0.35rem;
    }
    .p-report__chart {
        height: 4.1rem;
    }
    .p-hero__bubble {
        width: 6.2rem;
        height: 6.2rem;
        font-size: 0.68rem;
    }
    .p-hero__bubble--top {
        top: -1rem;
        right: -0.4rem;
    }
    .p-hero__bubble--bottom {
        right: 2rem;
        bottom: -1rem;
    }
    .p-hero__trust {
        margin-top: 3rem;
    }
    .p-hero__trust-title {
        font-size: 0.75rem;
    }
    .p-hero__trust-item {
        padding-inline: 1.8rem;
        font-size: 0.85rem;
    }

    .p-concerns__list {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.2rem;
    }
    .p-concerns__item {
        flex-direction: column;
        align-items: flex-start;
        min-height: 10rem;
        padding: 1.5rem;
    }
    .p-concerns__number {
        font-size: 1.8rem;
    }
    .p-concerns__text {
        font-size: 0.95rem;
    }

    .p-insights__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.2rem;
    }
    .p-insights__card {
        padding: 2.4rem 1.5rem 2rem;
    }
    .p-insights__text {
        font-size: 0.9rem;
    }

    .p-report-detail__inner {
        grid-template-columns: 0.9fr 1fr;
        align-items: center;
        gap: 5rem;
    }
    .p-report-detail__lead {
        font-size: 0.96rem;
    }
    .p-report-detail__item-title {
        font-size: 0.95rem;
    }
    .p-report-detail__item-text {
        font-size: 0.82rem;
    }
    .p-report-sheet {
        padding: 2rem;
    }
    .p-report-sheet__brand {
        font-size: 0.9rem;
    }
    .p-report-sheet__title {
        font-size: 0.82rem;
    }
    .p-report-sheet__score,
    .p-report-sheet__comment {
        min-height: 8rem;
        padding: 1rem;
    }
    .p-report-sheet__score strong {
        font-size: 2.8rem;
    }
    .p-report-sheet__comment strong {
        font-size: 0.82rem;
    }
    .p-report-sheet__comment span {
        font-size: 0.68rem;
    }
    .p-report-sheet__row strong {
        font-size: 0.78rem;
    }

    .p-improvements__list {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.2rem;
    }
    .p-improvements__item {
        flex-direction: column;
        align-items: center;
        padding: 2rem 1.5rem;
        text-align: center;
    }
    .p-improvements__icon {
        width: 3.4rem;
        height: 3.4rem;
        font-size: 1rem;
    }
    .p-improvements__text {
        font-size: 0.88rem;
    }
    .p-improvements__note {
        font-size: 0.86rem;
    }

    .p-reason__inner {
        grid-template-columns: 1.1fr 0.8fr;
        align-items: center;
        gap: 5rem;
    }
    .p-reason__text {
        font-size: 0.94rem;
    }
    .p-reason__promise {
        padding: 1.25rem;
    }
    .p-reason__promise strong {
        font-size: 0.94rem;
    }
    .p-reason__promise small {
        font-size: 0.75rem;
    }

    .p-flow__list {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.4rem;
    }
    .p-flow__item:not(:last-child)::after {
        top: 50%;
        right: -1rem;
        bottom: auto;
        left: auto;
        rotate: -45deg;
        transform: translateY(-50%);
    }

    .p-faq__question {
        min-height: 5.5rem;
        padding: 1.2rem 1.5rem;
    }
    .p-faq__question-text {
        font-size: 0.95rem;
    }
    .p-faq__answer {
        padding: 0 1.5rem 1.5rem;
    }
    .p-faq__answer-text {
        font-size: 0.9rem;
    }

    .p-contact {
        padding: 6.5rem 0;
    }
    .p-contact__inner {
        grid-template-columns: 0.8fr 1fr;
        align-items: center;
        gap: 5rem;
    }
    .p-form {
        padding: 2rem;
    }
    .l-footer__inner {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media screen and (min-width: 75rem) {
    .p-hero__inner {
        gap: 2.5rem;
    }
    .p-phone {
        left: 1rem;
    }
    .p-report--front {
        right: 1.7rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
    [data-reveal] {
        opacity: 1;
        translate: none;
    }
}

/* ===== 追加: 見出し折返し / アンカー余白 / ヘッダーナビ / 運営者 / 同意 ===== */
.c-heading--hero {
    word-break: normal;
    overflow-wrap: normal;
    line-break: strict;
}
.c-heading__nb {
    white-space: nowrap;
}

/* 名前のふりがな（ruby） */
.p-author__name rt {
    font-size: 0.5em;
    font-weight: 500;
    color: var(--color-text-sub);
    letter-spacing: 0.05em;
}

/* フォーム送信の状態表示 */
.p-form__message.is-error {
    color: #c0392b;
}
.p-form__done {
    padding: 1rem 0.5rem;
    text-align: center;
}
.p-form__done-title {
    margin-bottom: 0.5rem;
    color: var(--color-main-dark);
    font-size: 1.1rem;
    font-weight: 700;
}
.p-form__done-text {
    color: var(--color-text-sub);
    font-size: 0.9rem;
    line-height: 1.9;
}

/* 改行はブラウザの自動最適化(text-wrap:balance/pretty・auto-phrase)に任せず、
   標準の折返しで固定する。スマホ/PC/デバイスモードで改行位置を一致させ再現性を確保。
   意図的な改行が必要な箇所は nb(nowrap)スパンや <br> で明示する。 */
.c-heading--section,
.c-heading--contact,
.c-heading--card,
.c-heading--item,
.c-heading--left,
.p-faq__question-text,
.p-author__name,
.p-author__role,
.c-section-intro__lead,
.p-hero__lead,
.p-report-detail__lead,
.p-reason__text,
.p-author__text,
.p-improvements__note,
.p-faq__answer-text,
.p-insights__text,
.p-concerns__text,
.p-contact__lead {
    word-break: normal;
}

/* アンカー到達時の固定ヘッダー分オフセット（html の scroll-padding-top で一元管理） */
@media screen and (min-width: 48rem) {
    html {
        scroll-padding-top: 4rem;
    }
}

/* グリッド項目が min-width:auto で広がり、auto-phrase の長い文節がはみ出すのを防ぐ */
.p-reason__content,
.p-reason__promises,
.p-report-detail__content,
.p-report-sheet,
.p-contact__intro,
.p-form,
.p-author__content,
.p-author__card {
    min-width: 0;
}

/* ヘッダーナビ（デスクトップのみ表示） */
.l-header__nav {
    display: none;
}
.l-header__nav-list {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    margin: 0;
    padding: 0;
    list-style: none;
}
.l-header__nav-link {
    color: var(--color-text);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

/* 運営者セクション */
.p-author__inner {
    display: grid;
    gap: 2rem;
}
.p-author__content .c-section-intro__eyebrow {
    text-align: left;
}
.p-author__content .c-heading--section {
    margin-bottom: 1.25rem;
}
.p-author__text {
    margin-bottom: 1rem;
    color: var(--color-text-sub);
    font-size: 0.88rem;
    line-height: 1.95;
}
.p-author__text:last-child {
    margin-bottom: 0;
}
.p-author__card {
    display: grid;
    justify-items: center;
    gap: 0.4rem;
    padding: 1.75rem;
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: 0.85rem;
    box-shadow: var(--shadow-card);
    text-align: center;
}
.p-author__photo {
    display: block;
    width: 8rem;
    height: 10rem;
    margin-bottom: 0.4rem;
    object-fit: cover;
    border-radius: 0.65rem;
}
.p-author__name {
    color: var(--color-text);
    font-size: 1.15rem;
    font-weight: 700;
}
.p-author__role {
    color: var(--color-main);
    font-size: 0.8rem;
    font-weight: 700;
}
.p-author__bio {
    color: var(--color-text-sub);
    font-size: 0.8rem;
    line-height: 1.8;
}

/* フォーム同意チェック */
.p-form__consent {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--color-text-sub);
    font-size: 0.72rem;
    line-height: 1.7;
    cursor: pointer;
}
.p-form__consent-check {
    flex: 0 0 auto;
    width: 1.1rem;
    height: 1.1rem;
    margin-top: 0.15rem;
    accent-color: var(--color-accent);
}
.p-form__consent-link {
    color: var(--color-main);
    text-decoration: underline;
}

@media (hover: hover) {
    .l-header__nav-link:hover {
        color: var(--color-main);
    }
    .p-form__consent-link:hover {
        text-decoration: none;
    }
}

@media screen and (min-width: 48rem) {
    .p-author__inner {
        grid-template-columns: 1.2fr 0.8fr;
        align-items: center;
        gap: 4rem;
    }
    .p-author__text {
        font-size: 0.94rem;
    }
    .p-author__photo {
        width: 10rem;
        height: 12.5rem;
    }
}

@media screen and (min-width: 62rem) {
    .l-header__nav {
        display: block;
        margin-inline: auto;
    }
    .l-burger {
        display: none;
    }
    .l-drawer {
        display: none;
    }
}

/* ハンバーガー（モバイルのみ表示） */
.l-burger {
    position: relative;
    z-index: 101;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.6rem;
    height: 2.6rem;
    margin-left: 0.4rem;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    --bar1-y: 0;
    --bar1-rot: 0deg;
    --bar2-op: 1;
    --bar3-y: 0;
    --bar3-rot: 0deg;
}
.l-burger__lines {
    position: relative;
    display: block;
    width: 1.5rem;
    height: 0.9rem;
}
.l-burger__lines span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition:
        translate 0.25s ease,
        rotate 0.25s ease,
        opacity 0.2s ease;
}
.l-burger__lines span:nth-child(1) {
    top: 0;
    translate: 0 var(--bar1-y);
    rotate: var(--bar1-rot);
}
.l-burger__lines span:nth-child(2) {
    top: 50%;
    margin-top: -1px;
    opacity: var(--bar2-op);
}
.l-burger__lines span:nth-child(3) {
    bottom: 0;
    translate: 0 var(--bar3-y);
    rotate: var(--bar3-rot);
}
.l-burger.is-active {
    --bar1-y: 0.4rem;
    --bar1-rot: 45deg;
    --bar2-op: 0;
    --bar3-y: -0.4rem;
    --bar3-rot: -45deg;
}

/* ドロワー */
.l-drawer {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: grid;
    place-items: center;
    padding: 5.5rem 1.5rem 2.5rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(0.5rem);
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}
.l-drawer.is-open {
    opacity: 1;
    visibility: visible;
}
.l-drawer__nav {
    width: 100%;
    max-width: 22rem;
}
.l-drawer__list {
    display: grid;
    gap: 0.2rem;
    margin: 0 0 1.5rem;
    padding: 0;
    list-style: none;
}
.l-drawer__link {
    display: block;
    padding: 1rem 0.5rem;
    color: var(--color-text);
    font-size: 1.05rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    border-bottom: 1px solid var(--color-line);
}
.l-drawer__cta {
    max-width: none;
}

body.is-drawer-open {
    overflow: hidden;
}

@media (hover: hover) {
    .l-drawer__link:hover {
        color: var(--color-main);
    }
}

/* デスクトップではハンバーガー/ドロワーを完全に無効化（記述順で基本ルールに勝たせる） */
@media screen and (min-width: 62rem) {
    .l-burger {
        display: none;
    }
    .l-drawer {
        display: none;
    }
}

/* フッターのプライバシーリンク（明背景で可読性確保） */
.l-footer__link {
    color: var(--color-main);
    text-decoration: underline;
}
@media (hover: hover) {
    .l-footer__link:hover {
        color: var(--color-main-dark);
    }
}

/* ブランドロゴ画像（miyachi381.jp の公式ロゴ）。ヘッダー・フッター共通サイズ */
.c-logo__img {
    display: block;
    width: auto;
    height: 2.5rem;
}

@media screen and (min-width: 48rem) {
    .c-logo__img {
        height: 3.1rem;
    }
}

/* フォーム内 意向ラジオグループ */
.p-form__choice-group {
    margin-bottom: 1rem;
}

.p-form__choice-label {
    display: block;
    margin-bottom: 0.5rem;
    color: #263746;
    font-size: 0.78rem;
    font-weight: 700;
}

.p-form__choice-list {
    display: grid;
    gap: 0.45rem;
}

.p-form__radio {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.p-form__radio-input {
    flex: 0 0 auto;
    width: 1.1rem;
    height: 1.1rem;
    accent-color: var(--color-main-light);
    cursor: pointer;
}

.p-form__radio-text {
    color: var(--color-text-sub);
    font-size: 0.82rem;
    line-height: 1.6;
}
