@charset "UTF-8";
/*-------------
vars
-------------*/
:root{
    --inner-width: 1200px;
    --inner-width_sp: 90.625vw;
    --inner-sides: 40px;
    --inner-sides_sp: 4.6875vw;
    --min-width: var(--inner-width);
    
    --base-black: #333;
    --accent-black: #1a1a1a;
    
    --base-gray: #999;
    --accent-gray: #ccc;
    --border-gray: #e6e6e6;
    --bg-gray: #f2f2f2;
    --bg-light-gray: #f7f8f8;
    --text-gray: #666;
    
    --main-green: #009780;
    --bg-green: #ebfaf8;
    --accent-green: #004d40;
    --bg-green: #f0f9f7;
    --bg-blank: url(../images/icon_blank.svg) no-repeat center / auto;
    
    --bg-arrow: url(../images/arrow_right.svg) no-repeat center / auto;
    --bg-arrow_grn: url(../images/arrow_right_green.svg) no-repeat center / auto;
    --bg-hex: url(../images/bg-hex.svg) no-repeat center / contain;
    --bg-hex_lg: url(../images/bg-hex_lg.svg) no-repeat center / contain;
    
    --accent-blue: #09458c;
    --accent-orange: #f5821d;
    --accent-red: #d90f1f;
    --accent-yellow: #fcee21;

    --font-sans: "Noto Sans JP", sans-serif;
    --font-en: "Poppins", var(--font-sans);
    --font-maru: "DNP 秀英丸ゴシック Std", "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic ProN", "Hiragino Maru Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO", "HGPMaruGothicMPRO", "Yu Gothic", "Meiryo", sans-serif;
    --fontsize-base: 1.5rem;
    
    --linear: .5s linear;
    --ease: .5s ease;
}
@media screen and (max-width:1280px){
    :root{
        --inner-sides: 20px;
    }
}
@media screen and (max-width:768px){
    :root{
        --inner-width: var(--inner-width_sp);
        --inner-sides: var(--inner-sides_sp);
        --min-width: 320px;
        
        --bg-light-gray: var(--bg-gray);
        
        --fontsize-base: 1.4rem;
    }
}
@keyframes arrow-slide{
    0% { background-position: center; }
    30%{ background-position: left calc(100% + 12px) center; }
    40%{ background-image: none; }
    50%{ background-position: left -12px center; }
    80%{ background-position: center; }
}
:root{
    --arrow-slide: arrow-slide .75s forwards;
}

/*-------------
base
-------------*/
html{
    font-size: 62.5%;
}
body{
    width: 100%;
    min-width: calc(var(--inner-width) + (var(--inner-sides) * 2));
    background: #fff;
    color: var(--base-black);
    font-family: var(--font-sans);
    font-optical-sizing: auto;
    font-size: var(--fontsize-base);
    line-height: 1.8;
    text-align: left;
    overflow-wrap: anywhere;
    word-break: normal;
    line-break: strict;
}
img{
    max-width: 100%;
    height: auto;
}
:where(.wrapper, .container){
    container-type: inline-size;
}
:where(.wrapper *), 
:where(.container) *{
    --container-sides: calc(50cqw - (var(--inner-width) / 2));
}
::selection{
    background: #40b1a0;
    color: #fff;
}

/* common */
@media screen and (min-width:769px){
    .sp{
        display: none!important;
    }
}
@media screen and (max-width:768px){
    .pc{
        display: none!important;
    }
}
.clearfix::after,
.cf::after{
    content: "";
    display: block;
    clear: both;
}
.preload *,
.preload *::before,
.preload *::after{
    transition: none!important;
}
.floatL, .l{
    float: left;
}
.floatR, .r{
    float: right;
}
.clearBoth, .c_b{
	clear:both;
}
.dispIB{
    display: inline-block;
}
img.dispIB{
    width: revert-layer;
    height: revert-layer;
}

/* margin */
.mRkern{
    margin-right: -.4em;
}
.mLkern{
    margin-left: -.4em;
}
.mLRkern{
    margin-right: -.4em;
    margin-left: -.4em;
}
.mB5{
	margin-bottom: 5px!important;
}
.mB10{
	margin-bottom: 10px!important;
}
.mB15{
	margin-bottom: 15px!important;
}
.mB20{
	margin-bottom: 20px!important;
}
.mB30{
	margin-bottom: 30px!important;
}
.mR10{
	margin-right: 10px!important;
}

/* text */
.textInd, .txt_ind {
    text-indent: -1.02em;
    padding-left: 1.02em;
}
.ffsPalt{
	font-feature-settings: "palt" 1;
}
.ffSans{
    font-family: var(--font-sans)!important;
}
.txtRed{
    color: var(--accent-red)!important;
}
.textSmall{
    font-size: .7em;
}
.textCenter, .txt_c{
    text-align: center;
}
.textRight, .txt_r{
    text-align: right;
}
.wsNowrap{
    white-space: nowrap;
}
*:has(> wbr:not(.pc):not(.sp)){
    word-break: keep-all;
    overflow-wrap: break-word;
}
@media screen and (min-width:769px){
    *:has(> wbr.pc){
        word-break: keep-all;
        overflow-wrap: break-word;
    }
}
@media screen and (max-width:768px){
    *:has(> wbr.sp){
        word-break: keep-all;
        overflow-wrap: break-word;
    }
}

/* a */
@media (any-hover: hover){
    :where(a:hover){
        text-decoration: none;
    }
}
.textLink:not(:hover){
    text-decoration: underline;
}
@media screen and (min-width:769px){
    body:not(.viewing_mobile) a[href^="tel:"]{
        text-decoration: none!important;
        pointer-events: none;
    }
}
.fadeHover{
    transition: opacity var(--ease);
}
@media (any-hover: hover){
    .fadeHover:hover{
        opacity: .7;
    }
    .undrHover:not(:hover){
        text-decoration: underline;
    }
}
:where(a:has(> img:only-child)),
:where(a:has(> picture:only-child)){
    transition: opacity var(--ease);
}
@media (any-hover: hover){
    :where(a:has(> img:only-child)):hover,
    :where(a:has(> picture:only-child)):hover{
        opacity: .7;
    }
}

/*-------------
site-loading
-------------*/
.site-loading{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    height: 100dvh;
    background: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1;
    letter-spacing: .04em;
    transition: opacity .5s ease;
}
.site-loading._loaded{
    opacity: 0;
}
.site-loading-gauge{
    --loading-gauge: 0;
    position: relative;
    z-index: 0;
    margin: -2em 0 1em;
    overflow: hidden;
    border-radius: 50%;
    background: var(--bg-gray);
}
.site-loading-gauge::before{
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: var(--main-green);
    -webkit-mask-image: conic-gradient(#000 0 var(--loading-gauge), rgba(255,255,255,0) var(--loading-gauge) 100%);
    mask-image: conic-gradient(#000 0 var(--loading-gauge), rgba(255,255,255,0) var(--loading-gauge) 100%);
    content: "";
}
.site-loading-progress{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    margin: 2px;
    border-radius: 50%;
    background: #fff;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: .04em;
}
@media screen and (max-width:768px){
    .site-loading-progress{
        width: min(100px, 25vw);
        height: min(100px, 25vw);
        font-size: min(20px, 5.625vw);
    }
}

/*-------------
accordion
-------------*/
.accordion-btn:not(.is--ready){
    pointer-events: none;
}
.accordion-btn.is--ready{
    cursor: pointer;
}
@media screen and (max-width:768px){
    .accordion-btn_sp:not(.is--ready){
        pointer-events: none;
    }
    .accordion-btn_sp.is--ready{
        cursor: pointer;
    }
}
.accordion-btn:not(._active):not([data-target-class]) + *:not(.accordion-container),
.accordion-content{
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
@media screen and (max-width:768px){
    .accordion-btn_sp:not(._active):not([data-target-class]) + *:not(.accordion-container),
    .accordion-content_sp{
        position: absolute;
        opacity: 0;
        pointer-events: none;
    }
}
.accordion-container{
    overflow: hidden;
    transition: height .3s ease;
}
.accordion-container.is--hit_low{
    transition: height .2s ease;
}
.accordion-container:not(.is--open){
    height: 0!important;
}
@media screen and (min-width:769px){
    .accordion-container.is--limit_sp{
        height: auto!important;
    }
}

/*-------------
header
-------------*/
.wrapper{
    --header-hit: 80px;
}
.header{
    position: relative;
    z-index: 1;
    width: 100%;
    height: var(--header-hit);
}
@media screen and (max-width:768px){
    .wrapper{
        --header-hit: 50px;
    }
}
.header-inner{
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: var(--header-hit);
    padding: 0 var(--inner-sides);
    background: #fff;
}
.header-inner:not(._fixed){
    transition: opacity var(--ease), padding var(--ease), background var(--ease), box-shadow var(--ease);
}
.header-inner._fixed{
    opacity: 0;
    position: fixed;
    transform: translateY(calc(var(--header-hit) * -1));
    box-shadow: 0 0 5px rgba(0,0,0,.1);
}
.header-inner._fixed._down{
    opacity: 1;
    transform: translateY(0);
    transition: opacity .5s ease, transform .5s ease, padding var(--ease);
}
.header-inner._fixed._up{
    opacity: 0;
    transform: translateY(calc(var(--header-hit) * -1));
}
@media screen and (max-width:768px){
    .header-inner{
        display: block;
        padding: 0;
    }
}
.header-head{
    flex: 0 0 auto;
    height: 100%;
    margin-right: auto;
}
@media screen and (max-width:768px){
    .header-head{
        display: flex;
        position: relative;
        z-index: 1;
        width: 100%;
        padding-left: var(--inner-sides);
        background: #fff;
    }
}
.header-logo{
    display: flex;
    align-items: center;
    height: 100%;
}
@media screen and (max-width:768px){
    .header-logo{
        flex: 0 0 auto;
        width: 169px;
        margin-right: auto;
    }
}
.header-menu-btn{
    display: none;
}
@media screen and (max-width:768px){
    .header-menu-btn{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        height: 100%;
        aspect-ratio: 1 / 1;
        background: var(--main-green);
        cursor: pointer;
        user-select: none;
    }
    .header-menu-btn::before{
        position: absolute;
        top: calc(50% - 8px);
        left: calc(50% - 12px);
        width: 24px;
        height: 16px;
        background: url(../images/header-menu-bar.svg) no-repeat top center / auto,
        url(../images/header-menu-bar.svg) no-repeat bottom center / auto;
        content: "";
        transition: opacity var(--ease);
    }
    .header-menu-btn._open::before{
        opacity: 0;
    }
    .header-menu-btn::after{
        position: absolute;
        top: calc(50% - 1px);
        left: calc(50% - 12px);
        width: 24px;
        height: 2px;
        background: url(../images/header-menu-bar.svg) no-repeat center / auto;
        content: "";
        transition: transform var(--ease);
    }
    .header-menu-btn._open::after{
        transform: rotate(-45deg);
    }
    .header-menu-btn img{
        width: auto;
        height: auto;
        transition: transform var(--ease);
    }
    .header-menu-btn._open img{
        transform: rotate(45deg);
    }
}
.header-menu{
    flex: 0 0 auto;
}
.header-nav{
    display: flex;
    height: 100%;
}
.header-nav-slidebar{
    display: none;
}
@media screen and (max-width:768px){
    .header-menu{
        position: absolute;
        top: 0;
        left: 0;
        z-index: 0;
        width: 100%;
        height: 100vh;
        padding-top: var(--header-hit);
        overflow: hidden;
        background: rgba(0,0,0,.8);
        transition: opacity .5s ease;
        cursor: pointer;
    }
    .header-menu:not(._active),
    .header-menu:not(._active) *{
        z-index: -999;
        pointer-events: none;
        user-select: none;
    }
    .header-menu:not(._show){
        opacity: 0;
    }
    .header-menu::after{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: var(--header-hit);
        background: #fff;
        content: "";
    }
    .header-nav{
        flex-direction: column;
        justify-content: center;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 90dvh;
        padding: var(--header-hit) var(--inner-sides_sp) 50px;
        box-shadow: 0 5px 5px rgba(0,0,0,.1);
        background: #fff;
        cursor: auto;
    }
    .header-nav:not(._sliding){
        transition: transform .3s ease;
    }
    .header-nav-slidebar{
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 50px;
        cursor: pointer;
        font-size: 0;
    }
    .header-nav-slidebar::before{
        position: absolute;
        top: calc(50% - 2px);
        left: calc(50% - 20px);
        width: 40px;
        height: 4px;
        border-radius: 2px;
        background: var(--base-gray);
        content: "";
    }
}
.header-nav-list{
    display: flex;
    margin-right: 24px;
}
.header-nav-list-item a{
    display: flex;
    align-items: center;
    height: 100%;
    padding: 9px 16px 11px;
    color: var(--accent-black);
    font-size: 1.6rem;
    font-weight: bold;
    line-height: calc(1em + 8px);
    letter-spacing: .02em;
    transition: background var(--ease), color var(--ease);
}
@media (any-hover: hover){
    .header-nav-list-item a:hover{
        background: var(--bg-gray);
        color: var(--main-green);
    }
}
@media screen and (max-width:768px){
    .header-nav-list{
        display: block;
        margin: 0 0 24px;
    }
    .header-nav-list-item a{
        min-height: 50px;
        padding: 10px 0;
        font-size: 1.4rem;
    }
}
.header-nav-btns{
    display: flex;
    flex: 0 0 auto;
    gap: 0 10px;
    padding: 12px 0;
}
.header-nav-btn{
    flex: 0 0 auto;
    min-width: 150px;
}
.header-nav-btn a{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 0 20px 2px;
    border-radius: 5px;
    background: var(--main-green);
    color: #fff;
    font-size: 1.6rem;
    font-weight: bold;
    line-height: calc(1em + 8px);
    transition: color var(--ease);
}
.header-nav-btn._recruit a{
    background: var(--accent-green);
}
@media (any-hover: hover){
    .header-nav-btn a:hover{
        color: var(--accent-yellow);
    }
}
@media screen and (max-width:768px){
    .header-nav-btns{
        flex-direction: column;
        gap: 7px 0;
        padding: 0;
    }
    .header-nav-btn{
        flex: 0 0 auto;
        min-width: 0;
    }
    .header-nav-btn a{
        min-height: 44px;
        padding: 10px;
        font-size: 1.4rem;
    }
}

/*-------------
footer
-------------*/
.footer{
    position: relative;
    margin-top: 100px;
    padding: 50px 0 57px;
    background: var(--bg-gray);
}
@media screen and (max-width:768px){
    .footer{
        padding: 30px 0 calc(16px + env(safe-area-inset-bottom));
    }
}
.footer-pagetop{
    position: absolute;
    top: -90px;
    right: 0;
    z-index: 1;
    width: 90px;
    height: 90px;
}
.footer-pagetop-btn{
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    width: 60px;
    height: 60px;
    transition: opacity var(--ease), bottom var(--ease);
}
.footer-pagetop-btn:not(._show){
    opacity: 0;
}
.footer-pagetop-btn._fixed{
    position: fixed;
}
body:has(.grecaptcha-badge) :is(.footer-pagetop, .footer-pagetop-btn){
    z-index: 0;
}
body:has(.grecaptcha-badge) .footer-pagetop-btn._fixed{
    position: absolute;
}
.footer-pagetop-btn a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 50%;
    background: var(--base-black);
    font-size: 0;
    color: rgba(255,255,255,0);
    transition: background var(--ease);
}
.footer-pagetop-btn a::after{
    transform: translateY(2px) rotate(45deg);
    width: 12px;
    height: 12px;
    border-top: solid 2px #fff;
    border-left: solid 2px #fff;
    content: "";
    transition: transform var(--ease);
}
@media (any-hover: hover){
    .footer-pagetop-btn a:hover{
        background: var(--accent-black);
    }
    .footer-pagetop-btn a:hover::after{
        transform: translateY(-2px) rotate(45deg);
    }
}
@media screen and (max-width:768px){
    .footer-pagetop{
        top: -65px;
        width: calc(50px + var(--inner-sides_sp));
        height: 65px;
    }
    .footer-pagetop-btn{
        bottom: calc(15px + env(safe-area-inset-bottom));
        right: var(--inner-sides_sp);
        width: 50px;
        height: 50px;
    }
    .footer-pagetop-btn a::after{
        width: 10px;
        height: 10px;
    }
}
.footer-inner{
    display: grid;
    grid-template-columns: 1fr auto;
    width: var(--inner-width);
    margin: 0 auto;
}
@media screen and (max-width:768px){
    .footer-inner{
        display: block;
    }
}
.footer-logo{
    display: flex;
    margin-bottom: 17px;
    padding-top: 10px;
}
.footer-logo-item{
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}
.footer-logo-item:not(:last-child){
    margin-right: 20px;
    padding-right: 20px;
    border-right: solid 1px var(--accent-gray);
}
@media screen and (max-width:768px){
    .footer-logo{
        margin-bottom: 11px;
        padding-top: 0;
    }
    .footer-logo-item:not(:last-child){
        margin-right: 15px;
        padding-right: 15px;
    }
    .footer-logo-item._com img{
        width: 156px;
        height: auto;
    }
    .footer-logo-item._bml img{
        width: 69px;
        height: auto;
    }
}
.footer-address{
    margin-bottom: 92px;
    font-size: 1.4rem;
    line-height: calc(1em + 7px);
}
.footer-address p:not(:last-child){
    margin-bottom: 10px;
}
@media screen and (max-width:768px){
    .footer-address{
        margin-bottom: 17px;
    }
    .footer-address p:not(:last-child){
        margin-bottom: 8px;
    }
}
.footer-nav{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
@media screen and (max-width:768px){
    .footer-nav{
        align-items: stretch;
    }
}
.footer-nav-list{
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 5px 30px;
    margin-bottom: 30px;
}
.footer-nav-list-item{
    min-width: 168px;
}
.footer-nav-list-item a{
    display: block;
    position: relative;
    padding: 5px 0 7px 18px;
    color: var(--accent-black);
    font-size: 1.6rem;
    font-weight: bold;
    line-height: calc(1em + 8px);
    transition: color var(--ease); 
}
@media (any-hover: hover){
    .footer-nav-list-item a:hover{
        color: var(--text-gray);
    }
}
.footer-nav-list-item a::before{
    position: absolute;
    top: calc(.5em + 9px);
    left: 0;
    width: 10px;
    height: 2px;
    background: var(--main-green);
    content: "";
}
@media screen and (max-width:768px){
    .footer-nav-list{
        grid-template-columns: 1fr;
        gap: 5px 0;
        margin-bottom: 20px;
    }
    .footer-nav-list-item{
        min-width: 0;
    }
    .footer-nav-list-item a{
        padding: 1px 0 1px 20px;
        font-size: 1.5rem;
    }
    .footer-nav-list-item a::before{
        top: calc(.5em + 3.5px);
        width: 12px;
        height: 3px;
    }
}
.footer-nav-btns{
    display: flex;
    gap: 0 10px;
    margin-bottom: 95px;
}
.footer-nav-btn{
    flex: 0 0 auto;
    min-width: 160px;
}
.footer-nav-btn a{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 56px;
    padding: 0 20px 2px;
    border-radius: 5px;
    background: var(--main-green);
    color: #fff;
    font-size: 1.6rem;
    font-weight: bold;
    line-height: calc(1em + 8px);
    transition: color var(--ease);
}
.footer-nav-btn._recruit a{
    background: var(--accent-green);
}
@media (any-hover: hover){
    .footer-nav-btn a:hover{
        color: var(--accent-yellow);
    }
}
@media screen and (max-width:768px){
    .footer-nav-btns{
        margin-bottom: 26px;
    }
    .footer-nav-btn{
        flex: 1;
        min-width: 0;
    }
    .footer-nav-btn a{
        height: 49px;
        font-size: 1.5rem;
    }
}
.footer-copy{
    display: block;
    grid-column: 1 / 3;
    color: var(--text-gray);
    font-size: 1.4rem;
    line-height: calc(1em + 8px);
}
@media screen and (max-width:768px){
    .footer-copy{
        text-align: center;
    }
}

/*-------------
top
-------------*/
body.toppage:has(.top-group:last-child) .footer{
    margin-top: 0;
}
.top-sect-title{
    margin-bottom: 46px;
    font-size: 42px;
    font-weight: 900;
    line-height: calc(1em + 10px);
    letter-spacing: .06em;
}
.top-sect-title::before{
    display: block;
    margin-bottom: 9px;
    color: var(--main-green);
    font-family: var(--font-en);
    font-size: 2rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: .02em;
    content: attr(data-en);
}
@media screen and (max-width:768px){
    .top-sect-title{
        margin-bottom: 25px;
        font-size: 2.5rem;
    }
    .top-sect-title::before{
        margin-bottom: 5px;
        font-size: 1.4rem;
    }
}

/* top-hero */
.top-hero{
    position: relative;
    z-index: 0;
    width: 100%;
    max-height: calc(100dvh - var(--header-hit));
    aspect-ratio: 2 / 1;
    margin-bottom: 80px;
    overflow: hidden;
}
@media screen and (max-width:768px){
    .top-hero{
        aspect-ratio: 5 / 8;
        margin-bottom: 40px;
    }
}
.top-hero-slider{
    position: relative;
    z-index: -1;
    width: 100%;
    height: 100%;
    pointer-events: none;
    user-select: none;
}
.top-hero-slide{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
body:has(.site-loading) .top-hero-slide:not(:nth-child(-n+2)){
    display: none;
}
.top-hero-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width:768px){
    .top-hero-slide img{
        width: auto;
        max-width: none;
        aspect-ratio: 2 / 1;
        transition: transform linear;
    }
}
.top-hero-catch{
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 1;
    transform: translateY(-50%);
    width: 100%;
    padding: 0 var(--inner-sides) 1px;
    color: #fff;
    font-size: 42px;
    font-weight: bold;
    line-height: calc(1em + 17px);
    letter-spacing: .02em;
    text-align: center;
    text-shadow: 0 0 8px rgba(0,0,0,.75); 
}
@media screen and (max-width:768px){
    .top-hero-catch{
        font-size: 2.5rem;
        line-height: calc(1em + 13px);
        text-shadow: 0 0 6px rgba(0,0,0,.75); 
        word-break: keep-all;
    }
}
.top-hero-scroll{
    position: absolute;
    bottom: 30px;
    left: 50%;
    z-index: 1;
    transform: translateX(-50%);
}
@media screen and (max-width:768px){
    .top-hero-scroll{
        bottom: 15px;
    }
}
.top-hero-scroll a{
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    font-family: var(--font-en);
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    text-shadow: 0 0 8px rgba(0,0,0,.75);
}
@keyframes scroll-arrow{
    0%{ transform: translateY(-2px) rotate(45deg); }
    100%{ transform: translateY(2px) rotate(45deg); }
}
.top-hero-scroll a::before{
    position: absolute;
    bottom: 13px;
    left: calc(50% - 4px);
    z-index: 1;
    transform: translateY(-2px) rotate(45deg);
    width: 8px;
    height: 8px;
    border-right: solid 1px var(--base-black);
    border-bottom: solid 1px var(--base-black);
    content: "";
}
.top-hero-scroll a::after{
    filter: drop-shadow(0 0 3px rgba(0,0,0,.4));
    display: block;
    width: 30px;
    height: 30px;
    margin-top: 10px;
    border-radius: 50%;
    background: #fff;
    content: "";
}
.top-hero-scroll a::before,
.top-hero-scroll a::after{
    animation: scroll-arrow 1s ease infinite alternate-reverse;
}
@media screen and (max-width:768px){
    .top-hero-scroll a::after{
        margin-top: 8px;
    }
}

/* top-lead */
.top-lead{
    display: flex;
    gap: 0 4px;
    width: var(--inner-width);
    margin: 0 auto 100px;
}
@media screen and (max-width:768px){
    .top-lead{
        flex-direction: column;
        gap: 10px 0;
        margin-bottom: 50px;
    }
}
.top-lead-block{
    flex: 1;
}
.top-lead-block a{
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 40px 50px;
    overflow: hidden;
    border-radius: 12px;
    background: var(--bg-gray);
    transition: background var(--ease);
}
@media (any-hover: hover){
    .top-lead-block a:hover{
        background: var(--bg-green);
    }
}
@media screen and (max-width:768px){
    .top-lead-block a{
        padding: 20px;
        border-radius: 10px;
    }
}
.top-lead-icon{
    width: 42px;
    height: 42px;
    margin-bottom: 25px;
    pointer-events: none;
    user-select: none;
}
.top-lead-icon img{
    object-fit: contain;
}
@media screen and (max-width:768px){
    .top-lead-icon{
        width: 40px;
        height: 40px;
        margin-bottom: 16px;
    }
}
.top-lead-title{
    margin-bottom: 15px;
    color: var(--accent-black);
    font-size: 2.8rem;
    font-weight: bold;
    line-height: calc(1em + 8px);
    letter-spacing: .04em;
}
.top-lead-desc{
    margin-bottom: 35px;
    line-height: calc(1em + 12px);
}
@media screen and (max-width:768px){
    .top-lead-title{
        margin-bottom: 10px;
        font-size: 2rem;
    }
    .top-lead-desc{
        margin-bottom: 15px;
        line-height: calc(1em + 11px);
    }
}
.top-lead-more{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0 12px;
    position: relative;
    margin-top: auto;
    font-family: var(--font-en);
    line-height: 1;
    letter-spacing: .04em;
}
.top-lead-more::before{
    position: absolute;
    top: calc(50% - 6px);
    right: 19px;
    width: 12px;
    height: 12px;
    background: var(--bg-arrow);
    content: "";
}
.top-lead-more::after{
    flex: 0 0 auto;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--main-green);
    content: "";
}
@media (any-hover: hover){
    a:hover .top-lead-more::before{
        animation: var(--arrow-slide);
    }
}
@media screen and (max-width:768px){
    .top-lead-more{
        gap: 0 10px;
    }
    .top-lead-more::before{
        right: 14px;
    }
    .top-lead-more::after{
        width: 40px;
        height: 40px;
    }
}

/* top-service */
.top-service{
    position: relative;
    z-index: 0;
    width: var(--inner-width);
    margin: 0 auto 100px;
    padding-bottom: 75px;
}
.top-service::before{
    position: absolute;
    top: 16px;
    right: max(calc(var(--container-sides) * -1), -100px);
    z-index: -1;
    width: 192px;
    height: 228px;
    background: var(--bg-hex_lg);
    content: "";
}
.top-service::after{
    position: absolute;
    bottom: 0;
    left: calc(var(--container-sides) * -1);
    z-index: -1;
    width: calc((100% + var(--container-sides)) - 120px);
    height: calc(100% - 231px);
    border-radius: 0 20px 20px 0;
    background: var(--bg-gray);
    content: "";
}
@media screen and (max-width:768px){
    .top-service{
        margin-bottom: 50px;
        padding-bottom: 45px;
    }
    .top-service::before{
        top: 40px;
        right: max(-12px, calc(var(--container-sides) * -1));
        width: 64px;
        height: 76px;
    }
    .top-service::after{
        width: calc(100% + (var(--container-sides) * 2));
        height: calc(100% - (25dvw + 80px));
        border-radius: 0;
    }
}
.top-service-list{
    display: flex;
    gap: 0 6px;
}
.top-service-list-item{
    flex: 1;
    width: 396px;
}
@media screen and (max-width:768px){
    .top-service-list{
        flex-direction: column;
        gap: 30px 0;
    }
    .top-service-list-item{
        width: 100%;
    }
}
.top-service-list-item a{
    display: block;
}
.top-service-list-pic{
    margin-bottom: 26px;
    overflow: hidden;
    border-radius: 10px;
    background: #fff;
}
@media screen and (max-width:768px){
    .top-service-list-pic{
        margin-bottom: 20px;
        border-radius: 5px;
    }
}
.top-service-list-pic img{
    transition: transform var(--ease);
}
@media (any-hover: hover){
    a:hover .top-service-list-pic img{
        transform: scale(1.05);
    }
}
.top-service-list-body{
    padding: 0 20px;
}
@media screen and (max-width:768px){
    .top-service-list-body{
        padding: 0;
    }
}
.top-service-list-term{
    display: flex;
    align-items: center;
    gap: 0 7px;
    margin-bottom: 17px;
    color: var(--accent-black);
    font-size: 2.4rem;
    font-weight: bold;
    letter-spacing: .04em;
    line-height: calc(1em + 6px);
    transition: color var(--ease);
}
.top-service-list-term::after{
    flex: 0 0 auto;
    transform: translateY(1px);
    width: 24px;
    height: 24px;
    border: solid 1px var(--main-green);
    border-radius: 50%;
    background: var(--bg-arrow), var(--main-green);
    content: "";
    transition: background var(--ease);
}
@media (any-hover: hover){
    a:hover .top-service-list-term{
        color: var(--main-green);
    }
    a:hover .top-service-list-term::after{
        background: var(--bg-arrow_grn), #fff;
        animation: var(--arrow-slide);
    }
}
@media screen and (max-width:768px){
    .top-service-list-term{
        margin-bottom: 12px;
        font-size: 1.8rem;
    }
    .top-service-list-term::after{
        transform: none;
    }
}
.top-service-list-desc{
    font-size: 1.4rem;
    line-height: calc(1em + 11px);
}

/* top-recruit */
.top-recruit{
    position: relative;
    z-index: 0;
    width: var(--inner-width);
    margin: 0 auto 100px;
}
.top-recruit::before{
    position: absolute;
    top: 174px;
    right: 190px;
    z-index: -1;
    width: 160px;
    height: 190px;
    background: var(--bg-hex_lg);
    content: "";
}
.top-recruit::after{
    position: absolute;
    top: 57px;
    right: -20px;
    z-index: -1;
    width: 280px;
    height: 320px;
    background: var(--bg-hex);
    content: "";
}
@media screen and (max-width:768px){
    .top-recruit{
        margin-bottom: 50px;
    }
    .top-recruit::before{
        top: 42px;
        right: 70px;
        width: 80px;
        height: 95px;
    }
    .top-recruit::after{
        top: -5px;
        right: 0;
        width: 98px;
        height: 112px;
    }
}
.top-rec-catch{
    margin: -9px 0 40px;
    color: var(--accent-black);
    font-family: var(--font-maru);
    font-size: 38px;
    font-weight: bold;
    line-height: calc(1em + 19px);
    letter-spacing: .1em;
}
@media screen and (max-width:768px){
    .top-rec-catch{
        margin: -5px 0 25px;
        font-size: 2rem;
        line-height: calc(1em + 10px);
    }
}
.top-rec-voices{
    margin: 0 calc(var(--container-sides) * -1);
    overflow: hidden;
}
.top-rec-voices-list{
    display: flex;
    width: 2100px!important;
}
@media screen and (min-width:2100px){
    .top-rec-voices-list{
        -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0), #000 90px 1920px, rgba(0,0,0,0));
        mask-image: linear-gradient(to right, rgba(0,0,0,0), #000 90px 1920px, rgba(0,0,0,0));
    }
}
.top-rec-voices-list-item{
    flex: 0 0 auto;
    width: 300px;
    padding: 0 10px;
}
@media screen and (max-width:768px){
    .top-rec-voices-list{
        width: calc((43.75vw + 10px) * 3)!important;
    }
    .top-rec-voices-list-item{
        width: calc(43.75vw + 10px);
        padding: 0 5px;
    }
}
.top-rec-voices-list-item a{
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}
.top-rec-voices-list-item a::after{
    mix-blend-mode: darken;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    border: solid 1px var(--border-gray);
    border-radius: inherit;
    content: "";
    pointer-events: none;
}
@media (any-hover: hover){
    .top-rec-voices-list-item a:hover{
        opacity: 1;
    }
}
.top-rec-voices-list-pic{
    width: 100%;
    aspect-ratio: 5 / 7;
}
.top-rec-voices-list-pic img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--ease);
}
@media (any-hover: hover){
    a:hover .top-rec-voices-list-pic img{
        opacity: 1;
        transform: scale(1.05);
    }
}
.top-rec-voices-list-prof{
    opacity: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px 20px 17px;
    overflow: hidden;
    background: linear-gradient(30deg, rgba(255,255,255,.9), rgba(255,255,255,.1) 70%);
    text-shadow: 0 0 5px #fff, 0 0 10px #fff;
    transition: opacity var(--ease);
}
@media screen and (min-width:769px) and (any-hover: hover){
    a:hover .top-rec-voices-list-prof{
        opacity: 1;
    }
}
@media screen and (max-width:768px){
    .top-rec-voices-list-prof{
        padding: 9px min(20px, var(--inner-sides_sp)) 11px;
    }
    .top-rec-voices-list-item._current .top-rec-voices-list-prof{
        opacity: 1;
    }
}
.top-rec-voices-list-prof__year{
    margin-bottom: 3px;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: .04em;
    line-height: calc(1em + 5px);
}
.top-rec-voices-list-prof__post{
    color: var(--main-green);
    font-size: 2rem;
    font-weight: bold;
    line-height: calc(1em + 8px);
    letter-spacing: .04em;
}
@media screen and (max-width:768px){
    .top-rec-voices-list-prof__year{
        margin-bottom: 4px;
        font-size: min(1.4rem, 3.75vw);
    }
    .top-rec-voices-list-prof__post{
        font-size: min(1.8rem, 5vw);
    }
}
.top-rec-nav{
    display: flex;
    gap: 15px;
    margin-top: 50px;
}
.top-rec-nav-item{
    flex: 1;
    width: 390px;
}
@media screen and (max-width:768px){
    .top-rec-nav{
        flex-direction: column;
        gap: 5px 0;
        margin-top: 25px;
    }
    .top-rec-nav-item{
        width: 100%;
    }
}
.top-rec-nav-item a{
    display: flex;
    align-items: center;
    position: relative;
    height: 100%;
    min-height: 70px;
    padding: 14px 72px 16px 24px;
    border: solid 1px var(--border-gray);
    border-radius: 5px;
    background: #fff;
    color: var(--accent-black);
    font-size: 1.8rem;
    font-weight: bold;
    line-height: calc(1em + 8px);
    letter-spacing: .02em;
    transition: border var(--ease), background var(--ease);
}
.top-rec-nav-item a::after{
    position: absolute;
    top: calc(50% - 17px);
    right: 20px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--bg-arrow), var(--main-green);
    content: "";
}
@media (any-hover: hover){
    .top-rec-nav-item a:hover{
        border-color: var(--main-green);
        background: var(--bg-green);
    }
    .top-rec-nav-item a:hover::after{
        animation: var(--arrow-slide);
    }
}
@media screen and (max-width:768px){
    .top-rec-nav-item a{
        min-height: 56px;
        padding: 9px 56px 9px 15px;
        font-size: 1.6rem;
    }
    .top-rec-nav-item a::after{
        top: calc(50% - 13px);
        right: 15px;
        width: 26px;
        height: 26px;
    }
}

/* top-group */
.top-group{
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 0;
    padding: 100px var(--inner-sides);
}
.top-group:not(:last-child){
    margin-bottom: 100px;
}
.top-group::before{
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255,255,255,.7), rgba(255,255,255,.7)), 
    url(../images/top-group-bg.webp) no-repeat bottom center / cover;
    content: "";
}
@media screen and (min-width:769px){
    .viewing_pc .top-group::before{
        background-attachment: fixed;
    }
}
@media screen and (max-width:768px){
    .top-group{
        padding: 0 var(--inner-sides_sp) 50px;
    }
    .top-group:not(:last-child){
        margin-bottom: 50px;
    }
    .top-group::before{
        height: max(calc(100% - 180px), 360px);
        background: linear-gradient(to bottom, #fff, rgba(255,255,255,.7) 25%), 
        url(../images/top-group-bg@sp.webp) no-repeat top center / cover;
    }
    .top-group:last-child{
        padding-bottom: 100px;
    }
    .top-group:last-child::before{
        height: max(calc(100% - 130px), 410px);
    }
}
.top-group .top-sect-title{
    text-align: center;
}
.top-group-logo{
    margin: 0 auto 50px;
    user-select: none;
}
@media screen and (max-width:768px){
    .top-group-logo{
        width: 247px;
        margin-bottom: 24px;
    }
}
.top-group-desc{
    margin-bottom: 42px;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: calc(1em + 18px);
    letter-spacing: .04em;
    text-align: center;
}
@media screen and (max-width:768px){
    .top-group-desc{
        margin-bottom: 29px;
        font-size: 1.5rem;
        line-height: calc(1em + 12px);
        text-align: left;
    }
}
.top-group-link{
    width: min(100%, 390px);
    margin: 0 auto;
}
.top-group-link a{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 60px;
    padding: 15px 45px 17px;
    border-radius: 5px;
    background: var(--bg-blank), var(--main-green);
    background-position: right 22px center;
    color: #fff;
    font-size: 1.6rem;
    font-weight: bold;
    line-height: calc(1em + 8px);
    letter-spacing: .02em;
    text-align: center;
    transition: color var(--ease);
}
@media (any-hover: hover){
    .top-group-link a:hover{
        color: var(--accent-yellow);
    }
}
@media screen and (max-width:768px){
    .top-group-link a{
        min-height: 50px;
        padding: 11px 45px;
        font-size: 1.4rem;
    }
}

/* top-info */
.top-info{
    width: var(--inner-width);
    margin: 0 auto 100px;
}
@media screen and (max-width:768px){
    .top-info{
        margin-bottom: 50px;
    }
}
.top-info-more{
    width: min(100%, 330px);
    margin: 40px auto 0 0;
}
@media screen and (max-width:768px){
    .top-info-more{
        width: min(100%, 390px);
        margin-top: 25px;
    }
}
.top-info-more a{
    display: flex;
    align-items: center;
    position: relative;
    min-height: 60px;
    padding: 10px 70px 12px 25px;
    border-radius: 5px;
    background: var(--main-green);
    color: #fff;
    font-size: 1.6rem;
    font-weight: bold;
    line-height: calc(1em + 8px);
    letter-spacing: .02em;
    transition: color var(--ease);
}
.top-info-more a::after{
    position: absolute;
    top: calc(50% - 15px);
    right: 20px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--bg-arrow_grn), #fff;
    content: "";
}
@media (any-hover: hover){
    .top-info-more a:hover{
        color: var(--accent-yellow);
    }
    .top-info-more a:hover::after{
        animation: var(--arrow-slide);
    }
}
@media screen and (max-width:768px){
    .top-info-more a{
        min-height: 54px;
        padding: 11px 56px 11px 15px;
        font-size: 1.4rem;
    }
    .top-info-more a::after{
        top: calc(50% - 13px);
        right: 15px;
        width: 26px;
        height: 26px;
    }
}

/*-------------
pages
-------------*/
@media screen and (min-width:769px){
    .main._pages{
        --inner-width: 1000px;
    }
}
:where(.main._pages .contents){
    width: var(--inner-width);
    margin: 75px auto 100px;
}
@media screen and (max-width:768px){
    :where(.main._pages .contents){
        margin-top: 40px;
    }
}

/* page-header */
.page-header{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 220px;
    padding: 40px var(--inner-sides);
    background: var(--bg-green);
}
@media screen and (max-width:768px){
    .page-header{
        min-height: 150px;
        padding: 25px var(--inner-sides);
        background: var(--bg-green);
    }
}
.page-header-title{
    width: var(--inner-width);
    min-height: 92px;
    text-align: center;
}
.page-header-title:not([data-en=""])::before{
    display: block;
    margin: -2px 0 8px;
    color: var(--main-green);
    font-family: var(--font-en);
    font-size: 1.6rem;
    line-height: calc(1em + 3px);
    letter-spacing: .02em;
    content: attr(data-en);
}
.page-header-title-inner{
    display: block;
    font-size: 42px;
    font-weight: 900;
    line-height: calc(1em + 8px);
    letter-spacing: .06em;
}
@media screen and (max-width:768px){
    .page-header-title{
        width: var(--inner-width);
        min-height: 70px;
        text-align: center;
    }
    .page-header-title:not([data-en=""])::before{
        margin-bottom: 7px;
        font-size: 1.4rem;
    }
    .page-header-title-inner{
        font-size: 30px;
    }
}

/* breadcrumbs */
.breadcrumbs-nav{
    margin: 5px 0;
}
@media screen and (max-width:768px){
    .breadcrumbs-nav{
        margin: 2px 0;
    }
}
.breadcrumbs{
    display: flex;
    align-items: center;
    width: var(--inner-width);
    margin: 0 auto;
}
.breadcrumbs-item{
    flex: 0 0 auto;
    position: relative;
    min-width: 0;
    color: var(--text-gray);
}
.breadcrumbs-item:not(:last-child){
    margin-right: 21px;
}
.breadcrumbs-item:not(:last-child)::after{
    position: absolute;
    top: calc(50% - 2.5px);
    right: -12px;
    transform: rotate(45deg);
    width: 5px;
    height: 5px;
    border-top: solid 1px var(--base-gray);
    border-right: solid 1px var(--base-gray);
    content: "";
}
@media screen and (max-width:768px){
    .breadcrumbs-item:not(:last-child){
        margin-right: 19px;
    }
    .breadcrumbs-item:not(:last-child)::after{
        top: calc(50% - 2px);
        right: -11px;
        width: 4px;
        height: 4px;
    }
}
.breadcrumbs-item:last-child{
    flex: 1 1 auto;
}
.breadcrumbs-item a{
    display: block;
    color: var(--main-green);
}
@media (any-hover: hover){
    .breadcrumbs-item a:hover{
        text-decoration: underline 1px;
    }
}
.breadcrumbs-item__name{
    display: block;
    padding: 8px 0 9px;
    overflow: hidden;
    font-size: 1.3rem;
    line-height: calc(1em + 3px);
    letter-spacing: .02em;
    white-space: nowrap;
    text-overflow: ellipsis;
}
@media screen and (max-width:768px){
    .breadcrumbs-item__name{
        font-size: 1.2rem;
    }
}

/*-------------
info
-------------*/
.info-layout{
    display: flex;
    gap: 0 40px;
}
.info-layout-main{
    flex: 1 1 auto;
}
.info-layout-side{
    flex: 0 0 auto;
    width: 240px;
}
@media screen and (max-width:768px){
    .info-layout{
        flex-direction: column;
        gap: 50px 0;
    }
    .info-layout-side{
        width: 100%;
    }
}

/* archive */
.info-archive-title{
    margin: -3px 0 28px;
    font-size: 2.7rem;
    font-weight: bold;
    line-height: calc(1em + 5px);
    letter-spacing: .04em;
}
@media screen and (max-width:768px){
    .info-archive-title{
        margin-bottom: 23px;
        font-size: 2.1rem;
    }
}

/* info-sidenav */
.info-sidenav{
    display: block;
    position: sticky;
    top: 20px;
    left: 0;
    padding: 20px 20px 15px;
    border-radius: 8px;
    background: var(--bg-gray);
}
@media screen and (max-width:768px){
    .info-sidenav{
        position: static;
        padding: 25px min(20px, var(--inner-sides_sp)) 20px;
        border-radius: 6px;
    }
}
.info-sidenav-block:not(:last-child){
    margin-bottom: 30px;
}
.info-sidenav-title{
    margin-bottom: 12px;
    color: var(--accent-black);
    font-size: 1.8rem;
    font-weight: bold;
    line-height: calc(1em + 8px);
}
.info-sidenav-title::before{
    display: block;
    margin-bottom: 3px;
    color: var(--main-green);
    font-family: var(--font-en);
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1;
    content: attr(data-en);
}
@media screen and (max-width:768px){
    .info-sidenav-title{
        margin-bottom: 11px;
        font-size: 1.7rem;
    }
    .info-sidenav-title::before{
        margin-bottom: 2px;
        font-size: 1.2rem;
    }
}
.info-sidenav-cate-list{
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}
@media screen and (max-width:768px){
    .info-sidenav-cate-list{
        gap: 6px;
    }
}
.info-sidenav-cate-list-item a{
    display: block;
    min-width: 50px;
    padding: 6px 10px 7px;
    border-radius: 4px;
    background: #fff;
    color: var(--text-gray);
    font-size: 1.4rem;
    font-weight: 500;
    line-height: calc(1em + 3px);
    text-align: center;
    transition: background var(--ease), color var(--ease);
}
@media (any-hover: hover){
    .info-sidenav-cate-list-item a:hover{
        background: var(--bg-green);
        color: var(--main-green);
    }
}
.info-sidenav-cate-list-item._current a{
    background: var(--main-green);
    color: #fff;
}
@media screen and (max-width:768px){
    .info-sidenav-cate-list-item a{
        min-width: 60px;
        padding: 8px 12px 9px;
        border-radius: 3px;
        font-size: 1.3rem;
    }
}
.info-sidenav-year-list-item a{
    display: block;
    position: relative;
    padding: 11px 0 13px 14px;
    border-top: dotted 1px var(--accent-gray);
    color: var(--accent-black);
    font-size: 1.4rem;
    font-weight: 500;
    line-height: calc(1em + 6px);
    letter-spacing: .02em;
    transition: color var(--ease);
}
@media (any-hover: hover){
    .info-sidenav-year-list-item a:hover{
        color: var(--main-green);
    }
}
.info-sidenav-year-list:has(._current) .info-sidenav-year-list-item:not(._current) a{
    color: var(--text-gray);
}
@media screen and (max-width:768px){
    .info-sidenav-year-list-item a{
        padding: 12px 0 12px 14px;
    }
}
.info-sidenav-year-list-item a::after{
    position: absolute;
    top: calc(.5em + 12px);
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--main-green);
    content: "";
}

/* info-list */
.info-list{
    display: grid;
    grid-template-columns: auto auto 1fr;
}
.info-list:not(._loading){
    transition: opacity var(--linear);
}
.info-list._loading{
    opacity: 0;
}
.info-list-item, 
.info-list-item-inner,
.info-list-item a{
    display: grid;
    grid-template-columns: subgrid;
    grid-column: span 3;
}
@media screen and (max-width:768px){
    .info-list{
        grid-template-columns: auto 1fr;
    }
    .info-list-item, 
    .info-list-item-inner,
    .info-list-item a{
        grid-column: span 2;
    }
}
.info-list-item:first-child{
    border-top: solid 1px var(--border-gray);
}
.info-list-item{
    padding: 5px 0;
    border-bottom: solid 1px var(--border-gray);
}
.info-list-item a{
    align-items: center;
    min-height: 66px;
    padding: 20px;
    border-radius: 4px;
    transition: background var(--ease);
}
@media (any-hover: hover){
    .info-list-item a:hover{
        background: var(--bg-green);
    }
}
@media screen and (max-width:768px){
    .info-list-item a{
        padding: 15px 10px 21px;
    }
}
.info-list-head{
    display: grid;
    grid-template-columns: subgrid;
    grid-column: span 2;
    align-items: center;
    gap: 0 15px;
    margin-right: 20px;
}
@media screen and (max-width:768px){
    .info-list-head{
        gap: 0 8px;
        margin: 0 0 10px;
    }
}
.info-list-date{
    min-width: 72px;
    padding-bottom: 1px;
    color: var(--text-gray);
    font-size: 1.4rem;
    line-height: calc(1em + 1px);
    text-align: center;
}
.info-list-cate{
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
}
@media screen and (max-width:768px){
    .info-list-cate{
        display: flex;
        flex-wrap: wrap;
    }
}
.info-list:has(.info-list-cate-item:nth-child(3)) .info-list-cate{
    grid-template-columns: repeat(2, 1fr);
}
.info-list:has(.info-list-cate-item:nth-child(5)) .info-list-cate{
    grid-template-columns: repeat(3, 1fr);
}
.info-list-cate-item{
    display: flex;
    flex: 0 0 auto;
    justify-content: center;
    align-items: center;
    min-width: 60px;
    padding: 4px 6px 5px;
    border-radius: 5px;
    color: #fff;
    font-size: 1.4rem;
    font-weight: bold;
    line-height: calc(1em + 3px);
}
@media screen and (max-width:768px){
    .info-list-cate-item{
        min-width: 54px;
        padding: 5px 6px;
        border-radius: 5px;
        font-size: 1.2rem;
        line-height: calc(1em + 2px);
    }
}
.info-list-title{
    margin-top: -2px;
    font-size: 1.6rem;
    line-height: calc(1em + 8px);
    transition: color var(--ease);
}
@media (any-hover: hover){
    a:hover .info-list-title{
        color: var(--main-green);
    }
}
@media screen and (max-width:768px){
    .info-list-title{
        grid-column: 1 / 3;
        margin-top: 0;
        font-size: 1.4rem;
        line-height: calc(1em + 7px);
    }
}

/* info-category-item */
:where(.info-category-item){
    background-color: var(--base-gray);
}
.info-category-item:is(._addition, ._cid1){
    background-color: var(--main-green);
}
.info-category-item:is(._cancel, ._cid3){
    background-color: var(--accent-red);
}
.info-category-item:is(._change, ._cid4){
    background-color: var(--accent-orange);
}
.info-category-item:is(._recruit, ._cid5){
    background-color: var(--accent-blue);
}

/* info-pager */
.info-pager{
    --my-pager-size: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: var(--my-pager-size);
    margin-top: 40px;
}
@media screen and (max-width:768px){
    .info-pager{
        --my-pager-size: min(50px, 14.375vw);
        margin-top: 25px;
    }
}
.info-pager-list{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 5px;
}
@media screen and (max-width:768px){
    .info-pager-list{
        gap: 0 min(10px, 1.25vw);
        width: 100%;
    }
}
.info-pager-list-item{
    flex: 0 0 auto;
    width: var(--my-pager-size);
}
.info-pager-list-item a{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 0;
    height: var(--my-pager-size);
    border-radius: 5px;
    background: var(--bg-gray);
    font-family: var(--font-en);
    font-size: 1.6rem;
    font-weight: 500;
    transition: background var(--ease), color var(--ease);
}
@media (any-hover: hover){
    .info-pager-list-item a:hover{
        background: var(--bg-green);
        color: var(--main-green);
    }
}
.info-pager-list-item a._current{
    background: var(--main-green);
    color: #fff;
    pointer-events: none;
}
.info-pager-list._last::before,
.info-pager-list._middle::before,
.info-pager-list._first::after,
.info-pager-list._middle::after{
    display: block;
    flex: 0 0 auto;
    width: 18px;
    height: 2px;
    background: url(../images/icon_dots.svg) no-repeat center / contain;
    content: "";
}
@media screen and (max-width:768px){
    .info-pager-list._last::before,
    .info-pager-list._middle::before,
    .info-pager-list._first::after,
    .info-pager-list._middle::after{
        flex: 1 1 auto;
        width: unset;
        max-width: 80px;
    }
}
.info-pager-list._last .info-pager-list-item:first-child,
.info-pager-list._middle .info-pager-list-item:first-child{
    order: -1;
}
.info-pager-list._first .info-pager-list-item:last-child,
.info-pager-list._middle .info-pager-list-item:last-child{
    order: 1;
}

/*-------------
info-dtl
-------------*/
.info-dtl-head{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 15px;
    margin-bottom: 33px;
}
@media screen and (max-width:768px){
    .info-dtl-head{
        gap: 10px 12px;
        margin-bottom: 35px;
    }
}
.info-dtl-head-date{
    padding-bottom: 1px;
    color: var(--text-gray);
    font-size: 1.6rem;
    font-weight: 500;
    line-height: calc(1em + 1px);
}
@media screen and (max-width:768px){
    .info-dtl-head-date{
        font-size: 1.4rem;
    }
}
.info-dtl-head-cate{
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.info-dtl-head-cate-item{
    display: flex;
    flex: 0 0 auto;
    justify-content: center;
    align-items: center;
    min-width: 60px;
    padding: 4px 6px 5px;
    border-radius: 5px;
    color: #fff;
    font-size: 1.4rem;
    font-weight: bold;
    line-height: calc(1em + 3px);
}
@media screen and (max-width:768px){
    .info-dtl-head-cate-item{
        min-width: 54px;
        padding: 5px 6px;
        border-radius: 5px;
        font-size: 1.2rem;
        line-height: calc(1em + 2px);
    }
}
.info-dtl-head-title{
    flex: 0 0 auto;
    width: 100%;
    color: var(--accent-black);
    font-size: 32px;
    font-weight: 900;
    line-height: calc(1em + 16px);
    letter-spacing: .04em;
}
@media screen and (max-width:768px){
    .info-dtl-head-title{
        font-size: 2.5rem;
        line-height: calc(1em + 10px);
    }
}

/* info-back */
.info-back-btn{
    width: 240px;
    margin: 60px auto 0 0;
}
@media screen and (max-width:768px){
    .info-back-btn{
        width: min(240px, 65.625vw);
        margin: 40px auto 0;
    }
}
.info-back-btn a{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 60px;
    padding: 7px 40px 9px;
    border-radius: 99px;
    background: var(--base-black);
    color: #fff;
    font-size: 1.6rem;
    font-weight: bold;
    line-height: calc(1em + 4px);
    letter-spacing: .04em;
    transition: background var(--ease);
}
@media (any-hover: hover){
    .info-back-btn a:hover{
        background: var(--accent-black);
    }
}
@media screen and (max-width:768px){
    .info-back-btn a{
        min-height: 50px;
        padding: 8px 37px;
        font-size: 1.4rem;
    }
}
.info-back-btn a::before{
    position: absolute;
    top: calc(50% - 6px);
    left: 25px;
    transform: rotate(-180deg);
    width: 12px;
    height: 12px;
    background: var(--bg-arrow);
    content: "";
}
@media (any-hover: hover){
    .info-back-btn a:hover::before{
        animation: var(--arrow-slide);
    }
}
@media screen and (max-width:768px){
    .info-back-btn a::before{
        left: 20px;
    }
}

/*-------------
recruit
-------------*/
.recruit-link{
    margin: 60px auto 0;
}
.recruit-link._under{
    margin-top: 100px;
}
@media screen and (max-width:768px){
    .recruit-link{
        margin-top: 40px;
    }
    .recruit-link._under{
        margin-top: 80px;
    }
}
.recruit-link-list{
    display: flex;
    gap: 0 20px;
}
@media screen and (max-width:768px){
    .recruit-link-list{
        flex-direction: column;
        gap: 10px 0;
    }
}
.recruit-link-list-item{
    flex: 1;
}
.recruit-link-list-item a{
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
}
@media screen and (max-width:768px){
    .recruit-link-list-item a{
        border-radius: 10px;
    }
    .recruit-link._under .recruit-link-list-item a{
        border-radius: 5px;
    }
}
.recruit-link-list-item a::after{
    mix-blend-mode: darken;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: solid 1px var(--border-gray);
    border-radius: inherit;
    content: "";
    pointer-events: none;
}
.recruit-link-list-pic{
    overflow: hidden;
}
@media screen and (max-width:768px){
    .recruit-link-list-pic{
        width: 100%;
        aspect-ratio: 2 / 1;
    }
    .recruit-link._under .recruit-link-list-pic{
        max-height: 180px;
    }
}
.recruit-link-list-pic img{
    width: 100%;
    height: auto;
    transition: transform var(--ease);
}
@media (any-hover: hover){
    a:hover .recruit-link-list-pic img{
        transform: scale(1.1);
    }
}
@media screen and (max-width:768px){
    .recruit-link-list-pic img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
.recruit-link-list-title{
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    position: relative;
    min-height: 60px;
    padding: 10px 60px 12px 24px;
    border-top: solid 1px var(--border-gray);
    background: #fff;
    color: var(--accent-black);
    font-size: 1.8rem;
    font-weight: bold;
    line-height: calc(1em + 8px);
    letter-spacing: .04em;
    transition: color var(--ease);
}
@media (any-hover: hover){
    a:hover .recruit-link-list-title{
        color: var(--main-green);
    }
}
@media screen and (max-width:768px){
    .recruit-link-list-title{
        min-height: 50px;
        padding: 11px 60px 11px 19px;
        font-size: 1.6rem;
    }
    .recruit-link._under .recruit-link-list-title{
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        border: none;
        background: linear-gradient(30deg, rgba(255,255,255,.9), rgba(255,255,255,.1) 60%);
        text-shadow: 0 0 5px #fff, 0 0 10px #fff;
    }
}
.recruit-link-list-title::after{
    position: absolute;
    top: calc(50% - 15px);
    right: 19px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--bg-arrow), var(--main-green);
    content: "";
}
@media (any-hover: hover){
    a:hover .recruit-link-list-title::after{
        animation: var(--arrow-slide);
    }
}
@media screen and (max-width:768px){
    .recruit-link-list-title::after{
        top: calc(50% - 13px);
        right: 14px;
        width: 26px;
        height: 26px;
    }
}

/*-------------
jobs
-------------*/
.rec-jobs-layout{
    display: flex;
    gap: 0 60px;
}
@media screen and (max-width:768px){
    .rec-jobs-layout{
        flex-direction: column-reverse;
        gap: 30px 0;
    }
}
.rec-jobs-main{
    flex: 1 1 auto;
}
@media screen and (min-width:769px){
    .rec-jobs-side{
        flex: 0 0 auto;
        max-width: 240px;
        min-width: 200px;
        border-left: solid 2px var(--border-gray);
    }
}

/* rec-jobs-side-nav */
.rec-jobs-side-nav{
    position: sticky;
    top: var(--header-hit);
    left: 0;
}
@media screen and (min-width:769px){
    .rec-jobs-side-nav{
        --my-scroll-top: 0;
        --my-scroll-hit: 46px;
    }
    .rec-jobs-side-nav::before{
        position: absolute;
        top: var(--my-scroll-top);
        left: -2px;
        width: 2px;
        height: var(--my-scroll-hit);
        background: var(--main-green);
        content: "";
        transition: top var(--ease), height var(--ease);
    }
}
@media screen and (max-width:768px){
    .rec-jobs-side-nav{
        --my-item-wid: calc((100% - 8px) / 3);
        display: flex;
        flex-wrap: wrap;
        gap: 4px;
        position: static;
        border: none;
    }
    .rec-jobs-side-nav-item{
        flex: 1 1 auto;
        min-width: var(--my-item-wid);
    }
    .rec-jobs-side-nav-item:last-child{
        flex: 0 0 auto;
    }
}
.rec-jobs-side-nav-item a{
    display: flex;
    align-items: center;
    position: relative;
    min-height: 46px;
    padding: 7px 0 9px 38px;
    color: var(--accent-black);
    font-size: 1.6rem;
    font-weight: 500;
    font-feature-settings: "palt" 1;
    line-height: calc(1em + 8px);
    letter-spacing: .04em;
    transition: color var(--ease);
}
@media (any-hover: hover){
    .rec-jobs-side-nav-item a:hover{
        color: var(--main-green);
    }
}
@media screen and (max-width:768px){
    .rec-jobs-side-nav-item a{
        height: 100%;
        min-height: 50px;
        padding: 6px 9px 6px 34px;
        border: solid 1px var(--border-gray);
        border-radius: 4px;
        font-size: 1.4rem;
    }
}
@media screen and (max-width:768px){
    .rec-jobs-side-nav-item a::before{
        position: absolute;
        top: calc(50% - 9px);
        left: 9px;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: var(--main-green);
        content: "";
    }
    .rec-jobs-side-nav-item a::after{
        position: absolute;
        top: calc(50% - 4px);
        left: 15px;
        transform: rotate(45deg);
        width: 6px;
        height: 6px;
        border-right: solid 2px #fff;
        border-bottom: solid 2px #fff;
        content: "";
    }
}

/* rec-jobs-sect */
@media screen and (min-width:769px){
    .rec-jobs-sect{
        margin-bottom: 80px;
    }
}
@media screen and (max-width:768px){
    .rec-jobs-sect:not(:last-of-type){
        margin-bottom: 50px;
    }
}
.rec-jobs-sect-title{
    position: relative;
    margin-bottom: 25px;
    padding: 9px 10px 11px 30px;
    background: var(--bg-gray);
    font-size: 30px;
    font-weight: bold;
    line-height: calc(1em + 10px);
}
.rec-jobs-sect-title::before{
    position: absolute;
    top: 12px;
    left: 15px;
    width: 5px;
    height: calc(100% - 26px);
    border-radius: 2px;
    background: var(--main-green);
    content: "";
}
@media screen and (max-width:768px){
    .rec-jobs-sect-title{
        margin-bottom: 20px;
        padding: 8px 10px 8px 24px;
        background: var(--bg-gray);
        font-size: 2.4rem;
        font-weight: bold;
        line-height: calc(1em + 10px);
    }
    .rec-jobs-sect-title::before{
        top: 10px;
        left: 10px;
        width: 4px;
        height: calc(100% - 20px);
    }
}
.rec-jobs-block:not(:last-child){
    margin-bottom: 30px;
}
.rec-jobs-block__term{
    padding-bottom: 12px;
    margin-bottom: 20px;
    border-bottom: solid 1px var(--border-gray);
    color: var(--main-green);
    font-size: 2.4rem;
    font-weight: bold;
    line-height: calc(1em + 8px);
    letter-spacing: .02em;
}
@media screen and (max-width:768px){
    .rec-jobs-block:not(:last-child){
        margin-bottom: 25px;
    }
    .rec-jobs-block__term{
        padding-bottom: 10px;
        margin-bottom: 15px;
        font-size: 2rem;
    }
}
.rec-jobs-block__desc{
    --main-green: var(--accent-green);
    --border-gray: var(--accent-gray);
}
.rec-jobs-block__desc h6:not([class]){
    margin: 23px 0 10px;
}
@media screen and (max-width:768px){
    .rec-jobs-block__desc h6:not([class]){
        margin: 19px 0 9px;
    }
}
.rec-jobs-block__desc :is(th, td){
    border-top-style: dashed;
    border-bottom-style: dashed;
}
.rec-jobs-block__desc table:first-child tr:first-child :is(th, td),
.rec-jobs-block__desc *:first-child table tr:first-child :is(th, td){
    border-top: none;
    padding-top: 10px;
}

/*-------------
voices
-------------*/
.rec-voices-list{
    display: flex;
    flex-wrap: wrap;
    gap: 35px 20px; 
}
.rec-voices-list-item{
    flex: 0 0 auto;
    width: 235px;
}
@media screen and (max-width:768px){
    .rec-voices-list{
        gap: 15px 10px; 
    }
    .rec-voices-list-item{
        width: calc(50% - 5px);
    }
}
.rec-voices-list-item a{
    display: block;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}
.rec-voices-list-item a::after{
    mix-blend-mode: darken;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    border: solid 1px var(--border-gray);
    border-radius: inherit;
    content: "";
    pointer-events: none;
}
@media screen and (max-width:768px){
    .rec-voices-list-item a{
        border-radius: 5px;
    }
}
.rec-voices-list-pic{
    width: 100%;
    aspect-ratio: 5 / 7;
    overflow: hidden;
}
.rec-voices-list-pic img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--ease);
}
@media (any-hover: hover){
    a:hover .rec-voices-list-pic img{
        transform: scale(1.05);
    }
}
.rec-voices-list-prof{
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    padding: 12px 20px 17px;
    overflow: hidden;
    text-shadow: 0 0 5px #fff, 0 0 10px #fff;
}
@media screen and (max-width:768px){
    .rec-voices-list-prof{
        padding: 9px min(20px, var(--inner-sides_sp)) 11px;
    }
}
.rec-voices-list-prof::before{
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transform-origin: bottom left;
    width: 100%;
    height: 100%;
    background: linear-gradient(30deg, rgba(255,255,255,.9), rgba(255,255,255,.1) 70%);
    content: "";
    transition: transform var(--ease);
}
@media (any-hover: hover){
    a:hover .rec-voices-list-prof::before{
        transform: scale(2);
    }
}
.rec-voices-list-prof__year{
    margin-bottom: 3px;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: .04em;
    line-height: calc(1em + 5px);
}
.rec-voices-list-prof__post{
    color: var(--main-green);
    font-size: 2rem;
    font-weight: bold;
    line-height: calc(1em + 8px);
    letter-spacing: .04em;
}
@media screen and (max-width:768px){
    .rec-voices-list-prof__year{
        margin-bottom: 4px;
        font-size: min(1.4rem, 3.75vw);
    }
    .rec-voices-list-prof__post{
        font-size: min(1.8rem, 5vw);
    }
}

/*-------------
rec-voice-dtl-sect
-------------*/
.rec-voice-dtl hr{
    all: unset;
    display: block;
    clear: both;
}
@media screen and (max-width:768px){
    .rec-voice-dtl{
        display: flex;
        flex-direction: column;
    }
    .rec-voice-dtl hr{
        display: none;
    }
}
.rec-voice-dtl-pic{
    float: left;
    position: relative;
    margin: 0 40px 60px 0;
}
.rec-voice-dtl-pic::after{
    mix-blend-mode: darken;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: solid 1px var(--border-gray);
    content: "";
    pointer-events: none;
}
.rec-voice-dtl-pic img{
    width: auto;
    max-width: 450px;
    height: auto;
    max-height: 490px;
}
@media screen and (min-width:769px){
    .rec-voice-dtl-pic:is(._order2,._order4,._order6,._order8){
        float: right;
        margin-right: 0;
        margin-left: 30px;
    }
}
@media screen and (max-width:768px){
    .rec-voice-dtl-pic{
        float: none;
        margin: 0 0 20px;
    }
    .rec-voice-dtl-pic img{
        width: 100%;
        max-height: 280px;
        object-fit: contain;
    }
}
.rec-voice-dtl-prof{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0 15px;
    margin-bottom: 25px;
    padding: 12px 10px 13px 25px;
    overflow: hidden;
    border-left: solid 5px var(--main-green);
    background: var(--bg-light-gray);
    font-size: 1.8rem;
    line-height: calc(1em + 5px);
}
.rec-voice-dtl-prof::before{
    display: block;
    flex: 0 0 auto;
    width: 100%;
    margin-bottom: 7px;
    color: var(--main-green);
    font-family: var(--font-en);
    font-size: 32px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: .04em;
    content: "INTERVIEW";
}
.rec-voice-dtl-prof__year{
    color: var(--text-gray);
}
.rec-voice-dtl-prof__post{
    font-weight: bold;
}
@media screen and (max-width:768px){
    .rec-voice-dtl-prof{
        order: -1;
        gap: 0 10px;
        margin-bottom: 10px;
        padding: 10px 10px 10px 18px;
        border-left-width: 2px;
        font-size: 1.5rem;
    }
    .rec-voice-dtl-prof::before{
        margin-bottom: 5px;
        font-size: 2.5rem;
    }
}
.rec-voice-dtl-sect:not(:last-child){
    margin-bottom: 35px;
}
@media screen and (min-width:769px){
    .rec-voice-dtl-sect:has(hr){
        clear: both;
        margin-top: 60px;
    }   
}
@media screen and (max-width:768px){
    .rec-voice-dtl-sect:not(:last-child){
        margin-bottom: 21px;
    }
    .rec-voice-dtl-sect:has(+ hr + .rec-voice-dtl-pic){
        margin-bottom: 25px;
    }
}
.rec-voice-dtl-title{
    overflow: hidden;
    padding-bottom: 12px;
    margin-bottom: 18px;
    border-bottom: solid 1px #ccc;
    color: var(--main-green);
    font-size: 2rem;
    font-weight: bold;
    line-height: calc(1em + 8px);
    letter-spacing: .04em;
}
@media screen and (max-width:768px){
    .rec-voice-dtl-title{
        padding-bottom: 11px;
        margin-bottom: 14px;
        font-size: 1.8rem;
    }
}
.rec-voice-dtl-desc hr{
    display: none;
}

/*-------------
requirements
-------------*/
@media screen and (max-width:768px){
    .contents.rec-reqs{
        margin-top: 25px;
    }
}
.rec-reqs-nav{
    margin-bottom: 40px;
    overflow: auto;
}
@media screen and (max-width:768px){
    .rec-reqs-nav{
        margin-bottom: 30px;
        overflow: hidden;
    }
}
.rec-reqs-nav-list{
    display: flex;
    gap: 0 10px;
    padding: 0 30px;
    border-bottom: solid 1px var(--border-gray);
}
@media screen and (min-width:769px){
    .rec-reqs-nav-list:has(.rec-reqs-nav-list-item:nth-child(6)){
        gap: 0 8px;
    }
    .rec-reqs-nav-list:has(.rec-reqs-nav-list-item:nth-child(7)){
        padding: 0 20px;
    }
    .rec-reqs-nav-list:has(.rec-reqs-nav-list-item:nth-child(9)){
        gap: 0 5px;
        padding: 0 10px;
    }
}
@media screen and (max-width:768px){
    .rec-reqs-nav-list{
        flex-wrap: wrap;
        gap: 6px 0;
        padding: 0;
    }
}
.rec-reqs-nav-list-item{
    flex: 1 1 auto;
    max-width: 240px;
    min-width: 100px;
}
@media screen and (max-width:768px){
    .rec-reqs-nav-list-item{
        flex: 0 0 auto;
        width: calc(100% / 3);
        max-width: none;
        min-width: 0;
    }
}
.rec-reqs-nav-list-item a{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 62px;
    padding: 6px 14px 7px;
    border: solid 1px var(--border-gray);
    border-bottom: none;
    border-radius: 8px 8px 0 0;
    background: var(--bg-gray);
    color: var(--text-gray);
    font-feature-settings: "palt" 1;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: calc(1em + 6px);
    letter-spacing: .06em;
    text-align: center;
    transition: background var(--ease), color var(--ease);
}
@media (any-hover: hover){
    .rec-reqs-nav-list-item a:hover{
        background: var(--main-green);
        color: var(--accent-yellow);
    }
}
@media screen and (max-width:768px){
    .rec-reqs-nav-list-item a{
        position: relative;
        min-height: 56px;
        padding: 4px 10px 6px;
        border: none;
        border-radius: 0;
        background: #fff;
        font-size: 1.4rem;
        line-height: calc(1em + 5px);
    }
    .rec-reqs-nav-list-item a::after{
        position: absolute;
        bottom: -1px;
        left: 0;
        width: 100%;
        height: 1px;
        background: var(--border-gray);
        content: "";
    }
}
.rec-reqs-nav-list-item._current a{
    box-shadow: 0 10px 0 #fff;
    background: #fff;
    color: var(--main-green);
    font-weight: 800;
}
@media screen and (max-width:768px){
    .rec-reqs-nav-list-item._current a{
        box-shadow: none;
    }
    .rec-reqs-nav-list-item._current a::after{
        background: var(--main-green);
    }
}

/* rec-reqs-table */
.rec-reqs-table table{
    width: 100%;
    border-top: solid 1px var(--border-gray);
}
.rec-reqs-table tr{
    border-bottom: solid 1px var(--border-gray);
}
.rec-reqs-table :where(th, td){
    padding: 16px 0 18px 30px;
    line-height: calc(1em + 12px);
}
.rec-reqs-table :is(th, td:has(+ td)){
    width: 180px;
    padding-right: 20px;
    background: var(--bg-green);
    color: var(--accent-black);
    color: var(--accent-green);
    font-weight: bold;
}
@media screen and (max-width:768px){
    .rec-reqs-table :is(table, tbody, tr, th, td){
        display: block;
        width: 100%!important;
    }
    .rec-reqs-table table{
        border-left: solid 1px var(--border-gray);
        border-right: solid 1px var(--border-gray);
    }
    .rec-reqs-table :where(th, td){
        padding: 9px 15px 15px;
        line-height: calc(1em + 11px);
    }
    .rec-reqs-table :is(th, td:has(+ td)){
        padding: 12px 15px 13px;
        line-height: calc(1em + 5px);
    }
}

/* rec-reqs-btn */
.rec-reqs-btn{
    width: 400px;
    margin: 50px auto 0;
}
@media screen and (max-width:768px){
    .rec-reqs-btn{
        width: 100%;
        margin-top: 25px;
    }
}
.rec-reqs-btn a{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 66px;
    padding: 9px 58px 11px;
    border-radius: 5px;
    background: var(--main-green);
    color: #fff;
    font-size: 1.6rem;
    font-weight: bold;
    line-height: calc(1em + 8px);
    letter-spacing: .04em;
    transition: color var(--ease);
}
@media (any-hover: hover){
    .rec-reqs-btn a:hover{
        color: var(--accent-yellow);
    }
}
@media screen and (max-width:768px){
    .rec-reqs-btn a{
        min-height: 54px;
        padding: 10px 50px;
        font-size: 1.6rem;
    }
}
.rec-reqs-btn a::after{
    position: absolute;
    top: calc(50% - 14px);
    right: 20px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--bg-arrow_grn), #fff;
    content: "";
    transition: background var(--ease);
}
@media (any-hover: hover){
    .rec-reqs-btn a:hover::after{
        animation: var(--arrow-slide);
    }
}
@media screen and (max-width:768px){
    .rec-reqs-btn a::after{
        top: calc(50% - 13px);
        right: 15px;
        width: 26px;
        height: 26px;
    }
}

/*-------------
contact
-------------*/
.contact-sect-title{
    position: relative;
    margin-bottom: 15px;
    padding-left: 19px;
    font-size: 32px;
    font-weight: bold;
    line-height: calc(1em + 8px);
    letter-spacing: .04em;
}
.contact-sect-title::before{
    position: absolute;
    top: 2px;
    left: 0;
    width: 6px;
    height: calc(100% - 2px);
    background: var(--main-green);
    content: "";
}
@media screen and (max-width:768px){
    .contact-sect-title{
        padding-left: 14px;
        font-size: 2.5rem;
    }
    .contact-sect-title::before{
        top: 1px;
        width: 4px;
    }
}
.contact-sect-lead{
    line-height: calc(1em + 12px);
    letter-spacing: .02em;
}
.contact-sect-lead:not(:last-child){
    margin-bottom: 25px;
}
@media screen and (max-width:768px){
    .contact-sect-lead{
        line-height: calc(1em + 11px);
    }
    .contact-sect-lead:not(:last-child){
        margin-bottom: 20px;
    }
}

/* contact-tel */
.contact-tel{
    margin-bottom: 60px;
}
.contact-tel-num a{
    display: block;
    padding: 25px;
    background: var(--bg-light-gray);
}
.contact-tel-num a img{
    display: block;
    margin: 0 auto;
}
@media screen and (max-width:768px){
    .contact-tel{
        margin-bottom: 50px;
    }
    .contact-tel-num a{
        padding: 20px 10px;
        border-radius: 5px;
    }
    .contact-tel-num a img{
        width: min(315px, 100%);
        height: auto;
    }
}

/* contact-form */
.contact-form{
    display: grid;
    grid-template-columns: auto 1fr;
    margin-top: 35px;
    border-top: solid 1px var(--accent-gray);
    font-size: 1.6rem;
    line-height: calc(1em + 8px);
}
.contact-form__row{
    display: grid;
    grid-template-columns: subgrid;
    grid-column: span 2;
    align-items: flex-start;
    padding: 15px 0;
    border-bottom: solid 1px var(--accent-gray);
}
.contact-form__row._hide{
    display: none!important;
}
@media screen and (max-width:768px){
    .contact-form{
        display: block;
        margin-top: 30px;
    }
    .contact-form__row{
        display: block;
        padding: 11px 0 15px;
    }
}
.contact-form__term{
    display: flex;
    align-items: center;
    gap: 0 15px;
    min-width: 240px;
    min-height: 50px;
    padding: 0 30px 2px 0;
    color: var(--accent-green);
    font-weight: bold;
}
.contact-form__term .__req{
    flex: 0 0 auto;
    margin: 1px 0 0 auto;
    padding: 2px 6px 3px;
    border-radius: 3px;
    background: var(--accent-orange);
    color: #fff;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: calc(1em + 3px);
}
@media screen and (max-width:768px){
    .contact-form__term{
        gap: 0 12px;
        min-width: 0;
        min-height: 0;
        padding: 0 0 10px;
        font-size: 1.4rem;
    }
    .contact-form__term .__req{
        margin-left: 0;
        padding: 1px 5px 2px;
        font-size: 1rem;
    }
}
.contact-form__desc{
    height: 100%;
    padding: 0 30px 0 29px;
    border-left: dotted 1px var(--accent-gray);
}
@media screen and (max-width:768px){
    .contact-form__desc{
        height: auto;
        padding: 0;
        border-left: none;
    }
}
.contact-form__desc .__err-msg{
    font-size: 1.4rem;
    margin-top: 5px;
}
@media screen and (max-width:768px){
    .contact-form__desc .__err-msg{
        font-size: 1.3rem;
    }
}
.contact-form__row:has(.__err-msg) input:is([type="text"],[type="email"],[type="email"],[type="tel"],[type="date"]),
.contact-form__row:has(.__err-msg) textarea{
    background: #ffebeb;
}

/* .contact-form._confirm */
@media screen and (min-width:769px){
    .contact-form._confirm .contact-form__row{
        padding: 20px 0;
    }
}
.contact-form._confirm .contact-form__term{
    min-height: 0;
}
.contact-form._confirm .contact-form__desc{
    padding-bottom: 2px;
}
@media screen and (max-width:768px){
    .contact-form._confirm .contact-form__term{
        padding-bottom: 4px;
    }
    .contact-form._confirm .contact-form__desc{
        padding-bottom: 0;
        font-size: 1.4rem;
    }
}

/* input */
.contact-form__desc input:where([type="text"],[type="email"],[type="tel"],[type="date"]){
    width: 100%;
    height: 50px;
    padding: 0 15px;
    border: solid 1px var(--border-gray);
    border-radius: 5px;
    background: var(--bg-light-gray);
    font-size: 1.6rem;
}
.contact-form__desc input:is([name="txtName"],[name="txtTel"]){
    width: 50%;
}
@media screen and (max-width:768px){
    .contact-form__desc input:where([type="text"],[type="email"],[type="tel"],[type="date"]){
        height: 44px;
        border-radius: 4px;
    }
    .contact-form__desc input:is([name="txtName"],[name="txtTel"]){
        width: max(50%, 180px);
    }
}
.contact-form__desc input[type="date"]{
    position: relative;
}
.contact-form__desc input[type="date"]::-webkit-calendar-picker-indicator {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}
.contact-form__desc input[type="date"]::-webkit-inner-spin-button{
    -webkit-appearance: none;
}
.contact-form__desc input[type="date"]::-webkit-clear-button{
    -webkit-appearance: none;
}

/* textarea */
.contact-form__desc textarea{
    width: 100%;
    min-height: 150px;
    padding: 7px 15px 9px;
    border: solid 1px var(--border-gray);
    border-radius: 5px;
    background: var(--bg-light-gray);
    font-size: 1.6rem;
    resize: vertical;
}
@media screen and (max-width:768px){
    .contact-form__desc textarea{
        min-height: 120px;
        padding: 10px 15px;
        border-radius: 4px;
    }
}

/* checkbox・radio */
.contact-form-chklist{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 20px;
    min-height: 50px;
    padding-bottom: 1px;
    line-height: calc(1em + 5px);
}
@media screen and (max-width:768px){
    .contact-form-chklist{
        min-height: 0;
        padding: 5px 0;
        font-size: 1.4rem;
    }
}
.contact-form-chklist-item input{
    display: none;
}
.contact-form-chklist-item label{
    display: flex;
    align-items: center;
    gap: 0 8px;
    cursor: pointer;
}
@media screen and (max-width:768px){
    .contact-form-chklist-item label{
        gap: 0 6px;
    }
}
.contact-form-chklist-item .__altcheck{
    flex: 0 0 auto;
    position: relative;
    width: 20px;
    height: 20px;
    margin-top: 1px;
    border: solid 1px var(--border-gray);
    border-radius: 3px;
    background: var(--bg-gray);
}
@media screen and (max-width:768px){
    .contact-form-chklist-item .__altcheck{
        width: 18px;
        height: 18px;
        margin-top: 0;
    }
}
.contact-form-chklist-item input:checked + .__altcheck{
    border-color: var(--main-green);
    background: var(--main-green);
}
.contact-form-chklist-item .__altcheck::after{
    opacity: 0;
    position: absolute;
    top: 2px;
    left: 5px;
    transform: rotate(45deg);
    width: 8px;
    height: 12px;
    border-right: solid 3px #fff;
    border-bottom: solid 3px #fff;
    content: "";
}
@media screen and (max-width:768px){
    .contact-form-chklist-item .__altcheck::after{
        width: 6px;
        height: 10px;
        border-width: 2px;
    }
}
.contact-form-chklist-item input:checked + .__altcheck::after{
    opacity: 1;
}
.contact-form-chklist-item .__altradio{
    flex: 0 0 auto;
    position: relative;
    width: 22px;
    height: 22px;
    margin-bottom: -1px;
    border: solid 1px var(--border-gray);
    border-radius: 50%;
    background: var(--bg-gray);
}
.contact-form-chklist-item input:checked + .__altradio{
    border-color: var(--main-green);
    background: #fff;
}
.contact-form-chklist-item .__altradio::after{
    opacity: 0;
    position: absolute;
    top: calc(50% - 6px);
    left: calc(50% - 6px);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--main-green);
    content: "";
}
.contact-form-chklist-item input:checked + .__altradio::after{
    opacity: 1;
}

/* contact-form-datelist */
.contact-form-datelist{
    display: flex;
    gap: 0 20px;
}
.ccontact-form-datelist-item{
    display: flex;
    flex: 1;
    align-items: center;
    gap: 0 10px;
    white-space: nowrap;
}
.ccontact-form-datelist-item input[type="date"]{
    flex: 1 1 auto;
    padding: 0 10px;
}
@media screen and (max-width:768px){
    .contact-form-datelist{
        flex-direction: column;
        gap: 5px 0;
    }
    .ccontact-form-datelist-item{
        width: 100%;
        font-size: 1.4rem;
    }
    .ccontact-form-datelist-item input[type="date"]{
        flex: 0 0 auto;
        width: clamp(180px, 45.3125vw, 100%);
    }
}

/* contact-form-bottom */
.contact-form-bottom{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 20px;
    max-width: 100%;
    margin-top: 50px;
}
@media screen and (max-width:768px){
    .contact-form-bottom{
        flex-direction: column;
        align-items: flex-start;
        gap: 10px 0;
        margin-top: 30px;
    }
}
.contact-form-bottom._hide{
    display: none!important;
}
.contact-form-btn{
    flex: 1 1 auto;
    max-width: 460px;
}
@media screen and (max-width:768px){
    .contact-form-btn{
        width: 100%;
    }
}
.contact-form-btn-inner{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 70px;
    padding: 6px 60px 8px;
    border-radius: 6px;
    background: var(--main-green);
    color: #fff;
    font-size: 1.8rem;
    font-weight: bold;
    line-height: calc(1em + 6px);
    letter-spacing: .02em;
    transition: color var(--ease);
}
@media (any-hover: hover){
    .contact-form-btn-inner:hover{
        color: var(--accent-yellow);
    }
}
@media screen and (max-width:768px){
    .contact-form-btn-inner{
        height: 56px;
        padding: 6px 56px;
        border-radius: 5px;
        color: #fff;
        font-size: 1.6rem;
    }
}
.contact-form-btn-inner::after{
    position: absolute;
    top: calc(50% - 14px);
    right: 20px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--bg-arrow_grn), #fff;
    content: "";
}
@media (any-hover: hover){
    .contact-form-btn-inner:hover::after{
        animation: var(--arrow-slide);
    }
}
@media screen and (max-width:768px){
    .contact-form-btn-inner::after{
        top: calc(50% - 13px);
        right: 15px;
        width: 26px;
        height: 26px;
    }
}
.contact-form-backbtn{
    flex: 0 0 auto;
    min-width: 200px;
}
@media screen and (max-width:768px){
    .contact-form-backbtn{
        width: 50%;
        min-width: 180px;
    }
}
.contact-form-backbtn-inner{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 60px;
    padding: 6px 15px 8px;
    border-radius: 6px;
    background: var(--base-black);
    color: #fff;
    font-size: 1.6rem;
    font-weight: bold;
    line-height: calc(1em + 6px);
    letter-spacing: .02em;
    transition: background var(--ease);
}
@media (any-hover: hover){
    .contact-form-backbtn-inner:hover{
        background: var(--accent-black);
    }
}
@media screen and (max-width:768px){
    .contact-form-backbtn-inner{
        height: 50px;
        padding: 5px 10px;
        border-radius: 5px;
        font-size: 1.4rem;
    }
}

/* contact-mail-msg */
.g-recaptcha{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 15px;
    padding-bottom: 15px;
    border-bottom: solid 1px var(--accent-gray);
}
.contact-mail-msg{
    margin-top: 25px;
    padding: 37px 50px 40px;
    background: var(--bg-gray);
    border-radius: 10px;
}
@media screen and (max-width:768px){
    .contact-mail-msg{
        margin-top: 20px;
        padding: 21px 15px 20px;
        border-radius: 5px;
    }
}
.contact-mail-msg-catch{
    margin-bottom: 10px;
    color: var(--main-green);
    font-size: 2.2rem;
    font-weight: bold;
    line-height: calc(1em + 8px);
}
@media screen and (max-width:768px){
    .contact-mail-msg-catch{
        font-size: 2rem;
    }
}
.contact-mail-msg__btn{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 25px;
}
@media screen and (max-width:768px){
    .contact-mail-msg__btn{
        display: block;
        margin-top: 20px;
    }
}
.contact-mail-msg__btn a{
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 300px;
    min-height: 50px;
    padding: 5px 15px 7px;
    border-radius: 5px;
    background: var(--main-green);
    color: #fff;
    font-size: 1.6rem;
    font-weight: bold;
    transition: color var(--ease);
}
@media (any-hover: hover){
    .contact-mail-msg__btn a:hover{
        color: var(--accent-yellow);
    }
}
@media screen and (max-width:768px){
    .contact-mail-msg__btn a{
        min-width: 0;
        min-height: 48px;
        font-size: 1.4rem;
    }
}

/*-------------
404
-------------*/
.contents._err404{
    margin-top: 0;
}
.err404{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: var(--inner-width);
    margin: 0 auto;
    padding: 50px;
    border-radius: 8px;
    background: var(--bg-gray);
}
@media screen and (max-width:768px){
    .err404{
        padding: 22px 15px 25px;
        border-radius: 4px;
    }
}
.err404-title{
    color: var(--accent-green);
    font-size: 30px;
    font-weight: bold;
    line-height: calc(1em + 8px);
    margin-bottom: 22px;
}
.err404-text{
    text-align: center;
    line-height: 2em;
}
@media screen and (max-width:768px){
    .err404-title{
        margin-bottom: 20px;
        font-size: 2.2rem;
    }
    .err404-text{
        text-align: left;
        line-height: calc(1em + 11px);
    }
}
.err404-btn{
    width: min(360px, 100%);
    margin: 33px auto 0;
}
@media screen and (max-width:768px){
    .err404-btn{
        margin-top: 25px;
    }
}
.err404-btn a{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 60px;
    padding-bottom: 2px;
    border-radius: 5px;
    background: var(--main-green);
    color: #fff;
    font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: .04em;
    transition: color var(--ease);
}
@media (any-hover: hover){
    .err404-btn a:hover{
        color: var(--accent-yellow);
    }
}
@media screen and (max-width:768px){
    .err404-btn a{
        height: 50px;
        padding-bottom: 0;
        font-size: 1.4rem;
    }
}
.err404-btn a::after{
    position: absolute;
    top: calc(50% - 6px);
    right: 20px;
    width: 12px;
    height: 12px;
    background: var(--bg-arrow);
    content: "";
}
@media (any-hover: hover){
    .err404-btn a:hover::after{
        animation: var(--arrow-slide);
    }
}
@media screen and (max-width:768px){
    .err404-btn a::after{
        right: 15px;
    }
}
