@charset "UTF-8";

:root {
    --white: #FFFFFF;
    --light-green: #E8F3F1;
    --black: #040000;
    --green: #00D4B5;
    --red: #FF695C;
    --light-red: #FF877D;
    --gray: #CCCCCC;
    --light-gray: #EEEEEE;
    --biz-udp: "BIZ UDPGothic", sans-serif;
    --barlow: "Barlow", sans-serif;
    --heisei: "heisei-kaku-gothic-std", "Noto Sans JP", sans-serif;
    --shadow-1: 0px 0px 10px 0px #00000014;
    --shadow-2: 8px 8px 0px 0px #0000000D;
}

* {
    color: inherit;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}

body {
    font-family: var(--biz-udp);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    color: var(--bk);
}

a {
    display: block;
    color: inherit;
    transition: opacity .3s ease;
}

a:hover {
    opacity: 0.6;
}

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

.-pc {
    display: block;
}

.-sp {
    display: none;
}

.-ib {
    display: inline-block;
}

@media (max-width: 768px) {
    .-pc {
        display: none;
    }

    .-sp {
        display: block;
    }
}

.container {
    width: 96%;
    max-width: 1200px;
    margin: 0 auto;
}

.button {
    border-radius: 100px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 0.3s ease;
}

.button:hover::before {
    transform-origin: top right;
    transform: skewX(-45deg) translateX(0);
}

.button::before {
    content: '';
    width: 135%;
    height: 100%;
    background-color: var(--red);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transform-origin: top left;
    transform: skewX(-45deg) translateX(-100%);
    transition: inherit;
}

a.button:hover {
    opacity: 1;
}

.button.-blue {
    background: #407BFF;
}

.button.-red {
    background: var(--red);
}

.cta-button {
    background: var(--black);
    padding: 1em 2em;
    gap: 15px;
    font-family: var(--heisei);
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 0.01em;
    color: var(--white);
}

.cta-button img {
    width: 32px;
    transition: transform 0.3s ease-in-out;
}

.cta-button:hover img {
    transform: translateX(8px);
}

@media (max-width: 768px) {
    .cta-button {
        gap: 8px;
        width: 100%;
        padding: 15px;
        font-size: 15px;
    }

    .cta-button img {
        width: 24px;
    }
}

.cta-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 8px 0;
    margin: 0 auto;
    width: fit-content;
    line-height: 1;
    font-family: var(--heisei);
    font-size: 24px;
    font-weight: 700;
}

.cta-link::after {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background: var(--black);
    transform-origin: left;
}

.cta-link img {
    width: 32px;
}

.cta__tel-hour {
    font-weight: 700;
    font-size: 14px;
}

@media (max-width: 767px) {
    .cta-link {
        font-size: 15px;
    }

    .cta-link::after {
        height: 2px;
    }

    .cta-link img {
        width: 24px;
    }

    .cta-link+p {
        font-size: 13px;
    }
}

.tel-section h3 {
    margin: 15px 0;
    padding-bottom: 30px;
    background: url(../img/fukidashi.svg) no-repeat center bottom / 367px auto;
}

.tel-section p {
    margin-top: 10px;
    font-size: 13px;
}

.tel-section .cta-link {
    padding: 0;
    font-family: var(--barlow);
    font-size: 36px;
}

.tel-section .cta-link::after {
    display: none;
}


.section__title {
    margin-bottom: 50px;
    text-align: center;
}

.section__title-sub {
    margin-bottom: 10px;
    font-family: var(--barlow);
    font-weight: 700;
    font-size: 32px;
    line-height: 1;
    letter-spacing: 0.1em;
}

.section__title-main {
    margin-bottom: 30px;
    font-family: var(--heisei);
    font-weight: 700;
    font-size: 54px;
    line-height: 1;
    letter-spacing: 0.02em;
}

.section__title-text {
    font-family: var(--biz-udp);
    font-weight: 700;
    font-size: 20px;
    line-height: 1.75;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .section__title-sub {
        font-size: 22px;
    }

    .section__title-main {
        font-size: 34px;
    }

    .section__title-text {
        font-size: 16px;
    }
}

.section__body {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.section__text {
    font-family: var(--heisei);
    font-weight: 700;
    text-align: center;
}

.section__text.-main {
    font-size: 32px;
    line-height: 1.5;
    letter-spacing: 0.05em;
}

.section__text.-sub {
    font-size: 24px;
    line-height: 1.5;
}

.section__text .-highlight {
    background: var(--white);
    padding: 5px 10px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.section__text .-highlight.-black {
    background: var(--black);
    color: var(--white);
}

.section__text .-red {
    font-family: var(--barlow);
    color: var(--red);
}

.section__text .-big {
    font-size: 38px;
    vertical-align: -2px;
}

.section__text .-underline {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .section__text.-main {
        font-size: 24px;
    }

    .section__text.-sub {
        font-size: 18px;
        line-height: 1.7;
    }
}

.section__footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.section__footer-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    font-weight: 700;
    font-size: 12px;
}

/* animation */
@keyframes showTextFromBottom {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* 各行ラッパー */
.anime-up.displayed .anime-line {
    overflow: hidden;
    display: inline-block;
    line-height: 1.5;
}

/* 文字1つずつアニメーション */
.anime-up.displayed .anime-char {
    display: inline-block;
    animation: showTextFromBottom 0.5s backwards;
}

/** Fade in **/
/* フェードイン(初期値) */
.js-fadeIn {
    opacity: 0;
    transition: opacity 0.8s;
}

.js-fadeUp {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s, transform 0.8s;
}

.js-fadeInLeft {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s, transform 0.8s;
}

/* フェードイン(スクロールした後) */
.js-fadeIn.is-inview,
.js-fadeUp.is-inview,
.js-fadeInLeft.is-inview {
    opacity: 1;
    transform: translate(0, 0);
    transition-delay: 0.5s;
}

/* ディレイ */
.is-inview.delay1 {
    transition-delay: 0.7s;
}

.is-inview.delay2 {
    transition-delay: 0.9s;
}

.is-inview.delay3 {
    transition-delay: 1.1s;
}


/* header */
.header {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1000;
}

.header .container {
    background: var(--white);
    max-width: 1296px;
    height: 74px;
    margin-top: 40px;
    padding: 15px;
    border-radius: 100px;
    box-shadow: var(--shadow-1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left {
    padding: 0 25px;
}

.header__logo {
    max-width: 149px;
    min-width: 100px;
}

.header__nav {
    display: flex;
    align-items: center;
    font-family: var(--heisei);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
}

.header__nav li {
    position: relative;
    white-space: nowrap;
}

.header__nav li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -3px;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--gray);
    border-radius: 50%;
}

.header__nav li a {
    padding: 0 33px;
}

.header-right {
    display: flex;
    align-items: center;
}

.contact-button {
    background: var(--green);
    padding: 0.625em 1.875em;
    gap: 10px;
    font-family: var(--heisei);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
    color: var(--white);
    white-space: nowrap;
}

.contact-button img {
    width: 24px;
}

.contact-button span {
    position: relative;
    top: -1px;
}

.sp-menu img.menu-icon {
    display: block;
}

.sp-menu.open img.menu-icon {
    display: none;
}

.sp-menu img.close-icon {
    display: none;
    position: relative;
    z-index: 12;
}

.sp-menu.open img.close-icon {
    display: block;
}

.drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: calc(100% - 40px);
    height: calc(100vh - 40px);
    background: #fff;
    border-radius: 16px;
    box-shadow: 0px 6px 15px 0px rgba(0, 0, 0, 0.2);
    margin: 20px;
    padding: 60px 32px;
    transition: right 0.3s ease;
    z-index: 11;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.drawer.open {
    right: 0;
}

.drawer__logo {
    max-width: 220px;
    min-width: 100px;
}

.drawer__nav {
    display: flex;
    flex-direction: column;
}

.drawer__nav a {
    padding: 10px;
    font-family: var(--heisei);
    font-weight: 700;
}

.drawer .contact-button {
    font-size: 16px;
    padding: 1em 2em;
    gap: 10px;
}

.drawer-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    display: none;
    z-index: 10;
}

.drawer-bg.open {
    display: block;
}

@media (max-width: 1052px) {
    .header-left {
        padding: 0 10px;
    }

    .header__nav li a {
        padding: 0 15px;
        font-size: 14px;
    }

    .contact-button {
        gap: 5px;
        font-size: 14px;
        padding: 0.625em 1.2em;
    }

    .contact-button img {
        width: 20px;
    }
}

@media (max-width: 768px) {
    .header .container {
        margin-top: 15px;
        height: 60px;
    }

    .contact-button.-pc {
        display: none;
    }
}



/* Front Page */
/* FV */
.fv {
    position: relative;
    overflow: hidden;
}

.fv__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.fv__bg--green {
    position: absolute;
    bottom: 10%;
    right: 0;
    max-width: 906px;
    opacity: 0.8;
}

.fv__bg--pc {
    position: absolute;
    top: 430px;
    right: 0;
    transform: translateY(-50%);
    max-width: 924px;
    width: 70vw
}

.fv .container {
    max-width: 1240px;
    height: 720px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 120px;
}

.fv__title {
    font-family: var(--heisei);
    font-weight: 700;
    font-size: 54px;
    line-height: 1;
    letter-spacing: 0.02em;
}

.fv__subtitle {
    font-family: var(--heisei);
    font-weight: 700;
    font-size: 30px;
    line-height: 1;
    color: var(--red);
}

.fv__content {
    gap: 20px;
    max-width: 100%;
    min-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.fv__text {
    color: #333;
    margin-left: 20px;
    font-family: var(--heisei);
    font-weight: 700;
    font-size: 20px;
    line-height: 2;
    letter-spacing: 0.02em;
}

.fv__buttons {
    display: flex;
    gap: 15px;
    margin-left: 20px;
}

.cta-button.-small {
    margin: 0;
    padding: 15px 30px;
    gap: 8px;
    font-size: 18px;
}

.cta-button.-small img {
    width: 24px;
}

@media (max-width: 768px) {
    .fv .container {
        max-width: 500px;
        padding-bottom: 50px;
        height: auto;
        flex-direction: column;
        padding-top: 0;
        gap: 10px;
    }

    .fv__bg--green {
        width: auto;
        right: auto;
        left: 22%;
    }

    .fv__content {
        max-width: 100%;
        min-width: auto;
        padding-top: 108px;
        height: 100%;
        gap: 14px;
    }

    .fv__title {
        font-size: 26px;
    }

    .fv__text {
        margin-left: 0;
        font-size: 15px;
        flex: 1;
    }

    .fv__buttons {
        margin: 0;
        width: 100%;
        flex-wrap: wrap;
    }

    .cta-button.-small {
        font-size: 16px;
        align-self: center;
    }

    .fv__image {
        max-width: 375px;
        margin: 0 auto;
    }
}

/* Triangle Section */
.triangle {
    background: var(--white);
}

.triangle::before {
    border-color: var(--white) transparent transparent transparent;
}

/* Service Section */
.service01-02 {
    background: var(--green);
}

.service01-02 .container {
    padding: 140px 0 75px;
}

.service01-02 .section__title-sub {
    color: var(--white);
}

.service01-02__list {
    display: flex;
    flex-direction: column;
    gap: 47px;
}

.service01-02__item {
    border: 3px solid var(--black);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-2);
    display: flex;
}

.service01-02__item-image {
    width: 40%;
    position: relative;
}

.service01-02__item-image img {
    height: 100%;
    object-fit: cover;
}

.service__item-num {
    background: var(--black);
    border-radius: 50%;
    width: 107px;
    height: 107px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: var(--barlow);
    font-weight: 700;
    font-size: 55px;
    line-height: 0.9;
    letter-spacing: 0.02em;
    color: var(--white);
    box-shadow: var(--shadow-2);
}

.service__item-num .-small {
    font-size: 17px;
    letter-spacing: 0.04em;
    color: #FCCE5B;
}

.service01-02 .service__item-num {
    position: absolute;
    top: 33px;
    left: 25px;
}

.service01-02__item-content {
    position: relative;
    width: 60%;
    background: var(--white);
    padding: 35px 35px 35px 90px;
}

.service01-02__item-label {
    display: flex;
    gap: 12px;
}

.service01-02__item-label span {
    border: 3px solid var(--black);
    padding: 5px 12px;
    min-width: 115px;
    text-align: center;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 10px;
    display: inline-block;
}

.service01-02__item-label span.-bk {
    background: var(--black);
    color: var(--white);
}

.service01-02__item-label span.-wh {
    background: var(--white);
}

.service01-02__item-label span.-ye {
    background: #FF9B04;
}

.service01-02__item-title {
    font-family: var(--heisei);
    font-weight: 900;
    font-size: 32px;
    margin-bottom: 28px;
}

.service01-02__item-check {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 900;
    font-size: 22px;
    margin-bottom: 8px;
}

.service01-02__item-check img {
    width: 22px;
}

.service01-02__item-text {
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 30px;
}

.service01-02__item-point {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 13px;
}

.service01-02__item-point span {
    display: inline-block;
    background: var(--red);
    border-radius: 56px;
    padding: 7px 28px;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.5;
    white-space: nowrap;
}

.service01-02__item-button {
    position: absolute;
    top: 35px;
    right: 35px;
    min-width: 232px;
}

.service01-02__item-button.-wh {
    background: var(--white);
    color: var(--black);
    border: 3px solid var(--black);
    pointer-events: none;
}

@media (max-width: 768px) {
    .service01-02__item {
        flex-direction: column;
    }

    .service01-02__item-image {
        width: 100%;
        height: 240px;
    }

    .service01-02__item-content {
        width: 100%;
    }

    .service01-02 .service__item-num {
        top: 10px;
        left: 10px;
    }

    .service01-02__item-content {
        padding: 20px;
    }

    .service01-02__item-title {
        font-size: 24px;
    }

    .service01-02__item-check {
        font-size: 18px;
    }

    .service01-02__item-text {
        font-size: 14px;
    }

    .service01-02__item-point {
        margin-bottom: 15px;
    }

    .service01-02__item-button {
        position: static;
    }
}

.service03 {
    background: var(--light-green);
}

.service03 .container {
    padding: 45px 0 75px;
}

.service03 .service__item-num {
    margin: 0 auto 20px;
}

.service03 .section__title-sub {
    color: var(--green);
}

.service03__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 45px;
    margin-top: 60px;
}

.service03__item {
    border-radius: 20px;
    box-shadow: -7px -2px 4px 0 rgba(0, 0, 0, 0.07),
        8px 8px 0 0 rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service03__item-image {
    position: relative;
}

.service03__item-image img {
    object-fit: cover;
}

.service03__item-image span {
    position: absolute;
    bottom: 15px;
    left: 35px;
    background: var(--red);
    border-radius: 50%;
    width: 69px;
    height: 69px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--barlow);
    font-weight: 700;
    font-size: 22px;
    line-height: 0.9;
    letter-spacing: 0.04em;
}

.service03__item-title {
    background: #FCCE5B;
    padding: 10px 20px;
    text-align: center;
    font-weight: 700;
    font-size: 26px;
    line-height: 1;
    letter-spacing: 0.01em;
}

.service03__item-content {
    background: var(--white);
    padding: 20px 20px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.service03__item-text {
    font-weight: 500;
    font-size: 20px;
    text-align: center;
}

@media (max-width: 768px) {
    .service03__list {
        grid-template-columns: 1fr;
    }

    .service03__item-title {
        font-size: 18px;
    }

    .service03__item-text {
        font-size: 16px;
    }
}

/* Company Section */
.company .container {
    padding: 80px 0 65px;
}

.company .section__title-sub {
    color: var(--green);
}

.company__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto 1fr;
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    margin-bottom: 18px;
}

.company__item01 {
    grid-area: 1 / 1 / 3 / 2;
    border: 3px solid var(--black);
    border-radius: 10px;
    box-shadow: var(--shadow-2);
    padding: 30px 25px 75px 40px;
}

.company__item01-logo {
    width: 268px;
    margin-bottom: 20px;
}

.company__item01-table {
    width: 100%;
    font-weight: 700;
    line-height: 1.75;
    letter-spacing: 0.05em;
}

.company__item01-table dt {
    font-size: 16px;
    color: var(--gray);
}

.company__item01-table dt.-red {
    color: var(--red);
}

.company__item01-table dd {
    font-size: 20px;
    border-bottom: 2px dashed var(--black);
    margin-bottom: 25px;
}

.company__item01-table dd strong {
    font-size: 40px;
    line-height: 1;
}

.company__item02 {
    grid-area: 1 / 2 / 2 / 3;
    border-radius: 10px;
    box-shadow: var(--shadow-2);
    overflow: hidden;
}

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

.company__item03 {
    grid-area: 2 / 2 / 3 / 3;
    border: 3px solid var(--black);
    border-radius: 10px;
    box-shadow: var(--shadow-2);
    padding: 10px 45px;
}

.company__item03-title {
    font-weight: 700;
    font-size: 32px;
    line-height: 1.75;
    letter-spacing: 0.05em;
    border-bottom: 2px dashed var(--black);
    margin-bottom: 15px;
}

.company__item03-text {
    display: flex;
    flex-direction: column;
    gap: 1em;
    font-size: 18px;
    line-height: 1.75;
    letter-spacing: 0.05em;
}

.company__access {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.company__access-title {
    font-weight: 700;
    font-size: 32px;
    line-height: 1.75;
    letter-spacing: 0.05em;
}

.company__access-map {
    width: 100%;
    border: 3px solid var(--black);
    border-radius: 10px;
    box-shadow: var(--shadow-2);
    overflow: hidden;
}

@media (max-width: 768px) {
    .company__grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .company__item01,
    .company__item02,
    .company__item03 {
        grid-area: auto;
    }
}

/* Contact Section */
.contact {
    background: var(--light-green);
}

.contact .container {
    padding: 60px 0;
    max-width: 1260px;
}

.contact__box {
    background: var(--green);
    border-radius: 50px;
    border: 3px solid var(--black);
    box-shadow: var(--shadow-2);
    padding: 50px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.contact__content {
    flex: 1;
}

.contact .section__title-sub {
    color: var(--white);
}

.contact__buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 5px 15px;
}

.contact__buttons .cta-button {
    white-space: nowrap;
}

.contact__image {
    width: 250px;
}

@media (max-width: 768px) {
    .contact__box {
        padding: 30px;
        flex-direction: column;
    }

    .contact__content {
        display: contents;
    }

    .contact .section__title {
        order: 1;
    }

    .contact__buttons {
        order: 3;
    }

    .contact__image {
        order: 2;
    }
}

/* Footer */
.footer {
    background: var(--green);
}

.footer .container {
    max-width: 958px;
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.footer__left {
    padding-top: 55px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer__logo {
    width: 168px;
    margin-bottom: 10px;
}

.footer__company {
    font-weight: 500;
    font-size: 17px;
    text-align: center;
}

.footer__company span {
    display: block;
    font-size: 12px;
}

.footer__right {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.footer__nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: start;
    gap: 20px 10px;
    border-bottom: 2px dashed var(--black);
    padding-bottom: 18px;
}

.footer__title {
    font-size: 15px;
    font-weight: 700;
    padding-bottom: 5px;
}

.footer__col--menu .footer__title {
    border-bottom: 2px dashed var(--black);
    margin-bottom: 12px;
}

.footer__list {
    min-width: 100px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 12px;
    line-height: 1.5;
}

.footer__text {
    font-size: 11px;
    line-height: 1.5;
}

.footer__sns {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 75px;
}

.footer__sns-label {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5;
}

.footer__sns-list {
    display: flex;
    gap: 8px;
}

.footer__sns-list a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer__sns-list img {
    height: 22px;
}

.footer__legal {
    margin-bottom: 5px;
}

.footer__legal-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px 30px;
}

.footer__legal-list li {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 13px;
}

.footer__legal-list li:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--black);
  border-radius: 50%;
  margin-left: 30px;
}

.footer__copyright {
    font-size: 12px;
}

/* スマホレイアウト：1列に縦ならび */
@media (max-width: 768px) {
    .footer .container {
        flex-direction: column;
        gap: 30px;
    }
    .footer__nav {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        justify-items: normal;
        gap: 20px;
    }
    .footer__legal-list {
        justify-content: center;
    }
}

/* Service_1 */
/* First View Section */
.servicePage .fv__bg--green {
    bottom: 40%;
    max-width: 1046px;
}

.servicePage .fv__bg--pc {
    top: 400px;
    right: 20%;
    max-width: 710px;
    width: 50vw;
}

.servicePage .fv__content {
    max-width: 45vw;
}

.servicePage .fv__text {
    font-size: 20px;
}

.servicePage .cta-button.-small {
    margin: 0 20px;
}

.fv__form {
    background: var(--light-gray);
    border: 3px solid #000;
    box-shadow: 3px 2px 0 0 rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    font-family: var(--heisei);
    line-height: 1.75;
    letter-spacing: 0.05em;
    width: 370px;
}

.fv-form {
    padding: 15px;
}

.fv-form__title {
    text-align: center;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.02em;
    font-size: 21px;
    margin-bottom: 5px;
}

.fv-form__item {
    margin-bottom: 6px;
}

.fv-form__head {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 3px;
}

.fv-form__label {
    font-size: 10px;
    font-weight: 900;
}

.fv-form__required {
    background: #FF695C;
    color: var(--white);
    font-size: 7px;
    padding: 0 2px;
}

.fv-form__optional {
    background: var(--white);
    font-size: 12px;
    font-size: 7px;
    padding: 0 2px;
}

.fv-form__body {
    width: 100%;
}

.fv-form__body input,
.fv-form__body textarea,
.fv-form__body select {
    width: 100%;
    background: #fff;
    border: none;
    padding: 4px 8px;
    border-radius: 2px;
    font-size: 12px;
    font-weight: 900;
}

.fv-form__body textarea {
    height: 46px;
    resize: vertical;
}

.fv-form__body .wpcf7-form-control-wrap,
.fv-form__body .wpcf7-form-control {
    display: block;
    line-height: 1;
}

.fv-form__body .wpcf7-list-item {
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.fv-form__body input::placeholder,
.fv-form__body textarea::placeholder {
    color: var(--gray);
}

.fv-form__body .wpcf7-list-item {
    margin: 0;
}

.fv-form__body .wpcf7-list-item label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-right: 20px;
}

.fv-form__body input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border: 1px solid var(--black);
    margin: 0;
}

.fv-form .wpcf7-list-item-label {
    font-weight: 700;
    font-size: 11px;
}

.fv-form__row {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    margin-bottom: 6px;
}

.fv-form__row .fv-form__item {
    margin-bottom: 0;
    width: 100%;
}

.fv-form__item--privacy .wpcf7-list-item-label {
    font-weight: 500;
    font-size: 8px;
    line-height: 1.3;
}

.fv-form__item--privacy a {
    text-decoration: underline;
    display: inline;
}

.fv-form__submit.cta-button.-small {
    margin: 0 auto;
    padding: 8px 24px;
    font-size: 14px;
    width: fit-content;
    display: block;
    display: flex;
    align-items: center;
}

.fv-form__submit::after {
    content: "";
    width: 20px;
    height: 20px;
    display: inline-block;
    background-image: url("../img/cta-icon.svg");
    background-repeat: no-repeat;
    background-size: contain;
    transition: transform 0.3s ease-in-out;
}

.fv-form__submit:hover::after {
    transform: translateX(6px);
}

.wpcf7-spinner {
    display: none !important;
}

.fv-form .wpcf7-not-valid-tip {
    font-size: 8px;
    margin: 0;
}

@media (max-width: 768px) {
    .servicePage .fv__content {
        max-width: 100%;
        min-width: auto;
        padding-top: 108px;
        height: 100%;
        gap: 14px;
    }

    .servicePage .fv__text {
        margin-left: 0;
        font-size: 15px;
        flex: 1;
    }

    .fv__form {
        width: 100%;
    }

    .servicePage .fv__image {
        padding-left: 10%;
    }
}

/* Problem Section */
.problem {
    background: var(--light-gray);
}

.problem .container {
    padding: 80px 0;
}

.problem__title {
    margin-bottom: 100px;
    text-align: center;
    font-family: var(--heisei);
    font-weight: 700;
    font-size: 36px;
    line-height: 1;
    letter-spacing: 0.02em;
    position: relative;
}

.problem__title::after {
    content: "";
    background: url(../img/fukidashi.svg);
    position: absolute;
    width: 565px;
    height: 30px;
    bottom: calc(-100% - 20px);
    left: 50%;
    transform: translateX(-50%);
}

.problem__grid {
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 80px;
}

.problem__item {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.problem__item-image {
    max-width: 180px;
    width: 40%;
}

.problem__item-body {
    flex: 1;
}

.problem__item-title {
    margin-bottom: 15px;
    padding-left: 32px;
    font-weight: 700;
    line-height: 1.5;
    position: relative;
}

.problem__item-title::before {
    content: "";
    background: url(../img/check-icon.svg) no-repeat top;
    width: 22px;
    position: absolute;
    inset: 0;
}

.problem__item-text {
    font-size: 15px;
    line-height: 1.75;
    letter-spacing: 0.02em;
}

.problem__text {
    background: var(--black);
    width: fit-content;
    font-family: var(--heisei);
    font-weight: 700;
    font-size: 32px;
    line-height: 1;
    letter-spacing: 0.05em;
    color: var(--white);
    padding: 5px 10px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .problem__title {
        font-size: 24px;
    }

    .problem__title::after {
        max-width: 350px;
        width: 95%;
        background-size: contain;
        background-repeat: no-repeat;
    }

    .problem__grid {
        grid-template-columns: 1fr;
        justify-items: start;
        max-width: 600px;
        margin: 0 auto 40px;
    }

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

    .problem__item.delay1 {
        transition-delay: 0.5s;
    }

    .problem__item-body {
        order: 1;
    }

    .problem__item-image {
        order: 2;
    }

    .problem__text {
        font-size: 24px;
    }
}

/* Triangle Section */
.servicePage .triangle {
    position: relative;
    background: var(--light-gray);
    height: 1px;
    z-index: 1;
}

.servicePage .triangle::before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 80px 162px 0 162px;
    border-color: var(--light-gray) transparent transparent transparent;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
}

/* About Section */
.about {
    background: var(--green);
    overflow: hidden;
    position: relative;
    z-index: 0;
}

.about .container {
    padding: 140px 0 100px;
}

.about .section__title-sub {
    color: var(--white);
}

.about__list {
    max-width: 700px;
    margin: 0 auto;
    margin-bottom: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.about__item {
    background: var(--white);
    border: 3px solid var(--black);
    box-shadow: var(--shadow-2);
    padding: 15px 20px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.about__item-num {
    background: var(--black);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: var(--barlow);
    font-weight: 700;
    font-size: 36px;
    line-height: 0.9;
    letter-spacing: 0.02em;
    color: var(--white);
}

.about__item-num .-small {
    font-size: 14px;
    letter-spacing: 0.04em;
}

.about__item-text {
    font-family: var(--heisei);
    font-weight: 700;
    font-size: 24px;
    line-height: 1;
    letter-spacing: 0.02em;
}

.about__item-text span {
    background: linear-gradient(transparent 50%, var(--light-red) 50%);
    padding-bottom: 0.1em;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.about__bg {
    position: relative;
    height: 100%;
    z-index: -1;
}

.about__bg--mtg {
    position: absolute;
    bottom: -20px;
    left: 40px;
    width: clamp(200px, 40%, 342px);
}

@media (max-width: 768px) {
    .about .container {
        padding-bottom: 150px;
    }

    .about__item-text {
        font-size: 16px;
    }

    .about__text.-main {
        font-size: 22px;
    }

    .about__text.-sub {
        font-size: 18px;
    }

    .about__bg--mtg {
        left: 5px;
    }
}

/* Merit Section */
.merit {
    background: var(--white);
    overflow: hidden;
}

.merit .container {
    padding: 80px 0 100px;
}

.merit .section__title-sub {
    color: var(--green);
}

.merit__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.merit__card {
    width: 100%;
    padding: 32px 20px;
    border: 3px solid var(--black);
    border-radius: 20px;
    box-shadow: var(--shadow-2);
}

.merit__card-title {
    margin-bottom: 32px;
    font-family: var(--heisei);
    font-weight: 700;
    font-size: 32px;
    line-height: 1;
    text-align: center;
}

.merit__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.merit__item {
    padding-left: 18px;
    position: relative;
}

.merit__item:not(:last-child) {
    padding-bottom: 20px;
    border-bottom: 2px dashed var(--black);
}

.merit__item::before {
    content: "";
    width: 10px;
    height: 10px;
    background: var(--black);
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 0;
}

.merit__item-title {
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0.02em;
}

.merit__item-text {
    line-height: 1;
    letter-spacing: 0.02em;
    color: #888;
}

@media (max-width: 768px) {
    .merit__grid {
        grid-template-columns: 1fr;
    }

    .merit__card.delay1 {
        transition-delay: 0.5s;
    }

    .merit__card-title {
        font-size: 20px;
    }

    .merit__item::before {
        width: 8px;
        height: 8px;
        top: 8px;
    }

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

    .merit__item-text {
        font-size: 14px;
    }
}

/* Resources Section */
.resources {
    background: var(--light-green);
    overflow: hidden;
}

.resources .container {
    padding: 80px 0 50px;
}

.resources .section__title-sub {
    color: var(--green);
}

.resources__grid {
    margin-bottom: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px 40px;
}

.resources__card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-1);
}

.resources__heading {
    position: relative;
}

.resources__heading-title {
    padding: 10px 20px;
    background: var(--black);
    font-family: var(--heisei);
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    letter-spacing: 0.1em;
    color: var(--white);
    position: absolute;
    bottom: 20px;
    left: 0;
}

.resources__heading-image {
    height: 277px;
    object-fit: cover;
    object-position: top;
}

.resources__body {
    padding: 20px;
}

.resources__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.resources__item {
    padding-left: 20px;
    position: relative;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.02em;
}

.resources__item::before {
    content: "";
    width: 10px;
    height: 10px;
    background: var(--green);
    border-radius: 50%;
    position: absolute;
    top: 5px;
    left: 0;
}

@media (max-width: 768px) {}

/* scope Section */
.scope {
    background: var(--white);
    overflow: hidden;
    padding: 80px 0;
}

.scope .container {
    background: var(--green);
    border-radius: 20px;
    max-width: 1260px;
    padding: 60px 0 20px;
    margin-bottom: 50px;
}

.scope .section__title-sub {
    color: var(--white);
}

.scope__content {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    overflow: visible;
}

.swiper {
    width: min(80%, 1070px);
    margin: 0 auto 50px;
    overflow: visible !important;
}

.swiper-slide {
    background: var(--white);
    border: 3px solid #040000;
    border-radius: 20px;
    box-shadow: var(--shadow-1);
    width: 350px;
    height: auto;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.scope__item.selected {
    transform: scale(1.1);
    z-index: 2;
    transition: transform 0.3s ease;
}

.scope__item-title {
    margin-bottom: 15px;
    font-family: var(--heisei);
    font-weight: 700;
    font-size: 24;
    line-height: 1;
}

.scope__item-image {
    max-width: 255px;
    margin-bottom: 15px;
}

.scope__item-text {
    margin-bottom: 1em;
    font-size: 17px;
    line-height: 1.5;
}

.scope__item-text:last-child {
    margin-bottom: 0;
}

.swiper-button-prev,
.swiper-button-next {
    width: 100px;
    height: 100px;
}

.swiper-button-prev {
    left: -5px;
    transform: translateX(-50%);
}

.swiper-button-next {
    right: -5px;
    transform: translateX(50%);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    content: "";
    background-repeat: no-repeat;
    background-size: contain;
    height: clamp(50px, 8vw, 100px);
    width: clamp(50px, 8vw, 100px);
    margin: auto;
}

.swiper-button-prev::after {
    background-image: url(../img/slide-prev.svg);
}

.swiper-button-next::after {
    background-image: url(../img/slide-next.svg);
}

@media (max-width: 768px) {
    .swiper {
        width: 70%;
    }

    .swiper-slide {
        height: auto;
    }

    .scope__item-image {
        max-width: 300px;
    }
}

/* Case Study Section */
.case {
    background: var(--white);
}

.case .container {
    padding: 50px 0 100px;
}

.case .section__title-sub {
    color: var(--green);
}

.case__grid {
    margin-bottom: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(370px, 1fr));
    gap: 45px;
}

.case__item {
    background: var(--white);
    border: 3px solid var(--black);
    border-radius: 20px;
    box-shadow: var(--shadow-2);
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.case__item-title {
    font-family: var(--heisei);
    font-weight: 700;
    font-size: 18px;
    line-height: 1.5;
}

.case__voice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.case__voice-image {
    width: 100px;
}

.balloon {
    width: 200px;
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    margin-left: 8px;
    text-align: center;
    background: var(--black);
    border-radius: 100px;
}

.balloon::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -16px;
    margin-top: -8px;
    border: 8px solid transparent;
    border-right: 10px solid var(--black);
}

.case__voice-text {
    font-family: var(--heisei);
    font-weight: 700;
    font-size: 14px;
    line-height: 1.25;
    letter-spacing: 0.01em;
    color: var(--white);
}

.case__item-text {
    font-size: 15px;
    line-height: 2;
    text-align: center;
}

@media (max-width: 768px) {
    .case__grid {
        grid-template-columns: 1fr;
    }

    .case__voice-image {
        width: clamp(40px, 30%, 100px);
    }
}

/* Price Section */
.price {
    background: var(--light-green);
}

.price .container {
    padding: 60px 0;
    max-width: 880px;
}

.price .section__title-sub {
    color: var(--green);
}

.price__list {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.price__item {
    width: 100%;
    background: var(--white);
    border: 3px solid var(--black);
    border-radius: 20px;
    box-shadow: var(--shadow-1);
    display: flex;
    gap: 25px;
}

.price__item-heading {
    flex-shrink: 0;
    padding: 20px 0;
    width: 250px;
    border-right: 2px dashed var(--black);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.price__item-icon {
    width: 36px;
}

.price__item-title {
    font-family: var(--heisei);
    font-weight: 700;
    font-size: 24px;
    line-height: 1;
}

.price__item-body {
    padding: 25px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.price__item-text {
    font-weight: 700;
    line-height: 1;
}

.price__item-text span {
    margin-right: 10px;
    background: var(--black);
    padding: 8px 16px;
    font-size: 14px;
    color: var(--white);
}

.price__item-bottom {
    flex-shrink: 0;
    margin-left: auto;
    padding-right: 20px;
    display: flex;
    align-items: center;
}

.price__item-price {
    font-family: var(--barlow);
    font-weight: 700;
    font-size: 32px;
    line-height: 1;
}

.price__item-price .-big {
    font-size: 43px;
}

.price__footer {
    margin-bottom: 60px;
    text-align: center;
    line-height: 2;
}

@media (max-width: 768px) {
    .price__list {
        flex-direction: column;
        gap: 24px;
    }

    .price__item {
        max-width: 100%;
        flex-direction: column;
        align-items: center;
    }

    .price__item-heading {
        width: 100%;
        border-right: none;
        border-bottom: 3px dashed var(--black);
    }

    .price__item-title {
        font-size: 20px;
    }

    .price__item-body {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 25px;
    }

    .price__item-bottom {
        margin: 0 auto;
        padding: 0 0 20px;
    }

    .price__item-price {
        font-size: 28px;
    }

    .price__item-price .-big {
        font-size: 36px;
    }
}

/* Introduce Section */
.introduce {
    background: var(--green);
}

.introduce .container {
    padding: 60px 0 80px;
}

.introduce .section__title-sub {
    color: var(--white);
}

.introduce__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.introduce__item {
    position: relative;
    margin-top: 50px;
    background: var(--white);
    border-radius: 20px;
    padding: 60px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.introduce__item-num {
    position: absolute;
    top: -50px;
    width: 100px;
    height: 100px;
    background: var(--black);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: var(--barlow);
    font-weight: 700;
    font-size: 49px;
    line-height: 0.9;
    letter-spacing: 0.02em;
    color: var(--white);
}

.introduce__item-num .-small {
    font-size: 19px;
}

.introduce__item-title {
    height: 3em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: var(--heisei);
    font-weight: 700;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    text-align: center;
}

.introduce__item-image {
    height: 124px;
}

.introduce__item-text {
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.introduce__item-text .-bold {
    font-weight: 700;
}

@media (max-width: 1200px) {
    .introduce__list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .introduce__list {
        grid-template-columns: 1fr;
    }

    .introduce__item.delay1,
    .introduce__item.delay2,
    .introduce__item.delay3 {
        transition-delay: 0.5s;
    }

    .introduce__item-title {
        height: auto;
    }
}

/* Comparison Section */
.comparison {
    background: var(--white);
}

.comparison .container {
    padding: 60px 0 100px;
    max-width: 1200px;
}

.comparison .section__title-sub {
    color: var(--green);
}

.comparison__body {
    margin-bottom: 18px;
    overflow-x: auto;
}

.comparison__table {
    min-width: 550px;
    margin-bottom: 18px;
}

.comparison__footer {
    width: 100%;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 20px;
    font-family: var(--heisei);
    font-weight: 700;
    font-size: 20px;
    line-height: 1.5;
    text-align: center;
}

@media (max-width: 768px) {
    .comparison__footer {
        font-size: 16px;
    }
}

/* CTA Section */
.cta {
    background: linear-gradient(var(--white) 80%, var(--light-green) 80%);
}

.cta .container {
    max-width: 1260px;
    padding: 50px 40px;
    background: var(--green);
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cta__left {
    width: 50%;
    min-width: 480px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.cta__title-main {
    margin-bottom: 15px;
    font-family: var(--heisei);
    font-weight: 700;
    font-size: 32px;
    line-height: 1.5;
}

.cta__title-sub {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.5;
}

.cta__bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.cta__tel {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.cta__tel .cta-link {
    margin: 0;
}

.cta__tel .cta__tel-hour {
    display: inline;
}

.cta__right {
    width: 46.2%;
}

.cta__list {
    display: flex;
    flex-wrap: wrap;
    gap: 45px;
}

.cta__item {
    flex: 1;
    max-width: 250px;
    min-width: 120px;
    width: 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.cta__item-image {
    max-width: 250px;
}

.cta__item-text {
    font-weight: 700;
}

@media (max-width: 768px) {
    .cta .container {
        flex-direction: column;
    }

    .cta__left,
    .cta__right {
        display: contents;
    }

    .cta__title {
        order: 1;
    }

    .cta__title-main {
        font-size: 28px;
    }

    .cta__list {
        order: 2;
    }

    .cta__item {
        max-width: 100%;
    }

    .cta__item-image {
        max-width: 200px;
    }

    .cta__item-text {
        font-size: 14px;
    }

    .cta__bottom {
        order: 3;
    }

    .cta__tel {
        justify-content: center;
    }
}

/* Footer Section */
.servicePage.footer {
    background: var(--light-green);
}

.servicePage.footer .container {
    padding: 20px 0 100px;
    max-width: 1160px;
    display: flex;
    justify-content: space-between;
}

.servicePage .footer__left {
    max-width: 436px;
    padding-top: 0;
    display: flex;
    flex-direction: column;
    align-items: normal;
    gap: 15px;
}

.servicePage .footer__logo {
    max-width: 149px;
    min-width: 100px;
    margin-bottom: 0;
}

.servicePage .footer__company {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 40px;
    text-align: left;
}

.servicePage .footer__company-left,
.servicePage .footer__company-right {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.servicePage .footer__company-left {
    width: 146px;
}

.servicePage .footer__company-right {
    width: 250px;
}

.servicePage .footer__company-list {
    display: flex;
    font-size: 14px;
    line-height: 1.5;
}

.servicePage .footer__company-list dt {
    font-weight: 700;
    width: 4.5em;
}

.servicePage .footer__company-list dd {
    flex: 1;
}

.servicePage .footer__right {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.servicePage .footer__nav {
    margin-left: -23px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    align-content: center;
    flex-wrap: wrap;
    gap: 15px 0;
    font-weight: 700;
    font-size: 14px;
    border: none;
    padding: 0;
}

.servicePage .footer__nav li {
    position: relative;
    white-space: nowrap;
}

/*
.servicePage .footer__nav li a {
  padding: 0 23px;
}
*/

.servicePage .footer__nav li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -3px;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--gray);
    border-radius: 50%;
}

.servicePage .footer__copyright {
    font-size: 12px;
    text-align: right;
}

@media (max-width: 768px) {
    .servicePage .footer .container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .servicePage .footer__left {
        align-items: center
    }

    .servicePage .footer__company {
        flex-direction: column;
        justify-content: center;
    }

    .servicePage .footer__right {
        gap: 30px;
    }

    .servicePage .footer__nav {
        justify-content: center;
        margin-left: 0;
    }

    .servicePage .footer__nav li:not(:last-child)::after {
        display: none;
    }

    .servicePage .footer__copyright {
        text-align: center;
    }
}



/*** 下層ページ ***/
.low-section {
    background: var(--green);
    overflow: hidden;
}

.low-section .container {
    padding: 194px 0 80px;
}

.low-section__title {
    margin-bottom: 80px;
    text-align: center;
}

.low-section__title-sub {
    margin-bottom: 28px;
    font-family: var(--barlow);
    font-weight: 700;
    font-size: 15px;
    line-height: 1;
    letter-spacing: 0.1em;
    color: var(--white);
}

.low-section__title-main {
    font-family: var(--heisei);
    font-weight: 700;
    font-size: 32px;
    line-height: 1;
    letter-spacing: 0.02em;
}

.low-section__wrapper {
    background: var(--white);
    border-radius: 50px;
}

/** プライバシーポリシー **/
.privacy-content {
    width: 90%;
    max-width: 960px;
    margin: 0 auto;
    padding: 60px 0;
}

.privacy__heading {
    line-height: 2;
    text-align: center;
    margin-bottom: 60px;
}

.privacy__body {
    display: flex;
    flex-direction: column;
    gap: 40px;
    line-height: 2;
}

.privacy__section-heading {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 700;
    padding: 10px 10px 20px 10px;
    border-bottom: 4px solid var(--black);
}

.privacy__list {
    margin-top: 10px;
}

.privacy__list li {
    padding-left: 12px;
    position: relative;
    font-size: 1rem;
}

.privacy__list li::before {
    content: '・';
    color: var(--black);
    position: absolute;
    top: 0;
    left: 0;
}

.privacy__contact {
    background: var(--light-gray);
    padding: 30px 20px;
    margin-top: 10px;
    display: inline-block;
}

.privacy__contact h3 {
    font-size: 18px;
}

.privacy__contact p {
    font-size: 18px;
}

.privacy__contact a {
    display: inline;
}

/** お問い合わせ **/
.inquiry .container {
    max-width: 980px;
}

.inquiry__form {
    width: 90%;
    max-width: 740px;
    margin: 0 auto;
}

.low-section__wrapper .wpcf7 {
    padding: 60px 0;
}

.inquiry__description {
    text-align: center;
    line-height: 2;
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: 40px;
}

.form-group p {
    margin-top: 2em;
    font-size: 13px;
    line-height: 1.8;
}

.form-group__label {
    display: block;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.--required::after {
    content: '● 必須';
    position: absolute;
    top: 0;
    color: var(--red);
    font-size: 13px;
    font-weight: 700;
    margin-left: 8px;
}

.form-group__radio-wrapper {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.form-group__radio-wrapper .wpcf7-list-item-label {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.form-group__radio-wrapper input {
    display: none;
}

.form-group__radio-wrapper .wpcf7-list-item-label::before {
    content: "";
    width: 24px;
    height: 24px;
    display: block;
    border: 1px solid #919191;
    border-radius: 50%;
    margin-right: 5px;
    position: relative;
}

.form-group__radio-wrapper input:checked+.wpcf7-list-item-label::before {
    content: "";
    border-color: var(--green);
}

.form-group__radio-wrapper input:checked+.wpcf7-list-item-label::after {
    content: "";
    position: absolute;
    top: 12px;
    left: 12px;
    width: 18px;
    height: 18px;
    background: var(--green);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.form-group__radio-wrapper input:checked+.form-group__radio+.form-group__radio-label {
    font-weight: 700;
}

.form-group__radio-wrapper .wpcf7-list-item-label {
    font-size: 18px;
    color: var(--black);
    user-select: none;
}

.form-group__input {
    width: 100%;
    padding: 15px;
    border: 1px solid #919191;
    border-radius: 5px;
    font-size: 18px;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group__input:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.1);
}

.form-group__textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #919191;
    border-radius: 5px;
    font-size: 18px;
    font-family: inherit;
    resize: vertical;
    min-height: 120px;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group__textarea:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.1);
}

.form__submit {
    text-align: center;
}

.form__submit-btn {
    background: var(--black);
    color: var(--white);
    padding: 25px 50px;
    border-radius: 100px;
    font-family: var(--heisei);
    font-weight: 700;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.wpcf7-not-valid-tip {
    margin-top: 10px;
    font-size: 13px;
    color: var(--red);
}

.wpcf7-response-output {
    width: 90%;
    max-width: 740px;
    margin: 50px auto 0 !important;
    padding: 20px !important;
    text-align: center;
}