@charset "UTF-8";

@font-face {
    font-family: 'Noto Sans JP';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/noto-sans-jp/NotoSansJP-Regular.woff2') format('woff2'),
    url('../fonts/noto-sans-jp/NotoSansJP-Regular.woff') format('woff'),
    url('../fonts/noto-sans-jp/NotoSansJP-Regular.ttf') format('truetype'); 
}
@font-face {
    font-family: 'Noto Sans JP';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/noto-sans-jp/NotoSansJP-Medium.woff2') format('woff2'),
    url('../fonts/noto-sans-jp/NotoSansJP-Medium.woff') format('woff'),
    url('../fonts/noto-sans-jp/NotoSansJP-Medium.ttf') format('truetype'); 
}
@font-face {
    font-family: 'Noto Sans JP';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/noto-sans-jp/NotoSansJP-SemiBold.woff2') format('woff2'),
    url('../fonts/noto-sans-jp/NotoSansJP-SemiBold.woff') format('woff'),
    url('../fonts/noto-sans-jp/NotoSansJP-SemiBold.ttf') format('truetype'); 
}

body{
    font-family: var(--font-main);
    color: var(--cl-text);
    text-align: justify;
    word-break: break-all; 
    text-justify: inter-ideograph;
    text-justify: inter-character;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1;
    color: var(--cl-text);
    overflow-y: scroll;
}

.u-br-sp,
.u-text-sp{
    display: none;
}
@media screen and (max-width: 767px){
    .u-br-pc,
    .u-text-pc{
        display: none;
    }
    .u-br-sp,
    .u-text-sp{
        display: inline;
    }
}

.u-img-w100{
    width: 100%;
    height: auto;
}

a,
.u-link{
    transition: var(--link-transition);
    cursor: pointer;
}
a:hover,
.u-link:hover{
    opacity: var(--link-hover-opacity);
}
@media screen and (max-width: 767px){
    a:hover,
    .u-link:hover{
        opacity: 1;
    }
}

.u-hover-shadow{
    position: relative;
}
.u-hover-shadow:not(.u-hover-shadow--disabled):hover{
    box-shadow: var(--shadow-base), inset 0 0 0 1px var(--cl-gray);
    opacity: 1;
}
@media screen and (max-width: 767px){
    .u-hover-shadow,
    .u-hover-shadow:hover{
        box-shadow: inset 0 0 0 1px var(--cl-link-border);
    }
}

.u-bold{
    font-weight: bold;
}
.u-cl-green{
    color: var(--cl-green);
}

.js-hidden,
[data-delay],
[data-delay="1"].c-section-title::after{
    opacity: 0;
    transition: var(--js-hidden-transition);
}
.js-hidden.js-visible,
.js-hidden-parent.js-visible [data-delay],
.js-hidden-parent.js-visible [data-delay="1"].c-section-title::after{
    opacity: 1;
}
[data-delay="1"]{
    transition-delay: 0s;
}
[data-delay="1"].c-section-title::after,
[data-delay="2"]{
    transition-delay: 0.2s;
}
[data-delay="3"]{
    transition-delay: 0.4s;
}
[data-delay="4"]{
    transition-delay: 0.6s;
}
[data-delay="5"]{
    transition-delay: 0.8s;
}
[data-delay="6"]{
    transition-delay: 1s;
}
[data-delay="7"]{
    transition-delay: 1.2s;
}


/*-------------------------
    layout
-------------------------*/
.l-wrapper{
    width: calc(1200 * var(--px));
    max-width: calc(100% - calc(40 * var(--px)));
    margin: 0 auto;
}
@media screen and (max-width: 767px){
    .l-wrapper{
        width: 100%;
        max-width: none;
    }
    .l-wrapper-sp{
        width: calc(100% - calc(var(--px-sp) * 2));
        margin: 0 auto;
    }
}

.l-contents{
    width: 100%;
    padding-top: calc(100 * var(--px));
    overflow: hidden;
}
@media screen and (max-width: 767px){
    .l-contents{
        padding-top: calc(75 * var(--px));
    }
}

.l-main{
    padding-bottom: var(--pb-main);
}
.l-main--beige{
    background: var(--cl-beige-light);
}

.l-header__main{
    width: 100%;
    background: var(--cl-white);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background: var(--cl-white);
    box-shadow: var(--shadow-header);
    transition: var(--link-transition);
}
.l-header__wrapper,
.l-header__menu-link{
    display: flex;
    align-items: center;
}
.l-header__logo{
    width: calc(240 * var(--px));
    padding-bottom: calc(17 * var(--px));
}
.l-header__menu{
    display: flex;
    align-items: center;
    margin: 0 auto;
}
.l-header__menu-item:nth-child(n+2){
    margin-left: calc(35 * var(--px));
}
.l-header__menu-link{
    font-weight: bold;
    font-size: var(--fs-text-m);
    position: relative;
    height: calc(100 * var(--px));
}
.l-header__menu-link:hover,
.l-header__menu-link--active{
    opacity: 1;
    color: var(--cl-green);
}
.l-header__menu-link::after{
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 0%;
    height: calc(3 * var(--px));
    background-color: var(--cl-green);
    transition: width 0.3s ease;
}
.l-header__menu-link:hover::after,
.l-header__menu-link--active::after{
    width: 100%;
}
.l-header__button{
    display: flex;
}
.l-header__button-item:nth-child(n+2){
    margin-left: calc(15 * var(--px));
}
.l-header__button-link{
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(105 * var(--px));
    height: calc(55 * var(--px));
    font-size: var(--fs-text-m);
    color: var(--cl-white);
    font-weight: bold;
    border-radius: var(--radius-base);
}
.l-header__button-link--fc{
     background: var(--cl-fc);
}
.l-header__button-link--recruit{
     background: var(--cl-recruit);
}
.l-header__navi-menu{
    display: none;
}
.l-header__bg{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9998;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(10px);
}
.l-header__company{
    display: none;
    position: fixed;
    top: calc(100 * var(--px));
    left: 0;
    z-index: 9999;
    width: 100%;
    background: var(--cl-gray-light);
    padding: calc(25 * var(--px)) 0;
    box-shadow: var(--shadow-header);
}
.l-header__company-menu{
    display: flex;
    flex-wrap: wrap;
}
.l-header__company-item{
    width: calc((100% / 5) - ((100 / 5) * var(--px)));
    margin: calc(20 * var(--px)) calc(20 * var(--px)) 0 0;
}
.l-header__company-item:nth-child(5n){
    margin-right: 0;
}
.l-header__company-item:nth-child(-n+5){
    margin-top: 0;
}
@media screen and (max-width: 767px){
    .l-header__wrapper{
        height: calc(75 * var(--px));
    }
    .l-header__logo{
        width: calc(205 * var(--px));
        padding-bottom: calc(16 * var(--px));
    }
    .l-header__menu,
    .l-header__button{
        display: none;
    }
    .l-header__navi-menu{
        width: calc(50 * var(--px));
        height: calc(50 * var(--px));
        background: var(--cl-orange);
        color: #fff;
        font-weight: bold;
        border-radius: var(--radius-base);
        font-size: var(--fs-text-3s);
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: calc(3 * var(--px));
        margin: 0 0 0 auto;
        position: relative;
        flex-direction: column;
    }
    .l-header__navi-menu-close,
    .l-header__navi-menu.l-header__navi-menu--open .l-header__navi-menu-menu{
        display: none;
    }
    .l-header__navi-menu--open .l-header__navi-menu-close{
        display: inline;
    }
    .l-header__navi-menu-icon{
        width: calc(25 * var(--px));
        height: calc(10 * var(--px));
        margin-bottom: calc(8 * var(--px));
        position: relative;
    }
    .l-header__navi-menu-icon::before,
    .l-header__navi-menu-icon::after{
        content: "";
        width: 100%;
        height: 100%;
        height: 2px;
        background: var(--cl-white);
        position: absolute;
        left: 0;
        transition: var(--link-transition);
    }
    .l-header__navi-menu-icon::before{
        top: 0;
    }
    .l-header__navi-menu-icon::after{
        bottom: 0;
    }
    .l-header__navi-menu.l-header__navi-menu--open .l-header__navi-menu-icon::before{
        transform: translateY(3px) rotate(30deg);
    }
    .l-header__navi-menu.l-header__navi-menu--open .l-header__navi-menu-icon::after{
        transform: translateY(-5px) rotate(-30deg);
    }
}

.l-footer{
    background: var(--cl-footer);
    padding: var(--pt-footer) 0 var(--pb-footer);
    position: relative;
    z-index: 10;
}
.l-footer__main{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.l-footer__head{
    display: flex;
    align-items: center;
}
.l-footer__logo a{
    display: flex;
    align-items: flex-start;
}
.l-footer__logo img{
    width: auto;
}
.l-footer__logo img:first-child{
    height: calc(56.66 * var(--px));
    flex-shrink: 0;
}
.l-footer__logo img:last-child{
    height: calc((56.66 * var(--px)) * 1.15625);
    margin-left: calc(56.66 * var(--px) * 0.28);
    flex-shrink: 0;
}
.l-footer__sns{
    display: flex;
    justify-content: center;
    margin-left: calc(25 * var(--px));
}
.l-footer__sns-link{
    color: #fff;
    font-size: var(--fs-footer-sns);
}
.l-footer__sns-item{
    margin-right: calc(25 * var(--px));
}
.l-footer__sns-item:last-child{
    margin-right: 0;
}
.l-footer__menu{
    display: flex;
}
.l-footer__menu.l-footer__menu--sp{
    display: none;
}
.l-footer__menu-item:nth-child(n+2){
    margin-left: calc(30 * var(--px));
}
.l-footer__menu-link{
    font-size: var(--fs-text-ss);
    color: #fff;
    position: relative;
}
.l-footer__menu--main .l-footer__menu-link,
.l-footer__menu--sp .l-footer__menu-link{
    font-weight: bold;
}
.l-footer__menu-link:hover{
    opacity: 1;
}
.l-footer__menu-link::before{
    color: var(--cl-gray-dark);
    content: '\f054';
    font-family: var(--font-icon);
    font-weight: bold;
    margin-right: calc(10 * var(--px));
}
.l-footer__menu-text{
    position: relative;
    padding: calc(5 * var(--px)) 0;
    display: inline-block;
}
.l-footer__menu-text::before {
    background: var(--cl-white);
    bottom: 0;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform .3s;
    width: 100%;
}
.l-footer__menu-link:hover .l-footer__menu-text::before{
    transform: scale(1, 1);
}
.l-footer__company{
    background: var(--cl-footer-company);
    border-radius: var(--radius-base);
    margin-top: calc(40 * var(--px));
    overflow: hidden;
}
.l-footer__company-title{
    background: var(--cl-footer-company-title);
    font-size: var(--fs-text-s);
    text-align: center;
    color: #fff;
    font-weight: bold;
    padding: calc(7 * var(--px));
}
.l-footer__company .l-footer__menu{
    flex-grow: 1;
    justify-content: center;
    padding: calc(25 * var(--px)) 0;
}
.l-footer__privacy{
    margin-top: calc(40 * var(--px));
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.l-footer__copy{
    font-size: var(--fs-text-3s);
    color: var(--cl-gray-dark);
}
.l-footer__privacy .l-footer__menu-link{
    font-size: var(--fs-text-3s);
}
@media screen and (max-width: 767px) {
    .l-footer__main{
        display: block;
    }
    .l-footer__head{
        display: block;
    }
    .l-footer__logo{
        display: flex;
        justify-content: center;
    }
    .l-footer__logo img:first-child{
        height: calc(48.39 * var(--px));
    }
    .l-footer__logo img:last-child{
        height: calc((48.39 * var(--px)) * 1.15625);
        margin-left: calc(48.39 * var(--px) * 0.28);
    }
    .l-footer__menu.l-footer__menu--sp{
        display: flex;
    }
    .l-footer__menu,
    .l-footer__company,
    .l-footer__privacy,
    .l-footer__copy{
        margin: calc(20 * var(--px)) 0 0;
    }
    .l-footer__sns{
        margin: calc(15 * var(--px)) 0 0;
    }
    .l-footer__menu{
        flex-wrap: wrap;
    }
    .l-footer__menu-item,
    .l-footer__menu-item:nth-child(n+2){
        width: 50%;
        margin: 0;
    }
    .l-footer__menu-item:nth-child(n+3),
    .l-footer__menu-item.l-footer__menu-item--business{
        margin-top: calc(10 * var(--px));
    }
    .l-footer__company .l-footer__menu{
        margin: 0;
        padding: calc(15 * var(--px));
        justify-content: flex-start;
    }
    .l-footer__menu-item.l-footer__menu-item--fc{
        order: 1;
    }
    .l-footer__menu-item.l-footer__menu-item--recruit{
        order: 2;
    }
    .l-footer__menu-item.l-footer__menu-item--business{
        order: 3;
    }
    .l-footer__menu-item.l-footer__menu-item--pc,
    .l-footer__menu-text::before{
        display: none;
    }
    .l-footer__menu-item.l-footer__menu-item--fc,
    .l-footer__menu-item.l-footer__menu-item--recruit{
        margin-top: 0;
    }
    .l-footer__privacy{
        flex-direction: column-reverse;
    }
    .l-footer__privacy .l-footer__menu{
        margin-top: 0;
    }
}

.l-sp-nav{
    display: none;
}
@media screen and (max-width: 767px){
    .l-sp-nav{
        background: var(--cl-gray-light);
        width: 100%;
        z-index: 9998;
        position: relative;
        padding: calc(75 * var(--px)) var(--px-sp) calc(35 * var(--px));
        min-height: 100vh;
        min-height: 100svh;
    }
    .l-sp-nav__button{
        padding-top: calc(20 * var(--px));
        display: flex;
        justify-content: space-between;
    }
    .l-sp-nav__button-item{
        width: calc(50% - (10 * var(--px)));
    }
    .l-sp-nav__button-link{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: calc(40 * var(--px));
        font-size: var(--fs-text-m);
        color: var(--cl-white);
        font-weight: bold;
        border-radius: var(--radius-base);
    }
    .l-sp-nav__button-link--fc{
        background: var(--cl-fc);
    }
    .l-sp-nav__button-link--recruit{
        background: var(--cl-recruit);
    }
    .l-sp-nav__list{
        margin-top: calc(25 * var(--px));
    }
    .l-sp-nav__company-title + .l-sp-nav__list{
        margin-top: calc(15 * var(--px));
    }
    .l-sp-nav__item:nth-child(n+2){
        margin-top: calc(15 * var(--px));
    }
    .l-sp-nav__link{
        display: flex;
        align-items: center;
        height: calc(45 * var(--px));
        padding: 0 calc(20 * var(--px));
        font-size: var(--fs-text-m);
        line-height: var(--lh-m);
        font-weight: bold;
        background: var(--cl-white);
        border-radius: var(--radius-base);
    }
    .l-sp-nav__link::after{
        content: '\f054';
        font-family: var(--font-icon);
        font-weight: bold;
        background: var(--cl-arrow);
        color: var(--cl-white);
        font-size: var(--fs-arrow);
        width: var(--size-arrow);
        height: var(--size-arrow);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 0 0 auto;
    }
    .l-sp-nav__link .fa-solid{
        display: block;
        width: var(--fs-text-l);
        text-align: center;
        font-size: var(--fs-text-l);
        margin-right: calc(15 * var(--px));
    }
    .l-sp-nav__company{
        margin-top: calc(20 * var(--px));
        border-radius: var(--radius-base);
        background: var(--cl-beige);
        padding: calc(20 * var(--px));
    }
    .l-sp-nav__company-title{
        font-size: var(--fs-text-m);
        font-weight: bold;
    }
    .l-sp-nav__company .l-sp-nav__link{
        font-weight: 500;
    }
    .l-sp-nav__privacy{
        display: flex;
        flex-wrap: wrap;
        margin-top: calc(25 * var(--px));
    }
    .l-sp-nav__privacy-item{
        width: 50%;
    }
    .l-sp-nav__privacy-item:nth-child(n+3){
        margin-top: calc(15 * var(--px));
    }
    .l-sp-nav__privacy-link{
        font-size: var(--fs-text-s);
    }
    .l-sp-nav__privacy-link::before{
        color: var(--cl-gray-dark);
        content: '\f054';
        font-family: var(--font-icon);
        font-weight: bold;
        margin-right: calc(10 * var(--px));
    }
    .l-sp-nav__close{
        background: var(--cl-text);
        width: calc(100 * var(--px));
        height: calc(40 * var(--px));
        border-radius: var(--radius-base);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: var(--fs-text-s);
        margin: calc(25 * var(--px)) auto 0;
        color: var(--cl-white);
        font-weight: bold;
    }
    .l-sp-nav__close .fa-solid{
        font-size: var(--fs-sp-nav-close);
        margin: calc(1 * var(--px)) calc(6 * var(--px)) 0 0;
    }
}

/*-------------------------
    component
-------------------------*/
.c-page-title{
    background: var(--cl-main);
    position: relative;
}
.c-page-title::after{
    content: "";
    width: 50%;
    height: 100%;
    background: var(--cl-main-light);
    clip-path: polygon(calc(120 * var(--px)) 0, 100% 0, 100% 100%, 0 100%);
    position: absolute;
    top: 0;
    right: 0;
}
.c-page-title__wrapper{
    padding: calc(33 * var(--px)) 0;
    position: relative;
    z-index: 1;
}
.c-page-title__title{
    font-size: var(--fs-title-ll);
    line-height: var(--lh-s);
    font-weight: bold;
}
@media screen and (max-width: 767px){
    .c-page-title::after{
        clip-path: polygon(calc(80 * var(--px)) 0, 100% 0, 100% 100%, 0 100%);
    }
    .c-page-title__wrapper{
        padding: calc(23.1 * var(--px)) 0;
    }
}

.c-breadcrumb{
    font-size: 0;
    padding-top: var(--pt-breadcrumb);
    background: var(--cl-white);
}
.c-breadcrumb--pb{
    padding-bottom: var(--pb-breadcrumb);
}
.c-breadcrumb__list{
    display: block;
}
.c-breadcrumb__item{
    display: inline;
    font-size: var(--fs-text-3s);
    line-height: var(--lh-m);
}
.c-breadcrumb__item:not(:last-child)::after{
     content: ">";
     margin: 0 calc(10 * var(--px));
}
.c-breadcrumb__link{
    text-decoration: underline;
    text-underline-offset: 3px;
}
@media screen and (max-width: 767px){å
    .c-breadcrumb{
        padding-inline: var(--px-sp);
    }
    .c-breadcrumb__item:not(:last-child)::after{
        margin: 0 calc(8 * var(--px));
    }
    .c-breadcrumb__link{
        text-underline-offset: 1px;
    }
}

.c-section-title{
    text-align: center;
    font-size: var(--fs-title-3l);
    line-height: var(--lh-s);
    font-weight: 500;
    letter-spacing: var(--ls-title);
}
.c-section-title::after{
    content: "";
    width: calc(100 * var(--px));
    height: 1px;
    background: var(--cl-gray-darker);
    margin: calc(25 * var(--px)) auto 0;
    display: block;
}
@media screen and (max-width: 767px){
    .c-section-title::after{
        width: calc(50 * var(--px));
        margin-top: calc(20 * var(--px));
    }
}

.c-brackets-title{
    font-size: var(--fs-title-3l);
    line-height: var(--lh-s);
    font-weight: 500;
    text-align: center;
    letter-spacing: var(--ls-title);
}
.c-brackets-title::before{
    content: "〈";
    font-weight: 400;
}
.c-brackets-title::after{
    content: "〉";
    font-weight: 400;
}
.c-brackets-title--small{
    letter-spacing: 0;
    font-size: var(--fs-title-m);
}

.c-sub-title{
    font-size: var(--fs-title-l);
    line-height: var(--lh-s);
    font-weight: 500;
    padding-bottom: calc(15 * var(--px));
    border-bottom: 2px solid var(--cl-gray);
    letter-spacing: var(--ls-sub-title);
}
@media screen and (max-width: 767px){
    .c-sub-title{
        padding-bottom: calc(10 * var(--px));
    }
}

.c-blank-link[target="_blank"] .c-blank-link__text::after{
    content: '\f08e';
    display: inline-block;
    transform: scale(0.8);
    transform-origin: left center;
    font-family: var(--font-icon);
    font-weight: bold;
    margin-left: calc(7 * var(--px));
}

.c-company-link{
    display: block;
    background: var(--cl-white);
    border-radius: var(--radius-base);
    padding: calc(20 * var(--px));
}
.c-company-link::after{
    content: '\f054';
    font-family: var(--font-icon);
    font-weight: bold;
    background: var(--cl-arrow);
    color: var(--cl-white);
    font-size: var(--fs-arrow);
    width: var(--size-arrow);
    height: var(--size-arrow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: calc(20 * var(--px)) auto 0;
}
.c-company-link__icon{
    font-size: var(--fs-company-icon);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.c-company-link__text{
    font-size: var(--fs-text-m);
    font-weight: 500;
    text-align: center;
    margin-top: calc(20 * var(--px));
}
@media screen and (max-width: 767px){
    .c-company-link{
        display: flex;
        align-items: center;
        height: calc(45 * var(--px));
        padding: 0 calc(20 * var(--px));
    }
    .c-company-link::after{
        margin: 0 0 0 auto;
    }
    .c-company-link__icon{
        display: block;
        width: var(--fs-company-icon);
        text-align: center;
        margin: 0 calc(15 * var(--px)) 0 0;
    }
    .c-company-link__text{
        margin: 0;
    }
}

.c-entry{
    background: url(../img/common/entry_bg.jpg) center top / cover no-repeat;
    padding: var(--pt-footer) 0 var(--pb-footer);
    position: relative;
    z-index: 10;
}
.c-entry__item:nth-child(n+2){
    margin-top: calc(30 * var(--px));
}
.c-entry__heading{
    color: #fff;
    text-shadow: 0 0 16px rgba(0, 0, 0, 0.5);
    text-align: center;
    font-size: var(--fs-title-3l);
    line-height: var(--lh-m);
    letter-spacing:var(--ls-title);
    font-weight: 500;
}
.c-entry__list{
    margin-top: var(--mt-section-title-bottom-narrow);
}
.c-entry__button{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: calc(140 * var(--px));
    border-radius: var(--radius-base);
    padding-inline: calc(60 * var(--px));
    color: var(--cl-white);
    position: relative;
}
.c-entry__button::after{
    content: '\f054';
    font-family: var(--font-icon);
    font-weight: bold;
    background: #fff;
    font-size: var(--fs-arrow);
    width: var(--size-arrow);
    height: var(--size-arrow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: calc(100 * var(--px));
    top: 50%;
    transform: translateY(-50%);
}
.c-entry__button--recruit::after{
    color: var(--cl-recruit);
}
.c-entry__button--fc::after{
    color: var(--cl-fc);
}
.c-entry__button--recruit{
    background: var(--cl-recruit);
}
.c-entry__button--fc{
    background: var(--cl-fc);
}
.c-entry__title{
    width: calc(210 * var(--px));
    font-size: var(--fs-title-m);
    color: #fff;
    font-weight: 500;
    display: flex;
    position: relative;
}
.c-entry__title::after{
    content: '\f08e';
    display: inline-block;
    transform-origin: left center;
    font-family: var(--font-icon);
    font-size: var(--fs-text-m);
    font-weight: bold;
    position: absolute;
    top: 50%;
    right: calc(-75 * var(--px));
    transform: translateY(-50%);
}
.c-entry__button--recruit .c-entry__title{
    justify-content: space-between;
}
.c-entry__button--fc .c-entry__title{
    flex-direction: column;
}
.c-entry__title-logo{
    margin-bottom: calc(13 * var(--px));
}
.c-entry__text{
    width: calc(505 * var(--px));
    font-size: var(--fs-text-s);
    line-height: var(--lh-m);
    text-align: left;
    margin-right: calc(50 * var(--px));
}
@media screen and (max-width: 767px){
    .c-entry{
        background-image: url(../img/common/entry_bg_sp.jpg);
    }
    .c-entry__item:nth-child(n+2){
        margin-top: calc(15 * var(--px));
    }
    .c-entry__button{
        flex-direction: column;
        align-items: flex-start;
        height: auto;
        padding: calc(28 * var(--px)) calc(19 * var(--px));
    }
    .c-entry__button--fc{
        padding: calc(19 * var(--px)) calc(20 * var(--px));
    }
    .c-entry__button::after{
        right: calc(20 * var(--px));
        top: 50%;
        bottom: calc(10 * var(--px));
    }
    .c-entry__button--fc::after{
        top: calc(50% + (15 * var(--px)));
    }
    .c-entry__title{
        width: auto;
        padding-right: calc(25 * var(--px));
        font-size: var(--fs-title-m);
    }
    .c-entry__title::after{
        right: 0;
    }
    .c-entry__button--recruit .c-entry__title{
        justify-content: flex-start;
        font-size: var(--fs-title-ll);
    }
    .c-entry__button--fc .c-entry__title{
        flex-direction: row;
    }
    .c-entry__title-logo{
        width: calc(120 * var(--px));
        margin: 0 calc(7 * var(--px)) 0 0;
    }
    .c-entry__text{
        width: 100%;
        margin: calc(10 * var(--px)) 0 0;
        padding-right: calc(50 * var(--px));
    }
}

.c-button{
    background: var(--cl-button);
    width: calc(300 * var(--px));
    height: calc(75 * var(--px));
    border-radius: var(--radius-base);
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: var(--fs-text-m);
    line-height: var(--lh-m);
    padding-inline: calc(25 * var(--px));
}
.c-button--back{
    width: calc(370 * var(--px));
    justify-content: center;
}
.c-button--l{
    width: calc(320 * var(--px));
}
.c-button--2l{
    width: calc(370 * var(--px));
}
.c-button--3l{
    width: calc(470 * var(--px));
}
.c-button--center{
    margin: 0 auto;
}
.c-button:not(.c-button--back)::after,
.c-button--back::before{
    content: '\f054';
    font-family: var(--font-icon);
    font-weight: bold;
    background: var(--cl-text);
    color: var(--cl-button);
    font-size: var(--fs-arrow);
    width: var(--size-arrow);
    height: var(--size-arrow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.c-button--back::before{
     content: '\f053';
     margin-right: calc(15 * var(--px));
}
.c-button[target="_blank"] .c-button__text::after{
    content: '\f08e';
    font-family: var(--font-icon);
    margin-left: calc(10 * var(--px));
    font-size: 0.8em;
    vertical-align: 0.1em;
}
@media screen and (max-width: 767px){
    .c-button{
        padding-inline: calc(20 * var(--px));
    }
    .c-button{
        width: calc(225 * var(--px));
        height: calc(60 * var(--px));
    }
    .c-button--back,
    .c-button--l,
    .c-button--2l,
    .c-button--3l{
        width: 100%;
    }
    .c-button--3l{
        height: calc(70 * var(--px));
    }
}

.c-news-list__item{
    border-bottom: 1px solid var(--cl-gray);
}
.c-news-list__link{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: calc(30 * var(--px)) calc((50 * var(--px)) + var(--size-arrow) + (50 * var(--px))) calc(30 * var(--px)) calc(50 * var(--px));
    position: relative;
}
.c-news-list__link::after{
    content: '\f054';
    font-family: var(--font-icon);
    font-weight: bold;
    background: var(--cl-gold);
    color: var(--cl-text);
    font-size: var(--fs-arrow);
    width: var(--size-arrow);
    height: var(--size-arrow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: calc(50 * var(--px));
    top: calc(50% - (var(--size-arrow) / 2));
}
.c-news-list__category{
    display: flex;
    align-items: center;
}
.c-news-list__date{
    font-size: var(--fs-text-date);
    flex-shrink: 0;
}
.c-news-list__category{
    flex-wrap: wrap;
    margin: calc(-7 * var(--px)) calc(-7 * var(--px)) calc(-7 * var(--px)) calc(20 * var(--px));
}
.c-news-list__category-item{
    font-weight: 500;
    font-size: var(--fs-text-news-icon);
    background: var(--cl-gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(24 * var(--px));
    border-radius: calc(12 * var(--px));
    padding-inline: calc(12 * var(--px));
    margin: calc(7 * var(--px));
}
.c-news-list__title{
    width: 100%;
    font-weight: 500;
    line-height: var(--lh-m);
    font-size: var(--fs-text-ml);
    margin-top: calc(12 * var(--px));
}
.c-news-list__link[target="_blank"] .c-news-list__title::after{
    content: '\f08e';
    display: inline-block;
    transform: scale(0.8);
    transform-origin: left center;
    font-family: var(--font-icon);
    font-weight: bold;
    margin-left: calc(12 * var(--px));
}
@media screen and (max-width: 767px){
    .c-news-list__link{
        padding: calc(20 * var(--px)) calc(var(--size-arrow) + (20 * var(--px))) calc(20 * var(--px)) 0;
    }
    .c-news-list__link::after{
        right: 0;
    }
    .c-news-list__date{
        order: 1;
    }
    .c-news-list__title{
        order: 2;
        margin-top: calc(8 * var(--px));
    }
    .c-news-list__category{
        width: 100%;
        order: 3;
        flex-wrap: wrap;
        margin: calc(6 * var(--px)) calc(-4 * var(--px)) calc(-4 * var(--px)) calc(-4 * var(--px));
    }
    .c-news-list__category-item{
        height: calc(25 * var(--px));
        border-radius: calc(13 * var(--px));
        padding-inline: calc(8 * var(--px));
        margin: calc(4 * var(--px));
        min-width: calc((130 / 300) * 100%);
    }
    .c-news-list__link[target="_blank"] .c-news-list__title::after{
        margin-left: calc(8 * var(--px));
    }
}

.c-details-back{
    margin-top: calc(50 * var(--px));
}
@media screen and (max-width: 767px){
    .c-details-back{
        margin-top: calc(30 * var(--px));
    }
}

.c-blank-mark{
    display: block;
    position: relative;
    overflow: hidden;
}
.c-blank-mark::before{
    content: '\f08e';
    font-family: var(--font-icon);
    font-weight: bold;
    background: var(--cl-arrow);
    color: var(--cl-white);
    font-size: var(--fs-arrow);
    width: calc(40 * var(--px));
    height: calc(40 * var(--px));
    border-radius: var(--radius-base) 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 0;
    right: 0;
}
.c-blank-mark--small::before{
    width: calc(30 * var(--px));
    height: calc(30 * var(--px));
    font-size: calc(var(--fs-arrow) * 0.75);
}
@media screen and (max-width: 767px){
    .c-blank-mark::before,
    .c-blank-mark--small::before{
        width: calc(30 * var(--px));
        height: calc(30 * var(--px));
    }
    .c-blank-mark--small::before{
        width: calc(24 * var(--px));
        height: calc(24 * var(--px));
    }
}