html {
    --blue-dark: #1d2f5b;
    --green-light: #88d1e4;
    --pink: #ff7eab;
    --pink-light: #ffc9dc;
    font-size: 16px;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    overflow-x: hidden;
    opacity: 0;
    transition: .2s;
    color: var(--blue-dark)
}

html.loading-delay,
html.wf-active {
    opacity: 1;
    transition: opacity .3s ease
}

*,
:after,
:before {
    box-sizing: border-box
}

body {
    overflow: hidden
}

body,
h1,
h2,
p,
section {
    margin: 0;
    padding: 0
}

header {
    font-size: .8rem;
    padding: 8px;
    border-bottom: solid 1px gray
}

main {
    background-image: linear-gradient(#fde7b9 2px, transparent 2px), linear-gradient(to right, #fde7b9 2px, #F5F5DC 2px);
    background-size: 60px 60px;
}

h1 {
    font-size: 1rem;
    font-weight: 400;
    padding: 0;
    margin: 0
}

img {
    user-select: none;
    pointer-events: none
}

section {
    position: relative;
    width: 750px;
    height: 100%;
    margin: 0 auto
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

.twinkly {
    overflow: hidden;
    position: relative;
}

.twinkly::before {
    background-color: #fff;
    content: "";
    display: block;
    position: absolute;
    top: -100px;
    left: 0;
    width: 10px;
    height: 100%;
    opacity: 0;
    transition: cubic-bezier(0.32, 0, 0.67, 0);
}

.twinkly.show::before {
    animation: kiran 0.5s linear;
}

@keyframes fluffy {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@media screen and (max-width:768px) {
    html {
        font-size: 12px
    }

    main {
        background: #F5F5DC;
        background-image: none;
    }

    section {
        width: 480px
    }
}

@media screen and (max-width:480px) {
    section {
        width: 100%
    }
}

.content__disabled {
    visibility: hidden;
    height: 0;
    width: 0
}

.section__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center
}

.section__sub {
    position: relative;
    z-index: 1;
    color: #fff;
    background-color: #55c1d7;
    width: fit-content;
    font-size: 2rem;
    font-weight: 800;
    margin-top: 64px;
    padding: 8px 48px;
    border-radius: 35px
}

.section__sub--circle {
    position: absolute;
    z-index: 0;
    content: "";
    left: 50%;
    top: 32px;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px dotted var(--green-light);
    outline: 2px dotted var(--green-light);
    outline-offset: 5px;
    background-color: transparent
}

.section__title {
    font-size: 2.7rem;
    font-weight: 800;
    margin: 16px 0;
    position: relative;
    z-index: 1
}

.section__title span {
    font-weight: 900;
    font-size: 4rem;
    letter-spacing: -.3rem;
    margin-right: 8px;
    margin-left: -4px;
    color: transparent;
    -webkit-text-stroke: 1px #ba8ffb;
    text-shadow: -2px -2px #e5d4ff
}

@media screen and (max-width:480px) {
    .section__sub {
        font-size: 1.2rem;
        margin-top: 48px
    }

    .section__sub--circle {
        top: 24px;
        width: 80px;
        height: 80px
    }

    .section__title {
        font-size: 2.3rem
    }

    .section__title span {
        font-weight: 900;
        font-size: 2.6rem;
        margin-right: 8px;
        margin-left: -4px
    }
}

.content-fixed {
    position: fixed;
    bottom: -160px;
    opacity: 0;
    visibility: hidden;
    width: 100%;
    transition: .5s;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
}

.page-top__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    font-size: 1rem;
    margin-right: 18px;
    padding-top: 3px;
    color: #333;
    background: #fff;
    border: 1px solid #333;
    cursor: pointer;
    box-shadow: 3px 3px 0 0 #333;
    letter-spacing: 1px;
}

.page-top__btn:last-child {
    margin-bottom: 16px;
}

.page-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100px;
    gap: 24px;
    background: #fff;
    background-image: url(../asset/bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    border-top: solid 1px var(--blue-dark);
}

.page-bottom__text {
    font-size: 1.2rem;
    font-weight: 800;
}

.page-bottom__text span {
    color: #f33;
}

.page-bottom__btn {
    padding: 0;
    border: none;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    outline: 0;
    user-select: none;
    cursor: pointer;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: .2rem;
    padding: 16px 48px;
    border-radius: 36px;
    background-color: #f789ad;
    position: relative;
    z-index: 1;
    transition: 0.2s;
    -webkit-font-smoothing: antialiased;
}

.page-bottom__btn:hover {
    background-color: #eb4b80;
    box-shadow: 0 6px 16px rgba(247, 137, 173, 0.4);
}

@media screen and (max-width:768px) {
    .page-top__btn {
        right: 10px;
        width: 50px;
        height: 50px;
    }

    .page-bottom__btn {
        font-size: 1.25rem;
    }

    .page-bottom__text {
        display: none;
    }
}

.mv__bg {
    display: block;
    position: relative;
    object-fit: cover;
    width: 100%;
    height: 66.5%;
    z-index: 1
}

.mv__wrapper::before {
    content: "";
    background-image: url("../asset/mv_front.png");
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 2;
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 0;
    transform: translateY(-10px);
    animation: fadeIn 1s ease forwards;
    animation-delay: 1s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mv__wrapper {
    position: relative;
    inset: 0;
}

.cta__wrapper {
    position: relative;
    text-align: center;
    background-color: #fbf8f9;
    padding-top: 48px;
    padding-bottom: 24px
}

.cta__wrapper h2 {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: .1rem;
    position: relative;
    z-index: 1;
}

.cta__wrapper h2 span {
    font-family: "ヒラギノ角ゴシック", "Hiragino Sans", "ＭＳ ゴシック", "メイリオ", sans-serif;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--pink);
    text-shadow: 2px 2px var(--pink-light)
}

.cta__sub {
    position: relative;
    z-index: 1;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 16px 24px;
    width: fit-content;
    margin: 0 auto
}

.cta__sub::after,
.cta__sub::before {
    position: absolute;
    top: 16px;
    height: 22px;
    content: ""
}

.cta__sub::before {
    border-left: double 8px;
    left: 0;
    transform: rotate(-30deg)
}

.cta__sub::after {
    border-right: double 8px;
    right: 0;
    transform: rotate(30deg)
}

.cta__area--text {
    position: relative;
    animation: fluffy 1.5s infinite;
    z-index: 1
}

.cta__wrapper::after {
    position: absolute;
    content: "";
    left: 50%;
    top: 35%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px dotted var(--green-light);
    outline: 2px dotted var(--green-light);
    outline-offset: 5px;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 0
}

.cta__area--body {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    gap: 24px;
    margin: 40px 0 24px
}

.cta__card {
    display: flex;
    margin-top: 4px;
}

.cta__card--left {
    color: #fff;
    font-size: 1rem;
    padding: 6px 12px;
    background-color: #60c2ea;
    background-image: repeating-linear-gradient(-45deg, #75c6e8, #75c6e8 7px, transparent 0, transparent 14px)
}

.cta__card--right {
    font-weight: 800;
    font-size: 1rem;
    padding: 10px 8px 0;
    border: solid 1px #60c2ea;
    background-color: #fff
}

.cta__card--right span {
    font-size: 1.5rem;
    vertical-align: -2px
}

.cta__card--right .cta__card--highlight {
    margin-left: 2px;
    color: #f33
}

.cta__btn {
    padding: 0;
    border: none;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    outline: 0;
    user-select: none;
    cursor: pointer;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: .2rem;
    padding: 16px 48px;
    border-radius: 36px;
    background-color: #f789ad;
    position: relative;
    z-index: 1;
    transition: 0.2s;
    -webkit-font-smoothing: antialiased;
}

.cta__btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(247, 137, 173, 0.4);
}

.cta__btn::before {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 2.5rem;
    background-image: repeating-linear-gradient(-45deg, #f789ad, #f789ad 2px, transparent 0, transparent 4px);
    z-index: -1;
}

.cta__btn svg {
    margin-left: 12px;
    margin-bottom: -3px;
    transition: transform 0.3s ease;
}

.cta__btn:hover svg {
    transform: translateX(4px);
}

.cta__bg--circle {
    content: "";
    background-image: url("../asset/circle4.png");
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    width: 200px;
    height: 200px;
    z-index: 0;
    bottom: -100px;
    left: 0
}

@media screen and (max-width:768px) {
    .cta__wrapper {
        padding-top: 42px;
        padding-bottom: 16px
    }

    .cta__wrapper::after {
        top: 25%;
        width: 80px;
        height: 80px;
    }


    .cta__wrapper h2 {
        font-size: 1.5rem
    }

    .cta__wrapper h2 span {
        -webkit-text-stroke: 1px var(--pink);
        text-shadow: 1px 1px var(--pink-light)
    }

    .cta__area--body {
        flex-direction: column
    }

    .cta__sub {
        font-size: 1.2rem;
        padding: 12px 20px
    }

    .cta__sub::after,
    .cta__sub::before {
        top: 12px;
        height: 18px
    }

    .cta__sub::before {
        border-left: double 6px
    }

    .cta__sub::after {
        border-right: double 6px
    }



    .cta__bg--circle {
        width: 150px;
        height: 150px
    }
}

@media screen and (max-width:480px) {
    .cta__wrapper {
        padding-top: 32px
    }

    .cta__area--body {
        margin: 24px 0 16px;
        gap: 16px
    }

    .cta__card--left {
        padding: 2px 12px
    }

    .cta__card--right {
        padding: 6px 6px 0
    }

    .cta__bg--circle {
        width: 100px;
        height: 100px;
        bottom: -70px
    }
}

.content1__bg {
    width: 100%;
    margin-bottom: -8px
}

.content2__bg {
    background: linear-gradient(30deg, #dcf7f8, #ffebf3);
    padding-top: 56px
}

.content2__head {
    text-align: center;
    color: #fff;
    width: 100%;
    line-height: 2.5rem;
    font-weight: 800;
    background-color: #38bdbd;
    background-image: repeating-linear-gradient(-45deg, #4bcfca, #4bcfca 7px, transparent 0, transparent 14px)
}

.content2__head--sub {
    position: absolute;
    font-size: 1.5rem;
    top: 24px;
    left: 50%;
    height: 60px;
    width: 300px;
    transform: translateX(-50%);
    color: var(--blue-dark);
    background-image: url("../asset/ribbon.png");
    background-size: contain;
    background-repeat: no-repeat
}

.content2__head h2 {
    display: flex;
    justify-content: center;
    font-size: 1.8rem;
    letter-spacing: .2rem;
    gap: 16px;
    padding: 40px 0 16px 0;
    overflow: hidden;
    white-space: nowrap
}

.content2__head h2::after,
.content2__head h2::before {
    content: "";
    background-image: url("../asset/garland.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 100px;
    height: 100px
}

.content2__head h2::before {
    transform: scale(-1, 1)
}

.content2__head span {
    font-size: 2.2rem
}

.content2__img {
    width: 100%;
    margin-top: 32px
}

.content2__area {
    margin-top: 56px;
    font-size: 2rem;
    font-weight: 800;
    line-height: 3.5rem;
    text-align: center
}

.content2__item1 {
    display: flex;
    justify-content: center;
    font-size: 2rem;
    letter-spacing: .2rem;
    gap: 4px;
    padding-bottom: 32px
}

.content2__item1::after,
.content2__item1::before {
    content: "";
    background-size: contain;
    background-repeat: no-repeat;
    width: 50px;
    height: 50px
}

.content2__item1::before {
    background-image: url("../asset/twinkly_left.png")
}

.content2__item1::after {
    background-image: url("../asset/twinkly_right.png")
}

.content2__area span {
    border-bottom: 2px solid #3cbfd7
}

.content2__item2 {
    font-size: 1.2rem;
    line-height: 2.5rem;
    padding-bottom: 32px
}

.content2__item3 {
    font-size: 2.5rem;
    letter-spacing: .2rem;
    padding-bottom: 180px;
    background-image: url("../asset/devices.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: 100px
}

@media screen and (max-width:768px) {
    .content2__head--sub {
        top: 32px;
        height: 45px;
        width: 240px
    }

    .content2__head h2 {
        font-size: 1.5rem;
        padding: 24px 0 16px 0
    }

    .content2__head span {
        font-size: 1.8rem
    }

    .content2__head h2::after,
    .content2__head h2::before {
        width: 50px;
        height: 50px
    }

    .content2__item1 {
        font-size: 1.8rem
    }

    .content2__item1::after,
    .content2__item1::before {
        width: 30px;
        height: 30px
    }

    .content2__item3 {
        font-size: 2rem;
        letter-spacing: .2rem;
        padding-bottom: 130px;
        background-position-y: 70px
    }
}

@media screen and (max-width:480px) {
    .content2__item1 {
        font-size: 1.35rem;
        padding-bottom: 24px
    }

    .content2__item2 {
        font-size: 1rem;
        padding-bottom: 24px
    }

    .content2__item3 {
        font-size: 1.5rem;
        padding-bottom: 100px
    }
}

.content3__wrapper {
    position: relative;
    background-color: #fcf8f9;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 24px;
    gap: 16px
}

.content3__group {
    display: flex;
    align-items: center;
    gap: 40px
}

.content3__text-area {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 300px;
}

.content3__text-area p {
    color: #000;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5rem;
    text-align: center
}

.content3__text {
    font-size: 1.7rem;
    line-height: 2.5rem;
    letter-spacing: .1rem;
    font-weight: 700;
    text-align: center
}

.content3__text1 {
    display: flex;
    flex-direction: column;
    align-items: center
}

.content3__text1 span {
    font-size: 1rem
}

.content3__text2 {
    color: #76d7d3
}

.content3__text3 {
    color: #bb95f0
}

.content3__text1,
.content3__text4 {
    color: #f082af
}

.content3__text5 {
    color: #76d7d3
}

.content3__text1::after,
.content3__text1::before,
.content3__text2::after,
.content3__text2::before,
.content3__text3::after,
.content3__text3::before,
.content3__text4::after,
.content3__text4::before,
.content3__text5::after {
    content: "";
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute
}

.content3__text1::before,
.content3__text3::after {
    width: 120px;
    height: 120px
}

.content3__text1::after,
.content3__text2::after,
.content3__text2::before,
.content3__text3::before,
.content3__text5::after {
    width: 50px;
    height: 50px
}

.content3__text4::after,
.content3__text4::before {
    width: 80px;
    height: 80px
}

.content3__text1::before {
    background-image: url(../asset/enjoy.png);
    bottom: -150px;
    left: -60px
}

.content3__text1::after,
.content3__text2::before {
    background-image: url(../asset/twinkly_a.png);
    bottom: -70px;
    right: 0
}

.content3__text2::after {
    background-image: url(../asset/twinkly_b.png);
    top: 0;
    left: -80%
}

.content3__text3::before {
    background-image: url(../asset/flag.png);
    top: 30px;
    right: 0
}

.content3__text3::after {
    background-image: url(../asset/skillup.png);
    bottom: -130px;
    right: -60px
}

.content3__text4::before {
    background-image: url(../asset/garland.png);
    transform: scale(-1, 1);
    left: -350px;
    top: -30px
}

.content3__text4::after {
    background-image: url(../asset/garland.png);
    bottom: -120px;
    right: -50px
}

.content3__text5::after {
    background-image: url(../asset/star.png);
    bottom: -40px;
    right: 0
}

.content3__num {
    height: 2.5rem;
    width: auto;
    align-self: flex-start;
    object-fit: contain;
    margin: 16px;
}

.content3__num--right {
    align-self: flex-end;
}


.content3__img--pt {
    padding-top: 48px
}

.content3__img {
    width: 280px;
    height: 280px;
    object-fit: contain
}

@media screen and (max-width:768px) {
    .content3__group {
        gap: 16px
    }

    .content3__text-area {
        width: auto;
    }

    .content3__img {
        width: 200px;
        height: 200px
    }

    .content3__text1::before,
    .content3__text3::after {
        width: 80px;
        height: 80px
    }

    .content3__text4::after,
    .content3__text4::before {
        width: 60px;
        height: 60px
    }

    .content3__text1::after,
    .content3__text2::after,
    .content3__text2::before,
    .content3__text5::after {
        width: 25px;
        height: 25px
    }

    .content3__text1::before {
        bottom: -120px;
        left: -20px
    }

    .content3__text1::after,
    .content3__text2::before {
        bottom: -40px
    }

    .content3__text2::after {
        top: 20px;
        left: -60%
    }

    .content3__text3::before {
        width: 30px;
        height: 30px
    }

    .content3__text3::after {
        bottom: -90px;
        right: -30px
    }

    .content3__text4::before {
        left: -220px;
        top: -20px
    }

    .content3__text4::after {
        bottom: -80px;
        right: -20px
    }

    .content3__text5::after {
        bottom: -10px
    }
}

@media screen and (max-width:480px) {
    .content3__text-area p {
        font-size: .8rem;
        line-height: 1.3rem;
        margin-top: 8px
    }

    .content3__text {
        font-size: 1.2rem;
        line-height: 1.8rem
    }

    .content3__text1 span {
        font-size: .8rem
    }

    .content3__text--right {
        margin-right: 16px
    }

    .content3__img {
        width: 120px;
        height: 150px
    }

    .content3__text1::before,
    .content3__text3::after {
        width: 60px;
        height: 60px
    }

    .content3__text1::before {
        bottom: -100px
    }

    .content3__text3::after {
        bottom: -65px
    }

    .content3__text4::before {
        left: -170px;
        top: 0
    }
}

.content4__wrapper {
    position: relative;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 24px
}

.content4__sub {
    padding: 8px 16px
}

.content4__bg {
    background-image: url("../asset/bg.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right;
    width: 100%
}

.content4__bg--left {
    background-position: left
}

.content4__group {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    gap: 16px
}

.content4__text-area {
    display: flex;
    flex-direction: column;
    max-width: 350px;
    gap: 16px;
    margin: 32px 8px;
    padding: 24px;
    background-color: #fff
}

.content4__text-area h3 {
    font-size: 1.4rem;
    letter-spacing: .1rem;
    font-weight: 800;
    text-align: center;
    margin: 0;
    padding-bottom: 8px
}

.content4__text-area p {
    font-size: .8rem;
    line-height: 1.5rem;
    letter-spacing: .1rem;
    font-weight: 600
}

.content4__text1 {
    color: #f082af;
    border-bottom: dashed 2px #f082af
}

.content4__text2 {
    color: #7dd8d5;
    border-bottom: dashed 2px #7dd8d5
}

.content4__text3 {
    color: #c1a6ed;
    border-bottom: dashed 2px #c1a6ed
}

.content4__img {
    width: 250px;
    height: auto;
    object-fit: contain
}

@media screen and (max-width:768px) {
    .content4__group {
        gap: 0
    }

    .content4__text-area {
        max-width: 250px
    }

    .content4__text-area h3 {
        font-size: 1.3rem
    }

    .content4__img {
        width: 180px
    }
}

@media screen and (max-width:480px) {
    .content4__bg {
        margin-bottom: 24px
    }

    .content4__text-area {
        max-width: 350px;
        gap: 16px;
        margin: 144px 16px 0 16px;
        padding: 16px
    }

    .content4__img {
        position: absolute;
        width: 100px;
        height: auto;
        left: 50%;
        top: 0;
        transform: translateX(-50%)
    }

    .content4__bg {
        background-position: top
    }
}

.content5__wrapper {
    position: relative;
    background-color: #f3fbfd;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 24px
}

.content5__head {
    width: 400px;
    left: calc(50% - 10px);
    position: absolute;
    top: -60px;
    transform: translateX(-50%);
    z-index: 1
}

.content5__wrapper::after,
.content5__wrapper::before {
    content: "";
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    width: 200px;
    height: 200px;
    z-index: 0
}

.content5__wrapper::before {
    background-image: url("../asset/circle1.png");
    top: 24px;
    right: 0
}

.content5__wrapper::after {
    background-image: url("../asset/circle2.png");
    top: 40%;
    left: 0
}

.content5__area {
    position: relative;
    margin-top: 160px;
    z-index: 2
}

.content5__group {
    display: flex;
    align-items: center;
    gap: 40px
}

.content5__text {
    font-size: 1.3rem;
    line-height: 2rem;
    letter-spacing: .1rem;
    font-weight: 600
}

.content5__text span {
    font-size: 2rem;
    color: #f199b6
}

.content5__img4 {
    margin: 8px 16px
}

.content5__img {
    width: 280px;
    height: 220px;
    object-fit: contain
}

.content5__bg--circle {
    content: "";
    background-image: url("../asset/circle3.png");
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    width: 200px;
    height: 200px;
    z-index: 1;
    bottom: -80px;
    right: -4px
}

@media screen and (max-width:768px) {
    .content5__head {
        width: 350px;
        top: -50px
    }

    .content5__group {
        gap: 16px
    }

    .content5__img {
        width: 200px;
        height: 150px
    }

    .content5__bg--circle,
    .content5__wrapper::after,
    .content5__wrapper::before {
        width: 150px;
        height: 150px
    }
}

@media screen and (max-width:480px) {
    .content5__head {
        width: 280px;
        top: -40px
    }

    .content5__area {
        margin-top: 100px
    }

    .content5__text {
        font-size: 1.2rem
    }

    .content5__text span {
        font-size: 1.5rem
    }

    .content5__img {
        width: 120px;
        height: 100px
    }

    .content5__bg--circle,
    .content5__wrapper::after,
    .content5__wrapper::before {
        width: 100px;
        height: 100px
    }
}

.faq__wrapper {
    border-top: solid 8px #f199b6;
    background-color: #f5f0f4;
    text-align: center;
    padding-bottom: 100px
}

.faq__title {
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 600;
    margin-top: 40px;
    background: linear-gradient(90deg, #69bcd9 40%, #5cb8a1 80%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.faq__title::after {
    content: "";
    background-image: url("../asset/faq.png");
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    width: 200px;
    height: 100px;
    margin-top: 8px
}

.faq__wrapper ul {
    font-weight: 400;
    list-style: none;
    text-align: left;
    background: #fff;
    box-shadow: 6px 6px 8px rgba(0, 0, 0, .2);
    border-radius: 24px;
    padding: 1px 16px 24px 16px;
    margin: 24px 56px 0
}

.faq__wrapper ul li {
    position: relative;
    line-height: 2rem
}

.faq__wrapper ul li h3 {
    font-size: 1.3rem;
    font-weight: 600;
    padding: 0 8px 8px;
    margin: 16px 0 8px;
    border-bottom: dotted 3px #ff7eab;
    background: linear-gradient(90deg, #69bcd9 40%, #5cb8a1 80%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.faq__wrapper ul li h3 span {
    font-size: 1.8rem;
    font-weight: 600;
    margin-right: 16px
}

.faq__wrapper ul li p {
    margin-left: 32px
}

@media screen and (max-width:480px) {
    .faq__wrapper ul {
        border-radius: 24px;
        margin: 24px 16px 0
    }

    .faq__wrapper ul li h3 {
        font-size: 1rem
    }

    .faq__wrapper ul li p {
        font-size: .95rem;
        margin-left: 8px
    }

    .faq__wrapper ul li h3 span {
        font-size: 1.5rem;
        margin-right: 8px
    }

    .faq__title::after {
        width: 150px;
        height: 65px
    }
}

.footer__navi {
    display: flex;
    list-style: none;
    flex-direction: row;
    justify-content: center;
    padding: 16px 0;
}

.footer__navi li {
    padding: 0 14px;
    border-right: 1px solid #333;
    text-align: center
}

.footer__navi li:last-child {
    border-right: none
}

.footer__navi a {
    text-decoration: none;
    transition: .2s;
    color: var(----green-light)
}

.footer__navi a:hover {
    color: #f33
}

.copyright {
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    font-size: .8rem;
    margin-bottom: 16px
}

@media screen and (max-width:480px) {
    .footer__navi li {
        padding: 0 8px;
    }

    .footer__navi a {
        font-size: .8rem
    }
}

@keyframes kiran {
    0% {
        transform: scale(2) rotate(45deg);
        opacity: 0;
    }

    20% {
        transform: scale(20) rotate(45deg);
        opacity: 0.6;
    }

    40% {
        transform: scale(30) rotate(45deg);
        opacity: 0.4;
    }

    80% {
        transform: scale(45) rotate(45deg);
        opacity: 0.2;
    }

    100% {
        transform: scale(50) rotate(45deg);
        opacity: 0;
    }
}

/* 特定商取引法に基づく表記 */
.tradelaw,
.privacy {
    position: relative;
    background-color: #fff;
    padding: 32px 24px;
}

.tradelaw h2,
.privacy h2 {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: .1rem;
    padding: 16px 24px;
}

.tradelaw__table {
    background-color: #fff;
    padding: 24px 16px;
}

.tradelaw dl div {
    display: flex;
    flex-direction: row;
    border-bottom: 2px dotted var(--green-light);
}

.tradelaw dl div:last-child {
    border-bottom: none;
}

.tradelaw dt {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: .1rem;
    width: 30%;
    padding: 16px;
}

.tradelaw dd {
    font-size: 1rem;
    padding: 16px 8px;
    width: 70%;
}

@media screen and (max-width:480px) {

    .tradelaw,
    .privacy {
        border-bottom: solid 1px var(--blue-dark);
    }

    .tradelaw h2,
    .privacy h2 {
        padding: 8px 16px;
        font-size: 1.5rem;
    }

    .tradelaw__table {
        padding: 16px 0;
    }

    .tradelaw dl div {
        flex-direction: column;
    }

    .tradelaw dt,
    .tradelaw dd {
        width: 100%;
    }

    .tradelaw dd {
        padding: 4px 16px 16px;
    }
}

.privacy__content div {
    padding: 16px;
}

.privacy__content h3 {
    font-size: 1.3rem;
    font-weight: 800;
    padding: 16px;
    border-bottom: dotted 2px var(--green-light);
}

.privacy__content p {
    font-size: 0.9rem;
    padding: 16px;
    white-space: pre-line;
}

.privacy__date {
    font-size: 0.8rem;
    padding-right: 16px;
}

.privacy__date p {
    padding: 8px 16px;
}

@media screen and (max-width:480px) {
    .privacy__content div {
        padding: 16px 0;
    }
}