/* ==========================================================================
   Reset
   ========================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
    margin: 0;
    padding: 0;
}

html {
    -webkit-text-size-adjust: 100%;
}

body {
    min-height: 100vh;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeSpeed;
}

ul[role="list"],
ol[role="list"],
ul,
ol {
    list-style: none;
}

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

img,
picture {
    max-width: 100%;
    display: block;
}

button {
    font: inherit;
    color: inherit;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

/* ==========================================================================
   Base
   ========================================================================== */
:root {
    --color-navy: #152f8c;
    --color-white: #ffffff;
    --font-base: "Noto Sans JP", sans-serif;
}

body {
    font-family: var(--font-base);
    color: #1e1e1e;
}

/* ==========================================================================
   fixed-header（PCのみ。ファーストビューを過ぎたら上からスライドで表示）
   ========================================================================== */
.fixed-header {
    display: none;
}

@media (min-width: 769px) {
    .fixed-header {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: var(--color-white);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
        transform: translateY(-100%);
        transition: transform 0.4s ease;
        z-index: 500;
    }

    .fixed-header.is-visible {
        transform: translateY(0);
    }

    .fixed-header__inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 1280px;
        margin: 0 auto;
        padding: 14px 42px;
    }

    .fixed-header__logo {
        display: inline-flex;
        align-items: center;
        gap: 16px;
    }

    .fixed-header__logo-mark {
        width: 30px;
        height: 42px;
    }

    .fixed-header__logo-text {
        font-weight: 900;
        font-size: 19px;
        color: var(--color-navy);
        white-space: nowrap;
    }

    .fixed-header__nav {
        display: flex;
        align-items: center;
        gap: 26px;
    }

    .fixed-header__nav-list {
        display: flex;
        align-items: center;
        gap: 26px;
    }

    .fixed-header__nav-list a {
        font-weight: 900;
        font-size: 15px;
        color: var(--color-navy);
        white-space: nowrap;
        transition: opacity 0.2s ease;
    }

    .fixed-header__nav-list a:hover {
        opacity: 0.6;
    }

    .fixed-header__nav-cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 150px;
        height: 44px;
        border: 2px solid var(--color-navy);
        font-weight: 900;
        font-size: 15px;
        color: var(--color-navy);
        white-space: nowrap;
        transition:
            background-color 0.25s ease,
            color 0.25s ease,
            transform 0.25s ease,
            box-shadow 0.25s ease;
    }

    .fixed-header__nav-cta:hover {
        background-color: var(--color-navy);
        color: var(--color-white);
        transform: translateY(-4px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
    }
}

/* ==========================================================================
   hero
   ========================================================================== */
.hero {
    position: relative;
    width: 100%;
    overflow: hidden;
}

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

.hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* 背景と高さを揃える。コンテンツが多い場合はここが伸びて背景も追従する */
}

/* ---------- header ---------- */
.hero__header {
    position: relative;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 29px 30px 0 42px;
}

/* ---------- content（copy + labelgroup を画面上下中央に配置） ---------- */
.hero__content {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero__logo {
    display: inline-flex;
    align-items: center;
    gap: 18px;
}

.hero__logo-mark {
    width: 39px;
    height: 54px;
}

.hero__logo-text {
    font-weight: 900;
    font-size: 24px;
    color: var(--color-white);
    white-space: nowrap;
}

.hero__nav {
    display: flex;
    align-items: center;
    gap: 26px;
}

.hero__nav-list {
    display: flex;
    align-items: center;
    gap: 26px;
}

.hero__nav-list a {
    font-weight: 900;
    font-size: 16px;
    color: var(--color-white);
    white-space: nowrap;
}

.hero__nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 166px;
    height: 52px;
    border: 3px solid var(--color-white);
    font-weight: 900;
    font-size: 16px;
    color: var(--color-white);
    white-space: nowrap;
    transition:
        background-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.hero__nav-cta:hover {
    background-color: var(--color-navy);
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
}

.hero__hamburger {
    display: none;
}

.sp-nav {
    display: none;
}

/* ---------- copy ---------- */
.hero__copy {
    padding-left: 94px;
    padding-right: 24px;
}

.hero__badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    width: 287px;
    height: 54px;
}

.hero__badge-shape {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero__badge-text {
    position: relative;
    padding-left: 50px; /* 実測: テキストx(144) - badgeコンテナx(94) */
    font-weight: 900;
    font-size: 25px;
    color: var(--color-navy);
    white-space: nowrap;
}

.hero__lead {
    margin-top: 26px; /* badge下端(234px)〜lead上端(260px) */
    color: var(--color-white);
    font-weight: 900;
    line-height: 1.25;
}

.hero__lead-line {
    display: block;
}

.hero__lead .is-large {
    font-size: 40px;
}

.hero__lead .is-small {
    font-size: 30px;
}

.hero__company {
    margin-top: 13px; /* lead下端(376px)〜company上端(389px) */
    font-weight: 900;
    font-size: 64px;
    color: var(--color-white);
    white-space: nowrap;
}

.hero__company-suffix {
    text-shadow: 0 0px 15px rgba(0, 0, 0, 0.5);
}

/* ---------- labelgroup ---------- */
.hero__labels {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 611px; /* 実測労働域(593px)+ゆとり分。5+4の折り返しを再現 */
    margin-left: 94px;
    margin-right: 24px;
    margin-top: 69px; /* company下端(482px)〜labelgroup上端(551px) */
}

.hero__labels li {
    display: inline-flex;
    align-items: center;
    padding: 5px 20px; /* 実測比率から算出したpadding */
    border-radius: 4px;
    background: var(--color-white);
    color: var(--color-navy);
    font-weight: 900;
    font-size: 20px;
    white-space: nowrap;
}

/* ==========================================================================
   about
   ========================================================================== */
.about {
    position: relative;
    overflow: hidden;
    background: var(--color-white);
    padding: 51px 0 70px; /* 実測: title上端(51px)〜contents下端までの余白(70px) */
}

.about__bgmark {
    position: absolute;
    z-index: 0;
    left: 681px;
    top: 0;
    width: 646.936px;
    height: 743.732px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.about__bgmark-img {
    width: 622.407px;
    height: 454.578px;
    transform: rotate(110.93deg);
}

.about__title {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about__title-icon {
    display: flex;
    width: 23px;
    height: 32px;
    margin-bottom: 21px;
}

.about__title-icon img {
    width: 100%;
    height: 100%;
}

.about__title h2 {
    font-size: 40px;
    font-weight: 900;
    color: var(--color-navy);
    text-align: center;
    line-height: 1.25;
}

.about__contents {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    gap: 48px;
    max-width: 1280px;
    margin: 51px auto 0;
    padding: 0 24px 0 90px;
}

.about__img {
    flex: 0 0 454px;
    width: 454px;
    height: 454px;
}

.about__img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__text {
    max-width: 588px;
}

.about__lead {
    margin-bottom: 27px;
    font-size: 29px;
    font-weight: 900;
    line-height: 1.3;
    color: #000000;
}

.about__body p {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 34px;
    color: #000000;
}

/* ==========================================================================
   point
   ========================================================================== */
.point {
    position: relative;
    background: #edeff4;
    padding: 53px 0 0;
}

.point__title {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.point__title-icon {
    display: flex;
    width: 23px;
    height: 32px;
    margin-bottom: 14px; /* 実測: icon下端(85px)〜heading上端(99px) */
}

.point__title-icon img {
    width: 100%;
    height: 100%;
}

.point__title h2 {
    font-size: 40px;
    font-weight: 900;
    color: var(--color-navy);
    text-align: center;
    line-height: 1.25;
}

.point__cards {
    position: relative;
    max-width: 1280px;
    height: 491px;
    margin: 52px auto 0;
}

.point__card {
    position: absolute;
    top: 0;
    width: 389px;
    height: 491px;
}

.point__card--1 {
    left: 90px;
}

.point__card--2 {
    left: 446px;
}

.point__card--3 {
    left: 802px;
}

.point__card-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.point__card-text {
    position: absolute;
    left: 64px;
    top: 239px;
    width: 252px;
}

.point__card--3 .point__card-text {
    left: 58px;
    width: 260px;
}

.point__card-text h3 {
    font-size: 19px;
    font-weight: 700;
    line-height: 34px;
    color: var(--color-white);
}

.point__card--3 .point__card-text h3 {
    width: 274px;
}

.point__card-text p {
    margin-top: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: var(--color-white);
}

.point__stripes {
    width: 100%;
    height: 99px;
    margin-top: 60px;
    background-image: url("../img/point-stripes-pc.svg");
    background-repeat: repeat-x;
    background-position: center top;
    background-size: 1280px 99px;
}

/* ==========================================================================
   servise
   ========================================================================== */
.servise {
    position: relative;
    background: var(--color-navy);
    padding: 70px 0 68px;
}

.servise__title {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 64px;
}

.servise__title-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 23px;
    height: 32px;
    margin-bottom: 14px;
    overflow: hidden;
}

.servise__title-icon img {
    width: 32px;
    height: 23px;
    transform: rotate(90deg);
}

.servise__title h2 {
    font-size: 40px;
    font-weight: 900;
    color: var(--color-white);
    text-align: center;
    line-height: 1.25;
}

.servise__block {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.servise__block + .servise__block {
    margin-top: 90px; /* 実測: servise1下端(3491px)〜servise2上端(3593px)近似 */
}

.servise__subtitle {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.servise__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 193px;
    height: 40px;
    margin-bottom: 29px;
    border-radius: 100px;
    background: var(--color-white);
    color: var(--color-navy);
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-style: italic;
    font-weight: 500;
    font-size: 20px;
}

.servise__subtitle h3 {
    font-size: 29px;
    font-weight: 900;
    color: var(--color-white);
    line-height: 1.45;
}

.servise__lead {
    margin-top: 24px;
    max-width: 739px;
    font-size: 16px;
    font-weight: 400;
    line-height: 34px;
    color: var(--color-white);
}

.servise__body {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    margin-top: 57px;
}

.servise__img {
    flex: 0 0 497px;
    width: 497px;
    height: 558px;
}

.servise__img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.servise__details {
    flex: 1 1 auto;
    margin: 0;
}

.servise__row {
    display: grid;
    grid-template-columns: 133px 1fr;
    column-gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.servise__details > .servise__row:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.servise__row dt {
    font-size: 20px;
    font-weight: 900;
    color: var(--color-white);
}

.servise__row dd {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    color: var(--color-white);
}

.servise__row dd p {
    margin: 0;
    line-height: 26px;
}

.servise__sublabel {
    font-weight: 700;
    line-height: 34px;
}

.servise__note {
    font-size: 13px;
}

#servise1 .servise__row--1 {
    padding: 25px 0 6px;
}
#servise1 .servise__row--2 {
    padding: 23px 0 56px;
}
#servise1 .servise__row--3 {
    padding: 19px 0 18px;
}
#servise1 .servise__row--4 {
    padding: 26px 0 29px;
}

#servise2 .servise__row--1 {
    padding: 25px 0 33px;
}
#servise2 .servise__row--5 {
    padding: 23px 0 23px;
}
#servise2 .servise__row--6 {
    padding: 19px 0 33px;
}
#servise2 .servise__row--4 {
    padding: 26px 0 27px;
}

#servise2 .servise__note {
    font-size: 12px;
}

/* ==========================================================================
   results
   ========================================================================== */
.results {
    position: relative;
    background: var(--color-white);
    padding: 47px 0 60px;
}

.results__title {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.results__title-icon {
    display: flex;
    width: 23px;
    height: 32px;
    margin-bottom: 15px;
}

.results__title-icon img {
    width: 100%;
    height: 100%;
}

.results__title h2 {
    font-size: 40px;
    font-weight: 900;
    color: var(--color-navy);
    text-align: center;
    line-height: 1.25;
}

.results__grid {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 356px);
    justify-content: space-between;
    row-gap: 17px;
    width: 1101px;
    max-width: 100%;
    margin: 47px auto 0;
    padding: 0;
}

.results__card-link {
    position: relative;
    display: block;
    width: 356px;
    height: 138px;
    padding: 29px 40px 29px 28px;
    border: 1px solid #c0c3cc;
    border-radius: 6px;
    background: var(--color-white);
}
.results__card-link:hover {
    background: #f9f9f9;
}

.results__card-title {
    font-size: 18px;
    font-weight: 900;
    color: var(--color-navy);
}

.results__card-company {
    margin-top: 9px; /* 実測: title下端(29+29=58px)〜company上端(66px) */
    font-size: 16px;
    font-weight: 400;
    color: #5f5f5f;
}

.results__card-date {
    margin-top: 11px; /* 実測: company下端〜date上端(102px)近似 */
    font-size: 13px;
    font-weight: 400;
    color: #a2a2a2;
}

.results__card-arrow {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 7px;
    height: 12px;
    overflow: hidden;
}

.results__card-arrow img {
    width: 12px;
    height: 7px;
    transform: rotate(90deg);
}

.results__loading,
.results__empty {
    grid-column: 1 / -1;
    padding: 40px 0;
    color: #5f5f5f;
    font-size: 16px;
    text-align: center;
}

.detail-content__notfound {
    padding: 40px 0;
    font-size: 16px;
    color: #5f5f5f;
}

.detail-content__notfound a {
    margin-left: 8px;
    color: var(--color-navy);
    text-decoration: underline;
}

/* ==========================================================================
   company
   ========================================================================== */
.company {
    position: relative;
    background: var(--color-white);
    overflow: hidden;
    padding-bottom: 108px;
}

.company__panel-bg {
    position: absolute;
    top: 108px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #edeff4;
    z-index: 0;
}

.company__bgmark {
    position: absolute;
    z-index: 0;
    left: 740px;
    top: 0;
    width: 646.936px;
    height: 743.732px;
    display: flex;
    align-items: center;
    justify-content: center;
    mix-blend-mode: color-dodge;
    pointer-events: none;
}

.company__bgmark-img {
    width: 622.407px;
    height: 454.578px;
    transform: rotate(110.93deg);
}

.company__title {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 172px 0 0;
}

.company__title-icon {
    display: flex;
    width: 23px;
    height: 32px;
    margin-bottom: 15px;
}

.company__title-icon img {
    width: 100%;
    height: 100%;
}

.company__title h2 {
    font-size: 40px;
    font-weight: 900;
    color: var(--color-navy);
    text-align: center;
    line-height: 1.25;
}

.company__card {
    position: relative;
    z-index: 1;
    width: 772px;
    max-width: calc(100% - 48px);
    margin: 114px auto 0;
    padding: 43px 57px 0;
    border-radius: 6px;
    background: var(--color-white);
    box-shadow: 0 1px 52.9px 0 rgba(0, 0, 0, 0.12);
}

.company__list {
    margin: 0;
}

.company__row {
    display: grid;
    grid-template-columns: 129px 1fr;
    column-gap: 20px;
    align-items: start;
}

.company__row + .company__row {
    border-top: 1px solid #c0c3cc;
}

.company__row dt {
    font-size: 16px;
    font-weight: 900;
    color: var(--color-navy);
}

.company__row dd {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    color: #5f5f5f;
}

.company__row dd a {
    color: inherit;
}

.company__address {
    margin: 0;
    line-height: 1.45;
}

.company__map {
    margin-top: 17px;
    width: 100%;
    max-width: 540px;
    aspect-ratio: 540 / 406;
}

.company__map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.company__row:nth-child(1) {
    padding: 0 0 27px;
}
.company__row:nth-child(2) {
    padding: 28px 0 34px;
}
.company__row:nth-child(3) {
    padding: 30px 0 25px;
}
.company__row:nth-child(4) {
    padding: 30px 0 49px;
}

/* ==========================================================================
   footer-cta
   ========================================================================== */
.footer-cta {
    position: relative;
    min-height: 515px;
    display: flex;
    overflow: hidden;
}

.footer-cta__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.footer-cta__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.38);
}

.footer-cta__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: auto;
    padding: 90px 24px;
}

.footer-cta__heading {
    font-size: 40px;
    font-weight: 900;
    color: var(--color-white);
}

.footer-cta__dis {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 23px;
}

.footer-cta__badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    width: 222px;
    height: 41.77px;
}

.footer-cta__badge-shape {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.footer-cta__badge-text {
    position: relative;
    padding-left: 39px;
    font-weight: 900;
    font-size: 19.338px;
    color: var(--color-navy);
    white-space: nowrap;
}

.footer-cta__note {
    margin-top: 9px;
    width: 404px;
    max-width: 100%;
    padding: 5px 9px;
    background: var(--color-navy);
    color: var(--color-white);
    font-weight: 900;
    font-size: 18px;
    text-align: center;
    white-space: nowrap;
}

.footer-cta__tel {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
}

.footer-cta__tel a {
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-weight: 700;
    font-size: 55px;
    color: var(--color-white);
}

.footer-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 299px;
    height: 62px;
    margin-top: 30px;
    border: 3px solid var(--color-white);
    font-weight: 900;
    font-size: 19px;
    color: var(--color-white);
    white-space: nowrap;
    transition:
        background-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.footer-cta__btn:hover {
    background-color: var(--color-navy);
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
}

/* ==========================================================================
   site-footer
   ========================================================================== */
.site-footer {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    padding: 52px 91px;
    background: #212226;
}

.site-footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 18px;
}

.site-footer__logo-mark {
    width: 39px;
    height: 54px;
}

.site-footer__logo-text {
    font-weight: 900;
    font-size: 24px;
    color: var(--color-white);
    white-space: nowrap;
}

.site-footer__right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.site-footer__nav ul {
    display: flex;
    align-items: center;
    gap: 26px;
}

.site-footer__nav a {
    font-weight: 900;
    font-size: 16px;
    color: var(--color-white);
    white-space: nowrap;
    transition: color 0.2s ease;
}

.site-footer__nav a:hover {
    color: var(--color-navy);
}

.site-footer__copy {
    margin-top: 74px;
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 12px;
    color: var(--color-white);
    white-space: nowrap;
}

/* ==========================================================================
   page-head（下層ページ共通の見出しバナー）
   ========================================================================== */
.page-head {
    position: relative;
    background: var(--color-navy);
    padding-bottom: 136px;
}

.page-head__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 67px 90px 0;
}

.page-head__inner h2 {
    font-size: 42px;
    font-weight: 900;
    color: var(--color-white);
}

.page-head__label {
    margin-top: 43px;
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 20px;
    color: var(--color-white);
}

/* ==========================================================================
   detail-content（下層ページ：記事本体）
   ========================================================================== */
.detail-content {
    max-width: 960px;
    margin: 0 auto;
    padding: 57px 24px 140px;
}

.detail-content__date {
    font-size: 13px;
    font-weight: 400;
    color: #a2a2a2;
}

.detail-content__title h1 {
    margin-top: 16px;
    font-size: 28px;
    font-weight: 900;
    color: var(--color-navy);
}

.detail-content__company {
    margin-top: 16px;
    font-size: 18px;
    font-weight: 700;
    color: #5f5f5f;
}

.detail-content__divider {
    margin: 71px 0 0;
    border: none;
    border-top: 1px solid #c0c3cc;
}

.detail-content__body {
    margin-top: 34px;
}

.detail-content__body > * + * {
    margin-top: 24px; /* microCMSのリッチテキストで段落・画像が任意順に並ぶ想定の共通余白 */
}

.detail-content__body p {
    font-size: 16px;
    font-weight: 400;
    line-height: 40px;
    color: #000000;
}

.detail-content__body figure {
    margin-top: 24px;
    margin-bottom: 24px;
}

.detail-content__body figure img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
}

/* ==========================================================================
   SP (max-width: 768px)
   ========================================================================== */
@media (max-width: 768px) {
    .hero__header {
        padding: 18px 24px 0 24px;
    }

    .hero__logo {
        gap: 13.77px;
    }

    .hero__logo-mark {
        width: 29.829px;
        height: 41.302px;
    }

    .hero__logo-text {
        font-size: 18.36px;
    }

    .hero__nav {
        display: none;
    }

    .hero__hamburger {
        position: fixed;
        top: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 70px;
        height: 70px;
        background: #000000;
        z-index: 999;
    }

    .hero__hamburger span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--color-white);
        transition:
            transform 0.35s ease,
            opacity 0.35s ease;
    }

    .hero__hamburger.is-active span:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }

    .hero__hamburger.is-active span:nth-child(2) {
        opacity: 0;
    }

    .hero__hamburger.is-active span:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }

    .sp-nav {
        display: grid;
        grid-template-rows: 0fr;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: #000000;
        transition: grid-template-rows 0.4s ease;
        z-index: 99999;
    }

    .sp-nav.is-open {
        grid-template-rows: 1fr;
    }

    .sp-nav__inner {
        min-height: 0;
        overflow: hidden;
    }

    .sp-nav__list {
        list-style: none;
    }

    .sp-nav__list li {
        border-top: 1px solid #484848;
    }

    .sp-nav__list a {
        display: block;
        padding: 24px 38px;
        font-size: 18px;
        font-weight: 900;
        color: var(--color-white);
    }

    .sp-nav__cta {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 66px;
        margin: 23px 38px 26px;
        border: 3px solid var(--color-white);
        font-size: 16px;
        font-weight: 900;
        color: var(--color-white);
    }

    .hero__copy {
        padding-left: 24px;
        padding-right: 24px;
    }

    .hero__badge {
        width: 118.471px;
        height: 22.291px;
    }

    .hero__badge-text {
        padding-left: 20.64px;
        font-size: 10.32px;
    }

    .hero__lead {
        margin-top: 10.73px;
        max-width: 335px;
    }

    .hero__lead .is-large {
        font-size: 16.512px;
    }

    .hero__lead .is-small {
        font-size: 12.384px;
    }

    .hero__company {
        margin-top: 5.25px;
        font-size: 26.419px;
        white-space: normal;
    }

    .hero__labels {
        max-width: 368px; /* 実測労働域(353px)+ゆとり分。5+4の折り返しを再現 */
        gap: 4.76px 8px;
        margin-left: 26px;
        margin-right: 20px;
        margin-top: 26.13px;
    }

    .hero__labels li {
        padding: 2.9px 12.4px;
        border-radius: 2.33px;
        font-size: 11.628px;
    }

    /* ---------- about ---------- */
    .about {
        padding: 28px 0 40px; /* 実測: title上端(28px)〜contents下端の余白 */
    }

    .about__bgmark {
        left: 111px;
        top: 433px; /* 実測: bgmark上端(840px) - about上端(407px) */
        width: 358.35px;
        height: 411.967px;
    }

    .about__bgmark-img {
        width: 344.763px;
        height: 251.799px;
    }

    .about__title-icon {
        margin-bottom: 22px;
    }

    .about__title h2 {
        font-size: 22px;
    }

    .about__contents {
        flex-direction: column;
        align-items: center;
        gap: 0;
        margin-top: 33.5px; /* 実測: title下端(114px)〜img上端(147.5px) */
        padding: 0 24px;
    }

    .about__img {
        flex: none;
        width: 355px;
        height: 355px;
    }

    .about__text {
        max-width: 352px;
        width: 100%;
        margin-top: 39.5px; /* 実測: img下端(502.5px)〜text上端(542px) */
    }

    .about__lead {
        margin-bottom: 30px;
        padding-left: 3px; /* 実測: 見出しxオフセット(27px) - コンテナ左端(24px) */
        font-size: 20px;
    }

    .about__body p {
        font-size: 14px;
        line-height: 34px;
    }

    /* ---------- point ---------- */
    .point {
        padding: 49px 0 0;
    }

    .point__title-icon {
        margin-bottom: 15px;
    }

    .point__title h2 {
        font-size: 22px;
    }

    .point__cards {
        position: static;
        display: flex;
        flex-direction: column;
        align-items: center;
        height: auto;
        max-width: none;
        gap: 32.44px;
        margin: 41.5px auto 0;
    }

    .point__card,
    .point__card--1,
    .point__card--2,
    .point__card--3 {
        position: relative;
        left: auto;
        width: 353px;
        height: 445.56px;
    }

    .point__card-text {
        left: 58.08px;
        top: 216.88px;
        width: 228.68px;
    }

    .point__card--2 .point__card-text {
        left: 61.71px;
    }

    .point__card--3 .point__card-text {
        left: 52.63px;
        width: 235.94px;
    }

    .point__card--3 .point__card-text h3 {
        width: 248.643px;
    }

    .point__card-text h3 {
        font-size: 18px;
        line-height: 30.853px;
    }

    .point__card-text p {
        font-size: 14px;
        line-height: 25.409px;
    }

    .point__stripes {
        height: 31.09px;
        margin-top: 53.44px;
        background-image: url("../img/point-stripes-sp.svg");
        background-size: 402px 31.09px;
    }

    /* ---------- servise ---------- */
    .servise {
        padding: 50px 0 40px;
    }

    .servise__title h2 {
        font-size: 20px;
    }

    .servise__block {
        padding: 0 24px;
    }

    .servise__block + .servise__block {
        margin-top: 70px;
    }

    .servise__badge {
        width: 154px;
        height: 24px;
        margin-bottom: 20px;
        font-size: 13px;
    }

    .servise__subtitle h3 {
        font-size: 16px;
    }

    .servise__lead {
        margin-top: 20px;
        max-width: 353px;
        font-size: 14px;
        line-height: 170%;
    }

    .servise__body {
        flex-direction: column;
        align-items: center;
        gap: 33px;
        margin-top: 33px;
    }

    .servise__img {
        flex: none;
        width: 354px;
        height: 397.449px;
    }

    .servise__details {
        width: 100%;
    }

    .servise__row {
        grid-template-columns: 1fr;
        row-gap: 8px;
    }

    .servise__row dt {
        font-size: 16px;
    }

    .servise__row dd {
        font-size: 14px;
    }

    #servise1 .servise__row--1 {
        padding: 25px 0 24px;
    }
    #servise1 .servise__row--2 {
        padding: 19px 0 24px;
    }
    #servise1 .servise__row--3 {
        padding: 20px 0 18px;
    }
    #servise1 .servise__row--4 {
        padding: 21px 0 27px;
    }

    #servise2 .servise__row--1 {
        padding: 25px 0 27px;
    }
    #servise2 .servise__row--5 {
        padding: 23px 0 20px;
    }
    #servise2 .servise__row--6 {
        padding: 19px 0 55px;
    }
    #servise2 .servise__row--4 {
        padding: 26px 0 29px;
    }

    #servise2 .servise__note {
        font-size: 12px;
    }

    /* ---------- results ---------- */
    .results {
        padding: 47px 0 60px;
    }

    .results__title h2 {
        font-size: 22px;
    }

    .results__grid {
        grid-template-columns: 1fr;
        justify-content: center;
        row-gap: 16px;
        width: 356px;
        margin: 75px auto 0;
    }

    .results__card-link {
        width: 100%;
        height: 116px;
        padding: 21px 40px 21px 27px;
    }

    .results__card-title {
        font-size: 16px;
    }

    .results__card-company {
        margin-top: 7px;
        font-size: 14px;
    }

    .results__card-date {
        margin-top: 8px;
        font-size: 13px;
    }

    /* ---------- company ---------- */
    .company__panel-bg {
        top: 0; /* 実測: セクション上端〜グレー背景上端(7127→7189付近)の近似値 */
    }

    .company__bgmark {
        left: 232px;
        top: 6px;
        width: 212.297px;
        height: 244.062px;
    }

    .company__bgmark-img {
        width: 204.248px;
        height: 149.174px;
    }

    .company__title {
        padding-top: 42px;
    }

    .company__title h2 {
        font-size: 22px;
    }

    .company__card {
        width: 354px;
        padding: 43px 24px 0;
        margin-top: 54px;
    }

    .company__row {
        grid-template-columns: 1fr;
        row-gap: 7px;
    }

    .company__map {
        margin-top: 38px;
        max-width: 306px;
    }

    .company__row:nth-child(1) {
        padding: 0 0 20px;
    }
    .company__row:nth-child(2) {
        padding: 15px 0 20px;
    }
    .company__row:nth-child(3) {
        padding: 15px 0 16px;
    }
    .company__row:nth-child(4) {
        padding: 15px 0 31px;
    }

    /* ---------- footer-cta ---------- */
    .footer-cta {
        min-height: 515px;
    }

    .footer-cta__content {
        padding: 104px 24px 45px;
    }

    .footer-cta__heading {
        font-size: 22px;
    }

    .footer-cta__dis {
        margin-top: 47.83px;
    }

    .footer-cta__badge {
        width: 194.52px;
        height: 36.6px;
    }

    .footer-cta__badge-text {
        padding-left: 34px;
        font-size: 16.945px;
    }

    .footer-cta__note {
        margin-top: 8px;
        width: 354px;
        font-size: 15.772px;
    }

    .footer-cta__tel {
        gap: 10px;
        margin-top: 15.82px;
    }

    .footer-cta__tel-icon {
        width: 25.68px;
        height: 25.68px;
    }

    .footer-cta__tel a {
        font-size: 37.17px;
    }

    .footer-cta__btn {
        width: 231px;
        height: 47.9px;
        margin-top: 34px;
        border-width: 2.318px;
        font-size: 14.679px;
    }

    /* ---------- site-footer ---------- */
    .site-footer {
        flex-direction: column;
        align-items: center;
        padding: 48px 24px;
    }

    .site-footer__logo {
        gap: 12.86px;
    }

    .site-footer__logo-mark {
        width: 28.07px;
        height: 38.57px;
    }

    .site-footer__logo-text {
        font-size: 17.143px;
    }

    .site-footer__right {
        align-items: center;
    }

    .site-footer__nav {
        display: none;
    }

    .site-footer__copy {
        margin-top: 26.43px;
        font-size: 12px;
    }

    /* ---------- page-head ---------- */
    .page-head {
        padding-bottom: 74px;
    }

    .page-head__inner {
        padding: 61.7px 24px 0;
    }

    .page-head__inner h2 {
        font-size: 30px;
    }

    .page-head__label {
        margin-top: 15px;
        font-size: 20px;
    }

    /* ---------- detail-content ---------- */
    .detail-content {
        padding: 40px 24px 90px;
    }

    .detail-content__date {
        font-size: 13px;
    }

    .detail-content__title h1 {
        margin-top: 16px;
        font-size: 22px;
    }

    .detail-content__company {
        margin-top: 16px;
        font-size: 14px;
    }

    .detail-content__divider {
        margin-top: 40px;
    }

    .detail-content__body {
        margin-top: 24px;
    }

    .detail-content__body > * + * {
        margin-top: 24px;
    }

    .detail-content__body p {
        font-size: 14px;
        line-height: 31px;
    }

    .detail-content__body figure img {
        width: 100%;
        height: auto;
    }
}
