﻿/*
 * pages.css - 全ページ固有スタイル集約ファイル
 *
 * 目次 (CTRL+F でジャンプ):
 *   [FRONT]    フロントページ  (元 top.css)
 *   [ABOUT]    About ページ    (元 about.css)
 *   [SERVICE]  Service ページ  (元 service.css)
 *   [CONTACT]  Contact ページ  (元 contact.css)
 *   [CASE]     実績ページ      (元 case.css)
 *   [BLOG]     ブログ・お悩みページ (元 blog-trouble.css)
 *
 * 編集方法: 該当セクションを直接編集してください
 * 共通スタイル (ヘッダー/フッター/ボタン等) は common.css を参照
 */


/* =========================================
   [FRONT] フロントページ (元 top.css)
========================================= */

/* =================
メイン
================= */

.hero {
    position: relative;
    padding: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
}

.hero__img-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    animation: fvFadeIn 1s ease-out forwards;
}

.hero__content {
    opacity: 0;
    animation: fvFadeIn 1s ease-out 0.3s forwards;
}

.hero__content p {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.hero__label {
    display: inline-block;
    margin-bottom: 18px;
    padding: 6px 14px;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    color: var(--haruno-color);
    background: rgba(255, 255, 255, 0.78);
    border-radius: 999px;
}

.hero__content p.hero__label {
    text-shadow: none;
    font-weight: 700;
}

.hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.hero__buttons .btn {
    max-width: none;
}

.hero__buttons .btn--outline {
    display: inline-block;
    padding: 1rem 2rem;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(4px);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.1em;
    transition: 0.3s;
}

.hero__buttons .btn--outline:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--haruno-color);
}

/* =================
共感・方針ブロック
================= */

.empathy {
    padding: 72px 0 56px;
}

.empathy h2,
.philosophy h2 {
    margin: 0 0 28px;
    font-size: clamp(1.45rem, 3vw, 2rem);
    line-height: 1.7;
    font-weight: 500;
}

.empathy__list {
    max-width: 760px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

.empathy__list li {
    position: relative;
    margin-bottom: 12px;
    padding: 16px 20px 16px 46px;
    background: #fff;
    border: 1px solid rgba(88, 122, 49, 0.12);
    border-radius: 10px;
    font-size: 0.95rem;
    line-height: 1.8;
    box-shadow: 0 6px 18px rgba(70, 60, 45, 0.04);
}

.empathy__list li::before {
    content: "";
    position: absolute;
    top: 25px;
    left: 22px;
    width: 8px;
    height: 8px;
    background: var(--haruno-color);
    border-radius: 50%;
}

.empathy p {
    max-width: 680px;
    margin: 0 auto;
}

.philosophy {
    padding: 56px 0 80px;
    /* background: rgba(255, 255, 255, 0.42); */
    background: #eac7cc87;
}

.philosophy p {
    max-width: 760px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 2;
}

@media (max-width: 768px) {
    .hero__label {
        margin-bottom: 14px;
        font-size: 0.72rem;
    }

    .hero__buttons {
        display: grid;
        gap: 12px;
        margin-top: 24px;
    }

    .hero__buttons .btn,
    .hero__buttons .btn--outline {
        width: 100%;
        max-width: 240px;
        text-align: center;
        box-sizing: border-box;
    }

    .empathy {
        padding: 56px 0 40px;
    }

    .philosophy {
        padding: 40px 0 64px;
    }

    .empathy h2,
    .philosophy h2 {
        margin-bottom: 22px;
        font-size: 1.35rem;
    }

    .empathy__list {
        margin-bottom: 0;
    }

    .empathy__list li {
        padding: 14px 16px 14px 40px;
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .empathy__list li::before {
        top: 22px;
        left: 18px;
        width: 8px;
        height: 8px;
    }
}

@keyframes fvFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-bg-placeholder {
    height: 100%;
}

.hero__container {
    position: relative;
    z-index: 2;
    color: #fff;
}

.hero__content h1 {
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-size: 2.5rem;
}

.hero-bg-placeholder img,
.concept-placeholder img {
    width: 100%;
    display: block;
}

.hero-bg-placeholder img {
    height: 100%;
    object-fit: cover;
}

.concept-placeholder img {
    height: auto;
}

/* =================
コンセプト
================= */

.concept__container {
    max-width: 1000px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.concept__img {
    flex: 1;
}

.concept-placeholder {
    aspect-ratio: 4 / 3;
}

.concept__content {
    flex: 1;
}

@media (max-width: 768px) {
    .concept__container {
        flex-direction: column;
        gap: 40px;
    }
}

/* =================
サービス
================= */
.service {
    background-color: var(--haruno-base);
}

.service__lead {
    margin-top: 24px;
    margin-bottom: 64px;
    line-height: 2;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    flex-direction: column;
    padding: 1rem;
}

.service-item__text {
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-item__target {
    background-color: var(--haruno-bg-light);
    padding: 16px;
    margin-bottom: 24px;
    border-radius: 2px;
}

.service-item__target h4 {
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--haruno-main);
}

.service-item__target ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-item__target li {
    font-size: 14px;
    line-height: 1.6;
    position: relative;
    padding-left: 1.2em;
    margin-bottom: 4px;
}

.service-item__target li::before {
    content: "・";
    position: absolute;
    left: 0;
    color: var(--haruno-main);
}

.service-item__price {
    font-weight: 600;
    font-size: 16px;
    color: var(--haruno-text);
    border-top: 1px solid #eee;
    padding-top: 16px;
    margin-top: auto;
    text-align: right;
}

.service-item__num {
    display: block;
    margin-bottom: 32px;
    color: var(--haruno-main);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.service-item h3 {
    margin: 0 0 20px;
    font-size: 20px;
    line-height: 1.6;
    color: var(--haruno-text);
}

.service-item p {
    margin: 0;
    font-size: 15px;
    line-height: 2;
}

.service-more {
    margin-top: 48px;
}

.btn--primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--haruno-main);
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    border-radius: 2px;
    transition: 0.3s;
}

.btn--primary:hover {
    opacity: 0.8;
}

@media (max-width: 900px) {
    .service-list {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 640px;
    }

    .service-item {
        min-height: auto;
        padding: 32px 24px;
    }
}

.service-item,
.works__item,
.faq-item {
    background-color: #fff;
}

/* --- Flow Section --- */
.flow-steps {
    margin-top: 60px;
    border-left: 1px solid var(--haruno-gray);
    padding-left: 40px;
    margin-left: 20px;
}

.flow-step {
    position: relative;
    margin-bottom: 60px;
}

.flow-step::before {
    content: '';
    position: absolute;
    left: -45.5px;
    top: 5px;
    width: 10px;
    height: 10px;
    background-color: var(--haruno-main);
    border-radius: 50%;
}

.step-num {
    display: block;
    font-size: 1.6rem;
    color: var(--haruno-main);
    margin-bottom: 8px;
    font-weight: 700;
}

.flow-step h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.flow-step__note {
    margin-top: 12px;
    font-size: 13px;
    color: #888;
    line-height: 1.5;
    position: relative;
}

/* =================
実例
================= */
.works-section {
    /* background-color: var(--haruno-bg-light); */
    background: #eac7cc87;
}

.works__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.works__item a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.works__thumb {
    aspect-ratio: 16 / 9;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.works__item a:hover .works__thumb {
    transform: scale(1.02);
}

.works__item h3 {
    font-size: 18px;
    margin: 0 0 10px;
    padding: 0 1rem;
}

.works__cat {
    font-size: 14px;
    color: #888;
    margin: 0;
}

/* =========================
   works リード文
========================= */

.works__lead {
    font-size: 13px;
    line-height: 1.8;
    margin-top: 8px;
    color: #666;
    padding: 0 1rem;
}

@media (max-width: 560px) {
    .works__grid {
        grid-template-columns: 1fr;
    }

}

/* =================
FAQ
================= */
.faq-list {
    margin-top: 60px;
}

.faq-item {
    margin-bottom: 40px;
    border-bottom: 1px solid var(--haruno-gray);
    padding: 1rem;
    padding-bottom: 1.2rem;
}

.faq-item dt {
    font-weight: 600;
    margin-bottom: 12px;
    position: relative;
    padding-left: 24px;
}

.faq-item dt::before {
    content: 'Q.';
    position: absolute;
    left: 0;
    color: var(--haruno-main);
}

.faq-item dd {
    margin-left: 0;
    padding-left: 24px;
    position: relative;
    color: #666;
}

.faq-item dd::before {
    content: 'A.';
    position: absolute;
    left: 0;
    color: var(--haruno-accent);
}


.btn--white {
    border-color: #fff;
    color: #fff;
}

.btn--white:hover {
    background-color: #fff;
    color: var(--haruno-main);
}

.mt-64 {
    margin-top: 64px;
}


@media (min-width: 769px) and (max-width: 1024px) {

    .hero__content h1 {
        font-size: 36px;
    }

    .service-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .works__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .concept__container {
        gap: 40px;
    }
}

@media (max-width: 768px) {

    .hero {
        height: 70vh;
        padding: 0;
        align-items: center;
    }

    .hero__content h1 {
        font-size: 28px;
        line-height: 1.5;
    }

    .hero__content p {
        font-size: 14px;
        line-height: 1.8;
    }

    /* Concept */
    .concept__container {
        flex-direction: column;
        gap: 32px;
    }

    .concept__content {
        text-align: left;
    }

    /* Service */
    .service-list {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .service-item__target {
        padding: 12px;
    }

    .service-item__price {
        font-size: 14px;
    }

    .price-note {
        font-size: 12px;
        color: #888;
    }

    /* フロー */
    .flow-steps {
        padding-left: 24px;
        margin-left: 0;
    }

    .flow-step::before {
        left: -29px;
    }

    /* Works */
    .works__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

}


/* =========================================
   SEO ENTRY（front-page）
========================================= */

.seo-entry {
    padding: 140px 0 160px;
    background: var(--haruno-base);
}

.seo-entry .container {
    width: min(1080px, 88%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
}

.seo-entry__block {
    position: relative;
    padding: 40px 0 20px;
}

.seo-entry__block::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 36px;
    height: 1px;
    background: var(--haruno-color);
}

.seo-entry__block h2 {
    font-family: "Noto Serif JP", serif;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 500;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
    line-height: 1.6;
}

.seo-entry__block p {
    font-size: 0.95rem;
    line-height: 2;
    color: #555;
    margin-bottom: 26px;
}

.seo-entry__block a {
    position: relative;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    color: var(--haruno-color);
    text-decoration: none;
    padding-bottom: 4px;
    transition: 0.3s ease;
}

.seo-entry__block a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: var(--haruno-color);
    transform: scaleX(0.4);
    transform-origin: left;
    transition: 0.3s ease;
}

.seo-entry__block a:hover::after {
    transform: scaleX(1);
}

.seo-entry__block:hover {
    transform: translateY(-2px);
    transition: 0.3s ease;
}

/* =========================================
    お悩み
========================================= */

.top-trouble {
    padding: 140px 0;
    background: var(--haruno-base);
}

.top-trouble .container {
    width: min(1080px, 88%);
    margin: 0 auto;
}

.top-trouble__head {
    margin-bottom: 50px;
}

.top-trouble__head .en {
    display: block;
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: var(--haruno-color);
    margin-bottom: 10px;
}

.top-trouble__head h2 {
    font-family: "Noto Serif JP", serif;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    margin-bottom: 10px;
}

.top-trouble__head p {
    color: #666;
}

.top-trouble__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    list-style: none;
    padding: 0;
}

.top-trouble__list li {
    background: #fff;
    border: 1px solid rgba(88, 122, 49, 0.15);
    transition: 0.3s;
}

.top-trouble__list li:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.top-trouble__list a {
    display: block;
    padding: 24px;
    text-decoration: none;
    color: inherit;
}

.top-trouble__list h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.top-trouble__list p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
}

.top-trouble__more {
    text-align: right;
    margin-top: 30px;
}

.top-trouble__more a {
    font-size: 1rem;
    font-weight: 700;
    color: var(--haruno-color);
    border-bottom: 1px solid var(--haruno-color);
    text-decoration: none;
}

.trouble-intro-list {
    max-width: 600px;
    margin: 24px auto 40px;
    padding: 0;
    list-style: none;
}

.trouble-intro-list li {
    background: #fff;
    padding: 14px 18px;
    margin-bottom: 10px;
    border-radius: 6px;
    font-size: 14px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}


.top-trouble__item {
    display: flex;
}

.top-trouble__link {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.top-trouble__text {
    flex-grow: 1;
}

.top-trouble__arrow {
    margin-top: 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--haruno-color);
    text-align: right;
    display: block;
}

.top-trouble__cta {
    margin-top: 60px;
    text-align: center;
}

.top-trouble__cta p {
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.top-trouble__cta .btn {
    white-space: nowrap;
    display: inline-block;
    padding: 16px 28px;
    font-size: 1rem;
}

@media (max-width: 1024px) {

    .top-trouble__list {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 768px) {
    .top-trouble {
        padding: 100px 0;
    }

    .top-trouble__list {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .top-trouble__head {
        margin-bottom: 30px;
    }

    .top-trouble__intro h2 {
        text-align: center;
    }

    .trouble-intro-list {
        margin: 20px auto 30px;
    }

    .top-trouble__cta {
        margin-top: 40px;
    }

    .top-trouble__cta .btn {
        width: 100%;
        max-width: 200px;
    }
}

/* =========================================
   お役立ち記事
========================================= */

.top-blog {
    padding: 140px 0;
    background: #fbfaf7;
}

.top-blog .container {
    width: min(1080px, 88%);
    margin: 0 auto;
}

.top-blog__head {
    margin-bottom: 50px;
}

.top-blog__head .en {
    display: block;
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: var(--haruno-color);
    margin-bottom: 10px;
}

.top-blog__head h2 {
    font-family: "Noto Serif JP", serif;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
}

.top-blog__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.top-blog__list li {
    background: #fff;
    border: 1px solid rgba(88, 122, 49, 0.15);
    transition: 0.3s;
}

.top-blog__list li:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.05);
}

.top-blog__list a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.top-blog__thumb img {
    width: 100%;
    height: auto;
    display: block;
}

.top-blog__content {
    padding: 20px;
}

.top-blog__date {
    font-size: 0.8rem;
    color: #888;
    display: block;
    margin-bottom: 8px;
}

.top-blog__content h3 {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 10px;
}

.top-blog__content p {
    color: #555;
    line-height: 1.8;
}

.top-blog__more {
    text-align: right;
    margin-top: 30px;
}

.top-blog__more a {
    font-size: 1rem;
    font-weight: 700;
    color: var(--haruno-color);
    text-decoration: none;
    border-bottom: 1px solid var(--haruno-color);
}



@media (max-width: 768px) {

    .top-blog {
        padding: 100px 0;
    }

    .top-blog__list {
        grid-template-columns: 1fr;
    }

    .seo-entry {
        padding: 100px 0 120px;
    }

    .seo-entry .container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .seo-entry__block {
        padding-top: 30px;
    }

}


/* =========================================
   [ABOUT] About ページ 
========================================= */

section.about-hero {
    padding: 0;
}

.about-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--haruno-base);
}

.about-hero__bg img {
    opacity: 0.45;
}

.about-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    /* background: rgba(255, 255, 255, 0.3); */
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.about-hero__content {
    z-index: 2;
}

.about-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.about-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 0.45;
}

.about-title {
    text-align: center;
}

.about-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.about-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.about-hero h1 {
    font-size: 2.5rem;
    letter-spacing: 0.15em;
    color: #fff;
    margin-top: 10px;
}

/* 本文 */
section.concept-detail {
    padding: 60px 0;
}

.concept-body {
    margin-top: 40px;
    padding-bottom: 30px;
    line-height: 1.8;
    font-size: 1.1rem;
    color: #444;
}

.concept-body p {
    margin-bottom: 20px;
}

.concept-body p strong {
    font-weight: 600;
    color: var(--haruno-main-green);
}

.concept-body .fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.concept-body p:nth-child(3),
.concept-body p:nth-child(6) {
    margin-bottom: 40px;
}

.concept-origin p {
    margin-bottom: 16px;
}

.concept-detail {
    padding: 80px 0;
}

.concept-detail p {
    margin-top: 40px;
    max-width: 640px;
    margin: 0 auto 18px;
    line-height: 2;
}

.concept-origin {
    margin-top: 60px;
    padding-top: 60px;
    position: relative;
}

.concept-origin::before {
    content: "";
    width: 40px;
    height: 1px;
    background: var(--haruno-main);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.concept-origin p {
    max-width: 640px;
    margin: 0 auto 18px;
    font-size: 1.1rem;
}

.origin-lead {
    font-weight: 500;
    color: var(--haruno-main);
    margin-bottom: 40px !important;
}

/* プロフィール */
.profile {
    padding: 100px 0;
    background-color: var(--haruno-bg-light, #fbfcf9);
}

.profile .section-title {
    font-size: 26px;
    color: #333;
    margin-bottom: 64px;
    letter-spacing: 0.05em;
}

.profile__wrap {
    display: flex;
    gap: 64px;
    align-items: flex-start;
    max-width: 1000px;
    margin: 0 auto;
}

.profile__image-box {
    flex-shrink: 0;
    width: 280px;
    text-align: center;
    position: relative;
}

.profile__image {
    width: 220px;
    height: 220px;
    margin: 0 auto 24px;
    position: relative;
}

.profile__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.profile__image::before {
    content: "";
    position: absolute;
    bottom: -10px;
    left: -20px;
    width: 60px;
    height: 80px;
    /* 背景画像として植物のsvgやpngがある場合はここに指定 */
    /* background: url('../img/about/leaf-decor.svg') no-repeat center/contain; */
    z-index: 1;
    pointer-events: none;
}

.profile__name-area {
    margin-top: 16px;
}

.profile__logo-text {
    font-family: "Cormorant Garamond", "Times New Roman", "Georgia", cursive, serif;
    font-size: 32px;
    color: var(--haruno-main-green);
    margin: 0 0 2px 0 !important;
    line-height: 1.2;
    letter-spacing: 0.02em;
    font-style: italic;
}

.profile__sub-text {
    font-size: 11px;
    color: var(--haruno-main-green);
    letter-spacing: 0.15em;
    margin: 0 !important;
    font-weight: 500;
}

.profile__text {
    flex: 1;
}

.profile__intro p {
    font-size: 1.14rem;
    color: var(--haruno-text-dark);
    line-height: 1.85;
    margin-bottom: 24px;
    letter-spacing: 0.03em;
}

.profile__intro p:last-child {
    margin-bottom: 40px;
}

.strengths-title {
    font-size: 1.14rem;
    font-weight: 600;
    color: var(--haruno-main-green);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
    letter-spacing: 0.05em;
}

.strengths-title .title-icon {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: flex-end;
    margin-right: .8rem;
}

.profile-strengths {
    list-style: none;
    padding: 0;
    margin: 0;
}

.profile-strengths li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px dashed var(--haruno-line-dashed);
    font-size: 1.1remmｍｒ;
    line-height: 1.6;
    color: #444;
}

.profile-strengths li:first-child {
    border-top: 1px solid #e0e0e0;
}

.profile-strengths .icon-check {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background-color: var(--haruno-leaf-light);
    border: 1px solid var(--haruno-border-pale);
    color: var(--haruno-main-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-strengths .icon-check svg {
    width: 14px;
    height: 14px;
}

.profile-strengths .txt {
    flex: 1;
    letter-spacing: 0.02em;
}


.profile__bottom-banner {
    max-width: 800px;
    margin: 80px auto 0;
    border: 1px solid #e0e4dd;
    padding: 24px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    position: relative;
    background-color: #ffffff;
}

.profile__bottom-banner .banner-leaf {
    width: 80px;
    height: 80px;
    color: var(--haruno-main-green);
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.profile__bottom-banner .banner-text {
    text-align: center;
}

.profile__bottom-banner .banner-text p {
    font-size: 1.14rem;
    color: var(--haruno-main-green);
    margin: 0 0 6px 0;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.5;
}

.profile__bottom-banner .banner-text p.sub {
    font-size: .96rem;
    color: #555;
    margin: 0;
    font-weight: 400;
}

@media (max-width: 896px) {
    .profile__wrap {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .profile__image-box {
        width: 100%;
    }

    .profile__bottom-banner {
        flex-direction: column;
        padding: 24px 20px;
        gap: 12px;
        width: calc(100% - 32px);
    }

    .profile-strengths li {
        align-items: flex-start;
    }

    .profile-strengths .icon-check {
        margin-top: 2px;
    }
}

/* 活動 */
.about-work__list {
    margin-top: 80px;
    list-style: none;
    padding: 0;
}

.about-work__header {
    display: flex;
    align-items: baseline;
    flex: 0 0 45%;
}

.about-work__number {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 700;
    color: var(--haruno-main);
    margin-right: 24px;
    letter-spacing: 0.05em;
    opacity: 0.8;
}

.about-work__item {
    padding: 40px 0;
    border-bottom: none;
    gap: 40px;
}


.about-work__item:last-child {
    border-bottom: none;
}

.about-work__item h3 {
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin: 0;
    position: relative;
    color: var(--haruno-main-green);
}

.section-title {
    margin-bottom: 48px;
    font-size: 28px;
    letter-spacing: 0.05em;
}


.about-work__body {
    flex: 1;
}

.about-work__body p {
    line-height: 1.8;
    color: var(--haruno-text);
    opacity: 0.9;
    margin: 0;
}

.text-center a.btn.btn--outline {
    text-align: center;
    display: inline-block;
    padding: 20px 48px;
    background: var(--haruno-color);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 2px;
    background-color: var(--haruno-color);
}


@media (max-width: 1024px) {

    .profile__wrap {
        gap: 32px;
    }

    .about-hero h1 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {

    .about-hero {
        min-height: 60vh;
    }

    .about-hero h1 {
        font-size: 32px;
    }

    .concept-detail p,
    .concept-origin p {
        line-height: 1.8;
    }

    .concept-origin p {
        font-size: 15px;
    }

    .profile {
        padding: 80px 0;
    }

    .profile__wrap {
        flex-direction: column;
        text-align: center;
    }

    .profile__intro p {
        font-size: 15px;
    }

    .profile__image img {
        width: 140px;
    }

    .section-title {
        margin-bottom: 40px;
        font-size: 22px;
    }

    .concept-origin {
        margin-top: 60px;
        padding-top: 40px;
    }

    .about-work__item {
        flex-direction: column;
        gap: 12px;
        padding: 32px 0;
    }

    .about-work__header {
        flex: none;
        width: 100%;
    }

    .about-work__number {
        font-size: 20px;
        margin-right: 16px;
    }

    .about-work__item h3 {
        font-size: 18px;
    }

    .about-work__body {
        padding-left: 45px;
    }

}

@media (max-width: 768px) {
    .concept-body {
        font-size: 15px;
        line-height: 1.7;
    }

    .concept-body p {
        margin-bottom: 16px;
    }
}

/* =========================================
   [SERVICE] Service ページ 
========================================= */

/* =====================
 共通
===================== */
.section-title--center {
    text-align: center;
    margin-bottom: 60px;
}

.section-title--center .en {
    display: block;
    font-size: 14px;
    letter-spacing: 0.2em;
    color: var(--haruno-color);
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 700;
}

.section-intro {
    margin-top: 15px;
    opacity: 0.8;
}

/* =====================
hero
===================== */
.service-hero {
    position: relative;
    padding: 160px 0 120px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    overflow: hidden;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.service-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.service-hero .container {
    position: relative;
    z-index: 2;
}

.service-hero h1 {
    font-size: 2.5rem;
    line-height: 1.5;
    margin-top: 1rem;
    letter-spacing: 0.15em;
    color: #fff;
}

.service-hero .sub-title {
    color: #fff;
}

.service-strength {
    /* padding: 100px 0; */
    background: var(--haruno-bg-light);
}

.strength-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 56px;
}

.strength-item {
    border: none;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    padding: 1rem;
}

.strength-item h3 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--haruno-color);
}

.strength-item p {
    font-size: 15px;
    line-height: 1.9;
}

@media (max-width: 768px) {
    .service-hero {
        padding: 120px 0 80px;
    }

    .service-hero h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 1024px) {
    .strength-list {
        grid-template-columns: 1fr;
        max-width: 640px;
        margin-left: auto;
        margin-right: auto;
    }

    .service-strength {
        padding: 72px 0;
    }

    .strength-item {
        padding: 32px 24px;
    }

    .service-catch {
        font-size: 24px;
        line-height: 1.6;
    }

    .service-catch-sub {
        font-size: 14px;
        line-height: 1.9;
    }
}

.service-empathy {
    text-align: center;
}

/* =====================
 画像（グレー枠）
===================== */
.service-image,
.flow-image {
    background: #eee;
    width: 100%;
    height: 260px;
}


/* =====================
 サービスブロック
===================== */
/* .service-menu {
    padding: 100px 0;
} */

/* サービスグリッド */
.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: #fff;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.service-card__content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-head {
    margin-bottom: 16px;
}

.card-head .num {
    font-size: 1.2rem;
    color: var(--haruno-accent);
    font-weight: 600;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 8px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    margin-top: 0;
    color: var(--haruno-color);
}

.service-card .description {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.detail-list {
    list-style: none;
    padding: 0;
    font-size: 14px;
    color: #555;
    line-height: 1.8;
}

.detail-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 6px;
}

.detail-list li::before {
    content: "・";
    position: absolute;
    left: 0;
    color: var(--haruno-main);
}


/* =====================
 料金
===================== */
.price-table {
    border-top: 2px solid var(--haruno-color);
    background: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    border-bottom: 1px solid #eee;
}

.price-label h4 {
    font-size: 18px;
    margin-bottom: 6px;
    font-weight: 600;
}

.price-label .note {
    font-size: 13px;
    color: #666;
    display: block;
}

.price-value {
    font-family: var(--font-serif);
    font-size: 22px;
    color: var(--haruno-main);
    white-space: nowrap;
    font-weight: 700;
}

.price-value span {
    font-size: 14px;
    margin-right: 5px;
}

.price-notice {
    margin-top: 20px;
    font-size: 13px;
    color: #666;
}

/* =====================
 保守プラン
===================== */
:root {
    /* テーマカラーの微調整（カンプの美しい緑に合わせる用。既存の変数があればそちらが優先されます） */
    --haruno-main-green: #708854;
    --haruno-bg-light: #fbfcf9;
}

.service-maintenance {
    background: var(--haruno-bg-light);
    padding: 100px 0;
}

/* グリッド配置 */
.maintenance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
    align-items: stretch;
    /* 高さを綺麗に揃える */
}

/* カード共通 */
.maintenance-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 48px 32px;
    text-align: center;
    /* ヘッダー・価格を中央寄せ */
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.maintenance-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(112, 136, 84, 0.08);
}

/* おすすめカードのスタイル調整 */
.maintenance-card.recommended {
    border: 2px solid var(--haruno-main-green);
    transform: none;
    /* 全体スケールではなく、余白と枠線で引き立てる */
}

.maintenance-card.recommended:hover {
    transform: translateY(-4px);
}

.label-recommended {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--haruno-main-green);
    color: #fff;
    padding: 4px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 0.05em;
}

.card-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
    color: var(--haruno-main-green);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #eef2e8;
    border-radius: 50%;
    opacity: 0.9;
}

.card-icon img {
    width: 36px;
    height: 36px;
}

.maintenance-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--haruno-main-green);
}

/* 価格表記 */
.maintenance-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #111;
    border-bottom: none;
    margin-bottom: 32px;
    padding-bottom: 0;
    font-family: "Helvetica Neue", Arial, sans-serif;
}

.maintenance-card .price .period {
    font-size: 13px;
    font-weight: normal;
    color: #666;
    margin-left: 2px;
}

.numbered-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.numbered-list li {
    display: flex;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px dashed #e2e8f0;
    line-height: 1.6;
    color: #444;
    font-size: 1rem;
}

.numbered-list li:last-child {
    border-bottom: none;
}

.numbered-list .num {
    background-color: var(--haruno-main-green);
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    text-align: center;
    line-height: 28px;
    font-weight: bold;
    margin-right: 14px;
    flex-shrink: 0;
    margin-top: 1px;
    font-family: "Helvetica Neue", Arial, sans-serif;
}

.numbered-list .txt {
    flex: 1;
}

.maintenance-notes {
    margin-top: 40px;
    text-align: center;
}

.maintenance-notes p {
    font-size: .9rem;
    color: #666;
    margin-bottom: 6px;
    line-height: 1.5;
}

.sns-support-banner {
    max-width: 800px;
    margin: 32px auto 0;
    background-color: #f2f6ee;
    padding: 14px 24px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.sns-support-banner .banner-icon {
    width: 18px;
    height: 18px;
    color: var(--haruno-main-green);
    display: flex;
    align-items: center;
}

.sns-support-banner p {
    font-size: .95rem;
    color: #333;
    margin: 0;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .maintenance-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .sns-support-banner {
        flex-direction: column;
        text-align: center;
        padding: 16px;
    }
}

/* =====================
 フロー
===================== */
/* .service-flow {
    padding: 100px 0;
} */

.service-flow h2 {
    margin-top: .8rem;
}

.flow-step-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    padding: 40px;
    position: relative;
    border-radius: 2px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.02);
    border-left: 3px solid var(--haruno-color);
    padding-left: 30px;
}

.flow-step-card__head {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 12px;
}

.flow-step-card:nth-child(odd) {
    transform: translateX(-20px);
}

.flow-step-card:nth-child(even) {
    transform: translateX(20px);
}

.flow-step-card__num {
    font-family: var(--font-serif);
    font-size: 14px;
    color: var(--haruno-color);
    letter-spacing: 0.15em;
    font-weight: bold;
    display: inline-block;
}

.flow-step-card h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    white-space: nowrap;
    color: #333;
}

.flow-step-card__body {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
}

.flow-step__note {
    margin-top: 12px;
    font-size: 0.85em;
    opacity: 0.7;
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Flow Arrow
   -------------------------------------------------------------------------- */
.flow-arrow {
    text-align: center;
    margin: 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: none !important;
    height: 14px !important;
}

.flow-arrow::after {
    content: '';
    display: inline-block !important;
    width: 0 !important;
    height: 0 !important;
    line-height: 0 !important;
    font-size: 0 !important;
    background: none !important;

    border-style: solid !important;
    border-width: 14px 11px 0 11px !important;
    border-color: var(--haruno-color) transparent transparent transparent !important;
    vertical-align: top;
    opacity: 0.6;
}

@media (max-width: 1200px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .service-page section {
        padding: 60px 0;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .service-card,
    .service-card__content {
        padding: 1rem;
    }

    .price-row {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 10px;
    }

    .price-value {
        align-self: flex-end;
        font-size: 18px;
    }

    .service-flow {
        padding: 80px 0;
    }

    .flow-step-card {
        padding: 30px 20px;
    }

    .flow-step-card__head {
        margin-bottom: 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .flow-step-card h3 {
        font-size: 18px;
        white-space: normal;
    }

    .flow-step-card__body {
        font-size: 14px;
    }

    .flow-arrow {
        margin: 30px 0;
        height: 11px !important;
    }

    .flow-arrow::after {
        border-width: 11px 9px 0 9px !important;
    }
}


/* =========================================
   [CONTACT] Contact ページ
========================================= */

/* =========================
   ページヘッダー
========================= */

.page-header {
    background-color: #f9f9f7;
    padding: 120px 0 80px;
    text-align: center;
}

.page-header__en {
    display: block;
    font-size: 14px;
    letter-spacing: 0.2em;
    color: var(--haruno-color);
    margin-bottom: 16px;
    text-transform: uppercase;
    font-weight: 500;
}

.page-header__title {
    font-size: 32px;
    margin-bottom: 24px;
    color: #333;
    font-family: var(--font-serif);
}

.page-header__lead {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}

/* =========================
   Contact セクション
========================= */

.contact-section {
    padding: 100px 0;
}

.contact-box__info {
    margin-bottom: 48px;
    text-align: center;
    font-size: 14px;
    line-height: 1.8;
    color: #888;
}

/* =========================
   Contact Form 7
========================= */

.contact-item {
    margin-bottom: 1.6rem;
}

.contact-item label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #4a4a4a;
    letter-spacing: 0.05em;
}

.contact-item .required {
    background: var(--haruno-color);
    color: #fff;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 2px;
    margin-left: 12px;
    vertical-align: middle;
    font-weight: normal;
}

.wpcf7-form-control-wrap {
    display: block;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    background: #fff;
    font-size: 16px;
    color: #333;
    transition: all 0.3s ease;
    box-sizing: border-box;
    -webkit-appearance: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--haruno-color);
    outline: none;
    background-color: var(--haruno-bg-light);
}

.contact-form textarea {
    height: 180px;
}

.contact-submit {
    text-align: center;
    margin-top: 48px;
}

.contact-submit .btn--primary {
    background: var(--haruno-color);
    color: #fff;
    padding: 18px 80px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    letter-spacing: 0.2em;
    transition: opacity 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
}

.contact-submit .btn--primary:hover {
    opacity: 0.8;
}

.wpcf7-not-valid-tip {
    color: #d9534f;
    font-size: 12px;
    margin-top: 8px;
}

.contact-lead {
    background: #f8f8f6;
    padding: 20px;
    margin-bottom: 32px;
    border-left: 3px solid var(--haruno-color);
    font-size: 14px;
    line-height: 1.8;
}

.contact-lead p {
    margin: 0 0 6px;
}

.submit-note {
    margin-top: 12px;
    font-size: 12px;
    color: #888;
}

@media (max-width: 768px) {

    .contact-section {
        padding: 60px 20px;
    }

    .contact-item {
        margin-bottom: 24px;
    }

    .contact-item label {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .contact-form input[type="text"],
    .contact-form input[type="email"],
    .contact-form select,
    .contact-form textarea {
        padding: 14px 12px;
        font-size: 16px;
    }

    .contact-form textarea {
        height: 160px;
    }

    .contact-submit {
        margin-top: 32px;
    }

    .contact-submit .btn--primary {
        width: 100%;
        padding: 16px 0;
        font-size: 14px;
        letter-spacing: 0.1em;
    }

    .wpcf7-not-valid-tip {
        font-size: 11px;
    }

    .page-header {
        padding: 80px 0 60px;
    }

    .page-header__title {
        font-size: 24px;
    }
}

/* =========================
   Thanks Page
========================= */

.thanks-section {
    padding: 160px 0;
    text-align: center;
    background-color: var(--haruno-bg-light);
}

.thanks-subtitle {
    display: block;
    font-size: 14px;
    letter-spacing: 0.2em;
    color: #768c55;
    /* TODO: 保留 — --haruno-color (#587a31) との統一要視覚確認 */
    margin-bottom: 16px;
    text-transform: uppercase;
}

.thanks-title {
    font-size: 28px;
    margin-bottom: 40px;
    color: #333;
    font-family: var(--font-serif);
}

.thanks-text {
    margin-bottom: 60px;
    line-height: 2;
    color: #666;
    font-size: 15px;
}

.thanks-action .btn--primary {
    display: inline-block;
    padding: 18px 60px;
    background-color: #768c55;
    /* TODO: 保留 — --haruno-color (#587a31) との統一要視覚確認 */
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.1em;
    transition: 0.3s ease;
}

.thanks-action .btn--primary:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {

    .thanks-section {
        padding: 100px 0;
    }

    .thanks-title {
        font-size: 22px;
    }
}


/* =========================================
   [CASE] 実績ページ (元 case.css)
========================================= */

.case-page .container {
    max-width: 1200px;
}

.case-content .container--narrow {
    max-width: 760px;
    margin: 0 auto;
}

.case-hero {
    position: relative;
    padding: 160px 0 120px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #333;
    overflow: hidden;
}

.case-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.case-hero {
    position: relative;
    height: 70vh;
}

.case-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-hero__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
}

.case-hero h1 {
    font-size: 2.5rem;
    line-height: 1.5;
    margin-top: 1rem;
    letter-spacing: 0.15em;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.sub-title {
    color: #fff;
    opacity: 0.9;
}

.case-hero p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.8;
    color: #fff
}

/* =====================
   Case Card
   ===================== */
.case-section {
    padding: 100px 0;
    background: var(--haruno-bg-light);
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 40px;
    margin-top: 60px;
}

.case-card {
    background: #fff;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    height: 100%;
    margin-bottom: 80px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.case-card__img {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #f5f5f5;
}

.case-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.case-card:hover .case-card__img img {
    transform: scale(1.03);
}

.case-card__body {
    padding: 80px;
    padding-bottom: 0;
    background-image:
        linear-gradient(rgba(230, 230, 230, 0.3) 1px, transparent 1px),
        linear-gradient(90px, rgba(230, 230, 230, 0.3) 1px, transparent 1px);
    background-size: 40px 40px;
    background-color: #fff;
    position: relative;
}

.case-card__head {
    border-bottom: 1px solid #eee;
    padding-bottom: 30px;
    margin-bottom: 40px;
}

.case-card__head h2 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #333;
}

.case-meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: #888;
}

.case-tag {
    color: var(--haruno-color);
    font-weight: 600;
}


.case-details {
    display: block;
}

.case-block {
    margin-bottom: 25px;
}

.case-block h3 {
    font-size: 14px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    color: #333;
}

.case-block h3 .en {
    font-size: 10px;
    color: var(--haruno-color);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-family: var(--font-serif);
}

.case-block__body {
    padding-left: 0;
    border-left: 1px solid #eee;
    padding-left: 20px;
}

.case-block p {
    font-size: 14.5px;
    line-height: 2;
    color: #555;
    letter-spacing: 0.03em;
}

.case-block ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.case-block li {
    font-size: 14px;
    color: #555;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}

.case-block li::before {
    content: "";
    width: 6px;
    height: 6px;
    border: 1px solid var(--haruno-color);
    margin-right: 12px;
    margin-top: 8px;
    flex-shrink: 0;
}

.line-heading {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.line-heading::after {
    content: "";
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(to right, var(--haruno-gray), transparent);
    margin-left: 15px;
}

/* =========================
   カード内CTA
========================= */

.case-card__cta {
    margin-top: 20px;
    text-align: center;
}

.case-btn {
    display: inline-block;
    padding: 10px 24px;
    background: var(--haruno-color);
    color: #fff;
    font-size: 13px;
    letter-spacing: 0.08em;
    border-radius: 2px;
    transition: 0.3s;
}

.case-card:hover .case-btn {
    background: #4c6664;
    /* TODO: 候補 --haruno-main-dark（common.css, cta.css と共通値） */
}

/* =========================
 ページネーション
========================= */

.pagination a {
    background: transparent;
}

.pagination a:hover {
    background: rgba(0, 0, 0, 0.05);
}

.case-card__link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.case-card__link:hover {
    opacity: 0.9;
}

@media (max-width: 1024px) {
    .case-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .case-card__img {
        height: 350px;
    }

    .case-card__body {
        padding: 40px;
    }

    .case-details {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px 40px;
    }
}

@media (max-width: 768px) {
    .case-hero {
        padding: 120px 0 80px;
    }

    .case-hero h1 {
        font-size: 1.8rem;
        letter-spacing: 0.1em;
    }

    .case-card__img {
        height: 200px;
    }

    .case-card__body {
        padding: 40px 20px;
        background-size: 30px 30px;
    }

    .case-card__head h2 {
        font-size: 20px;
    }

    .case-details {
        display: block;
    }

    .case-card__head {
        margin-bottom: 30px;
    }

    .case-block__body {
        border-left: none;
        padding-left: 0;
    }
}

/* =========================
 詳細ページ
========================= */
.case-content {
    padding: 120px 0;
}

.case-content h2 {
    margin-top: 80px;
    margin-bottom: 20px;
    font-size: 22px;
}

.case-content p {
    line-height: 2;
    color: #555;
}

.case-detail-hero {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.case-detail-hero__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-detail-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.case-detail-hero__content {
    position: absolute;
    color: #fff;
}

.case-detail-category {
    font-size: 12px;
    letter-spacing: 0.2em;
    opacity: 0.8;
}

.case-detail-meta {
    font-size: 14px;
    opacity: 0.8;
}

.case-detail-block {
    padding: 120px 0;
}

.case-detail-result {
    background: var(--haruno-color);
    color: #fff;
    padding: 120px 0;
    text-align: center;
}

.case-detail-link {
    margin: 80px 0;
}

/* =========================
   KPI（実績数値）
   ========================= */
.case-kpi {
    display: flex;
    justify-content: center;
    gap: 0;
    margin: 40px 0;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.kpi {
    flex: 1;
    position: relative;
    padding: 0 15px;
}

.kpi:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background-color: #eee;
}

.kpi span {
    display: block;
    font-size: 11px;
    color: #999;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.kpi strong {
    display: block;
    font-size: 22px;
    color: var(--haruno-color);
    font-family: var(--font-serif);
    font-weight: 600;
}

/* =========================
   モックアップ画像（修正版）
   ========================= */
.case-mockup {
    display: flex;
    align-items: flex-end;
    gap: 30px;
    width: 100%;
    padding: 0;
}

.pc-wrap {
    flex: 2;
    line-height: 0;
}

.sp-wrap {
    flex: 0.6;
    line-height: 0;
}

.case-mockup img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* =========================
   Before After
   ========================= */
.case-ba {
    display: flex;
    gap: 20px;
    padding: 0;
}

.ba-item {
    flex: 1;
    text-align: left;
}

.ba-item p {
    font-size: 11px;
    color: #888;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.ba-item img {
    width: 100%;
    height: auto;
    border-radius: 2px;
    border: 1px solid #eee;
}

.case-link {
    text-align: center;
    margin: 120px 0;
}

.case-link a {
    display: inline-block;
    padding: 16px 40px;
    background: var(--haruno-color);
    color: #fff;
    font-size: 14px;
    transition: 0.3s;
    text-decoration: none;
}

.case-link a:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .case-hero {
        height: 50vh;
    }

    .case-hero h1 {
        font-size: 24px;
    }

    .case-section {
        padding: 60px 0;
    }

    .case-title {
        font-size: 20px;
    }
}


@media (max-width: 1024px) {
    .case-card__body {
        padding: 60px 40px;
    }
}

@media (max-width: 768px) {

    .case-kpi {
        gap: 10px 0;
    }

    .kpi {
        flex: none;
        width: 33.33%;
    }

    .kpi strong {
        font-size: 18px;
    }

    .case-mockup {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .sp-wrap {
        width: 50%;
        max-width: 200px;
    }

    .case-mockup img.sp {
        max-width: 160px;
    }

    .case-ba {
        flex-direction: column;
        gap: 30px;
    }

    .ba-item {
        width: 100%;
    }

    .case-link {
        margin: 60px 0;
    }
}


/* =========================================
   [BLOG] ブログ・お悩みページ (元 blog-trouble.css)
========================================= */

/* =========================================
   base
========================================= */

.blog-archive,
.single-post,
.trouble-page,
.trouble-single {
    padding-bottom: 100px;
    background: #fbfaf7;
    color: #222;
}

.blog-archive .container,
.single-post .container,
.trouble-page .container,
.trouble-single .container {
    width: min(1080px, 88%);
    margin: 0 auto;
}

/* =========================================
   page title
========================================= */

.blog-archive h1,
.trouble-page h1,
.single-post h1,
.trouble-single h1 {
    font-family: "Noto Serif JP", serif;
    font-size: clamp(2rem, 2.6vw, 2.8rem);
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.5;
    margin-bottom: 60px;
}

.blog-archive h1::before,
.trouble-page h1::before {
    display: block;
    margin-bottom: 12px;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: var(--haruno-color);
}

.blog-archive h1::before {
    content: "BLOG";
}

.trouble-page h1::before {
    content: "TROUBLE";
}

/* =========================================
   ブログ一覧
========================================= */

.blog-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 28px;
}

.blog-list li {
    background: #fff;
    border: 1px solid rgba(88, 122, 49, 0.15);
    transition: all 0.3s ease;
}

.blog-list li:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.blog-list a {
    display: block;
    padding: 30px 36px;
    text-decoration: none;
    color: inherit;
}

.blog-thumb img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 16px;
}

.blog-date {
    display: block;
    font-size: 0.75rem;
    color: #888;
    margin-bottom: 10px;
    letter-spacing: 0.08em;
}

.blog-list h2 {
    font-family: "Noto Serif JP", serif;
    font-size: 1.35rem;
    line-height: 1.8;
    margin-bottom: 12px;
}

.blog-excerpt {
    font-size: 0.95rem;
    color: #555;
    line-height: 2;
}

/* =========================================
   ブログ詳細ページ
========================================= */
.blog-block {
    background-color: #fff;
    padding: 2rem 1rem;
}

.single-post .content,
.trouble-single .content {
    max-width: 780px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 2.2;
}

.single-post .content h2,
.trouble-single .content h2 {
    font-family: "Noto Serif JP", serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    line-height: 1.7;
    margin: 80px 0 24px;
    padding-left: 20px;
    border-left: 3px solid var(--haruno-color);
}

.single-post .content h3,
.trouble-single .content h3 {
    font-size: 1.1rem;
    margin: 50px 0 16px;
    color: var(--haruno-color);
}

.single-post .content p,
.trouble-single .content p {
    margin-bottom: 24px;
}

.single-post .content ul,
.trouble-single .content ul {
    margin: 24px 0;
    padding-left: 1.5em;
}

.single-post .content li,
.trouble-single .content li {
    margin-bottom: 10px;
}

.trouble-single .content a {
    color: var(--haruno-color);
    text-decoration: underline;
}

.post-navigation {
    display: flex;
    justify-content: center;
    align-items: stretch;
    margin: 60px 0;
    gap: 12px;
    flex-wrap: nowrap;
}

.post-navigation a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    border: 1px solid #6b8f5a;
    /* TODO: 保留 — --haruno-color (#587a31) との統一要視覚確認 */
    color: #6b8f5a;
    /* TODO: 保留 — 同上 */
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
    white-space: nowrap;
    height: 100%;
    box-sizing: border-box;
}

.post-navigation a:hover {
    background-color: #6b8f5a;
    /* TODO: 保留 — 同上 */
    color: #fff;
}

.nav-prev,
.nav-next {
    flex: 0 1 auto;
}

.nav-next {
    text-align: right;
}

.nav-back {
    flex: 0 1 auto;
}

.nav-back a {
    font-weight: bold;
    background-color: transparent;
}

.blog-inner-cta {
    margin: 56px 0;
    padding: 32px 24px;
    background: #f6f4ef;
    text-align: center;
    box-sizing: border-box;
}

.blog-inner-cta__lead {
    font-weight: 600;
    color: var(--haruno-color);
    margin-bottom: 12px;
}

.blog-inner-cta .blog-inner-cta__btn a.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 280px;
    min-width: 0 !important;
    margin: 16px auto 0;
    padding: 16px 20px;
    box-sizing: border-box;
    text-decoration: none;
}

@media (max-width: 768px) {
    .blog-inner-cta {
        padding: 24px 16px;
    }

    .blog-inner-cta p {
        text-align: center;
        font-size: 0.9rem;
    }

    .blog-inner-cta .blog-inner-cta__btn a.btn {
        width: 100%;
        max-width: 100%;
        min-width: unset !important;
    }
}

@media (max-width: 480px) {
    .post-navigation {
        gap: 1rem;
        justify-content: space-between;
    }

    .post-navigation a {
        font-size: 13px;
        padding: 8px 10px;
    }
}

/* =========================================
   お悩み
========================================= */

.trouble-page__head {
    margin-bottom: 60px;
}

.trouble-page__head .en {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: var(--haruno-color);
    margin-bottom: 10px;
}

.trouble-page__head h1 {
    font-family: "Noto Serif JP", serif;
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    margin-bottom: 10px;
}

.trouble-page__head p {
    font-size: 0.9rem;
    color: #666;
}

.trouble-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(2, 1fr);
}

.trouble-item {
    background: #fff;
    border: 1px solid rgba(88, 122, 49, 0.15);
    transition: 0.3s;
}

.trouble-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.trouble-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 28px;
    text-decoration: none;
    color: inherit;
}

.trouble-title {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.trouble-text {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.8;
    flex-grow: 1;
}

.trouble-arrow {
    margin-top: 16px;
    font-size: 0.8rem;
    color: var(--haruno-color);
    text-align: right;
}

.trouble-bottom-cta {
    margin-top: 80px;
    text-align: center;
    padding: 0 20px;
    box-sizing: border-box;
}

.trouble-bottom-cta .blog-inner-cta__btn {
    display: block;
    width: 100%;
}

.trouble-bottom-cta .btn--cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 320px;
    min-width: 0 !important;
    padding: 16px 20px;
    font-size: 0.95rem;
    color: #fff;
    background-color: var(--haruno-color);
    text-decoration: none;
    white-space: normal;
    box-sizing: border-box;
    transition: 0.3s;
}

.trouble-bottom-cta .btn--cta:hover {
    opacity: 0.8;
}

.trouble-bottom-cta p {
    margin-bottom: 24px;
    font-size: 0.95rem;
    line-height: 1.8;
}

.trouble-bottom-cta .btn {
    white-space: nowrap;
    display: inline-block;
    padding: 16px 28px;
}

.internal-link-box {
    margin-top: 30px;
    padding: 20px;
    background: var(--haruno-base);
}

.internal-link-box a {
    display: inline-block;
    margin-top: 10px;
    color: var(--haruno-color);
    font-size: 0.9rem;
    text-decoration: none;
}

main.single-post .content .btn--cta,
.trouble-single .content .btn--cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    min-width: 260px;
    padding: 16px 28px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.trouble-cta-box .btn--cta {
    margin: 0 auto;
}

.back-to-trouble {
    margin-top: 60px;
    text-align: center;
}

.back-to-trouble__btn {
    display: inline-block;

    padding: 12px 26px;

    font-size: 0.85rem;
    letter-spacing: 0.08em;

    color: var(--haruno-color);
    border: 1px solid var(--haruno-color);
    border-radius: 999px;

    text-decoration: none;

    transition: 0.3s;
}

.back-to-trouble__btn:hover {
    background: var(--haruno-color);
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 1024px) {

    .trouble-list {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 768px) {

    .trouble-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .trouble-page__head {
        margin-bottom: 40px;
    }

    .trouble-bottom-cta {
        margin-top: 60px;
        padding: 0 16px;
    }

    .trouble-bottom-cta .btn--cta {
        width: 100%;
        max-width: 100%;
        padding: 16px 10px;
    }

    .back-to-trouble__btn {
        width: 100%;
        max-width: 200px;
    }
}

/* =========================================
   CTA（記事用）
========================================= */

.article-cta {
    max-width: 820px;
    margin: 100px auto 0;
    padding: 50px 40px;
    background: var(--haruno-color);
    color: #fff;
    text-align: center;
}

.article-cta__en {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    margin-bottom: 10px;
    display: block;
    opacity: 0.8;
}

.article-cta h2 {
    font-family: "Noto Serif JP", serif;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    line-height: 1.6;
    margin-bottom: 16px;
}

.article-cta p {
    line-height: 2;
    margin-bottom: 24px;
}

.article-cta__btn {
    display: inline-block;
    padding: 16px 28px;
    background: #fff;
    color: var(--haruno-color) !important;
    text-decoration: none;
    letter-spacing: 0.1em;
    transition: 0.3s;
}

.article-cta__btn:hover {
    transform: translateY(-2px);
}

/* =========================================
ページネーション
========================================= */

@media (max-width: 768px) {
    .pagination .nav-links {
        gap: 10px;
    }

    .pagination .page-numbers {
        min-width: 36px;
        height: 36px;
        font-size: 13px;
    }
}

/* =========================================
   ブログ一覧
========================================= */

.blog-archive {
    margin-bottom: 120px;
}

@media (max-width: 768px) {

    .blog-archive,
    .single-post,
    .trouble-page,
    .trouble-single {
        padding: 100px 0 70px;
    }

    .blog-list a,
    .trouble-list a {
        padding: 24px;
    }

    .article-cta {
        padding: 40px 20px;
    }

    .article-cta__btn {
        width: 100%;
    }

}