/* CSS VARIABLES - matching design SVG */
:root {
    --green-main: #8cb993;
    --green-dark: #2e7d32;
    --green-pale: #a7d38c;
    --green-light-bg: #eef7f2;
    --blue: #1565c0;
    --text-dark: #3e3a39;
    --text-body: #231815;
    --text-muted: #666666;
    --bg-white: #ffffff;
    --bg-light: #f5f5f5;
    --border-color: #e0e0e0;
    --yellow: #fbe404;
    --font-ja: 'Noto Sans JP', sans-serif;
    --font-en: 'EB Garamond', serif;
}

/* RESET & GLOBAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-ja);
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    width: 100%;
    margin: 0 auto;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* UTILITIES */
.section-padding {
    padding: 50px 20px;
}

.bg-lightgreen {
    background-color: var(--green-light-bg);
}

.bg-lightgrey {
    background-color: var(--bg-light);
}

/* SECTION HEADER */
.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-en {
    display: block;
    font-family: var(--font-en);
    color: var(--green-pale);
    font-size: 14px;
    letter-spacing: 0.05em;
    margin-bottom: 5px;
    font-weight: 400;
    font-style: italic;
}

.section-ja {
    font-size: 24px;
    font-weight: 900;
    color: var(--green-dark);
}

/* HEADER */
.header {
    background: white;
    padding: 10px 15px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    display: flex;
    flex-direction: column;
}

.header-logo-sub {
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.header-logo-main {
    font-size: 22px;
    font-weight: 900;
    color: var(--green-dark);
    letter-spacing: 0.05em;
}

.header-cta-btn {
    background-color: var(--green-main);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* HERO TOP BADGE */
.hero-top-badge {
    background-color: var(--green-main);
    color: white;
    text-align: center;
    font-size: 13px;
    padding: 8px 5px;
    font-weight: 700;
    letter-spacing: 0.03em;
}

/* HERO SECTION */
.hero {
    position: relative;
    padding: 30px 20px 25px;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.85) 0%, rgba(238, 247, 242, 0.75) 50%, rgba(255, 255, 255, 0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.hero-badge-main {
    background-color: var(--green-dark);
    color: white;
    text-align: center;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-badge-main .badge-small {
    font-size: 12px;
    font-weight: 500;
    display: block;
    margin-bottom: 4px;
    opacity: 0.9;
}

.hero-badge-main .badge-large {
    font-size: 34px;
    font-weight: 900;
    letter-spacing: 0.1em;
    line-height: 1.1;
}

.hero-features-text {
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    line-height: 2;
}

.hero-features-text p {
    margin: 0;
}

.hl-green {
    color: var(--green-dark);
    font-size: 18px;
    font-weight: 900;
}

.hero-sub-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.sub-badge {
    background: var(--green-light-bg);
    border: 1.5px solid var(--green-main);
    color: var(--green-dark);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.hero-cta-group {
    width: 100%;
    display: flex;
    gap: 10px;
}

.cta-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 10px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 13px;
    text-align: center;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
    transition: transform 0.2s, box-shadow 0.2s;
    color: white;
    line-height: 1.3;
}

.cta-btn:active {
    transform: translateY(2px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.cta-btn i {
    font-size: 22px;
}

.line-btn {
    background-color: #06c755;
}

.phone-btn {
    background-color: var(--blue);
}

/* ABOUT SECTION */
.about-intro {
    text-align: center;
    font-size: 14px;
    color: var(--text-body);
    margin-bottom: 30px;
    line-height: 1.9;
}

.about-intro strong {
    color: var(--green-dark);
    font-weight: 900;
}

.about-circles {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.about-circle-item {
    display: flex;
    justify-content: center;
}

.about-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: var(--green-light-bg);
    border: 3px solid var(--green-main);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 900;
    color: var(--green-dark);
    font-size: 14px;
    line-height: 1.3;
}

.about-badge-area {
    text-align: center;
    margin-top: 20px;
}

.about-badge-green {
    display: inline-block;
    background: var(--green-main);
    color: white;
    padding: 8px 30px;
    border-radius: 25px;
    font-weight: 900;
    font-size: 18px;
    margin-bottom: 10px;
}

.about-badge-sub {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.about-small {
    font-size: 12px;
    color: var(--green-dark);
    background: var(--green-light-bg);
    display: inline-block;
    padding: 4px 15px;
    border-radius: 15px;
    margin: 3px 0;
    font-weight: 500;
}

/* WORKS SECTION */
.work-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 25px;
}

.work-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
}

.work-card-title {
    background: var(--green-main);
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 900;
    text-align: center;
}

.work-card-body {
    display: flex;
    gap: 15px;
    padding: 15px;
    align-items: flex-start;
}

.work-card-text {
    flex: 1;
    font-size: 13px;
    line-height: 1.7;
    color: var(--text-body);
}

.work-card-note {
    margin-top: 8px;
    font-size: 11px;
    color: var(--green-dark);
    font-weight: 700;
}

.work-card-img {
    width: 140px;
    flex-shrink: 0;
}

.work-card-img img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.works-cta-btn {
    display: block;
    background: var(--blue);
    color: white;
    text-align: center;
    padding: 14px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 3px 10px rgba(21, 101, 192, 0.3);
    transition: transform 0.2s;
}

.works-cta-btn:active {
    transform: translateY(2px);
}

/* FEATURES SECTION */
.feature-bars {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-bar {
    background: white;
    border-radius: 12px;
    border: 1.5px solid var(--green-main);
    display: flex;
    align-items: center;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.feature-bar-label {
    background: var(--green-main);
    color: white;
    font-weight: 900;
    font-size: 14px;
    padding: 12px 15px;
    white-space: nowrap;
    min-width: 100px;
    text-align: center;
}

.feature-bar-desc {
    flex: 1;
    padding: 10px 12px;
    font-size: 13px;
    color: var(--text-body);
}

.feature-bar-icon {
    width: 50px;
    height: 50px;
    padding: 5px;
    flex-shrink: 0;
}

.feature-bar-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* SUPPORT SECTION */
.support {
    background: linear-gradient(135deg, var(--green-light-bg), #d4edda);
}

.support-catch {
    text-align: center;
    font-size: 18px;
    font-weight: 900;
    color: var(--green-dark);
    margin-bottom: 20px;
}

.support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.support-item {
    background: white;
    border-radius: 12px;
    padding: 18px 14px;
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-body);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    text-align: center;
}

/* FLOW SECTION */
.flow-subtitle {
    text-align: center;
    font-size: 14px;
    color: var(--green-dark);
    font-weight: 700;
    margin-bottom: 25px;
}

.flow-steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.flow-step {
    background: white;
    border-radius: 12px;
    padding: 18px 20px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--green-pale);
}

.flow-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--green-main);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 16px;
    flex-shrink: 0;
}

.flow-step-content h4 {
    font-size: 15px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.flow-step-content p {
    font-size: 12px;
    color: var(--text-muted);
}

.flow-arrow {
    text-align: center;
    color: var(--green-main);
    font-size: 20px;
    padding: 6px 0;
}

.flow-cta-group {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

.flow-cta-btn {
    flex: 1;
    display: block;
    text-align: center;
    padding: 12px 15px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    color: white;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
}

.flow-cta-green {
    background: var(--green-dark);
}

.flow-cta-line {
    background: #06c755;
}

/* STAFF SECTION */
.staff-intro-text {
    text-align: center;
    font-size: 14px;
    color: var(--text-body);
    margin-bottom: 20px;
    line-height: 1.8;
}

.staff-placeholder {
    background: white;
    border-radius: 12px;
    padding: 20px;
    border: 1px dashed var(--green-pale);
}

.staff-card-placeholder {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.staff-photo-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    background: #e0e0e0;
    flex-shrink: 0;
}

.staff-text-placeholder {
    flex: 1;
    font-size: 12px;
    color: #ccc;
    line-height: 1.6;
}

/* MERITS SECTION */
.merit-visual {
    margin-bottom: 25px;
    border-radius: 15px;
    overflow: hidden;
}

.merit-bg-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.merit-circles {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.merit-circle {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--green-main);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.merit-circle-title {
    font-size: 13px;
    font-weight: 900;
    color: var(--green-dark);
    line-height: 1.2;
}

.merit-circle-desc {
    font-size: 10px;
    color: var(--text-muted);
    line-height: 1.3;
    margin-top: 3px;
}

/* FAQ SECTION */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.faq-q {
    background: var(--green-main);
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    font-weight: 700;
    font-size: 14px;
}

.q-icon {
    font-size: 18px;
    font-weight: 900;
    font-family: var(--font-en);
    flex-shrink: 0;
}

.q-text {
    flex: 1;
}

.faq-a {
    display: flex;
    gap: 10px;
    padding: 14px 15px;
    align-items: flex-start;
}

.a-icon {
    font-size: 18px;
    font-weight: 900;
    color: var(--green-dark);
    font-family: var(--font-en);
    flex-shrink: 0;
}

.faq-a p {
    font-size: 13px;
    color: var(--text-body);
    line-height: 1.6;
}

/* MEDIA SECTION (Blog & Instagram) */
.media-block {
    margin-bottom: 40px;
}

.media-block:last-child {
    margin-bottom: 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 15px;
}

.blog-thumb {
    background: #e8e8e8;
    border-radius: 8px;
    aspect-ratio: 3/2;
}

.insta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 6px;
    margin-bottom: 15px;
}

.insta-thumb {
    background: #e8e8e8;
    border-radius: 4px;
    aspect-ratio: 1;
}

.media-more-btn {
    display: block;
    text-align: center;
    padding: 10px 20px;
    background: var(--blue);
    color: white;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 2px 6px rgba(21, 101, 192, 0.2);
}

/* ACCESS SECTION */
.map-wrapper {
    margin-bottom: 20px;
}

.map-placeholder {
    background: var(--green-light-bg);
    height: 250px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--text-muted);
    border: 1px solid var(--green-pale);
}

.access-info {
    text-align: center;
}

.access-name {
    font-size: 16px;
    font-weight: 900;
    color: var(--green-dark);
    margin-bottom: 8px;
}

.access-address {
    font-size: 14px;
    color: var(--text-body);
    margin-bottom: 5px;
}

.access-note {
    font-size: 12px;
    color: var(--green-dark);
    font-weight: 500;
}

/* FOOTER CTA */
.footer-cta {
    background: linear-gradient(180deg, var(--green-light-bg) 0%, #c8e6c9 100%);
    padding: 40px 20px;
    text-align: center;
}

.footer-cta-catch {
    font-size: 20px;
    font-weight: 900;
    color: var(--green-dark);
    margin-bottom: 5px;
}

.footer-cta-sub {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.footer-cta-img {
    width: 100%;
    max-width: 300px;
    border-radius: 15px;
    margin: 0 auto 20px;
}

.footer-cta-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 16px;
    color: var(--green-dark);
}

.badge-free {
    background: var(--yellow);
    color: var(--text-dark);
    padding: 4px 12px;
    border-radius: 5px;
    font-weight: 900;
    font-size: 14px;
}

.footer-cta-note {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.footer-cta-contact-btn {
    display: inline-block;
    background: var(--green-dark);
    color: white;
    padding: 15px 40px;
    border-radius: 12px;
    font-weight: 900;
    font-size: 16px;
    line-height: 1.4;
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
}

/* FOOTER */
.footer {
    background: var(--bg-white);
    padding: 30px 20px 15px;
    border-top: 2px solid var(--green-pale);
}

.footer-top {
    text-align: center;
    margin-bottom: 20px;
}

.footer-label {
    font-size: 11px;
    color: var(--text-muted);
}

.footer-logo {
    font-size: 24px;
    font-weight: 900;
    color: var(--green-dark);
    margin-bottom: 5px;
}

.footer-address {
    font-size: 12px;
    color: var(--text-muted);
}

.footer-nav {
    margin-bottom: 20px;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    justify-content: center;
}

.footer-nav li {
    padding: 0;
}

.footer-nav a {
    font-size: 12px;
    color: var(--text-muted);
    padding: 4px 8px;
    display: inline-block;
}

.footer-nav a::before {
    content: '・';
}

.footer-nav li:first-child a::before {
    content: '';
}

.footer-cta-btns {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 10px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 12px;
    color: white;
    text-align: center;
    line-height: 1.3;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.footer-btn i {
    font-size: 20px;
}

.footer-line-btn {
    background: #06c755;
}

.footer-phone-btn {
    background: var(--blue);
}

.footer-bottom {
    text-align: center;
    font-size: 10px;
    color: #aaa;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

/* =========================================================
   レスポンシブ対応（タブレット・PC向け 768px以上）
   ========================================================= */
@media screen and (min-width: 768px) {
    /* 全体的な余白と幅の最適化 */
    .section-padding {
        padding: 80px 40px;
    }

    .hero-content, .about-intro, .about-circles, .about-badge-area, 
    .work-cards, .feature-bars, .support-grid, .flow-steps, 
    .staff-placeholder, .merit-visual, .merit-circles, .faq-list, 
    .media-block, .access-info, .footer-top, .footer-nav ul, 
    .footer-cta-btns, .footer-bottom, .footer-cta-inner {
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
    }

    /* HEADER */
    .header-inner {
        max-width: 1200px;
        margin: 0 auto;
    }
    .header-logo-main {
        font-size: 28px;
    }

    /* HERO */
    .hero {
        min-height: 500px;
        padding: 60px 20px;
    }
    .hero-badge-main .badge-large {
        font-size: 48px;
    }
    .hero-features-text {
        font-size: 20px;
    }
    .hl-green {
        font-size: 24px;
    }
    .hero-cta-group {
        max-width: 600px;
        margin: 0 auto;
    }

    /* ABOUT */
    .about-intro {
        font-size: 16px;
    }
    .about-circle {
        width: 130px;
        height: 130px;
        font-size: 16px;
    }

    /* WORKS (縦並びを3カラムの横並びに変更) */
    .work-cards {
        flex-direction: row;
        justify-content: space-between;
        gap: 20px;
    }
    .work-card {
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    .work-card-body {
        flex-direction: column;
        flex: 1;
    }
    .work-card-img {
        width: 100%;
        margin-top: auto;
    }
    .works-cta-btn {
        max-width: 400px;
        margin: 0 auto;
    }

    /* FEATURES (2カラムグリッドに変更) */
    .feature-bars {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* SUPPORT (4カラムグリッドに変更) */
    .support-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    /* FLOW (縦並びを横並びにし、矢印の向きを変更) */
    .flow-steps {
        flex-direction: row;
        align-items: stretch;
        justify-content: center;
        gap: 10px;
    }
    .flow-step {
        flex: 1;
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }
    .flow-arrow {
        display: flex;
        align-items: center;
        padding: 0;
    }
    .flow-arrow i {
        transform: rotate(-90deg); /* 下矢印を右矢印に */
        font-size: 24px;
    }
    .flow-cta-group {
        max-width: 600px;
        margin: 30px auto 0;
    }

    /* MERITS */
    .merit-visual {
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    .merit-circles {
        gap: 40px;
    }
    .merit-circle {
        width: 150px;
        height: 150px;
    }
    .merit-circle-title {
        font-size: 16px;
    }
    .merit-circle-desc {
        font-size: 12px;
    }

    /* MEDIA */
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    .insta-grid {
        grid-template-columns: repeat(6, 1fr);
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    .media-more-btn {
        max-width: 300px;
        margin: 0 auto;
    }
}