body {
    padding-top: 92px;
    overflow-x: hidden;
}
body,p,h1,h2,h3,h4,h5,h6 {
    /* 16->14px */
    font-size: clamp(0.875rem, 0.831rem + 0.19vw, 1rem);
    color: var(--colorBlack);
    font-family: var(--font-jp);
    line-height: 1.80;
    letter-spacing: 0.1em;
    font-weight: 500;
    font-family: var(--font-zenkaku-gothic);
}
a {
    color: var(--colorBlack);
}

.header {
    height: 92px;
    background-color: #FFFAF0;
    position: fixed;
    top: 0;
    z-index: 999;
    width: 100%;
}
.header__inner {
    height: inherit;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}
.header__logo-company {
    width: 180px;
}
.header__logos {
    display: flex;
    align-items: center;
    gap: 16px;
}
.header__text {
    font-size: 10px;
    letter-spacing: .1em;
}
.header__logo {
    width: 52.8px;
    display: block;
}
.header__logo-hiryu {
    height: 52.8px;
    width: auto;
    gap: 4px;
}
.logo-flex {
    display: flex;
    align-items: center;
}
.header__buttons {
    display: flex;
    gap: 24px;
}



@media (max-width:1000px) {
    .logo-flex,
    .header__text {
        display: none;
    }
}
@media (max-width:767px) {
    body {
        padding-top: 0;
    }
    .header {
        display: none;
    }
}

/* ================== */
/* footer */
/* ================== */
.footer {
    background-color: #fff;
    padding: 40px 0;
    border-bottom: 4px solid var(--colorRead-theme);
}
.footer__inner {
    display: flex;
    justify-content: space-between;
}
.footer__logos {
    display: flex;
    gap: 21.84px;
}
.footer__logos img {
    width: 109px;
}
.footer-head__text:first-of-type {
    margin-top: 16px;
}
.footer-head__text + .footer-head__text {
    margin-top: 4px;
}

.footer__bottom {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.footer__privacy-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}
.icon-privacy {
    width: 80px;
}
.footer-bottom__text-s {
    font-size: 12px;
}
.copyright {
    font-size: 12px;
    line-height: 1.4;
    text-align: right;
}
@media (max-width:767px) {
    .footer__inner {
        display: block;
    }
    .footer__head {
        width: fit-content;
        margin: 0 auto;
    }
    .footer__logos {
        justify-content: center;
    }
    .footer__logos img {
        width: 64px;
    }
    .footer__privacy-wrapper {
        justify-content: center;
        margin-top: 40px;
    }
    .icon-privacy {
        width: 54px;
    }
    .copyright {
        text-align: center;
        margin-top: 40px;
    }
}
