@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
/////////////////////////////////////////////////////////////////*/

/*------------------------------------------------------------------
  index.html hero
------------------------------------------------------------------*/

/*  hero
------------------------------------------------------------------*/
.hero{
    position: relative;
    margin-bottom: 150px;
    overflow: hidden;
    z-index: 1;
}
@media screen and (max-width:1399px){
    .hero{
        margin-bottom: 120px;
    }
}
@media screen and (max-width:991px){
    .hero{
        margin-bottom: 100px;
    }
}
@media screen and (max-width:767px){
    .hero{
        margin-bottom: 60px;
    }
}

/*  hero-movie
------------------------------------------------------------------*/
.hero-movie{
    position: relative;
    height: calc(100vh - 100px);
    z-index: 1;
}
.hero-movie::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: rgba(0,0,0,.2);
    z-index: 1;
}
.hero-movie video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-movie img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width:1399px){
    .hero-movie{
        height: calc(100vh - 80px);
    }
}
@media print, screen and (max-width:991px){
    .hero-movie{
        height: 600px;
    }
}
@media screen and (max-width:575px){
    .hero-movie{
        height: calc(100vh - 50px);
        height: calc(100svh - 50px); /* iPhone対策 */
    }    
}

/*  hero-detail
------------------------------------------------------------------*/
.hero-detail{
    position: absolute;
    bottom: 70px;
    left: 5vw;
    z-index: 2;
}
@media screen and (max-width:1399px){
    .hero-detail{
        bottom: 80px;
    }
}
@media print, screen and (max-width:991px){
    .hero-detail{
        bottom: 50px;
    }
}
@media screen and (max-width:575px){
    .hero-detail{
        bottom: 50%;
        left: 50%;
        transform: translate(-50%, 50%);
    }
}
/*  hero-title
------------------------------------------------------------------*/
.hero-title{
    margin-bottom: 0.3em;
    font-size: 4.5rem;
    font-weight: bold;
    color: #fff;
    line-height: 1.4;
    white-space: nowrap;
}
@media screen and (max-width:1399px){
    .hero-title{
        font-size: 4rem;
    }
}
@media print, screen and (max-width:991px){
    .hero-title{
        font-size: 3.5rem;
    }
}
@media screen and (max-width:575px){
    .hero-title{
        font-size: min(11vw, 3.5rem);
        text-align: center;
    }
}
/*  hero-subtitle
------------------------------------------------------------------*/
.hero-subtitle{
    font-family: "Roboto";
    font-size: 2rem;
    color: #fff;
    line-height: 1.5;
}
@media screen and (max-width:1399px){
    .hero-subtitle{
        font-size: 1.875rem;
    }
}
@media print, screen and (max-width:991px){
    .hero-subtitle{
        font-size: 1.5rem;
    }
}
@media screen and (max-width:575px){
    .hero-subtitle{
        font-size: min(5vw,1.5rem);
        text-align: center;
    }
}

/*------------------------------------------------------------------
  index.html about
------------------------------------------------------------------*/

/*  about
------------------------------------------------------------------*/
.about{
    position: relative;
    --about-padding: 7vw;
    margin-bottom: 150px;
    overflow: hidden;
    z-index: 1;
}
@media screen and (max-width:1399px){
    .about{
        margin-bottom: 120px;
    }
}
@media screen and (max-width:991px){
    .about{
        --about-padding: 0;
        margin-bottom: 80px;
    }
}
@media screen and (max-width:767px){
    .about{
        margin-bottom: 60px;
    }
}

/*  about-treat
------------------------------------------------------------------*/
.about-treat{
    position: absolute;
    top: calc(var(--about-padding) - 0.7em);
    left: 0;
    overflow: hidden;
    font-family: var(--en-font);
    font-size: 10vw;
    font-weight: bold;
    color: var(--primary-light-color);
}
.about-treat span{
    display: block;
    line-height: 0.8;
}
@media screen and (max-width:991px){
    .about-treat{
        display: none;
    }
}

/*  about-wrapper
------------------------------------------------------------------*/
.about-wrapper{
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    column-gap: 60px;
}
@media screen and (max-width:991px){
    .about-wrapper{
        display: block;
    }
}

/*  about-image
------------------------------------------------------------------*/
.about-image{
    position: relative;
    flex-shrink: 0;
    width: 50vw;
    height: 600px;
    overflow: hidden;
    margin-right: calc(50% - 50vw);
    z-index: 2;
}
.about-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width:1399px){
    .about-image{
        height: 500px;
    }
}
@media screen and (max-width:991px){
    .about-image{
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        margin: 0 0 60px;
    }
}
@media screen and (max-width:767px){
    .about-image{
        margin-bottom: 40px;
    }
}
@media screen and (max-width:575px){
    .about-image{
        margin-bottom: 30px;
    }
}

/*  about-detail
------------------------------------------------------------------*/
.about-detail{
    position: relative;
    width: 100%;
    max-width: 560px;
    padding: 120px 0;
    margin-top: var(--about-padding);
    z-index: 1;
}
.about-detail::after{
    position: absolute;
    top: 0;
    right: -100%;
    content: "";
    width: 100vw;
    height: 100%;
    background: var(--primary-light-color);
    z-index: -1;
}
@media screen and (max-width:1399px){
    .about-detail{
        padding: 100px 0;
    }
}
@media screen and (max-width:991px){
    .about-detail{
        max-width: initial;
        padding: 0;
        margin-top: 0;
    }
    .about-detail::after{
        display: none;
    }
}

/*------------------------------------------------------------------
  index.html business
------------------------------------------------------------------*/

/*  business
------------------------------------------------------------------*/
.business{
    position: relative;
    --business-padding: 7vw;
    margin-bottom: 150px;
    overflow: hidden;
    z-index: 1;
}
@media screen and (max-width:1399px){
    .business{
        margin-bottom: 120px;
    }
}
@media screen and (max-width:991px){
    .business{
        --business-padding: 0;
        margin-bottom: 80px;
    }
}
@media screen and (max-width:767px){
    .business{
        margin-bottom: 60px;
    }
}

/*  business-treat
------------------------------------------------------------------*/
.business-treat{
    position: absolute;
    top: calc(var(--business-padding) - 0.7em);
    right: 0;
    overflow: hidden;
    font-family: var(--en-font);
    font-size: 10vw;
    font-weight: bold;
    color: var(--primary-light-color);
}
.business-treat span{
    display: block;
    line-height: 0.8;
}
@media screen and (max-width:991px){
    .business-treat{
        display: none;
    }
}

/*  business-wrapper
------------------------------------------------------------------*/
.business-wrapper{
    display: flex;
    justify-content: space-between;
    column-gap: 60px;
}
@media screen and (max-width:991px){
    .business-wrapper{
        display: block;
    }
}

/*  business-image
------------------------------------------------------------------*/
.business-image{
    position: relative;
    flex-shrink: 0;
    width: 50vw;
    height: 600px;
    overflow: hidden;
    margin-left: calc(50% - 50vw);
    z-index: 2;
}
.business-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width:1399px){
    .business-image{
        height: 500px;
    }
}
@media screen and (max-width:991px){
    .business-image{
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        margin: 0 0 60px;
    }
}
@media screen and (max-width:767px){
    .business-image{
        margin-bottom: 40px;
    }
}
@media screen and (max-width:575px){
    .business-image{
        margin-bottom: 30px;
    }
}

/*  business-image-main
------------------------------------------------------------------*/
.business-image-main{
    margin-bottom: 20px;
    height: 500px;
    overflow: hidden;
}
.business-image-main img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width:1399px){
    .business-image-main{
        height: 400px;
    }
}
@media screen and (max-width:991px){
    .business-image-main{
        height: auto;
    }
}
@media screen and (max-width:575px){
    .business-image-main{
        margin-bottom: 10px;
    }
}

/*  business-image-sub
------------------------------------------------------------------*/
.business-image-sub{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    column-gap: 20px;
}
.business-image-sub figure{
    height: 180px;
    overflow: hidden;
}
.business-image-sub figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width:1399px){
    .business-image-sub figure{
        height: 140px;
    }
}
@media screen and (max-width:991px){
    .business-image-sub figure{
        height: auto;
    }
}
@media screen and (max-width:575px){
    .business-image-sub{
        column-gap: 10px;
    }
}

/*  business-detail
------------------------------------------------------------------*/
.business-detail{
    position: relative;
    width: 100%;
    max-width: 560px;
    padding: 104px 0;
    margin-top: var(--business-padding);
    z-index: 1;
}
.business-detail::after{
    position: absolute;
    top: 0;
    left: -100%;
    content: "";
    width: 100vw;
    height: 100%;
    background: var(--primary-light-color);
    z-index: -1;
}
@media screen and (max-width:1399px){
    .business-detail{
        padding: 100px 0;
    }
}
@media screen and (max-width:991px){
    .business-detail{
        max-width: initial;
        padding: 0;
        margin-top: 0;
    }
    .business-detail::after{
        display: none;
    }
}

/*  business-category
------------------------------------------------------------------*/
.business-category{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 15px;
    row-gap: 15px;
}
.business-category > li{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3.3em;
    background: var(--primary-color);
    font-size: 1.125rem;
    font-weight: 500;
    color: #fff;
    text-align: center;
    line-height: 1.2;
}
@media screen and (max-width:1399px){
    .business-category > li{
        font-size: 1rem;
    }
}
@media screen and (max-width:991px){
    .business-category{
        grid-template-columns: repeat(3, 1fr);
    }
}
@media screen and (max-width:767px){
    .business-category{
        grid-template-columns: repeat(2, 1fr);
    }
    .business-category > li{
        font-size: 1rem;
    }
}
@media screen and (max-width:575px){
    .business-category{
        column-gap: 5px;
        row-gap: 5px;
    }
    .business-category > li{
        font-size: 0.8125rem;
    }
}
@media screen and (max-width:350px){
    .business-category > li{
        font-size: 0.75rem;
    }
}

/*------------------------------------------------------------------
  index.html company
------------------------------------------------------------------*/

/*  company
------------------------------------------------------------------*/
.company{
    padding-bottom: 80px;
}
@media screen and (max-width:767px){
    .company{
        padding-bottom: 60px;
    }
}

/*  company-title
------------------------------------------------------------------*/
.company-title{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 350px;
    margin-bottom: 80px;
    background: url(../images/comapny-title-bg.jpg) no-repeat center / cover;
    z-index: 1;
}
.company-title::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.6);
    content: "";
    z-index: -1;
}
@media screen and (max-width:1399px){
    .company-title{
        height: 300px;
    }
}
@media screen and (max-width:991px){
    .company-title{
        height: 220px;
        margin-bottom: 60px;
    }
}
@media screen and (max-width:767px){
    .company-title{
        height: 150px;
        margin-bottom: 30px;
    }
}

/*  company-table
------------------------------------------------------------------*/
.company-table{
    width: 100%;
}
.company-table > tbody > tr > th,
.company-table > tbody > tr > td{
    padding: 1.5em 1em;
    border-bottom: 1px solid #ccc;
    line-height: 1.4;
    vertical-align: middle;
}
.company-table > tbody > tr > th{
    color: var(--primary-color);
}
@media screen and (max-width:575px){
    .company-table > tbody > tr > th,
    .company-table > tbody > tr > td{
        display: block;
    }
    .company-table > tbody > tr > th{
        padding: 1em 0 0.2em;
        border-bottom: none;
    }
    .company-table > tbody > tr > td{
        padding: 0 0 1em;
    }
}

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

/*------------------------------------------------------------------
  index.html recruit
------------------------------------------------------------------*/

/*  recruit
------------------------------------------------------------------*/
.recruit{
    padding: 150px 0;
    background: var(--primary-color);
    overflow: hidden;
    z-index: 1;
}
@media screen and (max-width:1399px){
    .recruit{
        padding: 120px 0;
    }
}
@media screen and (max-width:991px){
    .recruit{
        padding: 80px 0;
    }
}
@media screen and (max-width:767px){ 
    .recruit{
        padding: 60px 0;
    }
}

/*  recruit-top
------------------------------------------------------------------*/
.recruit-top{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    column-gap: max(5vw,60px);
    margin-bottom: 80px;
}
@media screen and (max-width:991px){
    .recruit-top{
        grid-template-columns: 1fr;
        row-gap: 30px;
        margin-bottom: 60px;
    }
}
@media screen and (max-width:767px){
    .recruit-top{
        margin-bottom: 40px;
    }
}

/*  recruit-top-image
------------------------------------------------------------------*/
.recruit-top-image{
    height: 467px;
    overflow: hidden;
}
.recruit-top-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width:991px){
    .recruit-top-image{
        height: auto;
        aspect-ratio: 2 / 1;
    }
}

/*------------------------------------------------------------------
  index.html welfare
------------------------------------------------------------------*/

/*  welfare-list
------------------------------------------------------------------*/
.welfare-list{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    align-items: center;
    justify-content: center;
    column-gap: 30px;
}
@media screen and (max-width:1399px){
    .welfare-list{
        column-gap: 15px;
    }
}
@media screen and (max-width:991px){
    .welfare-list{
        grid-template-columns: repeat(3, 180px);
        column-gap: 30px;
        row-gap: 30px;
    }
}
@media screen and (max-width:767px){
    .welfare-list{
        grid-template-columns: repeat(2, 1fr);
        column-gap: 10px;
        row-gap: 10px;
    }
}

/*  welfare-item
------------------------------------------------------------------*/
.welfare-item{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: #fff;
    z-index: 1;
}
.welfare-item::after{
    position: absolute;
    top: 5px;
    left: 5px;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    content: "";
    z-index: 1;
}
.welfare-item .icon{
    width: 80px;
    margin-bottom: 8px;
    aspect-ratio: 1 / 1;
}
.welfare-item .icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.welfare-item .title{
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1.4;
}
@media screen and (max-width:1399px){
    .welfare-item .icon{
        width: 60px;
    }
    .welfare-item .title{
        font-size: 1rem;
    }
}
@media screen and (max-width:1199px){
    .welfare-item .icon{
        width: 50px;
    }
    .welfare-item .title{
        font-size: 0.875rem;
    }
}
@media screen and (max-width:991px){
    .welfare-item .icon{
        width: 70px;
    }
    .welfare-item .title{
        font-size: 1rem;
    }
}
@media screen and (max-width:767px){
    .welfare-item{
        flex-direction: row;
        justify-content: flex-start;
        column-gap: 15px;
        aspect-ratio: initial;
        padding: 15px;
        border-radius: 5px;
    }
    .welfare-item::after{
        display: none;
    }
    .welfare-item .icon{
        width: 40px;
        margin-bottom: 0;
    }
    .welfare-item .title{
        font-size: 1rem;
    }
}
@media screen and (max-width:575px){
    .welfare-item {
        padding: 10px;
        column-gap: 10px;
    }
    .welfare-item .icon{
        width: 30px;
    }
    .welfare-item .title{
        font-size: 0.875rem;
    }
}
@media screen and (max-width:350px){
    .welfare-item {
        padding: 8px;
        column-gap: 8px;
    }
    .welfare-item .icon{
        width: 24px;
    }
    .welfare-item .title{
        font-size: 0.8125rem;
    }
}

/*------------------------------------------------------------------
  index.html interview
------------------------------------------------------------------*/

/* interview-treat-wrapper
------------------------------------------------------------------*/
.interview-treat-wrapper{
    display: flex;
    overflow: hidden;
}
  
/* interview-treat
------------------------------------------------------------------*/
.interview-treat{
    margin-right: 0.5em;
    font-family: var(--en-font);
    font-size: 200px;
    font-weight: bold;
    color: #2E339D;
    line-height: 1;
    white-space: nowrap;
}
.interview-treat.one{
    animation: homeInterviewTreatSlider1 90s -45s linear infinite;
}
.interview-treat.two{
    animation: homeInterviewTreatSlider2 90s linear infinite;
}
@keyframes homeInterviewTreatSlider1 {
    from{
        transform: translateX(100%);
    }
    to{
        transform: translateX(-100%);
    }
}
@keyframes homeInterviewTreatSlider2 {
    from{
        transform: translateX(0%);
    }
    to{
        transform: translateX(-200%);
    }
}
@media screen and (max-width:991px){
    .interview-treat{
        font-size: 150px;
    }
}
@media screen and (max-width:767px){
    .interview-treat{
        font-size: 100px;
    }
}

/*  interview-list
------------------------------------------------------------------*/
.interview-list{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    justify-content: center;
    column-gap: 7vw;
    row-gap: 40px;
}
@media screen and (max-width:1399px){
    .interview-list{
        column-gap: 30px;
    }
}
@media screen and (max-width:991px){
    .interview-list{
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width:767px){
    .interview-list{
        grid-template-columns: 1fr;
    }
}

/*  interview-card
------------------------------------------------------------------*/
.interview-card{
    height: 100%;
    padding: 50px 30px;
    background: #fff;
    border-radius: 10px;
}
.interview-card .photo{
    width: 200px;
    margin: 0 auto 24px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
}
.interview-card .photo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.interview-card .name{
    margin-bottom: 24px;
    font-size: 1.75rem;
    font-weight: bold;
    color: var(--primary-color);
    text-align: center;
    line-height: 1.4;
}
.interview-card .text{
    line-height: 1.4;
}
@media screen and (max-width:991px){
    .interview-card{
        padding: 30px 20px;
    }
    .interview-card .photo{
        width: 150px;
        margin-bottom: 16px;
    }
    .interview-card .name{
        margin-bottom: 16px;
        font-size: 1.375rem;
    }
}

/*------------------------------------------------------------------
  index.html contact
------------------------------------------------------------------*/

/*  contact-tel-title
------------------------------------------------------------------*/
.contact-tel-title{
    margin-bottom: 8px;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.4;
}
@media screen and (max-width:767px){
    .contact-tel-title{
        font-size: 1.25rem;
    }
}
@media screen and (max-width:350px){
    .contact-tel-title{
        font-size: 1.125rem;
    }
}

/*  contact-tel-box
------------------------------------------------------------------*/
.contact-tel-box{
    padding: 30px;
    background: #fff;
    text-align: center;
}

/*  contact-tel-num
------------------------------------------------------------------*/
.contact-tel-num{
    margin-bottom: 8px;
    font-family: var(--en-font);
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
}
@media screen and (max-width:767px){
    .contact-tel-num{
        font-size: 2.5rem;
    }
}
@media screen and (max-width:575px){
    .contact-tel-num{
        font-size: 2.25rem;
    }
}
@media screen and (max-width:350px){
    .contact-tel-num{
        font-size: 2rem;
    }
}

/*  contact-tel-time
------------------------------------------------------------------*/
.contact-tel-time{
    line-height: 1.4;
}
@media screen and (max-width:767px){
    .contact-tel-time{
        font-size: 0.875rem;
    }
}