/* =========================================================
   ナチュラルリビング — オーガニック・ボタニカル
   深い森グリーン × テラコッタ × 有機的曲線
   ========================================================= */
:root {
    --forest: #2F5233;
    --forest-deep: #1F3924;
    --forest-soft: #3D6B41;
    --sage: #88A876;
    --sage-light: #C5D5B1;
    --sage-pale: #E6EDD9;
    --terracotta: #C47456;
    --terracotta-dark: #A75B3F;
    --cream: #FAF4E8;
    --cream-dark: #F3E9D2;
    --cream-deep: #ECDFC4;
    --charcoal: #2E2A26;
    --text: #4F4A45;
    --text-soft: #7A7268;
    --line: #DDD1B8;
    --white: #FFFFFF;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: "M PLUS Rounded 1c", "Zen Maru Gothic", "Noto Sans JP", sans-serif;
    color: var(--text);
    background: var(--cream);
    line-height: 1.9;
    -webkit-font-smoothing: antialiased;
    font-feature-settings: "palt";
    font-weight: 400;
    overflow-x: hidden;
}

::selection { background: var(--forest); color: var(--cream); }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: .3s; }
ul { list-style: none; }

.mincho { font-family: "Klee One", "Shippori Mincho B1", serif; }

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}
@media (max-width: 768px) { .container { padding: 0 24px; } }

/* ---------- 装飾：ぼかしブロブ ---------- */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}
.blob--sage { background: var(--sage); opacity: .22; }
.blob--terracotta { background: var(--terracotta); opacity: .18; }
.blob--forest { background: var(--forest); opacity: .15; }

/* ---------- 装飾：SVG葉っぱ ---------- */
.leaf {
    position: absolute;
    color: var(--sage);
    opacity: .5;
    pointer-events: none;
}

/* ---------- ヘッダー ---------- */
.hd {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 18px 0;
    background: rgba(250, 244, 232, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: .3s;
}
.hd.is-scrolled {
    padding: 14px 0;
    border-bottom-color: var(--sage-light);
    background: rgba(250, 244, 232, 0.98);
}
.hd_inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 40px;
}
.hd_logo {
    display: flex; align-items: center; gap: 12px;
    color: var(--forest);
}
.hd_logo_leaf {
    width: 36px; height: 36px;
    background: var(--sage-pale);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    position: relative;
}
.hd_logo_leaf::before {
    content: "";
    width: 18px; height: 18px;
    background: var(--forest);
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M17 8C8 10 5.9 16.17 3.82 21.34L5.71 22l1-2.3c.53.12 1.08.3 1.29.3C19 20 22 3 22 3c-1 2-8 2.25-13 3.25S2 11.5 2 13.5s1.75 3.75 1.75 3.75C7 8 17 8 17 8z'/></svg>") center/contain no-repeat;
    mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M17 8C8 10 5.9 16.17 3.82 21.34L5.71 22l1-2.3c.53.12 1.08.3 1.29.3C19 20 22 3 22 3c-1 2-8 2.25-13 3.25S2 11.5 2 13.5s1.75 3.75 1.75 3.75C7 8 17 8 17 8z'/></svg>") center/contain no-repeat;
}
.hd_logo_text {
    display: flex; flex-direction: column; gap: 2px;
    line-height: 1;
}
.hd_logo_name {
    font-family: "Klee One", serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--forest);
    letter-spacing: .04em;
}
.hd_logo_sub {
    font-size: 10px;
    color: var(--text-soft);
    letter-spacing: .1em;
}

.hd_nav { display: flex; align-items: center; gap: 40px; }
.hd_nav_list { display: flex; gap: 32px; }
.hd_nav_list a {
    color: var(--text);
    font-size: 13px;
    font-weight: 500;
    position: relative;
    padding: 8px 0;
    letter-spacing: .04em;
}
.hd_nav_list a:hover { color: var(--forest); }
.hd_nav_list a.is-active {
    color: var(--forest);
    font-weight: 700;
}
.hd_nav_list a.is-active::after {
    content: "";
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 16px; height: 2px;
    background: var(--terracotta);
    border-radius: 2px;
}
.hd_cta {
    padding: 11px 24px;
    background: var(--forest);
    color: var(--cream) !important;
    font-size: 13px;
    font-weight: 600;
    border-radius: 100px;
    transition: .3s;
    letter-spacing: .04em;
}
.hd_cta:hover { background: var(--terracotta); }

.hd_burger {
    display: none;
    width: 40px; height: 40px;
    background: var(--forest);
    border: 0;
    cursor: pointer;
    border-radius: 50%;
    flex-direction: column; gap: 4px; justify-content: center; align-items: center;
}
.hd_burger span { width: 16px; height: 1.5px; background: var(--cream); }

@media (max-width: 1000px) {
    .hd_inner { padding: 0 20px; }
    .hd_burger { display: flex; }
    .hd_nav {
        position: fixed; inset: 60px 0 0 0;
        background: var(--cream);
        flex-direction: column; justify-content: flex-start;
        padding: 48px 24px;
        border-top: 1px solid var(--sage-light);
        transform: translateX(100%); transition: .3s;
    }
    .hd_nav.is-open { transform: translateX(0); }
    .hd_nav_list { flex-direction: column; gap: 0; width: 100%; }
    .hd_nav_list li { border-bottom: 1px solid var(--sage-pale); }
    .hd_nav_list a { display: block; padding: 20px 0; font-size: 16px; }
    .hd_nav_list a.is-active::after { display: none; }
    .hd_cta { margin-top: 24px; align-self: flex-start; }
}

/* ---------- ヒーロー ---------- */
.hero {
    position: relative;
    padding: 110px 0 50px;
    overflow: hidden;
    background: var(--cream);
    min-height: 540px;
    display: flex;
    align-items: center;
}
.hero .blob--1 { width: 520px; height: 520px; top: -100px; right: -100px; background: var(--sage); opacity: .28; }
.hero .blob--2 { width: 400px; height: 400px; bottom: -80px; left: -80px; background: var(--terracotta); opacity: .2; }
.hero .blob--3 { width: 300px; height: 300px; top: 50%; left: 40%; background: var(--sage-light); opacity: .35; }

.hero_inner {
    position: relative; z-index: 2;
    max-width: 1200px; margin: 0 auto; padding: 0 40px;
    display: grid; grid-template-columns: 1.3fr 1fr;
    gap: 56px;
    align-items: center;
    width: 100%;
}
.hero_label {
    display: inline-flex; align-items: center; gap: 12px;
    font-family: "Klee One", serif;
    font-size: 13px;
    color: var(--forest);
    font-weight: 600;
    padding: 8px 20px;
    background: var(--white);
    border-radius: 100px;
    box-shadow: 0 8px 24px -8px rgba(47, 82, 51, .15);
    border: 1.5px solid var(--sage-pale);
    margin-bottom: 24px;
}
.hero_label::before {
    content: "🌿";
    font-size: 14px;
}
.hero_title {
    font-family: "Klee One", "Shippori Mincho B1", serif;
    font-size: clamp(26px, 3.5vw, 48px);
    font-weight: 600;
    line-height: 1.45;
    color: var(--charcoal);
    letter-spacing: .01em;
    margin-bottom: 24px;
}
.hero_title em {
    font-style: normal;
    color: var(--forest);
    position: relative;
    display: inline-block;
    padding: 0 8px;
}
.hero_title em::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--sage-light);
    border-radius: 12px 20px 8px 24px;
    z-index: -1;
    transform: rotate(-1deg);
    opacity: .6;
}
.hero_title strong {
    font-weight: 700;
    color: var(--terracotta);
}
.hero_desc {
    font-size: 14px;
    line-height: 1.95;
    color: var(--text);
    margin-bottom: 32px;
    max-width: 480px;
}
.hero_cta { display: flex; gap: 16px; flex-wrap: wrap; }

.hero_visual {
    position: relative;
    aspect-ratio: 1;
    max-width: 460px;
    margin-left: auto;
    width: 100%;
}
.hero_visual_main {
    position: relative;
    inset: auto;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid var(--cream);
    box-shadow: 0 30px 70px -20px rgba(47, 82, 51, .3);
}
.hero_visual_main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero_visual_ring { display: none; }
.hero_visual_badge {
    position: absolute;
    bottom: 10px; right: -10px;
    width: 112px; height: 112px;
    background: var(--terracotta);
    color: var(--cream);
    border-radius: 50%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center;
    font-family: "Klee One", serif;
    font-weight: 600;
    box-shadow: 0 16px 32px -8px rgba(196, 116, 86, .4);
    border: 5px solid var(--cream);
    z-index: 2;
}
.hero_visual_badge strong {
    display: block;
    font-size: 32px;
    line-height: 1;
    margin-bottom: 4px;
}
.hero_visual_badge small {
    font-size: 11px;
    letter-spacing: .05em;
    opacity: .95;
}
.hero_visual::before {
    content: "";
    position: absolute;
    top: -16px; right: -16px;
    width: 80px; height: 80px;
    border-radius: 50%;
    background: var(--sage);
    opacity: .35;
    z-index: -1;
}
.hero_visual::after {
    content: "";
    position: absolute;
    bottom: 40px; right: -24px;
    width: 48px; height: 48px;
    border: 2px solid var(--terracotta);
    border-radius: 50%;
    opacity: .4;
}
.hero_visual_main {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 30px 80px -20px rgba(47, 82, 51, .3);
    border: 8px solid var(--cream);
}
.hero_visual_main img { width: 100%; height: 100%; object-fit: cover; }
.hero_visual_ring {
    position: absolute;
    inset: -20px;
    border: 2px dashed var(--forest);
    border-radius: 50%;
    animation: rotate 60s linear infinite;
    opacity: .3;
}
@keyframes rotate {
    from { transform: rotate(0); }
    to { transform: rotate(360deg); }
}
.hero_visual_badge {
    position: absolute;
    top: -10px; right: -10px;
    width: 140px; height: 140px;
    background: var(--terracotta);
    color: var(--cream);
    border-radius: 50%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center;
    font-family: "Klee One", serif;
    font-weight: 600;
    box-shadow: 0 12px 30px -10px rgba(196, 116, 86, .5);
    transform: rotate(8deg);
}
.hero_visual_badge strong {
    display: block;
    font-size: 36px;
    line-height: 1;
    margin-bottom: 4px;
}
.hero_visual_badge small { font-size: 11px; letter-spacing: .08em; }

@media (max-width: 900px) {
    .hero { padding: 110px 0 56px; }
    .hero_inner { grid-template-columns: 1fr; gap: 40px; padding: 0 24px; }
    .hero_visual { max-width: 320px; margin: 0 auto; order: 2; }
    .hero_title { margin-bottom: 24px; }
    .hero_desc { margin-bottom: 28px; }
    .hero_visual_badge { width: 110px; height: 110px; }
    .hero_visual_badge strong { font-size: 28px; }
}

/* ---------- ボタン ---------- */
.btn {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 16px 32px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    border-radius: 100px;
    border: 0;
    cursor: pointer;
    transition: .3s;
}
.btn::after { content: "→"; transition: .3s; }
.btn:hover::after { transform: translateX(6px); }
.btn--forest {
    background: var(--forest);
    color: var(--cream);
    box-shadow: 0 12px 30px -10px rgba(47, 82, 51, .35);
}
.btn--forest:hover { background: var(--forest-deep); transform: translateY(-3px); box-shadow: 0 16px 40px -10px rgba(47, 82, 51, .45); }
.btn--terracotta {
    background: var(--terracotta);
    color: var(--cream);
    box-shadow: 0 12px 30px -10px rgba(196, 116, 86, .4);
}
.btn--terracotta:hover { background: var(--terracotta-dark); transform: translateY(-3px); }
.btn--cream {
    background: var(--cream);
    color: var(--forest);
    box-shadow: 0 8px 20px -6px rgba(47, 82, 51, .2);
}
.btn--cream:hover { background: var(--white); transform: translateY(-2px); }
.btn--outline {
    background: transparent;
    color: var(--forest);
    border: 2px solid var(--forest);
}
.btn--outline:hover { background: var(--forest); color: var(--cream); }

/* ---------- SVG波ディバイダ ---------- */
.wave {
    display: block;
    width: 100%;
    height: 80px;
}
.wave path {
    fill: var(--cream);
}
.wave--sage path { fill: var(--sage-pale); }
.wave--forest path { fill: var(--forest); }
.wave--cream-dark path { fill: var(--cream-dark); }

/* ---------- セクション ---------- */
.sec {
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}
.sec--sage { background: var(--sage-pale); }
.sec--cream-dark { background: var(--cream-dark); }
.sec--forest { background: var(--forest); color: var(--cream); }
.sec--forest .sec_title { color: var(--cream); }
.sec--forest .sec_desc { color: var(--sage-light); }

.sec_head {
    text-align: center;
    margin-bottom: 56px;
    max-width: 760px;
    margin-left: auto; margin-right: auto;
    position: relative;
    z-index: 2;
}
.sec_tag {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: "Klee One", serif;
    font-size: 13px;
    color: var(--forest);
    font-weight: 600;
    padding: 7px 20px;
    background: var(--white);
    border-radius: 100px;
    margin-bottom: 20px;
    border: 1.5px solid var(--sage-light);
}
.sec_tag::before {
    content: "";
    width: 8px; height: 8px;
    background: var(--terracotta);
    border-radius: 50%;
}
.sec--forest .sec_tag { background: var(--forest-deep); color: var(--sage-light); border-color: var(--forest-soft); }
.sec_title {
    font-family: "Klee One", "Shippori Mincho B1", serif;
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 600;
    line-height: 1.5;
    color: var(--charcoal);
    letter-spacing: .01em;
}
.sec_title em {
    font-style: normal;
    color: var(--forest);
    position: relative;
    display: inline-block;
    padding: 0 6px;
}
.sec_title em::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--sage-light);
    border-radius: 12px 20px 8px 20px;
    z-index: -1;
    transform: rotate(-1deg);
    opacity: .6;
}
.sec--forest .sec_title em { color: var(--terracotta); }
.sec--forest .sec_title em::before { background: var(--forest-soft); opacity: .5; }
.sec_desc {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.9;
    color: var(--text);
}

/* ---------- ストーリー ---------- */
.story {
    display: grid; grid-template-columns: 1fr 1.1fr;
    gap: 100px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.story_visual {
    position: relative;
    aspect-ratio: 1;
}
.story_visual_main {
    position: absolute;
    inset: 0;
    border-radius: 50% 50% 45% 55% / 50% 50% 40% 60%;
    overflow: hidden;
    box-shadow: 0 30px 80px -20px rgba(47, 82, 51, .25);
    border: 6px solid var(--cream);
}
.story_visual_main img { width: 100%; height: 100%; object-fit: cover; }
.story_visual_circle {
    position: absolute;
    bottom: -20px; left: -20px;
    width: 130px; height: 130px;
    background: var(--terracotta);
    color: var(--cream);
    border-radius: 50%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center;
    font-family: "Klee One", serif;
    padding: 16px;
    box-shadow: 0 16px 40px -10px rgba(196, 116, 86, .5);
}
.story_visual_circle strong {
    font-size: 30px; font-weight: 600; line-height: 1;
    margin-bottom: 6px;
}
.story_visual_circle small { font-size: 11px; letter-spacing: .08em; }

.story_body p {
    font-size: 15px;
    line-height: 2.1;
    color: var(--text);
    margin-bottom: 24px;
}
.story_body p strong { color: var(--forest); font-weight: 700; }
.story_sign {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 2px dashed var(--sage-light);
    display: flex; align-items: center; gap: 20px;
}
.story_sign_avatar {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: var(--sage-pale);
    display: flex; align-items: center; justify-content: center;
    font-family: "Klee One", serif;
    color: var(--forest);
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
    border: 3px solid var(--cream);
    box-shadow: 0 8px 20px -6px rgba(47, 82, 51, .15);
}
.story_sign_info strong {
    display: block;
    font-family: "Klee One", serif;
    font-size: 18px;
    color: var(--charcoal);
    font-weight: 700;
}
.story_sign_info small {
    font-size: 12px;
    color: var(--text-soft);
    letter-spacing: .05em;
}
@media (max-width: 900px) {
    .story { grid-template-columns: 1fr; gap: 60px; }
}

/* ---------- サービス ---------- */
.svc {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
    z-index: 2;
}
.svc_item {
    padding: 48px 40px;
    background: var(--cream);
    border-radius: 40px 40px 40px 8px;
    transition: .4s;
    position: relative;
    overflow: hidden;
    display: block;
    border: 1.5px solid var(--sage-pale);
}
.svc_item:nth-child(even) { border-radius: 40px 40px 8px 40px; }
.svc_item:hover {
    transform: translateY(-8px);
    border-color: var(--forest);
    box-shadow: 0 30px 60px -20px rgba(47, 82, 51, .25);
}
.svc_item_icon {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: var(--sage-pale);
    display: flex; align-items: center; justify-content: center;
    font-family: "Klee One", serif;
    font-size: 30px;
    color: var(--forest);
    font-weight: 700;
    margin-bottom: 28px;
    transition: .3s;
}
.svc_item:hover .svc_item_icon { background: var(--forest); color: var(--cream); transform: rotate(-8deg); }
.svc_item:nth-child(6n+2) .svc_item_icon { background: var(--cream-deep); color: var(--terracotta); }
.svc_item:nth-child(6n+2):hover .svc_item_icon { background: var(--terracotta); color: var(--cream); }
.svc_item:nth-child(6n+3) .svc_item_icon { background: var(--cream-dark); color: var(--forest); }

.svc_item h3 {
    font-family: "Klee One", "Shippori Mincho B1", serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 18px;
    letter-spacing: .02em;
}
.svc_item p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.9;
    margin-bottom: 28px;
}
.svc_item_link {
    font-family: "Klee One", serif;
    font-size: 14px;
    color: var(--forest);
    font-weight: 600;
    display: inline-flex; align-items: center; gap: 10px;
}
.svc_item_link::after {
    content: "→";
    transition: .3s;
}
.svc_item:hover .svc_item_link::after { transform: translateX(6px); }

@media (max-width: 900px) { .svc { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .svc { grid-template-columns: 1fr; } }

/* ---------- 数字 ---------- */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}
.stats_item {
    padding: 48px 32px;
    background: var(--cream);
    border-radius: 50% 50% 50% 50% / 28% 28% 72% 72%;
    text-align: center;
    border: 2px solid var(--sage-light);
    transition: .3s;
}
.stats_item:nth-child(2n) { border-radius: 28% 28% 72% 72% / 50% 50% 50% 50%; }
.stats_item:hover { transform: translateY(-6px); border-color: var(--forest); }
.stats_num {
    font-family: "Klee One", serif;
    font-size: 64px;
    font-weight: 700;
    color: var(--forest);
    line-height: 1;
    display: block;
}
.stats_num sup {
    font-size: 22px;
    color: var(--terracotta);
}
.stats_label {
    font-size: 12px;
    color: var(--text-soft);
    margin-top: 14px;
    display: block;
    font-weight: 600;
    letter-spacing: .05em;
}
@media (max-width: 768px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* ---------- 施工事例 ---------- */
.wk {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    position: relative;
    z-index: 2;
}
.wk_item {
    display: block;
    transition: .4s;
    position: relative;
}
.wk_item_img {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 50% 50% 45% 55% / 50% 50% 40% 60%;
    border: 6px solid var(--cream);
    box-shadow: 0 20px 50px -15px rgba(47, 82, 51, .25);
    margin-bottom: 28px;
    transition: .5s;
    position: relative;
}
.wk_item:nth-child(3n+2) .wk_item_img { border-radius: 45% 55% 50% 50% / 40% 60% 50% 50%; }
.wk_item:nth-child(3n+3) .wk_item_img { border-radius: 55% 45% 50% 50% / 60% 40% 50% 50%; }
.wk_item_img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: .8s;
}
.wk_item:hover .wk_item_img { transform: translateY(-6px); }
.wk_item:hover .wk_item_img img { transform: scale(1.06); }

.wk_item_cat {
    display: inline-block;
    font-size: 11px;
    color: var(--forest);
    background: var(--sage-pale);
    padding: 5px 14px;
    border-radius: 100px;
    font-weight: 600;
    margin-bottom: 12px;
}
.wk_item_title {
    font-family: "Klee One", serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.6;
    transition: .3s;
}
.wk_item:hover .wk_item_title { color: var(--forest); }
@media (max-width: 900px) { .wk { grid-template-columns: repeat(2, 1fr); gap: 36px; } }
@media (max-width: 540px) { .wk { grid-template-columns: 1fr; } }

/* ---------- 下層ヒーロー ---------- */
.ph {
    position: relative;
    padding: 130px 0 80px;
    overflow: hidden;
    background: var(--cream);
    text-align: center;
}
.ph .blob--1 { width: 500px; height: 500px; top: -150px; right: -150px; background: var(--sage); opacity: .25; }
.ph .blob--2 { width: 400px; height: 400px; bottom: -100px; left: -100px; background: var(--terracotta); opacity: .18; }
.ph_inner {
    position: relative;
    z-index: 2;
    max-width: 1200px; margin: 0 auto; padding: 0 40px;
}
.ph_tag {
    display: inline-flex;
    align-items: center; gap: 10px;
    font-family: "Klee One", serif;
    font-size: 14px;
    color: var(--forest);
    font-weight: 600;
    padding: 10px 26px;
    background: var(--white);
    border-radius: 100px;
    margin-bottom: 32px;
    border: 1.5px solid var(--sage-light);
}
.ph_tag::before { content: "🌿"; }
.ph_title {
    font-family: "Klee One", "Shippori Mincho B1", serif;
    font-size: clamp(32px, 4.5vw, 60px);
    font-weight: 700;
    line-height: 1.3;
    color: var(--charcoal);
    letter-spacing: .02em;
    margin-bottom: 20px;
}
.ph_title em {
    font-style: normal;
    color: var(--forest);
    position: relative;
    display: inline-block;
    padding: 0 10px;
}
.ph_title em::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--sage-light);
    border-radius: 16px 28px 12px 28px;
    z-index: -1;
    transform: rotate(-1.5deg);
    opacity: .6;
}
.ph_sub {
    font-size: 15px;
    color: var(--text);
    margin-top: 8px;
}
.ph_bread {
    margin-top: 36px;
    font-size: 12px;
    color: var(--text-soft);
}
.ph_bread a { color: var(--forest); font-weight: 600; }
.ph_bread span { margin: 0 10px; color: var(--sage-light); }
@media (max-width: 768px) {
    .ph { padding: 160px 0 100px; }
    .ph_inner { padding: 0 24px; }
}

/* ---------- 信念 ---------- */
.vals {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    position: relative;
    z-index: 2;
}
.vals_card {
    background: var(--cream);
    border-radius: 36px 36px 36px 8px;
    padding: 48px 44px;
    display: flex;
    gap: 28px;
    align-items: flex-start;
    border: 1.5px solid var(--sage-pale);
    transition: .3s;
}
.vals_card:nth-child(even) { border-radius: 36px 36px 8px 36px; }
.vals_card:hover { transform: translateY(-4px); border-color: var(--forest); }
.vals_num {
    flex-shrink: 0;
    width: 64px; height: 64px;
    border-radius: 50%;
    background: var(--sage-pale);
    color: var(--forest);
    font-family: "Klee One", serif;
    font-size: 28px;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}
.vals_card:nth-child(2) .vals_num { background: var(--cream-deep); color: var(--terracotta); }
.vals_card:nth-child(3) .vals_num { background: var(--cream-dark); color: var(--forest); }
.vals_card:nth-child(4) .vals_num { background: var(--sage-pale); color: var(--forest); }
.vals_card h3 {
    font-family: "Klee One", serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 14px;
    letter-spacing: .02em;
}
.vals_card p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.9;
}
@media (max-width: 768px) {
    .vals { grid-template-columns: 1fr; }
    .vals_card { flex-direction: column; padding: 40px 28px; }
}

/* ---------- サービス詳細 ---------- */
.svcd {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.svcd:nth-child(even) { background: var(--sage-pale); }
.svcd .blob--1 { width: 400px; height: 400px; top: -100px; right: -100px; background: var(--sage); opacity: .15; }
.svcd:nth-child(even) .blob--1 { background: var(--terracotta); opacity: .12; }

.svcd_inner {
    position: relative; z-index: 2;
    max-width: 1240px; margin: 0 auto; padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}
.svcd--rev .svcd_inner { grid-template-columns: 1.1fr 1fr; }
.svcd--rev .svcd_img { order: 2; }
.svcd_img {
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 50% 50% 45% 55% / 50% 50% 40% 60%;
    border: 8px solid var(--cream);
    box-shadow: 0 30px 80px -20px rgba(47, 82, 51, .25);
}
.svcd--rev .svcd_img { border-radius: 55% 45% 50% 50% / 60% 40% 50% 50%; }
.svcd_img img { width: 100%; height: 100%; object-fit: cover; }
.svcd_num {
    display: inline-block;
    padding: 8px 22px;
    background: var(--cream);
    color: var(--forest);
    font-family: "Klee One", serif;
    font-size: 14px;
    font-weight: 700;
    border-radius: 100px;
    border: 1.5px solid var(--forest);
    margin-bottom: 24px;
}
.svcd_h {
    font-family: "Klee One", serif;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.4;
    margin-bottom: 20px;
    letter-spacing: .02em;
}
.svcd_body p {
    font-size: 15px;
    color: var(--text);
    line-height: 2.1;
    margin-bottom: 32px;
}
.svcd_list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.svcd_list li {
    padding: 14px 20px;
    background: var(--cream);
    border-radius: 100px;
    font-size: 13px;
    color: var(--text);
    display: flex; align-items: center; gap: 10px;
    border: 1.5px solid var(--sage-pale);
}
.svcd_list li::before {
    content: "🌿";
    font-size: 12px;
}
.svcd:nth-child(even) .svcd_list li { background: var(--cream); }

@media (max-width: 900px) {
    .svcd_inner { grid-template-columns: 1fr; gap: 56px; padding: 0 24px; }
    .svcd--rev .svcd_inner { grid-template-columns: 1fr; }
    .svcd--rev .svcd_img { order: 0; }
    .svcd_list { grid-template-columns: 1fr; }
}

/* ---------- ご依頼の流れ ---------- */
.flow {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative;
    z-index: 2;
}
.flow_step {
    background: var(--cream);
    padding: 40px 24px;
    border-radius: 32px;
    text-align: center;
    border: 1.5px solid var(--sage-pale);
    transition: .3s;
    position: relative;
}
.flow_step:hover { transform: translateY(-6px); border-color: var(--forest); }
.flow_num {
    display: inline-flex;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--sage-pale);
    color: var(--forest);
    font-family: "Klee One", serif;
    font-size: 22px;
    font-weight: 700;
    align-items: center; justify-content: center;
    margin-bottom: 20px;
}
.flow_step:nth-child(2) .flow_num { background: var(--cream-deep); color: var(--terracotta); }
.flow_step:nth-child(3) .flow_num { background: var(--cream-dark); color: var(--forest); }
.flow_step:nth-child(4) .flow_num { background: var(--cream-deep); color: var(--terracotta); }
.flow_step:nth-child(5) .flow_num { background: var(--sage-pale); color: var(--forest); }
.flow_step h3 {
    font-family: "Klee One", serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 10px;
}
.flow_step p { font-size: 12px; color: var(--text-soft); line-height: 1.7; }
@media (max-width: 900px) { .flow { grid-template-columns: repeat(2, 1fr); } }

/* ---------- 会社情報テーブル ---------- */
.tbl {
    max-width: 860px; margin: 0 auto;
    background: var(--cream);
    border-radius: 40px;
    padding: 24px 48px;
    border: 1.5px solid var(--sage-pale);
    position: relative; z-index: 2;
}
.tbl_row {
    display: grid;
    grid-template-columns: 180px 1fr;
    padding: 22px 0;
    border-bottom: 2px dashed var(--sage-light);
    align-items: baseline;
    gap: 24px;
}
.tbl_row:last-child { border-bottom: 0; }
.tbl_row dt {
    font-family: "Klee One", serif;
    font-size: 14px;
    color: var(--forest);
    font-weight: 700;
}
.tbl_row dd { font-size: 15px; color: var(--text); line-height: 1.9; }
.tbl_row dd a { color: var(--terracotta); text-decoration: underline; }
@media (max-width: 768px) {
    .tbl { padding: 20px 32px; }
    .tbl_row { grid-template-columns: 1fr; gap: 6px; padding: 18px 0; }
}

/* ---------- アクセス ---------- */
.acc {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--cream);
    border-radius: 40px;
    overflow: hidden;
    border: 1.5px solid var(--sage-pale);
    position: relative; z-index: 2;
}
.acc_map iframe {
    width: 100%; height: 100%; min-height: 460px;
    border: 0; display: block;
}
.acc_info { padding: 60px 52px; }
.acc_info h3 {
    font-family: "Klee One", serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--forest);
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 2px dashed var(--sage-light);
}
.acc_info_item {
    padding: 20px 0;
    border-bottom: 2px dashed var(--sage-light);
}
.acc_info_item:last-child { border-bottom: 0; }
.acc_info_item small {
    display: block;
    font-family: "Klee One", serif;
    font-size: 12px;
    color: var(--terracotta);
    font-weight: 700;
    margin-bottom: 8px;
}
.acc_info_item p, .acc_info_item a { font-size: 14px; color: var(--text); line-height: 1.8; }
.acc_info_item a { color: var(--forest); }
@media (max-width: 900px) {
    .acc { grid-template-columns: 1fr; }
    .acc_info { padding: 48px 32px; }
}

/* ---------- お知らせ ---------- */
.news {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative; z-index: 2;
}
.news_card {
    background: var(--cream);
    border-radius: 32px 32px 32px 8px;
    overflow: hidden;
    border: 1.5px solid var(--sage-pale);
    transition: .4s;
    display: block;
}
.news_card:nth-child(even) { border-radius: 32px 32px 8px 32px; }
.news_card:hover { transform: translateY(-6px); border-color: var(--forest); box-shadow: 0 24px 60px -20px rgba(47, 82, 51, .2); }
.news_card_img {
    aspect-ratio: 16/10;
    overflow: hidden;
    position: relative;
}
.news_card_img img { width: 100%; height: 100%; object-fit: cover; transition: .6s; }
.news_card:hover .news_card_img img { transform: scale(1.05); }
.news_badge {
    position: absolute;
    top: 16px; left: 16px;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    color: var(--cream);
    background: var(--forest);
}
.news_badge--blog { background: var(--terracotta); }
.news_badge--event { background: var(--sage); color: var(--forest-deep); }
.news_card_body { padding: 28px 32px 32px; }
.news_card_time {
    font-family: "Klee One", serif;
    font-size: 12px;
    color: var(--text-soft);
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
}
.news_card_body h3 {
    font-family: "Klee One", serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.5;
    margin-bottom: 12px;
}
.news_card_body p { font-size: 13px; color: var(--text-soft); line-height: 1.85; }
@media (max-width: 900px) { .news { grid-template-columns: 1fr; } }

/* ---------- フォーム ---------- */
.ct {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    position: relative; z-index: 2;
}
.ct_form {
    background: var(--cream);
    border-radius: 40px;
    padding: 56px 52px;
    border: 1.5px solid var(--sage-pale);
}
.form_row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form_group { margin-bottom: 28px; }
.form_group label {
    display: block;
    font-family: "Klee One", serif;
    font-size: 13px;
    color: var(--forest);
    font-weight: 700;
    margin-bottom: 10px;
}
.form_group .req { color: var(--terracotta); }
.form_group input,
.form_group select,
.form_group textarea {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid var(--sage-pale);
    background: var(--white);
    border-radius: 18px;
    font-family: inherit;
    font-size: 14px;
    color: var(--charcoal);
    transition: .2s;
}
.form_group input:focus,
.form_group select:focus,
.form_group textarea:focus {
    outline: none;
    border-color: var(--forest);
}
.form_check label {
    display: flex; align-items: center; gap: 10px;
    font-size: 13px;
    color: var(--text);
}
.form_check a { color: var(--forest); text-decoration: underline; }
.form_submit { text-align: center; margin-top: 36px; }

.ct_side {
    background: var(--forest);
    color: var(--cream);
    border-radius: 40px;
    padding: 56px 44px;
}
.ct_side h3 {
    font-family: "Klee One", serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 2px dashed var(--sage);
}
.ct_side_item {
    padding: 20px 0;
    border-bottom: 2px dashed var(--forest-soft);
}
.ct_side_item:last-child { border-bottom: 0; }
.ct_side_item small {
    display: block;
    font-family: "Klee One", serif;
    font-size: 12px;
    color: var(--sage-light);
    font-weight: 700;
    margin-bottom: 8px;
}
.ct_side_item p, .ct_side_item a { font-size: 14px; line-height: 1.8; color: var(--cream); }
@media (max-width: 900px) {
    .ct { grid-template-columns: 1fr; }
    .ct_form { padding: 40px 28px; }
    .form_row { grid-template-columns: 1fr; gap: 0; }
    .ct_side { padding: 44px 32px; }
}

/* ---------- よくある質問 ---------- */
.faq { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; position: relative; z-index: 2; }
.faq_item {
    background: var(--cream);
    border-radius: 24px;
    overflow: hidden;
    border: 1.5px solid var(--sage-pale);
    transition: .2s;
}
.faq_item.is-open { border-color: var(--forest); }
.faq_q {
    width: 100%; padding: 26px 32px;
    background: transparent; border: 0; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    font-family: "Klee One", serif;
    font-size: 17px;
    color: var(--charcoal);
    text-align: left;
    font-weight: 700;
    gap: 20px;
}
.faq_q .faq_icon {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--sage-pale);
    position: relative; flex-shrink: 0;
    transition: .3s;
}
.faq_q .faq_icon::before,
.faq_q .faq_icon::after {
    content: ""; position: absolute; top: 50%; left: 50%;
    width: 12px; height: 2px; background: var(--forest);
    transform: translate(-50%, -50%);
    transition: .3s;
    border-radius: 2px;
}
.faq_q .faq_icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq_item.is-open .faq_q .faq_icon { background: var(--forest); }
.faq_item.is-open .faq_q .faq_icon::before,
.faq_item.is-open .faq_q .faq_icon::after { background: var(--cream); }
.faq_item.is-open .faq_q .faq_icon::after { transform: translate(-50%, -50%) rotate(0); }
.faq_a { max-height: 0; overflow: hidden; transition: .4s; }
.faq_item.is-open .faq_a { max-height: 500px; }
.faq_a p { padding: 0 32px 28px; font-size: 14px; color: var(--text); line-height: 1.9; }

/* ---------- 下部CTA ---------- */
.bcta {
    padding: 0 40px 90px;
    position: relative;
}
.bcta_inner {
    max-width: 1240px; margin: 0 auto;
    background: var(--forest);
    border-radius: 48px 48px 48px 12px;
    padding: 72px 60px;
    text-align: center;
    color: var(--cream);
    position: relative;
    overflow: hidden;
}
.bcta_inner::before {
    content: "";
    position: absolute;
    width: 400px; height: 400px;
    background: var(--terracotta);
    opacity: .15;
    border-radius: 50%;
    filter: blur(60px);
    top: -100px; right: -100px;
}
.bcta_inner::after {
    content: "";
    position: absolute;
    width: 350px; height: 350px;
    background: var(--sage);
    opacity: .2;
    border-radius: 50%;
    filter: blur(60px);
    bottom: -100px; left: -100px;
}
.bcta_body { position: relative; z-index: 2; }
.bcta_tag {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: "Klee One", serif;
    font-size: 13px;
    color: var(--sage-light);
    font-weight: 600;
    padding: 8px 22px;
    background: var(--forest-deep);
    border-radius: 100px;
    margin-bottom: 28px;
    border: 1.5px solid var(--forest-soft);
}
.bcta_tag::before { content: "🌿"; }
.bcta h2 {
    font-family: "Klee One", serif;
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 700;
    line-height: 1.5;
    color: var(--cream);
    margin-bottom: 20px;
    letter-spacing: .02em;
}
.bcta h2 em {
    font-style: normal;
    color: var(--terracotta);
    position: relative;
    display: inline-block;
    padding: 0 10px;
}
.bcta h2 em::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--forest-soft);
    border-radius: 12px 20px 8px 20px;
    z-index: -1;
    transform: rotate(-1deg);
    opacity: .6;
}
.bcta p { font-size: 15px; color: var(--sage-light); margin-bottom: 40px; max-width: 560px; margin-left: auto; margin-right: auto; line-height: 1.9; }
.bcta_btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 768px) { .bcta { padding: 0 16px 80px; } .bcta_inner { padding: 64px 28px; } }

/* ---------- フッター ---------- */
.ft {
    background: var(--forest);
    color: var(--cream);
    padding: 100px 0 40px;
    position: relative;
    overflow: hidden;
}
.ft::before {
    content: "";
    position: absolute;
    width: 500px; height: 500px;
    background: var(--sage);
    opacity: .1;
    border-radius: 50%;
    filter: blur(80px);
    top: -200px; right: -150px;
}
.ft_inner { max-width: 1240px; margin: 0 auto; padding: 0 40px; position: relative; z-index: 2; }
.ft_top {
    display: grid;
    grid-template-columns: 1.3fr 2fr;
    gap: 80px;
    padding-bottom: 60px;
    border-bottom: 2px dashed var(--forest-soft);
}
.ft_brand_logo {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 32px;
}
.ft_brand_logo_leaf {
    width: 48px; height: 48px;
    background: var(--cream);
    border-radius: 50% 50% 50% 0;
    display: flex; align-items: center; justify-content: center;
    transform: rotate(-45deg);
    flex-shrink: 0;
    position: relative;
}
.ft_brand_logo_leaf::before {
    content: "";
    width: 2px; height: 22px;
    background: var(--forest);
    position: absolute;
    left: 50%; top: 8px;
    transform: translateX(-50%);
    border-radius: 2px;
}
.ft_brand_logo_text {
    font-family: "Klee One", serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--cream);
    letter-spacing: .02em;
}
.ft_brand p {
    font-size: 13px;
    line-height: 2;
    color: var(--sage-light);
    margin-bottom: 8px;
}
.ft_brand a { color: var(--terracotta); }

.ft_nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.ft_nav_col h4 {
    font-family: "Klee One", serif;
    font-size: 13px;
    color: var(--terracotta);
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px dashed var(--forest-soft);
}
.ft_nav_col a {
    display: block;
    font-size: 13px;
    color: var(--sage-light);
    padding: 6px 0;
}
.ft_nav_col a:hover { color: var(--terracotta); }

.ft_bottom {
    padding-top: 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: var(--sage);
    font-family: "Klee One", serif;
}
.ft_bottom_en { color: var(--terracotta); }
@media (max-width: 900px) {
    .ft_top { grid-template-columns: 1fr; gap: 48px; }
    .ft_nav { grid-template-columns: repeat(2, 1fr); }
    .ft_bottom { flex-direction: column; gap: 12px; text-align: center; }
}
