/* --------------------------------------------------- */
/* common */
/* --------------------------------------------------- */
:root {
    --base-color: #0e1926;
    --primary-color: #17364b;
    --accent-color: #d95656;
    --header-width: 0;
    --header-height: 0;
    --window-percent: 0;
    --window-vw: 0;
    --window-diff: 0;
}
* {
    font-family: FP-こぶりなゴシック StdN W3, sans-serif;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
}
html {
    /* scroll-behavior: smooth; */
    background-color: #f2f2f2;
    font-size: calc(16 / 1440 * (100vw - var(--window-diff)));
    margin-top: 0 !important;
}
@media screen and (max-width: 1279px) {
    html {
        font-size: calc(20 / 768 * (100vw - var(--window-diff)));
    }
}
@media screen and (max-width: 767px) {
    html {
        font-size: calc(16 / 375 * (100vw - var(--window-diff)));
    }
}
h1,
h2,
h3,
h4,
p {
    color: var(--base-color);
    line-height: 1;
    letter-spacing: -0.03em;
}
a {
    text-decoration: none;
    color: var(--base-color);
    transition: opacity 0.3s;
    display: block;
    font-family: FP-こぶりなゴシック StdN W6, sans-serif;
    font-style: normal;
    letter-spacing: -0.03em;
}
a:hover {
    opacity: 0.5;
}
h1,
h2,
h3,
h4 {
    font-weight: 600;
    font-family: FP-こぶりなゴシック StdN W6, sans-serif;
    font-style: normal;
}
p {
    font-size: 16px;
    font-weight: 400;
}
span {
    font-family: inherit;
    line-height: inherit;
    display: inline-block;
}
button {
    border: none;
    background-color: transparent;
    cursor: pointer;
    line-height: 1;
}
.eng {
    font-family: "Barlow Semi Condensed", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    letter-spacing: -0.02em;
}
img {
    /* width: 100%;
  height: auto; */
    display: block;
}
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.weight_light {
    font-family: FP-こぶりなゴシック StdN W3, sans-serif;
    font-style: normal;
}
.bg {
    background-image: url("../img/asset/bg.webp");
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100dvh;
    position: fixed;
    top: 0;
    left: 0;
    mix-blend-mode: multiply;
    opacity: 0.12;
    z-index: -1;
}
/* --------------------------------------------------- */
/* pagelink */
/* --------------------------------------------------- */
.pagelink {
    width: max-content;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem 1.25rem 1.75rem;
    border: 1px solid var(--base-color);
    font-size: 1.125rem;
    line-height: 1;
}
.pagelink--white {
    border-color: #fff;
    color: #fff;
}
.pagelink__arrow {
    width: 1.5rem;
    height: auto;
}
.pagelink--white .pagelink__arrow path {
    stroke: #fff;
}
@media screen and (max-width: 1279px) {
    .pagelink {
        font-size: 1rem;
        padding: 1.25rem 1.25rem 1.25rem 1.5rem;
        gap: 0.62rem;
    }
    .pagelink__arrow {
        width: 1.25rem;
    }
}

/* --------------------------------------------------- */
/* layout */
/* --------------------------------------------------- */
.layout {
    width: 100%;
    display: flex;
    flex-direction: row-reverse;
}
main {
    flex: 1;
}
@media screen and (max-width: 1279px) {
    .layout {
        display: block;
    }
}

/* --------------------------------------------------- */
/* responsive */
/* --------------------------------------------------- */
.sp-d {
    display: none;
}
.pc-d {
    display: block;
}
@media screen and (max-width: 1279px) {
    .sp-d {
        display: block;
    }
    .pc-d {
        display: none !important;
    }
}

/* --------------------------------------------------- */
/* accesories */
/* --------------------------------------------------- */
.marker::before {
    width: 0;
    transition: width 0.3s ease-in-out;
    transition-delay: 0.1s;
}
.marker.active::before {
    width: 100%;
}

/* --------------------------------------------------- */
/* header & nav */
/* --------------------------------------------------- */
header {
    /* position: fixed; */
    width: auto;
    height: auto;
    top: 0;
    left: 0;
    z-index: 100;
    flex: none;
}
.header__logo {
    position: fixed;
    top: 2rem;
    left: 3rem;
    z-index: 100;
}
.header-logo__svg {
    height: 3.5rem;
    width: auto;
}
.header__nav {
    /* display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 40px; */
    width: 100%;
    height: 100dvh;
    background-color: var(--primary-color);
    position: sticky;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}
.header__home {
    padding: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
}
.header-home__icon {
    width: 1.75rem;
    height: 1.75rem;
}
.header-home__icon path {
    transition: stroke 0.3s;
}
.header__btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    border-top: 2px solid #56768b;
    border-bottom: 2px solid #56768b;
    transition: border-color 0.3s;
    cursor: pointer;
}
.header-btn__inner {
    width: 1.75rem;
    height: 1rem;
    position: relative;
}
.header-btn__line {
    background-color: #fff;
    width: 100%;
    height: 1px;
    position: absolute;
    transform-origin: center;
    transition: background-color 0.3s, opacity 0.3s, transform 0.3s, top 0.3s,
        bottom 0.3s;
}
.header-btn__line:first-of-type {
    top: 0;
    transform: translateY(-50%);
}
.header-btn__line:nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
}
.header-btn__line:last-of-type {
    bottom: 0;
    transform: translateY(50%);
}
.header__instagram {
    padding: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
}
.header-instagram__icon {
    width: 1.75rem;
    height: 1.75rem;
}
.header-instagram__icon path {
    transition: stroke 0.3s;
}
header.active .header__nav {
    background-color: #fff;
}
header.active .header-home__icon path {
    stroke: var(--base-color);
}
header.active .header__btn {
    border-color: #ddd;
}
header.active .header-btn__line {
    background-color: var(--base-color);
}
header.active .header-instagram__icon path {
    stroke: var(--base-color);
}
.header_menu {
    position: fixed;
    top: 0;
    left: 0;
    width: calc(100% - var(--header-width));
    height: 100dvh;
    z-index: 101;
    display: none;
    /* transition: 0.3s; */
}
.header_menu__inner {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}
.header_menu__bg {
    flex: 1;
    height: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.header_menu-bg__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.header_menu__body {
    background-color: var(--base-color);
    padding: 0 5rem;
    position: relative;
    z-index: 1;
}
.header_menu__body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../img/asset/bg.webp");
    background-size: cover;
    background-position: center;
    mix-blend-mode: multiply;
    z-index: -1;
}
.header_menu-body__inner {
    width: 48.75rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header_menu__wrapper {
    width: 100%;
}
.header_menu__lists {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    padding-bottom: 5rem;
    margin-bottom: 2.5rem;
}
.header_menu__link {
    color: #fff;
    font-family: FP-こぶりなゴシック StdN W6, sans-serif;
    font-style: normal;
    font-size: 1.5rem;
    line-height: 1;
}
.header_menu-link__eng {
    font-size: 1.125rem;
    margin-top: 1rem;
    color: #fff;
}
.header_menu__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.header_menu__sns {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.header_menu-sns__list {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 1px solid #fff;
}
.header_menu-sns__link {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header_menu-sns__link svg {
    width: 1.5rem;
    height: auto;
}
.header_menu__minbnr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}
.header_menu-minbnr__list {
    width: 12.5rem;
    height: 4.5rem;
}
.header_menu-minbnr__link {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}
.header_menu-minbnr__img {
    width: auto;
    height: 2.5rem;
    object-fit: cover;
    object-position: center;
}
header.open .header__nav {
    background-color: var(--primary-color);
}
header.open .header-home__icon path {
    stroke: #fff;
}
header.open .header__btn {
    border-color: #56768b;
}
header.open .header-btn__line {
    background-color: #fff;
}
header.open .header-instagram__icon path {
    stroke: #fff;
}
.header__btn:hover .header-btn__line {
    opacity: 0.5;
}
header.open .header-btn__line:first-of-type {
    transform: rotate(36deg) translateY(-50%);
    top: 50%;
}
header.open .header-btn__line:nth-of-type(2) {
    opacity: 0;
}
header.open .header-btn__line:last-of-type {
    transform: rotate(-36deg) translateY(50%);
    bottom: 50%;
}

@media screen and (max-width: 1279px) {
    .header__nav {
        width: auto;
        height: auto;
        position: static;
    }
    .header__home,
    .header__instagram {
        display: none;
    }
    .header_sp {
        position: fixed;
        top: 0;
        right: 0;
        padding: 1.5rem;
        z-index: 102;
        width: 100%;
    }
    .header_sp__inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .header__btn {
        position: static;
        top: 0;
        right: 0;
        z-index: 102;
        width: 3.25rem;
        height: 3.25rem;
        background-color: var(--primary-color);
        border: none;
        flex: none;
        transition: background-color 0.3s;
    }
    .header-btn__inner {
        width: 1.375rem;
        height: 0.875rem;
    }
    .header-btn__line {
        height: 2px;
    }
    .header__logo {
        position: static;
        left: 0;
        top: 0;
        /* z-index: 102; */
    }
    .header-logo__svg {
        height: 2.5rem;
    }
    .header-logo__svg path,
    .header-logo__svg rect {
        fill: var(--base-color);
        transition: fill 0.3s;
    }
    .header_menu {
        width: 100%;
        height: 100%;
        overflow-y: scroll;
        scrollbar-width: none;
    }
    .header_menu::-webkit-scrollbar {
        display: none;
    }
    .header_menu__inner {
        flex-direction: column-reverse;
        height: auto;
    }
    .header_menu__bg {
        width: 100%;
        aspect-ratio: 3 / 2;
        height: auto;
    }
    .header_menu__body {
        padding: var(--header-height) 1.5rem 3rem;
    }
    .header_menu-body__inner {
        width: 100%;
        margin-top: 1.75rem;
    }
    .header_menu__lists {
        gap: 2.25rem 0;
        padding-bottom: 3rem;
        margin-bottom: 2rem;
    }
    .header_menu__link {
        font-size: 1.125rem;
        line-height: 1.625rem;
    }
    .header_menu-link__eng {
        font-size: 0.875rem;
        margin-top: 0.38rem;
    }
    .header_menu__container {
        align-items: flex-start;
    }
    .header_menu__sns {
        flex-direction: column;
    }
    .header_menu__minbnr {
        flex-direction: column;
    }
    .header_sp.open .header-logo__svg path,
    .header_sp.open .header-logo__svg rect {
        fill: #fff;
    }
    .header_sp.open .header__btn {
        background-color: #fff;
    }
    .header_sp.open .header-btn__line {
        background-color: var(--base-color);
    }
    .header__btn:hover .header-btn__line {
        opacity: 0.5;
    }
    .header_sp.open .header-btn__line:first-of-type {
        transform: rotate(36deg) translateY(-50%);
        top: 50%;
    }
    .header_sp.open .header-btn__line:nth-of-type(2) {
        opacity: 0;
    }
    .header_sp.open .header-btn__line:last-of-type {
        transform: rotate(-36deg) translateY(50%);
        bottom: 50%;
    }
}

/* --------------------------------------------------- */
/* floating */
/* --------------------------------------------------- */
.floating {
    position: fixed;
    top: 0;
    right: 4.25rem;
    background-color: var(--base-color);
    z-index: 100;
    height: 6.25rem;
    width: auto;
    padding: 0 3rem;
}
.floating__inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --------------------------------------------------- */
/* cta_reservation */
/* --------------------------------------------------- */
#cta_reservation {
    width: 100%;
    position: relative;
    z-index: 1;
}
#cta_reservation::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: var(--base-color);
    z-index: -1;
}
.cta_reservation__inner {
    width: 100%;
    padding: 0 3.5rem;
}
.cta_reservation__body {
    width: 100%;
    height: auto;
    background-image: url("../img/asset/cta_reservation_bg.webp");
    background-size: cover;
    background-position: center 25%;
    position: relative;
    z-index: 1;
}
.cta_reservation__body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    opacity: 0.8;
    z-index: -1;
}
.cta_reservation__wrapper {
    padding: 3rem;
    display: flex;
    gap: 3rem;
}
.cta_reservation__container {
    flex: 1;
}
.cta_reservation__headline {
    margin-bottom: 1.88rem;
}
.cta_reservation-headline__eng {
    border-top: 1px solid #fff;
    color: #fff;
    font-size: 1.5rem;
    padding-top: 1.25rem;
    margin-bottom: 2.5rem;
}
.cta_reservation-headline__text {
    font-size: 2.5rem;
    font-family: FP-こぶりなゴシック StdN W6, sans-serif;
    font-style: normal;
    color: #fff;
}
.cta_reservation-desc__text {
    color: #fff;
    font-size: 1rem;
    line-height: 2rem;
}
.cta_reservation__lists {
    display: flex;
    justify-content: space-between;
    width: 45.75rem;
    height: 15rem;
    gap: 1.5rem;
}
#cta_reservation .cta_reservation__lists {
    height: 100%;
}
.cta_reservation__list {
    background-color: #eaeef2;
    height: 100%;
    flex: 1;
}
.cta_reservation-list__wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem 1.75rem;
    height: 100%;
}
.cta_reservation-list__wrapper:hover {
    opacity: 1;
}
.cta_reservation-list__img {
    flex: 1;
    height: 100%;
    width: 100%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cta_reservation-list__pic--form {
    width: 80.5369%;
    height: auto;
}
.cta_reservation-list__pic--hpb {
    width: 63.0872%;
    height: auto;
}
.cta_reservation-list__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #b3b3c3;
    position: relative;
    padding-bottom: 0.9375rem;
}
.cta_reservation-list__nav::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 2.5rem;
    height: 1px;
    background-color: var(--base-color);
    transform: translateY(100%);
    transition: width 0.3s;
}
.cta_reservation-list__wrapper:hover .cta_reservation-list__nav::before {
    width: 100%;
}
.cta_reservation-list__text {
    font-size: 1rem;
    font-family: FP-こぶりなゴシック StdN W6, sans-serif;
}
.cta_reservation-list__arrow {
    width: 1.25rem;
    height: auto;
}
@media screen and (max-width: 1279px) {
    #cta_reservation::before {
        height: calc(100% - 5rem);
    }
    .cta_reservation__inner {
        padding: 0 1.5rem;
    }
    .cta_reservation__wrapper {
        padding: 2.5rem 1.5rem 1.5rem 1.5rem;
        gap: 1.625rem;
        flex-direction: column;
    }
    .cta_reservation__headline {
        margin-bottom: 1.625rem;
    }
    .cta_reservation-headline__eng {
        font-size: 1.25rem;
        text-align: center;
        border-top: none;
        padding-top: 0;
        padding-bottom: 1rem;
        margin-bottom: 1.5rem;
        position: relative;
    }
    .cta_reservation-headline__eng::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 1.5rem;
        height: 1px;
        background-color: #fff;
        transform: translateX(-50%);
    }
    .cta_reservation-headline__text {
        text-align: center;
        font-size: 2rem;
    }
    .cta_reservation-desc__text {
        line-height: 1.75rem;
    }
    #cta_reservation .cta_reservation__lists {
        height: auto;
        width: 100%;
        flex-direction: column;
        gap: 1rem;
    }
    .cta_reservation__list {
        height: auto;
    }
    .cta_reservation-list__wrapper {
        padding: 1.25rem;
        gap: 1.25rem;
        height: auto;
    }
    .cta_reservation-list__img {
        height: 4.5rem;
        padding: 1rem;
        flex: none;
    }
    .cta_reservation-list__pic--form {
        width: auto;
        height: 100%;
    }
    .cta_reservation-list__pic--hpb {
        width: auto;
        height: 100%;
    }
    .cta_reservation-list__nav {
        padding-bottom: 0.75rem;
    }
    .cta_reservation-list__text {
        line-height: 1.25rem;
        margin: -0.125rem 0;
    }
}

/* --------------------------------------------------- */
/* footer */
/* --------------------------------------------------- */
footer {
    background-color: var(--base-color);
}
.footer__inner {
    padding: 5rem 6.25rem;
}
.footer__container:first-of-type {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4rem;
}
.footer-logo__pic {
    width: auto;
    height: 6.25rem;
}
.footer__nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.5rem;
}
.footer-nav__link {
    font-family: FP-こぶりなゴシック StdN W6, sans-serif;
    font-style: normal;
    font-size: 1rem;
    color: #fff;
}
.footer__container:last-of-type {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 8rem;
}
.footer__box {
    flex: none;
}
.footer__information {
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.footer-information__box {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}
.footer-information__box svg {
    width: 1rem;
    height: 1rem;
}
.footer-information__text {
    font-size: 1rem;
    color: #fff;
    line-height: 1.5rem;
    margin: -0.25rem 0;
}
.footer__sns {
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.footer-sns__list {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 1px solid #fff;
}
.footer-sns__link {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-sns__link svg {
    width: 1.5rem;
    height: auto;
}
.footer__privacy_policy {
    font-size: 0.875rem;
    color: #fff;
    font-family: FP-こぶりなゴシック StdN W6, sans-serif;
    font-style: normal;
    margin-bottom: 1.5rem;
}
.footer__copyright {
    font-size: 0.875rem;
    color: #fff;
}
.footer__map {
    flex: 1;
    height: auto;
}
@media screen and (max-width: 1279px) {
    .footer__inner {
        padding: 0 1.5rem 2.5rem;
    }
    .footer__container:first-of-type {
        flex-direction: column;
        margin-bottom: 2.5rem;
    }
    .footer__logo {
        width: 100%;
        padding: 2.5rem 0;
        margin-bottom: 2.25rem;
        border-bottom: 1px solid #707070;
    }
    .footer-logo__pic {
        height: 4.5rem;
        margin: 0 auto;
    }
    .footer__nav {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem 0;
        align-items: flex-start;
    }
    .footer-nav__link {
        font-size: 1.125rem;
        line-height: 1.625rem;
    }
    .footer-nav__eng {
        font-size: 0.875rem;
        margin-top: 0.375rem;
        color: #fff;
    }
    .footer__container:last-of-type {
        flex-direction: column-reverse;
        gap: 2.5rem;
    }
    .footer__map {
        width: 100%;
        aspect-ratio: 4/3;
        height: auto;
    }
    .footer__information {
        margin-bottom: 2.5rem;
    }
    .footer__privacy_policy {
        line-height: 1;
        margin-bottom: 1.25rem;
    }
}

/* --------------------------------------------------- */
/* plan_detail */
/* --------------------------------------------------- */
.plan_detail {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    z-index: 110;
    padding: 4rem 12.25rem 4rem 8rem;
    background-color: rgba(0, 0, 0, 0.2);
    display: none;
}
.plan_detail__inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.plan_detail__wrapper {
    width: 100%;
    max-height: 100%;
    display: flex;
    align-items: stretch;
}
.plan_detail__base {
    flex: 1;
    background-color: #fff;
}
.plan_detail-base__inner {
    padding: 3rem;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 3rem;
}
.plan_detail__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.plan_detail__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
    border-bottom: 1px solid var(--base-color);
    padding-bottom: 1.5rem;
    gap: 2rem;
}
.plan_detail__headline {
    font-size: 2rem;
    font-family: FP-こぶりなゴシック StdN W6, sans-serif;
    font-style: normal;
    line-height: 2.75rem;
    margin: -0.375rem 0;
}
.plan_detail__headline--sub {
    font-size: 1.25rem;
    line-height: 1;
    margin-top: 0;
    margin-bottom: 0.88rem;
}
.plan_detail-price__text {
    font-size: 3rem;
    font-family: FP-こぶりなゴシック StdN W6, sans-serif;
    font-style: normal;
}
.plan_detail-price__text .size_small {
    font-size: 1.25rem;
}
.plan_detail-price__text .size_medium {
    font-size: 1.75rem;
}
.plan_detail__desc {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1.5rem;
    overflow-y: scroll;
    /* -ms-overflow-style: none;
    scrollbar-width: none; */
}
.plan_detail__desc::-webkit-scrollbar {
    background: rgba(0, 0, 0, 0);
    width: 2px;
}
.plan_detail__desc::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}
.plan_detail-desc__text {
    font-size: 1rem;
    line-height: 2rem;
    /* margin: -0.5rem 0; */
}
.plan_detail__caption {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    margin-top: 0.3125rem;
}
.plan_detail-caption__text {
    font-size: 0.875rem;
    line-height: 1.5rem;
    color: #707070;
    /* margin: -0.3125rem 0; */
    text-indent: -1em;
    margin-left: 1em;
}
.plan_detail__parts {
    width: 22.5rem;
    flex: none;
}
.plan_detail-parts__headline {
    font-size: 1.25rem;
    font-family: FP-こぶりなゴシック StdN W6, sans-serif;
    font-style: normal;
    background-color: #eaeef2;
    width: 100%;
    padding: 1rem 0;
    text-align: center;
    margin-bottom: 0.75rem;
}
.plan_detail-parts__lists {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}
.plan_detail-parts__list {
    border: 1px solid #ddd;
    /* padding: 1rem; */
}
.plan_detail-parts__img {
    aspect-ratio: 1/1;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    padding: 1rem;
}
.plan_detail-parts__text {
    padding-bottom: 1rem;
    font-size: 0.875rem;
    font-family: FP-こぶりなゴシック StdN W6, sans-serif;
    font-style: normal;
    text-align: center;
}
.plan_detail__btn {
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    background-color: var(--primary-color);
    cursor: pointer;
}
.plan_detail-btn__svg {
    width: 2.5rem;
    height: auto;
    transition: opacity 0.3s;
}
.plan_detail__btn:hover .plan_detail-btn__svg {
    opacity: 0.5;
}
.plan_detail__link {
    font-family: FP-こぶりなゴシック StdN W6, sans-serif;
    font-style: normal;
    font-size: 1rem;
    color: #fff;
    line-height: 1;
    text-align: center;
    position: relative;
    background-color: var(--primary-color);
    padding: 1.5rem 0;
    margin-top: 1.6875rem;
}
.plan_detail-link__svg {
    position: absolute;
    top: 50%;
    right: 1.25rem;
    transform: translateY(-50%);
    width: 1.25rem;
    height: 1.25rem;
}

@media screen and (max-width: 1279px) {
    .plan_detail {
        padding: var(--header-height) 1.5rem 1.5rem;
    }
    .plan_detail__inner {
        justify-content: stretch;
    }
    .plan_detail__wrapper {
        flex-direction: column-reverse;
        height: 100%;
    }
    .plan_detail__base {
        height: 100%;
        overflow-y: scroll;
        /* scrollbar-width: none; */
    }
    /* .plan_detail__base::-webkit-scrollbar {
        display: none;
    } */
    .plan_detail-base__inner {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1.5rem;
        height: auto;
    }
    .plan_detail__btn {
        padding: 0.5rem 0;
    }
    .plan_detail__head {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .plan_detail__headline {
        font-size: 1.75rem;
        line-height: 2.25rem;
        margin: -0.25rem 0;
    }
    .plan_detail__headline--sub {
        font-size: 1.125rem;
        line-height: 1;
        margin: 0;
        margin-bottom: 0.75rem;
    }
    .plan_detail__price {
        width: 100%;
    }
    .plan_detail-price__text {
        text-align: right;
    }
    .plan_detail-desc__text {
        line-height: 1.75rem;
    }
    .plan_detail__parts {
        width: 100%;
    }
    .plan_detail-parts__headline {
        padding: 0.75rem 0;
    }
    .plan_detail-parts__lists {
        grid-template-columns: repeat(2, 1fr);
    }
    .plan_detail-parts__text {
        font-size: 1rem;
    }
    .plan_detail__link {
        padding: 1.25rem 0;
        width: 100%;
        margin-top: 0;
    }
    .plan_detail-link__svg {
        right: 1rem;
    }
}

/* --------------------------------------------------- */
/* loading */
/* --------------------------------------------------- */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    z-index: 200;
    background-color: var(--primary-color);
    transition: background-color 1s;
}
.loading__inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.loading__container {
    position: relative;
    display: flex;
}
.loading__svg {
    width: 11.75rem;
    height: auto;
}
.loading__svg path {
    transition: fill 1s;
}
.loading__svg rect {
    transition: fill 1s;
}
.loading__line {
    position: absolute;
    top: calc(100% + 2rem);
    left: 0;
    width: 0%;
    height: 1px;
    background-color: #56768b;
    z-index: 1;
    transition: opacity 1s;
    transition-delay: 0.2s;
}
.loading__line--base {
    width: 100%;
}
.loading__line--indicator {
    background-color: #fff;
    z-index: 2;
    width: 0%;
}
.loading__line--indicator.active {
    animation: loading 2s ease-in-out forwards;
}
@keyframes loading {
    0% {
        width: 0;
    }
    100% {
        width: 90%;
    }
}
.loading__line--indicator.end {
    width: 90%;
}
.loading__line.loaded {
    opacity: 0;
}
.loading.loaded {
    background-color: #fff;
}
.loading.loaded .loading__svg path {
    fill: var(--base-color);
}
.loading.loaded .loading__svg rect {
    fill: var(--base-color);
}
@media screen and (max-width: 1279px) {
    .loading__svg {
        width: 9rem;
    }
    .loading__line {
        top: calc(100% + 1.25rem);
    }
}
