@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;
    padding: 100px 3vw 50px;
    z-index: 1;
}
@media screen and (max-width:1399px){
    .home-hero{
        padding: 80px 3vw 50px;
    }
}
@media screen and (max-width:991px){
    .home-hero{
        padding: 60px 6vw 40px;
    }
}
@media screen and (max-width:767px){
    .home-hero{
        padding: 40px 6vw 30px;
    }
}
/*  home-hero-caption
------------------------------------------------------------------*/
.home-hero-caption{
    font-family: var(--en-font);
    font-size: 10.8vw;
    font-weight: bold;
    font-feature-settings: "palt";
    color: var(--primary-color);
    text-align: center;
    line-height: 1;
}
@media screen and (max-width:1199px){
    .home-hero-caption{
        text-align: left;
    }
}
@media screen and (max-width:991px){
    .home-hero-caption{
        font-size: 10vw;
    }
}
@media screen and (max-width:767px){
    .home-hero-caption{
        font-size: 18vw;
    }
}
/*  home-hero-detail
------------------------------------------------------------------*/
.home-hero-detail{
    display: flex;
    justify-content: space-between;
}
@media screen and (max-width:1199px){
    .home-hero-detail{
        flex-direction: column;
        row-gap: 30px;
    }
}
/*  home-hero-title
------------------------------------------------------------------*/
.home-hero-title{
    font-size: 2.25rem;
    font-weight: bold;
    line-height: 1.5;
}
@media screen and (max-width:1399px){
    .home-hero-title{
        font-size: 1.875rem;
    }
}
@media screen and (max-width:991px){
    .home-hero-title{
        font-size: 1.5rem;
    }
}
@media screen and (max-width:575px){
    .home-hero-title{
        font-size: 1.25rem;
    }
}

/*------------------------------------------------------------------
  home-anchor
------------------------------------------------------------------*/

/*  home-anchor
------------------------------------------------------------------*/
.home-anchor{
    display: grid;
    grid-template-columns: repeat(2,1fr);
}
@media screen and (max-width:767px){
    .home-anchor{
        grid-template-columns: 1fr;
    }
}
/*  home-anchor-item
------------------------------------------------------------------*/
.home-anchor-item{
    position: relative;
    display: block;
    z-index: 1;
}
.home-anchor-item .image{
    height: 400px;
    overflow: hidden;
}
.home-anchor-item .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .2s ease-out;
}
.home-anchor-item .caption{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.home-anchor-item .caption img{
    width: auto;
    height: 100%;
}
.home-anchor-item .detail{
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0 120px 30px 30px;
    z-index: 1;
}
.home-anchor-item .title{
    margin-bottom: 12px;
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    line-height: 1.5;
}
.home-anchor-item .text{
    color: #fff;
    line-height: 1.7;
}
.home-anchor-item .arrow{
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    aspect-ratio: 1 / 1;
    background: var(--primary-color);
    border-radius: 50%;
    color: #fff;
    transition: .2s ease-out;
    z-index: 1;
}
/* ホバー時動作 */
@media (hover:hover) {
    .home-anchor-item:hover .image img{
        transform: scale(1.1);
        filter: brightness(.6);
    }
    .home-anchor-item:hover .arrow{
        transform: scale(.8);
        background: var(--primary-bright-color);
    }
}
@media (hover:none) {
    .home-anchor-item:active .image img{
        transform: scale(1.1);
        filter: brightness(.6);
    }
    .home-anchor-item:active .arrow{
        transform: scale(.8);
        background: var(--primary-bright-color);
    }
}
@media screen and (max-width:1399px){
    .home-anchor-item .image{
        height: 300px;
    }
    .home-anchor-item .caption{
        height: 80px;
    }
    .home-anchor-item .detail{
        padding: 0 84px 20px 20px;
    }
    .home-anchor-item .title{
        font-size: 1.75rem;
    }
    .home-anchor-item .text{
        font-size: .875rem;
    }
    .home-anchor-item .arrow{
        bottom: 12px;
        right: 12px;
        width: 60px;
        font-size: 12px;
    }
}
@media screen and (max-width:575px){
    .home-anchor-item .image{
        height: 200px;
    }
    .home-anchor-item .caption{
        height: 60px;
    }
    .home-anchor-item .detail{
        padding: 0 72px 20px 20px;
    }
    .home-anchor-item .title{
        margin-bottom: 8px;
        font-size: 1.375rem;
    }
    .home-anchor-item .arrow{
        width: 48px;
        font-size: 10px;
    }
}

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

/*  home-news
------------------------------------------------------------------*/
.home-news{
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    z-index: 1;
}
@media screen and (max-width:1399px){
    .home-news{
        padding: 100px 0;
    }
}
@media screen and (max-width:991px){
    .home-news{
        padding: 80px 0;
    }
}
@media screen and (max-width:767px){
    .home-news{
        padding: 60px 0;
    }
}
/*  home-news-wrapper
------------------------------------------------------------------*/
.home-news-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    column-gap: 60px;
}
@media screen and (max-width:1199px){
    .home-news-wrapper{
        flex-direction: column;
        justify-content: initial;
        align-items: initial;
        margin-bottom: 40px;
    }
}
/*  home-news-titlearea
------------------------------------------------------------------*/
.home-news-titlearea{
    flex-shrink: 0;
}
/*  home-news-detail
------------------------------------------------------------------*/
.home-news-detail{
    width: 100%;
    max-width: 1200px;
}
/*  home-news-category
------------------------------------------------------------------*/
.home-news-category{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 10px;
    margin-bottom: 20px;
}
@media screen and (max-width:767px){
    .home-news-category{
        grid-template-columns: repeat(2,1fr);
    }
}
@media screen and (max-width:575px){
    .home-news-category{
        gap: 4px;
    }
}
/*  home-news-category-btn
------------------------------------------------------------------*/
.home-news-category-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3.25em;
    padding: 0 1em;
    background: #ccc;
    text-align: center;
    line-height: 1.2;
    transition: .2s ease-out;
}
.home-news-category-btn.active{
    background: var(--primary-color);
    color: #fff;
    pointer-events: none;
}
/* ホバー時動作 */
@media (hover:hover) {
    .home-news-category-btn:hover{
        background: var(--primary-bright-color);
        color: #fff;
    }
}
@media (hover:none) {
    .home-news-category-btn:active{
        background: var(--primary-bright-color);
        color: #fff;
    }
}
@media screen and (max-width:575px){
    .home-news-category-btn{
        font-size: .75rem;
    }
}
/* home-news-list
------------------------------------------------------------------*/
.home-news-list{
    max-height: 500px;
    padding-right: 10px;
    margin-right: -10px;
    overflow-y: auto;
}
/* home-news-list-item
------------------------------------------------------------------*/
.home-news-list-item{
    position: relative;
    display: block;
    padding: 1.5em 3em 1.5em 0;
    border-bottom: 1px solid #ccc;
    transition: .2s ease-out;
}
.home-news-list-item .detail{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 8px;
    margin-bottom: 8px;
}
.home-news-list-item .new{
    font-size: .875rem;
    color: var(--red-color);
    line-height: 1;
}
.home-news-list-item .date{
    font-size: .875rem;
    color: #555;
    line-height: 1;
}
.home-news-list-item .category{
    font-size: .875rem;
    color: var(--primary-color);
    line-height: 1;
}
.home-news-list-item .title{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    line-height: 1.5;
    transition: .2s ease-out;
}
.home-news-list-item .arrow{
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5em;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    border: 1px solid #888;
    transition: .2s ease-out;
}
.home-news-list-item .arrow i{
    font-size: 10px;
    color: #555;
    transition: .2s ease-out;
}
/* ホバー時動作 */
@media (hover:hover) {
    a.home-news-list-item:hover{
        padding: 1.5em 3em 1.5em 1em;
        background: var(--primary-light-color);
        border-color: var(--primary-color);
    }
    a.home-news-list-item:hover .title{
        color: var(--primary-color);
    }
    a.home-news-list-item:hover .arrow{
        transform: translateY(-50%) scale(.8);
        background: var(--primary-color);
    }
    a.home-news-list-item:hover .arrow i{
        color: #fff;
    }
}
@media (hover:none) {
    a.home-news-list-item:active{
        padding: 1.5em 0;
        background: var(--primary-light-color);
        border-color: var(--primary-color);
    }
    a.home-news-list-item:active .title{
        color: var(--primary-color);
    }
    a.home-news-list-item:active .arrow{
        transform: translateY(-50%) scale(.8);
        background: var(--primary-color);
    }
    a.home-news-list-item:active .arrow i{
        color: #fff;
    }
}
@media screen and (max-width:991px){
    .home-news-list-item .detail{
        column-gap: 8px;
    }
    .home-news-list-item .new{
        font-size: .75rem;
    }
    .home-news-list-item .date{
        font-size: .75rem;
    }
}
@media screen and (max-width:575px){
    .home-news-list-item{
        padding: 1.5em 0;
    }
    .home-news-list-item .arrow{
        display: none;
    }
}

/*------------------------------------------------------------------
  home-business
------------------------------------------------------------------*/

/*  home-business
------------------------------------------------------------------*/
.home-business{
    display: flex;
    background: #1f1f1f;
}
.home-business:nth-of-type(even){ flex-direction: row-reverse;}
.home-business.general{ background: url(../images/home-business-general-bg.jpg) no-repeat center / cover;}
.home-business.spl{ background: url(../images/home-business-spl-bg.jpg) no-repeat center / cover;}

@media screen and (max-width:767px){
    .home-business{
        display: block;
    }
}
/*  home-business-detail
------------------------------------------------------------------*/
.home-business-detail{
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
    width: 50%;
    padding: 100px 6vw;
}
@media screen and (max-width:1199px){
    .home-business-detail{
        padding: 60px 40px;
    }
}
@media screen and (max-width:767px){
    .home-business-detail{
        width: 100%;
        padding: 60px 6vw 40px;
    }
}
/*  home-business-links
------------------------------------------------------------------*/
.home-business-links{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    column-gap: 30px;
}
.home-business-links > li > a{
    position: relative;
    display: block;
    padding: .5em 60px .5em 0;
    border-bottom: 1px solid #ccc;
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    line-height: 1.2;
    transition: .2s ease-out;
}
.home-business-links > li > a::after{
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    aspect-ratio: 1 / 1;
    border: 1px solid #ccc;
    border-radius: 50%;
    content: "\f061";
    font-family: "Font Awesome 7 Free";
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    transition: .2s ease-out;
}
.home-business-links > li > a > small{
    display: block;
    margin-bottom: .25em;
    font-size: .875rem;
    color: var(--primary-bright-color);
}
@media (hover:hover) {
    .home-business-links > li > a:hover{
        padding-left: 12px;
        background: rgba(193, 247, 226, 0.3);
        border-color: var(--primary-bright-color);
    }
    .home-business-links > li > a:hover::after{
        transform: translateY(-50%) scale(.8);
        background: var(--primary-bright-color);
        border-color: var(--primary-bright-color);
    }
}
@media (hover:none) {
    .home-business-links > li > a:active{
        padding-left: 12px;
        background: rgba(193, 247, 226, 0.3);
        border-color: var(--primary-bright-color);
    }
    .home-business-links > li > a:active::after{
        transform: translateY(-50%) scale(.8);
        background: var(--primary-bright-color);
        border-color: var(--primary-bright-color);
    }
}
@media screen and (max-width:1399px){
    .home-business-links{
        column-gap: 16px;
    }
    .home-business-links > li > a{
        padding: .5em 50px .5em 0;
        font-size: 1.25rem;
    }
    .home-business-links > li > a::after{
        width: 40px;
        font-size: 10px;
    }
    .home-business-links > li > a > small{
        font-size: .75rem;
    }
}
@media screen and (max-width:991px){
    .home-business-links{
        grid-template-columns: 1fr;
        row-gap: 12px;
    }
    .home-business-links > li > a{
        padding: .5em 48px .5em 0;
        font-size: 1.125rem;
    }
    .home-business-links > li > a::after{
        width: 36px;
    }
}
/*  home-business-image
------------------------------------------------------------------*/
.home-business-image{
    flex-shrink: 0;
    width: 50%;
    overflow: hidden;
}
.home-business-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width:767px){
    .home-business-image{
        width: 100%;
        aspect-ratio: 16 / 9;
    }
}

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

/*  home-company
------------------------------------------------------------------*/
.home-company{
    position: relative;
    display: block;
    padding: clamp(50px,11.4vw,160px) 6vw;
    z-index: 1;
}
.home-company::after{
    position: absolute;
    top: 50%;
    right: 6vw;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(14.3vw,200px);
    aspect-ratio: 1 / 1;
    background: var(--primary-color);
    border-radius: 50%;
    content: "\f061";
    font-family: "Font Awesome 7 Free";
    font-size: clamp(10px,3.4vw,48px);
    font-weight: bold;
    color: #fff;
    transition: .2s ease-out;
    z-index: 1;
}
.home-company .en{
    margin-bottom: .1em;
    font-family: var(--en-font);
    font-size: min(14.3vw,200px);
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
    transition: .2s ease-out;
}
.home-company .jp{
    font-size: clamp(.875rem,2.85vw, 2.5rem);
    font-weight: bold;
    line-height: 1;
}
/* ホバー時動作 */
@media (hover:hover) {
    .home-company:hover::after{
        transform: translateY(-50%) scale(.8);
        background: var(--primary-bright-color);
    }
    .home-company:hover .en{
        color: var(--primary-bright-color);
    }
}
@media (hover:none) {
    .home-company:active::after{
        transform: translateY(-50%) scale(.8);
        background: var(--primary-bright-color);
    }
    .home-company:active .en{
        color: var(--primary-bright-color);
    }
}


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

/*  news-container
------------------------------------------------------------------*/
.news-container{
    max-width: 1000px;
    padding: 0 60px;
    margin: 0 auto;
}
@media screen and (max-width:991px){
    .news-container{
        padding: 0 6vw;
    }
}

/*  news-detail
------------------------------------------------------------------*/
.news-detail{
    display: flex;
    align-items: center;
    column-gap: 12px;
    margin-bottom: 12px;
}
.news-detail .new{
    font-size: .875rem;
    color: var(--red-color);
    line-height: 1;
}
.news-detail .date{
    font-size: .875rem;
    color: #666;
    line-height: 1;
}
.news-detail .category{
    display: inline-block;
    font-size: .875rem;
    color: var(--primary-color);
    line-height: 1;
}
@media screen and (max-width:575px){
    .news-detail{
        column-gap: 8px;
        margin-bottom: 4px;
    }
    .news-detail .date{
        font-size: .75rem;
    }
    .news-detail .category{
        font-size: .75rem;
    }
}
/*  news-slider
------------------------------------------------------------------*/
.news-slider{
    position: relative;
    margin-bottom: 10px;
    z-index: 1;
}
.news-slider .swiper-slide{
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    background: #fff;
}
.news-slider .swiper-slide a{
    display: block;
    height: 100%;
}
.news-slider .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/*  news-thumb-slider
------------------------------------------------------------------*/
.news-thumb-slider{
    position: relative;
    margin-bottom: 40px;
    overflow: hidden;
    z-index: 1;
}
.news-thumb-slider .swiper-wrapper{
    justify-content: center;
}
.news-thumb-slider .swiper-slide{
    width: 80px;
    aspect-ratio: 1 / 1;
    filter: brightness(0.3);
    cursor: pointer;
}
.news-thumb-slider .swiper-slide.swiper-slide-thumb-active{
    filter: brightness(1);
}
.news-thumb-slider .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;

}
/*  news-slider-button
------------------------------------------------------------------*/
.news-slider-button-prev,
.news-slider-button-next{
    position: absolute;
    top: 50%;
    width: 36px;
    aspect-ratio: 1 / 1;
    background: #fff;
    border: 1px solid #333;
    border-radius: 50%;
    transform: translateY(-50%);
    color: #333;
    transition: .2s ease-out;
    z-index: 2;
}
.news-slider-button-prev.swiper-button-disabled,
.news-slider-button-next.swiper-button-disabled{
    border-color: #ccc;
    color: #ccc;
    pointer-events: none;
}
.news-slider-button-prev{
    left: -18px;
}
.news-slider-button-prev::after{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: "\f104";
    font-family: "Font Awesome 7 Free";
    font-size: 0.75rem;
    font-weight: bold;
}
.news-slider-button-next{
    right: -18px;
}
.news-slider-button-next::after{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: "\f105";
    font-family: "Font Awesome 7 Free";
    font-size: 0.75rem;
    font-weight: bold;
}
/* ホバー時動作 */
@media (hover:hover) {
    .news-slider-button-prev:hover,
    .news-slider-button-next:hover,
    .news-slider-button-prev:active,
    .news-slider-button-next:active{
        background: var(--primary-color);
        border-color: var(--primary-color);
        color: #fff;
    }
    .news-slider-button-prev:active,
    .news-slider-button-next:active{
        transform: scale(0.8) translateY(-50%);
    }
}
@media (hover:none) {
    .news-slider-button-prev:active,
    .news-slider-button-next:active{
        background: var(--primary-color);
        border-color: var(--primary-color);
        color: #fff;
        transform: scale(0.8) translateY(-50%);
    }
}


/*/////////////////////////////////////////////////////////////////
  general.html
/////////////////////////////////////////////////////////////////*/

.works-table{
    width: 100%;
    margin-bottom: 16px;
}
.works-table th,
.works-table td{
    padding: .5em 1em;
    vertical-align: middle;
    border-bottom: 1px solid #fff;
    line-height: 1.5;
}
.works-table th{
    width: 6em;
    background: var(--primary-dark-color);
    font-weight: normal;
    color: #fff;
}
.works-table td{
    background: #efefef;
}


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

/*------------------------------------------------------------------
  recruit-benefits
------------------------------------------------------------------*/

/*  recruit-benefits-list
------------------------------------------------------------------*/
.recruit-benefits-list{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}
@media print, screen and (max-width:1399px){
    .recruit-benefits-list{
        gap: 12px;
    }
}
@media screen and (max-width:1199px){
    .recruit-benefits-list{
        grid-template-columns: repeat(2,1fr);
    }
}
@media screen and (max-width:575px){
    .recruit-benefits-list{
        grid-template-columns: 1fr;
        gap: 8px;
    }
}
/*  recruit-benefits-item
------------------------------------------------------------------*/
.recruit-benefits-item{
    display: flex;
    align-items: center;
    column-gap: 12px;
    padding: 12px;
    background: #fff;
}
.recruit-benefits-item .icon{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 60px;
    aspect-ratio: 1 / 1;
    background: #efefef;
}
.recruit-benefits-item .icon img{
    width: 70%;
    height: 70%;
    object-fit: contain;
}
.recruit-benefits-item .text{
    font-size: 1.125rem;
    font-weight: bold;
    line-height: 1.5;
}
@media print, screen and (max-width:1399px){
    .recruit-benefits-item .icon{
        width: 52px;
    }
    .recruit-benefits-item .text{
        font-size: 1.0625rem;
        font-weight: bold;
        line-height: 1.5;
    }
}
@media screen and (max-width:767px){
    .recruit-benefits-item .icon{
        width: 48px;
    }
    .recruit-benefits-item .text{
        font-size: 1rem;
    }
}
@media screen and (max-width:575px){
    .recruit-benefits-item{
        padding: 8px;
        column-gap: 8px;
    }
    .recruit-benefits-item .icon{
        width: 40px;
    }
    .recruit-benefits-item .text{
        font-size: .875rem;
    }
}

/*------------------------------------------------------------------
  recruit-interview
------------------------------------------------------------------*/

/*  recruit-interview-card
------------------------------------------------------------------*/
.recruit-interview-card{
    height: 100%;
    padding: 40px;
    background: #efefef;
    border-radius: 5px;
}
.recruit-interview-card .head{
    display: grid;
    grid-template-columns: 80px 1fr;
    align-items: center;
    column-gap: 16px;
    margin-bottom: 20px;
}
.recruit-interview-card .image{
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: #fff;
    overflow: hidden;
}
.recruit-interview-card .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.recruit-interview-card .title{
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1.2;
}
.recruit-interview-card .text{
    line-height: 1.8;
}
@media screen and (max-width:991px){
    .recruit-interview-card{
        padding: 30px;
    }
    .recruit-interview-card .head{
        grid-template-columns: 60px 1fr;
        column-gap: 8px;
        margin-bottom: 16px;
    }
    .recruit-interview-card .year{
        margin-bottom: 4px;
        font-size: .75rem;
    }
    .recruit-interview-card .title{
        font-size: 1.125rem;
    }
}
@media screen and (max-width:575px){
    .recruit-interview-card{
        padding: 30px 20px;
    }
    .recruit-interview-card .title{
        font-size: 1rem;
    }
}

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

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

/*/////////////////////////////////////////////////////////////////
  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: 8px;
    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 7 Free";
    font-weight: bold;
}