/* fonts */
@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');
@import url(./top.css);
@import url(./page.css);
@import url(./single_post.css);
@import url(./news_archive.css);
@import url(./careers.css);
@import url(./q_and_a.css);
@import url(./mens_recruit.css);
@import url(./join_our_team.css);
@import url(./staff_voice.css);
@import url(./single_staff_voice.css);
@import url(./responsive.css);
@import url(./breadcrumb.css);

/* root */
:root {
    --main-font-color: #000;
    --sub-font-color: #fff;
    --header-bg-color: #fff;
    --footer-bg-color: #000;
    --footer-menu-border: #9F9F9F;
    --footer-copyright-color: #D2D2D2;
    --poppins-font-family: "Poppins";
}
/* body */
body {
    color: var(--main-font-color);
    font-family: var(--poppins-font-family), "Noto Sans JP";
}
/* header */
.l-header {
    position: fixed;
    width: 100%;
    background-color: var(--header-bg-color);
    justify-content: space-between;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-inline: 50px;
    padding-block: 20px;
    z-index: 2;
}
a {
    position: relative;
    overflow: hidden;
    display: inline-block;
    transition: 0.3s;
}
a img {
    transition: 0.3s;
}
a:hover img {
    opacity: 0.8;
}
@media screen and (max-width: 1200px) {
    .l-header {
        padding-inline: 20px;
    }
}
.l-header__gnav-body__pc {
    display: block;
}
@media screen and (max-width: 1024px) {
    .l-header {
        padding-block: 10px;
        box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.1);
    }
    .l-header__gnav-body__pc {
        display: none;
    }
}
.l-header .header-pc-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}
@media screen and (max-width: 1200px) {
    .l-header .header-pc-nav {
        gap: 30px;
    }
}
.l-header__title--text {
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    width: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
}
.l-header .header-pc-nav .menu-item a {
    font-weight: bold;
    /* font-size: 18px; */
    font-size: clamp(13px, 1.2vw, 18px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.menu-item a span::after {
    position: absolute;
    content: '';
    left: -100%;
    bottom: 1.8em;
    width: 100%;
    height: 1px;
    background-color: #000;
    transition: 0.3s;
}
.menu-item a:hover span::after {
    left: 0;
}
.l-header .header-pc-nav .menu-item a span {
    display: inline-block;
    font-size: 12px;
    font-weight: normal;
}
.l-header .l-header__logo {
    max-width: 60px;
    height: 60px;
}
/* footer */
.l-footer__body.pc {
    display: block;
}
@media screen and (max-width: 768px) {
    .l-footer__body.pc {
        display: none;
    }
}
.l-footer__gnav-container__inner .footer-pc-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    background-color: #fff;
    padding-block: 20px;
    padding-inline: 20px;
}
.l-footer__gnav-container__inner .footer-pc-nav li:not(:nth-child(1)) {
    padding-left: 18px;
    position: relative;
}
.l-footer__gnav-container__inner .footer-pc-nav li a {
    color: var(--main-font-color);
    font-weight: bold;
    display: flex;
    flex-direction: column-reverse;
    text-align: center;
    line-height: 1.3;
    font-size: 10px;
}
.l-footer__gnav-container__inner .footer-pc-nav li a span::after {
    bottom: 1em;
}
.l-footer__gnav-container__inner .footer-pc-nav li a .menu-description {
    font-size: 12px;
}

.l-footer__gnav-container__inner .footer-pc-nav li:not(:nth-child(1))::after {
    position: absolute;
    content: "";
    top: 25%;
    left: 0;
    width: 1px;
    height: 16px;
    background-color: var(--footer-menu-border);
}
.l-footer__title-body {
    background-color: var(--footer-bg-color);
}
.l-footer__title-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-block: 20px;
}
.l-footer-logo {
    max-width: 60px;
}
.l-footer-copy {
    font-size: 10px;
    color: var(--footer-copyright-color);
}
.l-front-page-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: transparent;
    z-index: 1;
}
.l-front-page-footer {
    padding-bottom: 40px;
}
.l-front-page-footer__copyright {
    font-size: 10px;
    font-weight: normal;
    color: #fff;
}
.l-return-top__wrap {
    position: fixed;
    bottom: 7%;
    right: 5%;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}
.l-return-top__wrap.is-show {
    opacity: 1;
    visibility: visible;
}
.l-return__button {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}
/* index */
body.home .l-header,
body.home .l-footer {
    display: none;
}
body.home .l-wrap {
    position: relative;
    overflow: hidden;
}
.l-content__top .l-main {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
}
.l-content__top .l-main .l-image__box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center center;
    transition: 0.2s ease-in-out;
}
.l-image__box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    transform: scale(1.2);
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease-out;
}
.l-image__box img.is-show{
    opacity: 1;
    animation: indexBgAnime 6s forwards ease-out;
}
@keyframes indexBgAnime {
    from {
        transform: scale(1.0);
    }
    to {
        transform: scale(1.2);
    }
}
.l-content__top .l-main .l-image__box::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url('../img/index/dot.png');
    background-repeat: repeat;
    background-position: center center;
}
.l-content__top .l-main .l-verification__box {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
}
@media screen and (max-width: 768px) {
    .l-content__top .l-main .l-verification__box {
        width: 100%;
        padding-inline: 20px;
    }
}
.l-verification__logo {
    text-align: center;
}
.l-verification__logo img {
    vertical-align: bottom;
}
.l-verification__descriotion {
    text-align: center;
    color: var(--sub-font-color);
    margin-block: 25px;
    font-weight: bold;
}
.l-verification__descriotion .sp_br {
    display: none;
}
@media screen and (max-width: 768px) {
    .l-verification__descriotion .sp_br {
        display: block;
    }
}
.l-verification__button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
}
.l-verification__button a::before {
    position: absolute;
    content: '';
    top: 0;
    left: -100%;
    height: 100%;
    width: 100%;
    background-color: #fff;
    transition: 0.3s;
    z-index: -1;
}
.l-verification__button a:hover {
    color: #000;
}
.l-verification__button a:hover::before {
    left: 0;
}
.l-verification__button .l-verification__button--enter,
.l-verification__button .l-verification__button--leave {
    border: 1px solid #fff;
}
.l-verification__button div a {
    font-weight: bold;
    color: var(--sub-font-color);
    padding-block: 5px;
    padding-inline: 24px;
    display: flex;
}
@media  screen and (max-width: 768px) {
    .l-content__top .l-main .l-image__box {
        background-size: 100%;
    }
    .l-verification__button {
        display: grid;
        gap: 0;
    }
    .l-verification__button--logo {
        text-align: center;
        order: -1;
        margin-bottom: 20px;
    }
    .l-verification__button--enter a,
    .l-verification__button--leave a {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 200px;
        height: 40px;
    }
    .l-verification__button--leave {
        margin-top: 10px;
    }
}