@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0&icon_names=chevron_right");
@import url("reset.min.css");

:root {
    /* Colors: */
    --color-white: #FFFFFF;
    --color-black: #333333;

    --color-green: #096710;
    --color-softgreen: #E6F4C5;
    --color-blue: #4E6FB5;
    --color-orenge: #D95400;
    --color-softorenge: #FFAD4D;
    --color-red: #C60808;

    --color-beige: #FAF6EA;
    --color-beige2: #F6E9CE;
    --color-beige3: #F8EFDA;
    --color-beige4: #FFF1E0;

    --color-brown: #57290C;

    /* Font/text values */
    --font-family-noto-sans-jp: Noto Sans JP;
    --font-style-normal: normal;
    --font-weight-medium: medium;

    /* Min 320 16px Max 1920 18px　*/
    /* --font-size: clamp(1rem, 0.975rem + 0.13vw, 1.125rem); */
    --font-size: 1.8rem;

    /* Utility */
    --border-radius: 20px;
}

@media screen and (max-width:767.8px) {
    :root {
        --font-size: 1.5rem;
    }
}

* {
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
}

figure {
    margin-inline: 0;
}

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

body {
    font-family: var(--font-family-noto-sans-jp);
    font-style: var(--font-style-normal);
    font-weight: var(--font-weight-medium);
    font-size: var(--font-size);
    color: var(--color-brown);
    line-height: 2;
    font-feature-settings: "palt" 1;
    letter-spacing: 2px;
}

@media screen and (max-width:767.8px) {
    body {
        letter-spacing: 0;
    }
}

img {
    width: 100%;
}

a {
    transition: .2s;
}

a:hover {
    opacity: .7;
}


.st-wrapper {
    min-width: initial;
}

.st-globalNav_utility img {
    width: initial;
}

/* utility */

.pc {
    display: none;
}

.xs {
    display: none;
}


@media screen and (min-width:768px) {
    .pc {
        display: inline-block;
    }

    .sp {
        display: none;
    }
}

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

    .xs {
        display: inline-block;
    }
}

.r20 {
    border-radius: 20px;
}

.rt20 {
    border-radius: 20px 20px 0 0;
}

.rb20 {
    border-radius: 0 0 20px 20px;
}

/* Flex Box */
.flex {
    display: flex;
}


.item {
    flex: 1 1 auto;
}

.flex.column {
    flex-direction: column;
}

.flex.sm-column {
    flex-direction: column;
}

@media screen and (min-width:768px) {
    .flex.sm-column {
        flex-direction: row;
    }
}

.flex.list {
    justify-content: center;
    align-items: baseline;

    &>.item {
        display: flex;
        flex-direction: column;
        align-items: center;

        &>figure {
            width: 90%;
        }
    }
}


/* color */
.tx-white {
    color: var(--color-white);
}

.bg-white {
    background-color: var(--color-white);
}

.bg-green {
    background: var(--color-green);
}

.tx-blue {
    color: var(--color-blue);
}

.tx-red {
    color: var(--color-);
}

.tx-green {
    color: var(--color-green);
}

.tx-orenge {
    color: var(--color-orenge);
}

.bg-beige {
    background-color: var(--color-beige);
}

.bg-beige3 {
    background-color: var(--color-beige3);
}

/* Margin Padding 削除予定*/
.mt1 {
    margin-top: 1rem;
}

.mt2 {
    margin-top: 2rem;
}

.mt3 {
    margin-top: 3rem;
}

.mt4 {
    margin-top: 4rem;
}

.mt5 {
    margin-top: 5rem;
}

.pt1 {
    padding-top: 1rem;
}

.pt2 {
    padding-top: 2rem;
}

.pt3 {
    padding-top: 3rem;
}

.pt4 {
    padding-top: 4rem;
}

.pt5 {
    padding-top: 5rem;
}

/* text */
.text-center {
    text-align: center;
}

.tx-bold {
    font-weight: bold;
}

.whsp-nowrap {
    white-space: nowrap;
}

.h__line_i {
    text-align: center;
    position: relative;
    display: inline-block;
    padding-inline: 4rem;
    font-size: 2.1rem;

    &::before,
    &::after {
        position: absolute;
        content: '';
        display: block;
        background-color: var(--color-brown);
        width: 2px;
        height: 80%;
        bottom: 0;
    }

    &::before {
        left: 0;
        transform: rotate(-45deg);
    }

    &::after {
        right: 0;
        transform: rotate(45deg);
    }
}

@media screen and (max-width:767.8px) {
    .h__line_i {
        text-align: center;
        position: relative;
        display: inline-block;
        padding-inline: 1rem;

        &::before,
        &::after {
            position: absolute;
            content: '';
            display: block;
            background-color: var(--color-brown);
            width: 2px;
            height: 80%;
            top: auto;
            bottom: -10px;
        }

        &::before {
            transform: rotate(-40deg);
        }

        &::after {
            transform: rotate(40deg);
        }
    }
}

/* Box */
.box__beige {
    background: var(--color-beige);
    padding: 54px;
}

.box__bg_beige {
    background: url('../images/bg_beige.png');
    padding: 40px;
}

.box__white {
    background: var(--color-white);
    padding: 40px;
}

.box__ol_green {
    border: 3px solid var(--color-green);
    padding: 40px;
    position: relative;

    & h2,
    & h3 {
        position: absolute;
        background: var(--color-beige);
        padding-inline: 3rem;
        top: -40px;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media screen and (max-width:767.8px) {

    .box__beige,
    .box__bg_beige,
    .box__white,
    .box__ol_green {
        padding: 20px;
    }

    .box__ol_green {
        & h2 {
            top: -42px;
            padding-inline: 0;
        }
    }

}


/* Header */
header {
    & .header {
        height: 60px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-inline: 35px;

        background-color: #CFEDBB;

        & .logo {
            width: 240px;
            height: 39px;
        }

        & nav {
            & ul {
                display: flex;
                height: 100%;

                & a {
                    display: block;
                    padding: 5px;
                }

                & button {
                    display: flex;
                    align-items: center;
                    margin-right: 3px;
                    padding: 5px;

                    & img {
                        width: 27px;
                    }

                    & span {
                        font-size: 1.4rem;
                        color: var(--color-white);
                    }
                }
            }
        }
    }
}

/* Main */
section {
    position: relative;
}

.container {
    max-width: 1080px;
    width: 100%;
    margin-inline: auto;
    padding-inline: 1rem;
}

@media screen and (max-width:767.8px) {
    .container {
        padding-inline: 2rem;
    }
}

.btn-contact {
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background: var(--color-white);
    border: 3px solid var(--color-orenge);
    border-radius: 100vh;
    width: 300px;
    height: 60px;

    & .material-symbols-outlined {
        position: absolute;
        color: var(--color-orenge);
        font-size: 3.6rem;
        top: calc(50% - .5em);
        right: 0;
    }
}


#secMainVisual {
    background-color: var(--color-beige);
    background-image: url('../images/mv_2.png');
    background-position: bottom;
    background-repeat: repeat-x;
    background-size: 100% 180px;

    padding-block: 60px 120px;

    &>.container>p {
        position: relative;
        z-index: 1;
        /* text-shadow:1px 1px 3px var(--color-beige); */
    }

    & .flex {
        align-items: center;

        & .item {
            position: relative;
            z-index: 1;

            &:first-of-type {
                width: 50%;
                display: flex;
                flex-direction: column;
                gap: 20px;

                &>p {
                    color: var(--color-black);
                }

                &>h1 {
                    align-self: center;

                    &+.pc{
                        margin-top: 2rem;
                    }
                }

                /* &>h1 {
                    width: min(100%, 377px);
                } */

            }

            &:last-of-type {
                width: 50%;

                & figure {
                    position: relative;
                    right: -10%;
                    width: min(100%, 677px);

                }

                @media screen and (max-width:1239.8px) {
                    & figure {
                        right: 0;
                    }
                }

            }
        }
    }

    & .bg-img {
        &>img.tree {
            top: 50%;
            position: absolute;
            transform: translateY(-50%);
            width: clamp(220px, 18.75vw, 300px);
            /* width: 18.75vw; */
        }

        &>img.tree:first-of-type {
            left: 0;
        }

        &>img.tree:last-of-type {
            right: 0;
        }
    }
}

@media screen and (max-width:767.8px) {
    #secMainVisual {
        /* height: calc(100vh - 60px); */
        background-size: 100% 100px;
        padding-block: 30px 160px;

        &>.container>p {
            /* font-size: 1.8rem; */
            white-space: nowrap;
            letter-spacing: 0;
        }

        & .flex {
            display: contents;

            & .item {
                position: relative;
                z-index: 1;

                &:first-of-type {
                    width: 100%;
                    gap: 0;


                    &>h1 {
                        /* width: 82.8vw; */
                        margin-top: 1rem;
                    }


                }

                &:last-of-type {
                    width: 100%;
                    margin-top: 1rem;

                    & figure {
                        position: relative;
                        width: 84.5333333vw;
                        margin-inline: auto;
                    }
                }
            }
        }

        & .bg-img {
            &>img.tree {
                top: -32px;
                width: max(24vw, 120px);
                transform:none;
            }

            &>img.tree.sp:first-of-type {
                left: 0;
            }

            &>img.tree.sp:last-of-type {
                right: 0;
            }
        }
    }

}

#secProblem {
    padding-block: 48px;
    background: url('../images/sec1_bg_green.png');
    background-size: cover;

    & h2 {
        width: clamp(calc(350px - 8rem), 74.854vw, 842px);
        margin-inline: auto;
    }

    & figure {
        width: max(22.54vw, 433px);
        margin-inline: auto;
        margin-top: 40px;
    }
}

@media screen and (max-width:767.8px) {
    #secProblem {

        /* & h2 {
            width: 86vw;
        } */

        & figure {
            width: 57.7333vw;
            margin-top: 0;
        }
    }

}

#secInternalProblem {
    padding-block: 64px;

    & h2 {
        width: max(16.796875vw, 645px);
        margin-inline: auto;
    }

    & .flex {
        justify-content: center;
        align-items: baseline;
        margin-top: 40px;

        &>.item {
            display: flex;
            flex-direction: column;
            align-items: center;

            &>figure {
                width: 90%;
            }

            &>p {
                margin-top: 1rem;
                font-weight: bold;
            }
        }

    }
}

@media screen and (max-width:767.8px) {
    #secInternalProblem {

        & h2 {
            width: 88.66666vw;
        }

        & .flex {
            flex-wrap: wrap;
            row-gap: 10px;

            &>.item {
                width: 50%;
                display: flex;
                flex-direction: column;
                align-items: center;

                &>figure {
                    width: 90%;
                }

                &>p {
                    margin-top: 1rem;
                }
            }

        }
    }

}

#secProblemList {
    padding-block: 120px;
    background: url('../images/sec3_bg_green.png');
    background-size: cover;

    & .box__bg_beige {
        padding-block: 80px;
    }

    & .box__bg_beige>h2 {
        width: clamp(calc(350px - 8rem), 100%, 750px);
        margin-inline: auto;
    }

    & .box__white {
        padding-block: 96px;
    }

    & .box__white>h3 {
        margin-inline: auto;
    }

    & .box__white>h3:first-of-type {
        width: clamp(225px, 100%, 527px);
    }

    & .box__white>h3:last-of-type {
        margin-top: 80px;
        width: clamp(225px, 100%, 406px);
    }

    & .flex.list {
        margin-top: 4rem;
        gap: 2rem;

        &>.item p {
            margin-top: 1rem;
            font-weight: bold;
        }
    }
}

@media screen and (max-width:767.8px) {
    #secProblemList {
        padding-block: 40px;

        & .box__bg_beige {
            padding-block: 40px;
        }

        /* & .box__bg_beige>h2 {
            width: 49.6vw;
        } */

        & .box__white {
            padding-block: 40px;
        }

        & .box__white>h3 {
            margin-inline: auto;
        }

        & .box__white>h3:first-of-type {
            margin-top: 10px;
            /* width: 73.26666vw; */
        }

        & .box__white>h3:last-of-type {
            margin-top: 40px;
            /* width: 73.26666vw; */
        }

        & .flex.list {
            margin-top: 2rem;
            gap: 1rem;
            flex-wrap: wrap;
            justify-content: center;

            &>.item {
                width: calc(50% - 0.5rem);
                flex-grow: 0;
            }

            &>.item p {
                margin-top: 1rem;
                text-align: center;
                /* font-size: 1.2rem; */
                /* white-space: nowrap; */
            }
        }
    }

}

#secThinking {
    padding-block: 120px 80px;

    & .box__ol_green {
        padding-top: 80px;

        & h2 {
            width: max(calc(29.53125vw + 6rem), 665px);
        }

        &>.flex {
            padding-block: 2rem;
            column-gap: 40px;
            justify-content: space-between;

            &>.box__white {
                padding: 2vw;
            }
        }
    }

    & p {
        margin-top: 40px;
        font-size: 2.1rem;
    }
}

@media screen and (max-width:767.8px) {
    #secThinking {
        padding-bottom: 24px;

        & .box__ol_green {

            & h2 {
                width: 75.6vw;
                top:-6vw;
            }

            &>.flex {
                flex-direction: column;
                row-gap: 20px;
            }
        }

        & p {
            font-size: 1.6rem;
            margin-top: 20px;
            letter-spacing: 1px;
        }
    }
}

@media screen and (max-width:575px) {
    #secThinking {
        & .box__ol_green {
            padding-top: 40px;
        }
    }
}

#secHottarakashi {
    padding-block: 72px;
    text-align: center;

    & .container {
        & figure:first-of-type {
            width: max(34.63541vw, 684px);
            margin-inline: auto;
        }

        & .box__bg_beige {
            margin-top: 72px;
            padding-inline: 130px;

            & .box__white {
                margin-top: 40px;
            }

            & .box__white:first-of-type {
                position: relative;

                &>h2>img {
                    width: 90%;
                }

                &>img {
                    position: absolute;
                    width: auto;
                    height: 100%;
                }

                &>h2+img {
                    top: 0;
                    left: -100px;
                }

                &>img+img {
                    top: 0;
                    right: -100px;
                }
            }

            & .box__work {
                display: flex;
                flex-direction: column;
                align-items: center;
                position: relative;

                &>h3 {
                    width: clamp(calc(350px - 10rem), 50vw, 518px);
                    margin-top: 32px;
                }

                &>img {
                    position: absolute;
                }

                &>.graph {
                    width: clamp(240px, 50vw, 400px);
                    margin-top: 40px;
                    padding-bottom: 60px;
                }

                &>img:nth-of-type(1) {
                    width: clamp(70px, 16vw, 150px);
                    right: min(5%, 40px);
                    bottom: 40px;
                }

                &>img:nth-of-type(2) {
                    width: clamp(70px, 16vw, 150px);
                    left: min(5%, 40px);
                    bottom: 40px;
                }

            }
        }

        &>p {
            margin-top: 80px;
            font-size: 2.1rem;
        }

        &>p+picture>img {
            margin-top: 40px;
        }
    }
}

@media screen and (max-width:767.8px) {
    #secHottarakashi {
        padding-block: 20px;
        text-align: center;

        & .container {
            & figure:first-of-type {
                width: 88.66666vw;
                margin-inline: auto;
            }

            & p.h__line_i {
                font-size: 1.2rem;
                white-space: nowrap;
            }

            & .box__bg_beige {
                margin-top: 20px;
                padding-inline: 20px;

                & .box__white {
                    margin-top: 20px;
                }

                & .box__white:first-of-type {
                    position: relative;
                    margin-top: 2rem;

                    &>h2 {
                        width: 54vw;
                        margin-inline: auto;
                    }

                    &>img {
                        position: absolute;
                        width: auto;
                        height: 70%;
                    }

                    &>h2+img {
                        top: 14%;
                        left: 4px;
                    }

                    &>img+img {
                        top: 14%;
                        right: 4px;
                    }
                }
            }

            &>p {
                margin-top: 40px;
            }

            &>p+picture>img {
                margin-top: 20px;
            }
        }
    }

}

#secHottarakashiApproach {
    padding-block: 72px;

    & .container {
        &>h2 {
            width: 40%;
            margin-inline: auto;

            &+figure {
                margin-top: 40px;

                &+p {
                    margin-top: 80px;
                    font-size: 2.1rem;
                    text-align: center;
                }
            }
        }


        & .box__scroll {
            margin-block: 40px;
            overflow-x: scroll;

            &>.box__scroll_inner {
                width: 960px;
                margin-inline: auto;
            }
        }

        & .box__scroll::-webkit-scrollbar {
            display: none;
        }

        @media screen and (max-width:920px) {
            & .box__scroll::-webkit-scrollbar {
                display: block;
            }
        }

        & .box__plan {
            gap: 40px;
            justify-content: center;

            &>.box__white {
                padding-inline: 20px;
            }

            &>.item {
                width: 280px;
                display: flex;
                flex-direction: column;
                /* justify-content: center; */
                align-items: center;
                /* flex-grow: 0; */

                & .box__plan_h_01 {
                    width: 203px;
                }

                & .box__plan_h_02 {
                    width: 124px;
                }

                & .box__plan_h_03 {
                    width: 213px;
                }

                & ul {
                    margin-top: 32px;

                    &>li {
                        display: flex;
                        /* white-space: nowrap; */

                        &::before {
                            content: '\025cf';
                            margin-right: 4px;
                            color: var(--color-softorenge);
                            display: block;
                        }
                    }
                }
            }

            &+img {
                width: 660px;
                margin-inline: auto;
                display: block;

                &+p {
                    text-align: right;
                    margin-top: 1rem;
                    margin-right: 120px;
                }

                @media screen and (max-width:767.8px) {
                    &+p {
                        text-align: left;
                    }
                }
            }
        }

        & .box__ol_green {
            margin-top: 120px;
            text-align: center;
            padding-bottom: 56px;

            &:first-of-type>h2 {
                width: clamp(calc(350px - 18rem), 100%, 424px);
            }

            & p+figure {
                width: clamp(calc(350px - 8rem), 100%, 554px);
                margin-inline: auto;
                margin-top: 20px;
            }

            &>p {
                font-size: 2.1rem;
                margin-top: 40px;

                &>span {
                    font-size: 2.8rem;
                    color: var(--color-orenge);
                    font-weight: bold;
                }

                @media screen and (max-width:767.8px) {
                    &>span {
                        font-size: 1.8rem;
                    }
                        
                }
            }

            &>.box__bg_beige {
                margin-top: 40px;

                & .flex {
                    flex-wrap: wrap;
                    gap: 4rem;
                    text-align: left;

                    &>.item {
                        width: calc(50% - 2rem);
                        height: 64px;

                        &>img {
                            height: 100%;
                            width: auto;
                        }
                    }
                }

                &+figure {
                    width: 86px;
                    margin-inline: auto;
                    margin-top: 40px;

                    &+picture>img {
                        margin-top: 20px;
                    }
                }
            }
        }

        @media screen and (max-width:767.8px) {
            & .box__ol_green {
                margin-top: 40px;
                text-align: center;
                padding-bottom: 56px;

                /* &:first-of-type>h2 {
                    width: 74.6vw;
                } */

                & p+figure {
                    width: 100%;
                }

                &>p {
                    font-size: 1.4rem;
                }

                &>.box__bg_beige {
                    margin-top: 40px;
                    padding-block: 40px;

                    & .flex {
                        flex-wrap: wrap;
                        text-align: left;
                    }

                    &+figure {
                        width: 86px;
                        margin-inline: auto;
                        margin-top: 40px;

                        &+figure {
                            margin-top: 20px;
                        }
                    }
                }

            }
        }

        @media screen and (max-width:574.8px) {
            & .box__ol_green {

                &>.box__bg_beige {

                    & .flex {

                        &>.item {
                            width: 100%;
                            height: min(17.0666667vw, 64px);
                        }
                    }
                }
            }

        }

        & .box__ol_green+h3 {
            width: clamp(196px, 72.37681vw, 364px);
            margin-inline: auto;
            margin-top: 80px;

            &+p {
                font-size: 2.8rem;
                line-height: 1.2;
                font-weight: bold;
                margin-top: 20px;

                &>span {
                    color: var(--color-red);
                }

                &+p {
                    margin-top: 20px;

                    &+figure {
                        margin-top: 40px;
                    }
                }
            }
        }

        &>.box__bg_beige {
            &>h3 {
                margin-inline: auto;
            }

            &>h3:first-of-type {
                width: clamp(calc(350px - 4rem), 61.2vw, 459px);
            }

            &>h3:last-of-type {
                width: clamp(calc(350px - 4rem), 61.2vw, 710px);
                margin-top: 40px;
            }

            &>section {
                margin-top: 40px;


                &>h4 {
                    text-align: center;
                    border-radius: 20px 20px 0 0;
                    padding-block: 2rem;

                    &>img {
                        width: max(16.145vw, 310px);
                    }
                }

                & .box__white {
                    padding-inline: 96px;
                    position: relative;

                    &>h5 {
                        margin-inline: auto;
                    }

                    &>h5.h__plan_a {
                        width: clamp(calc(350px - 8rem), 42vw, 308px);
                    }

                    &>h5.h__plan_b {
                        width: clamp(calc(350px - 8rem), 42vw, 503px);
                    }

                    &>p {
                        margin-top: 40px;
                        text-align: center;

                        &+figure {
                            margin-top: 40px;
                            margin-inline: auto;
                            width: 50%;

                            &+figure {
                                margin-top: 40px;
                            }
                        }
                    }

                    @media screen and (max-width:767.8px) {
                        &>p {
                            margin-top: 20px;
                            text-align: center;
                        }
                    }

                    &.box__work {
                        display: flex;
                        flex-direction: column;
                        align-items: center;

                        &>img {
                            position: absolute;
                        }

                        &>picture {
                            text-align: center;
                        }

                        &>picture>img {
                            margin-top: 40px;
                            width: clamp(calc(350px - 8rem), 100%, 474px);
                        }

                        @media screen and (max-width:767.8px) {
                            &>picture>img {
                                margin-top: 20px;
                            }
                        }

                        &>.graph {
                            margin-top: 40px;
                            width: clamp(230px, 23.958vw, 384px);
                        }

                        @media screen and (max-width:767.8px) {
                            &>.graph {
                                margin-block: 20px 40px;
                            }
                        }

                        &>h5+img {
                            width: 140px;
                            top: 40px;
                            right: 80px;
                        }

                        &>img:nth-of-type(2) {
                            width: clamp(70px, 16vw, 148px);
                            right: min(5%, 96px);
                            bottom: min(5%, 40px);
                        }

                        &>img:nth-of-type(3) {
                            width: clamp(70px, 16vw, 148px);
                            left: min(5%, 96px);
                            bottom: min(5%, 40px);
                        }
                    }
                }

                @media screen and (max-width:767.8px) {
                    & .box__white {
                        padding-inline: 20px;
                    }
                }

                &>.box__voice {
                    padding: 64px 96px;

                    &>.box__voice_list {
                        display: flex;
                        align-items: center;

                        &>.text {
                            position: relative;
                            background-color: var(--color-white);
                            border-radius: 20px;
                            padding: 24px 20px;
                            width: 60%;

                            &::before {
                                content: "";
                                position: absolute;
                                top: 50%;
                                right: -24px;
                                margin-top: -12px;
                                border: 12px solid transparent;
                                border-left: 12px solid #FFF;
                                z-index: 2;
                            }

                            &::after {
                                content: "";
                                position: absolute;
                                top: 50%;
                                right: -30px;
                                margin-top: -14px;
                                border: 14px solid transparent;
                                z-index: 1;
                            }

                        }

                        &>.img__box {
                            margin-left: 40px;

                            img {
                                width: 120px;
                            }
                        }

                        @media screen and (max-width:767.8px) {
                            &>.text {
                                padding: 10px 5px;
                                width: 100%;

                                &::before {
                                    top: 36%;
                                }

                                &::after {
                                    top: 36%;
                                }

                            }

                            &>.img__box {
                                margin-left: 8px;

                                img {
                                    width: 74px;
                                }
                            }
                        }

                        &+.box__voice_list {
                            margin-top: 40px;
                        }
                    }

                    &>p {
                        text-align: right;
                        margin-right: 160px;
                        font-size: 2.2rem;
                        font-weight: bold;
                        margin-bottom: 1rem;
                        white-space: nowrap;
                    }

                    @media screen and (max-width:767.8px) {
                        &>p {
                            margin-right: 0;
                            font-size: 1.8rem;
                            text-align: center;
                        }
                    }
                }

                @media screen and (max-width:767.8px) {
                    &>.box__voice {
                        padding-inline: 20px;
                    }
                }

                & .box__voice+.box__white {
                    border-radius: 0 0 20px 20px;

                    &>h5 {
                        text-align: center;
                        width: 100%;
                        font-size: 2.2rem;
                        margin-bottom: 20px;
                    }

                    @media screen and (max-width:767.8px) {
                        &>h5 {
                            font-size: 1.8rem;
                        }

                    }

                    &>.flex {
                        column-gap: 40px;
                        justify-content: space-between;

                        & .item {
                            width: 50%;
                        }

                        &+dl {
                            display: flex;
                            flex-wrap: wrap;
                            align-items: stretch;
                            margin-top: 60px;

                            &>dt {
                                width: 25%;
                                display: flex;
                                align-items: center;
                                border-bottom: 4px solid var(--color-brown);
                                padding-left: 20px;
                                font-weight: normal;
                            }

                            &>dt:first-of-type {
                                border-top: 4px solid var(--color-brown);
                            }

                            &>dd {
                                width: 75%;
                                padding-block: 10px;
                                padding-left: 20px;
                                border-bottom: 4px solid var(--color-beige2);
                            }

                            &>dd:first-of-type {
                                border-top: 4px solid var(--color-beige2);
                            }
                        }
                    }

                    @media screen and (max-width:767.8px) {
                        &>.flex {
                            flex-direction: column;
                            row-gap: 20px;

                            & .item {
                                width: 100%;
                            }

                            &+dl {
                                margin-top: 20px;

                                &>dt {
                                    width: 30%;
                                    padding-left: 10px;
                                }

                                &>dd {
                                    width: 70%;
                                }

                            }

                        }
                    }
                }
            }

            & section:first-of-type {
                & h4 {
                    background-color: var(--color-orenge);
                }

                &>.box__voice {
                    background-color: var(--color-beige4);

                    &>.box__voice_list {
                        &>.text {
                            border: 3px solid var(--color-orenge);

                            &::after {
                                border-left: 14px solid var(--color-orenge);
                            }
                        }
                    }

                    &>p {
                        color: var(--color-orenge);
                    }
                }

            }

            & section:last-of-type {
                & h4 {
                    background-color: var(--color-green);
                }

                &>.box__voice {
                    background-color: var(--color-softgreen);

                    &>.box__voice_list {
                        &>.text {
                            border: 3px solid var(--color-green);

                            &::after {
                                border-left: 14px solid var(--color-green);
                            }
                        }
                    }

                    &>p {
                        color: var(--color-green);
                    }

                    &+.box__white {
                        & .flex>.item:last-child {
                            justify-items: center;
                            text-align: center;

                            &>img {
                                width: 190px;
                            }
                        }
                    }
                }
            }
        }

        @media screen and (max-width:767.8px) {
            &>.box__bg_beige {
                margin-inline: -20px;
                border-radius: 0;

                &>h3 {
                    margin-top: 40px;
                }

            }

        }
    }
}

@media screen and (max-width:767.8px) {
    #secHottarakashiApproach {
        padding-block: 48px;
    }

}

#secCTA {
    padding-block: 40px;
    background: url('../images/sec10_b.png') no-repeat;

    & .cta__body {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        height: 300px;

        &>img:nth-of-type(1) {
            width: clamp(calc(350px - 8rem), 100%, 574.5px);
        }

        &>.btn-contact {
            margin-top: 4rem;
        }

        &>img:nth-of-type(2),
        &>img:nth-of-type(3),
        &>img:nth-of-type(4),
        &>img:nth-of-type(5) {
            position: absolute;
            bottom: 0;
        }

        &>img:nth-of-type(2) {
            width: clamp(220px, 29.666vw, 320px);
            left: 0;
        }

        &>img:nth-of-type(3) {
            width: clamp(200px, 27.208vw, 292px);
            right: 0;
        }

        &>img:nth-of-type(4) {
            width: min(25.666vw, 220px);
            bottom: -32px;
            left: -4px;
        }

        &>img:nth-of-type(5) {
            width: min(24.208vw, 210px);
            bottom: -32px;
            right: -4px;
        }
    }

    @media screen and (max-width:767.8px) {
        & .cta__body {
            height: max(28.6vw, 140px);

            &>.btn-contact {
                margin-top: 1rem;
                width: 250px;
                height: 48px;
            }
        }

        & .cta__body.box__white {
            padding: 10px;
        }
    }
}

#secCTA2 {
    padding-block: 104px;
    position: relative;

    & .container {
        &>a {
            display: block;
            font-size: 3.6rem;
            text-align: center;
            color: var(--color-green);
        }
    }

    &>a {
        position: absolute;
        width: 80px;
        bottom: 10px;
        right: 10px;
    }
}

#ftCta {
    background: var(--color-green);
    width: 100%;
    position: fixed;
    bottom: 0;
    z-index: 999;
    transition: 0.4s;
    opacity: 0;

    &.show {
        opacity: 100;
    }

    & .container {
        height: 114px;
        position: relative;
        padding-inline: 0;
        display: grid;
        align-content: center;

        &>.btn-contact {
            margin-inline: auto;
        }

        &>img {
            position: absolute;
            bottom: 0;
            width: 50px;
        }

        &>img:nth-of-type(1) {
            left: calc(calc(50% - 150px) - 64px);
            bottom: 40px;
        }

        &>img:nth-of-type(2) {
            left: calc(calc(50% + 100px) + 64px);
            bottom: 40px;
        }

        &>img:nth-of-type(3) {
            left: 0;
            width: clamp(180px, 22.2222vw, 240px);
        }

        &>img:nth-of-type(4) {
            right: 0;
            width: clamp(180px, 22.2222vw, 240px);
        }

        &>img:nth-of-type(5) {
            width: 120px;
            left: calc(calc(50% - 125px) - 48px);
            bottom: 42px;
        }

        &>img:nth-of-type(6) {
            width: 120px;
            left: calc(calc(50% + 85px) - 22px);
            bottom: 42px;
        }

    }

    @media screen and (max-width:767.8px) {
        & .container {
            height: 72px;

            &>.btn-contact {
                width: 250px;
                height: 48px;
            }

            &>img {
                position: absolute;
                bottom: 0;
                width: 40px;
            }

            &>img:nth-of-type(1) {
                left: calc(calc(50% - 125px) - 48px);
                bottom: 12px;
            }

            &>img:nth-of-type(2) {
                left: calc(calc(50% + 85px) + 48px);
                bottom: 12px;
            }
        }
    }
}

/* Footer */
footer {

    position: relative;
    z-index: 9999;
    width: 100%;

    & > .logo {
        width:310px;
        margin-inline: auto;
        margin-top: 40px;
    }

    & > p.copy {
        color: var(--color-black);
        margin-block: 28px;
        font-size: 1.2rem;
    }
}