@charset "utf-8";
/*共通設定*/
/*終わり*/ 


/*<section class="fv">*/
.fv {
    position: relative;
    margin-top: 80px;
    width: 100%;
    height: calc(100vh - 80px);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.fv-01 {
    background-image: url(../img/service/fv_01.png);
}

.fv-02 {
    background-image: url(../img/service/fv_02.png);
}

.fv-03 {
    background-image: url(../img/service/fv_03.png);
}

.fv::before{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0,0,0,0.5);
}

.fv-in {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 64px;
    justify-content: center;
    text-shadow: 0 0 8px rgba(0,0,0,0.5);
}

.fv-title {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fv-h2 {
    color: #d3c59d;
    font-size: 40px;
    line-height: 1;
    font-weight: 600;
}

.fv-h2 small {
    font-size: 24px;
    letter-spacing: 0.14em;
    font-weight: 400;
}

.fv-txt {
    color: #fff;
    font-size: 14px;
}
/*終わり*/ 


/*<section class="service">*/
.service {
    background-color: #111;
    padding: 120px 5vw;
}

.service-con {
    padding: 24px;
    border-bottom: solid 1px #d3c59d;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.service-icon-wrap {
    display: flex;
    align-items: center;
    max-width: 64px;
    width: 100%;
}

.service-txt-wrap {
    width: calc(100% - 64px);
    padding-left: 48px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-h3 {
    font-size: 18px;
    color: #d3c59d;
}

.service-txt {
    color: #fff;
    font-size: 14px;
}
/*終わり*/ 



/*タブレット*/
@media (max-width: 1024px) {  
/*共通設定*/
/*終わり*/  


/*<section class="fv">*/
    .fv-h2 {
        font-size: clamp(calc(32px), calc(40 / 1024 * 100vw), 40px);
    }

    .fv-h2 small {
        font-size: clamp(calc(18px), calc(24 / 1024 * 100vw), 24px);
    }
/*終わり*/ 
}
  
  
/*スマホ*/
@media (max-width: 599px) {
/*共通設定*/
/*終わり*/ 


/*<section class="fv">*/
    .fv {
        margin-top: 64px;
        height: calc(100vh - 64px);
    }

    .fv-h2 {
        font-size: clamp(calc(24px), calc(32 / 599 * 100vw), 32px);
    }

    .fv-h2 small {
        font-size: clamp(calc(12px), calc(18 / 599 * 100vw), 18px);
    }
/*終わり*/ 


/*<section class="service">*/
    .service-con {
        padding: 32px 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .service-icon-wrap {
        justify-content: center;
        width: 100%;
        max-width: inherit;
    }

    .service-icon {
        max-width: 64px;
        width: 100%;
    }

    .service-txt-wrap {
        width: 100%;
        padding-left: 0;
    }

/*終わり*/ 
}
