/*
Theme Name: Recruitment Site
Theme URI: https://github.com/jeffreyvr/tailpress
Author: Jeffrey van Rossum
Author URI: https://vanrossum.dev
Description: A WordPress theme made with TailPress.
Version: 1.0.0
License: MIT
License URI: https://github.com/jeffreyvr/tailpress/blob/master/LICENSE
Text Domain: recruitment_site
*/
@font-face {
    font-family: holland;
    src: url('assets/fonts/holland.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
body {
    color: #333;
    font-family: Noto Sans JP, sans-serif;
    font-size: 14px;
    line-height: 1.75rem;
    word-break: auto-phrase;
}
body main{
    overflow-x: clip;
}
a {
    text-decoration: none;
}
/* a:hover {
    opacity: 0.8;
} */


/* Header */
.c-header {
    height: auto;
    left: 0;
    position: fixed;
    top: 40px;
    transition: all .3s;
    width: 100%;
    z-index: 100000;
}
.c-header__inner {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin: 0 40px;
    width: calc(100% - 80px);
    background-color: #fff;
    padding: 10px 24px;
    box-shadow: 0px 2px 20px rgba(5, 48, 0, 0.1);
    border-radius: 110px;
}
.c-header__inner .c-header__logo {
    position: relative;
    z-index: 100;
}
.c-header__inner .c-header__logo a {
    display: block;
}
.c-header__inner .c-header__logo img {
    width: auto;
    min-width: 140px;
    max-width: 264px;
    height: 66px;
    object-fit: contain;
    object-position: left;
}
.c-header__inner .c-header__menu {
    width: auto;
    align-items: center;
    display: flex;
    gap: 80px;
    justify-content: flex-end;
    position: static;
    padding-left: 38px;
}
.c-header__inner .c-header__menu .c-header-menu__main {
    right: 0;
    top: 0;
    transition: transform .3s;
    height: auto;
    overflow: visible;
    padding: 0;
    position: static;
    transform: none;
    width: auto;
}
.c-global-navigation {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    flex-direction: row;
    justify-content: flex-end;
    margin: 0;
    max-width: none;
    column-gap: 80px;
    row-gap: 10px;
}
.c-global-navigation li {
    transition: all .3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: none;
    padding: 0;
    width: auto;
}
.c-global-navigation li a:hover {
    opacity: 0.8;
}
.c-header__inner .c-header__menu .c-header__requirement a {
    padding: 20px 60px;
    border-radius: 80px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #FFFFFF;
}
.c-header__inner .c-header__menu .c-header-drawer {
    aspect-ratio: 21 / 11;
    position: relative;
    width: 40px;
}
.c-header__inner .c-header__menu .c-header-drawer span {
    background-color: #fff;
    height: 4px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: opacity .3s, transform .3s;
    width: 100%;
    border-radius: 9999px;
}
.c-header__inner .c-header__menu .c-header-drawer span:first-child {
    transform: translate(-50%, calc(-50% - 10px));
}
.c-header__inner .c-header__menu .c-header-drawer span:last-child {
    transform: translate(-50%, calc(-50% + 10px));
}

/* Footer */
.c-footer {
    background-color: #fff;
    padding: 20px 0 8px;
    border-top: 1px solid #EAEAEA;
}
.c-footer__inner {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
}
.c-footer__inner .c-footer__contents {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}
.c-footer__inner .c-footer__contents .c-footer__logo a img {
    width: 140px;
    height: 66px;
    object-fit: contain;
}
.c-footer__inner .c-footer__contents .c-footer-navigation {
    display: flex;
    flex-wrap: wrap;
    column-gap: 60px;
    row-gap: 30px;
}
.c-footer__inner .c-footer__contents .c-footer-navigation li {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.c-footer-other__cr {
    font-size: 10px;
    line-height: 200%;
    text-align: center;
    letter-spacing: 0.28px;
    color: #333;
}
#back_to_top_btn .on {
    display: none;
}
#back_to_top_btn:hover .off {
    display: none;
}
#back_to_top_btn:hover .on {
    display: block;
}

ol.breadcrumb {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
    font-size: 13px;
    line-height: 16px;
    letter-spacing: 0.1em;
    color: #333333;
}
ol.breadcrumb li {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
ol.breadcrumb li a:hover {
    color: rgba(51, 51, 51, 0.5);
}
ol.breadcrumb li.item::after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: rgba(51, 51, 51, 0.5);
    -webkit-mask: url(/wp-content/themes/recruitment-site/assets/icon/chevron_right_black_24dp.svg) no-repeat center/cover;
    mask: url(/wp-content/themes/recruitment-site/assets/icon/chevron_right_black_24dp.svg) no-repeat center/cover;
}
ol.breadcrumb li.item-last {
    color: rgba(51, 51, 51, 0.5);
}

@media screen and (max-width: 1439px) {
    .c-global-navigation {
        column-gap: 40px;
    }
    .c-header__inner .c-header__menu {
        padding-left: 20px;
    }
    .c-header__inner .c-header__menu .c-header__requirement a {
        padding: 20px 40px;
        font-size: 20px;
    }
}

@media screen and (max-width: 959px) {
    .c-header {
        top: 0;
    }
    .c-header__inner {
        width: 100%;
        background: none;
        padding: 16px 10px;
        margin: 0;
        box-shadow: none;
    }
    .c-header__inner .c-header__logo img {
        height: 42px;
        filter: brightness(0) invert(1);
    }
    .c-header__inner .c-header__menu {
        min-width: unset;
        max-width: unset;
        padding-left: 0;
    }
    .c-header__inner .c-header__menu .c-header-menu__main {
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        padding: 80px 0;
    }
    .c-global-navigation {
        flex-direction: column;
        gap: 0;
        width: 86%;
        margin: 0 auto;
    }
    .c-global-navigation li {
        flex-direction: row;
        gap: 8px;
        width: 100%;
        padding: 24px 0 22px;
        border-bottom: 1px solid #fff;
    }
    .c-header__inner .c-header__menu .c-header__requirement {
        display: block;
        text-align: center;
        border: none;
        margin-top: 50px;
        padding: 0;
    }
    .c-header__inner .c-header__menu .c-header__requirement a {
        display: block;
        width: 100%;
        border: 1px solid #fff;
    }

    .c-header.is-fixed {
        background-color: #fff;
    }
    .c-header.is-fixed .c-header__inner .c-header__logo img {
        filter: none;
    }

    .c-footer {
        padding: 15px;
    }
    .c-footer__inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .c-footer__inner .c-footer__contents {
        margin: 0;
    }
    .c-footer__inner .c-footer__contents .c-footer__logo a img {
        width: 86px;
        height: 40px;
        object-fit: contain;
    }
    .c-footer__inner .c-footer__contents .c-footer-navigation {
        display: none;
    }
    .c-footer-other__cr {
        font-size: 8px;
        line-height: 250%;
        letter-spacing: 0.28px;
    }    
}

/* Pagination */
.navigation .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.navigation .nav-links .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(51, 51, 51, 0.2);
    border-radius: 17.5px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    text-transform: uppercase;
    color: rgba(51, 51, 51, 0.4);
}
.navigation .nav-links a:hover {
    opacity: 0.8;
}

.interview__contents .slick-prev, .interview__contents .slick-next {
    z-index: 1;
    width: 98px;
    height: 98px;
}
.interview__contents .slick-prev {
    left: 40px;
}
.interview__contents .slick-prev::before {
    content: none;
}
.interview__contents .slick-next {
    right: 40px;
}
.interview__contents .slick-next::before {
    content: none;
}
@media screen and (max-width: 781px) {
    .interview__contents .slick-prev, .interview__contents .slick-next, .interview__contents svg {
        width: 49px;
        height: 49px;
    }
    .interview__contents .slick-prev {
        left: 0;
    }
    .interview__contents .slick-next {
        right: 0;
    }
}