:root {
    --font-size: 2.564vw;
    --contents-width: calc(100% - 4rem);
    --mincho: 'Noto Serif JP', serif;
    --blue-01: #004791;
    --blue-02: #007ebc;
    --blue-03: #0089cb;
    --text-blue: #0028ab;
    --lightblue: #e8f3f7;
    --navy: #001930;
    --green: #00a59c;
    --red: #e6244e;
    --white: #ffffff;
    --bg-gray: #f5f5f5;
    --text-gray: #b3b3b3;
    --black: #000000;
    --gradation-01: linear-gradient(90deg, #003fa6 0%, #002967 100%);
    --gradation-02: linear-gradient(90deg, #00aee3 0%, #004979 100%);
    --gradation-03: linear-gradient(90deg, #f2ffff 0%, #abe8ff 100%);
    --transition: 0.7s;
}

html {
    line-height: 1;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: var(--font-size);
    color: var(--black);
    scroll-padding-top: calc(7.4 * var(--font-size));
}

body {
    padding-top: 7.4rem;
}

a {
    display: block;
}

img {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
    pointer-events: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-touch-callout: none;
    -moz-user-select: none;
    user-select: none;
}

.pc-view {
    display: none;
}

.red-text {
    color: var(--red);
}

.mincho-text {
    font-family: var(--mincho);
}

.common-btn a {
    max-width: 44rem;
    margin: 0 auto;
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100vh;
    background: var(--gradation-01);
    line-height: 1.3;
    font-size: 2rem;
    font-weight: bold;
    color: var(--white);
    text-align: center;
}

.common-btn a:has(> i) {
    position: relative;
}

.common-btn a i {
    position: absolute;
    right: 1.5rem;
}

/* ==============================
	header
============================== */
.header {
    width: 100%;
    height: 7.4rem;
    padding: 1rem 2rem;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    border-top: 0.4rem solid;
    border-image: var(--gradation-02) 1;
    background-color: var(--white);
    line-height: 1.3;
}

.header .header__logo {
    width: 20rem;
}

.header .header-menu-btn {
    width: 7.4rem;
    height: 7rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
    font-size: 3.2rem;
    color: var(--blue-01);
}

.header #header__nav--sp {
    width: 100%;
    height: 100vh;
    padding: 7.4rem 0;
    position: absolute;
    top: 0;
    right: -100vw;
    z-index: 100;
    border-top: 0.4rem solid;
    border-image: var(--gradation-02) 1;
    background-color: var(--lightblue);
    transition: right var(--transition) 0.1s;
    overflow-y: auto;
}

.header #header__nav--sp.active {
    right: 0;
}

.header #header__nav--sp .headar__nav-List {
    margin-bottom: 5rem;
}

.header #header__nav--sp .headar__nav-List:last-of-type {
    margin-bottom: initial;
}

.header #header__nav--sp .headar__nav-List-title {
    margin-bottom: 2rem;
    padding-left: 2rem;
    font-size: 2rem;
    font-weight: bold;
}

.header #header__nav--sp .headar__nav-List-links {
    border-top: 0.1rem solid var(--text-gray);
}

.header #header__nav--sp .headar__nav-List-links li {
    border-bottom: 0.1rem solid var(--text-gray);
}

.header #header__nav--sp .headar__nav-List-links li a {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 2rem;
}

.header #header__nav--sp .headar__nav-List-links li a i {
    color: var(--text-gray);
}

/* ==============================
	main-title
============================== */
.main-title {
    padding: 3rem 2rem;
    background: url(/img/common/bg-main-title-sp.webp) center / cover;
    line-height: 1.3;
}

.main-title .main-title__heading {
    margin-bottom: 1.5rem;
    font-family: var(--mincho);
    font-size: 3.2rem;
    color: var(--white);
}

.main-title .main-title__text {
    font-size: 1.4rem;
    color: var(--white);
}

/* ==============================
	contents
============================== */
.contents {
    width: var(--contents-width);
    margin: 2rem auto 5rem;
}
.contents .contents__breadcrumbs {
    margin-bottom: 3rem;
    display: flex;
    flex-wrap: wrap;
}

.contents .contents__breadcrumbs li {
    display: flex;
    align-items: center;
    line-height: 1.3;
    font-size: 1.4rem;
}

.contents .contents__breadcrumbs li:after {
    content: '\f054';
    margin: 0 0.5em;
    font: var(--fa-font-solid);
    color: var(--text-gray);
}

.contents .contents__breadcrumbs li:last-of-type:after {
    content: initial;
}

.contents .contents__breadcrumbs li a {
    color: var(--text-blue);
    text-decoration: underline;
}

/* --- contents__main --- */
.contents__main {
    line-height: 1.3;
    font-size: 1.6rem;
}

.contents__main > *:first-child {
    margin-top: initial !important;
}

.contents__main .common-btn {
    margin: 3rem auto;
}

.contents__main img {
    max-width: 26.5rem;
    margin: 0 auto;
}

.contents__main p {
    margin: 3rem auto;
    line-height: 1.65;
}

.contents__main p > a {
    display: inline;
    color: var(--text-blue);
    text-decoration: underline;
}

.contents__main .bold-text {
    font-weight: bold;
}

.contents__main .blue-text {
    color: var(--blue-01);
}

.contents__main .large-text {
    font-size: 1.8rem;
}

.contents__main .center-text {
    text-align: center;
}

.contents__main .contents__main-large-heading {
    margin: 3rem auto;
    padding: 1.6rem 1rem 2rem;
    border-top: 0.4rem solid;
    border-image: var(--gradation-02) 1;
    background: var(--gradation-03);
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--blue-01);
}

.contents__main .contents__main-middle-heading {
    margin: 3rem auto;
    padding-bottom: 1rem;
    border-bottom: 0.2rem solid;
    border-image: var(--gradation-02) 1;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--blue-02);
}

.contents__main .contents__main-small-heading {
    margin: 3rem auto;
    padding: 1rem;
    background-color: var(--lightblue);
    font-size: 1.8rem;
    font-weight: bold;
}

.contents__main .contents__main-link--list {
    margin-top: 5rem;
}

.contents__main .contents__main-link--list li,
.contents__main .contents__main-link--right {
    margin: 3rem auto;
}

.contents__main .contents__main-link--list li a,
.contents__main .contents__main-link--right a {
    width: fit-content;
    margin-left: auto;
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--text-blue);
    text-align: center;
}

.contents__main .contents__main-link--list li a i,
.contents__main .contents__main-link--right a i {
    margin-left: 0.5rem;
}

.contents__main .contents__main-flex-list {
    margin: 3rem auto;
    display: grid;
    grid: auto-flow / auto auto auto auto;
    gap: 1rem;
}

.contents__main .contents__main-flex-list li {
    padding: 0.5rem;
    border: 0.1rem solid var(--blue-01);
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--blue-01);
    text-align: center;
}

.contents__main .contents__main-green-list {
    margin: 3rem auto;
}

.contents__main .contents__main-green-list li {
    margin-bottom: 1rem;
    padding-left: 1em;
    text-indent: -1em;
    font-weight: bold;
    color: var(--green);
}

.contents__main .contents__main-green-list li:last-of-type {
    margin-bottom: initial;
}

.contents__main .contents__main-blue-list {
    margin: 3rem auto;
    display: grid;
    grid: auto-flow / 1fr 1fr;
    gap: 2rem;
}

.contents__main .contents__main-blue-list li {
    padding: 1rem;
    border: 0.1rem solid var(--blue-01);
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--blue-01);
    text-align: center;
}

.contents__main .contents__main-grd-box {
    margin: 3rem auto;
    padding: 2rem;
    background: var(--gradation-02);
    font-weight: bold;
    color: var(--white);
    text-align: center;
}

.contents__main .contents__main-price,
.contents__main .contents__main-table-two,
.contents__main .contents__main-table-three {
    width: 100%;
    margin: 3rem auto 1rem;
    border: 0.1rem solid var(--text-gray);
}

.contents__main .contents__main-table-three {
    table-layout: fixed;
}

.contents__main .contents__main-price thead,
.contents__main .contents__main-table-two thead,
.contents__main .contents__main-table-three thead {
    background-color: var(--lightblue);
    text-align: center;
}

.contents__main .contents__main-price tbody tr:nth-of-type(odd),
.contents__main .contents__main-table-two tbody tr:nth-of-type(odd),
.contents__main .contents__main-table-three tbody tr:nth-of-type(odd) {
    background-color: var(--bg-gray);
}

.contents__main .contents__main-price th,
.contents__main .contents__main-price td,
.contents__main .contents__main-table-two th,
.contents__main .contents__main-table-two td,
.contents__main .contents__main-table-three th,
.contents__main .contents__main-table-three td {
    padding: 1rem;
    border: 0.1rem solid var(--text-gray);
    vertical-align: middle;
}

.contents__main .contents__main-price th:first-of-type {
    width: 65%;
}

.contents__main .contents__main-price td {
    color: var(--red);
    text-align: right;
}

.contents__main .contents__main-table-two th:first-of-type {
    width: 35%;
}

.contents__main .contents__main-notice-list li {
    margin-bottom: 1rem;
    padding-left: 1em;
    font-size: 1.4rem;
    text-indent: -1em;
}

.contents__main .contents__main-notice-list li:last-of-type {
    margin-bottom: initial;
}

.contents__main .contents__main-payment-method {
    margin: 3rem auto;
}

.contents__main .contents__main-payment-method .contents__main-payment-method-title {
    padding: 1rem 2rem;
    background-color: var(--blue-01);
    font-size: 2rem;
    font-weight: bold;
    color: var(--white);
}

.contents__main .contents__main-payment-method .contents__main-payment-method-box {
    padding: 2rem;
    background-color: var(--lightblue);
}

.contents__main .contents__main-payment-method .contents__main-payment-method-list {
    margin-bottom: 2rem;
    display: grid;
    grid: auto-flow / auto auto auto auto;
    gap: 1rem;
}

.contents__main .contents__main-payment-method .contents__main-payment-method-list li {
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 0.1rem solid var(--blue-01);
    background-color: var(--white);
    font-weight: bold;
    color: var(--blue-01);
    text-align: center;
}

.contents__main .contents__main-payment-method .contents__main-payment-method-flex img {
    max-width: fit-content;
}

.contents__main .contents__main-payment-method .contents__main-payment-method-flex p {
    margin-bottom: initial;
}

.contents__main .contents__main-green-box {
    margin: 3rem auto;
    padding: 2rem;
    background-color: var(--green);
    font-weight: bold;
    color: var(--white);
}

.contents__main .contents__main-faq-box {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: var(--bg-gray);
}

.contents__main .contents__main-faq-box .contents__main-faq-title,
.contents__main .contents__main-faq-box .contents__main-faq-text {
    display: grid;
    gap: 1rem;
}

.contents__main .contents__main-faq-box .contents__main-faq-title {
    grid: 1fr / 2.3rem auto 2rem;
    font-size: 2rem;
    font-weight: bold;
}

.contents__main .contents__main-faq-box .contents__main-faq-title:before,
.contents__main .contents__main-faq-box .contents__main-faq-text:before {
    content: '';
    width: 2.3rem;
    height: 2.6rem;
    margin-right: 1rem;
}

.contents__main .contents__main-faq-box .contents__main-faq-title:before {
    background: url(../img/treatment/faq-title.svg) no-repeat center / 100% auto;
}

.contents__main .contents__main-faq-box .contents__main-faq-title i {
    display: flex;
    align-items: center;
    color: var(--blue-01);
    transition: transform 0.5s;
}

.contents__main .contents__main-faq-box.active .contents__main-faq-title i {
    transform: rotate(180deg);
}

.contents__main .contents__main-faq-box .contents__main-faq-title i:before {
    display: block;
    transform: rotate(90deg);
}

.contents__main .contents__main-faq-box .contents__main-faq-text {
    height: 0;
    grid: auto-flow / 2.3rem auto;
    overflow: hidden;
    transition: 0.5s;
}

.contents__main .contents__main-faq-box.active .contents__main-faq-text {
    margin-top: 2rem;
}

.contents__main .contents__main-faq-box .contents__main-faq-text:before {
    background: url(../img/treatment/faq-text.svg) no-repeat center / 100% auto;
}

.contents__main .contents__main-green-links {
    margin: 3rem auto;
    display: grid;
    grid: auto-flow / 1fr 1fr;
    gap: 1rem;
}

.contents__main .contents__main-green-links li a {
    height: 100%;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    border: 0.1rem solid var(--green);
    font-weight: bold;
    color: var(--green);
}

.contents__main .contents__main-blue-dl {
    margin: 3rem auto;
    display: grid;
    grid: auto-flow / auto auto;
    border: 0.1rem solid var(--text-gray);
}

.contents__main .contents__main-blue-dl dt,
.contents__main .contents__main-blue-dl dd {
    padding: 1rem;
    border-bottom: 0.1rem solid var(--text-gray);
}

.contents__main .contents__main-blue-dl dt:last-of-type,
.contents__main .contents__main-blue-dl dd:last-of-type {
    border-bottom: initial;
}

.contents__main .contents__main-blue-dl dt {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--blue-01);
    font-weight: bold;
    color: var(--white);
}

.contents__main .contents__main-blue-dl dd > a {
    display: inline;
    color: var(--text-blue);
    text-decoration: underline;
}

/* ==============================
	contents-after
============================== */
.contents-after .contents-after__wrapeer {
    padding: 4rem 0;
}

.contents-after .contents-after__wrapeer.bg-gray {
    background-color: var(--bg-gray);
}

.contents-after .contents-after__wrap {
    width: var(--contents-width);
    margin: 0 auto;
}

.contents-after .contents-after__wrap .contents-after__title {
    margin-bottom: 4rem;
    font-size: 2.4rem;
    font-weight: bold;
    text-align: center;
}

.contents-after .contents-after__wrap .contents-after__btn-links,
.contents-after .contents-after__wrap .contents-after__bnr-links {
    margin-bottom: 3rem;
}

.contents-after .contents-after__wrap .contents-after__btn-links li,
.contents-after .contents-after__wrap .contents-after__bnr-links li {
    margin-bottom: 3rem;
}

.contents-after .contents-after__wrap .contents-after__btn-links li:last-of-type,
.contents-after .contents-after__wrap .contents-after__bnr-links li:last-of-type {
    margin-bottom: initial;
}

.contents-after .contents-after__wrap .contents-after__flex-box {
    margin-bottom: 4rem;
}

.contents-after .contents-after__wrap .contents-after__flex-box .contents-after__flex-img {
    margin-bottom: 3rem;
}

.contents-after .contents-after__wrap .contents-after__flex-box .contents-after__flex-text-title {
    margin-bottom: 2rem;
    line-height: 1.3;
    font-size: 2rem;
    font-weight: bold;
}

.contents-after .contents-after__wrap .contents-after__flex-box .contents-after__flex-text-contents {
    line-height: 1.65;
    font-size: 1.8rem;
}

/* ==============================
	footer
============================== */
.footer {
    padding: 4rem 2rem 10rem;
    background-color: var(--navy);
    line-height: 1.3;
    color: var(--white);
}

.footer .footer__logo {
    width: 25.5rem;
    margin-bottom: 4rem;
}

.footer .footer__nav--sp {
    margin-bottom: 4rem;
}

.footer .footer__nav--sp li {
    margin-bottom: 1.5rem;
}

.footer .footer__nav--sp li:nth-last-of-type(2) {
    margin-top: 4rem;
}

.footer .footer__nav--sp li:last-of-type {
    margin-bottom: initial;
}

.footer .footer__nav--sp li a {
    width: fit-content;
    display: flex;
    align-items: center;
    font-size: 1.8rem;
}

.footer .footer__nav--sp li a i {
    margin-right: 0.5em;
}

.footer .footer__copy {
    font-size: 1.4rem;
    text-align: center;
}

/* ==============================
	sp-fix
============================== */
#sp-fix {
    width: 100%;
    position: fixed;
    left: 0;
    bottom: -50vh;
    z-index: 9;
    transition: bottom var(--transition) 0.1s;
}

#sp-fix.active {
    bottom: 0;
}

.sp-fix__links {
    width: var(--contents-width);
    margin: 0 auto 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.3rem;
}

.sp-fix__links li img {
    filter: drop-shadow(0.5rem 0.5rem 1.2rem rgba(0, 0, 0, 0.3));
}

/* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
    781px-959px
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= */
@media screen and (min-width: 781px) and (max-width: 959px) {
    :root {
        --font-size: 1.28vw;
    }

    #sp-fix {
        max-width: 50%;
        margin: auto;
        right: 0;
    }
}

/* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
    960px OVER
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= */
@media screen and (min-width: 960px) {
    :root {
        --font-size: 10px;
        --contents-width: 90rem;
    }

    html {
        scroll-padding-top: calc(15.5 * var(--font-size));
    }

    body {
        padding-top: 15.5rem;
    }

    .pc-view {
        display: block;
    }

    .sp-view {
        display: none !important;
    }
    /* ==============================
        header
    ============================== */
    .header {
        height: 15.5rem;
        padding: 1.6rem 0 0;
    }

    .header .header__wrapper {
        width: var(--contents-width);
        margin: 0 auto;
        display: grid;
        grid: auto-flow / 20rem auto;
        gap: 2rem;
    }

    .header .header__contact {
        display: flex;
        justify-content: flex-end;
    }

    .header .header__contact .header__contact-tel-text {
        font-size: 1.2rem;
        text-align: center;
    }

    .header .header__contact .header__contact-tel-number a {
        display: flex;
        align-items: flex-end;
        gap: 0.5rem;
        line-height: 1;
        font-size: 3.6rem;
        font-weight: bold;
        color: var(--blue-01);
    }

    .header .header__contact .header__contact-tel-number a img {
        width: 4rem;
    }

    .header .header__contact .header__contact-line {
        margin-left: 2rem;
        margin-right: 1rem;
    }

    .header .header__contact .header__contact-line a,
    .header .header__contact .header__contact-reservation a {
        height: 100%;
        padding: 0 2rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        border-radius: 1rem;
        font-size: 2rem;
        font-weight: bold;
        color: var(--white);
    }

    .header .header__contact .header__contact-line a {
        background-color: #00ba42;
    }

    .header .header__contact .header__contact-reservation a {
        background-color: var(--blue-03);
    }

    .header .header__contact .header__contact-line a img {
        width: 2.5rem;
    }

    .header .header__globalnav {
        height: 6rem;
        grid-column: span 2;
        display: flex;
    }

    .header .header__globalnav > li {
        width: calc(100% / 5);
        position: relative;
    }

    .header .header__globalnav > li:after,
    .header .header__globalnav > li:first-of-type:before {
        content: '';
        width: 0.1rem;
        height: 100%;
        margin: auto;
        position: absolute;
        top: 0;
        bottom: 0;
        background-color: var(--text-gray);
    }

    .header .header__globalnav > li:after {
        right: 0;
    }

    .header .header__globalnav > li:first-of-type:before {
        left: 0;
    }

    .header .header__globalnav .header__globalnav-list--parent {
        height: 100%;
    }

    .header .header__globalnav .header__globalnav-list--parent a {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        font-size: 1.4rem;
    }

    .header .header__globalnav .header__globalnav-list--parent a i {
        font-size: 2.4rem;
        color: var(--blue-03);
    }

    .header .header__globalnav .header__globalnav-list--child {
        display: none;
        width: max-content;
        position: absolute;
        top: calc(100% + 0.3rem);
        left: 0;
        z-index: 99;
        background-color: var(--lightblue);
    }

    .header .header__globalnav .header__globalnav-list--child.active {
        display: block;
    }

    .header .header__globalnav li:last-of-type .header__globalnav-list--child {
        left: initial;
        right: 0;
    }

    .header .header__globalnav .header__globalnav-list--child a {
        padding: 1rem 2rem;
        display: flex;
        align-items: center;
        font-size: 1.8rem;
    }

    .header .header__globalnav .header__globalnav-list--child a i {
        margin-right: 0.5em;
        color: var(--text-gray);
    }
    /* ==============================
        main-title
    ============================== */
    .main-title {
        padding: 6rem 0 8rem;
        background: url(/img/common/bg-main-title-pc.webp) center / cover;
    }

    .main-title .main-title__heading {
        width: var(--contents-width);
        margin: 0 auto 2rem;
        font-size: 5.6rem;
    }

    .main-title .main-title__text {
        width: var(--contents-width);
        margin: 0 auto;
        font-size: 1.8rem;
    }
    /* ==============================
        contents
    ============================== */
    .contents {
        display: grid;
        grid: auto-flow / 25rem auto;
        gap: 1.5rem 3rem;
    }

    .contents .contents__breadcrumbs {
        margin-bottom: initial;
        grid-column: span 2;
    }

    /* --- contents__main --- */
    .contents__main img {
        max-width: fit-content;
    }

    .contents__main .contents__main-large-heading {
        font-size: 2.4rem;
    }

    .contents__main .contents__main-middle-heading,
    .contents__main .contents__main-small-heading,
    .contents__main .contents__main-link--list li a,
    .contents__main .contents__main-link--right a {
        font-size: 2rem;
    }

    .contents__main .contents__main-flex-two {
        margin: 3rem auto;
        display: flex;
        justify-content: space-between;
    }

    .contents__main .contents__main-flex-two .contents__main-flex-box--01 {
        width: 21rem;
    }

    .contents__main .contents__main-flex-two .contents__main-flex-box--02 {
        width: 39rem;
    }

    .contents__main .contents__main-flex-three {
        margin: 3rem auto;
        display: grid;
        grid: auto-flow / repeat(3, 1fr);
        gap: 2rem;
    }

    .contents__main .contents__main-flex-two .contents__main-flex-box--01 > *:first-child,
    .contents__main .contents__main-flex-two .contents__main-flex-box--02 > *:first-child,
    .contents__main .contents__main-flex-three .contents__main-flex-box--01 > *:first-child,
    .contents__main .contents__main-flex-three .contents__main-flex-box--02 > *:first-child,
    .contents__main .contents__main-flex-three .contents__main-flex-box--03 > *:first-child {
        margin-top: initial;
    }

    .contents__main .contents__main-flex-two .contents__main-flex-box--01 > *:last-child,
    .contents__main .contents__main-flex-two .contents__main-flex-box--02 > *:last-child,
    .contents__main .contents__main-flex-three .contents__main-flex-box--01 > *:last-child,
    .contents__main .contents__main-flex-three .contents__main-flex-box--02 > *:last-child,
    .contents__main .contents__main-flex-three .contents__main-flex-box--03 > *:last-child {
        margin-bottom: initial;
    }

    .contents__main .contents__main-payment-method .contents__main-payment-method-flex {
        display: flex;
        align-items: center;
        gap: 2rem;
    }

    .contents__main .contents__main-payment-method .contents__main-payment-method-flex .contents__main-img,
    .contents__main .contents__main-payment-method .contents__main-payment-method-flex p {
        width: calc(50% - 1rem);
        margin-top: initial;
    }

    .contents__main .contents__main-simultaneous-list {
        margin-bottom: 3rem;
        display: grid;
        grid: auto-flow / 1fr 1fr;
        gap: 2rem;
    }

    .contents__main .contents__main-simultaneous-list li {
        width: 100%;
        margin: 0 auto;
    }

    /* --- contents__side --- */
    .contents__side {
        width: 25rem;
        line-height: 1.3;
    }

    .contents__side .contents__side-List {
        margin-bottom: 2rem;
    }

    .contents__side .contents__side-List:last-of-type {
        margin-bottom: initial;
    }

    .contents__side .contents__side-List-title {
        padding: 1rem;
        background: var(--gradation-01);
        font-size: 2rem;
        font-weight: bold;
        color: var(--white);
        text-align: center;
    }

    .contents__side .contents__side-List-links li {
        border-bottom: 0.1rem solid var(--text-gray);
    }

    .contents__side .contents__side-List-links li a {
        padding: 2rem 1rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        font-size: 1.8rem;
        letter-spacing: -0.01rem;
    }

    .contents__side .contents__side-List-links li a i {
        color: var(--text-gray);
    }

    /* ==============================
        contents-after
    ============================== */
    .contents-after .contents-after__wrap .contents-after__btn-links,
    .contents-after .contents-after__wrap .contents-after__bnr-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
    }

    .contents-after .contents-after__wrap .contents-after__btn-links li,
    .contents-after .contents-after__wrap .contents-after__bnr-links li {
        width: 44rem;
    }

    .contents-after .contents-after__wrap .contents-after__btn-links li:nth-last-of-type(2),
    .contents-after .contents-after__wrap .contents-after__bnr-links li:nth-last-of-type(2) {
        margin-bottom: initial;
    }

    .contents-after .contents-after__wrap .contents-after__flex-box {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .contents-after .contents-after__wrap .contents-after__flex-box .contents-after__flex-img,
    .contents-after .contents-after__wrap .contents-after__flex-box .contents-after__flex-text {
        width: 44rem;
    }

    .contents-after .contents-after__wrap .contents-after__flex-box .contents-after__flex-img {
        margin-bottom: initial;
    }

    /* ==============================
        footer
    ============================== */
    .footer {
        padding: 4rem 0 6rem;
    }

    .footer .footer__wrapper {
        width: var(--contents-width);
        margin: 0 auto 4rem;
        display: grid;
        grid: auto-flow / 25.5rem auto;
        gap: 4rem;
    }

    .footer .footer__nav--pc {
        display: grid;
        grid: auto-flow / 1fr 1fr;
        gap: 4rem / 2rem;
    }

    .footer .footer__nav--pc .footer__nav-wrap--1 {
        grid-row: span 2;
    }

    .footer .footer__nav--pc .footer__nav-title {
        margin-bottom: 1.5rem;
        font-size: 2rem;
        font-weight: bold;
    }

    .footer .footer__nav--pc .footer__nav-links li {
        margin-bottom: 1.5rem;
    }

    .footer .footer__nav--pc .footer__nav-links li:last-of-type {
        margin-bottom: initial;
    }

    .footer .footer__nav--pc .footer__nav-links li a {
        display: flex;
        align-items: center;
        font-size: 1.8rem;
    }

    .footer .footer__nav--pc .footer__nav-links li a i {
        margin-right: 0.5em;
    }
}
