@charset "utf-8";
/* reset */
#recruit .text ul > li:before {
    content: "";
}
#recruit .text ul {
    margin: 0;
    padding: 0;
}
/* common color */ :root {
    --casio-blue-color: #0a3282;
    --sky-blue-color: #4d70ff;
    --light-blue-color: #f0f3f9;
}
.pc {
    display: block !important;
}
.sp {
    display: none !important;
}
/* common font */
.casio-color {
    color: var(--casio-blue-color) !important;
}
.sky-blue-color {
    color: var(--sky-blue-color);
}
#recruit p {
    color: var(--casio-blue-color);
    font-size: min(4.0vw, 18px);
    line-height: 1.5;
}
#recruit .note {
    font-size: min(3.8vw, 14px);
}
/* common btn */
.white-btn.cmp-button {
    border: solid 2px var(--casio-blue-color);
    border-radius: 19px;
    background-color: #ffffff;
    color: var(--casio-blue-color);
    font-size: min(4vw, 18px);
    font-weight: bold;
    min-width: auto;
    min-height: auto;
    transition: .3s ease-out;
}
.casio-blue-btn.cmp-button {
    border: solid 2px var(--casio-blue-color);
    border-radius: 23px;
    background-color: var(--casio-blue-color);
    color: #ffffff;
    font-size: min(4vw, 18px);
    font-weight: bold;
    min-width: auto;
    min-height: auto;
    transition: .3s ease-out;
}

/* arrow */ :where(.white-btn, .casio-blue-btn).cmp-button {
    position: relative;
    overflow: hidden;
    z-index: 1;
}
:where(.white-btn, .casio-blue-btn).cmp-button::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 80%;
    transform: translateY(-50%);
    transition: .2s ease-out;
    /* triangle */
    border-style: solid;
    border-width: 10px 0 10px 17.3px;
    border-color: transparent transparent transparent var(--casio-blue-color);
}
.casio-blue-btn.cmp-button::after {
    border-color: transparent transparent transparent #ffffff;
}
:where(.white-btn, .casio-blue-btn) {
    padding: 0 65px 0 40px !important;
}
/* slide */ :where(.white-btn, .casio-blue-btn).cmp-button::before {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: .2s ease-out;
    z-index: -1;
}
.casio-blue-btn.cmp-button::before {
    background: #ffffff;
}
.white-btn.cmp-button::before {
    background: var(--casio-blue-color);
}
.casio-blue-btn.cmp-button:hover {
    color: var(--casio-blue-color);
}
.white-btn.cmp-button:hover {
    color: #ffffff;
}
:where(.white-btn, .casio-blue-btn).cmp-button:hover::before {
    transform: scale(1, 1);
}
.casio-blue-btn.cmp-button:hover::after {
    border-color: transparent transparent transparent var(--casio-blue-color);
}
.white-btn.cmp-button:hover::after {
    border-color: transparent transparent transparent #ffffff;
}
/*common-layout*/
[id*="layout"][id*="row"] > .aem-Grid {
    display: flex;
}
[id*="layout"][id*="row"][id*="wrap"] > .aem-Grid {
    display: flex;
    flex-wrap: wrap;
}
[id$="inner"] {
    width: 90%;
    max-width: 1200px;
    margin: min(20vw, 100px) auto;
}
/* header */
.container:has(>.switch-container >#recruit-header) {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 3;
}
#recruit-header {
    background-color: var(--casio-blue-color);
}
.recruit-header__inner {
    width: 90%;
    margin: 10px auto !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.entry-nav__grp {
    display: flex;
    align-items: center;
}
.logo {
    font-size: min(4.0vw, 30px);
    font-weight: bold;
}
.logo a {
    text-decoration: none;
    color: #ffffff;
}
.entry-contents {
    display: flex;
    margin-right: 20px !important;
}
.entry-btn.entry-btn-aco {
    background: none;
    padding: 0;
}
.entry-btn.entry-btn-aco:hover {
    opacity: 1.0;
}
.entry-btn-aco-btn {
    display: none;
}
.entry-btn {
    background-color: #ffffff;
    font-size: min(4vw, 20px);
    font-weight: bold;
    border-radius: 24px;
    margin-right: 10px;
    text-decoration: none;
    padding: 10px 50px;
    transition: .3s ease-out;
    color: var(--casio-blue-color);
    white-space: nowrap;
}
.entry-btn.sky-blue {
    background-color: var(--sky-blue-color);
    color: #ffffff;
}
.entry-btn:hover {
    opacity: .8;
}
/* #nav-btn */
#nav-btn {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border: none;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
}
#nav-btn span, #nav-btn span::before, #nav-btn span::after {
    content: "";
    position: absolute;
    width: 25px;
    height: 3px;
    background: var(--casio-blue-color);
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s; /* アニメーション用 */
}
/* 上の線 (疑似要素) */
#nav-btn span::before {
    top: -8px; /* 上にずらす */
    left: 0;
    transform: none;
}
/* 真ん中の線 */
#nav-btn span {
    top: 50%;
    transform: translate(-50%, -50%);
}
/* 下の線 (疑似要素) */
#nav-btn span::after {
    top: 8px; /* 下にずらす */
    left: 0;
    transform: none;
}
/* 真ん中の線を透明にする */
#nav-btn.is-open span {
    background: transparent;
}
/* close */
#nav-btn.is-open span::before {
    top: 0;
    transform: rotate(45deg);
}
#nav-btn.is-open span::after {
    top: 0;
    transform: rotate(-45deg);
}
#recruit-nav__wrapper > .aem-Grid {
    position: relative;
}
/* 内容 */
.container:has(>.switch-container >#recruit-nav-content) {
    position: absolute;
    top: 75px;
    left: 0;
    width: 100vw;
}
#recruit-nav-content {
    --nav-acc-height: 0;
    max-height: 0;
    overflow: hidden;
    transition: .3s ease-out;
}
#recruit-nav-content.is-open {
    max-height: var(--nav-acc-height);
}
#recruit .recruit-contents {
    background-color: var(--casio-blue-color);
    transform: translateY(-1px);
    padding: 50px 20px;
}
#recruit .recruit-contents__inner {
    width: 90%;
    display: flex;
    justify-content: center;
    gap: 50px;
}
#recruit .recruit-contents__inner :where(li, a) {
    color: #ffffff;
}
#recruit .recruit-contents__inner .recruit-contents__title a {
    font-size: min(4vw, 20px);
    text-decoration: none;
}
#recruit .recruit-contents__title {
    font-weight: bold;
    border: solid 2px #ffffff;
    border-radius: 23px;
    padding: 4px 20px;
    margin-bottom: 1rem;
    width: fit-content;
    min-width: 135px;
    text-align: center;
}
#recruit .recruit-page-contents {
    padding-left: 1rem !important;
}
/*title*/
#title {
    margin: 70px 0;
}
.main-title {
    position: relative;
}
#title .category-name {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-weight: bold;
    font-size: min(4vw, 24px) !important;
    color: var(--casio-blue-color);
    margin-bottom: 0;
}
#title h1 {
    font-size: min(20vw, 150px);
    padding: 0;
    text-align: center;
    line-height: 1.2;
    color: var(--casio-blue-color);
}
#title .sub-title {
    position: absolute;
    bottom: -10%;
    left: 50%;
    transform: translate(-50%);
    font-weight: bold;
    border: solid 3px var(--casio-blue-color);
    border-radius: 28px;
    color: var(--casio-blue-color);
    padding: 10px 60px;
    margin: 0 auto;
    text-align: center;
    display: block;
    width: fit-content;
    background-color: #ffffff;
    font-size: min(4vw, 20px) !important;
}
@media (max-width: 767px) {
    .pc {
        display: none !important;
    }
    .sp {
        display: block !important;
    }
    #recruit-nav-content.is-open {
        max-height: 100vh;
    }
    #recruit-header .logo {
        padding-top: 15px;
    }
    #recruit-header .entry-nav__grp {
        align-items: flex-start;
        position: relative;
    }
    #recruit-header .entry-nav__grp > li:first-child {
        position: absolute;
        top: 0;
        right: 100%;
        z-index: 1;
    }
    #recruit-header .recruit-header__inner {
        align-items: flex-start;
        position: relative;
    }
    #recruit-header .entry-btn {
        background-color: transparent;
        padding: 0;
        margin: 0;
    }
    #recruit-header .entry-btn.sky-blue {
        background-color: transparent;
        color: var(--casio-blue-color);
    }
    #recruit-header .entry-btn.entry-btn-aco {
        margin: 10px;
        background-color: #ffffff;
        padding: 1vw 5vw;
        border: solid 2px var(--casio-blue-color);
    }
    #recruit-header .entry-btn.entry-btn-aco.is-open {
        border-radius: 15px;
    }
    #recruit-header .entry-btn-aco-btn {
        display: block;
    }
    /* アイコン */
    #recruit-header .icon-plus {
        margin-left: 10vw;
        transform: translateY(2px);
        position: relative;
        width: 16px;
        height: 16px;
        display: inline-block;
    }
    #recruit-header .icon-plus::before, .icon-plus::after {
        content: "";
        position: absolute;
        background-color: var(--casio-blue-color);
        transition: transform 0.3s, opacity 0.3s;
    }
    #recruit-header .icon-plus::before {
        width: 100%;
        height: 2px;
        top: 7px;
        left: 0;
    }
    #recruit-header .icon-plus::after {
        width: 2px;
        height: 100%;
        top: 0;
        left: 7px;
    }
    #recruit-header .is-open .icon-plus::after {
        transform: rotate(90deg);
    }
    #recruit-header .entry-contents {
        margin-right: 0 !important;
        display: flex;
        flex-direction: column;
        max-height: 0;
        overflow: hidden;
        transition: .5s ease-out;
    }
    #recruit-header .entry-contents.is-open {
        max-height: 100px;
    }
    #recruit .recruit-contents__inner {
        width: 90%;
        margin: 0 auto !important;
        flex-direction: column;
        gap: 20px;
    }
    .recruit-page-contents {
        display: flex;
        flex-wrap: wrap;
        gap: 0px 20px;
    }
    #title .sub-title {
        bottom: -1em;
        padding: .1em 2em;
    }
}

