@-webkit-keyframes reflection {
    0% {
        -webkit-transform: scale(0) rotate(45deg);
        transform: scale(0) rotate(45deg);
        opacity: 0;
    }
    80% {
        -webkit-transform: scale(0) rotate(45deg);
        transform: scale(0) rotate(45deg);
        opacity: 0.25;
    }
    81% {
        -webkit-transform: scale(4) rotate(45deg);
        transform: scale(4) rotate(45deg);
        opacity: 0.4;
    }
    100% {
        -webkit-transform: scale(50) rotate(45deg);
        transform: scale(50) rotate(45deg);
        opacity: 0;
    }
}
@keyframes reflection {
    0% {
        -webkit-transform: scale(0) rotate(45deg);
        transform: scale(0) rotate(45deg);
        opacity: 0;
    }
    80% {
        -webkit-transform: scale(0) rotate(45deg);
        transform: scale(0) rotate(45deg);
        opacity: 0.25;
    }
    81% {
        -webkit-transform: scale(4) rotate(45deg);
        transform: scale(4) rotate(45deg);
        opacity: 0.4;
    }
    100% {
        -webkit-transform: scale(50) rotate(45deg);
        transform: scale(50) rotate(45deg);
        opacity: 0;
    }
}
/* ========================
Base
======================== */
html {
    font-size: 62.5%;
}

body {
    --primary: #1aa5b1;
    --secondary: #ff9b54;
    --green: #47c374;
    --text: #000;
    --white: #fff;
    --base: #f5f5f5;

    --grad-p: linear-gradient(210deg, #6ef4c7, #01daed);
    --grad-s: linear-gradient(to bottom, #ff9b54, #ffc579);

    --font-ja: 'Noto Sans JP', sans-serif;
    --font-en: 'Overpass', sans-serif;
    --font-en2: 'Oswald', sans-serif;

    color: var(--text);
    font-family: var(--font-ja);
    font-weight: 500;
}

* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
    color: var(--text);
}

a:hover,
a:focus {
    opacity: 0.8;
}

ul,
ol {
    list-style: none;
}

em,
address,
b {
    font-style: normal;
}

picture {
    display: block;
    line-height: 0;
    font-size: 0;
}
/* ========================
Common
======================== */
.c-btn {
    display: block;
    background: var(--green);
    border-radius: calc(infinity * 1em);
    padding: 18px 34px 14px;
    box-shadow: 0 4px 0 0 #30a159;
    text-align: center;
    width: 100%;
    height: 100%;
}

.c-btn_inner {
    color: var(--white);
    padding-inline-start: 24px;
    position: relative;
    font-size: 1.67rem;
    white-space: nowrap;
    font-weight: 700;
}
.c-btn_inner::before {
    content: '';
    display: block;
    width: 19px;
    aspect-ratio: 1 /1;
    background: var(--white);
    mask: url(../images/mail.svg) no-repeat center center / contain;
    position: absolute;
    top: 50%;
    left: 0;
    translate: 0 -50%;
}
.c-btn--gritter {
    overflow: hidden;
    position: relative;
}
.c-btn--gritter::before {
    content: '';
    display: block;
    height: 100%;
    width: 10%;
    position: absolute;
    top: -50%;
    left: -78px;
    background-color: #fff;
    opacity: 0;
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-animation: reflection 3s ease-in-out infinite;
    animation: reflection 3s ease-in-out infinite;
}

@media screen and (max-width: 1024px) {
    .c-btn {
        padding: 12px 20px;
    }
    .c-btn_inner {
        font-size: 1.6rem;
        padding-inline-start: 23px;
    }
    .c-btn_inner::before {
        width: 18px;
    }
}

.c-btn2 {
    width: min(calc(114 / 1440 * 100vw), 114px);
    height: min(calc(37 / 1440 * 100vw), 37px);
    position: relative;
    cursor: pointer;
    background: var(--white);
    position: relative;
    padding: min(calc(5 / 1440 * 100vw), 5px) min(calc(10 / 1440 * 100vw), 10px);
}
.c-btn2::before {
    content: '';
    display: block;
    width: min(calc(6 / 1440 * 100vw), 6px);
    height: min(calc(12 / 1440 * 100vw), 12px);
    background: url(../images/chevron.svg) no-repeat center center / contain;
    position: absolute;
    top: 50%;
    right: min(calc(10 / 1440 * 100vw), 10px);
    translate: 0 -50%;
    transition: translate 0.15s ease-in-out;
}

.c-btn2_inner {
    font-size: min(calc(15 / 1440 * 100vw), 15px);
    line-height: 1.8;
    letter-spacing: 0.05em;
    transition: opacity 0.15s ease-in-out;
}
@media (any-hover: hover) {
    .c-btn2:hover .c-btn2_inner {
        opacity: 0.8;
    }
    .c-btn2:hover::before {
        translate: 3px -50%;
    }
}

@media screen and (max-width: 768px) {
    .c-btn2 {
        width: 114px;
        height: 37px;
        padding: 5px 10px;
    }
    .c-btn2_inner {
        font-size: 1.5rem;
    }
    .c-btn2::before {
        width: 6px;
        height: 12px;
        right: 10px;
    }
}

.l-inner {
    max-width: 1040px;
    padding-inline: 20px;
    margin-inline: auto;
}

.c-sect-title {
}

.c-sect-title_en {
    font-family: var(--font-en);
    font-weight: 700;
    font-size: clamp(3.4rem, 2vw + 2.25rem, 4.8rem);
    text-transform: uppercase;
}

.c-sect-title_ja {
    font-weight: 700;
    font-size: clamp(1.7rem, 1vw + 0.75rem, 2rem);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    background-image: var(--grad-p);
    letter-spacing: 0.1em;
}

.c-sect-title_ja.c-sect-title_ja--s {
    background-image: var(--grad-s);
}

.fadeup {
    opacity: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.fadeup.show {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

/* === Slick === */
.slick-list {
    margin-left: -17px;
    margin-right: -17px;
}
.slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.slick-slide {
    float: none;
    height: auto;
}
.slick-slide:not(.slick-current) * {
    -webkit-filter: none;
    filter: none;
}
.slick-prev,
.slick-next {
    display: block;
    position: absolute;
    top: 50%;
    z-index: 1;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 26px;
    height: 92px;
    padding: 0;
    background-color: #000;
    border: none;
    outline: none;
    color: transparent;
    cursor: pointer;
}
.slick-prev::after,
.slick-next::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-70%, -50%) rotate(-45deg);
    transform: translate(-70%, -50%) rotate(-45deg);
    width: 10px;
    height: 10px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    outline: none;
    color: transparent;
}
.slick-prev {
    -webkit-transform: translateY(-50%) scale(-1, 1);
    transform: translateY(-50%) scale(-1, 1);
    left: -17px;
}
.slick-next {
    right: -17px;
}
.slick-disabled {
    opacity: 0;
    cursor: auto;
}
.slick-disabled:hover,
.slick-disabled:focus {
    opacity: 0;
}
.slick-dotted.slick-slider {
    margin-bottom: 40px;
}
.slick-dots {
    display: block;
    position: absolute;
    bottom: -40px;
    width: 100%;
    text-align: center;
}
.slick-dots li {
    display: inline-block;
    margin: 0 4px;
    cursor: pointer;
}
.slick-dots li button {
    display: block;
    width: 40px;
    height: 3px;
    padding: 0;
    background-color: #a8a8a8;
    border: 0;
    outline: none;
    color: transparent;
    font-size: 0px;
    line-height: 0px;
    cursor: pointer;
}
.slick-dots li.slick-active button {
    background-color: #009533;
}

.cont {
    padding: 70px 17px;
}
@media screen and (max-width: 768px) {
    .cont {
        padding-top: 40px;
        padding-bottom: 50px;
    }
}
.cont_inner {
    max-width: 1000px;
    margin: 0 auto;
}

.l-bg {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    border-start-start-radius: 100px;
    border-end-start-radius: 100px;
    background: var(--base);
    z-index: -1;
    width: min(calc(100vw - 20px), 1220px);
}

.l-bg--reverse {
    left: 0;
    right: auto;
    border-start-start-radius: 0;
    border-end-start-radius: 0;
    border-start-end-radius: 100px;
    border-end-end-radius: 100px;
}

@media screen and (min-width: 1440px) {
    .l-bg {
        width: calc(1220 / 1440 * 100vw);
    }
}

@media screen and (max-width: 768px) {
    .l-bg {
        width: calc(360 / 375 * 100vw);
        border-start-start-radius: 50px;
        border-end-start-radius: 50px;
    }

    .l-bg--reverse {
        border-start-start-radius: 0;
        border-end-start-radius: 0;
        border-start-end-radius: 50px;
        border-end-end-radius: 50px;
    }
}

/* ========================
Header
======================== */

.l-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
}

.p-header {
    background: rgb(245 245 245 / 90%);
    padding: 20px 28px 20px 40px;
    box-shadow: 0 4px 4px 0 rgb(0 0 0 / 25%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.p-header_link {
    display: block;
    aspect-ratio: 278 / 57;
    width: calc(278 / 1440 * 100%);
    margin-inline-end: min(calc(25 / 1440 * 100vw), 25px);
    font-size: 1.4rem;
    flex: 1;
    min-width: 190px;
    max-width: calc(278 / 1440 * 100vw);
    transition: opacity 0.3s ease-in-out;
}

.p-header_logo {
}

.p-header_nav {
    margin-inline-end: min(calc(18 / 1440 * 100vw), 18px);
    transition: all 0.3s ease-in-out;
}

.p-header_nav-list {
    display: flex;
}

.p-header_nav-item {
    border-inline-end: 1px solid var(--primary);
}
.p-header_nav-item:last-child {
    border-inline-end: none;
}

.p-header_nav-link {
    display: grid;
    place-items: center;
    height: 100%;
    padding: 4px min(calc(21 / 1440 * 100vw), 21px);
    color: var(--primary);
    text-align: center;
    font-weight: 600;
    line-height: 1.5;
    font-size: 1.4rem;
    white-space: nowrap;
}

.p-header_cta {
    display: flex;
    gap: 12px;
    align-items: center;
    transition: opacity 0.3s ease-in-out;
}

.p-header_tel {
    aspect-ratio: 187 / 53;
    width: calc(187 / 391 * 100%);
}

.p-header_tel-link {
    display: block;
    translate: 0 2px;
}

.p-header_tel-img {
}

.p-header_contact {
}

.p-header_hamburger {
    display: none;
    position: absolute;
    isolation: isolate;
    top: 20px;
    right: 21px;
    z-index: 250;
}

.p-header_hamburger-line {
    display: block;
    height: 2px;
    width: 33px;
    background: var(--primary);
    transition: all 0.3s ease-in-out;
}
.p-header_hamburger-line + .p-header_hamburger-line {
    margin-block-start: 6px;
}

.is-hamburgerOpen .l-header {
    pointer-events: none;
}
.is-hamburgerOpen .p-header {
    background: transparent;
    box-shadow: none;
}

.is-hamburgerOpen .p-header_link,
.is-hamburgerOpen .p-header_nav,
.is-hamburgerOpen .p-header_cta {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.2s ease-in-out;
}

.is-hamburgerOpen .p-header_hamburger {
    pointer-events: auto;
}

.is-hamburgerOpen .p-header_hamburger-line {
    background: var(--white);
}

.is-hamburgerOpen .p-header_hamburger-line:nth-child(1) {
    rotate: 45deg;
    translate: 0 8px;
}

.is-hamburgerOpen .p-header_hamburger-line:nth-child(2) {
    translate: -200% 0;
    opacity: 0;
}

.is-hamburgerOpen .p-header_hamburger-line:nth-child(3) {
    rotate: -45deg;
    translate: 0 -8px;
}

@media screen and (max-width: 1280px) {
    .p-header_link {
        margin-inline-end: min(calc(10 / 1440 * 100vw), 10px);
        min-width: 148px;
    }
    .p-header_nav-link {
        font-size: 1.2rem;
        padding-inline: 8px;
    }

    .p-header_cta {
        gap: 6px;
    }
}

@media screen and (max-width: 1024px) {
    .p-header {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-rows: 1fr 1fr;
        padding: 0;
        row-gap: 6px;
    }
    .p-header_link {
        grid-area: 1 / 1;
        padding: 19px 0 0 21px;
        min-width: 220px;
    }
    .p-header_nav {
        display: none;
    }

    .p-header_cta {
        grid-area: 2 / 1 / 3 / -1;
        flex-direction: row-reverse;
        justify-content: start;
        align-items: center;
        padding-inline: 9px 7px;
        padding-block-end: 17px;
        gap: 8px;
    }

    .p-header_tel {
        aspect-ratio: 176 / 52;
        width: calc(50% - 4px);
        max-width: 176px;
        margin: 0;
    }

    .p-header_contact {
        width: calc(50% - 4px);
        max-width: 176px;
    }

    .p-header_hamburger {
        display: block;
        grid-area: 1 / 2;

        padding-block-start: 20px;
    }
}

@media screen and (max-width: 768px) {
    .p-header_cta {
        justify-content: center;
    }
}

.l-hamburgerMenu {
    position: fixed;
    inset: 0;
    z-index: 125;
    pointer-events: none;
}

.p-hamburgerMenu {
    pointer-events: auto;
    width: 100%;
    height: 100%;
    background: rgb(26 165 177 / 91%);
    padding: 96px 35px 0;
    translate: 100% 0;
    transition: translate 0.3s ease-in-out;
}

.p-hamburgerMenu[aria-hidden='false'] {
    translate: 0 0;
}

.p-hamburgerMenu_overlay {
}

.p-hamburgerMenu_content {
}

.p-hamburgerMenu_close {
    position: absolute;
    top: 28px;
    right: 21px;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
}

.p-hamburgerMenu_close-line {
    display: block;
    height: 2px;
    width: 33px;
    background: var(--white);
    rotate: 45deg;
    translate: 0 7px;
}
.p-hamburgerMenu_close-line + .p-hamburgerMenu_close-line {
    rotate: -45deg;
    translate: 0 -7px;
}

.p-hamburgerMenu_nav {
}

.p-hamburgerMenu_list {
}

.p-hamburgerMenu_item:last-child .p-hamburgerMenu_link {
    border-block-end: 2px solid var(--white);
}

.p-hamburgerMenu_link {
    display: block;
    color: var(--white);
    font-size: 1.7rem;
    font-weight: 600;
    padding-block: 22px;
    border-block-start: 2px solid var(--white);
    pointer-events: auto;
}

/* ========================
Hero
======================== */
.p-hero {
    max-height: 662px;
    min-height: 540px;
    width: 100%;
    aspect-ratio: 1440 / 662;
    position: relative;
    overflow: hidden;
}

.p-hero::before {
    content: '';
    position: absolute;
    width: calc(173 / 1440 * 100vw);
    aspect-ratio: 173/470;
    bottom: 0;
    left: 0;
    translate: 0 50%;
    background: url(../images/hero_deco.png) no-repeat center center / contain;
}

.p-hero_bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    height: 100%;
    width: 100%;
}

.p-hero_bg img,
.p-hero_bg picture {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.p-hero_inner {
    height: 100%;
    display: grid;
    place-items: center;
    aspect-ratio: 672 / 660;
    width: 672px;
    max-width: 672px;
    margin-inline: auto;
    background: url(../images/hero_main-bg.png) no-repeat center bottom / contain;
    position: relative;
    z-index: 5;
}

@keyframes hero-scaleup {
    from {
        scale: 1;
        translate: 0 0;
    }
    to {
        scale: 1.25;
        translate: 0 -7.5%;
    }
}
@keyframes hero-scaleup--sp {
    from {
        scale: 1;
    }
    to {
        scale: 1.1;
    }
}

.p-hero_cont {
    padding-block-start: 140px;
}

.p-hero_title {
    font-weight: 900;
    font-size: clamp(3.2rem, 1vw + 2.5rem, 3.6rem);
    text-align: center;
    line-height: 1.4;
    padding-inline-start: 0.5em;
    position: relative;
    padding-block-end: 13px;
}
.p-hero_title::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    translate: -50% 0;
    width: 139px;
    height: 2px;
    background: url(../images/hero_separator.svg) no-repeat center center / contain;
}

.p-hero_msg1 {
    display: block;
    font-weight: 600;
    line-height: 1.6;
    font-size: clamp(1.7rem, 1vw + 0.75rem, 1.9rem);
    text-align: center;
    margin-block-start: 9px;
    padding-block-end: 12px;
    position: relative;
}
.p-hero_msg1::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    translate: -50% 0;
    width: 139px;
    height: 2px;
    background: url(../images/hero_separator.svg) no-repeat center center / contain;
}

.p-hero_msg2 {
    display: block;
    font-weight: 600;
    line-height: 1.6;
    font-size: clamp(1.4rem, 1vw + 0.5rem, 1.5rem);
    text-align: center;
    margin-block-start: 10px;
}

@media screen and (max-width: 768px) {
    .p-hero {
        background-image: url(../images/hero_bg-sp.jpg);
        aspect-ratio: 375 / 660;
        min-height: 660px;
        max-height: 660px;
    }

    .p-hero::before {
        display: none;
    }

    .p-hero_inner {
        width: 100%;
        aspect-ratio: 375 / 660;
        background-position: center 75%;
        background-size: 110% auto;
    }

    .p-hero_cont {
        padding-block-start: 180px;
    }
}

/* ========================
Reason
======================== */
.p-reason {
    margin-block-start: 71px;
    padding-inline-start: 20px;
    position: relative;
}

.p-reason_inner {
    padding-block: 112px 83px;
    padding-inline-start: min(calc(70 / 1440 * 100vw), 70px);
    border-start-start-radius: 100px;
    border-end-start-radius: 100px;
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: min(calc(86 / 1440 * 100vw), 86px);
    position: relative;
}

.p-reason_inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 39px;
    width: calc(225 / 1220 * 100%);
    aspect-ratio: 225 / 303;
    background: url(../images/shine.svg) no-repeat 39px 0 / contain;
    translate: -39px 0;
}
.p-reason_inner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -47px;
    width: calc(287 / 1440 * 100vw);
    aspect-ratio: 287 / 351;
    min-width: 180px;
    background: url(../images/reason_img.png) no-repeat center center / contain;
    z-index: 5;
}

.p-reason_title {
    position: relative;
    z-index: 5;
}

.p-reason_list {
    display: flex;
    flex-direction: column;
    gap: 97px;
}

.p-reason_item {
    display: flex;
    gap: 9px;
    align-items: flex-start;
    min-height: 160px;
    width: max-content;
}

.p-reason_item-index {
    display: flex;
    flex-direction: column;
    font-family: var(--font-en);
    padding-inline-end: 69px;
    position: relative;
    height: 100%;
    flex-grow: 1;
    translate: 0 22%;
}

.p-reason_item-index::before {
    content: '';
    position: absolute;
    bottom: 64px;
    right: 0;
    width: 73px;
    height: 160px;
    clip-path: polygon(75.3% 0, 100% 0, 24.7% 100%, 0 100%);
    background: var(--grad-s);
}
.p-reason_item-index-text {
    font-weight: 900;
    font-size: clamp(2.4rem, 2vw + 1rem, 3.4rem);
    text-transform: uppercase;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    background-image: var(--grad-s);
    background-size: 100% 100%;
}

.p-reason_item-index-num {
    font-size: clamp(4.9rem, 3vw + 2.75rem, 6.8rem);
    font-weight: 900;
    display: inline-block;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    background-image: var(--grad-s);
    margin-block-start: -12px;
}

.p-reason_item-body {
}

.p-reason_item-title {
    display: flex;
    align-items: flex-end;
    gap: 12px;
}
.p-reason_item:first-child .p-reason_item-title {
    gap: 25px;
}
.p-reason_item:nth-child(2) .p-reason_item-title {
    gap: 32px;
}

.p-reason_item-title-text {
    font-weight: 700;
    font-size: clamp(2.2rem, 1vw + 1.5rem, 2.8rem);
    line-height: 1.4;
    display: block;
}

.p-reason_item-desc {
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.05em;
    font-size: clamp(1.36rem, 1vw + 0.5rem, 1.7rem);
    margin-block-start: 15px;
}

@media screen and (max-width: 768px) {
    .p-reason {
        margin-block-start: 0;
        padding-block: 57px 86px;
        position: relative;
    }
    .p-reason::before {
        content: '';
        position: absolute;
        top: 16px;
        right: 52px;
        aspect-ratio: 105 / 139;
        width: 105px;
        mask: url(../images/shine2.svg) no-repeat center center / contain;
        background: var(--base);
    }

    .p-reason_inner {
        margin-block-start: 43px;
        padding: 28px 20px 104px 35px;
        border-start-start-radius: 50px;
        border-end-start-radius: 50px;
        grid-template-columns: 1fr;
    }

    .p-reason_inner::before {
        width: 141px;
        aspect-ratio: 1 / 1;
        background: url(../images/circle.svg) no-repeat center center / contain;
        top: auto;
        bottom: -48px;
        left: -62px;
    }
    .p-reason_inner::after {
        bottom: -86px;
        left: auto;
        right: 0;
        width: 144px;
        aspect-ratio: 144 / 168;
        min-width: 0;
        background: url(../images/reason_img-sp.png) no-repeat center center / contain;
    }

    .p-reason_list {
        gap: 73px;
    }

    .p-reason_item {
        flex-direction: column;
        gap: 8px;
        width: 100%;
        min-height: none;
        position: relative;
    }

    .p-reason_item-index {
        padding-inline-end: 45px;
    }

    .p-reason_item-index::before {
        height: 115px;
        width: 48px;
        bottom: 17px;
        right: 0;
    }

    .p-reason_item-index-num {
        margin-block-start: -8px;
    }

    .p-reason_item-icon {
        position: absolute;
        left: 120px;
        bottom: 68px;
    }
}

/* ========================
Voice
======================== */
.p-voice {
    padding-inline-end: 20px;
    margin-block-start: 97px;
    position: relative;
}

.p-voice::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 73px;
    aspect-ratio: 83 / 112;
    width: 83px;
    mask: url(../images/shine.svg) no-repeat center center / contain;
    background: var(--secondary);
}

.p-voice::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    aspect-ratio: 1 / 1;
    translate: -50% 60%;
    width: calc(314 / 1440 * 100vw);
    background: url(../images/circle.svg) no-repeat center center / contain;
}

.p-voice_inner {
    /* padding: 58px calc(83 / 1440 * 100vw) 79px calc(215 / 1440 * 100vw); */
    padding-inline-end: min(calc(83 / 1440 * 100vw), 83px);
    padding-block: 58px 79px;
    border-end-end-radius: 100px;
    border-start-end-radius: 100px;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    column-gap: min(calc(120 / 1440 * 100vw), 120px);
    background: var(--base);
    position: relative;
}

.p-voice_cont-wrap {
    margin-block-start: 30px;
}

.p-voice_cont {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.p-voice_cont-inner {
    padding-inline-start: min(calc(70 / 1440 * 100vw), 70px);
    position: relative;
}

.p-voice_cont-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    aspect-ratio: 93/206;
    width: min(calc(93 / 1440 * 100vw), 93px);
    clip-path: polygon(80.1% 0, 100% 0, 19.9% 100%, 0 100%);
    background: var(--grad-p);
}

.p-voice_lead {
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.1em;
    font-size: clamp(2.2rem, 1vw + 1rem, 2.8rem);
    padding-inline-start: min(calc(40 / 1440 * 100vw), 40px);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    background-image: var(--grad-p);
    background-image: linear-gradient(15deg, #6ef4c7, #01daed);
}

.p-voice_desc {
    margin-block-start: 22px;
    font-weight: 400;
    line-height: 1.9;
    letter-spacing: 0.05em;
    font-size: clamp(1.5rem, 1vw + 0.75rem, 1.7rem);
}

@media screen and (max-width: 768px) {
    .p-voice {
        margin-block-start: 19px;
    }

    .p-voice::before {
        display: none;
    }

    .p-voice::after {
        display: none;
    }

    .p-voice_title {
        padding-inline-start: 20px;
    }

    .p-voice_inner {
        padding: 42px 19px 40px 16px;
        border-end-end-radius: 50px;
        border-start-end-radius: 50px;
        margin-block-start: 19px;
    }
    .p-voice_cont-wrap {
        margin-block-start: 0;
        overflow-x: auto;
    }

    .p-voice_cont {
        display: flex;
        flex-direction: row;
        gap: 30px;
        width: fit-content;
    }
    .p-voice_cont-inner {
        padding-inline-start: 0;
        margin-block-start: 0;
        padding-block-end: 20px;
        width: 100%;
        flex-grow: 1;
        flex-shrink: 0;
    }

    .p-voice_cont-inner::before {
        content: '';
        position: absolute;
        top: -6px;
        left: 0;
        aspect-ratio: 58/120;
        width: 58px;
        background: var(--grad-p);
        clip-path: polygon(75.9% 0, 100% 0, 24.1% 100%, 0 100%);
    }

    .p-voice_lead {
        letter-spacing: 0.05em;
        padding-inline-start: 71px;
    }

    .p-voice_desc {
        margin-block-start: 29px;
        padding-inline-start: 24px;
    }
}

/* ========================
Case
======================== */
.p-case {
    margin-block-start: 114px;
    padding-inline-start: 20px;
    position: relative;
}
.p-case_inner {
    max-width: 896px;
    margin-inline-start: auto;
    padding-block: 58px 93px;
    border-start-start-radius: 100px;
    border-end-start-radius: 100px;
    display: grid;
    grid-template-rows: auto 1fr;
    row-gap: 68px;
    background: var(--base);
    position: relative;
}

.p-case_title {
}

.p-case_lead {
    margin-block-start: 18px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.1em;
    font-size: clamp(1.6rem, 1vw + 0.75rem, 1.8rem);
}

.p-case_cont {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    gap: calc(81 / 1440 * 100vw);
}

.p-case_label-wrapper {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 30px;
}

.p-case_label {
    background: #949494;
    text-align: center;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.1em;
    font-size: clamp(1.5rem, 1vw + 1rem, 2.2rem);
    width: calc(50% - 15px);
}
.p-case_label + .p-case_label {
    background: var(--secondary);
}

.p-case_image {
    margin-block-start: 16px;
}
@media screen and (max-width: 768px) {
    .p-case {
        margin-block-start: 48px;
    }
    .p-case_inner {
        padding: 32px 20px 45px 40px;
        border-start-start-radius: 50px;
        border-end-start-radius: 50px;
        margin-block-start: 34px;
        gap: 0;
    }

    .p-case_lead {
        margin-block-start: 14px;
        letter-spacing: 0em;
    }

    .p-case_cont {
        gap: calc(40 / 375 * 100vw);
        overflow: auto;
        padding-block-end: 45px;
        width: calc(260 / 375 * 100vw);
    }

    .p-case_cont-inner {
        width: calc(260 / 375 * 100vw);
    }

    .p-case_label-wrapper {
        gap: 20px;
    }

    .p-case_label {
        width: calc(50% - 10px);
    }
    .p-case_label + .p-case_label {
        background: var(--secondary);
    }

    .p-case_image {
        margin-block-start: 11px;
    }
}

/* ========================
Price
======================== */
.p-price {
    padding-inline-end: 20px;
    margin-block-start: 98px;
    position: relative;
    overflow-x: clip;
}

.p-price::before {
    content: '';
    position: absolute;
    top: -194px;
    right: -19px;
    aspect-ratio: 530 / 561;
    width: calc(530 / 1440 * 100vw);
    background: url(../images/home.svg) no-repeat center center / contain;
}

.p-price::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    aspect-ratio: 1 / 1;
    translate: -50% 70%;
    width: calc(314 / 1440 * 100vw);
    background: url(../images/circle.svg) no-repeat center center / contain;
}

.p-price_title {
}

.p-price_inner {
    padding-block: 50px 31px;
    padding-inline-end: min(calc(66 / 1440 * 100vw), 66px);
    padding-inline-start: 0;
    margin-block-start: 59px;
    border-end-end-radius: 100px;
    border-start-end-radius: 100px;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
    gap: 16px;
}

.p-price_table {
    overflow: auto;
    padding-block-end: 15px;
    width: 100%;
    margin-inline: 0;
}

.p-table {
    border-collapse: separate;
    border-spacing: 8px;
    table-layout: fixed;
    min-width: 910px;
}

.p-table_header {
}

.p-table_row {
    height: 63px;
}

.p-table_row--header {
    height: auto;
}

.p-table_cell {
    border: none;
    background: var(--white);
    font-size: 1.6rem;
    letter-spacing: 0.05em;
}

.p-table_cell--header {
    background: var(--primary);
    color: var(--white);
    text-align: center;
    padding-block: 4px 6px;
}

.p-table_cell--room {
    width: calc(142 / 926 * 100%);
    text-align: center;
    vertical-align: middle;
}

.p-table_cell--price {
    width: calc(128 / 926 * 100%);
    text-align: center;
    vertical-align: middle;
}

.p-table_cell--work {
    width: calc(636 / 926 * 100%);
    padding: 10px 17px 10px 17px;
}

.p-table_body {
}

.p-table_section {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 23px;
    padding-block: 5px;
    border-block-end: 1px solid var(--primary);
}
.p-table_section:last-child {
    border: none;
}
.p-table_location {
    color: var(--primary);
    min-width: 56px;
    letter-spacing: normal;
    text-align: right;
}

.p-table_location-list {
    text-align: left;
    white-space: nowrap;
}

.p-price_list {
    display: grid;
    grid-template-columns: repeat(3, auto);
    grid-template-rows: repeat(3, auto);
    max-width: 971px;
    width: 100%;
    column-gap: min(calc(40 / 1440 * 100vw), 40px);
}

.p-price_item {
    display: flex;
    padding-inline-start: 1em;
    position: relative;
    font-size: 1.6rem;
}
.p-price_item::before {
    content: '・';
}
.p-price_item:last-child {
    grid-area: -1 / -1 / -2 / -2;
}

.p-price_item-head {
    width: 130px;
}

.p-price_item-body {
    flex: 1;
}
@media screen and (max-width: 1024px) {
    .p-price_list {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, auto);
    }
}
@media screen and (max-width: 768px) {
    .p-price {
        padding: 59px 0 42px;
        margin-block-start: 28px;
        background: var(--base);
    }

    .p-price::before {
        display: none;
    }

    .p-price::after {
        display: none;
    }

    .p-price_inner {
        gap: 33px;
        padding: 0;
        margin-block-start: 33px;
        border-end-end-radius: 0;
        border-start-end-radius: 0;
    }
    .p-price_list {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
}

/* ========================
Store
======================== */
.p-store {
    margin-block-start: 252px;
    position: relative;
    overflow-x: clip;
    z-index: 20;
}

.p-store::before {
    content: '';
    display: block;
    aspect-ratio: 83/112;
    width: min(calc(83 / 1440 * 100vw), 83px);
    min-width: 68px;
    mask: url(../images/shine.svg) no-repeat center center / contain;
    background: var(--secondary);
    position: absolute;
    top: -183px;
    left: 35%;
}

.p-store_title {
}

.p-store_lead {
    margin-block-start: 18px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.1em;
    font-size: clamp(1.6rem, 1vw + 0.75rem, 1.8rem);
    max-width: 633px;
}

.p-store_inner {
    position: relative;
    margin-block-start: 28px;
    padding-block-end: 177px;
}

.p-store_map {
    max-width: 704px;
    aspect-ratio: 704/542;
    width: min(calc(704 / 1440 * 100vw), 704px);
    margin-inline: auto;
}

.p-map {
    position: relative;
}

.p-map-inner {
}

.p-map_main {
}

.p-map_area-list {
}

.p-map_area-item {
    width: min(calc(296 / 1440 * 100vw), 296px);
    padding: min(calc(10 / 1440 * 100vw), 10px) min(calc(20 / 1440 * 100vw), 20px) min(calc(15 / 1440 * 100vw), 15px);
    background: var(--area-color);
    position: absolute;
    z-index: 50;
}
.p-map_area-item::before {
    content: '';
    display: block;
    width: 1px;
    height: min(calc(120 / 1440 * 100vw), 120px);
    background: var(--area-color);
    position: absolute;
    z-index: -1;
}

.p-map_area-item:has(.p-map_store-list.is-active) {
    z-index: 99;
}

.p-map_area-item[data-area-name='北海道地方'] {
    --area-color: #79d9e0;
    top: -16%;
    right: -35%;
}
.p-map_area-item[data-area-name='北海道地方']::before {
    rotate: 36deg;
    top: 46%;
    left: 10%;
}

.p-map_area-item[data-area-name='東北地方'] {
    --area-color: #6ef49d;
    top: 37%;
    right: -33%;
}
.p-map_area-item[data-area-name='東北地方']::before {
    rotate: 65deg;
    top: 26%;
    left: -13%;
}

.p-map_area-item[data-area-name='関東地方'] {
    --area-color: #8af3f2;
    top: 78%;
    right: -19%;
}
.p-map_area-item[data-area-name='関東地方']::before {
    rotate: -45deg;
    top: -20%;
    left: -8%;
}

.p-map_area-item[data-area-name='中部地方'] {
    --area-color: #e8ed7f;
    top: 4%;
    left: 20%;
}
.p-map_area-item[data-area-name='中部地方']::before {
    rotate: 154deg;
    top: 0;
    right: 29%;
    height: min(calc(350 / 1440 * 100vw), 350px);
}

.p-map_area-item[data-area-name='中国地方'] {
    --area-color: #ffd4c1;
    top: 4%;
    left: -24%;
}
.p-map_area-item[data-area-name='中国地方']::before {
    rotate: 151deg;
    top: 0;
    right: 3%;
    height: min(calc(400 / 1440 * 100vw), 400px);
}

.p-map_area-item[data-area-name='近畿地方'] {
    --area-color: #d5e0fe;
    top: 91%;
    left: 33%;
}
.p-map_area-item[data-area-name='近畿地方']::before {
    rotate: 180deg;
    top: 0;
    left: 29%;
    height: min(calc(50 / 1440 * 100vw), 50px);
    translate: 0 -75%;
}

.p-map_area-item[data-area-name='四国地方'] {
    --area-color: #b0d7ff;
    top: 102%;
    left: -12%;
}
.p-map_area-item[data-area-name='四国地方']::before {
    rotate: 204deg;
    top: 0;
    right: 5%;
    translate: 0 -75%;
}

.p-map_area-item[data-area-name='九州地方'] {
    --area-color: #d8dae5;
    top: 44%;
    left: -29%;
}
.p-map_area-item[data-area-name='九州地方']::before {
    rotate: 154deg;
    top: 0;
    right: 0;
    height: min(calc(200 / 1440 * 100vw), 200px);
}

.p-map_area-name {
    letter-spacing: 0.05em;
    line-height: 1.8;
    font-size: 1.25vw;
}

.p-map_prefecture-list {
    display: flex;
    flex-wrap: wrap;
    gap: 13px 9px;
    margin-block-start: 5px;
}

.p-map_prefecture-item {
}

.p-map_prefecture-btn {
}

.p-map_store-list {
    padding: min(calc(10 / 1440 * 100vw), 10px) min(calc(20 / 1440 * 100vw), 20px);
    background: var(--white);
    width: 100%;
    max-width: min(calc(174 / 1440 * 100vw), 174px);
    position: absolute;
    z-index: 60;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.p-map_store-item {
    border-block-end: 1px solid var(--secondary);
}
.p-map_store-item:last-child {
    border-block-end: none;
}

.p-map_store-item:has(.p-map_store-info.is-active) {
    color: var(--primary);
}

.p-map_store-btn {
    padding-block: 8px;
    cursor: pointer;
}

.p-map_store-name {
    font-size: min(calc(16 / 1440 * 100vw), 16px);
    letter-spacing: 0.05em;
}

.p-map_store-info {
    width: min(calc(283 / 1440 * 100vw), 283px);
    background: var(--white);
    position: absolute;
    z-index: 70;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    padding: min(calc(10 / 1440 * 100vw), 10px) min(calc(20 / 1440 * 100vw), 20px);
}

.p-map_store-info-title {
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.8;
    font-size: min(calc(18 / 1440 * 100vw), 18px);
    border-block-end: 1px solid var(--secondary);
    padding-block-end: 10px;
    color: var(--text);
}

.p-map_store-info-contact {
    display: block;
    border-radius: 999em;
    font-weight: 400;
    font-size: min(calc(14 / 1440 * 100vw), 14px);
    line-height: 1.8;
    letter-spacing: 0.05em;
    background: #baeaee;
    text-align: center;
    padding-block: min(calc(11 / 1440 * 100vw), 11px);
    margin-block-start: 10px;
    aspect-ratio: 243/47;
}

.p-map_store-info-item-tel {
    aspect-ratio: 243/47;
    display: grid;
    place-items: center;
    text-align: center;
    border-radius: 999em;
    font-family: var(--font-en2);
    font-weight: 400;
    font-size: min(calc(17 / 1440 * 100vw), 17px);
    letter-spacing: 0.05em;
    background: var(--secondary);
    padding-block: min(calc(11 / 1440 * 100vw), 11px);
    margin-block-start: 10px;
    padding-inline-start: 1.5em;
    position: relative;
}
.p-map_store-info-item-tel::before {
    content: '';
    display: block;
    width: min(calc(14 / 1440 * 100vw), 14px);
    aspect-ratio: 14/23;
    background: url(../images/tel-icon.svg) no-repeat center center / contain;
    position: absolute;
    top: 50%;
    left: 22%;
    translate: 0 -50%;
}

/* 初期非表示設定 */
.js-store-list,
.js-store-info {
    display: none;
}

/* アクティブ状態 */
.js-store-list.is-active,
.js-store-info.is-active {
    display: block;
}

@media screen and (max-width: 768px) {
    .p-store {
        margin-block-start: 62px;
    }
    .p-store::before {
        top: -107px;
        left: 76%;
    }
    .p-store_inner {
        padding-block-end: 0;
    }

    .p-store_map {
        max-width: 100%;
        width: 100%;
        aspect-ratio: auto;
    }

    .p-map_main {
        padding-inline-start: 21px;
        width: calc(273 / 375 * 100vw);
    }
    .p-map_area-list {
        width: 100%;
        max-width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 9px 8px;
    }

    .p-map_area-item[data-area-name] {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        width: 100%;
        padding: min(calc(10 / 375 * 100vw), 10px) min(calc(20 / 375 * 100vw), 20px) min(calc(15 / 375 * 100vw), 15px);
    }
    .p-map_area-item--multi {
        grid-column: span 2;
    }
    .p-map_area-item::before {
        display: none;
    }

    .p-map_area-name {
        font-size: 1.8rem;
    }

    .p-map_prefecture-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        margin-block-start: 8px;
    }

    .p-map_store-list {
        padding: 10px 20px;
        max-width: 174px;
    }

    .p-map_store-name {
        font-size: 1.4rem;
    }

    .p-map_store-info {
        width: 100%;
        max-width: 283px;
        padding: 10px 20px;
    }

    .p-map_store-info-title {
        font-size: 1.4rem;
    }

    .p-map_store-info-contact {
        font-size: 1.4rem;
        padding-block: 11px;
    }

    .p-map_store-info-item-tel {
        padding-block: 8px;
    }
    .p-map_store-info-tel-text {
        font-size: 1.5rem;
        font-weight: 600;
        line-height: 1;
        padding-inline-start: 1.25em;
        position: relative;
    }
    .p-map_store-info-tel-num {
        font-size: 1.3rem;
        font-family: var(--font-en2);
        line-height: 1;
        display: block;
        margin-block-start: 2px;
    }
    .p-map_store-info-tel-text::before {
        content: '';
        display: block;
        position: absolute;
        left: 0;
        top: 50%;
        translate: 0 -50%;
        width: 11px;
        height: 18px;
        background: url(../images/tel-icon.svg) no-repeat center center / contain;
    }
    .p-map_store-info-item-tel::before {
        display: none;
    }
}

@media (any-hover: hover) {
    .p-map_store-btn:hover {
        color: var(--primary);
    }
}

/* ========================
About
======================== */
.p-about {
    padding-inline-end: 20px;
    margin-block-start: 40px;
    position: relative;
    overflow-x: clip;
}

.p-about::before {
    content: '';
    display: block;
    width: min(calc(226 / 1440 * 100vw), 226px);
    aspect-ratio: 226/529;
    background: url(../images/line.png) no-repeat center center / contain;
    position: absolute;
    top: 0;
    right: -93px;
    z-index: 10;
}

.p-about_title {
}

.p-about_inner {
    margin-block-start: 36px;
    padding-block: 31px 26px;
}

.p-about_desc {
    line-height: 1.7;
    letter-spacing: 0.05em;
    font-size: clamp(1.4rem, 1vw + 0.75rem, 1.6rem);
    display: flex;
    flex-direction: column;
}

@media screen and (max-width: 768px) {
    .p-about {
        margin-block-start: 59px;
    }
    .p-about::before {
        width: 133px;
        top: -130px;
        right: -47px;
    }
    .p-about_inner {
        margin-block-start: 26px;
        padding: 23px 23px 39px 35px;
    }
    .p-about_desc {
        gap: 10px;
    }
}

/* ========================
Contact
======================== */
.p-contact {
    padding-block: 93px 87px;
}

.p-contact_inner {
}

.p-contact_title {
}

.p-contact_lead {
    margin-block-start: 25px;
    line-height: 1.8;
    letter-spacing: 0.05em;
    font-size: 1.6rem;
    max-width: 671px;
}

.p-contact_form {
    margin-block-start: 37px;
    max-width: 930px;
}
@media screen and (max-width: 768px) {
    .p-contact {
        padding-block: 59px 50px;
    }
    .p-contact_lead {
        margin-block-start: 14px;
    }

    .p-contact_form {
        margin-block-start: 35px;
    }
}

.form .form-text {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 59px;
    padding: 14px 20px 14px 23px;
    background-color: var(--white);
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-size: 1.4rem;
    line-height: 1.5;
    border: 1px solid #b0b0b0;
}
.form .form-text::-webkit-input-placeholder {
    color: #cdcdcd;
}
.form .form-text::-moz-placeholder {
    color: #cdcdcd;
}
.form .form-text:-ms-input-placeholder {
    color: #cdcdcd;
}
.form .form-text::-ms-input-placeholder {
    color: #cdcdcd;
}
.form .form-text::placeholder {
    color: #cdcdcd;
}
.form .form-text:not(:-moz-placeholder-shown) {
    background-color: #fff;
    border: 1px solid #232323;
}
.form .form-text:not(:-ms-input-placeholder) {
    background-color: #fff;
    border: 1px solid #232323;
}
.form .form-text:not(:placeholder-shown) {
    background-color: #fff;
    border: 1px solid #232323;
}

.form .form-select {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 59px;
    padding: 14px 20px 14px 23px;
    background-color: var(--white);
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-size: 1.4rem;
    line-height: 1.5;
    width: 100%;
    border: 1px solid #b0b0b0;
    display: grid;
    align-items: anchor-center;
}
.form .form-select--initial {
    background-color: #fff;
    color: #393939;
}
@media screen and (max-width: 768px) {
    .form .form-text {
        padding: 11px;
        height: 48px;
    }
    .form .form-select {
        height: 48px;
        padding: 11px;
    }
}
.form .form_item--has-btn .form-text {
    height: 48px;
}
.form .form-zip-btn {
    padding: 7px 39px;
    display: grid;
    place-items: center;
    text-align: center;
    height: 48px;
    background: none;
    border: 2px solid var(--secondary);
    border-radius: 999em;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.8;
    cursor: pointer;
}
@media screen and (max-width: 768px) {
    .form .form-zip-btn {
        padding: 11px 20px;
        width: min(calc(136 / 375 * 100vw), 136px);
        border-width: 1px;
    }
}
.form .wpcf7-form-control-wrap {
    display: block;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
@media screen and (max-width: 768px) {
    .form .wpcf7-form-control-wrap {
        margin-top: 7px;
    }
}
.form_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 23px;
}
@media screen and (max-width: 768px) {
    .form_item {
        display: block;
    }
}
.form_item:not(:first-child) {
    margin-top: 20px;
}
.form_item--short .wpcf7-form-control-wrap {
    max-width: 259px;
}
@media screen and (max-width: 768px) {
    .form_item--short .wpcf7-form-control-wrap {
        max-width: 187px;
    }
}
@media screen and (max-width: 768px) {
    .form_item--has-btn {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 8px;
    }
}
@media screen and (max-width: 768px) {
    .form_item--has-btn .form_title {
        width: 100%;
    }
}
.form_item--has-btn .wpcf7-form-control-wrap {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 100%;
}
@media screen and (max-width: 768px) {
    .form_item--has-btn .form-zip-btn {
        margin-top: 10px;
        margin-left: 0;
    }
}

.form_title {
    display: flex;
    justify-content: space-between;
    width: 217px;
    font-size: clamp(1.4rem, 1vw + 0.75rem, 1.6rem);
    line-height: 1.8;
    font-weight: 700;
    letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
    .form_title {
        width: auto;
        gap: 20px;
        justify-content: start;
    }
}
.form_required {
    color: var(--white);
    font-size: 1.4rem;
    line-height: 1.8;
    letter-spacing: 0.05em;
    background: var(--secondary);
    padding: 1px 10px 2px;
    height: max-content;
}
.form_control {
    display: block;
    width: 100%;
}
.form .form_item--select .wpcf7-form-control-wrap {
    position: relative;
}
@media screen and (max-width: 768px) {
    .form .form_item--select .wpcf7-form-control-wrap {
        max-width: 100%;
    }
}
.form .form_item--select .wpcf7-form-control-wrap::after {
    content: '';
    display: block;
    position: absolute;
    top: 22px;
    right: 30px;
    width: 9px;
    height: 17px;
    mask: url(../images/chevron.svg) no-repeat center center / contain;
    background: var(--text);
    rotate: 90deg;
}
.form .form_item--radio > p {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.form .form_item--radio .wpcf7-radio {
    margin-top: -12px;
    margin-left: -20px;
    width: auto;
}
@media screen and (max-width: 768px) {
    .form .form_item--select .wpcf7-form-control-wrap::after {
        top: 17px;
    }
    .form .form_item--radio .wpcf7-radio {
        margin-top: 0;
        margin-left: 0;
    }
}
.form .form_item--radio .wpcf7-radio input {
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
}
.form .form_item--radio .wpcf7-radio input:checked + .wpcf7-list-item-label {
    cursor: auto;
}
.form .form_item--radio .wpcf7-radio input:checked + .wpcf7-list-item-label::before {
    cursor: auto;
}
.form .form_item--radio .wpcf7-radio input:checked + .wpcf7-list-item-label::after {
    opacity: 1;
    cursor: auto;
}
.form .form_item--radio .wpcf7-list-item {
    display: inline-block;
    margin-top: 12px;
    margin-left: 20px;
}
@media screen and (max-width: 768px) {
    .form .form_item--radio .wpcf7-list-item {
        display: block;
        margin-left: 0;
    }
}
.form .form_item--radio .wpcf7-list-item-label {
    display: inline-block;
    position: relative;
    padding-left: 31px;
    font-size: 1.6rem;
    line-height: 1.25;
    cursor: pointer;
}
.form .form_item--radio .wpcf7-list-item-label::before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 24px;
    height: 24px;
    background-color: #fff;
    border: 2px solid #009533;
    border-radius: 50%;
    cursor: pointer;
}
.form .form_item--radio .wpcf7-list-item-label::after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 6px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-color: #009533;
    border-radius: 50%;
    opacity: 0;
    cursor: pointer;
}
.form .form_item--checkbox .wpcf7-checkbox {
    margin-top: -12px;
    margin-left: -36px;
}
@media screen and (max-width: 768px) {
    .form .form_item--checkbox .wpcf7-checkbox {
        margin-top: 0;
        margin-left: 0;
    }
}
.form .form_item--checkbox .wpcf7-checkbox input {
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
}
.form .form_item--checkbox .wpcf7-checkbox input:checked + .wpcf7-list-item-label::before {
    background-color: #b6b6b6;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.form .form_item--checkbox .wpcf7-checkbox input:checked + .wpcf7-list-item-label::after {
    opacity: 1;
}
.form .form_item--checkbox .wpcf7-list-item {
    display: inline-block;
    margin-top: 12px;
    margin-left: 36px;
}
@media screen and (max-width: 768px) {
    .form .form_item--checkbox .wpcf7-list-item {
        display: block;
        margin-top: 12px;
        margin-left: 0;
    }
}
.form .form_item--checkbox .wpcf7-list-item-label {
    display: inline-block;
    position: relative;
    padding-left: 36px;
    font-size: 1.4rem;
    line-height: 1.7857142857;
    cursor: pointer;
}
@media screen and (max-width: 768px) {
    .form .form_item--checkbox .wpcf7-list-item-label {
        padding-left: 27px;
        font-size: 1.2em;
    }
}
.form .form_item--checkbox .wpcf7-list-item-label::before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 25px;
    height: 25px;
    background-color: #fff;
    border: 2px solid #b6b6b6;
    border-radius: 4px;
    cursor: pointer;
}
@media screen and (max-width: 768px) {
    .form .form_item--checkbox .wpcf7-list-item-label::before {
        width: 20px;
        height: 20px;
    }
}
.form .form_item--checkbox .wpcf7-list-item-label::after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 6px;
    -webkit-transform: translateY(-60%) rotate(-45deg);
    transform: translateY(-60%) rotate(-45deg);
    width: 12px;
    height: 6px;
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    opacity: 0;
    cursor: pointer;
}
@media screen and (max-width: 768px) {
    .form .form_item--checkbox .wpcf7-list-item-label::after {
        left: 4px;
    }
}
.form .form_item--optional:not(._) {
    margin-top: 34px;
    text-align: center;
}
@media screen and (max-width: 768px) {
    .form .form_item--optional:not(._) {
        margin-top: 20px;
    }
}
@media screen and (max-width: 768px) {
    .form .form_item--optional:not(._) .wpcf7-list-item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}
.form .form_item--optional:not(._) .wpcf7-list-item-label {
    color: #5e544e;
}
@media screen and (max-width: 768px) {
    .form .form_item--optional:not(._) .wpcf7-list-item-label {
        text-align: left;
        font-size: 1.2rem;
    }
}
.form .wpcf7-not-valid:not(.wpcf7-radio) {
    background: #f6f6f6;
    color: #464646;
}
.form .wpcf7-not-valid-tip {
    margin-top: 4px;
}
.form_note {
    margin-top: 8px;
    margin-left: 126px;
    color: #5e544e;
    font-size: 1.3rem;
    line-height: 1.5;
}
@media screen and (max-width: 768px) {
    .form_note {
        margin-left: 0;
    }
}
.form_privacy-policy-wrap {
    margin-top: 52px;
    text-align: center;
}
@media screen and (max-width: 768px) {
    .form_privacy-policy-wrap {
        margin-top: 43px;
    }
}
.form_privacy-policy {
    display: inline-block;
    font-size: 1.3rem;
    line-height: 1.8;
}
@media screen and (max-width: 768px) {
    .form_privacy-policy {
        font-size: 1.2rem;
    }
}
.form_submit-wrap {
    margin-top: 28px;
    text-align: center;
}
.form_submit {
    position: relative;
    width: 174px;
    padding-top: 12px;
    padding-bottom: 14px;
    outline: none;
    border: none;
    border-radius: 999em;
    background-color: #74d8e0;
    color: #fff;
    font-size: 1.6rem;
    line-height: 1.2;
    cursor: pointer;
}
@media (any-hover: hover) {
    .form_privacy-policy a:hover {
        color: var(--secondary);
    }
}
@media screen and (max-width: 768px) {
    .form_submit {
        width: 174px;
        padding-block: 13px;
        font-size: 1.6rem;
    }
}
.wpcf7-response-output {
    display: none;
}

/* ========================
Footer
======================== */
.p-footer {
    background-color: var(--primary);
    color: var(--white);
    padding-block: 26px 51px;
}

.p-footer_inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: min(calc(1040 / 1440 * 100vw), 1040px);
    min-width: 640px;
    margin-inline: auto;
}

.p-footer_logo {
    aspect-ratio: 281/298;
    width: 281px;
    place-self: center;
    justify-self: start;
}

.p-footer_info {
    place-self: end;
    justify-self: end;
}

.p-footer_logo2 {
    width: 248px;
    aspect-ratio: 248/49;
}

.p-footer_nav {
    margin-block-start: 21px;
}

.p-footer_nav-list {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: repeat(4, 1fr);
    column-gap: min(calc(68 / 1440 * 100vw), 68px);
    row-gap: 4px;
    grid-auto-flow: column;
}

.p-footer_nav-item {
}

.p-footer_nav-link {
}

.p-footer_nav-link-text {
    color: var(--white);
    font-weight: 600;
    line-height: 1.5;
    font-size: min(calc(16 / 1440 * 100vw), 16px);
    display: inline-block;
    padding-block-end: 4px;
    position: relative;
    overflow: hidden;
}
.p-footer_nav-link-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--white);
    opacity: 0;
    translate: -100% 0;
    transition: all 0.3s ease-in-out;
}

.p-footer_copy {
    margin-block-start: 28px;
    display: inline-block;
    font-weight: 400;
    font-size: 1.2rem;
}

@media (any-hover: hover) {
    .p-footer_nav-link:hover .p-footer_nav-link-text::after {
        opacity: 1;
        translate: 0 0;
    }
}

@media screen and (max-width: 768px) {
    .p-footer {
        padding: 28px 20px;
        position: relative;
    }

    .p-footer_inner {
        display: block;
        width: 100%;
        min-width: 0;
        margin-inline: auto;
    }

    .p-footer_logo {
        width: 152px;
        position: absolute;
        bottom: 28px;
        right: 17px;
    }

    .p-footer_info {
        place-self: revert;
        justify-self: revert;
    }

    .p-footer_logo2 {
        width: 267px;
    }

    .p-footer_nav {
        margin-block-start: 23px;
        max-width: 226px;
    }

    .p-footer_nav-list {
        display: block;
        row-gap: 0;
    }

    .p-footer_nav-item {
        width: 100%;
    }

    .p-footer_nav-link {
        display: block;
        width: 100%;
        border-block-end: 1px solid var(--white);
    }

    .p-footer_nav-link-text {
        font-size: 1.6rem;
        padding-block: 14px;
    }
    .p-footer_nav-link-text::after {
        display: none;
    }

    .p-footer_copy {
        margin-block-start: 153px;
    }
}

/* ========================
Top Button
======================== */
.l-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
}

.c-top-btn {
    border-radius: 50%;
    aspect-ratio: 1;
    width: min(calc(84 / 1440 * 100vw), 84px);
    min-width: 56px;
    background: #c6c6c6;
    display: grid;
    place-items: center;
}

.c-top-btn_text {
    color: var(--white);
    font-weight: 600;
    letter-spacing: 0.05em;
    font-size: 1.8rem;
    text-align: center;
    text-transform: uppercase;
    font-size: clamp(1.2rem, 1vw + 0.5rem, 1.8rem);
    padding-block-start: 30px;
    position: relative;
    cursor: pointer;
}

.c-top-btn_text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    translate: -50% 0;
    width: 23px;
    height: 25px;
    background: url(../images/arrow.svg) no-repeat center center / contain;
}

.js-top {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.js-top.is-visible {
    opacity: 1;
    visibility: visible;
}

@media (any-hover: hover) {
    .c-top-btn:hover {
        opacity: 0.7;
    }
}
@media screen and (max-width: 768px) {
    .l-top-btn {
        bottom: 10px;
        right: 7px;
    }
    .c-top-btn_text {
        padding-block-start: 24px;
    }
}

/* ========================
Helper
======================== */
/* 768px未満でのみ表示（モバイルのみ） */
.u-only-under768 {
    display: block !important;
}

@media screen and (min-width: 768px) {
    .u-only-under768 {
        display: none !important;
    }
}

/* 768px以上でのみ表示（タブレット・デスクトップ） */
.u-only-over768 {
    display: none !important;
}

@media screen and (min-width: 768px) {
    .u-only-over768 {
        display: block !important;
    }

    .u-only-over768--flex {
        display: flex !important;
    }

    .u-only-over768--inline-block {
        display: inline-block !important;
    }

    .u-only-over768--grid {
        display: grid !important;
    }
}

/* 1024px未満でのみ表示（モバイル・タブレット） */
.u-only-under1024 {
    display: block !important;
}

@media screen and (min-width: 1024px) {
    .u-only-under1024 {
        display: none !important;
    }
}

/* 1024px以上でのみ表示（デスクトップのみ） */
.u-only-over1024 {
    display: none !important;
}

@media screen and (min-width: 1024px) {
    .u-only-over1024 {
        display: block !important;
    }

    .u-only-over1024--flex {
        display: flex !important;
    }

    .u-only-over1024--inline-block {
        display: inline-block !important;
    }

    .u-only-over1024--grid {
        display: grid !important;
    }
}

.clear-fix {
    clear: both;
}

.marker {
    background-color: #fff48f;
}

.white-line {
    background-image: -webkit-linear-gradient(bottom, #fff 7px, transparent 7px);
    background-image: linear-gradient(to top, #fff 7px, transparent 7px);
}

.primary {
    color: #009533;
}

.yellow {
    color: #fff48f;
}

.E42D2D {
    color: #e42d2d;
}

.bold {
    font-weight: bold;
}
