/* ========================================================
   Custom Properties
=========================================================*/
:root {
    --text-color: #354345;
    --main-color: #74C35B;
    --sub-color: #A9D57A;
    --yellow-color: #F7E777;
    --bg-color: #EEFBEA;
    --gray-color: #E3EFE0;
    --line-color: #D8D8D8;

    --border-radius: 8px;
    --border-radius-large: 40px;

    --margin-xxl: 120px;
    --margin-xl: 80px;
    --margin-l: 56px;
    --margin-m: 48px;
    --margin-ms: 32px;
    --margin-s: 24px;
    --margin-xs: 16px;
}

@media (max-width: 767.98px) {
    :root {
        --margin-xxl: 80px;
        --margin-xl: 60px;
        --margin-l: 40px;
        --margin-m: 32px;
        --margin-ms: 24px;
        --margin-s: 16px;
        --margin-xs: 8px;
        --border-radius-large: 20px;
    }
}


/* ========================================================
   Common
=========================================================*/
html {
    font-size: 62.5%;
    box-sizing: border-box;
}

body {
    font-family: "Zen Maru Gothic", sans-serif;
    background: #FFFFFF;
    color: var(--text-color);
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.06em;
    line-height: 1.7;
    overflow-x: hidden;
}

/* ドロワーメニューが開いた時にbodyのスクロールを防ぐ */
body.drawer-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

@media (min-width: 1280px) {
    body {
        font-size: 1.6rem;
    }
}

section {
    position: relative;
    z-index: 2;
}

p {
    line-height: 1.7;
}

@media (max-width: 991.98px) {
    p {
        line-height: 1.7;
    }
}

@media (min-width: 576px) {
    .xs {
        display: none !important;
    }
}

@media (max-width: 575.98px) {
    .xsnon {
        display: none !important;
    }
}

@media (min-width: 968px) {
    .sp {
        display: none !important;
    }
}

@media (max-width: 967.98px) {
    .pc {
        display: none !important;
    }
}

@media (max-width: 767.98px) {
    .sp_left {
        text-align: left;
    }
}

.flex_columns {
    display: flex;
    gap: 5vw;
    align-items: center;
    justify-content: space-between;
}

.flex_columns-center {
    align-items: center;
    justify-content: center;
    gap: 24px;
}

@media (max-width: 991.98px) {
    .flex_columns {
        flex-wrap: wrap;
        gap: 24px;
    }

    .flex_column {
        width: 100% !important;
    }
}

@media (min-width: 992px) {
    .row_reverse {
        flex-direction: row-reverse;
    }
}

@media (max-width: 991.98px) {
    .col_reverse {
        flex-direction: column-reverse;
    }
}

.deco {
    position: absolute;
}

.ft_serif {
    font-family: "Noto Serif JP", serif;
}

.mt-1 {
    margin-top: 16px;
}

/* ========================================================
   Components
=========================================================*/

/* Container
-----------------------------------*/
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.container.is_slim {
    max-width: 1000px;
}

/* Title
-----------------------------------*/
.section_title {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.section_title .en {
    font-family: "Manrope", sans-serif;
    font-size: clamp(16px, calc((18 / 1440) * 100vw), 18px);
    letter-spacing: 0.14em;
    color: rgba(21, 61, 98, 0.50);
    text-transform: capitalize;
}

.section_title .ja {
    font-size: clamp(26px, calc((36 / 1440) * 100vw), 36px);
    line-height: 1.5;
    color: var(--text-color);
    letter-spacing: 0.09em;
    font-weight: 500;
}

.section_title.is_light .en {
    color: rgba(255, 255, 255, 0.7);
}

.section_title.is_light .ja {
    color: #FFFFFF;
}

/* Button
-----------------------------------*/
.section_btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    padding: 14px 32px 14px 24px;
    border: 1px solid #A1B1C0;
    color: var(--main-color);
    font-size: 16px;
    text-align: center;
    transition: background 0.3s ease;
    border-radius: 4px;
}

.section_btn::after {
    content: '';
    position: absolute;
    right: 13px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background-image: url('../images/btn_arrow.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.section_btn:hover {
    background: #E8F5FF;
}

.section_btn:visited,
.section_btn:hover,
.section_btn:active {
    color: var(--main-color);
}

.section_btn.is_blue {
    background: var(--main-color);
    color: #FFF;
}

.section_btn.is_center {
    display: flex;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.section_btn.is_back::after {
    left: 13px;
    right: auto;
    transform: translateY(-50%) scaleX(-1);
}

/* ========================================================
   Header
=========================================================*/
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #FFF;
    border-bottom: 1px solid #E4ECF5;
    z-index: 1000;
}

.header_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.header_logo_img {
    width: 180px;
    height: auto;
}

.nav_pc_list {
    display: flex;
    gap: 24px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
}

.nav_sp {
    display: none;
}

.menu_btn {
    display: inline-flex;
    flex-direction: column;
    gap: 8px;
    cursor: pointer;
}

.menu_btn span {
    display: block;
    width: 30px;
    height: 2px;
    background: var(--text-color);
}

.drawer {
    position: fixed;
    top: 72px;
    right: 0;
    width: 280px;
    height: calc(100vh - 72px);
    background: #FFF;
    border-left: 1px solid #E4ECF5;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
}

.drawer.open {
    opacity: 1;
    visibility: visible;
}

.fixed_button {
    display: none;
}

/* ========================================================
   TOP
=========================================================*/
/* Home
-----------------------------------*/
.home-main {
    padding-top: var(--margin-xxl);
}

.btn-green {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 100vmax;
    font-size: clamp(16px, 1.1vw, 16px);
    font-weight: 500;
    gap: 8px;
    transition: opacity 0.2s ease;
    text-decoration: none;
    letter-spacing: 0.04em;
    color: #FFFFFF;
    min-width: 200px;
}

.btn-green--primary {
    background: var(--main-color);
    color: #FFFFFF;
}

.btn-green--thin {
    padding: 10px 32px;
}

.btn-green--primary[href^="tel:"] {
    font-family: "Poppins", sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: clamp(18px, 1.5vw, 20px);
    font-weight: 400;
}

.btn-green--primary[href^="tel:"]::before {
    content: "";
    width: 24px;
    height: 24px;
    background: url('../images/ico_tel.svg') center / contain no-repeat;
    flex-shrink: 0;
}

.btn-green--outline {
    border: 1px solid var(--main-color);
    color: var(--main-color);
    background: #FFFFFF;
}

.btn-green:visited,
.btn-green:hover,
.btn-green:active {
    color: #FFFFFF;
}

.btn-green:hover {
    opacity: 0.85;
}

.home-section_title {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.home-section_title.is-centered {
    align-items: center;
    text-align: center;
}

.home-section_title.is-centered .home-section_copy {
    max-width: 760px;
    margin: 0 auto;
}

.home-section_kicker {
    font-size: clamp(16px, 1.1vw, 16px);
    letter-spacing: 0.12em;
    color: #91C661;
    text-transform: uppercase;
}

.home-section_heading {
    font-size: clamp(24px, calc(34 * 100vw / 1440), 34px);
    line-height: 1.4;
    font-weight: 500;
}

.home-section_copy {
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.7;
}

/* FV
-----------------------------------*/
.fv {
    position: relative;
    padding: 0;
    overflow: visible;
    z-index: auto;
}

.fv::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    aspect-ratio: 1440 / 118;
    background: url('../images/fv_separate.svg') center bottom / 100% 100% no-repeat;
    pointer-events: none;
    z-index: 0;
}

.fv_inner {
    position: relative;
    max-width: none;
    padding: 0 6.94vw;
    z-index: 1;
}


.fv_media {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    height: 360px;
    border-radius: var(--border-radius-large);
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.fv_media_item {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: fvMediaZoom 1.2s ease-out both;
}

@media (min-width: 768px) {
    .fv_media {
        height: auto;
    }

    .fv_media_item {
        width: auto;
        height: 100%;
        object-fit: cover;
        object-position: top center;
    }
}

@media (max-width: 960px) {
    .fv_media {
        height: auto;
    }
}

.fv_titlebox {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9);
    padding: 40px 50px;
    border-radius: 24px;
    text-align: center;
    min-width: 360px;
    overflow: visible;
    z-index: 2;
    animation: fvTitleFade 0.9s ease-out both;
}

.fv_titlebox::before {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(145, 198, 97, 0.3);
    border-radius: calc(24px - 12px);
    pointer-events: none;
}

.fv_title_deco {
    position: absolute;
    height: auto;
    pointer-events: none;
}

.fv_title_deco--leaf01 {
    top: 5.2%;
    left: -3.9%;
    width: 8.9%;
}

.fv_title_deco--leaf02 {
    top: 28.3%;
    left: 92.6%;
    width: 10.9%;
}

.fv_title_deco--circle {
    top: -18.3%;
    left: 80.4%;
    width: 4.3%;
}

.fv_title {
    font-size: clamp(26px, calc(41 * 100vw / 1440), 41px);
    line-height: 1.3;
    letter-spacing: 0.08em;
}

@keyframes fvMediaZoom {
    from {
        transform: scale(1.03);
    }
    to {
        transform: scale(1);
    }
}

@keyframes fvTitleFade {
    from {
        opacity: 0;
        transform: translate(-50%, calc(-50% + 8px));
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .fv_media_item,
    .fv_titlebox {
        animation: none;
    }
}

@media (max-width: 575.98px) {
    .fv_title {
        font-size: clamp(24px, calc(24 * 100vw / 375), 26px);
        line-height: 1.6;
    }
}

.fv_deco {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 33.06vw;
    aspect-ratio: 717 / 839;
    transform: translateY(20%);
    height: auto;
    z-index: 2;
}

/* News
-----------------------------------*/
.news {
    position: relative;
    padding: var(--margin-m) 0;
    overflow: visible;
    z-index: auto;
}

.news::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--bg-color);
    z-index: 0;
}

.news_inner {
    position: relative;
    z-index: 3;
}

.news_inner {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    align-items: start;
}

.news_intro {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    align-items: flex-start;
    padding-top: 16px;
}

.news_list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.news_item {
    display: grid;
    grid-template-columns: 88px 104px 1fr;
    gap: 24px;
    align-items: center;
    padding: 16px 0;
    position: relative;
    color: var(--text-color);
    text-decoration: none;
}

.news_item::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: radial-gradient(circle closest-side, var(--line-color) 90%, #0000) 0 / 8px 100% repeat-x;
}

.news_item.is-empty::after {
    content: none;
}

.news_date,
.news_tag {
    font-size: clamp(16px, 1.1vw, 16px);
}

.news_tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 16px;
    border-radius: 100vmax;
    background: var(--bg-color);
    font-weight: 500;
    min-width: 6.5ch;
    white-space: nowrap;
}

.home-main .news_tag {
    background: #FFFFFF;
}

.news_date {
    color: #7A7A7A;
}

.news_item .news_title {
    font-size: clamp(16px, 1.2vw, 18px);
    font-weight: 500;
    transition: color 0.3s ease;
}

.news_item:hover .news_title {
    color: var(--main-color);
    text-decoration: underline;
}

.news_btn-sp {
    margin: 24px auto 0;
    display: flex;
}

.news_deco {
    position: absolute;
    left: 0;
    top: 0;
    transform: translateY(-50%);
    width: 19.93vw;
    aspect-ratio: 489 / 827;
    height: auto;
    pointer-events: none;
    z-index: 5;
}

/* Home Search
-----------------------------------*/
.home-search {
    padding: var(--margin-m) 0 var(--margin-l);
    background: var(--bg-color);
}

.home-search_box {
    background: #FFFFFF;
    border-radius: var(--border-radius-large);
    padding: 40px 40px 48px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: relative;
}

.home-search_intro {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: none;
}

.home-search_heading {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.home-search_heading-main {
    display: flex;
    align-items: center;
    gap: 16px;
}

.home-search_heading .home-section_heading {
    margin: 0;
}

.home-search_heading .home-section_copy {
    margin: 0;
    max-width: 520px;
    flex: 1 1 520px;
}

.home-search_leaf {
    width: 28px;
    height: auto;
    margin-bottom: 4px;
}

.home-search_grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 40px;
    max-width: 1120px;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    .home-search_grid {
        gap: 32px;
    }
}

@media (max-width: 900px) {
    .home-search_heading {
        gap: 16px;
    }

    .home-search_heading .home-section_copy {
        flex-basis: 100%;
    }
}

@media (max-width: 1029px) {
    .home-search_grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 600px;
    }

    .home-search_heading {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .home-search_heading .home-section_copy {
        flex-basis: auto;
        max-width: none;
    }
}

.home-search_card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: var(--text-color);
}

.home-search_icon {
    width: min(100%, 160px);
    aspect-ratio: 1 / 1;
    border-radius: 100vmax;
    background: #E5F3D9;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.home-search_icon img {
    width: 54%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.home-search_card:hover .home-search_icon {
    background: #DCEED0;
}

.home-search_card:hover .home-search_icon img {
    transform: scale(1.06);
}

.home-search_label {
    font-size: clamp(18px, calc(18 * 100vw / 1440), 20px);
    font-weight: 500;
    transition: color 0.3s ease;
}

.home-search_card:hover .home-search_label {
    color: var(--main-color);
}

.home-search_deco {
    position: absolute;
    right: 0;
    top: 0;
    width: min(11.67vw, 168px);
    transform: translate(30%, -30%);
    aspect-ratio: 168 / 149;
    height: auto;
    pointer-events: none;
}

/* Home Greeting
-----------------------------------*/
.home-greeting {
    padding: var(--margin-s) 0 var(--margin-xxl);
    background: var(--bg-color);
    position: relative;
    overflow: hidden;
}

.home-greeting_inner {
    display: flex;
    gap: clamp(8px, calc(64 * 100vw / 1400), 64px);
    align-items: center;
    position: relative;
    z-index: 1;
}

@media( min-width: 992px) {
    .home-greeting_inner {
       padding-bottom: var(--margin-s);
    }
}

.home-greeting_media img {
    width: clamp(280px, calc(500 * 100vw / 1440), 500px);
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
}

.home-greeting_media {
    flex: 0 0 auto;
}

.home-greeting_body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.home-greeting_text {
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.7;
}

.home-greeting_text + .home-greeting_text {
    margin-top: 8px;
}

.home-greeting_sign {
    font-size: clamp(16px, 1.1vw, 16px);
    font-weight: 500;
    text-align: right;
}

.home-greeting::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: clamp(280px, 22.29vw, 321px);
    aspect-ratio: 504 / 827;
    background: url('../images/message_deco.svg') center / contain no-repeat;
    z-index: 0;
    pointer-events: none;
}

.home-greeting::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    aspect-ratio: 1440 / 118;
    background: url('../images/message_separater.svg') center bottom / 100% 100% no-repeat;
    z-index: 0;
    pointer-events: none;
}

/* Home Activities
-----------------------------------*/
.home-activities {
    padding-top: 0;
    padding-bottom: var(--margin-l);
    background-color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.home-activities::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) translateX(-10%);
    width: min(15.49vw, 223px);
    aspect-ratio: 223 / 388;
    background: url('../images/activity_deco01.svg') center / contain no-repeat;
    z-index: 0;
    pointer-events: none;
}

.home-activities::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    transform: translateX(10%);
    width: min(17.63vw, 253px);
    aspect-ratio: 253 / 412;
    background: url('../images/activity_deco02.svg') center / contain no-repeat;
    z-index: 0;
    pointer-events: none;
}

@media( max-width: 991.98px) {
    .home-activities {
        padding-top: var(--margin-s);
    }

    .home-activities::before {
        width: min(20vw, 160px);
    }

    .home-activities::after {
        width: min(15vw, 120px);
    }
}

.home-activities_inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.home-activities_inner .home-section_copy {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 575.98px) {
    .home-activities_inner .home-section_copy {
        white-space: nowrap;
    }
}

.home-activities_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 24px;
    max-width: 1018px;
    margin: 0 auto;
}

.home-activity_item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
}

.home-activity_icon {
    width: 100%;
    max-width: 242px;
    position: relative;
}

.home-activity_icon img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
    border-radius: 100vmax;
}

/* 装飾 - 01: 緑・左上 */
.home-activity_item:nth-child(1) .home-activity_icon::before {
    content: "";
    position: absolute;
    left: -50%;
    top: -30%;
    width: 130%;
    aspect-ratio: 1 / 1;
    background: url('../images/activity_item_deco_g.svg') center / contain no-repeat;
    z-index: 0;
    pointer-events: none;
}

/* 装飾 - 02: 黄・右下 */
.home-activity_item:nth-child(2) .home-activity_icon::before {
    content: "";
    position: absolute;
    right: -50%;
    bottom: -30%;
    width: 130%;
    aspect-ratio: 1 / 1;
    background: url('../images/activity_item_deco_y.svg') center / contain no-repeat;
    z-index: 0;
    pointer-events: none;
}

/* 装飾 - 03: 緑・右上 */
.home-activity_item:nth-child(3) .home-activity_icon::before {
    content: "";
    position: absolute;
    right: -50%;
    top: -30%;
    width: 130%;
    aspect-ratio: 1 / 1;
    background: url('../images/activity_item_deco_g.svg') center / contain no-repeat;
    z-index: 0;
    pointer-events: none;
}

/* 装飾 - 04: 黄・右上 */
.home-activity_item:nth-child(4) .home-activity_icon::before {
    content: "";
    position: absolute;
    right: -50%;
    top: -30%;
    width: 130%;
    aspect-ratio: 1 / 1;
    background: url('../images/activity_item_deco_y.svg') center / contain no-repeat;
    z-index: 0;
    pointer-events: none;
}

/* 装飾 - 05: 緑・左下 */
.home-activity_item:nth-child(5) .home-activity_icon::before {
    content: "";
    position: absolute;
    left: -50%;
    bottom: -30%;
    width: 130%;
    aspect-ratio: 1 / 1;
    background: url('../images/activity_item_deco_g.svg') center / contain no-repeat;
    z-index: 0;
    pointer-events: none;
}

/* 装飾 - 06: 黄・右下 */
.home-activity_item:nth-child(6) .home-activity_icon::before {
    content: "";
    position: absolute;
    right: -50%;
    bottom: -30%;
    width: 130%;
    aspect-ratio: 1 / 1;
    background: url('../images/activity_item_deco_y.svg') center / contain no-repeat;
    z-index: 0;
    pointer-events: none;
}

.home-activity_item h3 {
    font-size: clamp(20px, calc(23 * 100vw / 1440), 23px);
    line-height: 1.4;
    color: #7BBE52;
    font-weight: 600;
}

.home-activity_item p {
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.7;
    max-width: 320px;
    text-align: left;
}

.home-activities_icon {
    width: 48px;
    height: auto;
    margin: 0 auto 8px;
}

.home-activities .home-section_kicker {
    color: var(--yellow-color);
    letter-spacing: 0.12em;
}

/* Home Contact
-----------------------------------*/
.home-contact {
    padding: 180px 0 var(--margin-l);
    background: url('../images/contact_bg.jpg') center / cover no-repeat;
    position: relative;
    overflow: visible;
}

.home-contact_inner {
    position: relative;
    z-index: 2;
}

.home-contact_card {
    background: #FFFFFF;
    border-radius: var(--border-radius-large);
    padding: var(--margin-m) var(--margin-l);
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    text-align: center;
    max-width: 920px;
    margin: 0 auto;
    position: relative;
    overflow: visible;
}

.home-contact_header {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

@media (max-width: 767.98px) {
    .home-contact_header {
        gap:0;
    }
}

.home-contact_kicker {
    font-size: clamp(16px, 1.1vw, 16px);
    letter-spacing: 0.12em;
    color: #7BBE52;
    font-family: "Poppins", sans-serif;
}

.home-contact_title {
    font-size: clamp(20px, calc(30 * 100vw / 1440), 30px);
}

.home-contact_copy {
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.7;
    max-width: 720px;
}

.home-contact_actions {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.home-contact_actions .btn-green {
    width: 310px;
}

.home-contact_deco {
    position: absolute;
    width: 144px;
    height: auto;
    z-index: 2;
}

.home-contact_deco--left {
    left: -32px;
    top: -32px;
}

.home-contact_deco--right {
    right: -32px;
    bottom: -32px;
}

.home-contact::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    aspect-ratio: 1440 / 118;
    background: url('../images/contact_separater.svg') center top / 100% 100% no-repeat;
    z-index: 1;
    pointer-events: none;
}

/* News (Archive/Single)
-----------------------------------*/
.news_article_info {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 180px;
}

.news_article_info .news_tag {
    flex-shrink: 0;
}

.news_article_date {
    font-size: 14px;
    color: #7A7A7A;
}

.single_content_info .news_article_date {
    color: #7A7A7A;
}

.single_content_info .news_article_info {
    min-width: 0;
}

.single_content {
    margin-bottom: var(--margin-l);
    background: #FFFFFF;
    border-radius: var(--border-radius-large);
    padding: 40px 40px 48px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: relative;
}

.single_title {
    margin-top: 12px;
    font-size: clamp(22px, calc((30 / 1440) * 100vw), 30px);
    font-weight: 500;
    color: var(--text-color);
    line-height: 1.4;
    padding-bottom: var(--margin-s);
    position: relative;
}

.single_title::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: radial-gradient(circle closest-side, var(--line-color) 90%, #0000) 0 / 8px 100% repeat-x;
}
.news_article_title {
    font-size: 14px;
    color: var(--text-color);
}

.single_actions {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: var(--margin-m);
}

@media (max-width: 991.98px) {
    .news_inner {
        grid-template-columns: 1fr;
        gap:16px;
    }

    .home-search_heading {
        flex-direction: column;
        align-items: flex-start;
    }

    .home-search_heading .home-section_heading {
        margin-right: 0;
    }

    .home-search_grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .home-greeting_inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .home-greeting_media {
        align-self: flex-end;
        margin-bottom: -60px;
    }

    .home-greeting_media img {
        width: clamp(270px, 60vw, 350px);
    }

    .home-activities_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 967.98px) {
    .news_item {
        display: flex;
        flex-wrap: wrap;
        gap: 8px 16px;
    }

    .news_item .news_title {
        flex-basis: 100%;
    }
}

@media (max-width: 767.98px) {
    .home-main {
        padding: 80px 0 0;
    }

    .fv_media {
        display: flex;
        flex-direction: column;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(2, 1fr);
        height: auto;
    }


    .fv_media_item {
        width: 100%;
        height: 32vh;
        height: 32svh;
        height: 32dvh;
        object-fit: cover;
        object-position: top center;
        display: block;
        flex: 0 0 auto;
    }

    .fv_titlebox {
        padding: 16px 24px;
        border-radius: 16px;
        min-width: 0;
        width: 80%;
    }

    .fv_deco {
        width: 50vw;
    }

    .home-activity_icon {
        max-width: 180px;
    }

    .home-greeting_media {
        align-self: flex-end;
        margin-bottom: -60px;
        margin-right: -50px;
        overflow: hidden;
    }

    .home-search_box {
        padding: 32px;
    }

    .single_content {
        padding: 32px;
    }

    .home-activities_grid {
        grid-template-columns: 1fr;
    }

    .home-contact {
        padding: 80px 0 var(--margin-m);
    }

    .home-contact_deco {
        width: 90px;
        right: -12px;
        bottom: -12px;
    }

    .home-contact_deco--left {
        display: none;
    }

    .home-contact_actions {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .home-contact_actions .btn-green {
        width: 100%;
    }

    .home-search_deco {
        width: min(18vw, 120px);
        transform: translate(10%, -30%);
        top: -8px;
    }

    .home-contact_card {
        padding: 32px 24px;
    }

}

@media (max-width: 575.98px) {
    .home-search_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

/* ========================================================
   Header
=========================================================*/
.site-header {
    border-bottom: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    background: #FFFFFF;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: none;
}

.header_inner {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px;
    transition: padding 0.3s ease;
}

.site-header.scrolled .header_inner {
    padding: 16px 24px;
}

@media (max-width: 967.98px) {
    .header_inner {
        padding: 16px 20px;
        justify-content: space-between;
    }
}

@media (max-width: 767.98px) {
    .site-header.scrolled .header_inner {
        padding: 12px 16px;
    }
}

.header_logo {
    width: 260px;
    height: auto;
    transition: width 0.3s ease;
}

.site-header.scrolled .header_logo {
    width: 220px;
}

.header_nav {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 14px;
    font-weight: 500;
}

.header_nav_wrapper {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: auto;
}

.header_brand {
    display: block;
}

@media (max-width: 1060px) {
    .header_logo {
        width: 200px;
    }

    .site-header.scrolled .header_logo {
        width: 180px;
    }

    .header_nav {
        gap: 16px;
    }
}

.header_nav a {
    color: var(--text-color);
    font-weight: 500;
    font-size: clamp(16px, 1.1vw, 16px);
    transition: color 0.3s ease;
}

.header_nav a:hover {
    color: var(--main-color);
}

.header_cta {
    background: var(--main-color);
    color: #FFFFFF;
    font-size: clamp(16px, 1.1vw, 16px);
    font-weight: 500;
    padding: 13px 32px;
    border-radius: 100vmax;
    transition: opacity 0.3s ease;
}

.header_cta:visited,
.header_cta:hover,
.header_cta:active {
    color: #FFFFFF;
}

.header_cta:hover {
    opacity: 0.8;
}

.menu_btn {
    flex-direction: column;
    gap: 8px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
}

.menu_btn span {
    display: block;
    width: 30px;
    height: 2px;
    background: var(--text-color);
    transition: all 0.3s ease;
}

.menu_btn.open span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.menu_btn.open span:nth-child(2) {
    opacity: 0;
}

.menu_btn.open span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

.drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 600px;
    height: 100vh;
    background: #FFFFFF;
    border-left: 1px solid #D9E3EE;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 998;
    overflow-y: auto;
}

@media (max-width: 768px) {
    .drawer {
        max-width: 100%;
    }
}

.drawer.open {
    opacity: 1;
    visibility: visible;
}

.drawer_menu {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0 5%;
    margin-top: 80px;
}

.drawer_menu a {
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-color);
    position: relative;
    transition: background 0.2s ease;
}

.drawer_menu a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: radial-gradient(circle closest-side, var(--line-color) 90%, #0000) 0 / 8px 100% repeat-x;
}

.drawer_menu a:hover {
    background: #F3FAFF;
}

.hero {
    background: #E8F5FF;
    padding: 128px 0 104px;
    position: relative;
    overflow: hidden;
}

.hero_container {
    padding: 0 8.33vw;
}

.hero_inner {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 400px;
}

.hero_media {
    position: absolute;
    right: 0;
    width: 86%;
    z-index: 1;
}

.hero_text {
    position: relative;
    z-index: 2;
    max-width: 500px;
}

@media (max-width: 991.98px) {
    .hero_inner {
        flex-direction: column;
        gap: 24px;
        min-height: auto;
    }

    .hero_media {
        position: relative;
        width: 100%;
        right: auto;
    }

    .hero_text {
        max-width: 100%;
    }
}


.hero_title {
    font-size: clamp(32px, calc((46 / 1440) * 100vw), 46px);
    font-weight: 500;
    line-height: 1.4;
}

@media (max-width: 1200px) {
    .hero_title {
        text-align: center;
    }
    .hero_sub {
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    .hero_title {
        font-size: clamp(28px, calc((32 / 1440) * 100vw), 32px);
    }
}

.hero_sub {
    margin-top: 16px;
    font-size: clamp(16px, calc((19 / 1440) * 100vw), 19px);
    color: #6C8197;
    letter-spacing: 0.1em;
}

.page-hero .hero_title,
.page-hero .hero_sub {
    text-align: left;
}

.hero_media picture {
    display: block;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 64px 0 rgba(9, 47, 71, 0.05);
}

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


.page-header {
    background: var(--bg-color);
    padding: var(--margin-l) 0 0;
    position: relative;
    overflow: hidden;
}

.page-header_container {
    padding: 0 8.33vw;
}

.page-header_inner {
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-header_title {
    font-size: clamp(32px, calc((46 / 1440) * 100vw), 46px);
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
    color: var(--text-color);
}

.page-header_sub {
    margin-top: 8px;
    font-size: clamp(16px, calc((19 / 1440) * 100vw), 19px);
    color: var(--main-color);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
}

.page_content {
    background: var(--bg-color);
    padding-top: 96px;
}

.page_container {
    padding: var(--margin-m) 0;
}

.post_body {
    line-height: 2;
    color: var(--text-color);
}

.post_body p {
    line-height: 2;
    margin-bottom: 18px;
}

.post_body h1 {
    margin: 40px 0 16px;
    font-size: clamp(26px, calc((30 / 1440) * 100vw), 30px);
    font-weight: 500;
    color: var(--text-color);
    line-height: 1.4;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line-color);
}

.post_body h2 {
    margin: 40px 0 16px;
    font-size: clamp(18px, calc((24 / 1440) * 100vw), 24px);
    font-weight: 500;
    position: relative;
    color: var(--text-color);
    padding-left: 18px;
}

.single_content_info + .post_body > h2:first-child {
    margin-top: 0;
}

.post_body h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.15em;
    width: 4px;
    height: 1.4em;
    border-radius: 999px;
    background: var(--main-color);
}


.post_body h3 {
    margin: 32px 0 12px;
    font-size: clamp(18px, calc((20 / 1440) * 100vw), 20px);
    font-weight: 500;
    color: var(--main-color);
}

.post_body ul,
.post_body ol {
    margin: 16px 0 24px;
    padding-left: 1.4em;
}

.post_body li {
    margin-top: 8px;
}

.post_body a {
    color: var(--main-color);
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.post_body a:hover {
    color: #62AC5F;
}

.post_body img {
    display: block;
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 24px auto;
}

.post_body table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--line-color);
    margin: 24px 0;
}

.post_body th,
.post_body td {
    border: 1px solid var(--line-color);
    padding: 12px 16px;
    text-align: left;
    vertical-align: top;
}

.post_body th {
    background: #EAF5E2;
    font-weight: 500;
}

@media (max-width: 767.98px) {
    .post_body table.scrollable {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

.category_navigation {
    margin-bottom: 24px;
}

.category_nav_buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.category_nav_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 16px;
    border-radius: 100vmax;
    border: 1px solid var(--line-color);
    color: var(--text-color);
    font-size: 14px;
    background: #FFFFFF;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.category_nav_btn:hover {
    background: #F7F7F7;
}

.category_nav_btn.active {
    background: var(--main-color);
    border-color: var(--main-color);
    color: #FFFFFF;
}

.pagination {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
    text-align: center;
}

.pagination .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-color);
    text-decoration: none;
    background-color: #F6F6F6;
    border-radius: 0;
    transition: all 0.3s ease;
}

.pagination a:hover {
    background-color: var(--main-color);
    color: #FFFFFF;
    border-color: var(--main-color);
}

.pagination .current {
    background-color: var(--main-color);
    color: #FFFFFF;
    border-color: var(--main-color);
    font-weight: 500;
}

.pagination .prev,
.pagination .next {
    position: relative;
}

.pagination .arrow-icon {
    display: inline-block;
    width: 9px;
    height: auto;
    vertical-align: middle;
}

.pagination a:hover .arrow-prev {
    content: url('../images/prev_w.svg');
}

.pagination a:hover .arrow-next {
    content: url('../images/next_w.svg');
}

.pagination .dots {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: none;
    background: none;
    color: #999999;
}


@media (max-width: 767.98px) {
    .page_content {
        padding-top: 80px;
    }

    .page-header_title {
        font-size: clamp(28px, calc((32 / 1440) * 100vw), 32px);
    }
    
    .post_body h2 {
        margin: 32px 0 14px;
        padding-left: 18px;
    }

    .post_body h3 {
        margin: 24px 0 10px;
    }

    .category_navigation {
        margin-bottom: 16px;
    }

    .category_nav_buttons {
        gap: 6px;
    }

    .category_nav_btn {
        font-size: 13px;
        padding: 6px 12px;
    }

    .pagination {
        margin-top: 40px;
    }

    .pagination .nav-links {
        gap: 16px;
    }

    .pagination a,
    .pagination span {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }

    .pagination .arrow-icon {
        width: 8px;
    }

    .pagination .dots {
        width: 32px;
        height: 32px;
    }
}

.waves {
    position: relative;
    width: 100%;
    height: 100%;
    margin-bottom: -7px;
}

.parallax>use {
    animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.parallax>use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}

.parallax>use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}

.parallax>use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}

.parallax>use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }

    100% {
        transform: translate3d(85px, 0, 0);
    }
}

/* ========================================================
   Footer
=========================================================*/

.site-footer {
    background: #63A95A;
    color: #FFFFFF;
    padding: 56px 0 32px;
}

.footer_inner {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer_logo {
    width: 200px;
    height: auto;
    margin-bottom: 16px;
}

.footer_address,
.footer_tel {
    margin-top: 8px;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.footer_tel a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    transition: color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease, text-decoration-color 0.2s ease;
}

.footer_tel a:hover,
.footer_tel a:focus-visible {
    color: #FFFFFF;
    border-color: #88BCE5;
    opacity: 1;
    text-decoration: underline;
    text-decoration-color: #88BCE5;
}

.footer_nav_wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    flex: 1;
}

.footer_nav {
    display: flex;
    gap: 20px;
    font-size: 16px;
    align-items: center;
}

.footer_nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.footer_nav a:hover {
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

.footer_copy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 991.98px) {
    .footer_inner {
        flex-direction: column;
        gap: 24px;
    }

    .footer_nav_wrapper {
        align-items: center;
    }

    .footer_copy {
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    .news_item {
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-areas:
            "date tag"
            "title title";
        gap: 8px 12px;
        padding: 16px 0;
        align-items: start;
    }

    .news_item .news_tag {
        grid-area: tag;
        width: fit-content;
        min-width: auto;
    }

    .news_item .news_date {
        grid-area: date;
        align-self: center;
    }

    .news_item .news_title {
        grid-area: title;
    }

    .site-footer {
        padding: 40px 0 24px;
    }

    .footer_nav {
        flex-wrap: wrap;
        gap: 12px;
    }
}
