@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-slider
------------------------------------------------------------------*/
.home-hero-slider .swiper-slide{
    height: 100vh;
    min-height: 800px;
    background: #fff;
    overflow: hidden;
}
.home-hero-slider .swiper-slide::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .4;
    content: "";
    z-index: 1;
}
.home-hero-slider .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width:1399px){
    .home-hero-slider .swiper-slide{
        min-height: 700px;
    }
}
@media screen and (max-width:1199px){
    .home-hero-slider .swiper-slide{
        height: auto;
        min-height: initial;
        aspect-ratio: 4 / 3;
    }
}
@media screen and (max-width:767px){
    .home-hero-slider .swiper-slide{
        height: 100vh;
        height: 100svh;
        min-height: initial;
        aspect-ratio: initial;
    }
}
@media print{
    .home-hero-slider .swiper-slide{
        height: 600px;
        min-height: initial;
    }
}
/*  home-hero-slider-image
------------------------------------------------------------------*/
.home-hero-slider-image{
    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);
    }
}
/*  home-hero-detail
------------------------------------------------------------------*/
.home-hero-detail{
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    z-index: 2;
}
/*  home-hero-title
------------------------------------------------------------------*/
.home-hero-title{
    width: 60%;
    max-width: 756px;
}
@media screen and (max-width:767px){
    .home-hero-title{
        width: 90%;
    }
}


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

/*  home-about-wrapper
------------------------------------------------------------------*/
.home-about-wrapper{
    display: flex;
    justify-content: space-between;
    column-gap: 100px;
}
@media screen and (max-width:1399px){
    .home-about-wrapper{
        column-gap: 60px;
    }
}
@media screen and (max-width:1199px){
    .home-about-wrapper{
        column-gap: 30px;
    }
}
@media screen and (max-width:991px){
    .home-about-wrapper{
        flex-direction: column;
        justify-content: initial;
        row-gap: 40px;
    }
}
/*  home-about-detail
------------------------------------------------------------------*/
.home-about-detail{
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 0;
}
@media screen and (max-width:1399px){
    .home-about-detail{
        width: 500px;
    }
}
@media screen and (max-width:1199px){
    .home-about-detail{
        width: 460px;
        padding: 20px 0;
    }
}
@media screen and (max-width:991px){
    .home-about-detail{
        width: 100%;
        padding: 0;
    }
}
/*  home-about-image
------------------------------------------------------------------*/
.home-about-image{
    overflow: hidden;
}
.home-about-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*------------------------------------------------------------------
  home-special
------------------------------------------------------------------*/

/*  home-special-list
------------------------------------------------------------------*/
.home-special-list{
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 12px;
    margin-bottom: 60px;
}
@media screen and (max-width:1199px){
    .home-special-list{
        grid-template-columns: repeat(3,1fr);
    }
}
@media screen and (max-width:767px){
    .home-special-list{
        grid-template-columns: repeat(2,1fr);
    }
}
@media screen and (max-width:575px){
    .home-special-list{
        grid-template-columns: 1fr;
    }
}
/*  home-special-item
------------------------------------------------------------------*/
.home-special-item{
    padding: 32px 18px 24px;
    background: #fff;
    color: var(--black-color);
}
.home-special-item .icon{
    width: 80px;
    aspect-ratio: 1 / 1;
    margin: 0 auto 16px;
}
.home-special-item .icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.home-special-item .title{
    margin-bottom: 16px;
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 1.4;
    text-align: center;
}
.home-special-item .text{
    font-size: .875rem;
    line-height: 1.7;
}
@media screen and (max-width:1399px){
    .home-special-item .icon{
        width: 70px;
    }
    .home-special-item .title{
        font-size: 1.125rem;
    }    
}
@media screen and (max-width:991px){
    
}
@media screen and (max-width:575px){
    
}
/*  home-special-slider
------------------------------------------------------------------*/
.home-special-slider{
    overflow: hidden;
    margin-bottom: 100px;
}
.home-special-slider .swiper-wrapper{
    transition-timing-function: linear;
}

/*------------------------------------------------------------------
  home-detail
------------------------------------------------------------------*/

/*  home-detail
------------------------------------------------------------------*/
.home-detail{
    padding: 100px 0;
    background: #fff;
    color: var(--black-color);
}
@media screen and (max-width:991px){
    .home-detail{
        padding: 80px 0;
    }
}
@media screen and (max-width:767px){
    .home-detail{
        padding: 60px 0;
    }
}
/*  home-detail-wrapper
------------------------------------------------------------------*/
.home-detail-wrapper{
    position: relative;
    display: grid;
    grid-template-columns: repeat(2,1fr);
}
.home-detail-wrapper::after{
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: #ccc;
    content: "";
}
@media screen and (max-width:1399px){
    .home-detail-wrapper{
        grid-template-columns: 1fr;
        row-gap: 80px;
    }
    .home-detail-wrapper::after{
        display: none;
    }
}
@media screen and (max-width:767px){
    .home-detail-wrapper{
        row-gap: 60px;
    }
}
/*  home-detail-section
------------------------------------------------------------------*/
.home-detail-section{
    padding: 0 6vw;
}

/*------------------------------------------------------------------
  home-access
------------------------------------------------------------------*/

/*  home-access-wrapper
------------------------------------------------------------------*/
.home-access-wrapper{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    column-gap: 60px;
    row-gap: 40px;
    margin-bottom: 60px;
}
@media screen and (max-width:991px){
    .home-access-wrapper{
        flex-direction: column;
        justify-content: initial;
        align-items: initial;
    }
}
/*  home-access-detail
------------------------------------------------------------------*/
.home-access-detail{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 48px;
}
@media screen and (max-width:991px){
    .home-access-detail{
        flex-direction: column;
        text-align: center;
        row-gap: 30px;
    }
}
/*  home-access-map
------------------------------------------------------------------*/
.home-access-map{
    height: 500px;
    filter: grayscale(1);
    overflow: hidden;
}
.home-access-map iframe{
    width: 100%;
    height: 860px;
    margin-top: -170px;
}
@media screen and (max-width:991px){
    .home-access-map{
        height: 400px;
    }
    .home-access-map iframe{
        height: 760px;
    }
}
@media screen and (max-width:767px){
    .home-access-map{
        height: 300px;
    }
    .home-access-map iframe{
        height: 660px;
    }
}


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

/*  company-access-map
------------------------------------------------------------------*/
.company-access-map{
    height: 400px;
    margin-bottom: 40px;
    filter: grayscale(1);
    overflow: hidden;
}
.company-access-map iframe{
    width: 100%;
    height: 760px;
    margin-top: -170px;
}
@media screen and (max-width:767px){
    .company-access-map{
        height: 300px;
    }
    .company-access-map iframe{
        height: 660px;
    }
}


/*/////////////////////////////////////////////////////////////////
  service.html
/////////////////////////////////////////////////////////////////*/

/*  faq
------------------------------------------------------------------*/
.faq dt{
    position: relative;
    padding-left: 1.5em;
    padding-bottom: .5em;
    margin-bottom: .5em;
    border-bottom: 1px dashed #aaa;
    font-size: 1.125rem;
    font-weight: bold;
    color: var(--black-color);
    line-height: 1.5;
}
.faq dt::before{
    position: absolute;
    top: 0;
    left: 0;
    content: "Q.";
    color: var(--primary-color);
}
.faq dd{
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 30px;
    font-size: 1.125rem;
    color: var(--black-color);
    line-height: 1.5;
}
.faq dd::before{
    position: absolute;
    top: 0;
    left: 0;
    content: "A.";
    color: var(--red-color);
}
@media screen and (max-width:991px){
    .faq dt,
    .faq dd{
        font-size: 1rem;
    }
}
@media screen and (max-width:767px){
    .faq dt,
    .faq dd{
        font-size: .875rem;
    }
}

/*/////////////////////////////////////////////////////////////////
  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: #fff;
    text-align: center;
}
.contact-tel-box .title{
    margin-bottom: 8px;
    font-size: 1.375rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1.4;
}
.contact-tel-box .num{
    margin-bottom: 8px;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    color: var(--black-color);
    line-height: 1;
}
.contact-tel-box .num span{
    font-size: 1.75em;
    letter-spacing: 0;
}
.contact-tel-box .time{
    font-size: 0.875rem;
    color: var(--black-color);
    line-height: 1.4;
}
@media screen and (max-width:991px){
    .contact-tel-box{
        padding: 24px 16px;
    }
    .contact-tel-box .title{
        font-size: 1.375rem;
    }
    .contact-tel-box .num{
        font-size: 1.375rem;
    }
}
@media screen and (max-width:575px){
    .contact-tel-box .title{
        font-size: 1.25rem;
    }
    .contact-tel-box .num{
        font-size: 1.25rem;
    }
    .contact-tel-box .time{
        font-size: 0.75rem;
    }
}

/* policy ----------------------------------------*/
.policy{
    height: 300px;
    padding: 15px;
    margin-bottom: 30px;
    border: 1px solid #666;
    overflow-y: scroll;
    font-size: 0.875rem;
    line-height: 1.5;
}

/*/////////////////////////////////////////////////////////////////
  loading
/////////////////////////////////////////////////////////////////*/

.loading{
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100svh;
    z-index: 10000;
}
.loading::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #24140e 0%, #150d0a 100%);
    content: "";
    opacity: 1;
    z-index: 1;
}
.loading.animation::after{
    animation: loadingBg 1.2s ease-out forwards;
}
@keyframes loadingBg {
    from{
        opacity: 1;
    }
    to{
        opacity: 0;
    }
}

.loading-image{
    position: relative;
    display: none;
    width: 60%;
    max-width: 756px;
    z-index: 2;
}
.loading-image.animation{
    display: block;
    filter: blur(30px);
    opacity: 0;
    animation: loadingImage 1.2s ease-out forwards;
}
@keyframes loadingImage {
    from{
        filter: blur(30px);
        opacity: 0;
    }
    to{
        filter: blur(0);
        opacity: 1;
    }
}
@media screen and (max-width:767px){
    .loading-image{
        width: 90%;
    }
}