@charset "utf-8";
/*==========================
fv
==========================*/
.catch-text {
    font-size: 2.4rem;
    color: var(--primary-darkGreen);
    font-family: 'Noto Serif JP';
    font-weight: 300;
    line-height: 1.8;
    letter-spacing: 0.05em;
}

.section--fv {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.mainVisual {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 7; 
    min-height: 450px;
}

.mainVisual__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.mainVisual__content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    box-sizing: border-box;
}

.mainVisual__logo {
    margin-bottom: 30px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.mainVisual__logo img {
    width: 180px;
    height: auto;
    display: block;
}

.text-accent {
    color: #ff9900; 
    font-weight: 300;
}

/* pc fv */
@media screen and (min-width: 769px) {
    .mainVisual__logo {
        margin-bottom: 45px;
    }

    .spBr {
        display: none;
    }

    .mainVisual__logo img {
        width: 260px;
    }

    .catch-text {
        font-size: 5rem;
        white-space: nowrap;
    }
}

/*==========================
About us
==========================*/
.section--about {
    padding:  50px 5% 0;
}

.topic--about {
    font-family: 'robot';
}

.subtopic--about {
    color: #ff9900;
}

.about__img {
    border-radius: 50%;
    margin-top: 30px;
}

.about__txt {
    margin-top: 25px;
    color: var(--primary-black);
    font-family: Noto Sans JP;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.08em;
}

.btn--about {
    margin: 30px auto 0;
    font-family: 'Noto sans JP';
    font-weight: 400;
}

/* about us pc */
@media screen and (min-width:769px) {
    .section--about {
        padding: 80px 5%;
    }

    .about__img {
        display: block;
        width: 45%; 
        height: auto;
    }

    .about__txt {
        font-size: 1.8rem;
    }

    .about__container {
        margin-top: 80px;
        display: flex;
        max-width: 1280px;
        align-items: center;
        gap: 7.5%;
        margin-inline: auto;
    }

    .about__box {
        width: 40%;
        height: auto;
    }

    .service__title-accent {
        color: #ff9900;
    }

    .about__txt {
        text-align: center;
    }

    .btn--about {
        font-size: 2.4rem;
    }

    .btn-wrapper {
        margin-top: 50px;
        display: flex;
        justify-content: center;
        width: 100%;
        align-items: center;
    }
}
/* pc 769px */

/*==========================
service
==========================*/
.section--service {
    padding: 80px 5%;
    text-align: center;
}

.topic--service {
    font-family: 'robot';
}

.service__list {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service__item {
    background-color: var(--primary-darkGreen);
    border-radius: 26px; 
    padding: 30px 5%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: left;
    box-sizing: border-box;
    margin-top: 20px;
}

.service__item:nth-of-type(2) {
    margin-top: 0;
}

.service__block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
}

.service__item-number {
    color: var(--primary-green); 
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 5px;
}

.service__title {
    color: #fffffe;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.05em;
}

.service__txt {
    color: #fffffe;
    font-size: 1.6rem;
    line-height: 1.8;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    opacity: 0.9;
}

.service__txt :last-of-type {
    margin-bottom: 0;
}

.btn--service {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-green); 
    font-family: 'Noto sans JP';
    font-weight: 400;
    font-size: 1.6rem;
    margin: 0 auto;
    width: 100%;
    max-width: 280px;
    height: 54px;
    border-radius: 27px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn--service:hover {
    background-color: #e59243;
    transform: translateY(-2px);
}

.service__img-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    width: 100%;
}

.service__img {
    width: 100%;
    max-width: 360px;
    height: auto;
    border-radius: 12px; 
    object-fit: cover;
}

/* service pc  */
@media screen and (min-width: 769px) {
    .service__item {
        display: grid;
        grid-template-columns: 50% 45%;
        justify-content: space-between;
        align-items: center;
        padding: 60px 50px;
        gap: 0;
    }

    .service__item:first-of-type {
        margin-top: 50px;
    }

    .service__title-area {
        grid-column: 1;
        grid-row: 1;
        margin-bottom: 15px;
    }

    .service__item-number {
        font-size: 2.2rem;
        font-weight: 600;
        letter-spacing: 0.05em;
        margin-bottom: 8px;
    }

    .service__title {
        font-size: 2.8rem;
        margin-bottom: 0;
    }

    .service__block {
        grid-column: 1;
        grid-row: 2;
        max-width: 100%;
    }

    .service__txt {
        font-size: 1.8rem;
    }

    .service__img-wrapper {
        grid-column: 2;
        grid-row: 1 / 3;
        max-width: 100%; 
        width: 100%;
    }

    .btn--service {
        font-size: 2.4rem;
    }

    .service__img {
        max-width: 400px;
    }
}
/* pc 769px */

/*==========================
bgImg
==========================*/
.bgImg {
    display: block;
    width: 100%;
    margin-inline: auto;
}

/* pc bgImg */
@media screen and (min-width: 769px) {
    .bgImg {
        padding: 50px 0 0;
    }
}