@import 'variables.css';

/* header */
.c-header {
    width: 100%;
    background-color: var(--accent-color-pale);
}

.c-header-nav-container {
    margin: 0 auto;
    padding: 0 24px;
}

.c-header-container {
    display: flex;
    align-items: center;
    height: 88px;
}

.c-header-logo {
    max-width: 320px;
    mix-blend-mode: multiply;
    margin-right: auto;
}

.c-header-menu-sp {
    display: none;
}

.c-header-nav {
    display: flex;
    gap: 36px;
}

.c-header-nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 700;
    font-size: 14px;
}

.c-header-nav-link:hover {
    color: var(--main-color);
}

@media (max-width: 1279px) {
    .c-header {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1;
    }

    .c-header-nav {
        display: none;
    }

    .c-header-nav.is-show {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin-top: 40px;
    }

    .c-header-nav.is-show .c-header-nav-link {
        font-size: 2.4vw;
        color: var(--color-white);
    }

    .c-header-container.is-show {
        width: 100%;
        height: 100vh;
        position: fixed;
        flex-direction: column;
        align-items: flex-start;
        left: 0;
        top: 0;
        background-color: var(--main-color);
    }

    .c-header-container.is-show .c-header-menu-sp {
        display: flex;
        max-width: 1038px;
        margin: 0 auto;
        width: 100%;
        height: 88px;
        align-items: center;
    }

    .c-header-nav-container {
        padding: 0 24px;
    }

    .c-header-menu-sp {
        display: block;
    }

    .c-header-menu-hamburger.is-hide {
        display: none;
    }

    .c-header-logo.is-hide {
        display: none;
    }

    .c-header-menu-close {
        display: none;
        margin-left: auto;
    }
    .c-header-menu-close.is-show {
        display: block;
    }

}

@media (max-width: 1179px) {
    .c-header {
        height: 60px;
    }

    .c-header-nav-container {
        max-width: 328px;
        padding: 0;
    }

    .c-header-container {
        height: 60px;
    }

    .c-header-logo {
        max-width: 164px;
    }

    .c-header-container.is-show .c-header-menu-sp {
        max-width: 328px;
        height: 60px;
    }
    .c-header-nav.is-show .c-header-nav-link {
        font-size: 20px;
    }
}


/* article-title */
.c-article-title {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding-top: 68px;
    padding-bottom: 40px;
}

.c-article-title-en {
    color: rgba(153, 82, 94, 0.80);
    font-family: Montserrat, sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 120%;
}

.c-article-title-ja {
    color: var(--main-color);
    font-size: 20px;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: 4px;
}

@media (max-width: 1179px) {
    .c-article-title {
        padding-top: 40px;
        padding-bottom: 24px;
    }

    .c-article-title-en {
        font-size: 28rem;
    }

    .c-article-title-ja {
        font-size: 16rem;
    }
}


/* text */
.c-text-bold {
    font-weight: 700;
}

.c-text-link {
    color: var(--link-color);
}

.c-text-link:hover {
    color: var(--link-color-hover);
}


/* footer */
.footer {
    color: var(--color-white);
    background-color: var(--main-color);
}

.footer_container-inner {
    display: flex;
    align-items: center;
    font-size: 12rem;
    height: 72px;
    gap: 20px;
}

.footer-hr {
    display: block;
    width: 1px;
    height: 16px;
    background-color: var(--color-white);
}

.footer_link {
    color: var(--color-white);
    text-decoration: none;
}

.footer_link:hover {
    text-decoration: underline;
}

@media (max-width: 1179px) {
    .footer_container-inner {
        height: 136px;
        flex-direction: column;
        justify-content: center;
        gap: 12px;
    }

    .footer-hr {
        height: 1px;
        width: 16px;
    }
}