@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-image
------------------------------------------------------------------*/
.home-hero-image{
    height: 100vh;
    height: 100svh;
    min-height: 700px;
    background: #fff;
    overflow: hidden;
}
.home-hero-image::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .1;
    content: "";
    z-index: 1;
}
.home-hero-image img{
    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);
    }
}
@media screen and (max-width:575px){
    .home-hero-image{
        min-height: 540px;
    }
}
@media print{
    .home-hero-image{
        height: 700px;
    }
}
/*  home-hero-detail
------------------------------------------------------------------*/
.home-hero-detail{
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 0 4vw 60px;
    z-index: 2;
}
@media screen and (max-width:575px){
    .home-hero-detail{
        padding: 0 4vw 50px;
    }
}
/*  home-hero-title
------------------------------------------------------------------*/
.home-hero-title{
    margin-bottom: .5em;
    font-size: 5.625rem;
    font-weight: bold;
    font-feature-settings: "palt";
    color: #fff;
    line-height: 1.3;
    text-shadow: 0 0 20px rgba(31, 80, 147, .2);
}
.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: 5rem;
    }
}
@media screen and (max-width:1199px){
    .home-hero-title{
        font-size: 8.5vw;
    }
}
@media screen and (max-width:575px){
    .home-hero-title{
        font-size: 10vw;
    }
}
/*  home-hero-caption
------------------------------------------------------------------*/
.home-hero-caption{
    opacity: 0;
    font-family: var(--en-font);
    color: #fff;
    line-height: 1.5;
    letter-spacing: .1em;
    text-shadow: 0 0 20px rgba(31, 80, 147, .2);
    animation: homeHeroTitle .8s forwards .4s ease-out;
}
@keyframes homeHeroTitle {
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}
@media screen and (max-width:767px){
    .home-hero-caption{
        font-size: .75rem;
    }
}

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

/*  home-about
------------------------------------------------------------------*/
.home-about{
    position: relative;
    padding: 180px 0;
    background: url(../images/common/struckaxiom.webp) repeat center / 64px 64px;
    overflow: hidden;
    z-index: 1;
}
@media screen and (max-width:1399px){
    .home-about{
        padding: 120px 0;
    }
}
@media screen and (max-width:575px){
    .home-about{
        padding: 80px 0;
    }
}
/*  home-about-text
------------------------------------------------------------------*/
.home-about-text{
    margin-bottom: 80px;
    font-size: 1.125rem;
    text-align: center;
    line-height: 2.5;
}
@media screen and (max-width:1399px){
    .home-about-text{
        margin-bottom: 60px;
        font-size: 1rem;
    }
}
@media screen and (max-width:991px){
    .home-about-text{
        margin-bottom: 40px;
        font-size: .875rem;
    }
}
@media screen and (max-width:767px){
    .home-about-text{
        text-align: left;
        line-height: 2;
    }
}
/*  home-about-treat
------------------------------------------------------------------*/
.home-about-treat{
    position: absolute;
    top: 0;
    display: flex;
    font-family: var(--en-font);
    font-size: 200px;
    color: #fff;
    letter-spacing: -.05em;
    line-height: .7;
    white-space: nowrap;
    writing-mode: vertical-lr;
    z-index: -1;
}
.home-about-treat.left{
    left: 0;
}
.home-about-treat.right{
    right: 0;
}
.home-about-treat.left > div{
    padding-bottom: .25em;
    animation: homeAboutTreatLeft 15s linear infinite;
}
.home-about-treat.right > div{
    padding-bottom: .25em;
    animation: homeAboutTreatRight 15s linear infinite;
}
@keyframes homeAboutTreatLeft {
    from{
        transform: translateY(0);
    }
    to{
        transform: translateY(-100%);
    }
}
@keyframes homeAboutTreatRight {
    from{
        transform: translateY(-100%);
    }
    to{
        transform: translateY(0);
    }
}
@media screen and (max-width:1399px){
    .home-about-treat{
        font-size: 150px;
    }
}
@media screen and (max-width:575px){
    .home-about-treat{
        font-size: 80px;
    }
}

/*------------------------------------------------------------------
  home-service
------------------------------------------------------------------*/

/*  home-service
------------------------------------------------------------------*/
.home-service{
    position: relative;
    padding: 180px 0;
    overflow: hidden;
    z-index: 1;
}
@media screen and (max-width:1399px){
    .home-service{
        padding: 150px 0;
    }
}
@media screen and (max-width:991px){
    .home-service{
        padding: 120px 0;
    }
}
@media screen and (max-width:767px){
    .home-service{
        padding: 80px 0;
    }
}
@media screen and (max-width:575px){
    .home-service{
        padding: 60px 0;
    }
}
/*  home-service-head
------------------------------------------------------------------*/
.home-service-head{
    display: flex;
    justify-content: space-between;
    column-gap: 60px;
    margin-bottom: 60px;
}
@media screen and (max-width:991px){
    .home-service-head{
        display: block;
    }
}
@media screen and (max-width:575px){
    .home-service-head{
        margin-bottom: 40px;
    }
}
/*  home-service-head-left
------------------------------------------------------------------*/
.home-service-head-left{
    flex-shrink: 0;
}
/*  home-service-head-right
------------------------------------------------------------------*/
.home-service-head-right{
    width: 735px;
    padding-top: 50px;
}
@media screen and (max-width:991px){
    .home-service-head-right{
        width: 100%;
        padding-top: 0;
    }
}
/*  home-service-list
------------------------------------------------------------------*/
.home-service-list{
    display: grid;
    grid-template-columns: repeat(4,1fr);
}
@media screen and (max-width:991px){
    .home-service-list{
        grid-template-columns: repeat(2,1fr);
        gap: 12px;
        padding: 0 6vw;
    }
}
@media screen and (max-width:575px){
    .home-service-list{
        grid-template-columns: 1fr;
    }
}
/*  home-service-list-item
------------------------------------------------------------------*/
.home-service-list-item{
    position: relative;
    display: block;
    z-index: 1;
}
.home-service-list-item .image{
    position: relative;
    height: 400px;
    background: #061317;
    overflow: hidden;
    z-index: 1;
}
.home-service-list-item .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .5;
    transition: .2s ease-out;
}
.home-service-list-item .title{
    position: absolute;
    top: 150px;
    left: 0;
    width: 100%;
    color: #fff;
    text-align: center;
    z-index: 2;
}
.home-service-list-item .title .en{
    font-family: var(--en-font);
    font-size: .875rem;
    letter-spacing: .2em;
    line-height: 1;
}
.home-service-list-item .title .jp{
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: .1em;
}
.home-service-list-item .view{
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    padding: .5em 4em;
    border: 1px solid #ccc;
    border-radius: 2em;
    font-family: var(--en-font);
    font-size: .75rem;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    transition: .2s ease-out;
    z-index: 2;
}
.home-service-list-item .view::after{
    position: absolute;
    top: 50%;
    right: 1em;
    transform: translateY(-50%);
    content: "\f138";
    font-family: "Font Awesome 6 Free";
    font-weight: bold;
    transition: .2s ease-out;
    z-index: 1;
}
/* ホバー時動作 */
@media (hover:hover) {
    .home-service-list-item:hover .image img{
        transform: scale(1.1);
        opacity: .3;
    }
    .home-service-list-item:hover .view{
        background: var(--primary-color);
        border-color: var(--primary-color);
    }
    .home-service-list-item:hover .view::after{
        right: .5em;
    }
}
@media screen and (max-width:1399px){
    .home-service-list-item .image{
        height: 300px;
    }
    .home-service-list-item .title{
        top: 110px;
    }
    .home-service-list-item .title .en{
        font-size: .75rem;
    }
    .home-service-list-item .title .jp{
        font-size: 1.5rem;
    }
    .home-service-list-item .view{
        bottom: 30px;
    }
}
@media screen and (max-width:575px){
    .home-service-list-item .image{
        height: 150px;
    }
    .home-service-list-item .title{
        top: 44px;
    }
    .home-service-list-item .title .en{
        font-size: .625rem;
    }
    .home-service-list-item .title .jp{
        font-size: 1.25rem;
    }
    .home-service-list-item .view{
        bottom: 16px;
        padding: .25em 4em;
        font-size: .625rem;
    }
}

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

/*  home-recruit
------------------------------------------------------------------*/
.home-recruit{
    position: relative;
    padding: 180px 0;
    background: url(../images/home/recruit-bg.jpg) no-repeat center / cover;
    overflow: hidden;
    z-index: 1;
}
@media screen and (max-width:1399px){
    .home-recruit{
        padding: 150px 0;
    }
}
@media screen and (max-width:991px){
    .home-recruit{
        padding: 120px 0;
    }
}
@media screen and (max-width:767px){
    .home-recruit{
        padding: 80px 0;
    }
}
@media screen and (max-width:575px){
    .home-recruit{
        padding: 60px 0;
    }
}
/*  home-recruit-inner
------------------------------------------------------------------*/
.home-recruit-inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 60px;
}
@media screen and (max-width:991px){
    .home-recruit-inner{
        flex-direction: column;
        align-items: initial;
        justify-content: initial;
        row-gap: 40px;
    }
}
/*  home-recruit-inner-detail
------------------------------------------------------------------*/
.home-recruit-inner-detail{
    width: 380px;
    flex-shrink: 0;
}
@media screen and (max-width:1199px){
    .home-recruit-inner-detail{
        width: 300px;
    }
}
@media screen and (max-width:991px){
    .home-recruit-inner-detail{
        width: 100%;
    }
}
/*  home-recruit-inner-movie
------------------------------------------------------------------*/
.home-recruit-inner-movie{
    width: 960px;
    margin-right: -60px;
}
@media screen and (max-width:1600px){
    .home-recruit-inner-movie{
        margin-right: 0;
    }
}
@media screen and (max-width:991px){
    .home-recruit-inner-movie{
        width: 100%;
    }
}

/*------------------------------------------------------------------
  home-staffing
------------------------------------------------------------------*/

/*  home-staffing
------------------------------------------------------------------*/
.home-staffing{
    position: relative;
    padding: 150px 0;
    background: #efefef;
    overflow: hidden;
    z-index: 1;
}
@media screen and (max-width:1399px){
    .home-staffing{
        padding: 120px 0;
    }
}
@media screen and (max-width:991px){
    .home-staffing{
        padding: 80px 0;
    }
}
@media screen and (max-width:575px){
    .home-staffing{
        padding: 60px 0;
    }
}
/*  home-staffing-head
------------------------------------------------------------------*/
.home-staffing-head{
    display: flex;
    justify-content: space-between;
    column-gap: 60px;
    margin-bottom: 80px;
}
@media screen and (max-width:991px){
    .home-staffing-head{
        flex-direction: column;
        justify-content: initial;
        row-gap: 40px;
        margin-bottom: 60px;
    }
}
/*  home-staffing-head-detail
------------------------------------------------------------------*/
.home-staffing-head-detail{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
    width: 50%;
    max-width: 564px;
}
@media screen and (max-width:991px){
    .home-staffing-head-detail{
        width: 100%;
        max-width: initial;
        padding: 0;
    }
}
/*  home-staffing-head-image
------------------------------------------------------------------*/
.home-staffing-head-image{
    width: 50%;
}
.home-staffing-head-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width:991px){
    .home-staffing-head-image{
        width: 100%;
    }
}
/*  home-staffing-bottom
------------------------------------------------------------------*/
.home-staffing-bottom{
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 60px;
}
@media screen and (max-width:991px){
    .home-staffing-bottom{
        flex-direction: column-reverse;
        justify-content: initial;
        row-gap: 40px;
    }
}
/*  home-staffing-bottom-detail
------------------------------------------------------------------*/
.home-staffing-bottom-detail{
    flex-shrink: 0;
}
@media screen and (max-width:991px){
    .home-staffing-head-detail{
        width: 100%;
        max-width: initial;
        padding: 0;
    }
}
/*  home-staffing-bottom-movie
------------------------------------------------------------------*/
.home-staffing-bottom-movie{
    width: 100%;
}
@media screen and (max-width:991px){
    .home-staffing-head-image{
        width: 100%;
    }
}

/*------------------------------------------------------------------
  home-news
------------------------------------------------------------------*/

/*  home-news
------------------------------------------------------------------*/
.home-news{
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    z-index: 1;
}
@media screen and (max-width:991px){
    .home-news{
        padding: 80px 0;
    }
}
@media screen and (max-width:575px){
    .home-news{
        padding: 60px 0;
    }
}
/*  home-news-inner
------------------------------------------------------------------*/
.home-news-inner{
    display: flex;
    justify-content: space-between;
    column-gap: 30px;
}
@media screen and (max-width:1399px){
    .home-news-inner{
        flex-direction: column;
    }
}
/*  home-news-contents
------------------------------------------------------------------*/
.home-news-contents{
    width: 960px;
}
@media screen and (max-width:1399px){
    .home-news-contents{
        width: 100%;
    }
}
/*  home-news-category-list
------------------------------------------------------------------*/
.home-news-category-list{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 10px;
    margin-bottom: 30px;
}
@media screen and (max-width:767px){
    .home-news-category-list{
        grid-template-columns: repeat(2,1fr);
        gap: 8px;
    }
}
/*  home-news-category-btn
------------------------------------------------------------------*/
.home-news-category-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3em;
    padding: 0 1.5em;
    background: #ccc;
    border-radius: 2em;
    font-size: .875rem;
    color: #666;
    text-align: center;
    line-height: 1.2;
    transition: .2s ease-out;
}
.home-news-category-btn.active{
    background: var(--primary-color);
    color: #fff;
}
/* ホバー時動作 */
@media (hover:hover) {    
    .home-news-category-btn:hover{
        background: var(--primary-color);
        color: #fff;
    }
}
@media (hover:none) {    
    .home-news-category-btn:active{
        background: var(--primary-color);
        color: #fff;
    }
}
@media screen and (max-width:991px){
    .home-news-category-btn{
        font-size: .75rem;
    }
}
/*  home-news-list
------------------------------------------------------------------*/
.home-news-list{
    display: none;
}
.home-news-list.is-show{
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 40px;
}

/*/////////////////////////////////////////////////////////////////
  news.html
/////////////////////////////////////////////////////////////////*/

/*  news-list
------------------------------------------------------------------*/
.news-list{
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 40px;
}
/*  news-list-item
------------------------------------------------------------------*/
.news-list-item{
    position: relative;
    display: flex;
    align-items: center;
    column-gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #ccc;
    transition: .2s ease-out;
    z-index: 1;
}
.news-list-item .date{
    flex-shrink: 0;
    color: #666;
    line-height: 1.3;
    transition: .2s ease-out;
}
.news-list-item .category{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 12em;
    height: 2em;
    padding: 0 .25em;
    border: 1px solid var(--primary-color);
    border-radius: 1em;
    font-size: .75rem;
    color: var(--primary-color);
    line-height: 1;
}
.news-list-item .title{
    flex: 1;
    padding-right: 60px;
    line-height: 1.5;
    transition: .2s ease-out;
}
.news-list-item .new{
    display: inline-block;
    margin-right: .25em;
    color: var(--red-color);
}
.news-list-item .arrow{
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border: 1px solid #515860;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
    color: #666;
    transition: .2s ease-out;
}
.news-list-item .arrow::after{
    content: "\f105";
    font-family: "Font Awesome 6 Free";
}
/* ホバー時動作 */
@media (hover:hover) {
    a.news-list-item:hover{
        border-color: var(--primary-color);
    }
    a.news-list-item:hover .date{
        color: var(--primary-color);
    }
    a.news-list-item:hover .title{
        color: var(--primary-color);
    }
    a.news-list-item:hover .arrow{
        transform: translateY(-50%) scale(.9);
        background: var(--primary-color);
        border-color: var(--primary-color);
        color: #fff;
    }
}
@media (hover:none) {
    a.news-list-item:active{
        border-color: var(--primary-color);
    }
    .news-list-item:active .date{
        color: var(--primary-color);
    }
    a.news-list-item:active .title{
        color: var(--primary-color);
    }
    a.news-list-item:active .arrow{
        transform: translateY(-50%) scale(.9);
        background: var(--primary-color);
        border-color: var(--primary-color);
        color: #fff;
    }
}
@media screen and (max-width:991px){
    .news-list-item{
        flex-wrap: wrap;
        row-gap: 8px;
        column-gap: 10px;
        padding: 16px 0;
    }
    .news-list-item .category{
        width: auto;
        padding: 0 1em;
    }
    .news-list-item .title{
        flex: initial;
        width: 100%;
        padding-right: 0;
    }
    .news-list-item .arrow{
        display: none;
    }
}
/*  news-section
------------------------------------------------------------------*/
.news-section{
    margin-top: 120px;
    padding: 60px 0;
    overflow: hidden;
}
@media screen and (max-width:991px){
    .news-section{
        margin-top: 52px;
    }
}
/*  news-container
------------------------------------------------------------------*/
.news-container{
    max-width: 1120px;
    padding: 0 60px;
    margin: 0 auto;
}
@media screen and (max-width:991px){
    .news-container{
        padding: 0 6vw;
    }
}
/*  news-category
------------------------------------------------------------------*/
.news-detail-head{
    display: flex;
    align-items: center;
    column-gap: 12px;
    margin-bottom: 8px;
}
.news-detail-head .new{
    font-size: .875rem;
    color: var(--red-color);
    line-height: 1;
}
.news-detail-head .date{
    font-size: .875rem;
    color: #666;
    line-height: 1;
}
.news-detail-head .category{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2em;
    padding: 0 2em;
    border-radius: 1em;
    border: 1px solid var(--primary-color);
    font-size: .75rem;
    color: var(--primary-color);
    line-height: 1;
}
@media screen and (max-width:575px){
    .news-detail-head .new{
        font-size: .75rem;
    }
    .news-detail-head .date{
        font-size: .75rem;
    }
}
/*  news-detail-slider
------------------------------------------------------------------*/
.news-detail-slider{
    position: relative;
    margin-bottom: 10px;
    overflow: hidden;
    z-index: 1;
}
.news-detail-slider .swiper-slide a{
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    background: #efefef;
}
.news-detail-slider .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/*  news-detail-thumb-slider
------------------------------------------------------------------*/
.news-detail-thumb-slider{
    position: relative;
    margin-bottom: 40px;
    overflow: hidden;
    z-index: 1;
}
.news-detail-thumb-slider .swiper-wrapper{
    justify-content: center;
}
.news-detail-thumb-slider .swiper-slide{
    width: 80px;
    aspect-ratio: 1 / 1;
    filter: brightness(0.3);
    cursor: pointer;
}
.news-detail-thumb-slider .swiper-slide.swiper-slide-thumb-active{
    filter: brightness(1);
}
.news-detail-thumb-slider .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/*  news-detail-slider-button
------------------------------------------------------------------*/
.news-detail-slider-button-prev,
.news-detail-slider-button-next{
    position: absolute;
    top: 50%;
    width: 36px;
    aspect-ratio: 1 / 1;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translateY(-50%);
    color: #fff;
    transition: .2s ease-out;
    cursor: pointer;
    z-index: 2;
}
.news-detail-slider-button-prev.swiper-button-disabled,
.news-detail-slider-button-next.swiper-button-disabled{
    background: #ccc;
    color: #777;
    pointer-events: none;
}
.news-detail-slider-button-prev{
    left: 4px;
}
.news-detail-slider-button-prev::after{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: "\f104";
    font-family: "Font Awesome 6 Free";
    font-size: 0.75rem;
    font-weight: bold;
}
.news-detail-slider-button-next{
    right: 4px;
}
.news-detail-slider-button-next::after{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-size: 0.75rem;
    font-weight: bold;
}
/* ホバー時動作 */
@media (hover:hover) {
    .news-detail-slider-button-prev:hover,
    .news-detail-slider-button-next:hover,
    .news-detail-slider-button-prev:active,
    .news-detail-slider-button-next:active{
        background: var(--accent-color);
        border-color: var(--accent-color);
        color: #fff;
    }
    .news-detail-slider-button-prev:active,
    .news-detail-slider-button-next:active{
        transform: scale(0.8) translateY(-50%);
    }
}
@media (hover:none) {
    .news-detail-slider-button-prev:active,
    .news-detail-slider-button-next:active{
        background: var(--accent-color);
        border-color: var(--accent-color);
        color: #fff;
        transform: scale(0.8) translateY(-50%);
    }
}

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

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

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

/*  recruit-benefits-list
------------------------------------------------------------------*/
.recruit-benefits-list{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}
@media screen and (max-width:1199px){
    .recruit-benefits-list{
        grid-template-columns: repeat(3,1fr);
    }
}
@media screen and (max-width:991px){
    .recruit-benefits-list{
        grid-template-columns: repeat(2,1fr);
    }
}
@media screen and (max-width:575px){
    .recruit-benefits-list{
        grid-template-columns: 1fr;
        row-gap: 8px;
    }
}
/*  recruit-benefits-item
------------------------------------------------------------------*/
.recruit-benefits-item{
    height: 100%;
    padding: 30px 15px 20px;
    background: #fff;
    border: 1px solid #aaa;
    border-radius: 10px;
    text-align: center;
}
.recruit-benefits-item .image{
    width: 80px;
    height: 80px;
    margin: 0 auto 10px;
}
.recruit-benefits-item .image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.recruit-benefits-item .text{
    font-size: 1.125rem;
    font-weight: bold;
    line-height: 1.5;
}
@media screen and (max-width:575px){
    .recruit-benefits-item{
        display: flex;
        align-items: center;
        column-gap: 10px;
        padding: 10px;
    }
    .recruit-benefits-item .image{
        width: 32px;
        height: 32px;
        margin: initial;
    }
    .recruit-benefits-item .text{
        font-size: 1rem;
        text-align: left;
    }
}


/*------------------------------------------------------------------
  recruit-flow
------------------------------------------------------------------*/

/*  recruit-flow
------------------------------------------------------------------*/
.recruit-flow{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    column-gap: 30px;
    margin: 0 auto 60px;
}
@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: 30px;
    }
}

/*  recruit-flow-item
------------------------------------------------------------------*/
.recruit-flow-item{
    position: relative;
    padding: 50px 30px 40px;
    background: var(--primary-light-color);
}
.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 var(--primary-light-color);
}
.recruit-flow-item:last-of-type:after{
    display: none;
}
.recruit-flow-item .icon{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    aspect-ratio: 1 / 1;
    background: var(--primary-color);
    border-radius: 50%;
    margin: 0 auto 20px;
    font-size: 36px;
    color: #fff;
}
.recruit-flow-item .title{
    margin-bottom: 20px;
    font-size: 1.75rem;
    font-weight: bold;
    text-align: center;
    line-height: 1;
}
.recruit-flow-item .text{
    text-align: center;
    line-height: 1.8;
}
@media screen and (max-width:1199px){
    .recruit-flow-item{
        padding: 40px 24px 30px;
    }
    .recruit-flow-item::after{
        border-width: 16px;
    }
    .recruit-flow-item .icon{
        width: 80px;
        margin-bottom: 16px;
        font-size: 24px;
    }
    .recruit-flow-item .title{
        margin-bottom: 16px;
        font-size: 1.375rem;
    }
    .recruit-flow-item .text{
        font-size: .875rem;
    }
}
@media screen and (max-width:767px){
    .recruit-flow-item::after{
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        border-color: #1f1f1f transparent transparent transparent;
        border-width: 24px;
    }
}
/*------------------------------------------------------------------
  recruit-contact
------------------------------------------------------------------*/

/*  recruit-contact-mail
------------------------------------------------------------------*/
.recruit-contact-mail{
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 5px;
    width: fit-content;
    padding: 1em 3em;
    margin: 0 auto;
    background: var(--primary-color);
    border-radius: 2em;
    transition: .2s ease-out;
    font-size: 1.25rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
    --letter-spacing:0;
}
.recruit-contact-mail i{
    margin-right: 10px;
    font-size: 1.25em;
}
/* ホバー時動作 */
@media (hover:hover) {
    .recruit-contact-mail:hover{
        background: var(--accent-color);
        color: var(--black-color);
    }
}
@media screen and (max-width:991px){
    .recruit-contact-mail{
        font-size: 1.125rem;
    }
}
@media screen and (max-width:575px){
    .recruit-contact-mail{
        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: 40px 20px;
    background: var(--primary-light-color);
    text-align: center;
}
.contact-tel-box .title{
    margin-bottom: 12px;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1;
}
.contact-tel-box .num{
    margin-bottom: 12px;
    font-family: var(--en-font);
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: bold;
    line-height: 1;
}
.contact-tel-box .time{
    font-size: .875rem;
    line-height: 1;
}
@media screen and (max-width:575px){
    .contact-tel-box{
        padding: 30px 16px;
    }
    .contact-tel-box .title{
        font-size: 1.25rem;
    }
    .contact-tel-box .num{
        font-size: 2rem;
    }
    .contact-tel-box .time{
        font-size: .75rem;
    }
}