:root {
    --vw: 1vw
}
body {
    width: 100%
}
body.fixed {
    overflow: hidden
}
.inner {
    width: 90%;
    max-width: 1110px;
    margin-right: auto;
    margin-left: auto
}
.inner.large {
    width: auto;
    max-width: none;
    margin-right: min(5%, 40px);
    margin-left: min(5%, 40px)
}
.contact_button .contact_button__link {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0 0.625em;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.04em;
    text-align: center;
    text-decoration: none;
    height: 60px;
    background: linear-gradient(45deg, #187042 0%, #7FBF65 100%)
}
.contact_button .contact_button__link::before {
    content: '';
    width: 1.5em;
    height: 1.5em;
    background: url("../img/icon_mail.svg") no-repeat 50% 50%/contain
}
.contact_button .contact_button__link:hover {
    -webkit-transform: translateY(10%);
    -moz-transform: translateY(10%);
    -ms-transform: translateY(10%);
    -o-transform: translateY(10%);
    transform: translateY(10%)
}
#header {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    overflow: hidden;
    background-color: #fff;
    -webkit-transition: 0.4s ease-out;
    -moz-transition: 0.4s ease-out;
    -ms-transition: 0.4s ease-out;
    -o-transition: 0.4s ease-out;
    transition: 0.4s ease-out
}
@media screen and (min-width: 980px) {
    #header {
        overflow: visible
    }
}
#header .inner {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 0 min(5%, 40px);
    height: 80px
}
@media screen and (min-width: 980px) {
    #header .inner {
        height: auto
    }
}
#header .inner .head_logo {
    width: clamp(240px, 25%, 414px)
}
#header .inner .head_logo a:hover {
    opacity: 0.6
}
#header .inner .head_content {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: 0.4s linear;
    -moz-transition: 0.4s linear;
    -ms-transition: 0.4s linear;
    -o-transition: 0.4s linear;
    transition: 0.4s linear
}
@media screen and (min-width: 980px) {
    #header .inner .head_content {
        position: static;
        font-size: clamp(12px, 12px + 4 * ( ( var(--vw) * 100 ) - 980px ) / 220, 16px);
        width: auto;
        height: auto;
        background-color: transparent;
        opacity: 1.0;
        visibility: visible;
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0)
    }
}
#header .inner .head_content .head_navi {
    flex-shrink: 0
}
#header .inner .head_content .head_navi a {
    font-weight: 500;
    letter-spacing: 0.04em;
    text-decoration: none;
    padding: 1.5em min(5%, 40px)
}
@media screen and (min-width: 980px) {
    #header .inner .head_content .head_navi a {
        padding: 0
    }
}
@media screen and (min-width: 980px) {
    #header .inner .head_content .head_navi>ul {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap
    }
}
#header .inner .head_content .head_navi>ul>li {
    position: relative;
    border-bottom: 1px solid #EDEDED
}
@media screen and (min-width: 980px) {
    #header .inner .head_content .head_navi>ul>li {
        margin-right: 2.0em;
        border-bottom: none
    }
}
#header .inner .head_content .head_navi>ul>li>a {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 0.625em 1.0em;
    font-size: 1.125em;
    color: #202020
}
#header .inner .head_content .head_navi>ul>li>a::before {
    content: '';
    width: 1.5em;
    height: 1.5em;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: contain
}
#header .inner .head_content .head_navi>ul>li>a.is-active+.sub-menu {
    opacity: 1.0;
    visibility: visible
}
@media screen and (min-width: 980px) {
    #header .inner .head_content .head_navi>ul>li>a {
        justify-content: center;
        flex-wrap: nowrap;
        flex-direction: column;
        font-size: 1.0em;
        text-align: center;
        padding: 1.25em 0;
        border-bottom: 3px solid transparent
    }
}
#header .inner .head_content .head_navi>ul>li.home>a::before {
    background-image: url("../img/icon_home.svg")
}
#header .inner .head_content .head_navi>ul>li.about>a::before {
    background-image: url("../img/icon_build.svg")
}
#header .inner .head_content .head_navi>ul>li.business>a::before {
    background-image: url("../img/icon_regal.svg")
}
#header .inner .head_content .head_navi>ul>li.price>a::before {
    background-image: url("../img/icon_price.svg")
}
#header .inner .head_content .head_navi>ul>li.flow>a::before {
    background-image: url("../img/icon_mtg.svg")
}
#header .inner .head_content .head_navi>ul>li.terasu>a::before {
    background-image: url("../img/icon_terasu.svg")
}
#header .inner .head_content .head_navi>ul>li .sub-menu {
    color: #fff;
    height: 0;
    background-color: #187042;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.4s ease-in;
    -moz-transition: 0.4s ease-in;
    -ms-transition: 0.4s ease-in;
    -o-transition: 0.4s ease-in;
    transition: 0.4s ease-in
}
#header .inner .head_content .head_navi>ul>li .sub-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2)
}
#header .inner .head_content .head_navi>ul>li .sub-menu li a {
    position: relative;
    display: block;
    color: inherit
}
#header .inner .head_content .head_navi>ul>li .sub-menu li a::after {
    position: absolute;
    top: 1.5em;
    right: min(5%, 40px);
    content: '';
    width: 1.0em;
    height: 1.0em;
    background: url("../img/icon_arrow_white.svg") no-repeat 50% 50%/contain
}
#header .inner .head_content .head_navi>ul>li .sub-menu li a:hover {
    background-color: #7FBF65
}
#header .inner .head_content .head_navi>ul>li .sub-menu li:last-child {
    border-bottom: none
}
@media screen and (min-width: 980px) {
    #header .inner .head_content .head_navi>ul>li .sub-menu {
        position: absolute;
        top: 100%;
        left: 50%;
        z-index: 10;
        width: 240px;
        height: auto;
        border-radius: 0 0 1.0em 1.0em;
        box-shadow: 10px 10px 20px rgba(32, 32, 32, 0.1);
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%)
    }
    #header .inner .head_content .head_navi>ul>li .sub-menu li a {
        padding: 1.5em
    }
    #header .inner .head_content .head_navi>ul>li .sub-menu li:last-child a {
        border-radius: 0 0 1.0em 1.0em
    }
    #header .inner .head_content .head_navi>ul>li .sub-menu::before {
        position: absolute;
        top: -0.75em;
        right: 0;
        left: 0;
        content: '';
        width: 1.0em;
        height: 0.75em;
        margin: auto;
        background-color: #187042;
        clip-path: polygon(50% 0%, 0% 100%, 100% 100%)
    }
}
#header .inner .head_content .head_navi>ul>li:hover>a {
    opacity: 0.6
}
@media screen and (min-width: 980px) {
    #header .inner .head_content .head_navi>ul>li:hover .sub-menu {
        opacity: 1.0;
        visibility: visible
    }
}
#header .inner .head_content .head_navi>ul>li[class*="current"]>a {
    border-bottom-color: #187042
}
#header .inner .head_content .head_contact {
    margin: 40px min(5%, 40px) 0
}
#header .inner .head_content .head_contact .contact_button__link {
    font-size: 1.0em
}
@media screen and (min-width: 980px) {
    #header .inner .head_content .head_contact {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-align-content: center;
        -ms-flex-line-pack: center;
        align-content: center;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 240px;
        margin: 0
    }
    #header .inner .head_content .head_contact .contact_button__link {
        font-size: 1.0em;
        width: 100%
    }
}
#header .inner .head_content .head_content__scroll {
    height: 100%;
    padding: 80px 0;
    overflow-y: auto
}
@media screen and (min-width: 980px) {
    #header .inner .head_content .head_content__scroll {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        height: auto;
        padding: 0;
        overflow-y: visible
    }
}
#header .inner #head_menu {
    display: none
}
#header .inner #head_menu+[for="head_menu"] {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    z-index: 999;
    color: #fff;
    width: 50px;
    height: 50px;
    background-color: #019742;
    border-radius: 0.25em;
    cursor: pointer;
    -webkit-transition: 0.4s ease-out;
    -moz-transition: 0.4s ease-out;
    -ms-transition: 0.4s ease-out;
    -o-transition: 0.4s ease-out;
    transition: 0.4s ease-out
}
#header .inner #head_menu+[for="head_menu"] .hamburger {
    position: relative;
    display: block;
    width: 25px;
    height: 15px
}
#header .inner #head_menu+[for="head_menu"] .hamburger span {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    margin: auto;
    background-color: #fff;
    border-radius: 25em;
    -webkit-transition: 0.4s ease-out;
    -moz-transition: 0.4s ease-out;
    -ms-transition: 0.4s ease-out;
    -o-transition: 0.4s ease-out;
    transition: 0.4s ease-out
}
#header .inner #head_menu+[for="head_menu"] .hamburger span:first-child {
    bottom: auto
}
#header .inner #head_menu+[for="head_menu"] .hamburger span:last-child {
    top: auto
}
#header .inner #head_menu+[for="head_menu"] .text {
    display: block;
    font-size: 0.75em;
    font-weight: bold;
    line-height: 1.0;
    text-align: center;
    margin-top: 10px
}
#header .inner #head_menu+[for="head_menu"] .text::before {
    content: 'MENU'
}
@media screen and (min-width: 980px) {
    #header .inner #head_menu+[for="head_menu"] {
        display: none
    }
}
#header .inner #head_menu:checked+[for="head_menu"] .hamburger {
    position: relative;
    display: block;
    width: 25px;
    height: 15px
}
#header .inner #head_menu:checked+[for="head_menu"] .hamburger span:not(:first-child):not(:last-child) {
    background-color: transparent
}
#header .inner #head_menu:checked+[for="head_menu"] .hamburger span:first-child {
    bottom: 0;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg)
}
#header .inner #head_menu:checked+[for="head_menu"] .hamburger span:last-child {
    top: 0;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg)
}
#header .inner #head_menu:checked+[for="head_menu"] .text::before {
    content: 'CLOSE'
}
#header .inner #head_menu:checked~.head_content {
    opacity: 1.0;
    visibility: visible;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0)
}
#header.fixed {
    box-shadow: 0 10px 20px -10px rgba(32, 32, 32, 0.2)
}
#header.hide {
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%)
}
.headline {
    position: relative;
    font-size: clamp(16px, calc(16px + 8 * ((var(--vw) * 100) - 320px) / 880), 24px);
    font-weight: 500;
    color: transparent;
    letter-spacing: 0.1em;
    line-height: 1.6;
    margin-bottom: 1.75em;
    padding-left: 1.83em;
    background-image: linear-gradient(45deg, #187042 0%, #7FBF65 100%);
    -webkit-background-clip: text
}
.headline::before {
    content: attr(data-english);
    display: block;
    font-size: 2.0em;
    font-weight: bold;
    line-height: 1.0;
    margin-bottom: 0.416em
}
.headline::after {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    display: block;
    width: 0.5em;
    height: 100%;
    background-image: linear-gradient(to bottom, #187042 0%, #7FBF65 100%)
}
.headline+p {
    letter-spacing: 0.04em;
    line-height: 2.0;
    margin-bottom: 2.75em
}
.button {
    margin-top: calc(clamp(60px, calc(60px + 60 * ((var(--vw) * 100) - 320px) / 880), 120px) * 0.5);
    margin-bottom: calc(clamp(60px, calc(60px + 60 * ((var(--vw) * 100) - 320px) / 880), 120px) * 0.5)
}
.button .button__link {
    position: relative;
    display: block;
    font-weight: 500;
    color: #202020;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-align: center;
    max-width: 320px;
    margin-right: auto;
    margin-left: auto;
    padding: 1.25em 3.0em;
    background-color: #fff;
    border: 1px solid #7FBF65;
    border-radius: 25em
}
.button .button__link::before,
.button .button__link::after {
    position: absolute;
    top: calc((100% - 1.25em) / 2);
    right: 1.5em;
    content: '';
    width: 1.25em;
    height: 1.25em;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: contain;
    -webkit-transition: 0.4s ease-out;
    -moz-transition: 0.4s ease-out;
    -ms-transition: 0.4s ease-out;
    -o-transition: 0.4s ease-out;
    transition: 0.4s ease-out
}
.button .button__link:before {
    background-image: url("../img/icon_arrow_green.svg")
}
.button .button__link::after {
    background-image: url("../img/icon_arrow_white.svg");
    opacity: 0
}
.button .button__link:hover {
    color: #fff;
    background-color: #7FBF65
}
.button .button__link:hover::before {
    opacity: 0
}
.button .button__link:hover::after {
    opacity: 1.0;
    -webkit-transform: translateX(0.5em);
    -moz-transform: translateX(0.5em);
    -ms-transform: translateX(0.5em);
    -o-transform: translateX(0.5em);
    transform: translateX(0.5em)
}
.button:first-child {
    margin-top: 0
}
.button:last-child {
    margin-bottom: 0
}
.google-map {
    position: relative;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 1/1
}
.google-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}
.callphone {
    font-size: clamp(14px, calc(14px + 6 * ((var(--vw) * 100) - 320px) / 880), 20px);
    font-weight: bold;
    letter-spacing: 0.04em
}
.callphone em {
    font-style: normal;
    color: #019742;
    margin-right: 0.5em
}
.callphone .tel {
    font-size: 1.8em;
    color: inherit;
    text-decoration: none
}
#footer .foot_access {
    position: relative;
    z-index: 1;
    color: #fff;
    padding-top: calc(clamp(60px, calc(60px + 60 * ((var(--vw) * 100) - 320px) / 880), 120px) * 0.5)
}
#footer .foot_access .foot_access__rows {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 0 min(7.2%, 80px)
}
#footer .foot_access .foot_access__rows .foot_access__info {
    flex-grow: 1;
    flex-basis: 272px;
    padding-bottom: calc(clamp(60px, calc(60px + 60 * ((var(--vw) * 100) - 320px) / 880), 120px) * 0.5)
}
#footer .foot_access .foot_access__rows .foot_access__info .site-name {
    margin-bottom: 2.0em
}
#footer .foot_access .foot_access__rows .foot_access__info .solicitor {
    font-size: 1.25em;
    letter-spacing: 0.04em;
    line-height: 1.6;
    margin-bottom: 0
}
#footer .foot_access .foot_access__rows .foot_access__info address {
    font-style: normal;
    letter-spacing: 0.04em;
    line-height: 2.0;
    margin-top: 1.0em
}
#footer .foot_access .foot_access__rows .foot_access__info ul {
    list-style: disc;
    line-height: 1.6;
    letter-spacing: 0.04em;
    text-decoration: underline;
    margin-top: 1.5em;
    margin-left: 1.5em
}
#footer .foot_access .foot_access__rows .foot_access__map {
    flex-grow: 4;
    flex-basis: 544px
}
#footer .foot_access .foot_access__rows .foot_access__map img {
    width: 100%
}
#footer .foot_access::after {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    content: '';
    width: 100%;
    height: calc(100% - (clamp(60px, calc(60px + 60 * ((var(--vw) * 100) - 320px) / 880), 120px) * 0.5));
    background-color: #019742
}
#footer .foot_bottom {
    margin: calc(clamp(60px, calc(60px + 60 * ((var(--vw) * 100) - 320px) / 880), 120px) * 0.5) 0
}
#footer .foot_bottom .foot_bottom__desp p {
    line-height: 2.0;
    letter-spacing: 0.04em
}
#footer .foot_bottom .foot_bottom__desp p em {
    font-weight: 500;
    font-style: normal;
    font-size: 1.25em;
    color: #202020;
    letter-spacing: 0.1em
}
#footer .foot_bottom .foot_bottom__contact {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 1.5em 2.0em;
    margin-top: 2.0em
}
#footer .foot_bottom .foot_bottom__contact .contact_button {
    width: 240px
}
#footer .foot_bottom .foot_bottom__copy {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1.0em 1.5em;
    margin-top: calc(clamp(60px, calc(60px + 60 * ((var(--vw) * 100) - 320px) / 880), 120px) * 0.5)
}
@media screen and (min-width: 768px) {
    #footer .foot_bottom .foot_bottom__copy {
        justify-content: space-between;
        flex-wrap: nowrap;
        flex-direction: row-reverse
    }
}
#footer .foot_bottom .foot_bottom__copy .foot_bottom__navi {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    flex-shrink: 1;
    gap: 1.0em 0
}
#footer .foot_bottom .foot_bottom__copy .foot_bottom__navi li {
    font-size: 0.875em;
    margin-right: 1.0em;
    padding-right: 1.0em;
    border-right: 1px solid #EDEDED
}
#footer .foot_bottom .foot_bottom__copy .foot_bottom__navi li a {
    color: inherit;
    line-height: 1.6;
    letter-spacing: 0.04em;
    text-decoration: none
}
#footer .foot_bottom .foot_bottom__copy .foot_bottom__navi li a:hover {
    opacity: 0.6
}
#footer .foot_bottom .foot_bottom__copy .foot_bottom__navi li:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: 0
}
#footer .foot_bottom .foot_bottom__copy .copyright {
    flex-shrink: 1;
    text-align: center;
    margin-bottom: 0
}
#footer .foot_bottom .foot_bottom__copy .copyright small {
    font-size: 0.875em;
    letter-spacing: 0.04em;
    color: #019742
}
/* 6番目のアイコン（お知らせ）の設定を追加 */
#header .inner .head_content .head_navi>ul>li.news>a::before {
    background-image: url("../img/icon_news.svg")
}
/* 他のアイコンと共通の基本設定（既存の記述を補強） */
#header .inner .head_content .head_navi>ul>li.news>a::before {
    content: '';
    width: 1.5em;
    height: 1.5em;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: contain
}
@media screen and (min-width: 980px) {
    #header .inner .head_content .head_navi>ul>li.news>a {
        justify-content: center;
        flex-wrap: nowrap;
        flex-direction: column;
        font-size: 1.0em;
        text-align: center;
        padding: 1.25em 0;
        border-bottom: 3px solid transparent
    }
}