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

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

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

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

img,
source {
    width: 100%;
}

.br {
    display: inline-block;
}

.header {
    position: fixed;
    width: 100%;
    height: 90px;
    top: 0;
    left: 0;
    z-index: 99999;
    background: #005294;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
}

.header::before {
    content: "";
    position: absolute;
    left: 60%;
    top: 0;
    width: 40%;
    height: 100%;
    z-index: 1;
    background: #FFFFFF;
    clip-path: polygon(5% 0%, 100% 0, 100% 100%, 0% 100%);
}

.header::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 60%;
    height: 100%;
    z-index: 1;
}

.header__wapper {
    position: relative;
    z-index: 10;
    width: 95%;
    height: 100%;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__left {
    display: flex;
    align-items: center;
    gap: 50px;
    color: #FFFFFF;
    text-align: left;
}

.header__left__h1 {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.7;
    letter-spacing: 0.6px;
}

.header__left__p {
    font-size: 1.4rem;
    line-height: 1.8;
    letter-spacing: 1px;
}

.header__right {
    display: flex;
    align-items: center;
}

.header__right__content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header__right__content__p {
    font-weight: 700;
}

.header__right__content__a {
    display: flex;
    align-items: flex-end;
    position: relative;
    z-index: 10;
}

.header__right__content__a p {
    font-size: 4.8rem;
    font-weight: 700;
    color: #FF5100;
    line-height: 1;
}

.header__right__content__a img {
    width: 65px;
}

.header__right__content__image {
    width: auto;
    height: 80px;
    margin-top: 10px;
    margin-right: -20px;
    margin-left: -20px;
}


@media (max-width: 1280px) {

    .header__left {
        gap: 25px;
    }

    .header__left__h1 {
        font-size: 1.8rem;
    }

    .header__left__p {
        font-size: 1rem;
    }

    .header__right__content__p {
        font-size: 1.4rem;
    }

    .header__right__content__a img {
        width: 50px;
    }

    .header__right__content__a p {
        font-size: 3.4rem;
    }
}


@media (max-width: 1024px) {

    .header {
        height: 80px;
    }

    .header__right {
        position: fixed;
        top: 90px;
        right: 0;
        padding: 0 25px;
        background: #FFFFFF;
        z-index: 10000;
        border-radius: 10px 0 0 10px;
        filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
    }

    .header::before {
        content: none;
    }

    .header__left__p {
        font-size: 1.2rem;
    }

    .header__left {
        width: 100%;
        justify-content: space-between;
    }

    .header__right__content__image {
        height: 60px;
    }

    .header__right__content__p {
        font-size: 1.3rem;
    }

    .header__right__content__a img {
        width: 40px;
    }

    .header__right__content__a p {
        font-size: 2.8rem;
    }
}


@media (max-width: 767px) {

    .header {
        height: 60px;
    }

    .header__left__h1 {
        font-size: 1.2rem;
        width: 190px;
    }

    .header__left__p {
        font-size: 0.8rem;
        flex: 1;
        line-height: 1.5;
    }

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

    .header__right {
        top: 70px;
        padding: 0 30px 0 15px;
    }

    .header__right__content__p {
        font-size: 0.8rem;
    }

    .header__right__content__a img {
        width: 24px;
    }

    .header__right__content__a p {
        font-size: 1.8rem;
    }

    .header__right__content__image {
        height: 40px;
        margin-left: -15px;
    }
}




.footer {
    background: #005294;
    padding: 25px 0 25px;
    color: #FFFFFF;
}

.footer__wapper {
    position: relative;
    width: 90%;
    max-width: 1440px;
    margin: 0 auto;
}

.footer__wapper h2 {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    text-align: left;
}

.footer__wapper p {
    font-size: 1.2rem;
    letter-spacing: 0.2rem;
    margin-bottom: 10px;
}

.footer__wapper a {
    display: block;
    width: fit-content;
    margin: 0 auto 30px;
    text-decoration: underline;
    font-size: 1.2rem;
    letter-spacing: 0.2rem;
}

.footer__wapper small {
    display: block;
    font-size: 1.2rem;
}

@media (max-width: 1024px) {
    .footer__wapper h2 {
        position: static;
        width: fit-content;
        margin: 20px auto 30px;
    }
}

@media (max-width: 767px) {
    .footer__wapper h2 {
        margin-left: 0;
    }

    .footer__wapper small {
        font-size: 1rem;
    }
}