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

　CSS構成

　//絶対に変更しないCSS
　- reset.css           全てのブラウザ固有CSSをリセットするCSS。基本触らないこと。
　- bootstrap.min.css   Bootstrapコンポーネントを利用するためのCSS。基本触らないこと。
　- all.min.css         Font Awesome を利用するためのCSS。基本触らないこと。
　- aos.css             AOSを利用するための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-slider
------------------------------------------------------------------*/
.home-hero-slider .swiper-slide{
    height: calc(100vh - 80px);
    min-height: 700px;
    background: #fff;
    overflow: hidden;
}
.home-hero-slider .swiper-slide::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .2;
    content: "";
    z-index: 1;
}
.home-hero-slider .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width:1399px){
    .home-hero-slider .swiper-slide{
        min-height: 600px;
    }
}
@media screen and (max-width:991px){
    .home-hero-slider .swiper-slide{
        height: auto;
        min-height: initial;
        aspect-ratio: 4 / 3;
    }
}
@media screen and (max-width:767px){
    .home-hero-slider .swiper-slide{
        aspect-ratio: 1 / 1;
    }
}
/*  home-hero-slider-image
------------------------------------------------------------------*/
.home-hero-slider-image{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    opacity: 0;
    animation: homeHeroSlide 1s ease-out forwards;
}
@keyframes homeHeroSlide {
    from{
        opacity: 0;
        transform: scale(1.1);
    }
    to{
        opacity: 1;
        transform: scale(1);
    }
}
/*  home-hero-detail
------------------------------------------------------------------*/
.home-hero-detail{
    position: absolute;
    left: 4vw;
    bottom: 7vh;
    z-index: 2;
}
@media screen and (max-width:991px){
    .home-hero-detail{
        bottom: 10%;
    }
}
/*  home-hero-title-en
------------------------------------------------------------------*/
.home-hero-title{
    margin-bottom: .5em;
    font-size: 60px;
    font-weight: bold;
    color: #fff;
    line-height: 1.3;
    --letter-spacing: .05em;
}
.home-hero-title .wrap{
    display: block;
    width: fit-content;
    overflow: hidden;
}
.home-hero-title .inner{
    display: block;
    transform: translateY(100%);
    animation: homeHeroTitleEn .5s forwards .4s ease-out;
}
@keyframes homeHeroTitleEn {
    from{
        transform: translateY(100%);
    }
    to{
        transform: translateY(0);
    }
}
@media screen and (max-width:1399px){
    .home-hero-title{
        font-size: 60px;
    }
}
@media screen and (max-width:991px){
    .home-hero-title{
        font-size: 6vw;
    }
}
@media screen and (max-width:767px){
    .home-hero-title .wrap{
        width: auto;
    }
    .home-hero-title{
        font-size: min(8vw,3rem);
    }
}
/*  home-hero-text
------------------------------------------------------------------*/
.home-hero-text{
    width: fit-content;
    padding: .5em 1em;
    background: #fff;
    opacity: 0;
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
    animation: homeHeroTitle .8s forwards .4s ease-out;
}
@keyframes homeHeroTitle {
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}
@media screen and (max-width:1399px){
    .home-hero-text{
        font-size: 1.25rem;
    }
}
@media screen and (max-width:991px){
    .home-hero-text{
        font-size: 1.7vw;
    }
}
@media screen and (max-width:767px){
    .home-hero-text{
        font-size: clamp( .75rem, 3.25vw, 1rem);
    }
}
@media print{
    .home-hero-text{
        font-size: 1rem;
    }
}

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

/*  home-about
------------------------------------------------------------------*/
.home-about{
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    z-index: 1;
}
.home-about::before{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/home-about-bg01.png) no-repeat top left / 100%;
    content: "";
    z-index: -1;
}
.home-about::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/home-about-bg02.png) no-repeat bottom right / 100%;
    content: "";
    z-index: -1;
}
@media screen and (max-width:1399px){
    .home-about{
        padding: 100px 0;
    }
}
@media print, screen and (max-width:991px){
    .home-about{
        padding: 80px 0;
    }
    .home-about::before{
        background-size: 150%;
    }
    .home-about::after{
        background-size: 150%;
    }
}
@media screen and (max-width:767px){
    .home-about{
        padding: 60px 0;
    }
}
/*  home-about-wrapper
------------------------------------------------------------------*/
.home-about-wrapper{
    display: flex;
    justify-content: space-between;
}
@media screen and (max-width:1199px){
    .home-about-wrapper{
        flex-direction: column;
        justify-content: initial;
        row-gap: 40px;
        padding: 0 6vw;
    }
}
/*  home-about-detail
------------------------------------------------------------------*/
.home-about-detail{
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 800px;
    padding: 40px 100px;
}
@media screen and (max-width:1699px){
    .home-about-detail{
        width: 720px;
        padding: 40px 60px;
    }
}
@media screen and (max-width:1399px){
    .home-about-detail{
        width: 580px;
        padding: 20px 60px;
    }
}
@media screen and (max-width:1199px){
    .home-about-detail{
        width: 100%;
        padding: 0;
    }
}
@media print{
    .home-about-detail{
        width: 50%;
        padding: 20px 30px;
    }
}
/*  home-about-image
------------------------------------------------------------------*/
.home-about-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*------------------------------------------------------------------
  home-company
------------------------------------------------------------------*/

/*  home-company
------------------------------------------------------------------*/
.home-company{
    position: relative;
    padding: 120px 0;
    background: url(../images/home-company-bg.jpg) no-repeat center / cover;
    overflow: hidden;
    z-index: 1;
}
@media screen and (max-width:1399px){
    .home-company{
        padding: 100px 0;
    }
}
@media print, screen and (max-width:991px){
    .home-company{
        padding: 80px 0;
    }
}
@media screen and (max-width:767px){
    .home-company{
        padding: 60px 0;
    }
}

/*------------------------------------------------------------------
  home-recruit
------------------------------------------------------------------*/

/*  home-recruit
------------------------------------------------------------------*/
.home-recruit{
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    z-index: 1;
}
@media screen and (max-width:1399px){
    .home-recruit{
        padding: 100px 0;
    }
}
@media print, screen and (max-width:991px){
    .home-recruit{
        padding: 80px 0;
    }
}
@media screen and (max-width:767px){
    .home-recruit{
        padding: 60px 0;
    }
}
/*  home-recruit-wrapper
------------------------------------------------------------------*/
.home-recruit-wrapper{
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
}
@media screen and (max-width:991px){
    .home-recruit-wrapper{
        flex-direction: column;
        justify-content: initial;
        row-gap: 40px;
        padding: 0 6vw;
    }
}
/*  home-recruit-detail
------------------------------------------------------------------*/
.home-recruit-detail{
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 840px;
    padding: 40px 100px;
}
@media screen and (max-width:1699px){
    .home-recruit-detail{
        width: 760px;
        padding: 40px 60px;
    }
}
@media screen and (max-width:1399px){
    .home-recruit-detail{
        width: 560px;
        padding: 20px 60px;
    }
}
@media screen and (max-width:1199px){
    .home-recruit-detail{
        width: 48%;
        padding: 20px 30px;
    }
}
@media screen and (max-width:991px){
    .home-recruit-detail{
        width: 100%;
        padding: 0;
    }
}
@media print{
    .home-recruit-detail{
        width: 50%;
        padding: 20px 30px;
    }
}
/*  home-recruit-image
------------------------------------------------------------------*/
.home-recruit-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}


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

/* company-map ----------------------------------------*/
.company-map{
    height: 360px;
    margin-bottom: 30px;
}
.company-map iframe{
    width: 100%;
    height: 100%;
}
@media screen and (max-width:767px){
    .company-map{
        height: auto;
        aspect-ratio: 4 / 3;
    }
}


/*/////////////////////////////////////////////////////////////////
  recruit.html
/////////////////////////////////////////////////////////////////*/

/*  recruit-welfare
------------------------------------------------------------------*/
.recruit-welfare{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    column-gap: 20px;
    row-gap: 20px;
    margin-bottom: 20px;
}
@media screen and (max-width:1199px){
    .recruit-welfare{
        column-gap: 10px;
        row-gap: 10px;
    }
}
@media screen and (max-width:991px){
    .recruit-welfare{
        grid-template-columns: repeat(2,1fr);
    }
}
@media screen and (max-width:767px){
    .recruit-welfare{
        grid-template-columns: 1fr;
    }
}
/*  recruit-welfare-item
------------------------------------------------------------------*/
.recruit-welfare-item{
    padding: 30px 15px;
    background: #fff;
    text-align: center;
}
.recruit-welfare-item .image{
    width: 90px;
    aspect-ratio: 1 / 1;
    margin: 0 auto 20px;
}
.recruit-welfare-item .image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.recruit-welfare-item .title{
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 1.2;
}
@media screen and (max-width:991px){
    .recruit-welfare-item{
        display: flex;
        align-items: center;
        column-gap: 10px;
        padding: 10px;
    }
    .recruit-welfare-item .image{
        width: 40px;
        margin: initial;
    }
    .recruit-welfare-item .title{
        font-size: 1rem;
        text-align: left;
    }
}

/*  recruit-flow
------------------------------------------------------------------*/
.recruit-flow{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    column-gap: 30px;
    margin: 0 auto 30px;
}
@media screen and (max-width:1199px){
    .recruit-flow{
        column-gap: 20px;
    }
}
@media screen and (max-width:767px){
    .recruit-flow{
        grid-template-columns: 1fr;
        row-gap: 16px;
    }
}

/*  recruit-flow-item
------------------------------------------------------------------*/
.recruit-flow-item{
    position: relative;
    padding: 20px 16px 30px;
    background: #efefef;
}
.recruit-flow-item::after{
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    content: "";
    border-width: 20px;
    border-style: solid;
    border-color: transparent transparent transparent #efefef;
}
.recruit-flow-item:last-of-type:after{
    display: none;
}
.recruit-flow-item .icon{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    aspect-ratio: 1 / 1;
    background: #fff;
    border-radius: 50%;
    margin: 0 auto 12px;
    font-size: 28px;
    color: var(--primary-color);
}
.recruit-flow-item .body{
    text-align: center;
}
.recruit-flow-item .step{
    margin-bottom: 8px;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
}
.recruit-flow-item .title{
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1;
}
@media screen and (max-width:1199px){
    .recruit-flow-item::after{
        border-width: 16px;
    }
    .recruit-flow-item .icon{
        width: 80px;
        margin-bottom: 16px;
        font-size: 24px;
    }
    .recruit-flow-item .step{
        font-size: .875rem;
    }
    .recruit-flow-item .title{
        font-size: 1.25rem;
    }
}
@media screen and (max-width:767px){
    .recruit-flow-item{
        display: flex;
        align-items: center;
        column-gap: 12px;
        padding: 12px;
    }
    .recruit-flow-item::after{
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        border-color: #efefef transparent transparent transparent;
        border-width: 16px;
    }
    .recruit-flow-item .icon{
        flex-shrink: 0;
        width: 48px;
        margin: 0;
        font-size: 16px;
    }
    .recruit-flow-item .body{
        flex: 1;
        text-align: left;
    }
    .recruit-flow-item .step{
        margin-bottom: 4px;
        font-size: .75rem;
    }
    .recruit-flow-item .title{
        font-size: 1rem;
    }
}

/*/////////////////////////////////////////////////////////////////
  contact.html
/////////////////////////////////////////////////////////////////*/

/*  contact-tel-box
------------------------------------------------------------------*/
.contact-tel-box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 30px 20px;
    background: #efefef;
    text-align: center;
}
.contact-tel-box .title{
    margin-bottom: 12px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1.4;
}
.contact-tel-box .num{
    margin-bottom: 16px;
    font-size: 1.25rem;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    --letter-spacing: 0;
}
.contact-tel-box .num span{
    font-size: 2em;
    letter-spacing: 0;
}
.contact-tel-box .time{
    font-size: 0.875rem;
    line-height: 1.4;
}
@media screen and (max-width:767px){
    .contact-tel-box{
        padding: 24px 16px;
    }
    .contact-tel-box .title{
        margin-bottom: 8px;
        font-size: 1.25rem;
    }
    .contact-tel-box .num{
        font-size: 1rem;
    }
    .contact-tel-box .time{
        font-size: .75rem;
    }
}
@media screen and (max-width:575px){
    .contact-tel-box .title{
        font-size: 1.125rem;
    }
    .contact-tel-box .num{
        margin-bottom: 12px;
        font-size: .875rem;
    }
}
@media screen and (max-width:350px){
    .contact-tel-box .num{
        font-size: .875rem;
    }
    .contact-tel-box .title{
        font-size: 1.125rem;
    }
}

.form-error{
    position: relative;
    padding-left: 1.25em;
    margin-top: 5px;
    color: var(--red-color);
}
.form-error::before{
    position: absolute;
    top: 0;
    left: 0;
    content: "\f057";
    font-family: "Font Awesome 6 Free";
    font-weight: bold;
}