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

　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 home-hero
------------------------------------------------------------------*/

/*  home-hero-section
------------------------------------------------------------------*/
.home-hero-section{
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/*  home-hero-slider
------------------------------------------------------------------*/
.home-hero-slider .swiper-slide{
    width: 100%;
    height: calc(100vh - 100px);
}
.home-hero-slider .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width:1399px){
    .home-hero-slider .swiper-slide{
        height: calc(100vh - 80px);
    }
}
@media print, screen and (max-width:991px){
    .home-hero-slider .swiper-slide{
        height: 500px;
    }
}
@media screen and (max-width:575px){
    .home-hero-slider .swiper-slide{
        height: 350px;
    }    
}

/*  home-hero-detail
------------------------------------------------------------------*/
.home-hero-detail{
    position: absolute;
    bottom: 100px;
    left: 5vw;
    z-index: 2;
}
@media screen and (max-width:1399px){
    .home-hero-detail{
        bottom: 80px;
    }
}
@media print, screen and (max-width:991px){
    .home-hero-detail{
        bottom: 50px;
    }
}
@media screen and (max-width:575px){
    .home-hero-detail{
        bottom: 20px;
    }
}
/*  home-hero-title
------------------------------------------------------------------*/
.home-hero-title{
    margin-bottom: 0.3em;
    font-size: 4.5rem;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 0 10px #000;
    line-height: 1.2;
}
@media screen and (max-width:1399px){
    .home-hero-title{
        font-size: 4rem;
    }
}
@media print, screen and (max-width:991px){
    .home-hero-title{
        font-size: 2.75rem;
    }
}
@media screen and (max-width:575px){
    .home-hero-title{
        font-size: min(9vw, 2.75rem);
    }
}
/*  home-hero-subtitle
------------------------------------------------------------------*/
.home-hero-subtitle{
    font-size: 1.25rem;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 0 10px #000;
    line-height: 1.5;
}
@media screen and (max-width:1399px){
    .home-hero-subtitle{
        font-size: 1.125rem;
    }
}
@media print, screen and (max-width:991px){
    .home-hero-subtitle{
        font-size: 0.875rem;
    }
}
@media screen and (max-width:575px){
    .home-hero-subtitle{
        font-size: min(3.5vw, 0.875rem);
    }
}


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

/*  home-business-image
------------------------------------------------------------------*/
.home-business-image{
    width: 100%;
    height: 400px;
    margin-bottom: 60px;
}
.home-business-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width:1399px){
    .home-business-image{
        height: 300px;
    }
}
@media screen and (max-width:767px){
    .home-business-image{
        height: 250px;
        margin-bottom: 50px;
    }
}


/*------------------------------------------------------------------
  index.html home-links
------------------------------------------------------------------*/

/*  home-links-section
------------------------------------------------------------------*/
.home-links-section{
    position: relative;
    padding-bottom: 100px;
    z-index: 1;
}
.home-links-section::after{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 85%;
    background: #efefef;
    content: "";
    z-index: -1;
}
@media screen and (max-width:1399px){
    .home-links-section{
        padding-bottom: 80px;
    }
}
@media screen and (max-width:991px){
    .home-links-section{
        padding-bottom: 60px;
    }
}
/*  home-links-card
------------------------------------------------------------------*/
.home-links-card{
    display: block;
    box-shadow: 0 10px 32px rgba(0,0,0,0.1);
}
.home-links-card .image{
    position: relative;
    overflow: hidden;
}
.home-links-card .image img{
    transition: .2s;
}
.home-links-card .body{
    position: relative;
    padding: 24px 30px;
    background: #fff;
}
.home-links-card .body::after{
    position: absolute;
    bottom: 10px;
    right: 10px;
    content: "";
    width: 20px;
    height: 20px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid #0081cd;
    border-left: 10px solid transparent;
    border-right: 10px solid #0081cd;
    transition: .2s;
    z-index: 1;
}
.home-links-card .text{
    transition: .2s;
}
/* ホバー時動作 */
.home-links-card:hover .image img{
    transform: scale(1.2);
    filter: brightness(0.8);
}
.home-links-card:hover .body::after{
    bottom: 5px;
    right: 5px;
}
.home-links-card:hover .text{
    color: #0081cd;
}
@media screen and (max-width:767px){
    .home-links-card{
        width: 88%;
        margin: 0 auto;
        box-shadow: 0 3px 12px rgba(0,0,0,0.1);
    }
    .home-links-card .text{
        font-size: 0.75rem;
    }
}

/*/////////////////////////////////////////////////////////////////
  business.html
/////////////////////////////////////////////////////////////////*/

/*  business-achievement-table
------------------------------------------------------------------*/
.business-achievement-table{
    width: 100%;
}
.business-achievement-table > thead > tr > th,
.business-achievement-table > tbody > tr > td{
    padding: 0.5em 1em;
    line-height: 1.5;
    border: 1px solid #ccc;
    text-align: center;
}
.business-achievement-table > thead > tr > th{
    background: #efefef;
}
.business-achievement-table > tbody > tr > td:first-of-type{
    width: 80%;
}
@media screen and (max-width:991px){
    .business-achievement-table.secondary > thead > tr > th,
    .business-achievement-table.secondary > tbody > tr > td{
        border-top: initial;
    }
    .business-achievement-table.secondary > thead{
        display: none;
    }
}
@media screen and (max-width:575px){
    .business-achievement-table > thead > tr > th,
    .business-achievement-table > tbody > tr > td{
        font-size: 0.75rem;
    }
}

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

/*  recruit-welfare-box
------------------------------------------------------------------*/
.recruit-welfare-box{
    height: 100%;
    padding: 30px;
    background: #fff;
    text-align: center;
}
.recruit-welfare-box .image{
    margin-bottom: 30px;
}
.recruit-welfare-box .image img{
    width: 100px;
    height: 100px;
}
.recruit-welfare-box .title{
    font-size: 1.125rem;
    font-weight: bold;
    line-height: 1.5;
}
@media screen and (max-width:575px){
    .recruit-welfare-box{
        padding: 20px;
    }
    .recruit-welfare-box .image{
        margin-bottom: 20px;
    }
    .recruit-welfare-box .image img{
        width: 60px;
        height: 60px;
    }
    .recruit-welfare-box .title{
        font-size: 1rem;
    }
}


/*  recruit-tel
------------------------------------------------------------------*/
.recruit-tel{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 90px;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #0081cd;
    font-size: 1.125rem;
    font-weight: bold;
}
.recruit-tel .num{
    font-size: 2.25rem;
    font-family: "Roboto";
    color: #0081cd;
}
@media screen and (max-width:575px){
    .recruit-tel{
        height: 75px;
        margin-bottom: 10px;
        font-size: 0.875rem;
    }
    .recruit-tel .num{
        font-size: 1.5rem;
    }
}
/*  recruit-mail
------------------------------------------------------------------*/
.recruit-mail{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 90px;
    padding: 15px;
    border: 1px solid #0081cd;
    font-size: 1.125rem;
    font-weight: bold;
    transition: .2s;
}
.recruit-mail::after{
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: bold;
    transition: .2s;
    z-index: 1;
}
.recruit-mail:hover{
    background: #0081cd;
    color: #fff;
}
.recruit-mail:hover::after{
    right: 5px;
}
@media screen and (max-width:575px){
    .recruit-mail{
        height: 75px;
        font-size: 0.875rem;
    }
}

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

/*  contact-history-table
------------------------------------------------------------------*/
.company-history-table{
    width: 100%;
}
.company-history-table > tbody > tr > th,
.company-history-table > tbody > tr > td{
    padding: 0.5em;
    vertical-align: middle;
    border: 1px solid #ccc;
    line-height: 1.5;
}
.company-history-table > tbody > tr > th{
    background: #efefef;
    font-weight: normal;
}
@media screen and (max-width:767px){
    .company-history-table{
        font-size: 0.75rem;
    }
    .company-history-table > tbody > tr > th{
        width: 90px;
    }
}
/*  contact-access-map
------------------------------------------------------------------*/
.company-access-map{
    width: 100%;
    height: 400px;
    margin-bottom: 30px;
}
.company-access-map iframe{
    width: 100%;
    height: 100%;
}
@media screen and (max-width:767px){
    .company-access-map{
        position: relative;
        height: 0;
        padding-top: 75%;
    }
    .company-access-map iframe{
        position: absolute;
        top: 0;
    }
}
/*  contact-access-box
------------------------------------------------------------------*/
.company-access-box{
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 30px;
    padding: 30px;
    border: 1px solid #0081cd;
}
@media screen and (max-width:767px){
    .company-access-box{
        flex-direction: column;
        row-gap: 15px;
        padding: 20px;
    }
}
@media screen and (max-width:575px){
    .company-access-box{
        align-items: flex-start;
    }
}


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

/*------------------------------------------------------------------
  contact.html contact-tel
------------------------------------------------------------------*/

/*  contact-tel
------------------------------------------------------------------*/
.contact-tel{
    font-family: "Roboto";
    font-size: 1.5rem;
    font-weight: bold;
    color: #0081cd;
    line-height: 1.5;
    letter-spacing: 0;
}
.contact-tel span{
    font-size: 1.75em;
    letter-spacing: 0;
}
@media screen and (max-width:767px){
    .contact-tel{
        font-size: 1.375rem;
    }
}
@media screen and (max-width:575px){
    .contact-tel{
        font-size: 1.25rem;
    }
}