@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;
    height: 100svh;
    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: .6;
    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:767px){
    .home-hero-slider .swiper-slide{
        min-height: 600px;
        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: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    padding: 12px;
    text-align: center;
    z-index: 2;
}
/*  home-hero-title-en
------------------------------------------------------------------*/
.home-hero-title{
    font-size: 3rem;
    line-height: 1.5;
}
@media screen and (max-width:767px){
    .home-hero-title{
        font-size: 7.5vw;
    }
}
/*  home-hero-text
------------------------------------------------------------------*/
.home-hero-text{
    font-size: 1.125rem;
}
@media screen and (max-width:767px){
    .home-hero-text{
        font-size: max(3.5vw, .875rem);
    }
}
/*  home-hero-scroll
------------------------------------------------------------------*/
.home-hero-scroll{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 15px;
    line-height: 1;
    z-index: 1;
}
.home-hero-scroll .text{
    font-family: var(--en-font);
    font-size: 12px;
    font-weight: bold;
}
.home-hero-scroll .line{
    position: relative;
    width: 1px;
    height: 200px;
    background: #888;
    overflow: hidden;
    z-index: 1;
}
.home-hero-scroll .line .point{
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    z-index: 1;
    animation: scrollPoint 1.5s ease-out infinite;
}
@keyframes scrollPoint {
    0%{
        top: -50px;
    }
    70%{
        top: 100%;
    }
    100%{
        top: 100%;
    }
}
@media screen and (max-width:991px){
    .home-hero-scroll .line{
        height: 180px;
    }
    .home-hero-scroll .line .point{
        height: 72px;
    }
}
@media screen and (max-width:767px){
    .home-hero-scroll{
        right: 50%;
        transform: translateX(50%);
    }
    .home-hero-scroll .text{
        font-size: 12px;
        writing-mode: horizontal-tb;
    }
    .home-hero-scroll .line{
        height: 150px;
    }
    .home-hero-scroll .line .point{
        height: 60px;
    }
}
@media screen and (max-width:575px){
    .home-hero-scroll .line{
        height: 130px;
    }
    .home-hero-scroll .line .point{
        height: 52px;
    }
}



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

/*  home-about
------------------------------------------------------------------*/
.home-about{
    background: #222;
}
@media screen and (max-width:767px){
    .home-about{
        padding: 60px 0;
    }
}
/*  home-about-wrapper
------------------------------------------------------------------*/
.home-about-wrapper{
    display: flex;
    justify-content: space-between;
}
@media screen and (max-width:767px){
    .home-about-wrapper{
        flex-direction: column;
        justify-content: initial;
        row-gap: 40px;
        padding: 0 6vw;
    }
}
/*  home-about-detail
------------------------------------------------------------------*/
.home-about-detail{
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 7vw;
}
@media screen and (max-width:1399px){
    .home-about-detail{
        padding: 40px 100px;
    }
}
@media screen and (max-width:1199px){
    .home-about-detail{
        padding: 20px 80px;
    }
}
@media screen and (max-width:991px){
    .home-about-detail{
        padding: 20px 60px;
    }
}
@media screen and (max-width:767px){
    .home-about-detail{
        padding: 0;
    }
}
/*  home-about-text
------------------------------------------------------------------*/
.home-about-text{
    line-height: 2.5;
    font-feature-settings: "palt";
}
/*  home-about-image
------------------------------------------------------------------*/
.home-about-image{
    max-width: 1000px;
    height: 885px;
    overflow: hidden;
}
.home-about-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center left;
}
@media screen and (max-width:1399px){
    .home-about-image{
        height: 660px;
    }
}
@media screen and (max-width:1199px){
    .home-about-image{
        height: 600px;
    }
}
@media screen and (max-width:991px){
    .home-about-image{
        height: 520px;
    }
}
@media screen and (max-width:767px){
    .home-about-image{
        height: auto;
    }
}

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

/*  home-feature
------------------------------------------------------------------*/
.home-feature{
    padding: 150px 0;
    overflow: hidden;
}
@media screen and (max-width:1399px){
    .home-feature{
        padding: 120px 0;
    }
}
@media screen and (max-width:1199px){
    .home-feature{
        padding: 80px 0;
    }
}
@media screen and (max-width:991px){
    .home-feature{
        padding: 60px 0;
    }
}
/*  home-feature-wrapper
------------------------------------------------------------------*/
.home-feature-wrapper{
    display: flex;
    justify-content: space-between;
    column-gap: 60px;
}
@media screen and (max-width:991px){
    .home-feature-wrapper{
        flex-direction: column;
    }
}
/*  home-feature-titlearea
------------------------------------------------------------------*/
.home-feature-titlearea{
    flex-shrink: 0;
}
/*  home-feature-detail
------------------------------------------------------------------*/
.home-feature-detail{
    max-width: 900px;
}
/*  home-feature-list
------------------------------------------------------------------*/
.home-feature-list{
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 50px;
}
@media screen and (max-width:1399px){
    .home-feature-list{
        row-gap: 40px;
    }
}
@media screen and (max-width:767px){
    .home-feature-list{
        row-gap: 30px;
    }
}
/*  home-feature-list-item
------------------------------------------------------------------*/
.home-feature-list-item .title{
    display: flex;
    align-items: center;
    column-gap: 20px;
    padding-bottom: .75em;
    margin-bottom: .75em;
    border-bottom: 1px solid #999;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.5;
}
.home-feature-list-item .title .num{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 40px;
    aspect-ratio: 1 / 1;
    font-family: var(--en-font);
    line-height: 1;
    z-index: 1;
}
.home-feature-list-item .title .num::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid #fff;
    transform: rotate(45deg);
    content: "";
    z-index: -1;
}
@media screen and (max-width:991px){
    .home-feature-list-item .title{
        column-gap: 16px;
        font-size: 1.25rem;
    }
    .home-feature-list-item .title .num{
        width: 32px;
    }
}
@media screen and (max-width:575px){
    .home-feature-list-item .title{
        column-gap: 12px;
        font-size: 1rem;
    }
    .home-feature-list-item .title .num{
        width: 28px;
    }
}

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

/*  home-service
------------------------------------------------------------------*/
.home-service{
    position: relative;
    padding: 200px 0;
    background: url(../images/home-service.jpg) no-repeat center / cover;
    z-index: 1;
}
.home-service::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .7;
    content: "";
    z-index: -1;
}
@media screen and (max-width:1399px){
    .home-service{
        padding: 150px 0;
    }
}
@media screen and (max-width:1199px){
    .home-service{
        padding: 120px 0;
    }
}
@media screen and (max-width:991px){
    .home-service{
        padding: 100px 0;
    }
}
@media screen and (max-width:767px){
    .home-service{
        padding: 80px 0;
    }
}

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

/*  home-works
------------------------------------------------------------------*/
.home-works{
    position: relative;
    padding: 150px 0;
    background: #000;
    z-index: 1;
}
@media screen and (max-width:1399px){
    .home-works{
        padding: 120px 0;
    }
}
@media screen and (max-width:1199px){
    .home-works{
        padding: 100px 0;
    }
}
@media screen and (max-width:991px){
    .home-works{
        padding: 80px 0;
    }
}
@media screen and (max-width:767px){
    .home-works{
        padding: 60px 0;
    }
}

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

/*  home-company
------------------------------------------------------------------*/
.home-company{
    position: relative;
    z-index: 1;
}
@media screen and (max-width:767px){
    .home-company{
        padding: 60px 0;
    }
}
/*  home-company-wrapper
------------------------------------------------------------------*/
.home-company-wrapper{
    display: flex;
    justify-content: space-between;
}
@media screen and (max-width:767px){
    .home-company-wrapper{
        flex-direction: column;
        justify-content: initial;
        row-gap: 40px;
        padding: 0 6vw;
    }
}
/*  home-company-detail
------------------------------------------------------------------*/
.home-company-detail{
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 7vw;
}
@media screen and (max-width:1399px){
    .home-company-detail{
        width: 500px;
        padding: 40px 100px;
    }
}
@media screen and (max-width:1199px){
    .home-company-detail{
        padding: 20px 80px;
    }
}
@media screen and (max-width:991px){
    .home-company-detail{
        width: 400px;
        padding: 20px 60px;
    }
}
@media screen and (max-width:767px){
    .home-company-detail{
        width: 100%;
        padding: 0;
    }
}
/*  home-company-map
------------------------------------------------------------------*/
.home-company-map{
    width: 100%;
    max-width: 960px;
    height: 620px;
    overflow: hidden;
    filter: grayscale(1);
}
.home-company-map iframe{
    width: 100%;
    height: 100%;
}
@media screen and (max-width:1199px){
    .home-company-map{
        height: 560px;
    }
}
@media screen and (max-width:991px){
    .home-company-map{
        height: 500px;
    }
}
@media screen and (max-width:767px){
    .home-company-map{
        height: auto;
        aspect-ratio: 4 / 3;
    }
}

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

/*  service-top-image
------------------------------------------------------------------*/
.service-top-image{
    height: 320px;
    overflow: hidden;
    margin-bottom: 40px;
}
.service-top-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width:991px){
    .service-top-image{
        height: 280px;
        margin-bottom: 30px;
    }
}
@media screen and (max-width:575px){
    .service-top-image{
        height: auto;
        aspect-ratio: 16 / 9;
    }
}
/*  service-sozai-list
------------------------------------------------------------------*/
.service-sozai-list{
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 10px;
    margin-bottom: 10px;
}
.service-sozai-list > li{
    padding: 1em;
    background: #fff;
    color: #000;
    text-align: center;
    line-height: 1.2;
}
@media screen and (max-width:991px){
    .service-sozai-list{
        grid-template-columns: repeat(3,1fr);
    }
}
@media screen and (max-width:767px){
    .service-sozai-list{
        gap: 8px;
    }
}
@media screen and (max-width:575px){
    .service-sozai-list{
        grid-template-columns: repeat(2,1fr);
    }
}
/*  service-flow
------------------------------------------------------------------*/
.service-flow{
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 30px;
}
/*  service-flow-item
------------------------------------------------------------------*/
.service-flow-item{
    display: flex;
    align-items: center;
    column-gap: 30px;
    padding: 40px;
    background: #000;
}
.service-flow-item .icon{
    width: 60px;
    flex-shrink: 0;
}
.service-flow-item .detail{
    flex: 1;
}
@media screen and (max-width:991px){
    .service-flow-item{
        column-gap: 20px;
        padding: 30px;
    }
    .service-flow-item .icon{
        width: 48px;
    }
}
@media screen and (max-width:575px){
    .service-flow-item{
        flex-direction: column;
        row-gap: 20px;
        padding: 30px 20px;
    }
    .service-flow-item .icon{
        width: 80px;
        margin: 0 auto;
    }
}

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

/*  works-list
------------------------------------------------------------------*/
.works-list{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    column-gap: 30px;
    row-gap: 50px;
    margin-bottom: 50px;
}
@media screen and (max-width:1199px){
    .works-list{
        column-gap: 16px;
        row-gap: 40px;
        margin-bottom: 40px;
    }
}
@media screen and (max-width:991px){
    .works-list{
        grid-template-columns: repeat(3,1fr);
    }
}
@media screen and (max-width:767px){
    .works-list{
        grid-template-columns: repeat(2,1fr);
    }
}
@media screen and (max-width:575px){
    .works-list{
        column-gap: 8px;
        row-gap: 30px;
        margin-bottom: 30px;
    }
}
/*  works-list-card
------------------------------------------------------------------*/
.works-list-card{
    display: block;
}
.works-list-card .image{
    margin-bottom: 20px;
    aspect-ratio: 3 / 2;
    overflow: hidden;
}
.works-list-card .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .2s ease-out;
}
.works-list-card .title{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-bottom: .5em;
    font-size: 1.125rem;
    line-height: 1.2;
    transition: .2s ease-out;
}
.works-list-card .category{
    font-size: .875rem;
    color: #999;
    line-height: 1.2;
    transition: .2s ease-out;
}
/* ホバー時動作 */
@media (hover:hover) {
    .works-list-card:hover .image img{
        transform: scale(1.1);
        filter: brightness(.6);
    }
    .works-list-card:hover .title,
    .works-list-card:hover .category{
        color: var(--primary-color);
    }
}
@media (hover:none) {
    .works-list-card:active .image img{
        transform: scale(1.1);
        filter: brightness(.6);
    }
    .works-list-card:active .title,
    .works-list-card:active .category{
        color: var(--primary-color);
    }
}
@media screen and (max-width:1399px){
    .works-list-card .image{
        margin-bottom: 16px;
    }
    .works-list-card .title{
        font-size: 1rem;
    }
    .works-list-card .category{
        font-size: .8125rem;
    }
}
@media screen and (max-width:991px){
    .works-list-card .image{
        margin-bottom: 12px;
    }
    .works-list-card .title{
        font-size: .875rem;
    }
    .works-list-card .category{
        font-size: .75rem;
    }
}
/*  works-container
------------------------------------------------------------------*/
.works-container{
    max-width: 1000px;
    padding: 0 60px;
    margin: 0 auto;
}
@media screen and (max-width:991px){
    .works-container{
        padding: 0 6vw;
    }
}
/*  works-detail
------------------------------------------------------------------*/
.works-detail{
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 12px;
    margin-bottom: 12px;
}
.works-detail .new{
    font-size: .875rem;
    color: var(--primary-color);
    line-height: 1;
}
.works-detail .date{
    font-size: .875rem;
    color: #ccc;
    line-height: 1;
}
.works-detail .category{
    display: inline-block;
    font-size: .875rem;
    color: var(--primary-color);
    letter-spacing: 0;
    line-height: 1;
}
@media screen and (max-width:575px){
    .works-detail{
        column-gap: 8px;
        margin-bottom: 4px;
    }
    .works-detail .date{
        font-size: .75rem;
    }
    .works-detail .category{
        font-size: .75rem;
    }
}
/*  works-slider
------------------------------------------------------------------*/
.works-slider{
    position: relative;
    margin-bottom: 10px;
    z-index: 1;
}
.works-slider .swiper-slide{
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    background: #555;
}
.works-slider .swiper-slide a{
    display: block;
    height: 100%;
}
.works-slider .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/*  works-thumb-slider
------------------------------------------------------------------*/
.works-thumb-slider{
    position: relative;
    margin-bottom: 40px;
    overflow: hidden;
    z-index: 1;
}
.works-thumb-slider .swiper-slide{
    aspect-ratio: 1 / 1;
    filter: brightness(0.3);
    cursor: pointer;
}
.works-thumb-slider .swiper-slide.swiper-slide-thumb-active{
    filter: brightness(1);
}
.works-thumb-slider .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;

}
/*  works-slider-button
------------------------------------------------------------------*/
.works-slider-button-prev,
.works-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;
}
.works-slider-button-prev.swiper-button-disabled,
.works-slider-button-next.swiper-button-disabled{
    border-color: #ccc;
    color: #ccc;
    pointer-events: none;
}
.works-slider-button-prev{
    left: -18px;
}
.works-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;
}
.works-slider-button-next{
    right: -18px;
}
.works-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) {
    .works-slider-button-prev:hover,
    .works-slider-button-next:hover,
    .works-slider-button-prev:active,
    .works-slider-button-next:active{
        background: var(--primary-color);
        border-color: var(--primary-color);
        color: #fff;
    }
    .works-slider-button-prev:active,
    .works-slider-button-next:active{
        transform: scale(0.8) translateY(-50%);
    }
}
@media (hover:none) {
    .works-slider-button-prev:active,
    .works-slider-button-next:active{
        background: var(--primary-color);
        border-color: var(--primary-color);
        color: #fff;
        transform: scale(0.8) translateY(-50%);
    }
}

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

/*  company-map
------------------------------------------------------------------*/
.company-map{
    height: 400px;
    margin-bottom: 30px;
    overflow: hidden;
    filter: grayscale(1);
}
.company-map iframe{
    width: 100%;
    height: 100%;
}
@media screen and (max-width:767px){
    .company-map{
        height: auto;
        aspect-ratio: 4 / 3;
    }
}
/*  recruit-image
------------------------------------------------------------------*/
.recruit-image{
    height: 360px;
    margin-bottom: 30px;
    overflow: hidden;
    filter: grayscale(.4);
}
.recruit-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width:1399px){
    .recruit-image{
        height: 300px;
    }
}
@media screen and (max-width:767px){
    .recruit-image{
        height: auto;
        aspect-ratio: 2 / 1;
    }
}

/*/////////////////////////////////////////////////////////////////
  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: #000;
    text-align: center;
}
.contact-tel-box .title{
    margin-bottom: 5px;
    font-size: 1.375rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1.4;
}
.contact-tel-box .num{
    margin-bottom: 5px;
    font-size: 1.25rem;
    font-weight: bold;
    text-align: center;
    line-height: 1;
}
.contact-tel-box .num span{
    font-size: 1.75em;
    letter-spacing: 0;
}
.contact-tel-box .time{
    font-size: 0.875rem;
    line-height: 1.4;
}
@media screen and (max-width:1199px){
    .contact-tel-box .num{
        font-size: 1.125rem;
    }
}
@media screen and (max-width:767px){
    .contact-tel-box{
        padding: 24px 16px;
    }
}
@media screen and (max-width:575px){
    .contact-tel-box .num{
        font-size: 1rem;
    }
    .contact-tel-box .title{
        font-size: 1.25rem;
    }
    .contact-tel-box .time{
        font-size: 0.75rem;
    }
}
@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(--accent-color);
}
.form-error::before{
    position: absolute;
    top: 0;
    left: 0;
    content: "\f057";
    font-family: "Font Awesome 6 Free";
    font-weight: bold;
}