@charset "UTF-8";
/* =======================
common
==========================*/

:root {
    --primary-gofun-white: #FFFFFC;
    --primary-whitelow: #ECF5F5;
    --primary-black: #333333;
    --primary-base-text: #50505;
    --primary-beige: #E9E9E2;
    --primary-Dark-green: #004D4A;
    --primary-Darkbeige: rgba(165, 152, 152, 0.40);
    --primary-lightblue: #D9EFF6;
    --contentWidth: 89.3%;
    --contentPadding: 5.3%;
}


html {
    font-size: 16px;
}

body {
    font-family:
        "Yu Gothic",
        "YuGothic",
        "Hiragino Sans",
        "Hiragino Kaku Gothic ProN",
        "Meiryo",
        sans-serif;
    color: var(--primary-black);
    font-style: normal;
    background-color: var(--primary-gofun-white);
    line-height: 1.9;
    font-weight: 400;
    font-feature-settings: "palt";
    overflow-x: hidden;
    overflow-y: auto;
    font-size: 1rem;
}

img {
    max-width: 100%;
    height: auto;
}

html,
body {
    width: 100%;
    /* max-width: 100%; */
    overflow-x: hidden;
}

.container {
    position: relative;
    overflow-x: clip;
}

@font-face {
    font-family: "D-DIN-Pro";
    src: url("../fonts/D-DIN-Pro-400-Regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "D-DIN-Pro";
    src: url("../fonts/D-DIN-Pro-500-Medium.otf") format("opentype");
    font-weight: 500;
    font-style: normal;
}

/* 背景 */

.bg-tree {
    width: 814px;
    height: auto;
    position: absolute;
    top: 300px;
    left: calc(50% - 640px - -190px);
    z-index: -1;
    opacity: 0.8;
    overflow: hidden;
    /* display: none; */
    pointer-events: none;
}

.bg-watercolor {
    /* display: flex; */
    width: 1045px;
    height: auto;
    position: absolute;
    z-index: -2;
    opacity: 0.45;
    right: calc(50% - 440px - 220px);
    top: 50px;
    overflow: hidden;
    /* display: none; */
    pointer-events: none;
}


@media screen and (min-width: 1024px) {
    .bg-tree {
        display: block;
        left: calc(19% - 640px - -190px);
        top: 130px;

    }

    .bg-watercolor {
        display: block;
    }
}

/* 背景　px1024 */




.nav__item a,
.footer__nav-item {
    font-family: "D-DIN-Pro", sans-serif;
    color: var(--primary-gofun-white);
    font-size: 1rem;
    line-height: 1.3;
    letter-spacing: 0.2em;
}

.service__label,
.works__mail,
.footer__txt {
    font-family: "D-DIN-Pro", sans-serif;
    font-weight: 400;
    margin-top: 30px;
}


.hero__wrap,
.about__inner,
.service__inner,
.works__inner {
    max-width: 1280px;
    margin: 0 auto;
}






/* =======================
header
==========================*/
.header {
    display: flex;
    height: 106px;
    padding: 24px var(--contentPadding);
    justify-content: space-between;
    align-self: stretch;
}

.header-title {
    display: flex;
    align-items: center;
}

.header__btn {
    display: block;
    width: 24px;
    height: 24px;

    cursor: pointer;
    top: 25px;
    right: 5.3%;
}

@media screen and (min-width: 768px) {
    .header {
        max-width: 1280px;
        height: 140px;
        margin: 0 auto;
        padding: 60px 5.3% 0;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: stretch;
    }

    .header-title {
        align-items: flex-start;
    }


    .header-logo {
        display: block;
        width: 300px;
        height: auto;
    }

    .main__hero-title {
        display: inline;

    }

}

/* header  pc 768px */

@media screen and (min-width: 1024px) {
    .header {
        flex-direction: column;
        justify-content: space-between;
        align-items: stretch;
    }
}




/* =======================
nav
==========================*/

.nav.active {
    gap: 36px;
    transform: translateX(0);
}

/* .navの初期表示 */
.nav {
    background: var(--primary-Dark-green);
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.4s;
}

.nav__logo-sp {
    width: 200px;
    height: 55px;
}


.nav__header {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    background-color: var(--primary-gofun-white);
    padding: 24px var(--contentPadding);
    height: 106px;

}

.nav__wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 102px;
    height: auto;
    align-self: stretch;
    gap: 50px;
}


.nav__list {
    font-size: 1rem;
    line-height: 1;
    letter-spacing: 0.5em;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
    gap: 10px;
}

.nav__list a {
    padding: 16px;
}

.nav__item a {
    color: var(--primary-gofun-white);
    font-size: 1rem;
    line-height: 1.3;
    letter-spacing: 2.4px;
    display: flex;
    flex-direction: column;
}

.nav__btn-container {
    display: flex;
    justify-content: center;
}


.nav__item a:hover,
.footer__nav-item a:hover {
    color: green;
}

.main-img img {
    display: block;
    width: 100%;
    height: auto;
}

.nav__btn {
    display: flex;
    width: 320px;
    height: 65px;
    padding: 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;

    border-radius: 32.5px;
    border: 1px solid var(--primary-gofun-white);

    color: var(--primary-gofun-white);
    font-family: "Shippori Mincho B1";
    font-size: 0.96rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 1px;
}

/* .nav.active表示 */
.active.nav.active {
    transform: translate(0);
}



/* nav */
@media screen and (min-width: 1024px) {
    .header__btn {
        display: none;
    }

    .nav {
        display: block;
        background: transparent;
        width: 100%;
        max-width: 1280px;
        height: 70px;
        padding: 0;
        position: static;
        transform: none;
    }

    .nav__wrap {
        display: flex;
        width: 100%;
        max-width: 1280px;
        height: 70px;
        padding: 0;
        justify-content: flex-end;
        align-self: stretch;
    }

    .nav__header {
        display: none;
    }

    .nav__list {
        margin: 0;
        flex-direction: row;
        justify-content: flex-end;
    }

    .nav__item {
        margin: 0;
    }


    .nav__item a {
        color: var(--primary-black);
        margin-top: 0;
        display: block;
    }


    .header__btn {
        display: none;
    }

    .nav__btn-container {
        display: none;
    }

}


/* nav  pc 1024px */






/* =======================
hero
==========================*/

.hero {
    display: flex;
    height: 300px;
    padding: 50px var(--contentPadding) 93px;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
    position: relative;
}

.hero__wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero__outer {
    align-items: flex-start;
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.hero__title {
    color: var(--primary-Dark-green);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 7.2px;
    text-align: left;
}


.hero__sub-title {
    display: flex;
    flex-direction: column;
    color: rgba(80, 80, 80, 0.80);
    font-family: "D-DIN-Pro", sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: 4.5px;
}



@media screen and (min-width: 1024px) {
    .hero {
        padding: 100px 5% 100px 55%;
        align-items: flex-start;
        height: 420px;
        display: flex;
        justify-content: center;
    }

    .hero__wrap {
        max-width: none;
        margin: 0;
        align-items: flex-start;
    }

    .hero__br {
        display: none;
    }
}

/*  hero  pc 1024px */







/* =======================
about
==========================*/

.about {
    display: flex;
    height: 100%;
    padding: 0px var(--contentPadding);
    justify-content: center;
    align-self: stretch;
    /* background-color: yellow; */
}

.about__inner {
    display: flex;
    width: 100%;
    max-width: 328px;
    height: auto;
    padding: 80px var(--contentPadding);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-self: stretch;


    margin: 0 auto;
    gap: 32px;
    background: rgba(255, 255, 252, 0.9);
}

.section-title {
    color: var(--primary-Dark-green);
    font-family: "Baskervville SC", Georgia, "Times New Roman", serif;
    font-size: 3rem;
    line-height: 1;
    letter-spacing: 7.2px;
}


.section-title.section-title-service {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 252, 0.9);
    width: 328px;
    height: 100px;
    padding: 100px 24px 50px;
}


.about__text {
    color: var(--primary-base-text);
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: 0.2em;
}

.about__text-br {
    display: none;
}

@media screen and (min-width: 768px) {
    .about__inner {
        width: 100%;
        max-width: 328px;
    }

}

/* about  pc 768px */


@media screen and (min-width: 1024px) {
    .section-title {
        display: flex;
        width: 202px;
        justify-content: center;
        align-items: flex-start;
        /* background: rgba(255, 255, 252, 0.9); */
    }

    .about__inner {
        background: none;
        width: 100%;
        max-width: 1280px;
        height: 405px;
        padding: 100px 0;
        gap: 50px;
    }

    .about__text {
        text-align: center;
        font-size: 1rem;
        font-weight: 500;
        letter-spacing: 0.2em;
        background: rgba(255, 255, 252, 0.9);
        padding: 5px 50px;

    }

    .about__text-br {
        display: block;
    }

}

/* about  pc 1024px */




/* =======================
service
==========================*/


.service {
    display: flex;
    height: 100%;
    padding: 0px var(--contentPadding);
    justify-content: center;
    align-self: stretch;
    /* background-color: yellow; */

}


.service__inner {
    display: flex;
    width: 328px;
    height: auto;
    padding: 50px var(--contentPadding) 200px;
    flex-direction: column;
    align-items: center;
    /* gap: 50px; */

    margin: 0 auto;

}

.service__list {
    display: flex;
    flex-direction: column;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.service__label {
    color: var(--primary-Dark-green);
    text-align: center;
    font-family: "D-DIN-Pro", sans-serif;
    font-size: 1.375rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.4em;
    text-transform: uppercase;
}

.service-card__content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.service-card {
    display: flex;
    width: 328px;
    height: auto;
    padding: 35px 24px;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    background: rgba(255, 255, 252, 0.9);

}

.service-card--others {
    padding: 80px 24px;
}




.service-card__icon {
    width: 85px;
    height: auto;
}

.service-card__title {
    color: var(--primary-Dark-green);
    text-align: center;
    font-size: 1.126rem;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.2em;
}

.service-card__text {
    color: var(--primary-black);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
}

.service-card__title.txt-normal {
    letter-spacing: 0.1em;
}




@media screen and (min-width: 768px) {
    .service__inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 1280px;
        gap: 50px;
        align-self: stretch;
        background: none;
        padding: 50px var(--contentPadding) 450px;
    }

    .service__list {
        display: flex;
        flex-direction: row;
        gap: 50px;
    }

    .service-card {
        width: calc((100% - 50px) / 2);
        max-width: 328px;
        gap: 40px;
        background: rgba(255, 255, 252, 0.9);
    }

    .service-card__title.txt-normal {
        letter-spacing: 0.1em;

    }

    .section-title.section-title-service {
        width: fit-content;
        height: auto;
        padding: 5px 10px;
    }



    .sservice-card__icon {
        min-height: 80px;
    }

    .service-card__text {
        line-height: 2;
        letter-spacing: 0.08em;
    }
}

/* service pc768px */

@media screen and (min-width: 1024px) {

    .service__inner {
        gap: 50px;
        padding: 100px 0 50px;
    }

    .service-card__title,
    .service-card__text,
    .service__label {
        background: rgba(255, 255, 252, 0.9);
    }

    .service-card {
        padding: 0;
        width: calc((100% - 100px) / 3);
        max-width: 328px;
    }

    .service-card {
        background: none;
    }

    .service__label {
        padding: 5px 10px;
    }


}

/* service pc1024px */






/* =======================
achievement
==========================*/
.achievement {
    display: flex;
    height: auto;
    padding: 80px var(--contentPadding) 50px;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    align-self: stretch;
}

.achievement__content {
    display: flex;
    gap: 70px;
}

.achievement__category {
    min-width: 0;
}

.achievement__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
    max-width: 800px;

}

.achievement__title {
    color: var(--primary-Dark-green);
    text-align: center;
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.2em;

    position: relative;
    display: inline-block;
}

.achievement__title::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 152px;
    height: 1.2px;
    background: currentColor;
    transform: translateX(-50%);
}

.achievement__item {
    color: var(--primary-black);
    font-family: YuGothic;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.7;
    letter-spacing: 0;
}

.achievement__heading {
    color: var(--primary-Dark-green);
    text-align: start;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.2em;
}

.achievement__item::before {
    content: "・";
    display: inline-block;
    vertical-align: unset;
    line-height: 1;
    margin-right: 0.5em;
}

.achievement__lead {
    width: 100%;
    max-width: 328px;
    margin: 0 auto;
}

@media screen and (min-width: 768px) {
    .achievement__lead {
        max-width: 800px;
        text-align: center;


    }
}

/* achievement 768px */






@media screen and (min-width: 1024px) {

    .achievement__content {
        width: 100%;
        max-width: 1180px;
        justify-content: space-between;
        gap: 70px;
    }

    .achievement__category:first-child {
        width: 54%;
    }

    .achievement__category:last-child {
        width: 46%;
    }

    .achievement__category:first-child .achievement__list {
        column-count: 3;
        column-gap: 24px;
    }

    .achievement__category:last-child .achievement__list {
        column-count: 2;
        column-gap: 24px;
    }

    .achievement__item {
        break-inside: avoid;
    }
}



/* achievement pc1024px */



/* =======================
works
==========================*/
.works {
    display: flex;
    width: 100%;
    height: auto;
    flex-direction: column;
    align-self: stretch;
    align-items: center;
}

.works__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px var(--contentPadding) 30px;

}

.works__btn-container {
    display: flex;
    width: 320px;
    height: 96px;
    padding: 20px 33px;
    justify-content: center;
    align-items: center;
    border-radius: 48px;
    border: 1px solid var(--primary-Dark-green);
    margin: 32px 0;
}

.works__text {
    margin-top: 50px;
    text-align: center;
}



.works__btn {
    display: flex;
    color: var(--primary-Dark-green);
    font-family: "Shippori Mincho B1";
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.2em;
    gap: 15px;
}

.works__mail {
    color: var(--primary-base-text);
    font-family: YuGothic;
    font-size: 0.943rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.15em;
}

@media screen and (min-width: 768px) {
    .works__inner {
        height: 100%;
        padding: 40px 0;

    }

    .works__btn-container {
        width: 480px;
        height: 86px;
        background: rgba(255, 255, 252, 0.9);

    }

    .works__br {
        display: none;
    }


}

/* works pc768px */

@media screen and (min-width: 1024px) {

    .works__inner {
        padding: 100px 0 10px;
    }
}

/* works pc1024px */










/* =======================
footer
==========================*/
.footer {
    padding: 60px var(--contentPadding);
    background-color: var(--primary-Dark-green);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer__logo-sp {
    width: 200px;
    height: auto;
}

.footer__logo-pc {
    display: block;
}


.footer__nav {
    font-size: 1.6rem;
    line-height: 1;
    letter-spacing: 0.3em;
    margin-top: 16px;
}

.footer__nav-list {
    display: flex;
    gap: 32px;
    flex-direction: column;
}

.footer__nav-list a {
    padding: 16px;
}

.footer__txt {
    font-size: 1.4rem;
    line-height: 1;
    letter-spacing: 0.1em;
    margin-top: 60px;
}

.footer__txt {
    color: var(--primary-gofun-white);
    text-align: center;
    font-family: "D-DIN-Pro", sans-serif;
    font-size: 0.875rem;
    line-height: 1.3;
    letter-spacing: 0.2em;
}




@media screen and (min-width: 768px) {
    .footer {
        padding: 80px var(--contentPadding) 50px;
    }

    .footer__log-sp {
        display: none;
    }

    .footer__logo-pc {
        width: 292px;
        height: auto;
        display: grid;
        margin: 0 auto;
    }

    .footer__nav-list {
        display: flex;
        flex-direction: row;
        justify-content: center;
        margin-top: 50px;
        gap: 16px;
    }

    .footer__txt {
        margin-top: 50px;
        text-align: center;
    }
}


/* footer pc 768px */



/* ===========
to top 
/* ===========*/

/* .to-top,
.to-top__svg {
    display: none;
} */

.to-top {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin: 0 var(--contentPadding) 20px auto;
    padding: 0;
}

.to-top__svg {
    display: block;
    width: 32px;
    height: 32px;
}

html {
    scroll-behavior: smooth;
}

@media screen and (min-width: 768px) {
    .to-top {
        margin: 0 var(--contentPadding) 40px auto;
        padding: 0;
    }

    .to-top__svg {
        width: 40px;
        height: 40px;
    }


}






/* common pc */

@media screen and (min-width:768px) {
    .section__title {
        font-size: 3.6rem;
        line-height: 1;
        font-weight: 500;
        letter-spacing: 0.3em;

    }
}


/* common pc 768px */