@charset "UTF-8";

/* ========================
common
========================= */
* {
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%;
}

body {
    font-family:
        'noto sans JP',
        'Zen Kaku Gothic New',
        sans-serif;
    font-style: normal;
    color: #f5f5f5;
    background-color: #262626;
    line-height: 1.5;
    font-weight: 400;
}

main {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

.title {
    font-family: 'Playball';
    font-size: 2.4rem;
    line-height: 1;
    color: #f5f5f5;
    letter-spacing: 0.05em;
}

.title--ja {
    font-size: 2rem;
    font-family: 'Noto Sans JP';
    font-weight: 700;
    letter-spacing: 0.03em;
}

.container {
    overflow: hidden;
}

/* .btn {
    font-size: 2rem;
    font-weight: 700;
    background-color: #CB9EEE;
    box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.25);
    padding: 10px 50px;
    margin: 56px auto 0;
    display: block;
    width: 240px;
    color: #3e3e3e;
} */

/* common pc */
@media screen and (min-width:1024px) {
    .title {
        font-size: 3.2rem;
    }

    .btn {
        margin: 120px auto 0;
    }
}

/* =======================
header
========================= */
.header {
    padding: 8px 4.2% 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-image: linear-gradient(90deg, #262626, #51207b);
    position: relative;
}

.header::after {
    content: '';
    background-image: url(../img/ssl-header-sp.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 102%;
    height: 112px;
    position: absolute;
    top: 98%;
    left: -1%;
}

.header__topic,
.nav__topic {
    text-align: center;
    font-family: 'Wittgenstein';
    font-size: 2rem;
    font-weight: 700;
    color: #f5f5f5;
}



.humburger__menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    cursor: pointer;
    margin-bottom: 4px;
}

.humburger__menu span {
    display: block;
    width: 20px;
    height: 1px;
    background-color: #f5f5f5;
}

.humburger__menu span:nth-of-type(2) {
    display: block;
    margin-top: 6px;
    width: 20px;
    height: 1px;
    background-color: #f5f5f5;
}
.humburger__menu span:nth-of-type(3) {
    display: block;
    margin-top: 6px;
    width: 20px;
    height: 1px;
    background-color: #f5f5f5;
}

/* nav */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    transform: translateX(-100%);
    transition: 0.4s;
}

.nav.active {
    transform: translateX(0);
}

.nav__header {
    background-color: #262626;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 4.2%;
}

.nav__topic,
.close {
    color: #f5f5f5;
}

.nav__btn {
    position: relative;
}

.nav__btn span{
    display: block;
    width: 20px;
    height: 2px;
    transform: rotate(45deg);
    background-color: #f5f5f5;
    position: absolute;
    top: 0;
    right: 4.2%;
}

.nav__btn span:last-of-type{
    display: block;
    transform: rotate(-45deg);
    background-color: #f5f5f5;
}

.nav__list {
    background-color: #262626;
    padding: 40px 10%;
}

.nav__item {
    display: flex;
    height: 40px;
    margin: 16px auto 0;
    justify-content: space-between;
    align-items: center;
    /* background-color: #f5f5f5; */
    color: #f5f5f5;
    font-size: 1.6rem;
    font-weight: 700;
    transition: 0.4s;
    cursor: pointer;
}

.nav__item:hover {
    background-color: #51207B;
}

.navItem__content {
    width: 600px;
    height: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    color: #dedede;
}

.navItem__content span {
    margin-left: 8px;
}

.navItem__content img {
    margin-right: 8px;
}


.nav__item:first-of-type {
    margin-top: 0;
}

.page {
    margin-top: 56px;
    color: #262626;
    text-align: center;
    font-size: 1.6rem;

}

/* header&nav tablet 600px~ */
@media screen and (min-width: 600px) {
    .header {
        padding: 16px 9.7% 4px;
    }

    .header__topic,
    .nav__topic {
        font-size: 2.4rem;
    }

    .nav__item {
        max-width: 600px;
    }

    .nav__header {
        padding: 24px 9.7% 12px;
    }

    .nav__btn span {
        right: 9.7%;
    }

}
/* header&nav 600px~ */

/* header pc 1024px */
@media screen and (min-width: 1024px) {
    .header {
        align-items: baseline;
        padding: 16px 9.7% 0px;
    }

    .header__topic {
        font-size: 2.8rem;
        padding: 3px 0;
        font-family: 'Wittgenstein';
        font-weight: 800;
    }

    .humburger__menu {
        display: none;
    }

    .nav {
        transform: translateX(0);
        z-index: 100;
        position: static;
        background: transparent;
        width: auto;
        height: auto;
    }

    .nav__header {
        display: none;
    }

    .nav__list {
        display: flex;
        background-color: transparent;
        padding: 5px 0;
        gap: 24px;
        justify-content: center;
    }

    .nav__item {
        margin: 0;
        padding: 0;
        background-color: transparent;
        font-size: 1.8rem;
        font-weight: 400;
        align-items: center;
    }

    .nav__item:hover {
        background-color: transparent;
    }

    .nav__item span:hover {
        opacity: 50%;
    }
    
    .navItem__content {
         width: auto;
     }
 
     .navItem__content img {
         display: none;
     }

    .navItem__content span {
        color: #F5F5F5;
        font-size: 1.6rem;
        margin-left: 0;
    }

    .page {
        margin-top: 120px;
    }
}
/* pc 1025px~ */

/* header 2310px */
@media screen and (min-width: 2310px) {
    .header::after {
        width: 100vw;
        height: 120px;
        left: 0;
        top: 84%;
        background-size: cover;
    }
}


/* =========================
footer
============================= */
.footer {
    position: relative;
    z-index: 1;
}

.footer::before {
    content: '';
    background-image: url(../img/ssl-footer-wave.svg);
    background-size: contain;
    width: 102%;
    height: 100%;
    background-repeat: no-repeat;
    position: absolute;
    top: -18px;
    left: -1px;
    z-index: -1;
}

.footer__group {
    padding: 48px 4.2% 24px;
}

.footer__topic {
    color: #F5F5F5;
    font-family: 'Wittgenstein';
    font-size: 2.8rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    height: fit-content;
    cursor: pointer;
    transition: 0.3s;
}

.footer__topic:hover {
    opacity: 50%;
}

.sns {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.sns a {
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    width: fit-content;
    height: 24px;
}

.sns a:hover {
    opacity: 50%;
}

.facebook__logo {
    width: 18px;
}

.youtube__logo {
    width: 24px;
}

.link__logo {
    margin-left: 4px;
    width: 16px;
}

.footer__nav {
    display: block;
}

.footerNav__content {
    display: flex;
    justify-content: space-between;
    margin-top: 28px;
}

.footerNav__item {
    margin-top: 16px;
    color: #F5F5F5;
    font-size: 1.6rem;
    line-height: 1;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: 0.3s;
}

.footerNav__item:first-of-type {
    margin-top: 0;
}

.footerNav__item a:hover {
    opacity: 50%;
}

.online__btn,
.faq__btn {
    color: #f5f5f5;
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(27deg,rgba(81, 32, 123, 1) 0%, rgba(81, 32, 123, 1) 50%, rgba(157, 47, 253, 1) 100%);
    padding: 8px 16px;
    display: block;
    width: 100%;
    text-align: center;
    border-radius: 12px;
    letter-spacing: 0.03em;
    transition: 0.4s;
    cursor: pointer;
}

.footer__btn {
    margin-top: 2px;
}

.faq__btn {
    margin-top: 16px;
}

.online__btn:hover,
.faq__btn:hover {
    opacity: 0.5;
}

.copy {
    color: #f5f5f5;
    font-size: 1.4rem;
    text-align: center;
    margin-top: 40px;
}

/* footer tablet 425px~ */
@media screen and (min-width: 425px) {
    .footer::before {
        top: -28px;
    }
}

/* footer tablet 600px~ */
@media screen and (min-width: 600px) {
    .footer__group {
        padding: 80px 9.7% 24px;
    }
}

/* footer tablet 768px~ */
@media screen and (min-width: 768px) {
    .footer::before {
        top: -39px;
    }
}


/* footer pc 1024px */
@media screen and (min-width: 1024px) {
    .footer::before {
        background-image: url(../img/ssl-footer-wave-pc.svg);
        top: -82px;
    }

    .footer__group {
        padding: 64px 9.7% 72px;
    }
    
    .footer__topicNav {
        display: flex;
        justify-content: space-between;
    }

    .footer__topic {
        font-size: 3.2rem;
        line-height: 1;
        letter-spacing: 0.05em;
    }

    .sns {
        gap: 16px;
        justify-content: end;
    }

    .sns a {
        font-size: 1.6rem;
        line-height: 1;
    }

    .facebook__logo {
        width: 20px;
    }

    .youtube__logo {
        width: 29px;
    }

    .link__logo {
        width: 18px;
    }


    .footer__nav {
        margin-top: 32px;
    }

    .footerNav__content {
        display: block;
    }

    .footerNav__list {
        display: flex;
        margin-top: 32px;
    }

    .footerNav__item {
        margin-top: 0;
    }

    .footerNav__item::after {
        content: '|';
        margin-left: 8px;
        margin-right: 8px;
    }

    .footerNav__item:last-of-type::after {
        display: none;
    }

    .footer__btn {
        display: flex;
        margin-top: 32px;
        gap: 16px;
    }

    .faq__btn {
        margin-top: 0;
    }

    .copy {
        margin-top: -16px;
        text-align: left;
    }
}

/* footer pc 1550px */
@media screen and (min-width: 1550px) {
    .footer::before {
        top: -120px;
    }
}

/* footer pc 2000px */
@media screen and (min-width: 2000px) {
    .footer::before {
        top: -160px;
    }
}

/* scrollTop */
.topBtn {
    display: block;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #dedede;
    box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.3);
    position: fixed;
    bottom: 1.4%;
    right: 1.4%;
    transition: 0.4s;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
}

.topBtn div {
    position: relative;
}

.topBtn svg {
    fill: #262626;
    display: block;
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.4s;
    cursor: pointer;
}

.topBtn p {
    color: #262626;
    font-size: 1.8rem;
    font-weight: 700;
    position: absolute;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.4s;
    cursor: pointer;
}

.topBtn.active {
    opacity: 1;
    visibility: visible;
}

.topBtn:hover {
    opacity: 0.5;
}