@charset "UTF-8";
/*====================================================================================================

　CSS構成

　//絶対に変更しないCSS
　- reset.css           全てのブラウザ固有CSSをリセットするCSS。基本触らないこと。

　//基本的には変更しないCSS
　- base.css            基本の文字設定や、Webフォントの読み込みなど。基本触らなくてもOK。

　//メインで利用しているCSS
　- common.css          ヘッダー、フッター、下層ページのタイトルなど、共通ページレイアウトを記載したCSS
　- stlye.css           各ページ固有のレイアウトを記載したCSS

　//補助的に利用しているCSS
　- module.css          見出しやリスト、テーブルなど、共通利用できるパーツをまとめたCSS
　- utility.css         マージンやパディング、文字サイズや文字色など、補助的に利用できるCSS

====================================================================================================*/



/*/////////////////////////////////////////////////////////////////
  index.html
/////////////////////////////////////////////////////////////////*/

/*------------------------------------------------------------------
  home-hero
------------------------------------------------------------------*/

/*  home-hero
------------------------------------------------------------------*/
.home-hero{
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.home-hero::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 140px;
    background: linear-gradient(0deg,#fff 0%, #e2e2e2 28%, #787878 100%);
    mix-blend-mode: multiply;
    content: "";
    z-index: 1;
}
/*  home-hero-title
------------------------------------------------------------------*/
.home-hero-title{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 50px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    line-height: 1.3;
    white-space: nowrap;
    text-shadow: 0 1px 15px rgba(0,0,0,.3);
    z-index: 2;
}
@media screen and (max-width:767px){
    .home-hero-title{
        top: initial;
        left: 30px;
        bottom: 50px;
        transform: initial;
        font-size: 9.2vw;
        text-align: left;
    }
}
/*  home-hero-slider
------------------------------------------------------------------*/
.home-hero-slider{
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.home-hero-slider .swiper-slide{
    height: 100vh;
    height: 100svh;
}
.home-hero-slider .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
}
.home-hero-slider .swiper-slide.swiper-slide-active img,
.home-hero-slider .swiper-slide.swiper-slide-duplicate-active img,
.home-hero-slider .swiper-slide.swiper-slide-prev img{
    animation: homeHeroSlide 7s linear 0s normal both;
}
@keyframes homeHeroSlide {
    from{
        transform: scale(1);
    }
    to{
        transform: scale(1.1);
    }
}
@media screen and (max-width:991px){
    .home-hero-slider{
        width: 100%;
    }
}

/*------------------------------------------------------------------
  home-lead
------------------------------------------------------------------*/

/*  home-lead
------------------------------------------------------------------*/
.home-lead{
    position: relative;
    padding: 120px 0 60px;
    overflow: hidden;
    z-index: 1;
}
.home-lead::after{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 594px;
    background: url(../images/home/lead-bg.jpg) no-repeat bottom center / 100% 100%;
    overflow: hidden;
    content: "";
    z-index: -1;
}
@media screen and (max-width:991px){
    .home-lead{
        padding: 50px 0;
    }
    .home-lead::after{
        height: 390px;
    }
}
/*  home-lead-inner
------------------------------------------------------------------*/
.home-lead-inner{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    column-gap: 60px;
    margin-bottom: 210px;
}
@media screen and (max-width:1199px){
    .home-lead-inner{
        margin-bottom: 120px;
    }
}
@media screen and (max-width:991px){
    .home-lead-inner{
        display: block;
        margin-bottom: 50px;
    }
}
/*  home-lead-detail
------------------------------------------------------------------*/
.home-lead-detail{
    position: relative;
    flex-shrink: 0;
    z-index: 2;
}
/*  home-lead-title
------------------------------------------------------------------*/
.home-lead-title{
    margin-bottom: 1em;
    font-size: 30px;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1.5;
}
@media screen and (max-width:1199px){
    .home-lead-title{
        font-size: 27px;
    }
}
/*  home-lead-text
------------------------------------------------------------------*/
.home-lead-text{
    margin-bottom: 1.5em;
}
.home-lead-text:last-of-type{
    margin-bottom: 0;
}
.home-lead-text strong{
    font-size: 20px;
    font-weight: bold;
}
/*  home-lead-card-slider
------------------------------------------------------------------*/
.home-lead-card-slider{
    width: 435px;
}
.home-lead-card-slider .swiper-slide{
    position: relative;
    aspect-ratio: 435 / 549;
    border-radius: 30px;
    overflow: hidden;
    transform-origin: center 130%;
    z-index: 1;
}
.home-lead-card-slider .swiper-slide::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #88E3D9;
    content: "";
    transition: .8s ease-out;
    z-index: 1;
}
.home-lead-card-slider .swiper-slide:not(.swiper-slide-active):not(.swiper-slide-prev):not(.swiper-slide-next) {
    opacity: 0 !important;
    visibility: hidden;
}
.home-lead-card-slider .swiper-slide.swiper-slide-active::after{
    opacity: 0;
}
.home-lead-card-slider .swiper-slide.swiper-slide-next::after{
    opacity: 1;
    mix-blend-mode: hard-light;
}
.home-lead-card-slider .swiper-button-next{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: transparent;
}
@media screen and (max-width:1199px){
    .home-lead-card-slider{
        width: 360px;
    }
}
@media screen and (max-width:991px){
    .home-lead-card-slider{
        display: none;
    }
}
/*  home-lead-loop-photos
------------------------------------------------------------------*/
.home-lead-loop-photos{
    display: flex;
}
.home-lead-loop-photos > div{
    display: flex;
    animation: homeAboutLoopPhotos 30s infinite linear;
}
.home-lead-loop-photos > div > figure{
    width: 400px;
    margin-right: 20px;
    border-radius: 20px;
    overflow: hidden;
}
@keyframes homeAboutLoopPhotos {
    from{
        transform: translateX(0);
    }
    to{
        transform: translateX(-100%);
    }
}
@media screen and (max-width:991px){
    .home-lead-loop-photos > div > figure{
        width: 330px;
    }
}

/*------------------------------------------------------------------
  home-about
------------------------------------------------------------------*/

/*  home-about
------------------------------------------------------------------*/
.home-about{
    position: relative;
    padding: 120px 0;
    z-index: 1;
}
@media screen and (max-width:991px){
    .home-about{
        padding: 80px 0;
    }
}
/*  home-about-panel-wrap
------------------------------------------------------------------*/
.home-about-panel-wrap{
    position: relative;
    z-index: 1;
}
/*  home-about-panel-section
------------------------------------------------------------------*/
.home-about-panel-section{
    height: calc(100vh - 150px);
}
@media screen and (max-width:991px){
    .home-about-panel-section{
        height: calc(100vh - 120px);
    }
}
@media screen and (max-width:767px){
    .home-about-panel-section{
        height: calc(100vh - 90px);
    }
}
/*  home-about-panel
------------------------------------------------------------------*/
.home-about-panel{
    position: relative;
    display: block;
    z-index: 1;
}
.home-about-panel .image{
    position: relative;
    aspect-ratio: 1280 / 480;
    border-radius: 30px;
    overflow: hidden;
    z-index: 1;
}
.home-about-panel .image::after{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(30,30,30,.5) 100%);
    mix-blend-mode: multiply;
    content: "";
    z-index: 1;
}
.home-about-panel .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home-about-panel .body{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 3.125% 6.25% 4.6875% 6.25%;
    z-index: 2;
}
.home-about-panel .caption{
    margin-bottom: auto;
    font-family: var(--en-font);
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    line-height: 1;
}
.home-about-panel .caption .num{
    font-size: 40px;
}
.home-about-panel .titlearea{
    display: flex;
    align-items: center;
    column-gap: 20px;
    width: fit-content;
    margin-bottom: 30px;
}
.home-about-panel .titlearea .title{
    font-size: 48px;
    font-weight: 600;
    color: #fff;
    line-height: 1;
}
.home-about-panel .titlearea .arrow{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid #fff;
    border-radius: 50%;
    transition: .4s ease-out;
    z-index: 1;
}
.home-about-panel .titlearea .icon{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 14px;
    height: 14px;
    column-gap: 14px;
    overflow: hidden;
    z-index: 1;
}
.home-about-panel .icon::before,
.home-about-panel .icon::after{
    display: block;
    width: 14px;
    height: 14px;
    content: "";
    flex-shrink: 0;
    background: url(../images/common/icon-arrow-white.svg) no-repeat center / contain;
    transform: translateX(-200%);
    transition: .4s ease-out;
}
.home-about-panel .icon::before{
    opacity: 0;
}
.home-about-panel .icon::after{
    opacity: 1;
}
.home-about-panel .text{
    font-weight: 600;
    color: #fff;
}
/* ホバー時動作 */
@media (hover:hover) {
    .home-about-panel:hover::before{
        transform: translateX(0%);
    }
    .home-about-panel:hover::after{
        transform: translateX(200%);
    }
    .home-about-panel:hover .titlearea .arrow{
        background: var(--primary-color);
        border-color: var(--primary-color);
        transform: scale(1.1);
    }
    .home-about-panel:hover .titlearea .icon::before,
    .home-about-panel:hover .titlearea .icon::after{
        transform: translateX(0);
    }
    .home-about-panel:hover .titlearea .icon::before{
        opacity: 1;
    }
    .home-about-panel:hover .titlearea .icon::after{
        background: url(../images/common/icon-arrow-primary.svg) no-repeat center / contain;
        opacity: 0;
    }
}
@media (hover:none) {
    .home-about-panel:active::before{
        transform: translateX(0%);
    }
    .home-about-panel:active::after{
        transform: translateX(200%);
    }
    .home-about-panel:active .arrow{
        background: var(--primary-color);
        border-color: var(--primary-color);
        transform: scale(1.1);
    }
    .home-about-panel:active .titlearea .icon::before,
    .home-about-panel:active .titlearea .icon::after{
        transform: translateX(0);
    }
    .home-about-panel:active .titlearea .icon::before{
        opacity: 1;
    }
    .home-about-panel:active .titlearea .icon::after{
        opacity: 0;
    }
}
@media screen and (max-width:1199px){
    .home-about-panel .caption{
        font-size: 18px;
    }
    .home-about-panel .caption .num{
        font-size: 30px;
    }
    .home-about-panel .titlearea{
        column-gap: 16px;
        margin-bottom: 20px;
    }
    .home-about-panel .titlearea .title{
        font-size: 36px;
    }
    .home-about-panel .titlearea .arrow{
        width: 40px;
        height: 40px;
    }
    .home-about-panel .titlearea .icon{
        width: 12px;
        height: 12px;
        column-gap: 12px;
    }
    .home-about-panel .icon::before,
    .home-about-panel .icon::after{
        width: 12px;
        height: 12px;
    }
    .home-about-panel .text{
        font-size: 14px;
    }
}
@media screen and (max-width:991px){
    .home-about-panel{
        height: 90%;
    }
    .home-about-panel .image{
        aspect-ratio: auto;
        height: 100%;
    }
    .home-about-panel .body{
        padding: 40px 30px;
    }
}
@media screen and (max-width:767px){
    .home-about-panel .caption{
        font-size: 14px;
    }
    .home-about-panel .caption .num{
        font-size: 26px;
    }
    .home-about-panel .titlearea{
        column-gap: 12px;
        margin-bottom: 12px;
    }
    .home-about-panel .titlearea .title{
        font-size: 26px;
    }
    .home-about-panel .titlearea .arrow{
        width: 30px;
        height: 30px;
    }
    .home-about-panel .titlearea .icon{
        width: 9px;
        height: 9px;
        column-gap: 9px;
    }
    .home-about-panel .icon::before,
    .home-about-panel .icon::after{
        width: 9px;
        height: 9px;
    }
}

/*------------------------------------------------------------------
  home-interview
------------------------------------------------------------------*/

/*  home-interview
------------------------------------------------------------------*/
.home-interview{
    position: relative;
    padding: 200px 0 120px;
    overflow: hidden;
    z-index: 1;
}
@media screen and (max-width:991px){
    .home-interview{
        padding: 30vh 0 80px;
    }
}
/*  home-interview-slider
------------------------------------------------------------------*/
.home-interview-slider{
    margin-bottom: 50px;
}
.home-interview-slider .swiper-slide{
    width: 400px;
}
@media screen and (max-width:991px){
    .home-interview-slider{
        margin-bottom: 20px;
    }
}
@media screen and (max-width:575px){
    .home-interview-slider .swiper-slide{
        width: auto;
    }
}
/*  home-interview-item
------------------------------------------------------------------*/
.home-interview-item{
    position: relative;
    display: block;
    z-index: 1;
}
.home-interview-item .image{
    position: relative;
    width: 100%;
    height: 440px;
    border-radius: 20px;
    overflow: hidden;
    z-index: 1;
}
.home-interview-item .image::after{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.35) 100%);
    content: "";
    z-index: 1;
}
.home-interview-item .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s ease-out;
}
.home-interview-item .body{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    z-index: 2;
}
.home-interview-item .position{
    width: fit-content;
    padding: .3em 1.25em;
    margin-bottom: 6px;
    border: 1px solid #fff;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    line-height: 1;
}
.home-interview-item .date{
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    line-height: 1;
}
.home-interview-item .name{
    font-family: var(--en-font);
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}
/* ホバー時動作 */
@media (hover:hover) {
    .home-interview-item:hover .image img{
        transform: scale(1.1);
    }
}
@media (hover:none) {
    .home-interview-item:active .image img{
        transform: scale(1.1);
    }
}
/*  home-interview-slider-options
------------------------------------------------------------------*/
.home-interview-slider-options{
    display: flex;
    align-items: center;
    column-gap: 30px;
}
@media screen and (max-width:991px){
    .home-interview-slider-options{
        column-gap: 15px;
    }
}
/*  home-interview-slider-pagination 
------------------------------------------------------------------*/
.home-interview-slider-pagination{
    position: relative;
    flex: 1;
    height: 16px !important;
    background: var(--primary-light-color);
    border-radius: 8px;
    overflow: hidden;
}
.home-interview-slider-pagination .swiper-pagination-progressbar-fill{
    background: var(--primary-color);
}
@media screen and (max-width:991px){
    .home-interview-slider-pagination{
        height: 8px !important;
        border-radius: 4px;
    }
}
/*  home-interview-slider-buttons
------------------------------------------------------------------*/
.home-interview-slider-buttons{
    display: flex;
    align-items: center;
    column-gap: 10px;
    flex-shrink: 0;
}
/*  home-interview-slider-button
------------------------------------------------------------------*/
.home-interview-slider-button-prev,
.home-interview-slider-button-next{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 1;
}
.home-interview-slider-button-prev::after,
.home-interview-slider-button-next::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 50%;
    content: "";
    transition: .4s ease-out;
    z-index: -1;
}
.home-interview-slider-button-prev .icon,
.home-interview-slider-button-next .icon{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 14px;
    height: 14px;
    column-gap: 14px;
    overflow: hidden;
    z-index: 1;
}
.home-interview-slider-button-prev .icon::before,
.home-interview-slider-button-prev .icon::after,
.home-interview-slider-button-next .icon::before,
.home-interview-slider-button-next .icon::after{
    display: block;
    width: 14px;
    height: 14px;
    content: "";
    flex-shrink: 0;
    background: url(../images/common/icon-arrow-white.svg) no-repeat center / contain;
    transform: translateX(-200%);
    transition: .4s ease-out;
}
.home-interview-slider-button-prev .icon{
    transform: rotate(180deg);
}
/* ホバー時動作 */
@media (hover:hover) {
    .home-interview-slider-button-prev:hover::after,
    .home-interview-slider-button-next:hover::after{
        transform: scale(1.1);
    }
    .home-interview-slider-button-prev:hover .icon::before,
    .home-interview-slider-button-prev:hover .icon::after,
    .home-interview-slider-button-next:hover .icon::before,
    .home-interview-slider-button-next:hover .icon::after{
        transform: translateX(0);
    }
    .home-interview-slider-button-prev:hover .icon::before,
    .home-interview-slider-button-next:hover .icon::before{
        opacity: 1;
    }
    .home-interview-slider-button-prev:hover .icon::after,
    .home-interview-slider-button-next:hover .icon::after{
        opacity: 0;
    }
}
@media (hover:none) {
    .home-interview-slider-button-prev:active::after,
    .home-interview-slider-button-next:active::after{
        transform: scale(1.1);
    }
}

/*------------------------------------------------------------------
  home-voice
------------------------------------------------------------------*/

/*  home-voice
------------------------------------------------------------------*/
.home-voice{
    position: relative;
    padding: 120px 0;
    background: #F3FCFB;
    overflow: hidden;
    z-index: 1;
}
@media screen and (max-width:991px){
    .home-voice{
        padding: 80px 0;
    }
}
@media screen and (max-width:575px){
    .home-voice{
        padding: 40px 0;
    }
}
/*  home-voice-slider
------------------------------------------------------------------*/
.home-voice-slider{
    position: relative;
    width: 100%;
    max-width: 495px;
    padding: 18px 25px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
}
.home-voice-slider::before,
.home-voice-slider::after{
    position: absolute;
    width: 46px;
    aspect-ratio: 46 / 37;
    background: url(../images/home/voice-treat.png) no-repeat center / cover;
    content: "";
    z-index: 2;
}
.home-voice-slider::before{
    top: 0;
    left: 0;
}
.home-voice-slider::after{
    bottom: 0;
    right: 0;
    transform: rotate(180deg);
}
.home-voice-slider .swiper-slide{
    height: auto;
    opacity: .7;
}
.home-voice-slider .swiper-slide.swiper-slide-active{
    opacity: 1;
}
@media screen and (max-width:575px){
    .home-voice-slider{
        padding: 12px 0;
    }
    .home-voice-slider::before,
    .home-voice-slider::after{
        width: 40px;
    }
}
/*  home-voice-card
------------------------------------------------------------------*/
.home-voice-card{
    height: 100%;
    padding: 30px 60px;
    background: #fff;
    border-radius: 30px;
}
.home-voice-card .position{
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 500;
}
.home-voice-card .title{
    margin-bottom: 10px;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1.6;
}
.home-voice-card .text{
    font-size: 12px;
    font-weight: 500;
}
@media screen and (max-width:575px){
    .home-voice-card{
        padding: 30px;
    }
}
/*  home-voice-slider-button
------------------------------------------------------------------*/
.home-voice-slider-button-prev,
.home-voice-slider-button-next{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 2;
}
.home-voice-slider-button-prev{
    left: 0;
}
.home-voice-slider-button-next{
    right: 0;
}
.home-voice-slider-button-prev::after,
.home-voice-slider-button-next::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 50%;
    content: "";
    transition: .4s ease-out;
    z-index: -1;
}
.home-voice-slider-button-prev .icon,
.home-voice-slider-button-next .icon{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 14px;
    height: 14px;
    column-gap: 14px;
    overflow: hidden;
    z-index: 1;
}
.home-voice-slider-button-prev .icon::before,
.home-voice-slider-button-prev .icon::after,
.home-voice-slider-button-next .icon::before,
.home-voice-slider-button-next .icon::after{
    display: block;
    width: 14px;
    height: 14px;
    content: "";
    flex-shrink: 0;
    background: url(../images/common/icon-arrow-white.svg) no-repeat center / contain;
    transform: translateX(-200%);
    transition: .4s ease-out;
}
.home-voice-slider-button-prev .icon{
    transform: rotate(180deg);
}
/* ホバー時動作 */
@media (hover:hover) {
    .home-voice-slider-button-prev:hover::after,
    .home-voice-slider-button-next:hover::after{
        transform: scale(1.1);
    }
    .home-voice-slider-button-prev:hover .icon::before,
    .home-voice-slider-button-prev:hover .icon::after,
    .home-voice-slider-button-next:hover .icon::before,
    .home-voice-slider-button-next:hover .icon::after{
        transform: translateX(0);
    }
    .home-voice-slider-button-prev:hover .icon::before,
    .home-voice-slider-button-next:hover .icon::before{
        opacity: 1;
    }
    .home-voice-slider-button-prev:hover .icon::after,
    .home-voice-slider-button-next:hover .icon::after{
        opacity: 0;
    }
}
@media (hover:none) {
    .home-voice-slider-button-prev:active::after,
    .home-voice-slider-button-next:active::after{
        transform: scale(1.1);
    }
}
@media screen and (max-width:575px){
    .home-voice-slider-button-prev,
    .home-voice-slider-button-next{
        width: 40px;
        height: 40px;
    }
    .home-voice-slider-button-prev{
        left: -20px;
    }
    .home-voice-slider-button-next{
        right: -20px;
    }
}
/*  home-voice-banner
------------------------------------------------------------------*/
.home-voice-banner{
    position: relative;
    display: inline-block;
    width: 330px;
    padding: 20px 80px;
    background: #fff;
    border-radius: 10px;
    z-index: 1;
}
.home-voice-banner::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    content: "";
    z-index: 1;
}
/* ホバー時動作 */
@media (hover:hover) {
    .home-voice-banner:hover::after{
        border-width: 3px;
    }
}
@media (hover:none) {
    .home-voice-banner:active::after{
        border-width: 3px;
    }
}
@media screen and (max-width:575px){
    .home-voice-banner{
        width: 220px;
        padding: 12px 36px;
    }
}


/*/////////////////////////////////////////////////////////////////
  company.html
/////////////////////////////////////////////////////////////////*/

/*------------------------------------------------------------------
  company-philosophy
------------------------------------------------------------------*/

/*  company-philosophy
------------------------------------------------------------------*/
.company-philosophy{
    position: relative;
    height: 100vh;
    min-height: 600px;
    padding: 100px 0;
    background: url(../images/company/philosophy-bg.jpg) no-repeat bottom center / cover;
    overflow: hidden;
    z-index: 1;
}
@media screen and (max-width:1199px){
    .company-philosophy{
        height: 70vh;
    }
}
@media screen and (max-width:575px){
    .company-philosophy{
        padding: 70px 0;
    }
}
/*  company-philosophy-title
------------------------------------------------------------------*/
.company-philosophy-title{
    margin-bottom: 80px;
    color: #fff;
}
.company-philosophy-title .en{
    margin-bottom: 4px;
    font-family: var(--en-font);
    font-size: 30px;
    font-weight: 600;
    line-height: 1;
}
.company-philosophy-title .jp{
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
}
.company-philosophy-title .jp > span{
    font-family: var(--en-font);
    font-size: 20px;
}
@media screen and (max-width:575px){
    .company-philosophy-title{
        margin-bottom: 50px;
    }
    .company-philosophy-title .en{
        font-size: 24px;
    }
}
/*  company-philosophy-body
------------------------------------------------------------------*/
.company-philosophy-body{
    max-width: 830px;
    margin-left: auto;
}
/*  company-philosophy-subtitle
------------------------------------------------------------------*/
.company-philosophy-subtitle{
    margin-bottom: 50px;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
}
.company-philosophy-subtitle .main{
    display: block;
    font-size: 40px;
}
@media screen and (max-width:575px){
    .company-philosophy-subtitle{
        margin-bottom: 30px;
        font-size: 18px;
    }
    .company-philosophy-subtitle .main{
        font-size: 30px;
    }
}
/*  company-philosophy-text
------------------------------------------------------------------*/
.company-philosophy-text{
    font-family: var(--en-font);
    font-size: 24px;
    font-weight: 600;
    color: #fff;
}
@media screen and (max-width:991px){
    .company-philosophy-text{
        font-size: 18px;
    }
}
@media screen and (max-width:575px){
    .company-philosophy-text{
        font-size: 15px;
    }
}

/*------------------------------------------------------------------
  company-numbers
------------------------------------------------------------------*/

/*  company-numbers
------------------------------------------------------------------*/
.company-numbers{
    position: relative;
    padding: 120px 0 90px;
    overflow: hidden;
    z-index: 1;
}
@media screen and (max-width:991px){
    .company-numbers{
        padding: 80px 0;
    }
}
/*  company-numbers-list
------------------------------------------------------------------*/
.company-numbers-list{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    margin-bottom: 10px;
}
@media screen and (max-width:991px){
    .company-numbers-list{
        grid-template-columns: repeat(2,1fr);
        gap: 10px;
    }
}
@media screen and (max-width:575px){
    .company-numbers-list{
        grid-template-columns: 1fr;
    }
}
/*  company-numbers-list-item
------------------------------------------------------------------*/
.company-numbers-list-item{
    display: flex;
    flex-direction: column;
    height: 350px;
    padding: 30px 0;
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    text-align: center;
}
.company-numbers-list-item .title{
    margin-bottom: 8px;
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
}
.company-numbers-list-item .multi-num{
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 20px;
}
.company-numbers-list-item .num{
    overflow: hidden;
    font-size: 30px;
    font-weight: 600;
    color: #727171;
    line-height: 1;
}
.company-numbers-list-item .num span{
    position: relative;
    display: inline-block;
    font-family: var(--en-font);
    font-size: 70px;
    font-weight: 900;
    color: var(--primary-color);
}
.company-numbers-list-item .num-caption{
    font-size: 14px;
    font-weight: 600;
    color: #727171;
}
.company-numbers-list-item .image{
    height: 120px;
    margin-top: auto;
}
.company-numbers-list-item .image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
@media screen and (max-width:991px){
    .company-numbers-list-item{
        height: 330px;
    }
    .company-numbers-list-item .num span{
        font-size: 65px;
    }
}

/*------------------------------------------------------------------
  company-jobs
------------------------------------------------------------------*/

/*  company-jobs
------------------------------------------------------------------*/
.company-jobs{
    position: relative;
    padding-bottom: 100px;
    overflow: hidden;
    z-index: 1;
}
.company-jobs::after{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 230px);
    background: #F3FCFB;
    content: "";
    z-index: -1;
}
/*  company-jobs-body
------------------------------------------------------------------*/
.company-jobs-body{
    width: 400px;
}
@media screen and (max-width:1199px){
    .company-jobs-body{
        width: 300px;
    }
}
@media screen and (max-width:991px){
    .company-jobs-body{
        width: 100%;
    }
}
/*  company-jobs-title
------------------------------------------------------------------*/
.company-jobs-title{
    position: relative;
    padding: 70px 0;
    margin-bottom: 50px;
    color: var(--primary-color);
    z-index: 2;
}
.company-jobs-title .en{
    font-family: var(--en-font);
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 10%;
    line-height: 1;
}
.company-jobs-title .jp{
    font-size: 40px;
    font-weight: bold;
    line-height: 1.5;
}
@media screen and (max-width:991px){
    .company-jobs-title{
        padding: 40px 0;
        margin-bottom: 0;
    }
    .company-jobs-title .en{
        font-size: 20px;
    }
    .company-jobs-title .jp{
        font-size: 30px;
    }
}
@media screen and (max-width:575px){
    .company-jobs-title{
        padding: 30px 0;
    }
    .company-jobs-title .en{
        font-size: 14px;
    }
    .company-jobs-title .jp{
        font-size: 18px;
    }
}
/*  company-jobs-image
------------------------------------------------------------------*/
.company-jobs-image{
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 500px;
    overflow: hidden;
    border-radius: 30px 0 0 30px;
    z-index: 1;
}
.company-jobs-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center left;
}
@media screen and (max-width:1199px){
    .company-jobs-image{
        width: calc(100% - 400px);
    }
}
@media screen and (max-width:991px){
    .company-jobs-image{
        position: static;
        width: 100vw;
        height: 400px;
        margin-left: -10px;
        margin-right: -60px;
        margin-bottom: 50px;
    }
}
@media screen and (max-width:767px){
    .company-jobs-image{
        margin-right: -30px;
    }
}
@media screen and (max-width:575px){
    .company-jobs-image{
        height: 250px;
        margin-bottom: 30px;
    }
}
/*  company-jobs-treat
------------------------------------------------------------------*/
.company-jobs-treat{
    position: absolute;
    display: flex;
    top: 30px;
    left: 0;
    width: 100%;
    z-index: -1;
}
@media screen and (max-width:991px){
    .company-jobs-treat{
        top: 0;
    }
}
/*  company-jobs-treat-item
------------------------------------------------------------------*/
.company-jobs-treat-item{
    display: flex;
    font-family: var(--en-font);
    font-size: 150px;
    font-weight: 600;
    color: var(--primary-light-color);
    line-height: 1;
    white-space: nowrap;
    animation: pageTopTreat 30s infinite linear;
}
.company-jobs-treat-item > div{
    margin-right: 1em;
}
@keyframes pageTopTreat {
    from{
        transform: translateX(0);
    }
    to{
        transform: translateX(-100%);
    }
}
@media screen and (max-width:991px){
    .company-jobs-treat-item{
        font-size: 125px;
    }
}
@media screen and (max-width:575px){
    .company-jobs-treat-item{
        font-size: 100px;
    }
}

/*------------------------------------------------------------------
  company-flow
------------------------------------------------------------------*/

/*  company-flow
------------------------------------------------------------------*/
.company-flow{
    position: relative;
    background: #F3FCFB;
    overflow: hidden;
    z-index: 1;
}
.company-flow::after{
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: #fff;
    content: "";
    z-index: -1;
}
@media screen and (max-width:767px){
    .company-flow::after{
        display: none;
    }
}
/*  company-flow-title
------------------------------------------------------------------*/
.company-flow-title{
    padding: 18px;
    background: var(--primary-color);
    font-size: 30px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    line-height: 1.5;
}
/*  company-flow-inner
------------------------------------------------------------------*/
.company-flow-inner{
    display: grid;
    grid-template-columns: repeat(2,1fr);
}
@media screen and (max-width:767px){
    .company-flow-inner{
        display: block;
    }
}
/*  company-flow-photos
------------------------------------------------------------------*/
.company-flow-photos{
    padding: 70px 0;
    margin-left: -40px;
}
.company-flow-photos .photo01{
    width: 100%;
    max-width: 515px;
    margin-left: auto;
    margin-right: 50px;
    margin-bottom: 60px;
    overflow: hidden;
    border-radius: 20px;
}
.company-flow-photos .photo02{
    position: relative;
    width: 100%;
    max-width: 530px;
    aspect-ratio: 530 / 407;
    margin-left: auto;
    margin-bottom: 40px;
}
.company-flow-photos .photo02 > .left{
    position: absolute;
    top: 0;
    left: 0;
    width: 75.4%;
    overflow: hidden;
    border-radius: 20px;
    z-index: 1;
}
.company-flow-photos .photo02 > .right{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 56.6%;
    overflow: hidden;
    border-radius: 10px 0 0 10px;
    z-index: 2;
}
.company-flow-photos .photo03{
    position: relative;
    width: 100%;
    max-width: 570px;
    aspect-ratio: 570 / 462;
    margin-left: auto;
}
.company-flow-photos .photo03 > .left{
    position: absolute;
    top: 0;
    left: 0;
    width: 56.1%;
    overflow: hidden;
    border-radius: 20px;
    z-index: 2;
}
.company-flow-photos .photo03 > .right{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 87.7%;
    overflow: hidden;
    border-radius: 20px 0 0 20px;
    z-index: 1;
}
@media screen and (max-width:767px){
    .company-flow-photos{
        display: none;
    }
}
/*  company-flow-detail
------------------------------------------------------------------*/
.company-flow-detail{
    padding: 130px 0 130px 80px;
}
@media screen and (max-width:1199px){
    .company-flow-detail{
        padding: 100px 0 100px 60px;
    }
}
@media screen and (max-width:991px){
    .company-flow-detail{
        padding: 70px 0 70px 40px;
    }
}
@media screen and (max-width:767px){
    .company-flow-detail{
        padding: 30px 0 80px;
    }
}
/*  company-flow-list
------------------------------------------------------------------*/
.company-flow-list{
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 60px;
    margin-bottom: 60px;
}
@media screen and (max-width:991px){
    .company-flow-list{
        row-gap: 40px;
        margin-bottom: 40px;
    }
}
@media screen and (max-width:767px){
    .company-flow-list{
        row-gap: 10px;
        margin-bottom: 10px;
    }
}
/*  company-flow-list-item
------------------------------------------------------------------*/
.company-flow-list-item .head{
    margin-bottom: 10px;
}
.company-flow-list-item .time{
    font-family: var(--en-font);
    font-size: 40px;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1.5;
}
.company-flow-list-item .title{
    font-size: 20px;
    font-weight: bold;
    color: #727171;
    line-height: 1.5;
}
.company-flow-list-item .text{
    font-weight: bold;
    color: #727171;
}
.company-flow-list-item .photo{
    display: none;
}
@media screen and (max-width:767px){
    .company-flow-list-item{
        padding: 30px 25px;
        background: #fff;
        border-radius: 20px;
    }
    .company-flow-list-item .head{
        display: flex;
        align-items: baseline;
        column-gap: 10px;
    }
    .company-flow-list-item .title{
        font-size: 18px;
    }
    .company-flow-list-item .photo{
        display: block;
        max-width: 460px;
        margin-top: 20px;
        border-radius: 15px;
        overflow: hidden;
    }
}


/*/////////////////////////////////////////////////////////////////
  workstyle.html
/////////////////////////////////////////////////////////////////*/

/*------------------------------------------------------------------
  workstyle-lead
------------------------------------------------------------------*/

/*  workstyle-lead-image
------------------------------------------------------------------*/
.workstyle-lead-image{
    height: 485px;
    overflow: hidden;
}
.workstyle-lead-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width:991px){
    .workstyle-lead-image{
        height: 256px;
    }
}
/*  workstyle-lead
------------------------------------------------------------------*/
.workstyle-lead{
    position: relative;
    padding: 70px 0;
    background: #F3FCFB;
    z-index: 1;
}
@media screen and (max-width:991px){
    .workstyle-lead{
        padding: 40px 0 60px;
    }
}
/*  workstyle-lead-text
------------------------------------------------------------------*/
.workstyle-lead-text{
    font-size: 20px;
    color: var(--primary-color);
    text-align: center;
}
.workstyle-lead-text:last-of-type{
    margin-bottom: 50px;
}
@media screen and (max-width:991px){
    .workstyle-lead-text{
        font-size: 16px;
    }
    .workstyle-lead-text:last-of-type{
        margin-bottom: 30px;
    }
}
@media screen and (max-width:767px){
    .workstyle-lead-text{
        margin-bottom: 20px;
    }
}

/*------------------------------------------------------------------
  workstyle-feature
------------------------------------------------------------------*/

/*  workstyle-feature-contents
------------------------------------------------------------------*/
.workstyle-feature-contents{
    margin-bottom: 20px;
    background: #fff;
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    overflow: hidden;
}
.workstyle-feature-contents:last-of-type{
    margin-bottom: 0;
}
.workstyle-feature-contents > .head{
    display: flex;
    align-items: center;
    padding: 50px 80px;
    column-gap: 50px;
    cursor: pointer;
}
.workstyle-feature-contents > .head .icon{
    width: 60px;
    height: 60px;
}
.workstyle-feature-contents > .head .icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.workstyle-feature-contents > .head .title{
    flex: 1;
    font-size: 26px;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.5;
}
.workstyle-feature-contents > .head .arrow{
    width: 20px;
}
.workstyle-feature-contents > .head .arrow.open{
    transform: rotate(180deg);
}
.workstyle-feature-contents > .body{
    position: relative;
    top: -20px;
    display: none;
    padding: 0 135px 30px 190px;
    font-size: 14px;
    font-weight: bold;
    color: #727171;
}
@media screen and (max-width:1199px){
    .workstyle-feature-contents > .head{
        column-gap: 20px;
        padding: 30px;
    }
    .workstyle-feature-contents > .head .icon{
        width: 50px;
        height: 50px;
    }
    .workstyle-feature-contents > .head .title{
        font-size: 20px;
    }
    .workstyle-feature-contents > .body{
        top: 0;
        padding: 0 30px 30px;
    }
}
@media screen and (max-width:575px){
    .workstyle-feature-contents{
        margin-bottom: 10px;
    }
    .workstyle-feature-contents > .head{
        column-gap: 10px;
        padding: 30px 20px;
    }
    .workstyle-feature-contents > .head .icon{
        width: 40px;
        height: 40px;
    }
    .workstyle-feature-contents > .head .title{
        font-size: 16px;
    }
    .workstyle-feature-contents > .body{
        padding: 0 20px 30px;
    }
}

/*  workstyle-careerpath-list
------------------------------------------------------------------*/
.workstyle-careerpath-list{
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 5px;
}
.workstyle-careerpath-list > li{
    position: relative;
    padding-left: 34px;
    font-size: 16px;
    font-weight: bold;
    z-index: 1;
}
.workstyle-careerpath-list > li::before{
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    height: 100%;
    line-height: 1;
    z-index: 1;
}
.workstyle-careerpath-list > li:nth-of-type(1)::before{
    content: url(../images/workstyle/careerpath-num01.svg);
}
.workstyle-careerpath-list > li:nth-of-type(2)::before{
    content: url(../images/workstyle/careerpath-num02.svg);
}
.workstyle-careerpath-list > li:nth-of-type(3)::before{
    content: url(../images/workstyle/careerpath-num03.svg);
}
.workstyle-careerpath-list > li:nth-of-type(4)::before{
    content: url(../images/workstyle/careerpath-num04.svg);
}
.workstyle-careerpath-list > li:nth-of-type(5)::before{
    content: url(../images/workstyle/careerpath-num05.svg);
}
.workstyle-careerpath-list > li:nth-of-type(6)::before{
    content: url(../images/workstyle/careerpath-num06.svg);
}
.workstyle-careerpath-list > li:nth-of-type(7)::before{
    content: url(../images/workstyle/careerpath-num07.svg);
}
.workstyle-careerpath-list > li strong{
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-color);
}
@media screen and (max-width:767px){
    .workstyle-careerpath-list{
        row-gap: 30px;
    }
    .workstyle-careerpath-list > li{
        padding-top: 24px;
        padding-left: 0;
        text-align: center;
    }
    .workstyle-careerpath-list > li::before{
        position: absolute;
        top: 0;
        left: 0;
        justify-content: center;
        width: 100%;
        height: auto;
    }
    .workstyle-careerpath-list > li strong{
        display: block;
    }
}

/*  workstyle-card-list
------------------------------------------------------------------*/
.workstyle-card-list{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}
.workstyle-card-list > li{
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    background: #E8F9F7;
    overflow: hidden;
}
.workstyle-card-list > li:nth-of-type(even){
    background: #fff;
}
.workstyle-card-list > li > .body{
    padding: 10px 18px 24px;
}
.workstyle-card-list > li > .body .title{
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: bold;
    color: var(--primary-color);
    text-align: center;
}
.workstyle-card-list > li > .body .text{
    font-weight: 500;
}
@media screen and (max-width:767px){
    .workstyle-card-list{
        grid-template-columns: repeat(2,1fr);
    }
}
@media screen and (max-width:575px){
    .workstyle-card-list{
        grid-template-columns: 1fr;
    }
}

/*  workstyle-event-photos
------------------------------------------------------------------*/
.workstyle-event-photos .wrap{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}
.workstyle-event-photos .wrap:nth-of-type(2){
    display: none;
}
.workstyle-event-photos .image{
    border-radius: 10px;
    overflow: hidden;
}
@media screen and (max-width:767px){
    .workstyle-event-photos .wrap{
        grid-template-columns: repeat(2,1fr);
    }
}
@media screen and (max-width:575px){
    .workstyle-event-photos{
        display: flex;
        flex-wrap: nowrap;
    }
    .workstyle-event-photos .wrap,
    .workstyle-event-photos .wrap:nth-of-type(2){
        display: flex;
        flex-wrap: nowrap;
        gap: 0;
        animation: workstyleEventPhotos 30s infinite linear;
    }
    .workstyle-event-photos .image{
        width: 235px;
        margin-right: 20px;
    }
}
@keyframes workstyleEventPhotos {
    from{
        transform: translateX(0);
    }
    to{
        transform: translateX(-100%);
    }
}

/*/////////////////////////////////////////////////////////////////
  interview.html
/////////////////////////////////////////////////////////////////*/

/*------------------------------------------------------------------
  interview-lead
------------------------------------------------------------------*/

/*  interview-lead-image
------------------------------------------------------------------*/
.interview-lead-image{
    height: 485px;
    margin-bottom: 70px;
    overflow: hidden;
}
.interview-lead-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width:991px){
    .interview-lead-image{
        height: 256px;
        margin-bottom: 30px;
    }
}

/*------------------------------------------------------------------
  interview-card
------------------------------------------------------------------*/

/*  interview-card
------------------------------------------------------------------*/
.interview-card{
    position: relative;
    display: block;
    padding: 50px 0;
    border-top: 1px solid #B3B3B3;
    z-index: 1;
}
.interview-card::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #F3FCFB;
    content: "";
    transition: .4s ease-out;
    z-index: -1;
}
.interview-card .body{
    display: flex;
    align-items: flex-start;
    column-gap: 50px;
}
.interview-card .image{
    width: 450px;
    aspect-ratio: 3 / 2;
    border-radius: 20px;
    overflow: hidden;
}
.interview-card .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.interview-card .num{
    margin-bottom: 10px;
    font-family: var(--en-font);
    font-size: 24px;
    font-weight: 600;
    color: #B3B3B3;
    line-height: 1;
}
.interview-card .num span{
    font-size: 30px;
}
.interview-card .title{
    margin-bottom: 60px;
    font-size: 30px;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1.5;
}
.interview-card .position{
    width: fit-content;
    padding: 0 15px;
    margin-bottom: 6px;
    border: 1px solid #727171;
    font-size: 12px;
    font-weight: bold;
    color: #727171;
}
.interview-card .date{
    font-size: 14px;
    font-weight: bold;
    color: #727171;
}
.interview-card .name{
    font-family: var(--en-font);
    font-size: 36px;
    font-weight: 900;
    color: #727171;
}
/* ホバー時動作 */
@media (hover:hover) {
    .interview-card:hover::after{
        width: 100%;
    }    
}
@media screen and (max-width:1199px){
    .interview-card .body{
        column-gap: 30px;
    }
    .interview-card .image{
        width: 350px;
    }
    .interview-card .title{
        margin-bottom: 30px;
        font-size: 23px;
    }
    .interview-card .name{
        font-size: 30px;
    }
}
@media screen and (max-width:767px){
    .interview-card .body{
        flex-direction: column;
        row-gap: 30px;
    }
    .interview-card .image{
        width: 100%;
    }
    .interview-card .title{
        margin-bottom: 20px;
    }
}

/*------------------------------------------------------------------
  interview-staff
------------------------------------------------------------------*/

/*  interview-staff-top
------------------------------------------------------------------*/
.interview-staff-top{
    position: relative;
    z-index: 1;
}
.interview-staff-top .image{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}
.interview-staff-top .image::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 100%;
    background: linear-gradient(90deg, rgba(61,61,61,.6) 0%, rgba(0,0,0,0) 100%);
    content: "";
    z-index: 1;
}
.interview-staff-top.right .image::after{
    left: initial;
    right: 0;
    background: linear-gradient(-90deg, rgba(61,61,61,.6) 0%, rgba(0,0,0,0) 100%);
}
.interview-staff-top .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.interview-staff-top .body{
    position: relative;
    display: flex;
    flex-direction: column;
    height: 730px;
    padding: 80px 0 70px;
    z-index: 2;
}
.interview-staff-top .num{
    margin-bottom: 10px;
    font-family: var(--en-font);
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    line-height: 1;
}
.interview-staff-top .num span{
    font-size: 30px;
}
.interview-staff-top .title{
    width: fit-content;
    padding-bottom: 5px;
    margin-bottom: auto;
    border-bottom: 3px solid #fff;
    font-family: var(--en-font);
    font-size: 30px;
    font-weight: 600;
    color: #fff;
    line-height: 1;
    letter-spacing: 5%;
}
.interview-staff-top.right .bottom{
    margin-left: auto;
}
.interview-staff-top .position{
    width: fit-content;
    padding: 0 15px;
    margin-bottom: 6px;
    border: 1px solid #fff;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
}
.interview-staff-top .date{
    font-size: 14px;
    font-weight: bold;
    color: #fff;
}
.interview-staff-top .name{
    font-family: var(--en-font);
    font-size: 60px;
    font-weight: bold;
    color: #fff;
    line-height: 1.5;
}
@media screen and (max-width:1199px){
    .interview-staff-top .body{
        height: 600px;
        padding: 60px 0 50px;
    }
    .interview-staff-top .num{
        font-size: 18px;
    }
    .interview-staff-top .num span{
        font-size: 24px;
    }
    .interview-staff-top .title{
        font-size: 24px;
    }
    .interview-staff-top .name{
        font-size: 48px;
    }
}
@media screen and (max-width:767px){
    .interview-staff-top .body{
        height: 400px;
        padding: 30px 0;
    }
    .interview-staff-top .num{
        font-size: 14px;
    }
    .interview-staff-top .num span{
        font-size: 20px;
    }
    .interview-staff-top .title{
        font-size: 20px;
    }
    .interview-staff-top .name{
        font-size: 24px;
    }
}
/*  interview-staff-lead
------------------------------------------------------------------*/
.interview-staff-lead{
    position: relative;
    padding-top: 100px;
    background: #F3FCFB;
    overflow: hidden;
    z-index: 1;
}
.interview-staff-lead::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 45%;
    height: 800px;
    background: #fff;
    content: "";
    z-index: -1;
}
@media screen and (max-width:1199px){
    .interview-staff-lead{
        padding-top: 80px;
    }
    .interview-staff-lead::after{
        height: 560px;
    }
}
@media screen and (max-width:767px){
    .interview-staff-lead{
        padding-top: 50px;
    }
    .interview-staff-lead::after{
        width: 20%;
        height: 400px;
    }
}
/*  interview-staff-lead-title
------------------------------------------------------------------*/
.interview-staff-lead-title{
    margin-bottom: 50px;
    font-size: 48px;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1.5;
}
@media screen and (max-width:1199px){
    .interview-staff-lead-title{
        margin-bottom: 40px;
        font-size: 32px;
    }
}
@media screen and (max-width:767px){
    .interview-staff-lead-title{
        margin-bottom: 30px;
        font-size: 23px;
    }
}
/*  interview-staff-lead-text
------------------------------------------------------------------*/
.interview-staff-lead-text{
    margin-bottom: 130px;
    font-size: 20px;
}
@media screen and (max-width:1199px){
    .interview-staff-lead-text{
        margin-bottom: 80px;
        font-size: 16px;
    }
}
@media screen and (max-width:767px){
    .interview-staff-lead-text{
        margin-bottom: 50px;
    }
}
/*  interview-staff-lead-image
------------------------------------------------------------------*/
.interview-staff-lead-image{
    height: 570px;
    margin-right: calc(-50vw + 50%);
    overflow: hidden;
    border-top-left-radius: 20px;
}
.interview-staff-lead-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center left;
}
@media screen and (max-width:1199px){
    .interview-staff-lead-image{
        height: 360px;
    }
}
@media screen and (max-width:767px){
    .interview-staff-lead-image{
        height: 250px;
    }
}
/*  interview-staff-faq
------------------------------------------------------------------*/
.interview-staff-faq{
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-top: -120px;
    z-index: 2;
}
@media screen and (max-width:1199px){
    .interview-staff-faq{
        margin-top: -80px;
    }
}
@media screen and (max-width:767px){
    .interview-staff-faq{
        margin-top: -50px;
    }
}
/*  interview-staff-faq-photos
------------------------------------------------------------------*/
.interview-staff-faq-photos{
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 60px;
    padding-top: 240px;
    margin-left: -180px;
    width: 600px;
    z-index: 1;
}
.interview-staff-faq-photos > figure:nth-of-type(1){
    width: fit-content;
    margin-right: auto;
    border-radius: 20px;
    overflow: hidden;
}
.interview-staff-faq-photos > figure:nth-of-type(2){
    width: fit-content;
    margin-left: auto;
    border-radius: 20px 0 0 20px;
    overflow: hidden;
}
.interview-staff-faq-photos > figure:nth-of-type(3){
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    border-radius: 20px;
    overflow: hidden;
}
.interview-staff-faq-photos > figure:nth-of-type(4){
    width: fit-content;
    margin-left: auto;
    margin-right: 30px;
    border-radius: 20px;
    overflow: hidden;
}
@media screen and (max-width:1199px){
    .interview-staff-faq-photos{
        row-gap: 30px;
        padding-top: 160px;
        margin-left: -60px;
    }
}
@media screen and (max-width:991px){
    .interview-staff-faq-photos{
        display: none;
    }
}
/*  interview-staff-faq-detail
------------------------------------------------------------------*/
.interview-staff-faq-detail{
    position: relative;
    width: 660px;
    padding: 120px 0 120px 80px;
    z-index: 1;
}
.interview-staff-faq-detail::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    background: #fff;
    border-top-left-radius: 20px;
    content: "";
    z-index: -1;
}
@media screen and (max-width:1199px){
    .interview-staff-faq-detail{
        padding: 80px 0 80px 50px;
    }
}
@media screen and (max-width:991px){
    .interview-staff-faq-detail{
        width: 100%;
        margin-left: 30px;
    }
}
@media screen and (max-width:767px){
    .interview-staff-faq-detail{
        padding: 50px 0 50px 30px;
        margin-left: 20px;
    }
}
/*  interview-staff-faq-item
------------------------------------------------------------------*/
.interview-staff-faq-item{
    margin-bottom: 80px;
}
.interview-staff-faq-item:last-of-type{
    margin-bottom: 0;
}
.interview-staff-faq-item dt{
    display: flex;
    column-gap: 10px;
    margin-bottom: 20px;
    font-size: 30px;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1.4;
}
.interview-staff-faq-item dt .q{
    font-family: var(--en-font);
}
@media screen and (max-width:1199px){
    .interview-staff-faq-item{
        margin-bottom: 50px;
    }
    .interview-staff-faq-item dt{
        font-size: 24px;
    }
}
@media screen and (max-width:767px){
    .interview-staff-faq-item dt{
        font-size: 20px;
    }
}
/*  interview-staff-faq-bottom
------------------------------------------------------------------*/
.interview-staff-faq-bottom{
    height: 570px;
    overflow: hidden;
}
.interview-staff-faq-bottom img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width:1199px){
    .interview-staff-faq-bottom{
        height: 360px;
    }
}
@media screen and (max-width:767px){
    .interview-staff-faq-bottom{
        height: 250px;
    }
}
/*  interview-page-prev
------------------------------------------------------------------*/
.interview-page-prev{
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 5px;
    padding: 45px 30px;
    background: #fff;
    font-size: 20px;
    font-weight: bold;
    color: #727171;
    line-height: 1.5;
    transition: .2s ease-out;
}
.interview-page-prev img{
    transition: .2s ease-out;
}
/* ホバー時動作 */
@media (hover:hover) {
    .interview-page-prev:hover{
        background: var(--primary-light-color);
        color: var(--primary-color);
    }
    .interview-page-prev:hover img{
        filter: brightness(0) saturate(100%) invert(72%) sepia(28%) saturate(946%) hue-rotate(123deg) brightness(82%) contrast(114%);
    }
}
@media (hover:none) {
    .interview-page-prev:active{
        background: var(--primary-light-color);
        color: var(--primary-color);
    }
    .interview-page-prev:active img{
        filter: brightness(0) saturate(100%) invert(72%) sepia(28%) saturate(946%) hue-rotate(123deg) brightness(82%) contrast(114%);
    }
}
@media screen and (max-width:1199px){
    .interview-page-prev{
        padding: 30px;
    }
}
@media screen and (max-width:767px){
    .interview-page-prev{
        padding: 16px;
    }
}


/*/////////////////////////////////////////////////////////////////
  information.html
/////////////////////////////////////////////////////////////////*/

/*------------------------------------------------------------------
  information-lead
------------------------------------------------------------------*/

/*  information-lead-image
------------------------------------------------------------------*/
.information-lead-image{
    height: 485px;
    overflow: hidden;
}
.information-lead-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width:991px){
    .information-lead-image{
        height: 256px;
    }
}

/*------------------------------------------------------------------
  information-ideal
------------------------------------------------------------------*/

/*  information-ideal
------------------------------------------------------------------*/
.information-ideal{
    position: relative;
    padding: 70px 0;
    background: #F3FCFB;
    overflow: hidden;
    z-index: 1;
}
@media screen and (max-width:767px){
    .information-ideal{
        padding: 50px 0;
    }
}
/*  information-ideal-list
------------------------------------------------------------------*/
.information-ideal-list{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 30px;
    margin-left: -15px;
    margin-right: -15px;
}
.information-ideal-list > li{
    width: 33.33333%;
    padding: 0 15px;
}
@media screen and (max-width:1199px){
    .information-ideal-list{
        row-gap: 10px;
        margin-left: -5px;
        margin-right: -5px;
    }
    .information-ideal-list > li{
        width: 50%;
        padding: 0 5px;
    }
}
@media screen and (max-width:767px){
    .information-ideal-list > li{
        width: 100%;
        padding: 0 5px;
    }
}
/*  information-ideal-card
------------------------------------------------------------------*/
.information-ideal-card{
    display: flex;
    align-items: center;
    column-gap: 20px;
    height: 100%;
    padding: 20px 30px 30px;
    border: 1px solid var(--primary-color);
    border-radius: 20px;
}
.information-ideal-card .icon{
    flex-shrink: 0;
    width: 60px;
    height: 60px;
}
.information-ideal-card .icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.information-ideal-card .title{
    font-size: 20px;
    font-weight: 600;
    color: #727171;
}
.information-ideal-card .text{
    font-weight: 500;
    color: #727171;
}

/*------------------------------------------------------------------
  information-ideal
------------------------------------------------------------------*/

/*  information-jobtype
------------------------------------------------------------------*/
.information-jobtype{
    position: relative;
    padding: 70px 0;
    overflow: hidden;
    z-index: 1;
}
@media screen and (max-width:767px){
    .information-jobtype{
        padding: 50px 0;
    }
}
/*  information-jobtype-list
------------------------------------------------------------------*/
.information-jobtype-list{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
}
@media screen and (max-width:1199px){
    .information-jobtype-list{
        gap: 10px;
    }
}
@media screen and (max-width:991px){
    .information-jobtype-list{
        grid-template-columns: 1fr;
    }
}
/*  information-jobtype-card
------------------------------------------------------------------*/
.information-jobtype-card{
    position: relative;
    display: block;
    height: 100%;
    padding: 30px 120px 30px 50px;
    background: #fff;
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    z-index: 1;
}
.information-jobtype-card .title{
    margin-bottom: 4px;
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
}
.information-jobtype-card .text{
    font-weight: 500;
}
.information-jobtype-card .arrow{
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    z-index: 1;
}
.information-jobtype-card .arrow::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    transition: .4s ease-out;
    content: "";
    z-index: 1;
}
.information-jobtype-card .arrow .icon{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 14px;
    height: 14px;
    column-gap: 14px;
    overflow: hidden;
    transition: .4s ease-out;
    z-index: 2;
}
.information-jobtype-card .arrow .icon::before,
.information-jobtype-card .arrow .icon::after{
    display: block;
    width: 14px;
    height: 14px;
    background: url(../images/common/icon-arrow-primary.svg) no-repeat center / contain;
    content: "";
    flex-shrink: 0;
    transform: translateX(-200%);
    transition: .4s ease-out;
    z-index: 2;
}
.information-jobtype-card .arrow .icon::before{
    opacity: 0;
}
.information-jobtype-card .arrow .icon::after{
    opacity: 1;
}
/* ホバー時動作 */
@media (hover:hover) {
    .information-jobtype-card:hover .arrow::after{
        background: var(--primary-color);
        transform: scale(1.1);
    }
    .information-jobtype-card:hover .arrow .icon::before,
    .information-jobtype-card:hover .arrow .icon::after{
        transform: translateX(0);
    }
    .information-jobtype-card:hover .arrow .icon::before{
        background: url(../images/common/icon-arrow-white.svg) no-repeat center / contain;
        opacity: 1;
    }
    .information-jobtype-card:hover .arrow .icon::after{
        opacity: 0;
    }
}
@media (hover:none) {
    .information-jobtype-card:active .arrow::after{
        background: var(--primary-color);
        transform: scale(1.1);
    }
    .information-jobtype-card:active .arrow .icon::before,
    .information-jobtype-card:active .arrow .icon::after{
        transform: translateX(0);
    }
    .information-jobtype-card:active .arrow .icon::before{
        background: url(../images/common/icon-arrow-white.svg) no-repeat center / contain;
        opacity: 1;
    }
    .information-jobtype-card:active .arrow .icon::after{
        opacity: 0;
    }
}
@media screen and (max-width:575px){
    .information-jobtype-card{
        padding: 30px 25px;
    }
    .information-jobtype-card .title{
        padding-right: 50px;
        margin-bottom: 20px;
    }
    .information-jobtype-card .arrow{
        top: 30px;
        right: 25px;
        transform: initial;
        width: 30px;
        height: 30px;
    }
    .information-jobtype-card .arrow .icon{
        width: 10px;
        height: 10px;
        column-gap: 10px;
    }
    .information-jobtype-card .arrow .icon::before,
    .information-jobtype-card .arrow .icon::after{
        width: 10px;
        height: 10px;
    }
}

/*------------------------------------------------------------------
  information-new
------------------------------------------------------------------*/

/*  information-new
------------------------------------------------------------------*/
.information-new{
    position: relative;
    padding: 250px 0;
    overflow: hidden;
    z-index: 1;
}
@media screen and (max-width:1199px){
    .information-new{
        padding: 200px 0;
    }
}
@media screen and (max-width:991px){
    .information-new{
        padding: 0;
    }
}
/*  information-new-image
------------------------------------------------------------------*/
.information-new-image{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.information-new-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width:991px){
    .information-new-image{
        position: relative;
        height: 400px;
        margin-bottom: 20px;
    }
}
@media screen and (max-width:575px){
    .information-new-image{
        height: 250px;
    }
}
/*  information-new-card
------------------------------------------------------------------*/
.information-new-card{
    position: relative;
    width: fit-content;
    padding: 40px 50px;
    margin-left: auto;
    background: rgba(255,255,255,.9);
    border-radius: 20px;
    z-index: 2;
}
@media screen and (max-width:991px){
    .information-new-card{
        width: 100%;
        padding: 0;
    }
}

/*------------------------------------------------------------------
  information-flow
------------------------------------------------------------------*/

/*  information-flow
------------------------------------------------------------------*/
.information-flow{
    position: relative;
    padding: 70px 0 120px;
    overflow: hidden;
    z-index: 1;
}
@media screen and (max-width:991px){
    .information-flow{
        padding: 70px 0 80px;
    }
}
/*  information-flow-list
------------------------------------------------------------------*/
.information-flow-list{
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 50px;
}
/*  information-flow-list-item
------------------------------------------------------------------*/
.information-flow-list-item{
    position: relative;
    padding: 40px 40px 50px 160px;
    background: var(--primary-light-color);
    border-radius: 20px;
    z-index: 1;
}
.information-flow-list-item::after{
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 17px;
    background: url(../images/common/icon-caret-down-primary.svg) no-repeat center / contain;
    content: "";
    z-index: 1;
}
.information-flow-list-item:last-of-type::after{
    display: none;
}
.information-flow-list-item .step{
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 160px;
    height: 100%;
    font-family: var(--en-font);
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
    z-index: 1;
}
.information-flow-list-item .step > .num{
    font-size: 60px;
}
.information-flow-list-item .title{
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: bold;
    color: #727171;
    line-height: 1.5;
}
.information-flow-list-item .text{
    font-weight: bold;
    color: #727171;
}
@media screen and (max-width:991px){
    .information-flow-list-item{
        padding: 30px 20px 30px 115px;
    }
    .information-flow-list-item .step{
        width: 115px;
    }
}

/*------------------------------------------------------------------
  information-faq
------------------------------------------------------------------*/

/*  information-faq
------------------------------------------------------------------*/
.information-faq{
    position: relative;
    padding: 70px 0 120px;
    background: #F3FCFB;
    overflow: hidden;
    z-index: 1;
}
@media screen and (max-width:991px){
    .information-faq{
        padding: 70px 0 80px;
    }
}
/*  information-faq-contents
------------------------------------------------------------------*/
.information-faq-contents{
    margin-bottom: 20px;
    background: #fff;
}
.information-faq-contents:last-of-type{
    margin-bottom: 0;
}
.information-faq-contents dt{
    position: relative;
    padding: 30px 80px 30px 94px;
    font-size: 20px;
    line-height: 1.4;
    color: var(--primary-color);
    cursor: pointer;
    z-index: 1;
}
.information-faq-contents dt::before{
    position: absolute;
    top: 30px;
    left: 50px;
    content: "Q";
    font-family: var(--en-font);
    font-size: 30px;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1;
    z-index: 1;
}
.information-faq-contents dt::after{
    position: absolute;
    top: 40px;
    right: 50px;
    width: 20px;
    aspect-ratio: 5 / 3;
    background: url(../images/common/icon-chevron-down-primary.svg) no-repeat center / contain;
    content: "";
    line-height: 1;
    z-index: 1;
}
.information-faq-contents dt.open::after{
    transform: rotate(180deg);
}
.information-faq-contents dd{
    position: relative;
    display: none;
    padding: 30px 30px 30px 94px;
    border-top: 1px solid #d9d9d9;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    z-index: 1;
}
.information-faq-contents dd::before{
    position: absolute;
    top: 30px;
    left: 50px;
    content: "A";
    font-family: var(--en-font);
    font-size: 30px;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1;
    z-index: 1;
}
@media screen and (max-width:991px){
    .information-faq-contents{
        margin-bottom: 10px;
    }
    .information-faq-contents dt{
        padding: 20px 52px;
    }
    .information-faq-contents dt::before{
        top: 20px;
        left: 20px;
    }
    .information-faq-contents dt::after{
        top: 32px;
        right: 20px;
        width: 12px;
    }
    .information-faq-contents dd{
        padding: 20px 20px 20px 52px;
        line-height: 1.7;
    }
    .information-faq-contents dd::before{
        top: 20px;
        left: 20px;
    }
}

/*------------------------------------------------------------------
  information-detail
------------------------------------------------------------------*/

/*  information-detail
------------------------------------------------------------------*/
.information-detail{
    position: relative;
    padding: 70px 0;
    background: #F3FCFB;
    overflow: hidden;
    z-index: 1;
}
@media screen and (max-width:767px){
    .information-detail{
        padding: 50px 0;
    }
}
/*  information-detail-box
------------------------------------------------------------------*/
.information-detail-box{
    position: relative;
    padding: 50px;
    margin-bottom: 50px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    z-index: 1;
}
@media screen and (max-width:991px){
    .information-detail-box{
        padding: 20px;
        margin-bottom: 30px;
    }
}
/*  information-detail-table
------------------------------------------------------------------*/
.information-detail-table{
    width: 100%;
    margin-bottom: 50px;
}
.information-detail-table th,
.information-detail-table td{
    padding: 40px 20px;
    border-bottom: 1px solid #B3B3B3;
    vertical-align: middle;
}
.information-detail-table th{
    font-size: 20px;
    white-space: nowrap;
}
.information-detail-table td{
    font-weight: 500;
}
@media screen and (max-width:991px){
    .information-detail-table th,
    .information-detail-table td{
        display: block;
    }
    .information-detail-table th{
        padding: 20px 0 5px 0;
        border-bottom: initial;
    }
    .information-detail-table td{
        padding: 5px 0 20px 0;
    }
}
/*  information-detail-contact-card
------------------------------------------------------------------*/
.information-detail-contact-card{
    position: relative;
    display: block;
    height: 100%;
    padding: 30px 120px 30px 50px;
    background: #fff;
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    z-index: 1;
}
.information-detail-contact-card .title{
    margin-bottom: 4px;
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
}
.information-detail-contact-card .text{
    font-weight: 500;
}
.information-detail-contact-card .arrow{
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    z-index: 1;
}
.information-detail-contact-card .arrow::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    transition: .4s ease-out;
    content: "";
    z-index: 1;
}
.information-detail-contact-card .arrow .icon{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 14px;
    height: 14px;
    column-gap: 14px;
    overflow: hidden;
    transition: .4s ease-out;
    z-index: 2;
}
.information-detail-contact-card .arrow .icon::before,
.information-detail-contact-card .arrow .icon::after{
    display: block;
    width: 14px;
    height: 14px;
    background: url(../images/common/icon-arrow-primary.svg) no-repeat center / contain;
    content: "";
    flex-shrink: 0;
    transform: translateX(-200%);
    transition: .4s ease-out;
    z-index: 2;
}
.information-detail-contact-card .arrow .icon::before{
    opacity: 0;
}
.information-detail-contact-card .arrow .icon::after{
    opacity: 1;
}
/* ホバー時動作 */
@media (hover:hover) {
    .information-detail-contact-card:hover .arrow::after{
        background: var(--primary-color);
        transform: scale(1.1);
    }
    .information-detail-contact-card:hover .arrow .icon::before,
    .information-detail-contact-card:hover .arrow .icon::after{
        transform: translateX(0);
    }
    .information-detail-contact-card:hover .arrow .icon::before{
        background: url(../images/common/icon-arrow-white.svg) no-repeat center / contain;
        opacity: 1;
    }
    .information-detail-contact-card:hover .arrow .icon::after{
        opacity: 0;
    }
}
@media (hover:none) {
    .information-detail-contact-card:active .arrow::after{
        background: var(--primary-color);
        transform: scale(1.1);
    }
    .information-detail-contact-card:active .arrow .icon::before,
    .information-detail-contact-card:active .arrow .icon::after{
        transform: translateX(0);
    }
    .information-detail-contact-card:active .arrow .icon::before{
        background: url(../images/common/icon-arrow-white.svg) no-repeat center / contain;
        opacity: 1;
    }
    .information-detail-contact-card:active .arrow .icon::after{
        opacity: 0;
    }
}
@media screen and (max-width:575px){
    .information-detail-contact-card{
        padding: 25px 20px;
    }
    .information-detail-contact-card .title{
        padding-right: 60px;
        margin-bottom: 15px;
    }
    .information-detail-contact-card .arrow{
        top: 30px;
        right: 20px;
        transform: initial;
    }
}
/*  information-detail-entries
------------------------------------------------------------------*/
.information-detail-entries{
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 30px;
}
@media screen and (max-width:1199px){
    .information-detail-entries{
        column-gap: 10px;
    }
}
@media screen and (max-width:767px){
    .information-detail-entries{
        flex-direction: column;
        row-gap: 10px;
    }
}
/*  information-detail-entry-btn
------------------------------------------------------------------*/
.information-detail-entry-btn{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    width: 100%;
    max-width: 525px;
    height: 100px;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    line-height: 1;
    z-index: 1;
}
.information-detail-entry-btn::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 50px;
    content: "";
    transition: .2s ease-out;
    z-index: -1;
}
.information-detail-entry-btn small{
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    letter-spacing: -8%;
}
.information-detail-entry-btn .arrow{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 20px;
    height: 20px;
    column-gap: 20px;
    overflow: hidden;
    transition: .4s ease-out;
    z-index: 1;
}
.information-detail-entry-btn .arrow::before,
.information-detail-entry-btn .arrow::after{
    display: block;
    width: 20px;
    height: 20px;
    background: url(../images/common/icon-arrow-white.svg) no-repeat center / contain;
    content: "";
    flex-shrink: 0;
    transform: translateX(-200%);
    transition: .4s ease-out;
}
.information-detail-entry-btn .arrow::before{
    opacity: 0;
}
.information-detail-entry-btn .arrow::after{
    opacity: 1;
}
/* ホバー時動作 */
@media (hover:hover) {
    .information-detail-entry-btn:hover::after{
        transform: scale(1.05);
    }
    .information-detail-entry-btn:hover .arrow::before,
    .information-detail-entry-btn:hover .arrow::after{
        transform: translateX(0);
    }
    .information-detail-entry-btn:hover .arrow::before{
        opacity: 1;
    }
    .information-detail-entry-btn:hover .arrow::after{
        opacity: 0;
    }
}
@media (hover:none) {
    .information-detail-entry-btn:active::after{
        transform: scale(1.05);
    }
    .information-detail-entry-btn:active .arrow::before,
    .information-detail-entry-btn:active .arrow::after{
        transform: translateX(0);
    }
    .information-detail-entry-btn:active .arrow::before{
        opacity: 1;
    }
    .information-detail-entry-btn:active .arrow::after{
        opacity: 0;
    }
}
@media screen and (max-width:767px){
    .information-detail-entry-btn{
        height: 60px;
    }
}


/*/////////////////////////////////////////////////////////////////
  entry.html
/////////////////////////////////////////////////////////////////*/

/*------------------------------------------------------------------
  entry-career
------------------------------------------------------------------*/

/*  entry-career
------------------------------------------------------------------*/
.entry-career{
    position: relative;
    padding: 70px 0;
    background: #F3FCFB;
    overflow: hidden;
    z-index: 1;
}
/*  entry-career-photos
------------------------------------------------------------------*/
.entry-career-photos{
    display: flex;
}
.entry-career-photos > div{
    display: flex;
    animation: homeAboutLoopPhotos 30s infinite linear;
}
.entry-career-photos > div > figure{
    width: 400px;
    margin-right: 20px;
    border-radius: 20px;
    overflow: hidden;
}
@keyframes homeAboutLoopPhotos {
    from{
        transform: translateX(0);
    }
    to{
        transform: translateX(-100%);
    }
}
@media screen and (max-width:991px){
    .entry-career-photos > div > figure{
        width: 330px;
    }
}
/*  entry-career-btns
------------------------------------------------------------------*/
.entry-career-btns{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    column-gap: 30px;
    margin-bottom: 70px;
}
@media screen and (max-width:1199px){
    .entry-career-btns{
        column-gap: 10px;
    }
}
@media screen and (max-width:991px){
    .entry-career-btns{
        margin-bottom: 50px;
    }
}
@media screen and (max-width:575px){
    .entry-career-btns{
        grid-template-columns: 1fr;
        row-gap: 10px;
    }
}
/*  entry-career-btn
------------------------------------------------------------------*/
.entry-career-btn{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    height: 100px;
    padding: 0 1em;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    transition: .2s ease-out;
    z-index: 1;
}
.entry-career-btn::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 50px;
    transition: .4s ease-out;
    content: "";
    z-index: -1;
}
.entry-career-btn .arrow{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 17px;
    height: 17px;
    column-gap: 17px;
    overflow: hidden;
    transition: .4s ease-out;
    z-index: 1;
}
.entry-career-btn .arrow::before,
.entry-career-btn .arrow::after{
    display: block;
    width: 17px;
    height: 17px;
    background: url(../images/common/icon-arrow-white.svg) no-repeat center / contain;
    content: "";
    flex-shrink: 0;
    transform: translateX(-200%);
    transition: .4s ease-out;
}
.entry-career-btn .arrow::before{
    opacity: 0;
}
.entry-career-btn .arrow::after{
    opacity: 1;
}
/* ホバー時動作 */
@media (hover:hover) {
    .entry-career-btn:hover::after{ 
        transform: scale(1.05);    
    }
    .entry-career-btn:hover .arrow::before,
    .entry-career-btn:hover .arrow::after{
        transform: translateX(0);
    }
    .entry-career-btn:hover .arrow::before{
        opacity: 1;
    }
    .entry-career-btn:hover .arrow::after{
        opacity: 0;
    }
}
@media (hover:none) {
    .entry-career-btn:active::after{ 
        transform: scale(1.05);    
    }
    .entry-career-btn:active .arrow::before,
    .entry-career-btn:active .arrow::after{
        transform: translateX(0);
    }
    .entry-career-btn:active .arrow::before{
        opacity: 1;
    }
    .entry-career-btn:active .arrow::after{
        opacity: 0;
    }
}
@media screen and (max-width:1199px){
    .entry-career-btn{
        height: 80px;
        font-size: 16px;
    }
    .entry-career-btn .arrow{
        width: 14px;
        height: 14px;
        column-gap: 14px;
    }
    .entry-career-btn .arrow::before,
    .entry-career-btn .arrow::after{
        width: 14px;
        height: 14px;
    }
}

/*------------------------------------------------------------------
  entry-form
------------------------------------------------------------------*/

/*  entry-form
------------------------------------------------------------------*/
.entry-form{
    position: relative;
    padding: 70px 0;
    background: #F3FCFB;
    overflow: hidden;
    z-index: 1;
}
@media screen and (max-width:767px){
    .entry-form{
        padding: 50px 0;
    }
}
/*  entry-form-box
------------------------------------------------------------------*/
.entry-form-box{
    position: relative;
    padding: 50px 90px;
    margin-bottom: 50px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    z-index: 1;
}
@media screen and (max-width:991px){
    .entry-form-box{
        padding: 50px 20px;
        margin-bottom: 30px;
    }
}
/*  entry-form-area
------------------------------------------------------------------*/
.entry-form-area{
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 40px;
    margin-bottom: 40px;
}
.entry-form-area dt{
    margin-bottom: 10px;
    font-size: 18px;
}
@media screen and (max-width:991px){
    .entry-form-area{
        row-gap: 20px;
        margin-bottom: 20px;
    }
}
/* entry-required ----------------------------------------*/
.entry-required{
    display: inline-block;
    margin-left: 10px;
    font-size: 18px;
    font-weight: bold;
    color: #FF3A3A;
    line-height: 1.5;
}

/* entry-privacy-check ----------------------------------------*/
.entry-privacy-check{
    display: block;
    width: fit-content;
    font-size: 18px;
}
.entry-privacy-check input{
    display: none;
}
.entry-privacy-check .body{
    display: flex;
    align-items: center;
    column-gap: 20px;
}
.entry-privacy-check .body::before{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border: 1px solid #727171;
    border-radius: 5px;
    content: "";
}
.entry-privacy-check input:checked + .body::before{
    border-color: var(--primary-color);
    background: var(--primary-light-color);
    content: url(../images/common/icon-check-primary.svg);
}
@media screen and (max-width:767px){
    .entry-privacy-check{
        font-size: 16px;
    }
    .entry-privacy-check .body{
        column-gap: 7px;
    }
    .entry-privacy-check .body::before{
        width: 20px;
        height: 20px;
    }
}
/*  entry-submit
------------------------------------------------------------------*/
.entry-submit{
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    width: 100%;
    max-width: 525px;
    height: 100px;
    padding: 0 2em;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    line-height: 1.1;
    transition: .2s ease-out;
    z-index: 1;
}
.entry-submit::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 50px;
    transition: .4s ease-out;
    content: "";
    z-index: -1;
}
/* ホバー時動作 */
@media (hover:hover) {
    .entry-submit:hover::after{ 
        transform: scale(1.05);    
    }
}
@media (hover:none) {
    .entry-submit:active::after{ 
        transform: scale(1.05);    
    }
}
@media screen and (max-width:767px){
    .entry-submit{
        height: 60px;
    }
    .entry-submit::after{
        border-radius: 30px;
    }
}