@charset "UTF-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --en: "Poppins", sans-serif;
    --jp: "Noto Sans JP", sans-serif;
}

html {
    font-size: 62.5%;
    /* 16px * 62.5% = 10px */
    width: 100%;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    color: #333333;
    font-family: var(--jp);
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 1.5;
    text-align: center;
    overflow-x: hidden;
}

body.fixde {
    height: 100vh;
    overflow: hidden;
}

img {
    width: 100%;
}

.br {
    display: inline-block;
}

a {
    transition: 0.5s;
    transition-timing-function: ease-out;
}

a:hover {
    opacity: 0.5;
}

picture {
    display: block;
}

picture img,
picture source {
    width: 100%;
}

.scroll__effect {
    opacity: 0;
}

.scroll__effect.active {
    animation: fade 1s ease-out both;
}

@keyframes fadein {
    0% {
        opacity: 0;
        filter: blur(10px);
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0px);
    }
}

.header {
    padding: 25px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    z-index: 90000;
}

.header__wapper {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__wapper h1 {
    position: relative;
    z-index: 99999;
    width: 200px;
}

.nav__wapper__ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav__wapper__ul__li a {
    font-family: var(--en);
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 4rem;
}

.nav__wapper__ul__li .entory__button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 115px;
    height: 50px;
    background: #27A9C7;
    border-radius: 10px;
    color: #FFFFFF;
    mix-blend-mode: multiply;
    box-shadow:
        inset 1px 1px 2px 0 rgba(255, 255, 255, 0.3),
        inset -1px -1px 2px 0 rgba(216, 216, 208, 0.5),
        -6px 6px 12px 0 rgba(216, 216, 208, 0.2),
        6px -6px 12px 0 rgba(216, 216, 208, 0.2),
        -6px -6px 12px 0 rgba(255, 255, 255, 0.9),
        2px 2px 8px 0 rgba(216, 216, 208, 0.9);
    text-shadow: 1px 1px 3px rgba(25, 140, 210, 0.4);
}

.header__buttonarea {
    display: none;
}

.nav__wapper__ul__li.sp {
    display: none;
}


@media (max-width: 1024px) {

    .header {
        padding: 0;
    }

    .header__wapper {
        width: 100%;
    }

    .header__wapper h1 {
        width: 175px;
        margin-left: 5vw;
    }

    .nav {
        position: fixed;
        top: 0;
        left: 110%;
        width: 100%;
        height: 100dvh;
        overflow-y: scroll;
        background: #FFFFFF;
        z-index: 99990;
        transition: 0.5s;
        transition-timing-function: ease-out;
    }

    .nav.open {
        left: 0;
    }

    .nav__wapper {
        min-height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 100px 0;
    }

    .nav__wapper__ul__li.sp {
        display: block;
    }

    .nav__wapper__ul__li .entory__button {
        width: 200px;
    }

    .nav__wapper__ul {
        flex-direction: column;
    }

    .header__buttonarea {
        display: flex;
        align-items: center;
        gap: 15px;
        position: relative;
        z-index: 99999;
    }

    .header__buttonarea__button {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 80px;
        height: 35px;
        background: #27A9C7;
        border-radius: 10px;
        color: #FFFFFF;
        mix-blend-mode: multiply;
        box-shadow: inset 1px 1px 2px 0 rgba(255, 255, 255, 0.3), inset -1px -1px 2px 0 rgba(216, 216, 208, 0.5), -6px 6px 12px 0 rgba(216, 216, 208, 0.2), 6px -6px 12px 0 rgba(216, 216, 208, 0.2), -6px -6px 12px 0 rgba(255, 255, 255, 0.9), 2px 2px 8px 0 rgba(216, 216, 208, 0.9);
        text-shadow: 1px 1px 3px rgba(25, 140, 210, 0.4);
        font-size: 1.2rem;
        font-weight: 700;
        font-family: var(--en);
        letter-spacing: 1px;
    }

    .menu {
        position: relative;
        width: 55px;
        height: 55px;
        display: block;
        background: #3B8EC0;
    }

    .menu span {
        position: absolute;
        top: 20px;
        left: 15px;
        width: 28px;
        height: 1px;
        display: block;
        background: #FFFFFF;
        transition: 0.5s;
        transition-timing-function: ease-out;
    }

    .menu span:nth-child(2) {
        top: 27.5px;
    }

    .menu span:nth-child(3) {
        top: 35px;
    }

    .menu.active span {
        rotate: 45deg;
        top: 27.5px;
    }

    .menu.active span:nth-child(2) {
        opacity: 0;
    }

    .menu.active span:nth-child(3) {
        top: 27.5px;
        rotate: -45deg;
    }
}


@media (max-width: 767px) {
    .header__wapper h1 {
        width: 150px;
    }
}



.footer {
    background: #FFFFFF;
    padding: 65px 0;
}

.footer__wapper {
    width: 90%;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.footer__wapper__left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.footer__wapper__left h2 {
    width: 200px;
}

.footer__wapper__left__button {
    width: 210px;
    height: 50px;
    background: #EDF3F6;
    border-radius: 10px;
    color: #3B8EC0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--en);
    font-weight: 700;
    box-shadow:
        inset 1px 1px 2px 0 rgba(255, 255, 255, 0.3),
        inset -1px -1px 2px 0 rgba(216, 216, 208, 0.5),
        -6px 6px 12px 0 rgba(216, 216, 208, 0.2),
        6px -6px 12px 0 rgba(216, 216, 208, 0.2),
        -6px -6px 12px 0 rgba(255, 255, 255, 0.9),
        2px 2px 8px 0 rgba(216, 216, 208, 0.9);
}

.footer__wapper__nav {
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
}

.footer__wapper__nav ul li {
    line-height: 3.5rem;
    text-align: left;
    font-family: var(--en);
    font-weight: 700;
    color: #00E0D5;
}

.footer__wapper__nav ul li a {
    color: #3B8EC0;
}


@media (max-width: 1024px) {
    .footer__wapper {
        flex-direction: column;
        gap: 50px;
        justify-content: center;
        align-items: center;
    }

    .footer__wapper__left {
        gap: 50px;
    }
}



.sec6 {
    padding: 150px 0 100px;
}

.sec6__wapper {
    width: 90%;
    max-width: 1440px;
    padding: 100px 5%;
    margin: 0 auto;
    background-image: url(images/top/sec6/bg.jpg);
    background-position: left;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
}

.sec6__wapper div {
    text-align: left;
    color: #FFFFFF;
}

.sec6__wapper div h2 {
    font-size: 4.3rem;
    font-family: var(--en);
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 2px;
}

.sec6__wapper div p {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 3px;
}

.sec6__wapper a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 250px;
    height: 90px;
    background: #27A9C7;
    font-weight: 700;
    font-size: 2.8rem;
    letter-spacing: 1px;
    font-family: var(--en);
    color: #FFFFFF;
    border-radius: 10px;
    box-shadow:
        inset 1px 1px 2px 0 rgba(255, 255, 255, 0.3),
        inset -1px -1px 2px 0 rgba(255, 255, 255, 0.3);
    filter:
        drop-shadow(-6px 6px 12px rgba(255, 255, 255, 0.3)) drop-shadow(6px -6px 12px rgba(255, 255, 255, 0.3)) drop-shadow(-3px -4px 10.7px rgba(255, 255, 255, 0.3)) drop-shadow(2px 2px 8px rgba(255, 255, 255, 0.3));
}

@media (max-width: 767px) {

    .sec6 {
        padding: 100px 0 100px;
    }

    .sec6__wapper {
        flex-direction: column;
        gap: 60px;
    }

    .sec6__wapper div h2 {
        font-size: 3rem;
        margin-bottom: 20px;
    }

    .sec6__wapper div p {
        font-size: 1.4rem;
    }

    .sec6__wapper a {
        height: 60px;
        font-size: 2.2rem;
    }

    .sec6__wapper {
        padding: 50px 5%;
    }
}

@keyframes fade {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}