@charset "utf-8";
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border: none;
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: 50px;
}

body {
    font-family: helvetica, Manrope, arial ;
    font-size: 15px;
    font-weight: 400;
    font-style: normal;
    color: #524F4A;
    line-height: 1.9;
    letter-spacing: 0.08em;
    /* @media screen and (max-width: 767px) {
        font-size: 16px;
        
    } */
}
@media screen and (max-width: 767px) {
    body {
        font-size: 16px; 
    }
}
    

a {
    display: inline-block;
    text-decoration: none;
    transition: opacity 0.4s;
}

a:hover {
    opacity: 0.7;
}

img {
    width: 100%;
    height: auto;
    display: block;
}
.inner {
    max-width: 900px;
    padding-inline: 20px;
    margin-inline: auto;
}
    

.section-title {
    font-size: 32px;
    font-weight: 400;
    text-align: center;
    text-transform: capitalize;
    line-height: 1;
    letter-spacing: 0.09em;
}
@media screen and (max-width: 767px) {
    .section-title{
        font-size: 32px;
    }
}

.section-desc {
    text-align: center;
    margin-top: 8px;
    font-size: 12px;
}
@media screen and (max-width: 767px) {
    .section-desc {
        font-size: 14px;
        margin-top: 2px;
    }
}

.section-bg {
    background-color: #E5E2D7;
}

.section {
    padding-block: 100px;
}

.header {
    width: 100%;
    height: 120px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999; 
    /* background-color: rgba(255, 255, 255, 0.2); */
    backdrop-filter: blur(6px);
}
@media screen and (max-width: 767px) {
    .header {
        height: 80px;
        backdrop-filter: none;
        background-color: transparent;
    }
}


.header__inner {
    display: flex;
    justify-content: space-between;
    height: inherit;
    align-items: center;
   
}

.header__logo img {
    height: 40px;
    width: auto;
}
@media screen and (max-width: 767px) {
    .header__logo img {
        height: 30px;
    }
}

.header__link {
    height: inherit;
    font-size: 20px;
    font-weight: 200;
    color: #524F4A;
    display: flex;
    align-items: center;
}
@media screen and (max-width: 767px) {
    .header__link{
        font-size: 18px;
    }
}

.header-nav {
    height: inherit;
}
@media screen and (max-width: 767px) {
    .header-nav {
        display: none;
    }
}


.header-nav__lists {
    display: flex;
    column-gap: 40px;
    height: inherit;
}

@media screen and (max-width: 767px) {
    .header-nav__lists {
        display: none;
    }
}

.header-nav__list {
    height: inherit;
    list-style: none;
}

.header-nav__link {
    font-size: 14px;
    color: #524F4A;
    height: inherit;
    display: flex;
    align-items: center;
    text-transform: capitalize;
}

.fv {
    position: relative;
    height: 700px;
    min-height: 500px;
    max-height: 800px;
    /* overflow: hidden; */
}

@media screen and (max-width: 767px) {
    .fv{
        height: 560px;
    }
}

.splide__slide {
    width: 100%;
    height: 100%;
}
@media screen and (max-width: 767px) {
    .splide__slide {
        width: 100%;
        height: 100%;
    }
}

.splide__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover ;
    /* display: block; */
}

.fv .splide,
.fv .splide__track,
.fv .splide__list {
    height: 100%;
}

.fv__text {
    position: absolute;
    top: 30%;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 900px;
    padding-inline: 20px;
    margin-inline: auto;
    transform: none;
    font-size: 24px;
    font-weight: 550;
    color: #524F4A;
    z-index: 100;
}
@media screen and (max-width: 767px) {
    .fv__text {
        font-size: 25px;
        white-space: normal;
        text-align: center;
        line-height: 1;
        top: 25%;
    }
}

.fv__catch {
    font-weight: 400;
    letter-spacing: 0.4em;
}
@media screen and (max-width: 767px) {
    .fv__catch {
        font-size: 20px;
    }
}

.fv__catch_sub {
    font-size: 14px;
    margin-top: 4px;
}
@media screen and (max-width: 767px) {
    .fv__catch_sub {
        margin-top: 20px;
    }
}
.works {
    padding-block: 100px;
}


.works__items {
    display: flex;
    flex-wrap: wrap;
    gap: 64px;
    margin-top: 48px;
    text-align: center;
    font-size: 15px;
    
}
@media screen and (max-width: 767px) {
    .works__items {
       display: block;
    }
}

.works-item {
    width: calc((100% - 64px) / 2);
}
@media screen and (max-width: 767px) {
    .works__item {
       width: 100%;
    }
}

.works-item__text {
    display: flex;
    padding-top: 2px;
}

@media screen and (max-width: 767px) {
   .works-item:not(:first-of-type) {
       margin-top: 40px;
    }
}

.works-item__desc {
    margin-right: 16px;
}

.service {
    padding-block: 80px;
}
@media screen and (max-width: 767px) {
    .service {
        padding-bottom: 60px;  
    }
}

.service__items {
    max-width: 900px;
    margin-inline: auto;
    margin-top: 48px;
    font-size: 15px;
    text-align: center;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 84px;
}

@media screen and (max-width: 1024px) {
    .service__items {
        gap: 50px;
}
}
@media screen and (max-width: 767px) {
    .service__items {
        grid-template-columns: 1fr;
        gap: 14px;
        justify-items: center;
    }
}
.service-item {
    width: auto;
}
@media screen and (max-width: 767px) {
    .service-item {
        width: 100%;
    }
}

@media screen and (max-width: 1024px) {
    .service__item {
        width: 90%;
    }
}
@media screen and (max-width: 767px) {
    .service-item:not(:first-of-type){
        margin-top: 40px;
    }
}

.service-item__title {
    font-size: 20px;
    font-weight: 500;
}
@media screen and (max-width: 767px) {
    .service-item__title {
    font-size: 20px;
    font-weight: 500;
    }
}
.service-item__desc {
    font-size: 14px;
    margin-top: 8px;
    text-align: left;
    line-height: 1.6;
}
@media screen and (max-width: 767px) {
    .service-item__desc {
        font-size: 15px;
        margin-top: 4px;
    }
}

.service-item__text {
    padding-top: 24px;
}
@media screen and (max-width: 767px) {
    .service-item__text {
        padding-top: 16px;
    }
}

.service-item__image {
    width: 100%;
    margin-inline: auto;
}
@media screen and (max-width: 767px) {
    .service-item__image {
        width: 50%;
    }
}



.about {
    padding-block: 80px;
}
@media screen and (max-width: 767px) {
    .about{
        padding-bottom: 60px;
    }
}

.about__content {
    display: flex;
    align-items: flex-start;
    gap: 80px;
    margin-top: 48px;
}

@media screen and (max-width: 767px) {
    .about__content {
        margin-top: 8px;
        display: block;
    }
}

.about__text {
    flex:1 ;
    font-size: 14px;
}

@media screen and (max-width: 767px) {
    .about__text {
        font-size: 16px;
        margin-top: 40px;
        line-height: 1.6;
    }
}

.self-introduction {
    display: grid;
    grid-template-columns:  6em 1fr;
    column-gap: 24px;
    row-gap: 16px;
    text-align: left;
}

@media screen and (max-width: 767px) {
    .self-introduction {
        row-gap: 10px;
        column-gap: 4px;
    }
}

.about__image {
    flex: 0 0 220px;
}

@media screen and (max-width: 767px) {
    .about__image {
        width: 50%;
        margin-top: 42px;
        margin-inline: auto;
    }
}

.voice {
    padding-block: 80px;
}

.voice__content {
    margin-top: 48px;
}

.price {
    padding-block: 80px;
}
.price__content {
    margin-top: 40px;
    max-width: 600px;
    margin-inline: auto;
}
.price-table {
    width: 100%;
    max-width: 600px;
    margin-inline: auto;
    border-collapse: collapse;
    font-size: 15px;
}

.price-table th,
.price-table td {
    padding: 16px 20px;
    border: 1px solid #868686;
}
.price-table th {
    text-align: left;
    font-weight: 400;
    background-color: #F7F6F3;
    width: 40%;
}

.price-table td {
    text-align: left;
}

.price-text {
    margin-top: 10px;
    font-size: 14px;
    text-align-last: left;
}

.contact {
    padding-block: 50px 60px;
}
@media screen and (max-width: 767px) {
   .contact {
    padding-bottom: 50px;
   }
    }

.contact__form {
    max-width: 860px;
    margin-inline: auto;
    margin-top: 42px;
}
.contact__iframe {
    width: 100%;
    max-width: 100%;
    height: 1160px;
    border: 0;
    display: block;
}

.footer {
    background-color: #858376;
    padding-block: 60px;
}

.footer__content {
    max-width: 435px;
    margin-inline: auto;
}

.footer-nav {
    border-bottom: 1px solid #fff;
}

.footer-nav__lists {
    display: flex;
    justify-content: center;
    column-gap: 28px;
}
@media screen and (max-width: 374px) {
    .footer-nav__lists {
        flex-wrap: wrap;
        padding-inline: 60px;
    }   
}

.footer-nav__list {
    list-style: none;
}

.footer-nav__link {
    color: #fff;
    font-size: 14px;
    text-transform: capitalize;
}
@media screen and (max-width: 767px) {
    .footer-nav__link {
        font-size: 12px;
    }   
}


.footer__copyright {
    color: #fff;
    font-size: 10px;
    margin-top: 8px;
    text-align: center;
}
@media screen and (max-width: 767px) {
    .footer__copyright{
        font-size: 10px;
        margin-top: 10px;
        text-align: center;
    }   
}
@media screen and (max-width: 374px) {
    .footer__copyright {
        line-height: 1;
        display: inline-block;
    }   
}


.sns {
    display: flex;
    align-items: center;
    justify-content: end;
    column-gap: 12px;
    margin-top: 16px;
}
@media screen and (max-width: 767px) {
    .sns{
        justify-content: center;
    }   
}

.sns__list {
    list-style: none;
    line-height: 0;
}

.sns__link {
    width: 24px;
}

.sns__link--x {
    width: 20px;
}
