@charset "utf-8";

html {
    font-size: 62.5%;
    /* = 10px / 16px */
    /* 1rem = 10px */
    font-family: "Noto Sans JP", sans-serif;
    text-align: center;
    font-feature-settings: "palt";
    scroll-behavior: smooth;
}

@media screen and (max-width:750px) {
    html {
        font-size: 1.33vw;
        /* = 10px / 750px */
    }
}

body {
    overflow-x: clip;
}

img,
video {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

.sup {
    position: relative;
    display: inline-block;
    margin-top: .5rem;
    font-size: 2rem;
    vertical-align: top;
}

.text_small {
    font-size: 2rem;
    color: #797979;
    text-align: right;
}

.main__contents {
    max-width: 750px;
    margin-right: auto;
    margin-left: auto;
    background-color: #4a2e7a;
}

/* ================== enq ================== */

.enq__wrap {
    padding: 4rem 2rem;
}

.enq__items {
    padding-bottom: 4rem;
    background-color: #fff;
}

#q4 .enq__items {
    margin-bottom: 4rem;
}

.q__ttl {
    padding-top: 4rem;
    line-height: 0;
}

.q1__detail {
    position: relative;
    padding-top: 4rem;
    line-height: 0;
}

.q1__detail__mov {
    position: absolute;
    top: 36rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

/*
===========================================
button
===========================================
 */

.button__container {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 4rem;
    background-color: #fff;
}

.button__input {
    display: none;
}

.button__label {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 28rem;
    height: 16rem;
    border-radius: 2.4rem;
    border: 1.2rem solid #4f2586;
    background: linear-gradient(180deg, #9a6ec8 0%, #835ba8 100%);
    color: #ffffff;
    font-size: 4rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 0.8rem 1.5rem rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    transition: transform 0.1s ease, box-shadow 0.1s ease, border-color 0.2s;
    line-height: 1.2;
}

.button__label:active {
    transform: translateY(0.4rem);
    box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.2);
}

.button__input:checked+.button__label {
    border-color: #8c2722;
    background: #db3831;
}

.panel__container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 64rem;
    margin: auto;
    padding: 2rem;
}

.panel__input {
    display: none;
}

.panel__label {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 15rem;
    padding: 2.4rem 2rem;
    border-radius: 2rem;
    border: 1.2rem solid #582b8a;
    background: linear-gradient(180deg, #9468b9 0%, #855ca7 100%);
    box-shadow: 0 0.8rem 1.5rem rgba(0, 0, 0, 0.25);
    box-sizing: border-box;
    cursor: pointer;
    transition: border-color 0.2s;
}

.panel__label__inner {
    color: #ffffff;
    font-size: 4.4rem;
    font-weight: 800;
    text-align: center;
    line-height: 1.4;

}

.panel__input:checked+.panel__label {
    border-color: #9c271e;
    background: #db2c24;
}

.panel__sup {
    font-size: 0.5em;
    vertical-align: super;
    font-weight: bold;
}

.panel__sub {
    font-size: 0.65em;
}

.note__container {
    padding: 3rem;
}

.note__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.note__item {
    display: flex;
    align-items: flex-start;
    font-size: 1.6rem;
    color: #000000;
    line-height: 1.5;
}

.note__mark {
    margin-right: 1.6rem;
    white-space: nowrap;
}

.note__text {
    flex: 1;
}

@media screen and (max-width:750px) {
    .note__item {
        font-size: 2rem;
    }
}

/*
===========================================
cta
===========================================
 */

.cta__area {
    line-height: 0;
}

.cta_btn {
    background-color: #fff;
    overflow: hidden;
}


.purupuru {
    display: block;
    animation: purupuru 2s linear 0s infinite;
}


.purupuru:before {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: #fff;
    animation: shiny-brite 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes purupuru {
0% {
    transform: skew(9deg);
}
10% {
    transform: skew(-8deg);
}
20% {
    transform: skew(7deg);
}
30% {
    transform: skew(-6deg);
}
40% {
    transform: skew(5deg);
}
50% {
    transform: skew(-4deg);
}
60% {
    transform: skew(3deg);
}
70% {
    transform: skew(-2deg);
}
80% {
    transform: skew(1deg);
}
90% {
    transform: skew(0deg);
}
100% {
    transform: skew(0deg);
}}

@keyframes shiny-brite {
    0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
}

80% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5;
}
81% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 1;
}
100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
}
}


/*
===========================================
footer
===========================================
 */

.footer {
    font-size: 62.5%;
}

.footer__description {
    text-align: left;
    border: 2px solid #a1833d;
    color: #a1833d;
    max-width: 750px;
    margin: 8rem auto;
}

.footer__description__title {
    text-align: center;
    font-size: 3.2em;
    font-weight: bold;
    padding: 2.6% 0;
    border-bottom: 1px solid #a1833d;
}

.footer__description__text {
    font-size: 2rem;
    line-height: 1.5;
    padding: 3%;
}

.footer__description__text__small-text {
    font-size: 0.8em;
}

.footer__content {
    align-items: center;
    display: flex;
    width: 900px;
    margin: auto;
    margin-top: 4rem;
    padding: 20px 0;
    justify-content: space-between;
}

.footer__logo {
    display: block;
    width: 140px !important;
}

.footer__link {
    align-items: center;
    display: flex;
    font-size: 16px !important;
    justify-content: space-between;
    width: 680px;
}

.footer__link a {
    align-items: center;
    display: flex;
    letter-spacing: 0.03em;
    line-height: 1;
    padding: 0 30px 0 0;
    position: relative;
}

.footer__link a:after {
    background: url(../images/ico_link.png) no-repeat center center/100% auto;
    content: '';
    display: block;
    height: 20px;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    right: 0;
    width: 20px;
}

.footer__link a {
    color: #005bac;
    text-decoration: none;
}

.footer__copyright {
    background: #0d5eaa;
    color: #fff;
    display: block;
    font-size: 14px;
    padding: 40px 0;
    text-align: center;
}



@media screen and (max-width:750px) {

    .footer {
        font-size: 1.33vw;
    }

    .footer__description {
        margin: 8% 2.6%;
    }

    .footer__copyright {
        font-size: 2.8em;
        padding: 4% 0;
    }

    .footer__content {
        display: block;
        width: 100%;
        margin: auto;
        padding: 5.3vw;
    }

    .footer__logo {
        display: block;
        width: 30% !important;
        margin: 0 0 8vw;
    }

    .footer__link {
        align-items: center;
        display: flex;
        flex-wrap: wrap;
        font-size: 3.2em !important;
        justify-content: flex-start;
        width: 100%;
    }

    .footer__link a {
        margin: 0 4vw 5.3vw 0;
        padding: 0 5.3vw 0 0;
    }

    .footer__link a:after {
        height: 3.6vw;
        width: 3.6vw;
    }

}