@charset "UTF-8";

html,
body {
    margin: 0;
    padding: 0;
}

body {
    overflow-x: hidden;
}

body {
    font-family:
    "Noto Sans JP",
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    "Yu Gothic",
    "Meiryo",
    sans-serif;

    line-height:1.8;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}
/* =========================================
ERROR PAGE
========================================= */

.error-page {
    background: #f6f8f7;
}

/* =========================================
ERROR HERO
========================================= */

.error-hero {
    padding: 170px 0 90px;
}

.error-hero__inner {
    margin: 0 auto;
    max-width: 980px;
    text-align: center;
    width: 92%;
}

.error-hero__code {
    color: #2f6458;
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
    margin: 0 0 18px;
}

.error-hero__title {
    color: #2f6458;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.5;
    margin: 0 0 22px;
}

.error-hero__text {
    color: #555555;
    font-size: 1rem;
    line-height: 2;
    margin: 0 auto 38px;
    max-width: 760px;
}

.error-hero__buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
}

.error-hero__btn {
    align-items: center;
    border-radius: 12px;
    display: inline-flex;
    font-size: 0.98rem;
    font-weight: 700;
    height: 54px;
    justify-content: center;
    min-width: 240px;
    padding: 0 24px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.error-hero__btn--primary {
    background: #2f6458;
    color: #ffffff;
}

.error-hero__btn--secondary {
    background: #ffffff;
    border: 1px solid #2f6458;
    color: #2f6458;
}

.error-hero__btn:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.10);
    transform: translateY(-2px);
}

/* =========================================
ERROR LINKS
========================================= */

.error-links {
    background: #ffffff;
    padding: 90px 0;
}

.error-links__inner {
    margin: 0 auto;
    max-width: 1200px;
    width: 92%;
}

.error-links__title {
    color: #2f6458;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 42px;
    text-align: center;
}

.error-links__grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(2, 1fr);
}

.error-links__card {
    background: #f8f9f8;
    border: 1px solid #dfe7e3;
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
    color: inherit;
    display: block;
    padding: 28px 24px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.error-links__card:hover {
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.error-links__card-title {
    color: #2f6458;
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 12px;
}

.error-links__card-text {
    color: #555555;
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0;
}

/* =========================================
ERROR CONTACT CTA
========================================= */

.error-contact-cta {
    background: #eef1ef;
    padding: 90px 0;
}

.error-contact-cta__inner {
    margin: 0 auto;
    max-width: 1000px;
    text-align: center;
    width: 92%;
}

.error-contact-cta__title {
    color: #333333;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.5;
    margin: 0 0 20px;
}

.error-contact-cta__text {
    color: #444444;
    font-size: 1rem;
    line-height: 1.9;
    margin: 0 0 34px;
}

.error-contact-cta__buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.error-contact-cta__btn {
    align-items: center;
    background: #2f6458;
    border-radius: 12px;
    color: #ffffff;
    display: inline-flex;
    font-size: 1rem;
    font-weight: 700;
    height: 60px;
    justify-content: center;
    min-width: 280px;
    padding: 0 24px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.error-contact-cta__btn--tel {
    background: #3b7b69;
}

.error-contact-cta__btn:hover {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

/* =========================================
FADE IN
========================================= */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.is-show {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
TABLET
========================================= */

@media screen and (max-width: 1024px) {
    .error-hero {
        padding: 150px 0 80px;
    }

    .error-hero__code {
        font-size: 4.2rem;
    }

    .error-hero__title {
        font-size: 2.1rem;
    }

    .error-links,
    .error-contact-cta {
        padding: 80px 0;
    }

    .error-links__title,
    .error-contact-cta__title {
        font-size: 1.8rem;
    }
}

/* =========================================
SMARTPHONE
========================================= */

@media screen and (max-width: 768px) {
    .error-hero {
        padding: 130px 0 64px;
    }

    .error-hero__code {
        font-size: 3.5rem;
        margin-bottom: 14px;
    }

    .error-hero__title {
        font-size: 1.7rem;
        margin-bottom: 16px;
    }

    .error-hero__text {
        font-size: 0.92rem;
        line-height: 1.85;
        margin-bottom: 28px;
    }

    .error-hero__buttons {
        flex-direction: column;
        gap: 12px;
    }

    .error-hero__btn {
        min-width: 100%;
        width: 100%;
    }

    .error-links {
        padding: 64px 0;
    }

    .error-links__title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .error-links__grid {
        grid-template-columns: 1fr;
    }

    .error-links__card {
        padding: 22px 18px;
    }

    .error-links__card-title {
        font-size: 1rem;
    }

    .error-links__card-text {
        font-size: 0.9rem;
    }

    .error-contact-cta {
        padding: 64px 0;
    }

    .error-contact-cta__title {
        font-size: 1.5rem;
        margin-bottom: 16px;
    }

    .error-contact-cta__text {
        font-size: 0.92rem;
        margin-bottom: 26px;
    }

    .error-contact-cta__buttons {
        flex-direction: column;
        gap: 12px;
    }

    .error-contact-cta__btn {
        font-size: 0.95rem;
        height: 56px;
        min-width: 100%;
        width: 100%;
    }
}

/* ================================
HEADER
================================ */

.site-header {
    left: 50%;
    position: fixed;
    top: 24px;
    transform: translateX(-50%);
    width: calc(100% - 20px);
    z-index: 9999;
}

.site-header__inner {
    align-items: center;
    background: #f3f3f3;
    border-radius: 999px;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.42), 0 6px 14px rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1600px;
    min-height: 66px;
    padding: 8px 18px;
    position: relative;
    width: 100%;
}

/* ================================
LOGO
================================ */

.site-logo {
    flex-shrink: 0;
    line-height: 1;
    margin: 0;
}

.site-logo a {
    color: #2f6458;
    display: flex;
    flex-direction: column;
    gap: 3px;
    text-decoration: none;
}

.site-logo__ja {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.site-logo__en {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.14em;
}

/* ================================
MENU TOGGLE
================================ */

.menu-toggle {
    appearance: none;
    background: transparent;
    border: 0;
    cursor: pointer;
    display: none;
    height: 38px;
    margin: 0;
    padding: 0;
    position: relative;
    width: 38px;
    z-index: 10001;
}

.menu-toggle span {
    background: #2f6458;
    border-radius: 999px;
    height: 3px;
    left: 6px;
    position: absolute;
    transition: all 0.3s ease;
    width: 24px;
}

.menu-toggle span:nth-child(1) {
    top: 9px;
}

.menu-toggle span:nth-child(2) {
    top: 17px;
}

.menu-toggle span:nth-child(3) {
    top: 25px;
}

.menu-toggle.is-open span:nth-child(1) {
    top: 17px;
    transform: rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
    top: 17px;
    transform: rotate(-45deg);
}

/* ================================
NAV
================================ */

.site-nav {
    align-items: center;
    display: flex;
    flex: 1;
    gap: 12px;
    justify-content: flex-end;
    min-width: 0;
}

.site-nav > ul {
    align-items: center;
    display: flex;
    gap: 16px;
    list-style: none;
    margin: 0;
    min-width: 0;
    padding: 0;
}

.site-nav > ul > li {
    position: relative;
}

.site-nav > ul > li > a {
    color: #2f6458;
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    position: relative;
    text-decoration: none;
    transition: opacity 0.25s ease;
    white-space: nowrap;
}

.site-nav > ul > li > a:hover {
    opacity: 0.72;
}

.site-nav > ul > li > a::after {
    background: #2f6458;
    bottom: -4px;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
    width: 100%;
}

.site-nav > ul > li > a:hover::after {
    transform: scaleX(1);
}

/* ================================
CTA
================================ */

.site-cta {
    align-items: center;
    display: flex;
    flex-shrink: 0;
    gap: 6px;
}

.site-cta__btn {
    align-items: center;
    background: #2f6458;
    border: 1px solid #2f6458;
    border-radius: 10px;
    color: #ffffff;
    display: inline-flex;
    font-size: 13px;
    font-weight: 700;
    height: 32px;
    justify-content: center;
    padding: 0 10px;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.site-cta__btn:hover {
    background: #f3f3f3;
    color: #2f6458;
    opacity: 1;
}

.site-cta__btn--estimate {
    min-width: 82px;
}

.site-cta__btn--tel {
    min-width: 54px;
}

/* ================================
DROPDOWN MENU
================================ */

.has-dropdown {
    position: relative;
}

.dropdown-menu {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.10);
    display: block;
    left: 50%;
    list-style: none;
    margin: 0;
    opacity: 0;
    padding: 6px 0;
    position: absolute;
    top: calc(100% + 12px);
    transform: translateX(-50%) translateY(8px);
    transition: all 0.25s ease;
    visibility: hidden;
    width: 260px;
    writing-mode: horizontal-tb;
}

.dropdown-menu li {
    display: block;
    width: 100%;
}

.dropdown-menu li a {
    color: #2f6458;
    display: block;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
    padding: 10px 16px;
    text-align: left;
    text-decoration: none;
    white-space: nowrap;
    width: 100%;
    word-break: keep-all;
    writing-mode: horizontal-tb;
}

.dropdown-menu li a:hover {
    background: #f3f3f3;
    opacity: 1;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    visibility: visible;
}

.has-dropdown.is-open .dropdown-menu {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    visibility: visible;
}

/* ================================
DESKTOP ADJUST
================================ */

@media screen and (max-width: 1500px) {
    .site-header__inner {
        padding: 8px 16px;
    }

    .site-logo__ja {
        font-size: 19px;
    }

    .site-logo__en {
        font-size: 8px;
    }

    .site-nav {
        gap: 10px;
    }

    .site-nav > ul {
        gap: 14px;
    }

    .site-nav > ul > li > a {
        font-size: 13px;
    }

    .site-cta__btn {
        font-size: 11px;
        height: 30px;
        padding: 0 8px;
    }

    .site-cta__btn--estimate {
        min-width: 74px;
    }

    .site-cta__btn--tel {
        min-width: 48px;
    }
}

@media screen and (max-width: 1300px) {
    .site-header__inner {
        padding: 8px 14px;
    }

    .site-logo__ja {
        font-size: 18px;
    }

    .site-logo__en {
        font-size: 8px;
    }

    .site-nav {
        gap: 8px;
    }

    .site-nav > ul {
        gap: 12px;
    }

    .site-nav > ul > li > a {
        font-size: 12px;
    }

    .site-cta__btn {
        font-size: 10px;
        height: 29px;
        padding: 0 8px;
    }

    .site-cta__btn--estimate {
        min-width: 70px;
    }

    .site-cta__btn--tel {
        min-width: 44px;
    }
}

/* ================================
TABLET / MOBILE MENU
================================ */

@media screen and (max-width: 1100px) {
    .menu-toggle {
        display: block;
    }

    .site-header {
        top: 18px;
        width: calc(100% - 16px);
    }

    .site-header__inner {
        border-radius: 24px;
        min-height: 60px;
        padding: 8px 14px;
    }

    .site-logo__ja {
        font-size: 18px;
    }

    .site-logo__en {
        font-size: 9px;
        letter-spacing: 0.14em;
    }

    .site-nav {
        background: #f3f3f3;
        border-radius: 20px;
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.10);
        display: none;
        flex-direction: column;
        gap: 0;
        left: 0;
        padding: 16px 14px 14px;
        position: absolute;
        top: calc(100% + 10px);
        width: 100%;
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav > ul {
        align-items: flex-start;
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .site-nav > ul > li {
        width: 100%;
    }

    .site-nav > ul > li > a {
        display: block;
        font-size: 14px;
        padding: 13px 6px;
        width: 100%;
    }

    .site-nav > ul > li > a::after {
        display: none;
    }

    .site-cta {
        border-top: 1px solid rgba(47, 100, 88, 0.12);
        margin-top: 10px;
        padding-top: 14px;
        width: 100%;
    }

    .site-cta__btn {
        flex: 1;
    }

    .has-dropdown {
        width: 100%;
    }

    .dropdown-menu {
        align-items: stretch;
        background: rgba(47, 100, 88, 0.05);
        border-radius: 10px;
        box-shadow: none;
        display: none;
        flex-direction: column;
        gap: 0;
        left: auto;
        margin: 6px 0 0;
        opacity: 1 !important;
        padding: 6px;
        position: static;
        transform: none !important;
        visibility: visible !important;
        width: 100%;
    }

    .has-dropdown:hover .dropdown-menu {
        display: none;
    }

    .has-dropdown.is-open .dropdown-menu {
        display: flex;
    }

    .dropdown-menu li {
        display: block;
        list-style: none;
        margin: 0;
        padding: 0;
        width: 100%;
    }

    .dropdown-menu li a {
        background: transparent;
        border-radius: 8px;
        color: #2f6458 !important;
        display: block !important;
        font-size: 13px;
        font-weight: 700;
        line-height: 1.6;
        opacity: 1 !important;
        padding: 10px 12px 10px 18px;
        text-align: left;
        text-decoration: none;
        transform: none !important;
        visibility: visible !important;
        white-space: normal;
        width: 100%;
    }

    .dropdown-menu li a::after {
        display: none !important;
    }

    .dropdown-menu li a:hover {
        background: rgba(47, 100, 88, 0.08);
    }
}

/* ================================
SMARTPHONE
================================ */

@media screen and (max-width: 600px) {
    .site-header {
        top: 14px;
    }

    .site-header__inner {
        padding: 8px 10px;
    }

    .site-logo__ja {
        font-size: 15px;
    }

    .site-logo__en {
        font-size: 8px;
    }

    .site-cta {
        flex-direction: row;
        gap: 12px;
    }

    .site-cta__btn {
        border-radius: 12px;
        font-size: 15px;
        height: 48px;
        width: 100%;
    }

    .site-cta__btn--tel {
        background: #ff7a00;
        border: none;
    }
}

/* ================================
MAIN VISUAL
================================ */

.main-visual {
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}

.main-visual__image {
    height: 100%;
    inset: 0;
    position: absolute;
    width: 100%;
}

.main-visual__image::after {
    background: rgba(255, 255, 255, 0.06);
    content: "";
    inset: 0;
    position: absolute;
}

.main-visual__image img {
    display: block;
    height: 100%;
    min-height: 100vh;
    object-fit: cover;
    width: 100%;
}

.main-visual__content {
    left: 12%;
    position: absolute;
    top: 54%;
    transform: translateY(-50%);
    width: min(92%, 980px);
    z-index: 2;
}

.main-visual__title {
    background: rgba(255, 255, 255, 0.68);
    color: #2f6458;
    display: inline-block;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.45;
    margin: 0 0 34px;
    padding: 16px 22px;
}

.main-visual__title span {
    display: inline-block;
    opacity: 0;
    transform: translateX(-14px);
}

.main-visual__cta {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 310px;
}

.mv-btn {
    align-items: center;
    backdrop-filter: blur(2px);
    background: rgba(255, 255, 255, 0.88);
    border-radius: 12px;
    color: #2f6458;
    display: inline-flex;
    font-size: 1.12rem;
    font-weight: 700;
    height: 62px;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
    width: 100%;
}

.mv-btn:hover {
    opacity: 0.92;
    transform: translateY(-2px);
}

.mv-btn--estimate {
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.mv-btn--tel {
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

/* ================================
LOAD ANIMATION
================================ */

.main-visual__title.is-active span{
    animation:charFadeFlow .4s ease forwards;
}

.js-fade-up {
    animation: fadeUpSoft 0.9s ease 1.1s both;
}

@keyframes charFadeFlow {
    0% {
        opacity: 0;
        transform: translateX(-14px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeUpSoft {
    0% {
        opacity: 0;
        transform: translateY(28px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================================
MAIN VISUAL TABLET
================================ */

@media screen and (max-width: 1024px) {
    .main-visual__content {
        left: 8%;
        width: min(90%, 760px);
    }

    .main-visual__title {
        font-size: 1.85rem;
        margin-bottom: 28px;
        padding: 14px 18px;
    }

    .main-visual__cta {
        gap: 12px;
        max-width: 280px;
    }

    .mv-btn {
        font-size: 1rem;
        height: 56px;
    }
}

/* ================================
MAIN VISUAL SMARTPHONE
================================ */

@media screen and (max-width: 767px) {
    .main-visual {
        min-height: 100svh;
    }

    .main-visual__image img {
        min-height: 100svh;
    }

    .main-visual__content {
        left: 5%;
        top: 56%;
        width: 90%;
    }

    .main-visual__title {
        font-size: 1.25rem;
        line-height: 1.6;
        margin-bottom: 22px;
        padding: 12px 14px;
        white-space: normal;
    }

    .main-visual__cta {
        display: grid;
        gap: 10px;
        grid-template-columns: 1fr 1fr;
        max-width: 100%;
    }

    .mv-btn {
        font-size: 0.9rem;
        height: 52px;
    }
}

/* ================================
MENU OVERLAY
================================ */

.menu-overlay {
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(2px);
    height: 100vh;
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    top: 0;
    transition: opacity 0.3s ease;
    width: 100%;
    z-index: 9000;
}

.menu-overlay.is-active {
    opacity: 1;
    pointer-events: auto;
}

/* ================================
NEWS SECTION
================================ */

.news-section {
    background: #ffffff;
    padding: 90px 0 80px;
}

.news-section__inner {
    margin: 0 auto;
    max-width: 1200px;
    width: 92%;
}

/* ================================
TITLE
================================ */

.news-section__title {
    color: #2f6458;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 40px;
    text-align: center;
}

/* ================================
NEWS LIST
================================ */

.news-list {
    border-bottom: 1px solid #e5e5e5;
}

.news-item {
    align-items: center;
    border-top: 1px solid #e5e5e5;
    color: #333333;
    display: grid;
    grid-template-columns: 140px 150px 1fr 40px;
    min-height: 68px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.news-item:hover {
    background: #f7f7f7;
}

/* ================================
CATEGORY
================================ */

.news-item__category {
    padding-left: 10px;
}

.news-category {
    background: #eef6f4;
    border-radius: 5px;
    color: #2f6458;
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 4px 10px;
}

.news-category--important {
    background: #ffecec;
    color: #d60000;
}

/* ================================
DATE
================================ */

.news-item__date {
    color: #666666;
    font-size: 0.85rem;
}

/* ================================
TITLE
================================ */

.news-item__title {
    font-size: 0.95rem;
    line-height: 1.6;
    padding-right: 15px;
}

/* ================================
ARROW
================================ */

.news-item__arrow {
    color: #2f6458;
    font-size: 1.1rem;
    text-align: center;
    transition: transform 0.2s ease;
}

.news-item:hover .news-item__arrow {
    transform: translateX(4px);
}

/* ================================
CTA BUTTON
================================ */

.news-section__cta {
    display: flex;
    justify-content: flex-end;
    margin-top: 40px;
}

.news-more-btn {
    align-items: center;
    background: #2f6458;
    border-radius: 12px;
    color: #ffffff;
    display: inline-flex;
    gap: 14px;
    height: 52px;
    justify-content: center;
    min-width: 260px;
    padding: 0 20px;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.news-more-btn:hover {
    transform: translateY(-2px);
}

.news-more-btn__text {
    font-size: 0.95rem;
    font-weight: 700;
}

.news-more-btn__icon {
    align-items: center;
    background: #ffffff;
    border-radius: 50%;
    color: #2f6458;
    display: flex;
    font-size: 0.9rem;
    height: 28px;
    justify-content: center;
    width: 28px;
}

/* ================================
TABLET
================================ */

@media screen and (max-width: 1024px) {
    .news-section {
        padding: 70px 0 60px;
    }

    .news-section__title {
        font-size: 1.7rem;
    }

    .news-item {
        grid-template-columns: 120px 130px 1fr 30px;
        min-height: 64px;
    }

    .news-item__title {
        font-size: 0.9rem;
    }
}

/* ================================
SMARTPHONE
================================ */

@media screen and (max-width: 768px) {
    .news-section {
        padding: 60px 0 50px;
    }

    .news-section__title {
        font-size: 1.5rem;
        margin-bottom: 28px;
    }

    .news-item {
        align-items: start;
        gap: 6px;
        grid-template-columns: 1fr 24px;
        grid-template-areas:
            "category arrow"
            "date arrow"
            "title arrow";
        min-height: auto;
        padding: 16px 0;
    }

    .news-item__category {
        grid-area: category;
        padding: 0;
    }

    .news-item__date {
        font-size: 0.8rem;
        grid-area: date;
    }

    .news-item__title {
        font-size: 0.9rem;
        grid-area: title;
        padding-right: 10px;
    }

    .news-item__arrow {
        font-size: 1rem;
        grid-area: arrow;
    }

    .news-section__cta {
        justify-content: center;
        margin-top: 30px;
    }

    .news-more-btn {
        height: 48px;
        min-width: 100%;
    }

    .news-more-btn__text {
        font-size: 0.9rem;
    }
}

/* ================================
FADE IN
================================ */

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.is-show {
    opacity: 1;
    transform: translateY(0);
}

.news-list.fade-in:nth-of-type(1) {
    transition-delay: 0.1s;
}

.news-list.fade-in:nth-of-type(2) {
    transition-delay: 0.2s;
}

.news-section__cta.fade-in {
    transition-delay: 0.3s;
}

/* ================================
REASON SECTION
================================ */

.reason-section {
    background: #eef1ef;
    padding: 110px 0;
}

.reason-inner {
    margin: 0 auto;
    max-width: 1200px;
    width: 92%;
}

.reason-title {
    color: #2f6458;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 70px;
    text-align: center;
}

/* ================================
GRID
================================ */

.reason-grid {
    display: grid;
    gap: 50px;
    grid-template-columns: repeat(3, 1fr);
}

/* ================================
ITEM
================================ */

.reason-item {
    text-align: center;
}

/* ================================
ICON
================================ */

.reason-icon {
    align-items: center;
    border: 2px solid #2f6458;
    border-radius: 50%;
    display: flex;
    height: 120px;
    justify-content: center;
    margin: 0 auto 28px;
    overflow: hidden;
    width: 120px;
}

.reason-icon img {
    display: block;
    height: 72px;
    object-fit: contain;
    width: 72px;
}

/* ================================
CARD
================================ */

.reason-card {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
    padding: 38px 20px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.reason-card h3 {
    color: #333333;
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 12px;
}

.reason-card p {
    color: #555555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.reason-item:hover .reason-card {
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-6px);
}

/* ================================
TABLET
================================ */

@media screen and (max-width: 1024px) {
    .reason-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ================================
SMARTPHONE
================================ */

@media screen and (max-width: 768px) {
    .reason-section {
        padding: 80px 0;
    }

    .reason-title {
        font-size: 1.6rem;
        margin-bottom: 40px;
    }

    .reason-grid {
        gap: 40px;
        grid-template-columns: 1fr;
    }

    .reason-icon {
        height: 96px;
        margin-bottom: 22px;
        width: 96px;
    }

    .reason-icon img {
        height: 56px;
        width: 56px;
    }

    .reason-card {
        padding: 30px 18px;
    }

    .reason-card h3 {
        font-size: 1rem;
    }

    .reason-card p {
        font-size: 0.9rem;
    }
}
/* =========================================
AREA SECTION
========================================= */

.area-section {
    background: #ffffff;
    padding: 100px 0;
}

.area-section__inner {
    margin: 0 auto;
    max-width: 1200px;
    width: 92%;
}

.area-section__heading {
    margin-bottom: 44px;
    text-align: center;
}

.area-section__title {
    color: #2f6458;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 18px;
}

.area-section__text {
    color: #555555;
    font-size: 1rem;
    line-height: 1.9;
    margin: 0;
}

.area-section__content {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, 1fr);
}

.area-card {
    background: #f8f9f8;
    border: 1px solid #dfe7e3;
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
    padding: 28px 24px;
}

.area-card__title {
    color: #2f6458;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 18px;
}

.area-card__list {
    color: #444444;
    display: grid;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.area-card__list li {
    border-bottom: 1px dashed #d8dfdb;
    font-size: 0.98rem;
    padding-bottom: 10px;
}

.area-card__list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.area-card__note {
    color: #555555;
    font-size: 0.98rem;
    line-height: 1.8;
    margin: 0;
}

/* =========================================
TABLET
========================================= */

@media screen and (max-width: 1024px) {
    .area-section {
        padding: 84px 0;
    }

    .area-section__title {
        font-size: 1.75rem;
    }

    .area-section__content {
        grid-template-columns: 1fr 1fr;
    }
}

/* =========================================
SMARTPHONE
========================================= */

@media screen and (max-width: 767px) {
    .area-section {
        padding: 64px 0;
    }

    .area-section__heading {
        margin-bottom: 32px;
    }

    .area-section__title {
        font-size: 1.5rem;
    }

    .area-section__text {
        font-size: 0.92rem;
    }

    .area-section__content {
        grid-template-columns: 1fr;
    }

    .area-card {
        padding: 22px 18px;
    }

    .area-card__title {
        font-size: 1.05rem;
    }

    .area-card__list li,
    .area-card__note {
        font-size: 0.9rem;
    }
}

/* =========================================
SERVICE DETAIL SECTION
========================================= */

.service-detail-section {
    background: #f6f8f7;
    padding: 100px 0;
}

.service-detail-section__inner {
    align-items: center;
    display: grid;
    gap: 70px;
    grid-template-columns: 1fr 1.1fr;
    margin: 0 auto;
    max-width: 1200px;
    width: 92%;
}

/* =========================================
LEFT CONTENT
========================================= */

.service-detail-section__title {
    color: #2f6458;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.5;
    margin: 0 0 20px;
}

.service-detail-section__text {
    color: #444444;
    font-size: 1rem;
    line-height: 1.9;
    margin: 0 0 34px;
}

/* =========================================
LIST
========================================= */

.service-detail-section__list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    list-style: none;
    margin: 0 0 40px;
    padding: 0;
}

.service-detail-section__list li {
    align-items: flex-start;
    color: #2f6458;
    display: flex;
    font-size: 1.05rem;
    gap: 14px;
    line-height: 1.8;
}

.service-detail-section__list i {
    align-items: center;
    background: #e2ece8;
    border-radius: 50%;
    color: #2f6458;
    display: inline-flex;
    flex-shrink: 0;
    font-size: 0.85rem;
    height: 24px;
    justify-content: center;
    margin-top: 3px;
    width: 24px;
}

/* =========================================
SERVICE BUTTON
========================================= */

.service-detail-section__btn {
    align-items: center;
    background: #2f6458;
    border-radius: 10px;
    color: #ffffff;
    display: inline-flex;
    font-size: 0.95rem;
    font-weight: 600;
    gap: 12px;
    padding: 14px 26px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.service-detail-section__btn span {
    font-size: 0.9rem;
}

.service-detail-section__btn:hover {
    background: #244e45;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

/* =========================================
RIGHT GALLERY
========================================= */

.service-detail-section__gallery {
    background: #ffffff;
    border: 2px solid #2f6458;
    border-radius: 14px;
    padding: 30px;
}

.service-detail-section__gallery-inner {
    display: grid;
    gap: 22px;
    grid-template-columns: 1fr 1fr;
}

/* =========================================
IMAGE
========================================= */

.service-detail-section__image {
    background-position: center;
    background-size: cover;
    border-radius: 8px;
    height: 260px;
    width: 100%;
}

.service-detail-section__image--before {
    background-image: url("../img/service-before.jpg");
}

.service-detail-section__image--after {
    background-image: url("../img/service-after.jpg");
}

/* =========================================
FADE IN
========================================= */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.is-show {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
TABLET
========================================= */

@media screen and (max-width: 1024px) {
    .service-detail-section {
        padding: 84px 0;
    }

    .service-detail-section__inner {
        gap: 42px;
        grid-template-columns: 1fr;
    }

    .service-detail-section__gallery {
        padding: 24px;
    }

    .service-detail-section__title {
        font-size: 1.85rem;
    }

    .service-detail-section__text {
        font-size: 0.98rem;
    }

    .service-detail-section__list li {
        font-size: 1rem;
    }

    .service-detail-section__image {
        height: 220px;
    }
}

/* =========================================
SMARTPHONE
========================================= */

@media screen and (max-width: 600px) {
    .service-detail-section {
        padding: 64px 0;
    }

    .service-detail-section__inner {
        gap: 28px;
    }

    .service-detail-section__title {
        font-size: 1.5rem;
        line-height: 1.5;
        margin-bottom: 14px;
    }

    .service-detail-section__text {
        font-size: 0.92rem;
        line-height: 1.8;
        margin-bottom: 24px;
    }

    .service-detail-section__list {
        gap: 12px;
        margin-bottom: 24px;
    }

    .service-detail-section__list li {
        font-size: 0.92rem;
        gap: 10px;
        line-height: 1.7;
    }

    .service-detail-section__list i {
        font-size: 0.75rem;
        height: 20px;
        margin-top: 2px;
        width: 20px;
    }

    .service-detail-section__btn {
        font-size: 0.9rem;
        justify-content: center;
        padding: 13px 18px;
        width: 100%;
    }

    .service-detail-section__gallery {
        padding: 14px;
    }

    .service-detail-section__gallery-inner {
        gap: 10px;
        grid-template-columns: 1fr 1fr;
    }

    .service-detail-section__image {
        height: 120px;
    }
}

/* =========================================
OTHER SERVICE SECTION
========================================= */

.other-service-section {
    background: #eef1ef;
    padding: 100px 0;
}

.other-service-inner {
    margin: 0 auto;
    max-width: 1200px;
    width: 92%;
}

/* =========================================
TITLE
========================================= */

.other-service-title {
    color: #2f6458;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
}

/* =========================================
GRID
========================================= */

.other-service-grid {
    display: grid;
    gap: 50px;
    grid-template-columns: 1fr 1fr;
}

/* =========================================
CARD
========================================= */

.other-service-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
    padding: 46px 38px;
    text-align: center;
    transition: all 0.25s ease;
}

.other-service-card:hover {
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-6px);
}

.other-service-card-title {
    color: #333333;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.other-service-card-text {
    color: #555555;
    font-size: 0.95rem;
    line-height: 1.9;
    margin-bottom: 30px;
}

/* =========================================
BUTTON
========================================= */

.other-service-btn {
    align-items: center;
    background: #2f6458;
    border-radius: 10px;
    color: #ffffff;
    display: inline-flex;
    font-size: 0.95rem;
    font-weight: 600;
    gap: 10px;
    padding: 14px 28px;
    text-decoration: none;
    transition: 0.25s;
}

.other-service-btn:hover {
    background: #244e45;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.other-service-btn span {
    font-size: 0.9rem;
}

/* =========================================
TABLET
========================================= */

@media screen and (max-width: 1024px) {
    .other-service-section {
        padding: 84px 0;
    }

    .other-service-grid {
        gap: 36px;
    }

    .other-service-card {
        padding: 40px 30px;
    }
}

/* =========================================
SMARTPHONE
========================================= */

@media screen and (max-width: 768px) {
    .other-service-section {
        padding: 72px 0;
    }

    .other-service-title {
        font-size: 1.6rem;
        margin-bottom: 40px;
    }

    .other-service-grid {
        grid-template-columns: 1fr;
    }

    .other-service-card {
        padding: 36px 26px;
    }

    .other-service-card-text {
        font-size: 0.92rem;
    }

    .other-service-btn {
        justify-content: center;
        width: 100%;
    }
}

/* =========================================
BLOG SECTION
========================================= */

.blog-section {
    background: #f6f8f7;
    padding: 100px 0;
}

.blog-section__inner {
    margin: 0 auto;
    max-width: 1200px;
    width: 92%;
}

.blog-section__title {
    color: #2f6458;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 56px;
    text-align: center;
}

/* =========================================
GRID
========================================= */

.blog-grid {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(3, 1fr);
}

/* =========================================
CARD
========================================= */

.blog-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card:hover {
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-6px);
}

.blog-card__link {
    color: inherit;
    display: block;
    height: 100%;
    padding: 34px 30px;
    text-decoration: none;
}

/* ================================
DATE
================================ */

.blog-card__date {
    color: #777777;
    font-size: 0.95rem;
    margin: 0 0 22px;
}

/* ================================
TITLE
================================ */

.blog-card__title {
    color: #2f6458;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.6;
    margin: 0 0 24px;
}

/* ================================
TEXT
================================ */

.blog-card__text {
    color: #666666;
    font-size: 0.95rem;
    line-height: 1.95;
    margin: 0 0 28px;
}

/* ================================
MORE
================================ */

.blog-card__more {
    color: #2f6458;
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0;
}

.blog-card__more span {
    display: inline-block;
    margin-left: 6px;
    transition: transform 0.2s ease;
}

.blog-card:hover .blog-card__more span {
    transform: translateX(4px);
}

/* =========================================
TABLET
========================================= */

@media screen and (max-width: 1024px) {
    .blog-section {
        padding: 84px 0;
    }

    .blog-grid {
        gap: 30px;
        grid-template-columns: 1fr 1fr;
    }

    .blog-card__link {
        padding: 30px 24px;
    }
}

/* =========================================
SMARTPHONE
========================================= */

@media screen and (max-width: 768px) {
    .blog-section {
        padding: 72px 0;
    }

    .blog-section__title {
        font-size: 1.6rem;
        margin-bottom: 40px;
    }

    .blog-grid {
        gap: 24px;
        grid-template-columns: 1fr;
    }

    .blog-card__link {
        padding: 26px 20px;
    }

    .blog-card__date {
        font-size: 0.85rem;
        margin-bottom: 16px;
    }

    .blog-card__title {
        font-size: 1rem;
        margin-bottom: 18px;
    }

    .blog-card__text {
        font-size: 0.9rem;
        line-height: 1.9;
        margin-bottom: 20px;
    }

    .blog-card__more {
        font-size: 0.9rem;
    }
}
/* =========================================
CONTACT CTA SECTION
========================================= */

.contact-cta-section {
    background: #eef1ef;
    padding: 100px 0;
}

.contact-cta-section__inner {
    margin: 0 auto;
    max-width: 1000px;
    text-align: center;
    width: 92%;
}

/* =========================================
TITLE
========================================= */

.contact-cta-section__title {
    color: #333333;
    font-size: 2.1rem;
    font-weight: 700;
    line-height: 1.5;
    margin: 0 0 24px;
}

/* =========================================
TEXT
========================================= */

.contact-cta-section__text {
    color: #444444;
    font-size: 1rem;
    line-height: 1.9;
    margin: 0 0 40px;
}

/* =========================================
BUTTONS
========================================= */

.contact-cta-section__buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.contact-cta-btn {
    align-items: center;
    background: #2f6458;
    border-radius: 14px;
    color: #ffffff;
    display: inline-flex;
    font-size: 1.02rem;
    font-weight: 700;
    height: 68px;
    justify-content: center;
    min-width: 360px;
    padding: 0 28px;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.contact-cta-btn:hover {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    opacity: 0.95;
    transform: translateY(-2px);
}

/* =========================================
TABLET
========================================= */

@media screen and (max-width: 1024px) {
    .contact-cta-section {
        padding: 84px 0;
    }

    .contact-cta-section__title {
        font-size: 1.9rem;
    }

    .contact-cta-section__text {
        font-size: 0.98rem;
    }

    .contact-cta-btn {
        font-size: 0.98rem;
        height: 62px;
        min-width: 300px;
    }
}

/* =========================================
SMARTPHONE
========================================= */

@media screen and (max-width: 768px) {
    .contact-cta-section {
        padding: 68px 0;
    }

    .contact-cta-section__title {
        font-size: 1.55rem;
        margin-bottom: 16px;
    }

    .contact-cta-section__text {
        font-size: 0.92rem;
        line-height: 1.8;
        margin-bottom: 28px;
    }

    .contact-cta-section__buttons {
        flex-direction: column;
        gap: 14px;
    }

    .contact-cta-btn {
        font-size: 0.95rem;
        height: 56px;
        min-width: 100%;
        width: 100%;
    }
}

/* =========================================
FOOTER
========================================= */

.site-footer {
    background: #2f6b52;
    color: #ffffff;
    padding: 42px 0 24px;
}

.site-footer__inner {
    margin: 0 auto;
    max-width: 1100px;
    width: 92%;
}

/* =========================================
GRID
========================================= */

.site-footer__grid {
    display: grid;
    gap: 52px;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 24px;
}

/* =========================================
COMPANY
========================================= */

.site-footer__company p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0 0 10px;
}

.footer-indent {
    display: inline-block;
    margin-left: 6.5em;
}

/* =========================================
CERTIFICATIONS
========================================= */

.site-footer__certifications {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer__certifications li {
    align-items: flex-start;
    display: flex;
    font-size: 0.84rem;
    gap: 10px;
    line-height: 1.6;
}

.site-footer__certifications i {
    color: #62c7a5;
    font-size: 1.15rem;
    margin-top: 2px;
}

/* =========================================
COPYRIGHT
========================================= */

.site-footer__copy {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    display: block;
    font-size: 0.74rem;
    opacity: 0.9;
    padding-top: 14px;
    text-align: center;
}

/* =========================================
TABLET
========================================= */

@media screen and (max-width: 900px) {
    .site-footer {
        padding: 36px 0 22px;
    }

    .site-footer__grid {
        gap: 24px;
        grid-template-columns: 1fr;
    }

    .footer-indent {
        margin-left: 0;
    }

    .site-footer__company p {
        font-size: 0.86rem;
    }

    .site-footer__certifications li {
        font-size: 0.8rem;
    }

    .site-footer__copy {
        font-size: 0.72rem;
    }
}

/* =========================================
SMARTPHONE
========================================= */

@media screen and (max-width: 600px) {
    .site-footer {
        padding: 32px 0 20px;
    }

    .site-footer__company p {
        font-size: 0.82rem;
        line-height: 1.65;
    }

    .site-footer__certifications li {
        font-size: 0.76rem;
        gap: 8px;
        line-height: 1.6;
    }

    .site-footer__certifications i {
        font-size: 0.98rem;
    }

    .site-footer__copy {
        font-size: 0.68rem;
        padding-top: 12px;
    }
}
/* ================================
NEWS TITLE
================================ */

.main-visual__news-title {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.7;
    margin: 16px 0 30px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}

/* ================================
TABLET
================================ */

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

.main-visual__news-title{
    font-size:1.2rem;
}

}

/* ================================
SMARTPHONE
================================ */

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

.main-visual__news-title{
    font-size:1.05rem;
    margin:12px 0 24px;
}

}

/* ================================
SERVICE SECTION
================================ */

.service-section {
    background: #ffffff;
    padding: 120px 0;
}

.service-inner {
    margin: 0 auto;
    max-width: 1200px;
    width: 92%;
}

/* ================================
TITLE
================================ */

.service-title {
    color: #2f6458;
    font-size: 2.1rem;
    font-weight: 700;
    margin: 0 0 80px;
    text-align: center;
}

/* ================================
GRID
================================ */

.service-grid {
    display: grid;
    gap: 70px;
    grid-template-columns: repeat(3, 1fr);
}

/* ================================
CARD
================================ */

.service-card {
    display: flex;
    flex-direction: column;
    text-align: center;
    height: 100%;
}

/* ================================
ICON
================================ */

.service-icon {
    margin: 0 auto 26px;
    width: 140px;
}

.service-icon img {
    display: block;
    height: auto;
    margin: 0 auto;
    width: 140px;
}

/* ================================
NAME
================================ */

.service-name {
    color: #2f6458;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 18px;
}

/* ================================
TEXT
================================ */

.service-text {
    color: #444444;
    font-size: 0.96rem;
    line-height: 1.9;
    margin: 0 0 34px;
}

/* ================================
BUTTON
================================ */

.service-btn {
    align-items: center;
    background: #2f6458;
    border-radius: 10px;
    color: #ffffff;
    display: inline-flex;
    font-size: 0.95rem;
    font-weight: 600;
    gap: 12px;
    justify-content: center;
    padding: 14px 34px;
    text-decoration: none;
    transition: 0.25s;

    margin-top: auto;
}

.service-btn:hover {
    background: #244e45;
    transform: translateY(-2px);
}

.service-btn span {
    font-size: 1rem;
}

/* ================================
TABLET
================================ */

@media screen and (max-width: 1024px) {
    .service-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ================================
SMARTPHONE
================================ */

@media screen and (max-width: 768px) {
    .service-section {
        padding: 90px 0;
    }

    .service-title {
        font-size: 1.7rem;
        margin-bottom: 50px;
    }

    .service-grid {
        gap: 50px;
        grid-template-columns: 1fr;
    }

    .service-icon {
        margin-bottom: 20px;
        width: 110px;
    }

    .service-icon img {
        width: 110px;
    }

    .service-name {
        font-size: 1.25rem;
    }

    .service-text {
        font-size: 0.92rem;
    }
}
/* =========================================
NEWS DETAIL SECTION
========================================= */

.news-detail-section {
    background: #eef1ef;
    padding: 100px 0 110px;
}

.news-detail-section__inner {
    margin: 0 auto;
    max-width: 980px;
    width: 92%;
}

/* =========================================
HEADING
========================================= */

.news-detail-section__heading {
    margin: 0 0 42px;
    text-align: center;
}

.news-detail-section__label {
    color: #2f6458;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 34px;
}

.news-detail-section__meta {
    color: #666666;
    font-size: 1rem;
    line-height: 1.8;
    margin: 0 0 18px;
}

.news-detail-section__date-label {
    margin-right: 4px;
}

.news-detail-section__title {
    color: #555555;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.7;
    margin: 0;
}

/* =========================================
CONTENT
========================================= */

.news-detail-section__content {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
    color: #444444;
    font-size: 1rem;
    line-height: 2.1;
    padding: 42px 40px;
    white-space: normal;
    word-break: break-word;
}

/* 本文内の余白調整 */
.news-detail-section__content > *:first-child {
    margin-top: 0;
}

.news-detail-section__content > *:last-child {
    margin-bottom: 0;
}

/* 段落 */
.news-detail-section__content p {
    margin: 0 0 1.4em;
}

/* 見出し */
.news-detail-section__content h2,
.news-detail-section__content h3,
.news-detail-section__content h4 {
    color: #2f6458;
    font-weight: 700;
    line-height: 1.6;
    margin: 2em 0 0.8em;
}

.news-detail-section__content h2 {
    font-size: 1.4rem;
}

.news-detail-section__content h3 {
    font-size: 1.2rem;
}

.news-detail-section__content h4 {
    font-size: 1.05rem;
}

/* 箇条書き */
.news-detail-section__content ul,
.news-detail-section__content ol {
    margin: 0 0 1.6em 1.4em;
    padding: 0;
}

.news-detail-section__content ul li,
.news-detail-section__content ol li {
    line-height: 1.9;
    margin-bottom: 0.45em;
}

/* リスト入れ子 */
.news-detail-section__content ul ul,
.news-detail-section__content ol ol,
.news-detail-section__content ul ol,
.news-detail-section__content ol ul {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

/* 強調 */
.news-detail-section__content strong {
    color: #2f6458;
    font-weight: 700;
}

.news-detail-section__content em {
    font-style: italic;
}

/* URL */
.news-detail-section__content a {
    color: #2f6458;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    word-break: break-all;
}

.news-detail-section__content a:hover {
    opacity: 0.8;
}

/* 注意書きっぽい表現 */
.news-detail-section__content .notice-text,
.news-detail-section__content .warning-text {
    background: #f8fbfa;
    border-left: 4px solid #2f6458;
    border-radius: 8px;
    margin: 1.6em 0;
    padding: 14px 16px;
}

.news-detail-section__content .warning-text {
    background: #fff8f8;
    border-left-color: #d45b5b;
    color: #7a2f2f;
}

/* 区切り線 */
.news-detail-section__content hr {
    background: #e3e8e5;
    border: none;
    height: 1px;
    margin: 2em 0;
}

/* 引用 */
.news-detail-section__content blockquote {
    background: #f8fbfa;
    border-left: 4px solid #b8ccc4;
    color: #555555;
    margin: 1.6em 0;
    padding: 16px 18px;
}

/* テーブルが入った時の最低限 */
.news-detail-section__content table {
    border-collapse: collapse;
    margin: 1.6em 0;
    width: 100%;
}

.news-detail-section__content th,
.news-detail-section__content td {
    border: 1px solid #dfe7e3;
    padding: 10px 12px;
    text-align: left;
}

.news-detail-section__content th {
    background: #f6f8f7;
    font-weight: 700;
}

/* =========================================
CTA
========================================= */

.news-detail-section__cta {
    display: flex;
    justify-content: center;
    margin-top: 36px;
}

.news-detail-section__btn {
    align-items: center;
    background: #2f6458;
    border-radius: 10px;
    color: #ffffff;
    display: inline-flex;
    font-size: 0.95rem;
    font-weight: 600;
    gap: 10px;
    justify-content: center;
    min-width: 240px;
    padding: 14px 28px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.news-detail-section__btn:hover {
    background: #244e45;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.news-detail-section__btn span {
    font-size: 0.95rem;
}

/* =========================================
TABLET
========================================= */

@media screen and (max-width: 1024px) {
    .news-detail-section {
        padding: 84px 0 90px;
    }

    .news-detail-section__label {
        font-size: 1.9rem;
        margin-bottom: 28px;
    }

    .news-detail-section__title {
        font-size: 1.7rem;
    }

    .news-detail-section__content {
        font-size: 0.98rem;
        line-height: 2;
        padding: 34px 28px;
    }

    .news-detail-section__content h2 {
        font-size: 1.3rem;
    }

    .news-detail-section__content h3 {
        font-size: 1.12rem;
    }
}

/* =========================================
SMARTPHONE
========================================= */

@media screen and (max-width: 768px) {
    .news-detail-section {
        padding: 64px 0 72px;
    }

    .news-detail-section__heading {
        margin-bottom: 30px;
    }

    .news-detail-section__label {
        font-size: 1.6rem;
        margin-bottom: 22px;
    }

    .news-detail-section__meta {
        font-size: 0.9rem;
        margin-bottom: 14px;
    }

    .news-detail-section__title {
        font-size: 1.25rem;
        line-height: 1.8;
    }

    .news-detail-section__content {
        border-radius: 14px;
        font-size: 0.92rem;
        line-height: 1.9;
        padding: 24px 18px;
    }

    .news-detail-section__content h2 {
        font-size: 1.15rem;
    }

    .news-detail-section__content h3 {
        font-size: 1.02rem;
    }

    .news-detail-section__content h4 {
        font-size: 0.96rem;
    }

    .news-detail-section__content ul,
    .news-detail-section__content ol {
        margin-left: 1.2em;
    }

    .news-detail-section__cta {
        margin-top: 26px;
    }

    .news-detail-section__btn {
        font-size: 0.9rem;
        min-width: 100%;
        width: 100%;
    }
}
/* =========================================
NEWS DETAIL NAV
========================================= */

.news-detail-nav {
    align-items: center;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 40px;
}

.news-detail-nav__prev,
.news-detail-nav__center,
.news-detail-nav__next {
    min-height: 24px;
}

.news-detail-nav__prev {
    text-align: left;
}

.news-detail-nav__center {
    text-align: center;
}

.news-detail-nav__next {
    text-align: right;
}

.news-detail-nav a {
    color: #2f6458;
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.7;
    text-decoration: none;
}

.news-detail-nav__center a {
    color: #f2f2f2;
}

.news-detail-nav a:hover {
    text-decoration: underline;
}

/* 空のときでも高さを維持 */
.news-detail-nav__prev:empty::after,
.news-detail-nav__center:empty::after,
.news-detail-nav__next:empty::after {
    content: "";
    display: inline-block;
}

/* スマホ */

@media screen and (max-width: 768px) {
    .news-detail-nav {
        gap: 14px;
        grid-template-columns: 1fr;
        margin-top: 30px;
    }

    .news-detail-nav__prev,
    .news-detail-nav__center,
    .news-detail-nav__next {
        text-align: center;
    }

    .news-detail-nav a {
        font-size: 0.9rem;
    }
}
/* =========================================
NEWS ARCHIVE SECTION
========================================= */

.news-archive-section {
    background: #ffffff;
    padding: 100px 0 110px;
}

.news-archive-section__inner {
    margin: 0 auto;
    max-width: 1200px;
    width: 92%;
}

.news-archive-section__heading {
    margin: 0 0 44px;
    text-align: center;
}

.news-archive-section__title {
    color: #2f6458;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 16px;
}

.news-archive-section__text {
    color: #555555;
    font-size: 1rem;
    line-height: 1.9;
    margin: 0;
}

/* =========================================
LIST
========================================= */

.news-archive-list {
    border-bottom: 1px solid #e5e5e5;
}

.news-archive-item__link {
    align-items: center;
    border-top: 1px solid #e5e5e5;
    color: #333333;
    display: grid;
    grid-template-columns: 140px 140px 1fr 40px;
    min-height: 76px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.news-archive-item__link:hover {
    background: #f7f7f7;
}

.news-archive-item__link--empty {
    cursor: default;
}

.news-archive-item__category {
    padding-left: 10px;
}

.news-archive-item__date {
    color: #666666;
    font-size: 0.9rem;
}

.news-archive-item__title {
    font-size: 1rem;
    line-height: 1.7;
    padding-right: 15px;
}

.news-archive-item__arrow {
    color: #2f6458;
    font-size: 1.1rem;
    text-align: center;
    transition: transform 0.2s ease;
}

.news-archive-item__link:hover .news-archive-item__arrow {
    transform: translateX(4px);
}

/* =========================================
TABLET
========================================= */

@media screen and (max-width: 1024px) {
    .news-archive-section {
        padding: 84px 0 90px;
    }

    .news-archive-section__title {
        font-size: 1.8rem;
    }

    .news-archive-item__link {
        grid-template-columns: 120px 130px 1fr 30px;
        min-height: 68px;
    }

    .news-archive-item__title {
        font-size: 0.95rem;
    }
}

/* =========================================
SMARTPHONE
========================================= */

@media screen and (max-width: 768px) {
    .news-archive-section {
        padding: 64px 0 72px;
    }

    .news-archive-section__heading {
        margin-bottom: 30px;
    }

    .news-archive-section__title {
        font-size: 1.5rem;
    }

    .news-archive-section__text {
        font-size: 0.92rem;
    }

    .news-archive-item__link {
        align-items: start;
        gap: 6px;
        grid-template-columns: 1fr 24px;
        grid-template-areas:
            "category arrow"
            "date arrow"
            "title arrow";
        min-height: auto;
        padding: 16px 0;
    }

    .news-archive-item__category {
        grid-area: category;
        padding-left: 0;
    }

    .news-archive-item__date {
        font-size: 0.8rem;
        grid-area: date;
    }

    .news-archive-item__title {
        font-size: 0.9rem;
        grid-area: title;
        padding-right: 10px;
    }

    .news-archive-item__arrow {
        font-size: 1rem;
        grid-area: arrow;
    }
}
/* =========================================
NEWS ARCHIVE PAGINATION
========================================= */

.news-archive-pagination {
    align-items: center;
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr auto 1fr;
    margin-top: 36px;
}

.news-archive-pagination__prev {
    text-align: left;
}

.news-archive-pagination__current {
    color: #2f6458;
    font-size: 0.95rem;
    font-weight: 700;
    text-align: center;
}

.news-archive-pagination__next {
    text-align: right;
}

.news-archive-pagination__link {
    color: #2f6458;
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
}

.news-archive-pagination__link:hover {
    text-decoration: underline;
}

@media screen and (max-width: 768px) {
    .news-archive-pagination {
        gap: 14px;
        grid-template-columns: 1fr;
        margin-top: 28px;
    }

    .news-archive-pagination__prev,
    .news-archive-pagination__current,
    .news-archive-pagination__next {
        text-align: center;
    }

    .news-archive-pagination__link,
    .news-archive-pagination__current {
        font-size: 0.9rem;
    }
}
/* =========================================
SERVICE ABOUT SECTION
========================================= */

.cleaning-about-section {
    overflow: hidden;
    position: relative;
}

.cleaning-about-section__bg {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    inset: 0;
    position: absolute;
}

.cleaning-about-section--cleaning .cleaning-about-section__bg {
    background-image: url("../img/service-cleaning-main.jpg");
}

.cleaning-about-section--life .cleaning-about-section__bg {
    background-image: url("../img/service-life-main.jpg");
}

.cleaning-about-section--special .cleaning-about-section__bg {
    background-image: url("../img/service-special-main.jpg");
}

.cleaning-about-section--life .cleaning-about-section__overlay,
.cleaning-about-section--special .cleaning-about-section__overlay {
    display: none;
}

.cleaning-about-section__overlay {
    background: rgba(255, 255, 255, 0.70);
    inset: 0;
    position: absolute;
}

.cleaning-about-section__inner {
    margin: 0 auto;
    max-width: 1200px;
    padding: 100px 0;
    position: relative;
    width: 92%;
    z-index: 2;
}

.cleaning-about-section__content {
    align-items: stretch;
    display: grid;
    gap: 40px;
    grid-template-columns: 1fr 540px;
}

.cleaning-about-section__left {
    color: #2f6458;
    padding-top: 8px;
}

.cleaning-about-section__title {
    color: #2f6458;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.5;
    margin: 0 0 28px;
}

.cleaning-about-section__lead {
    color: #2f6458;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 2;
    margin: 0 0 36px;
}

.cleaning-about-section__support-title {
    color: #2f6458;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.8;
    margin: 0 0 14px;
}

.cleaning-about-section__list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.cleaning-about-section__list li {
    align-items: center;
    color: #2f6458;
    display: flex;
    font-size: 0.98rem;
    font-weight: 600;
    gap: 10px;
    line-height: 1.8;
}

.cleaning-about-section__list i {
    color: #65b43d;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.cleaning-about-section__right {
    display: flex;
    justify-content: flex-end;
}

.cleaning-price-card {
    backdrop-filter: blur(4px);
    background: rgba(255, 255, 255, 0.82);
    border-radius: 22px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    max-width: 540px;
    padding: 44px 38px 40px;
    width: 100%;
}

.cleaning-price-card__label {
    color: #2f6458;
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 18px;
}

.cleaning-price-card__price {
    color: #2f6458;
    line-height: 1.2;
    margin: 0 0 8px;
}

.cleaning-price-card__price-main {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.cleaning-price-card__price-unit {
    font-size: 2rem;
    font-weight: 700;
    margin-left: 4px;
}

.cleaning-price-card__tax {
    color: #2f6458;
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 22px;
}

.cleaning-price-card__note {
    color: #2f6458;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.9;
    margin: 0 0 8px;
}

.cleaning-price-card__highlight {
    background: #f6f2cf;
    color: #2f6458;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.8;
    margin: 20px 0 26px;
    padding: 10px 14px;
}

.cleaning-price-card__btn {
    align-items: center;
    background: #2f6458;
    border-radius: 12px;
    color: #ffffff;
    display: inline-flex;
    font-size: 1.05rem;
    font-weight: 700;
    height: 58px;
    justify-content: center;
    min-width: 320px;
    padding: 0 28px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.cleaning-price-card__btn:hover {
    background: #244e45;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

/* =========================================
TABLET
========================================= */

@media screen and (max-width: 1024px) {
    .cleaning-about-section__inner {
        padding: 84px 0;
    }

    .cleaning-about-section__content {
        grid-template-columns: 1fr;
    }

    .cleaning-about-section__title {
        font-size: 1.9rem;
    }

    .cleaning-about-section__lead {
        font-size: 1rem;
    }

    .cleaning-about-section__right {
        justify-content: flex-start;
    }

    .cleaning-price-card {
        max-width: 100%;
    }

    .cleaning-price-card__price-main {
        font-size: 2.5rem;
    }

    .cleaning-price-card__price-unit {
        font-size: 1.6rem;
    }
}

/* =========================================
SMARTPHONE
========================================= */

@media screen and (max-width: 768px) {
    /* 片付けサービスのみ背景をやや白くして文字を見やすくする */
    .cleaning-about-section--cleaning .cleaning-about-section__overlay {
        background: rgba(255, 255, 255, 0.86);
    }

    /* 生前整理・孤独死後はデフォルトの薄さのまま */
    .cleaning-about-section--life .cleaning-about-section__overlay,
    .cleaning-about-section--special .cleaning-about-section__overlay {
        background: rgba(255, 255, 255, 0.70);
    }

    .cleaning-about-section__inner {
        padding: 56px 0;
        width: 94%;
    }

    .cleaning-about-section__content {
        gap: 26px;
    }

    .cleaning-about-section__title {
        font-size: 1.45rem;
        line-height: 1.6;
        margin-bottom: 18px;
    }

    .cleaning-about-section__lead {
        font-size: 0.95rem;
        line-height: 1.9;
        margin-bottom: 26px;
    }

    .cleaning-about-section__support-title {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }

    .cleaning-about-section__list {
        gap: 8px;
    }

    .cleaning-about-section__list li {
        align-items: flex-start;
        font-size: 0.92rem;
        line-height: 1.8;
    }

    .cleaning-about-section__list i {
        font-size: 0.95rem;
        margin-top: 3px;
    }

    .cleaning-price-card {
        border-radius: 16px;
        padding: 24px 18px 22px;
    }

    .cleaning-price-card__label {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }

    .cleaning-price-card__price-main {
        font-size: 2rem;
    }

    .cleaning-price-card__price-unit {
        font-size: 1.2rem;
    }

    .cleaning-price-card__tax {
        font-size: 0.9rem;
        margin-bottom: 16px;
    }

    .cleaning-price-card__note,
    .cleaning-price-card__highlight {
        font-size: 0.85rem;
        line-height: 1.8;
    }

    .cleaning-price-card__highlight {
        margin: 16px 0 18px;
        padding: 10px 12px;
    }

    .cleaning-price-card__btn {
        font-size: 0.92rem;
        height: 48px;
        min-width: 100%;
        width: 100%;
    }
}

/* =========================================
BLOG ARCHIVE SECTION
========================================= */

.blog-archive-section {
    background: #f6f8f7;
    padding: 100px 0 110px;
}

.blog-archive-section__inner {
    margin: 0 auto;
    max-width: 1200px;
    width: 92%;
}

.blog-archive-box {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.06);
    padding: 42px 38px 38px;
}

.blog-archive-section__title {
    color: #2f6458;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.5;
    margin: 0 0 34px;
    text-align: center;
}

/* =========================================
SEARCH
========================================= */

.blog-archive-search {
    margin: 0 0 26px;
    position: sticky;
    top: 104px;
    z-index: 20;
}

.blog-archive-search__form {
    align-items: center;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid #dbe5e0;
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 12px;
    padding: 14px;
}

.blog-archive-search__input {
    appearance: none;
    background: #ffffff;
    border: 1px solid #d7e1dc;
    border-radius: 12px;
    color: #333333;
    flex: 1;
    font-size: 16px;
    height: 52px;
    outline: none;
    padding: 0 16px;
}

.blog-archive-search__input::placeholder {
    color: #8a9490;
}

.blog-archive-search__input:focus {
    border-color: #2f6458;
}

.blog-archive-search__btn {
    align-items: center;
    background: #2f6458;
    border: none;
    border-radius: 12px;
    color: #ffffff;
    cursor: pointer;
    display: inline-flex;
    font-size: 0.95rem;
    font-weight: 700;
    height: 52px;
    justify-content: center;
    min-width: 112px;
    padding: 0 20px;
    transition: all 0.25s ease;
}

.blog-archive-search__btn:hover {
    background: #244e45;
    transform: translateY(-1px);
}

/* =========================================
GRID
========================================= */

.blog-archive-grid {
    display: grid;
    gap: 28px;
    grid-template-columns: repeat(3, 1fr);
}

/* =========================================
CARD
========================================= */

.blog-archive-card {
    height: 100%;
}

.blog-archive-card__link {
    background: #ffffff;
    border: 1px solid #e5ece8;
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 28px 24px;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-archive-card__link:hover {
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.blog-archive-card__date {
    color: #7b8682;
    font-size: 0.9rem;
    margin: 0 0 18px;
}

.blog-archive-card__title {
    color: #2f6458;
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.7;
    margin: 0 0 18px;
}

.blog-archive-card__text {
    color: #555555;
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.9;
    margin: 0 0 22px;
}

.blog-archive-card__more {
    color: #2f6458;
    font-size: 0.92rem;
    font-weight: 700;
    margin: 0;
}

/* =========================================
PAGINATION
========================================= */

.blog-archive-pagination {
    align-items: center;
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 36px;
}

.blog-archive-pagination__link {
    align-items: center;
    background: #ffffff;
    border: 1px solid #d9e2de;
    border-radius: 10px;
    color: #2f6458;
    display: inline-flex;
    font-size: 0.95rem;
    font-weight: 700;
    height: 42px;
    justify-content: center;
    min-width: 42px;
    padding: 0 12px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.blog-archive-pagination__link:hover {
    background: #2f6458;
    border-color: #2f6458;
    color: #ffffff;
}

.blog-archive-pagination__current {
    align-items: center;
    background: #f2f6f4;
    border-radius: 10px;
    color: #2f6458;
    display: inline-flex;
    font-size: 0.95rem;
    font-weight: 700;
    height: 42px;
    justify-content: center;
    min-width: 94px;
    padding: 0 16px;
}

/* =========================================
TABLET
========================================= */

@media screen and (max-width: 1024px) {
    .blog-archive-section {
        padding: 84px 0 90px;
    }

    .blog-archive-box {
        border-radius: 20px;
        padding: 34px 26px 32px;
    }

    .blog-archive-section__title {
        font-size: 1.75rem;
        margin-bottom: 28px;
    }

    .blog-archive-search {
        top: 88px;
    }

    .blog-archive-grid {
        gap: 22px;
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-archive-card__link {
        padding: 24px 20px;
    }

    .blog-archive-card__title {
        font-size: 1rem;
    }

    .blog-archive-card__text {
        font-size: 0.92rem;
    }
}

/* =========================================
SMARTPHONE
========================================= */

@media screen and (max-width: 768px) {
    .blog-archive-section {
        padding: 64px 0 78px;
    }

    .blog-archive-section__inner {
        width: 94%;
    }

    .blog-archive-search {
        margin-bottom: 20px;
        top: 74px;
    }

    .blog-archive-search__form {
        border-radius: 14px;
        gap: 10px;
        padding: 10px;
    }

    .blog-archive-search__input {
        font-size: 0.92rem;
        height: 46px;
        padding: 0 14px;
    }

    .blog-archive-search__btn {
        font-size: 0.88rem;
        height: 46px;
        min-width: 82px;
        padding: 0 14px;
    }

    .blog-archive-box {
        border-radius: 16px;
        padding: 24px 16px 22px;
    }

    .blog-archive-section__title {
        font-size: 1.4rem;
        margin-bottom: 22px;
    }

    .blog-archive-grid {
        gap: 18px;
        grid-template-columns: 1fr;
    }

    .blog-archive-card__link {
        border-radius: 14px;
        padding: 20px 16px;
    }

    .blog-archive-card__date {
        font-size: 0.82rem;
        margin-bottom: 14px;
    }

    .blog-archive-card__title {
        font-size: 0.96rem;
        line-height: 1.7;
        margin-bottom: 14px;
    }

    .blog-archive-card__text {
        font-size: 0.88rem;
        line-height: 1.8;
        margin-bottom: 18px;
    }

    .blog-archive-card__more {
        font-size: 0.86rem;
    }

    .blog-archive-pagination {
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 26px;
        padding-bottom: 6px;
    }

    .blog-archive-pagination__link {
        font-size: 0.88rem;
        height: 38px;
        min-width: 38px;
        padding: 0 10px;
    }

    .blog-archive-pagination__current {
        font-size: 0.88rem;
        height: 38px;
        min-width: 82px;
        padding: 0 12px;
    }
}
@media screen and (max-width: 768px) {
    .blog-archive-pagination {
        background: rgba(255, 255, 255, 0.96);
        border-top: 1px solid #d9e2de;
        bottom: 0;
        box-shadow: 0 -6px 18px rgba(0, 0, 0, 0.08);
        left: 0;
        margin-top: 0;
        padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
        position: fixed;
        width: 100%;
        z-index: 50;
    }

    .blog-archive-section {
        padding-bottom: 110px;
    }
}
/* =========================================
BLOG DETAIL SECTION
========================================= */

.blog-detail-section {
    background: #f6f8f7;
    padding: 100px 0 120px;
}

.blog-detail-section__inner {
    margin: 0 auto;
    max-width: 1160px;
    width: 92%;
}

.blog-detail-section__meta {
    color: #777777;
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0 0 18px;
}

.blog-detail-section__title {
    color: #2f6458;
    font-size: 2.1rem;
    font-weight: 700;
    line-height: 1.6;
    margin: 0 0 34px;
}

.blog-detail-section__content {
    color: #555555;
    font-size: 1.12rem;
    line-height: 2.05;
    margin: 0 0 42px;
    word-break: break-word;
}

.blog-detail-section__content p {
    margin: 0 0 1.4em;
}

.blog-detail-section__content p:last-child {
    margin-bottom: 0;
}

.blog-detail-section__image {
    margin-top: 10px;
    max-width: 560px;
}

.blog-detail-section__image img {
    border-radius: 8px;
    display: block;
    height: auto;
    max-width: 100%;
    width: 100%;
}

/* =========================================
BLOG DETAIL IMAGES
========================================= */

.blog-detail-section__images {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 24px;
    max-width: 920px;
}

.blog-detail-section__images--single {
    grid-template-columns: 1fr;
    max-width: 620px;
}

.blog-detail-section__images--three,
.blog-detail-section__images--four,
.blog-detail-section__images--many {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.blog-detail-section__image-item {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(47, 100, 88, 0.08);
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
    margin: 0;
    overflow: hidden;
    position: relative;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.blog-detail-section__image-item:hover {
    border-color: rgba(47, 100, 88, 0.18);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
    transform: translateY(-4px);
}

.blog-detail-section__image-item::after {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0));
    content: "";
    inset: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    transition: opacity 0.28s ease;
}

.blog-detail-section__image-item:hover::after {
    opacity: 1;
}

.blog-detail-section__image-item img {
    display: block;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    transition: transform 0.45s ease;
    width: 100%;
}

.blog-detail-section__image-item:hover img {
    transform: scale(1.04);
}

/* 1枚表示のときは少し大きく */
.blog-detail-section__images--single .blog-detail-section__image-item img {
    min-height: 320px;
}

/* =========================================
TABLET
========================================= */

@media screen and (max-width: 1024px) {
    .blog-detail-section__images {
        gap: 20px;
        max-width: 780px;
    }

    .blog-detail-section__image-item {
        border-radius: 16px;
    }

    .blog-detail-section__image-item img {
        min-height: 200px;
    }

    .blog-detail-section__images--single .blog-detail-section__image-item img {
        min-height: 280px;
    }
}

/* =========================================
SMARTPHONE
========================================= */

@media screen and (max-width: 768px) {
    .blog-detail-section__images,
    .blog-detail-section__images--three,
    .blog-detail-section__images--four,
    .blog-detail-section__images--many {
        gap: 14px;
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .blog-detail-section__image-item {
        border-radius: 14px;
        box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
    }

    .blog-detail-section__image-item:hover {
        transform: none;
    }

    .blog-detail-section__image-item img {
        min-height: auto;
    }

    .blog-detail-section__images--single .blog-detail-section__image-item img {
        min-height: auto;
    }
}
/* =====================================
IMAGE MODAL
===================================== */

.blog-image-modal {
    align-items: center;
    backdrop-filter: blur(8px);
    background: rgba(0,0,0,0.75);
    display: none;
    inset: 0;
    justify-content: center;
    position: fixed;
    z-index: 9999;
}

.blog-image-modal.active {
    display: flex;
}

.blog-image-modal img {
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.45);
    max-height: 85vh;
    max-width: 92vw;
}

.blog-image-modal__close {
    background: rgba(255,255,255,0.15);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    font-size: 28px;
    height: 44px;
    position: absolute;
    right: 30px;
    top: 30px;
    width: 44px;
}

.blog-image-modal__close:hover {
    background: rgba(255,255,255,0.35);
}
/* =========================================
COMPANY INFO SECTION
========================================= */

.company-info-section {
    background: #f6f8f7;
    padding: 100px 0 88px;
}

.company-info-section__inner {
    margin: 0 auto;
    max-width: 1180px;
    position: relative;
    width: 92%;
}

.company-info-section__bg {
    border-radius: 8px;
    min-height: 520px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.company-info-section__bg::after {
    background: rgba(255, 255, 255, 0.22);
    content: "";
    inset: 0;
    position: absolute;
}

.company-info-section__bg img {
    display: block;
    height: 520px;
    object-fit: cover;
    width: 100%;
}

.company-info-card {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.70);
    border: 1px solid rgba(255, 255, 255, 0.46);
    border-radius: 14px;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
    left: 58px;
    max-width: 720px;
    padding: 28px 24px 22px;
    position: absolute;
    top: 42px;
    width: calc(100% - 116px);
    z-index: 2;
}

.company-info-card__title {
    border-bottom: 1px solid rgba(47, 100, 88, 0.10);
    color: #2f6458;
    font-size: 1.95rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 18px;
    padding-bottom: 10px;
}

.company-info-table {
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(47, 100, 88, 0.14);
    border-collapse: separate;
    border-radius: 10px;
    border-spacing: 0;
    overflow: hidden;
    width: 100%;
}

.company-info-table th,
.company-info-table td {
    border-bottom: 1px solid rgba(47, 100, 88, 0.10);
    color: #2f6458;
    font-size: 0.98rem;
    line-height: 1.7;
    padding: 12px 14px;
    text-align: left;
    vertical-align: middle;
}

.company-info-table tr:last-child th,
.company-info-table tr:last-child td {
    border-bottom: none;
}

.company-info-table th {
    background: rgba(255, 255, 255, 0.28);
    font-weight: 700;
    white-space: nowrap;
    width: 150px;
}

.company-info-table td {
    font-weight: 600;
}

/* =========================================
COMPANY INFO SECTION
========================================= */

.company-info-section {
    background: #f6f8f7;
    padding: 100px 0 64px;
}

.company-info-section__inner {
    margin: 0 auto;
    max-width: 1180px;
    position: relative;
    width: 92%;
}

.company-info-section__bg {
    border-radius: 6px;
    min-height: 430px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.company-info-section__bg::after {
    background: rgba(255, 255, 255, 0.34);
    content: "";
    inset: 0;
    position: absolute;
}

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

.company-info-card {
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.40);
    border-radius: 10px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
    left: 24px;
    max-width: 560px;
    padding: 18px 18px 16px;
    position: absolute;
    top: 42px;
    width: calc(100% - 48px);
    z-index: 2;
}

.company-info-card__title {
    border-bottom: 1px solid rgba(47, 100, 88, 0.08);
    color: #2f6458;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 14px;
    padding-bottom: 8px;
}

.company-info-table {
    background: rgba(255, 255, 255, 0.50);
    border: 1px solid rgba(47, 100, 88, 0.16);
    border-collapse: separate;
    border-radius: 8px;
    border-spacing: 0;
    overflow: hidden;
    width: 100%;
}

.company-info-table th,
.company-info-table td {
    border-bottom: 1px solid rgba(47, 100, 88, 0.08);
    color: #2f6458;
    font-size: 0.92rem;
    line-height: 1.55;
    padding: 10px 12px;
    text-align: left;
    vertical-align: middle;
}

.company-info-table tr:last-child th,
.company-info-table tr:last-child td {
    border-bottom: none;
}

.company-info-table th {
    background: rgba(255, 255, 255, 0.20);
    font-weight: 700;
    white-space: nowrap;
    width: 120px;
}

.company-info-table td {
    font-weight: 600;
}

/* =========================================
COMPANY LICENSE SECTION
========================================= */

.company-license-section {
    background: #f6f8f7;
    padding: 0 0 110px;
    position: relative;
}

.company-license-section {
    min-height: 360px;
}

.company-license-section__bg {
    inset: 0;
    overflow: hidden;
    position: absolute;
    width: 100%;
}

.company-license-section__bg::after {
    background: rgba(255, 255, 255, 0.36);
    content: "";
    inset: 0;
    position: absolute;
}

.company-license-section__bg img {
    display: block;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    width: 100%;
}

.company-license-section__inner {
    margin: 0 auto;
    max-width: 1180px;
    padding: 38px 0 42px;
    position: relative;
    width: 92%;
    z-index: 2;
}

.company-license-card {
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    max-width: 760px;
    padding: 0;
}

.company-license-card__title {
    color: #2f6458;
    font-size: 1.55rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 24px;
}

.company-license-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    list-style: none;
    margin: 0;
    max-width: 760px;
    padding: 0;
}

.company-license-list__item {
    align-items: flex-start;
    color: #2f6458;
    display: flex;
    gap: 12px;
}

.company-license-list__icon {
    color: #58ad87;
    flex-shrink: 0;
    font-size: 1.05rem;
    line-height: 1;
    margin-top: 5px;
}

.company-license-list__text {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.9;
}

.company-license-card__empty {
    color: #2f6458;
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0;
}

/* =========================================
TABLET
========================================= */

@media screen and (max-width: 1024px) {
    .company-info-section {
        padding: 84px 0 56px;
    }

    .company-info-section__bg {
        min-height: 390px;
    }

    .company-info-section__bg img {
        height: 390px;
    }

    .company-info-card {
        left: 20px;
        max-width: 520px;
        padding: 16px 16px 14px;
        top: 28px;
        width: calc(100% - 40px);
    }

    .company-info-card__title {
        font-size: 1.25rem;
    }

    .company-info-table th,
    .company-info-table td {
        font-size: 0.88rem;
        padding: 9px 10px;
    }

    .company-info-table th {
        width: 104px;
    }

    .company-license-section {
        min-height: 330px;
        padding-bottom: 92px;
    }

    .company-license-section__bg img {
        min-height: 330px;
    }

    .company-license-section__inner {
        padding: 30px 0 34px;
    }

    .company-license-card__title {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    .company-license-list {
        gap: 18px;
    }

    .company-license-list__text {
        font-size: 0.9rem;
    }
}

/* =========================================
SMARTPHONE
========================================= */

@media screen and (max-width: 768px) {
    .company-info-section {
        padding: 64px 0 48px;
    }

    .company-info-section__inner {
        width: 94%;
    }

    .company-info-section__bg {
        min-height: 320px;
    }

    .company-info-section__bg img {
        height: 320px;
    }

    .company-info-card {
        left: 12px;
        padding: 14px 12px 12px;
        right: 12px;
        top: 12px;
        width: auto;
    }

    .company-info-card__title {
        font-size: 1.15rem;
        margin-bottom: 12px;
        padding-bottom: 6px;
    }

    .company-info-table th,
    .company-info-table td {
        font-size: 0.8rem;
        line-height: 1.5;
        padding: 8px 8px;
    }

    .company-info-table th {
        width: 78px;
    }

    .company-license-section {
        min-height: 300px;
        padding-bottom: 74px;
    }

    .company-license-section__bg img {
        min-height: 300px;
    }

    .company-license-section__inner {
        padding: 24px 0 26px;
        width: 94%;
    }

    .company-license-card__title {
        font-size: 1.18rem;
        margin-bottom: 16px;
    }

    .company-license-list {
        gap: 14px;
    }

    .company-license-list__icon {
        font-size: 0.95rem;
        margin-top: 4px;
    }

    .company-license-list__text {
        font-size: 0.84rem;
        line-height: 1.75;
    }
}
/* ===============================
breadcrumb
=============================== */

.breadcrumb {
    max-width: 1100px;
    margin: 30px auto 20px;
    padding: 0 20px;
    font-size: 14px;
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    list-style: none;
}

.breadcrumb-item {
    color: #666;
}

.breadcrumb-item a {
    color: #444;
    text-decoration: none;
    transition: opacity .2s;
}

.breadcrumb-item a:hover {
    opacity: .7;
}

.breadcrumb-item::after {
    content: ">";
    margin: 0 6px;
    color: #aaa;
}

.breadcrumb-item:last-child::after {
    content: "";
}

.breadcrumb-item span {
    color: #000;
    font-weight: 500;
}
/* =========================================
CONTACT PAGE
========================================= */

.contact-page-section {
    background: #f6f8f7;
    padding: 100px 0 120px;
}

.contact-page-section__inner {
    margin: 0 auto;
    max-width: 1180px;
    width: 92%;
}

.contact-page-intro {
    margin: 0 0 42px;
    text-align: center;
}

.contact-page-intro__title {
    color: #2f6458;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.5;
    margin: 0 0 18px;
}

.contact-page-intro__text {
    color: #555555;
    font-size: 1rem;
    line-height: 2;
    margin: 0;
}

.contact-page-layout {
    display: grid;
    gap: 32px;
    grid-template-columns: minmax(0, 1fr) 340px;
}

.contact-page-form-wrap {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.06);
    padding: 40px 36px;
}

.contact-page-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.contact-page-form__group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-page-form__label {
    color: #2f6458;
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.6;
}

.contact-page-form__required {
    background: #d85b5b;
    border-radius: 999px;
    color: #ffffff;
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    margin-left: 10px;
    padding: 2px 8px;
    vertical-align: middle;
}

.contact-page-form__input,
.contact-page-form__select,
.contact-page-form__textarea {
    appearance: none;
    background: #ffffff;
    border: 1px solid #d8e2de;
    border-radius: 12px;
    color: #333333;
    font-size: 1rem;
    line-height: 1.6;
    padding: 14px 16px;
    width: 100%;
}

.contact-page-form__input,
.contact-page-form__select {
    height: 54px;
}

.contact-page-form__textarea {
    min-height: 180px;
    resize: vertical;
}

.contact-page-form__input:focus,
.contact-page-form__select:focus,
.contact-page-form__textarea:focus {
    border-color: #2f6458;
    box-shadow: 0 0 0 4px rgba(47, 100, 88, 0.08);
    outline: none;
}

.contact-page-form__group--check {
    margin-top: 4px;
}

.contact-page-form__check-label {
    align-items: flex-start;
    color: #555555;
    display: flex;
    font-size: 0.95rem;
    gap: 10px;
    line-height: 1.8;
}

.contact-page-form__submit {
    margin-top: 6px;
}

.contact-page-form__btn {
    background: #2f6458;
    border: none;
    border-radius: 12px;
    color: #ffffff;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    height: 56px;
    min-width: 240px;
    padding: 0 28px;
    transition: all 0.25s ease;
}

.contact-page-form__btn:hover {
    background: #244e45;
    transform: translateY(-2px);
}

.contact-page-side {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.contact-page-side__card {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.05);
    padding: 28px 24px;
}

.contact-page-side__title {
    color: #2f6458;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.6;
    margin: 0 0 14px;
}

.contact-page-side__text,
.contact-page-side__time {
    color: #555555;
    font-size: 0.95rem;
    line-height: 1.9;
    margin: 0;
}

.contact-page-side__tel {
    color: #2f6458;
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 14px 0 10px;
    text-decoration: none;
}

.contact-page-side__list {
    color: #555555;
    display: flex;
    flex-direction: column;
    gap: 10px;
    line-height: 1.8;
    margin: 0;
    padding-left: 1.2em;
}

/* =========================================
TABLET
========================================= */

@media screen and (max-width: 1024px) {
    .contact-page-section {
        padding: 84px 0 96px;
    }

    .contact-page-layout {
        grid-template-columns: 1fr;
    }

    .contact-page-form-wrap {
        padding: 34px 28px;
    }

    .contact-page-side {
        flex-direction: row;
        gap: 20px;
    }

    .contact-page-side__card {
        flex: 1;
    }
}

/* =========================================
SMARTPHONE
========================================= */

@media screen and (max-width: 768px) {
    .contact-page-section {
        padding: 64px 0 76px;
    }

    .contact-page-section__inner {
        width: 94%;
    }

    .contact-page-intro {
        margin-bottom: 28px;
        text-align: left;
    }

    .contact-page-intro__title {
        font-size: 1.55rem;
        margin-bottom: 12px;
    }

    .contact-page-intro__text {
        font-size: 0.92rem;
        line-height: 1.9;
    }

    .contact-page-form-wrap {
        border-radius: 14px;
        padding: 24px 18px;
    }

    .contact-page-form {
        gap: 18px;
    }

    .contact-page-form__label {
        font-size: 0.92rem;
    }

    .contact-page-form__input,
    .contact-page-form__select,
    .contact-page-form__textarea {
        font-size: 16px;
    }

    .contact-page-form__input,
    .contact-page-form__select {
        height: 50px;
    }

    .contact-page-form__textarea {
        min-height: 160px;
    }

    .contact-page-form__btn {
        font-size: 0.95rem;
        height: 50px;
        width: 100%;
    }

    .contact-page-side {
        flex-direction: column;
        gap: 16px;
    }

    .contact-page-side__card {
        border-radius: 14px;
        padding: 22px 18px;
    }

    .contact-page-side__title {
        font-size: 1.05rem;
        margin-bottom: 10px;
    }

    .contact-page-side__tel {
        font-size: 1.3rem;
    }

    .contact-page-side__text,
    .contact-page-side__time,
    .contact-page-side__list {
        font-size: 0.9rem;
    }
}
/* =========================================
CONTACT CONFIRM
========================================= */
.contact-confirm-wrap{
    margin: 0 auto;
    max-width: 920px;
    width: 100%;
}

.contact-confirm-box{
    background: #ffffff;
    border: 1px solid #e4e4e4;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    padding: 0;
}

.contact-confirm-row{
    border-bottom: 1px solid #ececec;
    display: grid;
    gap: 24px;
    grid-template-columns: 220px 1fr;
    padding: 24px 32px;
}

.contact-confirm-row:last-of-type{
    border-bottom: none;
}

.contact-confirm-row__label{
    color: #1f3b2f;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.8;
}

.contact-confirm-row__value{
    color: #333333;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.9;
    overflow-wrap: break-word;
    word-break: break-word;
}

.contact-confirm-row__value--message{
    white-space: normal;
}

.contact-confirm-actions{
    align-items: center;
    display: flex;
    gap: 20px;
    justify-content: center;
    padding: 36px 32px 40px;
}

.contact-confirm-actions__back-form,
.contact-confirm-actions__submit-form{
    margin: 0;
}

.contact-confirm-actions__back-btn,
.contact-confirm-actions__submit-btn{
    appearance: none;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    display: inline-flex;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    justify-content: center;
    letter-spacing: 0.04em;
    line-height: 1;
    min-width: 220px;
    padding: 18px 28px;
    text-decoration: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.contact-confirm-actions__back-btn{
    background: #f2f2f2;
    color: #333333;
}

.contact-confirm-actions__submit-btn{
    background: #1f5c43;
    color: #ffffff;
}

.contact-confirm-actions__back-btn:hover,
.contact-confirm-actions__submit-btn:hover{
    opacity: 0.9;
    transform: translateY(-2px);
}

.contact-confirm-actions__back-btn:focus-visible,
.contact-confirm-actions__submit-btn:focus-visible{
    outline: 3px solid rgba(31, 92, 67, 0.24);
    outline-offset: 3px;
}

@media screen and (max-width: 900px){
    .contact-confirm-row{
        gap: 10px;
        grid-template-columns: 1fr;
        padding: 22px 24px;
    }

    .contact-confirm-row__label{
        font-size: 0.96rem;
    }

    .contact-confirm-row__value{
        font-size: 0.95rem;
    }

    .contact-confirm-actions{
        flex-direction: column-reverse;
        gap: 14px;
        padding: 28px 20px 32px;
    }

    .contact-confirm-actions__back-form,
    .contact-confirm-actions__submit-form{
        width: 100%;
    }

    .contact-confirm-actions__back-btn,
    .contact-confirm-actions__submit-btn{
        min-width: 0;
        width: 100%;
    }
}

@media screen and (max-width: 600px){
    .contact-confirm-box{
        border-radius: 16px;
    }

    .contact-confirm-row{
        padding: 18px 16px;
    }

    .contact-confirm-row__label{
        font-size: 0.92rem;
    }

    .contact-confirm-row__value{
        font-size: 0.92rem;
        line-height: 1.8;
    }

    .contact-confirm-actions{
        padding: 24px 16px 28px;
    }

    .contact-confirm-actions__back-btn,
    .contact-confirm-actions__submit-btn{
        font-size: 0.94rem;
        padding: 16px 20px;
    }
}
/* =========================================
THANKS PAGE
========================================= */

/* セクション全体 */
.contact-page-section {
    padding: 80px 20px;
    background: #f6f7f8;
}

.contact-page-section__inner {
    max-width: 900px;
    margin: 0 auto;
}

/* タイトル */
.contact-page-intro {
    text-align: center;
    margin-bottom: 40px;
}

.contact-page-intro__title {
    font-size: 28px;
    font-weight: 700;
    color: #1f5c43;
    margin-bottom: 16px;
}

.contact-page-intro__text {
    font-size: 15px;
    line-height: 1.9;
    color: #555;
}

/* ボックス */
.contact-confirm-wrap {
    display: flex;
    justify-content: center;
}

.contact-confirm-box {
    width: 100%;
    max-width: 640px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* 行 */
.contact-confirm-row {
    display: flex;
    border-bottom: 1px solid #e5e7eb;
}

.contact-confirm-row:last-child {
    border-bottom: none;
}

.contact-confirm-row__label {
    width: 180px;
    padding: 14px;
    background: #f8fafc;
    font-size: 14px;
    font-weight: 500;
}

.contact-confirm-row__value {
    flex: 1;
    padding: 14px;
    font-size: 14px;
    line-height: 1.8;
}

/* ボタン */
.contact-confirm-actions {
    margin-top: 30px;
    text-align: center;
}

.contact-confirm-actions__submit-btn {
    display: inline-block;
    background: #1f5c43;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.contact-confirm-actions__submit-btn:hover {
    background: #174833;
}

/* =========================================
成功メッセージ強調（追加）
========================================= */
.contact-confirm-row:first-child .contact-confirm-row__value {
    color: #1f5c43;
    font-weight: 600;
}

/* =========================================
SP対応
========================================= */
@media screen and (max-width: 768px) {

    .contact-confirm-row {
        flex-direction: column;
    }

    .contact-confirm-row__label {
        width: 100%;
    }

    .contact-confirm-row__value {
        padding-top: 10px;
    }

    .contact-page-intro__title {
        font-size: 22px;
    }
}
/* =========================================
PRIVACY POLICY PAGE
========================================= */
.privacy-policy-page {
    padding: 80px 20px;
    background: #f6f7f8;
}

.privacy-policy-page__inner {
    max-width: 960px;
    margin: 0 auto;
}

.privacy-policy-page__head {
    margin-bottom: 40px;
    padding: 32px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.privacy-policy-page__title {
    margin: 0 0 20px;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
    color: #1f5c43;
    text-align: center;
}

.privacy-policy-page__lead {
    margin: 0;
    font-size: 15px;
    line-height: 2;
    color: #444444;
}

.privacy-policy-page__body {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.privacy-policy-section {
    padding: 28px 32px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.privacy-policy-section__title {
    margin: 0 0 18px;
    padding-left: 14px;
    border-left: 5px solid #1f5c43;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.6;
    color: #222222;
}

.privacy-policy-section__text {
    margin: 0 0 16px;
    font-size: 15px;
    line-height: 2;
    color: #444444;
}

.privacy-policy-section__text:last-child {
    margin-bottom: 0;
}

.privacy-policy-section__list {
    margin: 0;
    padding-left: 24px;
}

.privacy-policy-section__list li {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.9;
    color: #444444;
}

.privacy-policy-section__list li:last-child {
    margin-bottom: 0;
}

.privacy-policy-contact {
    margin-top: 20px;
    padding: 20px 24px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
}

.privacy-policy-contact p {
    margin: 0 0 12px;
    font-size: 15px;
    line-height: 1.9;
    color: #333333;
}

.privacy-policy-contact p:last-child {
    margin-bottom: 0;
}

.privacy-policy-contact strong {
    color: #1f5c43;
    font-weight: 700;
}

/* =========================================
LINK
========================================= */
.privacy-policy-page a {
    color: #1f5c43;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.3s ease;
}

.privacy-policy-page a:hover {
    opacity: 0.7;
}

/* =========================================
TABLET
========================================= */
@media screen and (max-width: 1024px) {
    .privacy-policy-page {
        padding: 64px 20px;
    }

    .privacy-policy-page__title {
        font-size: 28px;
    }

    .privacy-policy-section {
        padding: 24px;
    }
}

/* =========================================
SP
========================================= */
@media screen and (max-width: 768px) {
    .privacy-policy-page {
        padding: 48px 16px;
    }

    .privacy-policy-page__head {
        padding: 24px 20px;
        border-radius: 14px;
    }

    .privacy-policy-page__title {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .privacy-policy-page__lead {
        font-size: 14px;
        line-height: 1.9;
    }

    .privacy-policy-section {
        padding: 22px 18px;
        border-radius: 14px;
    }

    .privacy-policy-section__title {
        margin-bottom: 14px;
        padding-left: 10px;
        font-size: 18px;
        line-height: 1.6;
    }

    .privacy-policy-section__text {
        font-size: 14px;
        line-height: 1.9;
    }

    .privacy-policy-section__list {
        padding-left: 20px;
    }

    .privacy-policy-section__list li {
        font-size: 14px;
        line-height: 1.9;
    }

    .privacy-policy-contact {
        padding: 16px;
    }

    .privacy-policy-contact p {
        font-size: 14px;
        line-height: 1.8;
    }
}