@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: #3f3f3f;
    background-color: #f5f5f5;
    line-height: 1.5;
    font-weight: 400;
}

img {
    max-width: 100%;
    height: auto;
}

.title {
    font-family: 'Playball';
    font-size: 2.8rem;
    line-height: 1;
    color: #445cbd;
    position: relative;
}

.title--ja {
    font-size: 2rem;
    font-family: 'Noto Sans JP';
    font-weight: 700;
    letter-spacing: 0.08em;
}

.section {
    position: relative;
}

.btn {
    max-width: 240px;
    font-size: 1.8rem;
    font-weight: 700;
    background: #c1c343;
    box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.25);
    padding: 4px 32px;
    margin: 56px auto 0;
    display: flex;
    justify-content: end;
    gap: 48px;
    transition: 0.4s;
    cursor: pointer;
}

.btn img {
    width: 20px;
    margin-top: 1px;
}

.btn:hover {
    opacity: 0.5;
}

/* common pc 1024px*/
@media screen and (min-width:1024px) {
    .title {
        font-size: 3.2rem;
    }

    .title--ja {
        font-size: 2.4rem;
    }

    .btn {
        margin: 120px auto 0;
    }
}

/* common pc */
@media screen and (min-width:1440px) {
    .title {
       font-size: 4rem; 
    }

    .title--ja {
        font-size: 2.8rem;
    }
}

/* =======================
header
========================= */
.header {
    padding: 8px 4.2% 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #445cbd;
    position: relative;
    z-index: 10;
}

.header::after {
    content: '';
    background-image: url(../img/header-sp.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 56px;
    position: absolute;
    top: 98%;
    left: 0;
    z-index: -10;
}

.header__topic,
.nav__topic {
    text-align: center;
    font-family: 'Wittgenstein';
    font-size: 2rem;
    font-weight: 700;
    color: #f5f5f5;
    letter-spacing: 0.03em;
}



.humburger__menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 24px;
    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;
}
.humburger__menu span:nth-of-type(3) {
    display: block;
    margin-top: 6px;
    width: 20px;
    height: 1px;
}

/* 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: #445cbd;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 4.2%;
}

.nav__topic {
    color: #f5f5f5;
}

.nav__btn {
    position: relative;
}

.nav__btn span{
    display: block;
    width: 20px;
    height: 1px;
    transform: rotate(45deg);
    background-color: #f5f5f5;
    position: absolute;
    top: 0;
    right: 4.2%;
}

.nav__btn span:last-of-type{
    display: block;
    width: 20px;
    height: 1px;
    transform: rotate(-45deg);
    background-color: #f5f5f5;
}

.nav__list {
    background-color: #445cbd;
    padding: 40px 12% 16px;
}

.nav__list:last-of-type {
    padding: 0 12% 80px;
}

.nav__item {
    display: flex;
    height: 40px;
    margin: 16px auto 0;
    justify-content: space-between;
    align-items: center;
    background-color: #445cbd;
    color: #e6e6e6;
    font-size: 1.6rem;
    font-weight: 700;
    transition: 0.4s;
    cursor: pointer;
}

.nav__item:hover {
    background-color: #c1c343;
}

.navItem__content {
    width: 600px;
    /* height: 40px; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    color: #e6e6e6;
}

.navItem__content span {
    margin-left: 8px;
}

.navItem__content img {
    margin-right: 8px;
}

.nav__item:first-of-type {
    margin-top: 0;
}

.nav__item:nth-of-type(5),
.nav__item:nth-of-type(6),
.nav__item:nth-of-type(7),
.nav__item:nth-of-type(9) {
    font-size: 1.4rem;
}

/* header&nav tablet 600px~ */
@media screen and (min-width: 600px) {
    .header {
        padding: 8px 9.7% 0;
    }

    .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&nav pc 1024px~ */
@media screen and (min-width: 1024px) {
    .header {
        padding: 16px 9.7% 0;
        align-items: baseline;
    }

    .header::after {
        background-image: url(../img/header-pc.png);
        top: 48%;
        height: 200px;
    }

    .header__topic {
        padding: 3px 0;
        font-family: 'Wittgenstein';
        font-size: 2.8rem;
        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:last-of-type {
        display: flex;
        justify-content: end;
        margin-top: 4px;
    }

    .nav__list:last-of-type .nav__item {
        background-color: #c1c343;
        color: #445cbd;
        padding: 0 16px 2px;
        border-radius: 8px;
        font-weight: 700;
        line-height: 1;
        height: 28px;
        font-size: 1.4rem;
    }

    .nav__list {
        display: flex;
        background-color: #445cbd;
        padding: 0;
        gap: 20px;
        justify-content: center;
    }

    .nav__list:last-of-type {
        padding: unset;
    }

    .navItem__content {
        width: auto;
    }

    .nav__list:last-of-type .nav__item span{
        color: #445cbd;
    }

    .navItem__content img {
        display: none;
    }

    .navItem__content span {
        margin-left: 0;
    }

    .nav__item {
        margin: 0;
        padding: 0;
        font-size: 1.6rem;
        font-weight: 400;
        align-items: center;
    }

    .nav__item:nth-of-type(5),
    .nav__item:nth-of-type(6),
    .nav__item:nth-of-type(7),
    .nav__item:nth-of-type(9) {
        font-size: 1.4rem;
    }

    .nav__item:hover {
        background-color: transparent;
    }

    .nav__item span:hover {
        color: #c1c343;
    }

    .nav__list:last-of-type .nav__item:hover {
        background-color: #f5f5f5;
    }

}
/* header 1024px~ */

/* header&nav pc 1250px~ */
@media screen and (min-width: 1250px) {
    .header::after {
        top: 44%;
    }
}

/* header&nav pc 1440px~ */
@media screen and (min-width:1440px) {
    .header {
        align-items: baseline;
    }

    .header::after {
        top: 24%;
    }

    .nav__content {
        display: flex;
        gap: 20px;
        align-items: baseline;
    }

    .nav__list:last-of-type {
        gap: 20px;
    }

}

/* header&nav pc 1800px~ */
@media screen and (min-width:1800px) {
    .header::after {
        top: -6%;
    }
}

/* header&nav pc 2560px~ */
@media screen and (min-width:2560px) {
    .header::after {
        background-image: url(../img/header-pc2.png);
        top: 0%;
    }
}


/* =========================
footer
============================= */

.footer {
    position: relative;
}

.footer::before {
    content: '';
    background-image: url(../img/footer-sp.png);
    background-size: contain;
    width: 100%;
    height: 100%;
    position: absolute;
    top: -8%;
    left: 0;
    background-repeat: no-repeat;
}

.footer__group {
    padding: 48px 4.2% 80px;
    background-color: #445cbd;
    color: #f5f5f5;
}

.footer__content,
.footerNav__item {
    letter-spacing: 0.05em;
}

.footer__content {
    position: relative;
    z-index: 5;
}

.footerNav__content {
    display: flex;
    position: relative;
    z-index: 5;
    margin-top: 40px;
}

.footer__topic {
    font-size: 2rem;
    font-weight: 700;
    transition: 0.3s;
    cursor: pointer;
}

.footer__topic:hover {
    color: #c1c343;
}

.footer__address {
    margin-top: 16px;
    font-size: 1.4rem;
}

.sns {
    margin-top: 12px;
    display: flex;
    gap: 8px;
    position: relative;
    z-index: 5;
}

.sns a:first-of-type .sns__img {
    width: 14px;
}

.sns a:last-of-type .sns__img {
    width: 23px;
}

.sns a:hover {
    opacity: 0.5;
}

.footerNav__list {
    width: 139vw;
}

.footerNav__item {
    margin-top: 16px;
    font-size: 1.6rem;
    line-height: 1;
}

.footerNav__item:nth-of-type(5),
.footerNav__item:nth-of-type(6),
.footerNav__item:nth-of-type(7) {
    font-size: 1.4rem;
}

.footerNav__item:first-of-type {
    margin-top: 0;
}

.shop__btn, 
.faq__btn {
    display: block;
    padding: 4px 16px;
    width: 160px;
    background: #c1c343;
    color: #445cbd;
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
    box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.25);
    transition: 0.3s;
    cursor: pointer;
    border-radius: 8px;
    height: 36px;
}

.faq__btn {
    padding: 7px 16px;
}

.footer__btn {
    margin-top: 2px;
}

.faq__btn {
    margin-top: 16px;
    font-size: 1.4rem;
}

.shop__btn:hover, 
.faq__btn:hover {
    background-color: #f5f5f5;
}

.ppscta {
    display: flex;
    gap: 12px;
    font-size: 1.2rem;
    color: #f5f5f5;
    position: absolute;
    bottom: -248%;
    transition: 0.3s;
    cursor: pointer;
}

.ppscta a:first-of-type:hover,
.ppscta a:last-of-type:hover {
    color: #c1c343;
} 

.copy {
    text-align: center;
    padding: 8px 17.8% 12px; 
}

@media screen and (min-width: 425px) {
    .footer::before {
        top: -12%;
    }
}

@media screen and (min-width: 600px) {
    .footer::before {
        top: -16%;
    }
    
    .footer__group {
        padding: 36px 9.7% 80px;
    }
}

@media screen and (min-width: 768px) {
    .footer::before {
        top: -20%;
    }
}

/* footer pc 1024px~ */
@media screen and (min-width: 1024px) {
    .footer::before {
        background-image: url(../img/footer-pc.png);
        top: -32%;
    }

    .footer__group {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        padding: 24px 9.7% 80px;
    }

    .footer__topic {
        font-size: 2.4rem;
    }

    .footer__address {
        margin-top: 24px;
    }

    .sns {
        margin-top: 24px;
        justify-content: end;
    }

    .footerNav__list {
        display: flex;
        width: max-content;
        justify-content: flex-end;
        align-items: baseline;
        gap: 8px;
        margin-top: 24px;
    }

    .footerNav__item {
        margin-top: 0;
    }

    .footerNav__item::after {
        content: '|';
        font-size: 1.6rem;
        color: #f5f5f5;
        margin-left: 8px;
        opacity: 70%;
    }

    .footerNav__item:last-of-type::after {
        display: none;
    }

    .footerNav__item:hover {
        color: #c1c343;
    }

    .footerNav__content {
        display: block;
        margin-top: 0;
        margin-left: -8px;
    }

    .footer__btn {
        display: flex;
        justify-content: flex-end;
        margin-top: 24px;
        gap: 16px;
    }

    .faq__btn {
        margin-top: 0;
    }

    .shop__btn {
        padding: 5px 0;
        width: 210px;
        text-align: center;
    }

    .faq__btn {
        padding: 7px 0;
        width: 210px;
        text-align: center;
    }

    .ppscta {
        position: unset;
        margin-top: 40px;
    }

    
}

@media screen and (min-width:1100px) {
    .footer__nav {
        margin-left: 0;
    }
}

@media screen and (min-width:1200px) {
    .footer::before {
        top: -40%;
    }
}

@media screen and (min-width:1440px) {
    .footer__group {
        padding: 0px 9.7% 80px;
    }

    .footer::before {
        top: -58%;
    }
}

@media screen and (min-width:1800px) {
    .footer::before {
        top: -68%;
    }
}

@media screen and (min-width:1800px) {
    .footer::before {
        top: -64%;
    }
}

@media screen and (min-width:2000px) {
    .footer::before {
        top: -80%;
    }
}

@media screen and (min-width:2100px) {
    .footer::before {
        top: -80%;
        background-size: cover;
    }
}

@media screen and (min-width:2560px) {
    .footer::before {
        top: -85%;
    }
}


/* topscroll */
.topBtn {
    display: block;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #e6e6e6;
    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;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
}

.topBtn div {
    position: relative;
}

.topBtn svg {
    fill: #445cbd;
    display: block;
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.4s;
    cursor: pointer;
}

.topBtn p {
    color: #445cbd;
    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;
}
