/* ===== State: typewriter reveal ===== */
.is-typed{
    opacity:1;
}
/* ===== Utility: visually hidden ===== */
.c-sr-only{
    position:absolute;
    width:1px;
    height:1px;
    padding:0;
    margin:-1px;
    overflow:hidden;
    clip:rect(0,0,0,0);
    white-space:nowrap;
    border:0;
}
/* ===== Page head (shared across pages) ===== */
.c-page-head{
    padding:100px 0 50px;
    border-bottom:1px solid var(--c-blue);
}
.c-page-head__inner{
    max-width: 1242px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.c-page-head__title{
    display:flex;
    flex-direction:column;
    gap:20px;
    color:var(--c-blue);
}
.c-page-head__label{
    font-family:var(--f-en);
    font-weight:500;
    font-size:1.25rem;
    text-transform:uppercase;
    line-height: 1;
}
.c-page-head__label:not(.is-typed){
    opacity:0;
}
.c-page-head__ttl{
    font-family:var(--f-serif);
    font-weight:600;
    font-size:2.5rem;
    line-height: 1;
}
.c-page-head__ttl:not(.is-typed){
    opacity:0;
}
.c-page-head__lead{
    font-family:var(--f-serif);
    font-weight:500;
    font-size:1.875rem;
    line-height:1.53;
    color:var(--c-black);
}
@media(min-width:1440px){
    .c-page-head{
        padding:6.944vw 0 3.472vw;
    }
    .c-page-head__inner{
        max-width: 86.25vw;
    }
    .c-page-head__label{
        font-size:1.389vw;
    }
    .c-page-head__ttl{
        font-size:2.778vw;
    }
    .c-page-head__lead{
        font-size:2.083vw;
    }
}
@media(min-width:896px) and (max-width:1400px){
    .c-page-head__inner{
        padding-left: 40px;
        padding-right: 40px;
    }
}
@media(max-width:896px){
    .c-page-head__inner{
        gap: 30px;
    }
    .c-page-head{
        gap:30px;
        padding:50px 20px 30px;
    }
    .c-page-head__title{
        gap:15px;
    }
    .c-page-head__label{
        font-size:0.875rem;
    }
    .c-page-head__ttl{
        font-size:1.75rem;
    }
    .c-page-head__lead{
        font-size:1rem;
        line-height:1.5;
    }
}
/* ===== Button (outline / fill sweep) ===== */
.c-btn-line{
    position:relative;
    overflow:hidden;
    isolation:isolate;
    display:flex;
    align-items:center;
    justify-content:space-between;
    width:100%;
    max-width:362px;
    height:70px;
    font-family:var(--f-serif);
    font-size:1rem;
    font-weight:500;
    color:var(--c-blue);
    line-height:1;
    padding:0 20px;
    border:1px solid var(--c-blue);
    transition:color .35s var(--ease);
}
.c-btn-line::before{
    content:'';
    position:absolute;
    inset:0;
    z-index:-1;
    background:var(--c-blue);
    transform:scaleX(0);
    transform-origin:left;
    transition:transform .35s var(--ease);
}
.c-btn-line img{
    transition:filter .35s var(--ease);
}
.c-btn-line:is(:hover, :focus-visible){
    color:var(--c-white);
}
.c-btn-line:is(:hover, :focus-visible)::before{
    transform:scaleX(1);
}
.c-btn-line:is(:hover, :focus-visible) img{
    filter: var(--filter-white);
}
.c-btn-line:focus-visible{
    outline:none;
    box-shadow:inset 0 0 0 2px var(--c-blue);
}
.c-btn-line--light{
    color:var(--c-white);
    border-color:rgba(255,255,255,.5);
}
.c-btn-line--light::before{
    background:var(--c-white);
}
.c-btn-line--light:is(:hover, :focus-visible){
    color:var(--c-blue);
}
.c-btn-line--light:is(:hover, :focus-visible) img{
    filter: brightness(0) saturate(100%) invert(16%) sepia(40%) saturate(4143%) hue-rotate(200deg) brightness(96%) contrast(93%);
}
.c-btn-line--light:focus-visible{
    box-shadow:inset 0 0 0 2px var(--c-white);
}
@media(min-width:1440px){
    .c-btn-line{
        max-width:25.139vw;
        height:4.861vw;
        font-size:1.111vw;
        padding:0 1.389vw;
    }
}
@media(max-width:896px){
    .c-btn-line{
        font-size: 14px;
        height:62px;
    }
}
/* ===== Footer ===== */
.l-footer{
    background:var(--c-blue);
    color:var(--c-white);
    position:relative;
    z-index:10;
}
.l-footer__inner{
    max-width:1440px;
    margin:0 auto;
    padding:50px 100px;
}
.l-footer__top{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    margin-bottom:30px;
}
.l-footer__logo-link{
    display:flex;
    justify-content: center;
    align-items: center;
    gap:10px;
}
.l-footer__logo img{
    width:160px;
    height:auto;
}
.l-footer__logo-label{
    font-family:var(--f-en);
    font-weight:700;
    font-size:0.625rem;
    color:var(--c-white);
}
.l-footer__nav-list{
    display:flex;
    flex-wrap:wrap;
    gap:10px 32px;
    justify-content:flex-end;
}
.l-footer__nav-list a{
    font-size:0.875rem;
    font-weight:500;
    color:var(--c-white);
    position: relative;
    padding-bottom: 2px;
}
.l-footer__nav-list a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s var(--ease);
}
.l-footer__nav-list a:is(:hover, :focus-visible)::after{
    transform: scaleX(1);
}
.l-footer__bottom{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    flex-wrap:wrap;
}
.l-footer__corp{
    display:flex;
    gap:2rem;
    flex-wrap:wrap;
}
.l-footer__corp li {
    position:relative;
    font-size:0.875rem;
    line-height:1;
}
.l-footer__corp li:not(:first-child)::before {
    content: '';
    display: block;
    width: 1px;
    height: 100%;
    position: absolute;
    left: -1rem;
    top: 0;
    background: var(--c-white);
    z-index: 1;
}
.l-footer__corp a{
    color:var(--c-ivory);
    text-underline-offset:3px;
}
.l-footer__corp a:is(:hover, :focus-visible){
    text-decoration:underline;
}
.l-footer__copy{
    font-size:0.875rem;
    line-height:1;
    color:var(--c-ivory);
}
.l-footer__sp-navi{
    display:none;
}
@media(min-width:1024px) and (max-width:1400px) {
    .l-footer__top{
        margin-bottom:2.143vw;
    }
    .l-footer__logo-link{
        gap:0.714vw;
    }
    .l-footer__logo img{
        width:11.429vw;
    }
    .l-footer__logo-label{
        font-size:0.714vw;
    }
    .l-footer__nav-list{
        gap:0.714vw 2.286vw;
    }
    .l-footer__nav-list a{
        font-size:1vw;
    }
    .l-footer__bottom{
        gap:1.429vw;
    }
    .l-footer__corp li {
        font-size:1vw;
    }
    .l-footer__copy{
        font-size:1vw;
    }
}
@media(max-width:1024px){
    .l-footer__top{
        display:none;
    }
    .l-footer__inner{
        padding:0;
    }
    .l-footer__sp-navi{
        display:block;
        margin-bottom:0;
        padding:26px 24px 0;
    }
    .l-footer__sp-navi-list{
        display:grid;
        grid-template-columns:repeat(2,1fr);
        column-gap:16px;
        row-gap:14px;
    }
    .l-footer__sp-navi-link{
        display:flex;
        flex-direction:column;
        gap:3px;
        padding-bottom:0;
        border-bottom:1px solid rgba(255,255,255,.3);
    }
    .l-footer__sp-navi-en{
        font-family:var(--f-en);
        font-weight:700;
        font-size:0.531rem;
        color:var(--c-blue2);
        text-transform:uppercase;
        line-height: 1.4;
    }
    .l-footer__sp-navi-ja{
        font-family:var(--f-a1gothic);
        font-weight:400;
        font-size:0.75rem;
        color:var(--c-white);
        line-height: 2;
    }
    .l-footer__sp-entry{
        margin-top:21px;
    }
    .l-footer__sp-entry-btn{
        display:flex;
        align-items:center;
        justify-content:center;
        width:100%;
        height:46px;
        font-family:var(--f-en);
        font-weight:700;
        font-size:0.8125rem;
        letter-spacing:.05em;
        background:var(--c-yellow);
        color:var(--c-blue);
    }
    .l-footer__bottom{
        padding:25px 0;
        display:block;
        text-align:center;
    }
    .l-footer__corp{
        justify-content: center;
        margin-bottom: 10px;
    }
}
/* ===== Entry ===== */
.c-entry{
    position:relative;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
}
.c-entry__bg{
    position:absolute;
    inset:0;
    z-index:0;
}
.c-entry__bg picture{
    display:block;
    height:100%;
}
.c-entry__bg img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.c-entry__body{
    position:relative;
    z-index:1;
    width: 100%;
    text-align:center;
    padding:100px 0;
}
.c-entry__title{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:20px;
    width:100%;
    overflow:hidden;
    border-bottom: 1px solid var(--c-white);
    padding-bottom: 20px;
}
.c-entry__title .p-top__sec-label {
    font-family: var(--f-en);
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1;
    color: var(--c-white);
    text-transform: uppercase;
}
.c-entry__h2{
    font-family:var(--f-serif);
    font-weight:500;
    font-size:2.5rem;
    line-height:1.25;
    color:var(--c-white);
}
.c-entry__lead{
    font-family:var(--f-serif);
    font-size:1.625rem;
    line-height:2;
    color:var(--c-white);
    text-align:center;
    padding: 42px 0 28px;
}
.c-entry__btns{
    display:flex;
    flex-direction:column;
    width:fit-content;
    gap:34px;
    margin:0 auto;
}
.c-entry__btn{
    position:relative;
    overflow:hidden;
    isolation:isolate;
    color:var(--c-blue);
    background:var(--c-yellow);
    width:400px;
    height:90px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}
.c-entry__btn--white{
    background:var(--c-white);
}
.c-entry__btn-body{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:12px;
    text-align:center;
}
.c-entry__btn-en{
    font-family:var(--f-en);
    font-weight:700;
    font-variation-settings:"wght" 700;
    font-size:1.625rem;
    letter-spacing:.1em;
    line-height:1;
    white-space:nowrap;
}
.c-entry__btn--white .c-entry__btn-en{
    font-weight:800;
    font-variation-settings:"wght" 800;
    font-size:1.375rem;
}
.c-entry__btn-sub{
    font-family:var(--f-a1gothic);
    font-size:.875rem;
    line-height:1.2;
    white-space:nowrap;
}
.c-entry__btn-arrow{
    position:absolute;
    top:50%;
    right:20px;
    translate:0 -50%;
    display:flex;
    align-items:center;
    justify-content:center;
    width:50px;
    height:50px;
    background:var(--c-blue);
    transition:background-color .35s var(--ease);
}
.c-entry__btn-arrow img{
    display:block;
    width:11px;
    height:22px;
    filter:var(--filter-white);
    transition:filter .35s var(--ease);
}
.c-entry__btn::before{
    content:'';
    position:absolute;
    inset:0;
    z-index:-1;
    background:var(--c-white);
    transform:scaleX(0);
    transform-origin:left;
    transition:transform .35s var(--ease);
}
.c-entry__btn:is(:hover, :focus-visible)::before{
    transform:scaleX(1);
}
.c-entry__btn--white::before{
    background:var(--c-blue);
}
.c-entry__btn--white:is(:hover, :focus-visible){
    color:var(--c-white);
}
.c-entry__btn--white:is(:hover, :focus-visible) .c-entry__btn-arrow{
    background:var(--c-white);
}
.c-entry__btn--white:is(:hover, :focus-visible) .c-entry__btn-arrow img{
    filter:none;
}
.c-entry__btn:focus-visible{
    outline:none;
    box-shadow:inset 0 0 0 2px var(--c-blue);
}
.c-entry__btn--white:focus-visible{
    box-shadow:inset 0 0 0 2px var(--c-white);
}
.c-entry__btn-text {
    font-size: 0.875rem;
    line-height: 1.2;
    color: var(--c-white);
    margin-top: -20px;
}
@media(min-width:1440px){
    .c-entry__body{
        padding:6.944vw 0;
    }
    .c-entry__title{
        gap:1.389vw;
        padding-bottom: 1.389vw;
    }
    .c-entry__title .p-top__sec-label {
        font-size: 1.389vw;
    }
    .c-entry__h2{
        font-size:2.778vw;
    }
    .c-entry__lead{
        font-size:1.806vw;
        padding: 3.472vw 0 2.917vw;
    }
    .c-entry__btns{
        gap:2.083vw;
    }
    .c-entry__btn{
        width:27.778vw;
        height:6.25vw;
    }
    .c-entry__btn-body{
        gap:1.042vw;
    }
    .c-entry__btn-en{
        font-size:1.806vw;
    }
    .c-entry__btn--white .c-entry__btn-en{
        font-size:1.528vw;
    }
    .c-entry__btn-sub{
        font-size:.972vw;
    }
    .c-entry__btn-arrow{
        right:1.389vw;
        width:3.472vw;
        height:3.472vw;
    }
    .c-entry__btn-arrow img{
        width:.764vw;
        height:1.528vw;
    }
    .c-entry__btn-text {
        font-size: 0.972vw;
        margin-top: -1.389vw;
    }
}
@media(max-width:896px){
    .c-entry__title {
        gap: 20px;
        padding-bottom: 20px;
    }
    .c-entry__h2 {
        font-size: 2.5rem;
        line-height: 1;
    }
    .c-entry__lead{
        font-size:1.625rem;
        padding:32px 0 18px;
    }
    .c-entry__body{
        padding:70px 0;
    }
    .c-entry__btns{
        width: 100%;
        flex-direction:column;
        gap:20px;
    }
    .c-entry__btn{
        max-width: 360px;
        width:100%;
        height:80px;
    }
    .c-entry__btn-en{
        font-size:1.25rem;
    }
    .c-entry__btn--white .c-entry__btn-en{
        font-size:1.125rem;
    }
    .c-entry__btn-arrow{
        right:15px;
        width:30px;
        height:30px;
    }
    .c-entry__btn-arrow img{
        width:10px;
        height:20px;
    }
    .c-entry__btn-text {
        text-align: center;
        font-size: 0.875rem;
        line-height: 1.4;
        margin-top: -10px;
    }
}
@media(max-width:1024px){
    body:not(.top) .c-entry{
        display:none;
    }
}
/* ===== Breadcrumb ===== */
.c-breadcrumb{
    padding:18px 0;
}
.c-breadcrumb__list{
    max-width:1242px;
    margin-inline:auto;
    display:flex;
    flex-wrap:nowrap;
    align-items:center;
    overflow-x:auto;
    scrollbar-width:none;
}
.c-breadcrumb__list::-webkit-scrollbar{
    display:none;
}
.c-breadcrumb__item{
    display:flex;
    align-items:center;
    flex-shrink:0;
    font-size:0.75rem;
    line-height:1.4;
    color:var(--c-gray3);
    white-space:nowrap;
}
.c-breadcrumb__item:not(:last-child)::after{
    content:'';
    display:inline-block;
    width:6px;
    height:12px;
    margin:0 12px;
    background:url("/recruit/cmn/svg/arrow-right2.svg") no-repeat center/contain;
    flex-shrink:0;
}
.c-breadcrumb__link{
    color:var(--c-blue);
    transition:opacity .25s;
}
.c-breadcrumb__link:is(:hover, :focus-visible){
    opacity:.6;
    text-decoration:underline;
    text-underline-offset:3px;
}
.c-breadcrumb__current{
    color:var(--c-gray3);
}
@media(min-width:1440px){
    .c-breadcrumb{
        padding:1.25vw 0;
    }
    .c-breadcrumb__list{
        max-width:86.25vw;
    }
    .c-breadcrumb__item{
        font-size:0.833vw;
    }
    .c-breadcrumb__item:not(:last-child)::after{
        width:0.417vw;
        height:0.833vw;
        margin:0 0.833vw;
    }
}
@media(min-width:896px) and (max-width:1400px){
    .c-breadcrumb__list{
        padding-left:40px;
        padding-right:40px;
    }
}
@media(max-width:896px){
    .c-breadcrumb{
        padding:12px 0;
    }
    .c-breadcrumb__list{
        padding:0 20px;
    }
    .c-breadcrumb__item{
        font-size:0.6875rem;
    }
    .c-breadcrumb__item:not(:last-child)::after{
        width:5px;
        height:10px;
        margin:0 8px;
    }
}
/* ===== Culture slider ===== */
.c-culture__slider {
    margin-left: 100px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 50px;
}
.c-culture__slider::-webkit-scrollbar {
    display: none;
}
.c-culture__scrollbar{
    position: relative;
    margin-left: 100px;
    width: calc(100% - 100px);
    height: 10px;
    background: var(--c-gray1);
    border-radius: 30px;
    cursor: pointer;
}
.c-culture__scrollbar.is-hidden{
    visibility: hidden;
}
.c-culture__scrollbar-thumb{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--c-scrollbar-thumb);
    border-radius: 30px;
    cursor: grab;
}
.c-culture__scrollbar-thumb:active{
    cursor: grabbing;
}
.c-culture__list{
    display: flex;
    gap: 30px;
}
.c-culture__item {
    width: 460px;
    flex-shrink: 0;
}
.c-culture__card{
    display:block;
    background:var(--c-white);
    overflow:hidden;
    transition:opacity .25s;
    position:relative;
}
.c-culture__card:is(:hover, :focus-visible){
    opacity:.9;
}
.c-culture__card:focus-visible{
    outline:none;
    box-shadow:inset 0 0 0 2px var(--c-blue);
}
.c-culture__card-img{
    height: 304px;
    overflow:hidden;
}
.c-culture__card-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .5s var(--ease);
}
.c-culture__card:is(:hover, :focus-visible) .c-culture__card-img img{
    transform:scale(1.04);
}
.c-culture__card-arrow{
    position: absolute;
    top: 0;
    right: 0;
    overflow: hidden;
    isolation: isolate;
    width: 50px;
    height: 50px;
    background:var(--c-ivory);
    display: flex;
    justify-content: center;
    align-items: center;
}
.c-culture__card-arrow::before{
    content:'';
    position:absolute;
    inset:0;
    z-index:-1;
    background:var(--c-blue);
    transform:scaleX(0);
    transform-origin:left;
    transition:transform .35s var(--ease);
}
.c-culture__card:is(:hover, :focus-visible) .c-culture__card-arrow::before{
    transform:scaleX(1);
}
.c-culture__card-arrow img{
    transition:filter .35s var(--ease);
}
.c-culture__card:is(:hover, :focus-visible) .c-culture__card-arrow img{
    filter:var(--filter-white);
}
.c-culture__card-body{
    padding:25px;
    display:flex;
    flex-direction:column;
    gap:18px;
}
.c-culture__card-tags{
    display:flex;
    align-items: center;
    gap:10px;
    background:var(--c-blue);
    padding:4px 10px 6px;
    align-self:flex-start;
}
.c-culture__card-num{
    font-family:var(--f-en);
    font-size:1rem;
    font-weight:400;
    color:var(--c-white);
    text-transform:uppercase;
    line-height: 1rem;
    padding-top: 4px;
}
.c-culture__card-tag{
    font-size:1rem;
    color:var(--c-white);
    line-height: 1rem;
}
.c-culture__card-ttl{
    font-family:var(--f-serif);
    font-weight:500;
    font-size:1.375rem;
    line-height:1.2;
    color:var(--c-black);
}
.c-culture__card-meta{
    font-size:1rem;
    line-height:1.2;
    color:var(--c-black);
}
@media(min-width:1440px){
    .c-culture__slider {
        margin-left: 6.944vw;
        padding-bottom: 3.472vw;
    }
    .c-culture__scrollbar{
        margin-left: 6.944vw;
        width: calc(100% - 6.944vw);
        height: 0.694vw;
    }
    .c-culture__list{
        gap: 2.083vw;
    }
    .c-culture__item {
        width: 31.944vw;
    }
    .c-culture__card-img{
        height: 21.111vw;
    }
    .c-culture__card-arrow{
        width: 3.472vw;
        height: 3.472vw;
    }
    .c-culture__card-arrow img{
        width: 0.694vw;
        height: 1.528vw;
    }
    .c-culture__card-body{
        padding:1.736vw;
        gap:1.25vw;
    }
    .c-culture__card-tags{
        gap:0.694vw;
        padding:0.278vw 0.694vw 0.417vw;
    }
    .c-culture__card-num{
        font-size:1.111vw;
        line-height: 1.111vw;
    }
    .c-culture__card-tag{
        font-size:1.111vw;
        line-height: 1.111vw;
    }
    .c-culture__card-ttl{
        font-size:1.528vw;
    }
    .c-culture__card-meta{
        font-size:1.111vw;
    }
}
@media(min-width:896px) and (max-width:1400px) {
    .c-culture__slider {
        margin-left: 40px;
        padding-right: 40px;
    }
    .c-culture__scrollbar{
        margin-left: 40px;
        width: calc(100% - 40px);
    }
}
@media(max-width:896px){
    .c-culture__slider {
        margin-left: 20px;
        padding-right: 20px;
        padding-bottom: 30px;
    }
    .c-culture__scrollbar{
        margin-left: 20px;
        width: calc(100% - 20px);
        height: 6px;
    }
    .c-culture__list {
        gap: 20px;
    }
    .c-culture__item {
        width: 220px;
    }
    .c-culture__card-arrow{
        width:30px;
        height:30px;
    }
    .c-culture__card-img{
        height:160px;
    }
    .c-culture__card-body{
        padding:20px 15px 24px;
        gap:6px;
    }
    .c-culture__card-tag{
        display:none;
    }
    .c-culture__card-ttl{
        font-size:1rem;
    }
    .c-culture__card-tags {
        padding: 4px 7px;
    }
    .c-culture__card-num{
        font-size:0.75rem;
        padding-top: 0;
    }
    .c-culture__card-meta{
        font-size:0.75rem;
    }
}
