@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: calc(100vh - 90px);
    min-height: 700px;
    background: #fff;
    overflow: hidden;
}
.home-hero-image::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg,rgba(1, 28, 29, 0.4) 0%, rgba(1, 28, 29, 0) 100%);
    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:1399px){
    .home-hero-image{
        height: calc(100vh - 80px);
    }
}
@media screen and (max-width:1199px){
    .home-hero-image{
        height: 600px;
    }
}
@media screen and (max-width:575px){
    .home-hero-image{
        height: calc(100vh - 60px);
        height: calc(100svh - 60px);
        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 80px;
    z-index: 2;
}
@media screen and (max-width:575px){
    .home-hero-detail{
        padding: 0 4vw 50px;
    }
}
/*  home-hero-title
------------------------------------------------------------------*/
.home-hero-title{
    margin-bottom: 20px;
    font-size: 5.625rem;
    font-weight: bold;
    color: #fff;
    line-height: 1;
    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);
    font-size: 1.5rem;
    color: #fff;
    line-height: 1.5;
    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:1399px){
    .home-hero-caption{
        font-size: 1.25rem;
    }
}
@media screen and (max-width:991px){
    .home-hero-caption{
        font-size: 1rem;
    }
}
@media screen and (max-width:767px){
    .home-hero-caption{
        font-size: .875rem;
    }
}


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

/*  home-about
------------------------------------------------------------------*/
.home-about{
    position: relative;
    padding: 170px 0;
    background: url(../images/home/about-bg.jpg) no-repeat center / cover;
    overflow: hidden;
    z-index: 1;
}
@media screen and (max-width:991px){
    .home-about{
        padding: 80px 0;
    }
}
@media screen and (max-width:767px){
    .home-about{
        padding: 60px 0;
    }
}
/*  home-about-detail
------------------------------------------------------------------*/
.home-about-detail{
    width: 580px;
}
@media screen and (max-width:991px){
    .home-about-detail{
        width: 100%;
    }
}
/*  home-about-title
------------------------------------------------------------------*/
.home-about-title{
    margin-bottom: 48px;
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.5;
}
@media screen and (max-width:991px){
    .home-about-title{
        margin-bottom: 32px;
        font-size: 2rem;
        text-align: center;
    }
}
@media screen and (max-width:767px){
    .home-about-title{
        text-align: center;
    }
}
@media screen and (max-width:575px){
    .home-about-title{
        margin-bottom: 24px;
        font-size: 1.5rem;
    }
}
/*  home-about-text
------------------------------------------------------------------*/
.home-about-text{
    margin-bottom: 60px;
    font-size: 1.125rem;
}
@media screen and (max-width:991px){
    .home-about-text{
        margin-bottom: 40px;
        font-size: 1rem;
    }
}
@media screen and (max-width:767px){
    .home-about-text{
        margin-bottom: 30px;
        font-size: .875rem;
    }
}

/*------------------------------------------------------------------
  home-feature
------------------------------------------------------------------*/

/*  home-feature
------------------------------------------------------------------*/
.home-feature{
    position: relative;
    padding: 120px 0;
    background: url(../images/home/feature-bg.jpg) no-repeat center / cover;
    z-index: 1;
}
@media screen and (max-width:991px){
    .home-feature{
        padding: 80px 0;
    }
}
@media screen and (max-width:575px){
    .home-feature{
        padding: 60px 0;
    }
}
/*  home-feature-list
------------------------------------------------------------------*/
.home-feature-list{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
    margin-bottom: 60px;
}
@media screen and (max-width:991px){
    .home-feature-list{
        grid-template-columns: 1fr;
        margin-bottom: 40px;
    }
}
@media screen and (max-width:575px){
    .home-feature-list{
        gap: 20px;
    }
}
/*  home-feature-list-item
------------------------------------------------------------------*/
.home-feature-list-item{
    padding: 40px 60px;
    background: rgba(165,211,210,.2);
}
.home-feature-list-item .num{
    margin-bottom: 4px;
    font-family: var(--en-font);
    font-size: 1.875rem;
    font-weight: bold;
    color: var(--accent-color);
    text-align: center;
    line-height: 1;
}
.home-feature-list-item .title{
    padding-bottom: .75em;
    margin-bottom: .75em;
    border-bottom: 1px solid #a5d3d2;
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    line-height: 1.5;
    text-align: center;
}
.home-feature-list-item .text{
    font-size: 1.125rem;
    color: #fff;
    text-align: justify;
}
@media screen and (max-width:1399px){
    .home-feature-list-item{
        padding: 40px;
    }
    .home-feature-list-item .num{
        font-size: 1.375rem;
    }
    .home-feature-list-item .title{
        font-size: 1.5rem;
    }
    .home-feature-list-item .text{
        font-size: 1rem;
    }
}
@media screen and (max-width:575px){
    .home-feature-list-item{
        padding: 30px 20px;
    }
    .home-feature-list-item .num{
        font-size: 1.125rem;
    }
    .home-feature-list-item .title{
        font-size: 1.25rem;
    }
    .home-feature-list-item .text{
        font-size: .875rem;
    }
}

/*------------------------------------------------------------------
  home-works
------------------------------------------------------------------*/

/*  home-works
------------------------------------------------------------------*/
.home-works{
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    z-index: 1;
}
@media screen and (max-width:991px){
    .home-works{
        padding: 80px 0;
    }
}
@media screen and (max-width:767px){
    .home-works{
        padding: 60px 0;
    }
}
/*  home-works-photos-wrapper
------------------------------------------------------------------*/
.home-works-photos-wrapper{
    display: flex;
    flex-wrap: nowrap;
    margin-bottom: 50px;
}
/*  home-works-photos
------------------------------------------------------------------*/
.home-works-photos{
    display: flex;
    flex-wrap: nowrap;
    animation: homeWorksPhotos 60s linear infinite;
}
@keyframes homeWorksPhotos {
    from{
        transform: translateX(0);
    }
    to{
        transform: translateX(-100%);
    }
}
/*  home-works-photos-item
------------------------------------------------------------------*/
.home-works-photos-item{
    width: 300px;
    height: 300px;
    margin-right: 30px;
}
.home-works-photos-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width:1399px){
    .home-works-photos-item{
        width: 240px;
        height: 240px;
        margin-right: 20px;
    }
}
@media screen and (max-width:991px){
    .home-works-photos-item{
        width: 160px;
        height: 160px;
        margin-right: 16px;
    }
}
@media screen and (max-width:767px){
    .home-works-photos-item{
        width: 120px;
        height: 120px;
        margin-right: 8px;
    }
}

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

/*  home-recruit-card
------------------------------------------------------------------*/
.home-recruit-card{
    display: flex;
    justify-content: space-between;
    max-width: 1600px;
    margin: 0 auto;
    background: var(--black-color);
}
.home-recruit-card .body{
    padding: 90px;
}
.home-recruit-card .image{
    max-width: 800px;
}
.home-recruit-card .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home-recruit-card .text{
    max-width: 554px;
    margin-bottom: 50px;
    color: #fff;
    text-align: justify;
}
@media screen and (max-width:1399px){
    .home-recruit-card .body{
        padding: 72px 60px;
    }
}
@media screen and (max-width:1199px){
    .home-recruit-card .text{
        font-size: .875rem;
    }
}
@media screen and (max-width:991px){
    .home-recruit-card .body{
        flex-shrink: 0;
        width: 400px;
        padding: 60px 40px;
    }
}
@media screen and (max-width:767px){
    .home-recruit-card {
        flex-direction: column-reverse;
    }
    .home-recruit-card .body{
        width: 100%;
        padding: 40px 30px;
    }
    .home-recruit-card .text{
        max-width: initial;
    }
    .home-recruit-card .image{
        aspect-ratio: 16 / 9;
    }
}

/*------------------------------------------------------------------
  home-instagram
------------------------------------------------------------------*/

/*  home-instagram
------------------------------------------------------------------*/
.home-instagram{
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    z-index: 1;
}
@media screen and (max-width:991px){
    .home-instagram{
        padding: 80px 0;
    }
}
@media screen and (max-width:767px){
    .home-instagram{
        padding: 60px 0;
    }
}


/*/////////////////////////////////////////////////////////////////
  works.html
/////////////////////////////////////////////////////////////////*/

/*  works-table-wrapper
------------------------------------------------------------------*/
.works-table-wrapper{
    overflow-x: auto;
}
/*  works-table
------------------------------------------------------------------*/
.works-table{
    width: 100%;
    min-width: 700px;
}
.works-table > thead > tr > th,
.works-table > tbody> tr > td{
    padding: 0.7em 0.5em;
    border: 1px solid #ccc;
    text-align: center;
    line-height: 1.2;
    vertical-align: middle;
}
.works-table > thead > tr > th{
    background: var(--primary-color);
    color: #fff;
}
.works-table > thead > tr > th:nth-of-type(6){
    width: 12em;
}
.works-table > tbody> tr > td{
    background: #fff;
}
.works-table .images{
    display: flex;
    column-gap: 8px;
    justify-content: center;
}
@media screen and (max-width:575px){
    .works-table{
        font-size: .75rem;
    }
}


/*/////////////////////////////////////////////////////////////////
  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;
    }
}

/*/////////////////////////////////////////////////////////////////
  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;
    }
}