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

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed: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&family=Noto+Sans+JP:wght@100..900&display=swap');

:root {
    --en: "Barlow Condensed", sans-serif;
}

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

body {
    color: #0D2A35;
    background: #F7F9FB;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 1.5;
    text-align: center;
}

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

img {
    width: 100%;
}

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

a:hover {
    opacity: 0.5;
}

.wapper {
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
    z-index: 100;
}

.button {
    width: fit-content;
    margin: 0 auto;
    display: block;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%);
}

.button:hover {
    opacity: 1;
}

.button p {
    width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 20px 0;
    border: solid 1px #0D2A35;
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%);
    position: relative;
}

.button p img {
    width: 10px;
    rotate: -90deg;
    margin-top: 2px;
}

.button p:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    background: #0D2A35;
    color: #FFFFFF;
    clip-path: inset(0 100% 0 0);
    transition: 0.4s;
    transition-timing-function: ease-out;
}

.button:hover p:nth-child(2) {
    clip-path: inset(0 0 0 0);
    opacity: 1;
}

.button p:nth-child(2) img {
    filter: brightness(0) invert(1);
}


.button p::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 107%;
    display: block;
    background: #0D2A35;
    top: -2px;
    left: 6.5px;
    rotate: 12.5deg;
}

.button p::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 107%;
    display: block;
    background: #0D2A35;
    top: -1px;
    right: 6.5px;
    rotate: 12.5deg;
}



.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    height: 80px;
    z-index: 99990;
    transition: 0.4s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header.active {
    background: #0D2A35;
}

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

.header__wapper__left {
    display: flex;
    gap: 10px;
    align-items: center;
}

.header__wapper__left img {
    width: 75px;
}

.header__wapper__left h1 {
    text-align: left;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.4;
    color: #FFFFFF;
}

.nav {
    width: fit-content;
    margin-left: auto;
}

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

.nav ul li a {
    font-family: var(--en);
    font-size: 1.8rem;
    font-weight: 600;
    color: #FFFFFF;
    /*     mix-blend-mode: saturation; */
}

.nav ul li a img {
    filter: brightness(0) invert(1);
    margin-bottom: 2.5px;
}

.menuarea {
    display: none;
}

.nav__sp {
    display: none;
}

.nav__bottomsp {
    display: none;
}

@media (max-width: 1280px) {
    .nav ul {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .header__wapper__left h1 {
        font-size: 1.2rem;
    }
}

@media (max-width: 1024px) {

    .header {
        height: 60px;
    }

    .header__wapper__left {
        gap: 5px;
    }

    .nav {
        position: fixed;
        top: 0;
        left: -110%;
        padding: 50px 0 100px;
        overflow-y: scroll;
        width: 100%;
        height: 100lvh;
        background: #0D2A35;
        z-index: 99990;
        transition: 0.4s;
        transition-timing-function: ease-out;
    }

    .nav.open {
        left: 0;
    }

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

    .menuarea__insta img {
        width: 25px;
        height: 25px;
        filter: brightness(0) invert(1);
    }

    .menu {
        position: relative;
        display: block;
        width: 50px;
        height: 30px;
        z-index: 99999;
    }

    .menu span:nth-child(1) {
        display: block;
        width: 100%;
        height: 1px;
        position: absolute;
        top: 10px;
        left: 0;
        background: #FFFFFF;
        transition: 0.4s;
        transition-timing-function: ease-out;
        transform-origin: center;
    }

    .menu span:nth-child(2) {
        display: block;
        width: 100%;
        height: 1px;
        position: absolute;
        top: 20px;
        left: 0;
        background: #FFFFFF;
        transition: 0.4s;
        transition-timing-function: ease-out;
        transform-origin: center;
    }

    .menu.active span:nth-child(1) {
        top: 15px;
        rotate: 25deg;
    }

    .menu.active span:nth-child(2) {
        top: 15px;
        rotate: -25deg;
    }

    .nav__sp {
        display: block;
    }

    .nav__sp__logo {
        display: block;
        width: 120px;
        margin: 0 auto 10px;
    }

    .nav__sp p {
        font-size: 2rem;
        font-weight: 600;
        color: #FFFFFF;
        margin-bottom: 30px;
    }

    .nav__sp__insta {
        display: block;
        width: 25px;
        height: 25px;
        filter: brightness(0) invert(1);
        margin: 0 auto 50px;
    }

    .nav__ul {
        width: 260px;
        flex-wrap: wrap;
        margin: 0 auto;
    }

    .nav__ul li {
        width: 145px;
        text-align: left;
    }

    .nav__ul li:nth-child(even) {
        width: 100px;
    }

    .nav__ul__li-sp {
        display: none;
    }

    .nav__bottomsp {
        width: 90%;
        display: block;
        padding-top: 30px;
        border-top: solid 1px #FFFFFF;
        margin: 50px auto 0;
    }

    .nav__bottomsp .footer__wapper__right__a {
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .header__wapper__left img {
        width: 50px;
    }

    .header__wapper__left h1 {
        font-size: 1.1rem;
    }

    .menuarea {
        gap: 15px;
    }
}




.footer {
    background: #0D2A35;
    padding: 75px 0 125px;
    color: #FFFFFF;
}

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

.footer__wapper__left {
    width: fit-content;
    text-align: left;
}

.footer__wapper__left__a {
    display: block;
    width: 200px;
}

.footer__wapper__left__flex {
    display: flex;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 20px;
}

.footer__wapper__left__flex h2 {
    font-family: var(--en);
    font-size: 4rem;
    font-weight: 600;
    line-height: 1;
}

.footer__wapper__left__flex a {
    width: 30px;
    margin-bottom: 2.5px;
}

.footer__wapper__left__flex a img {
    filter: brightness(0) invert(1);
}

.footer__wapper__left__text {
    font-size: 1.4rem;
    line-height: 1.8;
    font-weight: 400;
}

.footer__wapper__right {
    width: fit-content;
}

.footer__wapper__right__nav {
    padding-bottom: 25px;
    border-bottom: solid 1px #FFFFFF;
    margin-bottom: 35px;
}

.footer__wapper__right__nav__ul {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer__wapper__right__nav__ul li a {
    font-size: 1.8rem;
    font-family: var(--en);
    font-weight: 600;
}

.footer__wapper__right__a {
    display: flex;
    width: fit-content;
    gap: 25px;
    background: #FFFFFF;
    border: solid 1px #FFFFFF;
    padding: 17px 50px;
    color: #0D2A35;
    margin-left: auto;
    position: relative;
    margin-bottom: 30px;
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%);
}

.footer__wapper__right__a:hover {
    opacity: 1;
    background: #0D2A35;
    color: #FFFFFF;
}

.footer__wapper__right__a::before {
    content: "";
    display: block;
    background: #FFFFFF;
    position: absolute;
    top: -2px;
    left: 7px;
    width: 1px;
    height: 110%;
    rotate: 14.5deg;
}


.footer__wapper__right__a::after {
    content: "";
    display: block;
    background: #FFFFFF;
    position: absolute;
    top: -2px;
    right: 14px;
    width: 1px;
    height: 200%;
    rotate: 14.5deg;
}


.footer__wapper__right__a span {
    font-weight: 600;
}

.footer__wapper__right__a img {
    width: 10px;
    rotate: -90deg;
    transition: 0.4s;
    transition-timing-function: ease-out;
}

.footer__wapper__right__a:hover img {
    filter: brightness(0) invert(1);
}


.footer__wapper__right__ul {
    display: flex;
    gap: 30px;
    justify-content: flex-end;
    margin-bottom: 25px;

}

.footer__wapper__right__ul li a {
    font-size: 1.4rem;
    font-weight: 400;
}

.footer__wapper__right__copy {
    font-size: 1rem;
    font-weight: 400;
    display: block;
    text-align: right;
}


@media (max-width: 767px) {

    .footer {
        padding: 75px 0;
    }

    .footer__wapper {
        flex-direction: column;
        gap: 50px;
    }

    .footer__wapper__left__a {
        width: 150px;
    }

    .footer__wapper__left {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0 auto;
    }

    .footer__wapper__left__flex {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .footer__wapper__right {
        width: 100%;
    }

    .footer__wapper__right__nav__ul {
        width: 90%;
        max-width: 260px;
        margin: 0 auto;
        gap: 15px;
    }

    .footer__wapper__right__nav__ul li {
        width: 145px;
        text-align: left;
    }

    .footer__wapper__right__nav__ul li:nth-child(even) {
        width: 100px;
    }

    .footer__wapper__right__a {
        margin: 0 auto 30px;
    }

    .footer__wapper__right__ul {
        gap: 0;
        justify-content: space-between;
    }

    .footer__wapper__right__ul li a {
        font-size: 1.2rem;
    }

    .footer__wapper__right__copy {
        text-align: center;
    }
}


.contactAria {
    position: fixed;
    top: 80px;
    right: 0;
    z-index: 9999;
}

.contactButton {
    background: #0D2A35;
    writing-mode: vertical-lr;
    width: 80px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0% 100%);
    opacity: 1 !important;
}

.contactButton p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    color: #FFFFFF;
    position: relative;
    z-index: 10;
}

.contactButton::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(150deg, #005d81, #009691);
    z-index: 9;
    transition: 0.4s;
    transition-timing-function: ease-out;
}

.contactButton:hover:before {
    opacity: 0;
}

.contactButton img {
    width: 10px;
}

@media (max-width: 600px) {
    .contactAria {
        top: auto;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 10px 0;
        background-image: linear-gradient(90deg, #005d81, #009691);
        display: flex;
        justify-content: center;
        align-items: center;
        transition: 0.6s;
        transition-timing-function: ease-out;
    }

    .contactAria.hidden {
        bottom: -110%;

    }

    .contactButton {
        position: relative;
        writing-mode: initial;
        height: auto;
        width: auto;
        padding: 20px 40px;
        background: #FFFFFF;
        z-index: 999;
        clip-path: polygon(5% 0%, 100% 0, 95% 100%, 0% 100%);
    }

    .contactButton p {
        color: #0D2A35;
    }

    .contactButton::before {
        background: #FFFFFF;
    }

    .contactButton img {
        filter: invert(1);
        rotate: -90deg;
    }
}

.scroll {
    opacity: 0;
    transition: 0.4s;
    transition-timing-function: ease-out;
    transform: translateY(50px);
}

.scroll.active {
    opacity: 1;
    transform: translateY(0);
}