@charset "utf-8";

html {
    font-feature-settings: "palt";
    scroll-behavior: smooth;
}

@media screen and (max-width: 800px) {
    html {
        font-size: 14px;
    }
}

@media screen and (max-width: 412px) {
    html {
        font-size: 14px;
    }
}

body {
    letter-spacing: 0.05em;
    line-height: 1.8em;
    font-weight: 500;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    color: #555;
}

a {
    color: #555;
}

section {
    margin-left: 10.42%;
    margin-right: 10.42%;
    margin-bottom: 9.375rem;
}

@media screen and (max-width: 800px) {
    section {
        margin-bottom: 6.25rem;
    }
}

@media screen and (max-width: 412px) {
    section {
        margin-left: 5%;
        margin-right: 5%;
        margin-bottom: 5rem;
    }
}

/* WRAPPER */

.wrapper_01 {
    padding-left: 10.42%;
    padding-right: 10.42%;
    padding-top: 9.375rem;
}

@media screen and (max-width: 800px) {
        .wrapper_01 {
        padding-top: 6.25rem;
    }
}

@media screen and (max-width: 412px) {
    .wrapper_01 {
        padding-left: 5%;
        padding-right: 5%;
        padding-top: 5rem;
    }
}

.wrapper_02 {
    padding-left: 20.83%;
    padding-right: 20.83%;
    padding-top: 9.375rem;
}

@media screen and (max-width: 800px) {
        .wrapper_02 {
        padding-left: 10.42%;
        padding-right: 10.42%;
        padding-top: 6.25rem;
    }
}

@media screen and (max-width: 412px) {
    .wrapper_02 {
        padding-left: 5%;
        padding-right: 5%;
        padding-top: 5rem;
    }
}

.wrapper_03 {
    position: relative;
    padding: 9.375rem 17.36%;
    overflow: hidden; 
}

@media screen and (max-width: 800px) {
    .wrapper_03 {
        padding: 6.25rem 10.42%;
    }
}

@media screen and (max-width: 412px) {
    .wrapper_03 {
        padding: 5rem 5%;
    }
}

/* BORDER */

.border-bottom_dashed {
    border-bottom: 1px dashed #9AB59D;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
}

.border-bottom_dashed:last-of-type {
    border-bottom: none;
    margin-bottom: 0px;
    padding-bottom: 0px;
}

/* HEADING H2 */

.h2-box {
    display: inline-block;
    width: 100%;
    margin-bottom: 6.25rem;
}

@media screen and (max-width: 800px) {
    .h2-box {
        margin-bottom: 5rem;
    }
}

@media screen and (max-width: 412px) {
    .h2-box {
        margin-bottom: 3.13rem;
    }
}

.h2-sub {
    text-align: center;
    font-size: 0.94rem;
    color: #9AB59D;
    font-weight: bold;
    margin-bottom: 0.75rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 412px) {
    .h2-sub {
        margin-bottom: 0.62rem;
        justify-content: left;
    }
}

.h2-sub::before {
    content: "";
    display: block;
    width: 1.88rem;
    border-bottom: 1px solid #9AB59D;
    position: absolute;
    margin-right: 8rem;
}

@media screen and (max-width: 412px) {
    .h2-sub::before {
        display: none;
    }
}

.h2-sub::after {
    content: "";
    display: block;
    width: 1.88rem;
    border-bottom: 1px solid #9AB59D;
    position: absolute;
    margin-left: 8rem;
}

@media screen and (max-width: 412px) {
    .h2-sub::after {
        width: 1.25rem;
        margin-left: 5.5rem;
    }
}

h2 {
    text-align: center;
    font-size: 1.88rem;
    font-weight: bold;
    color: #527553;
    line-height: 1.6em;
}

@media screen and (max-width: 412px) {
    h2 {
        text-align: left;
        font-size: 1.5rem;
    }
}

/* HEADING H3 */

h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #527553;
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 2rem;
    margin-bottom: 1.88rem;
    line-height: 1.6em;
}

@media screen and (max-width: 412px) {
    h3 {
        font-size: 1.2rem;
    }
}

h3::before {
    content: "";
    display: block;
    height: 1.16rem;
    width: 1.16rem;
    border-radius: 50%;
    background-color: #9AB59D;
    position: absolute;
    left: 0;
}

@media screen and (max-width: 412px) {
    h3::before {
        height: 1rem;
        width: 1rem;
    }
}

/* H4 HEADING */

h4 {
    font-size: 1.25rem;
    margin-bottom: 1.88rem;
    font-weight: bold;
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 3.13rem;
}

@media screen and (max-width: 412px) {
    h4 {
        font-size: 1.2rem;
    }
}

h4::before {
    content: "";
    display: block;
    width: 2rem;
    border-bottom: 1px solid #555;
    position: absolute;
    left: 0;
}

/* BACKGROUND COLOR */

.bg-color_01 {
    background-color: #F6F6F6;
}

.bg-color_02 {
    background-color: #fff;
}

/* FLEX */

.flex_pc {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.flex_reverse {
    flex-direction: row-reverse;
}

@media screen and (max-width: 800px) {
    .flex_pc {
        display: block;
    }

    .flex_reverse {
        flex-direction: initial;
    }
}

/* TEXT BOX */

.text-area {
    text-align: justify;
}

/* BR */

.sp-block {
    display: none;
}

@media screen and (max-width: 800px) {
     .sp-block {
        display: block;
    }
}

@media screen and (max-width: 412px) {
     .sp-none {
        display: none;
    }
}