:root {
    /* Colors - 緑とオレンジを基調としたカラースキーム */
    --bg-color: #ffffff;
    --bg-secondary: #f8f9fa;
    --text-color: #1a1a1a;
    --text-secondary: #666666;
    --text-light: #999999;
    --primary-green: #52B870;
    --primary-orange: #ff8c00;
    --accent-color: #52B870;
    --border-color: #e5e5e5;

    /* Fonts */
    --font-main: 'Noto Sans JP', 'Helvetica Neue', Arial, sans-serif;

    /* Spacing */
    --container-width: 1100px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-main);
    line-height: 1.8;
    color: var(--text-color);
    background-color: var(--bg-secondary);
    font-size: 16px;
}

/* ============================================================
   Animated Mesh Background
   ============================================================ */
.background-mesh {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: #fdfdfd;
}

.background-mesh::before,
.background-mesh::after {
    display: none;
}


.background-overlay {
    display: none;
}

/* ============================================================
   Layout
   ============================================================ */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

main section:not(.hero-section):not(.fv-section),
.footer {
    width: 100%;
    max-width: none;
    margin: 0;
    backdrop-filter: none;
    border-radius: 0;
    box-shadow: none;
    border: none;
}

.section-padding {
    padding: 3rem 0;
}

.section-header {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    letter-spacing: -0.02em;
}

/* ============================================================
   Header
   ============================================================ */
.glass-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 45px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: -0.02em;
}

nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-green);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 20px;
    height: 14px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
    margin-left: auto;
}

.mobile-menu-btn span {
    width: 100%;
    height: 2px;
    background-color: var(--text-color);
    border-radius: 0;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* ============================================================
   Buttons
   ============================================================ */
.btn-primary {
    padding: 0.6rem 1.5rem;
    background: var(--primary-green);
    color: white !important;
    border: none;
    border-radius: 0;
    transition: all 0.3s ease;
    box-shadow: 0 3px 0 #2E9050, 0 4px 12px rgba(0, 163, 104, 0.35);
}

.btn-primary:hover {
    background: #3DA05E;
    box-shadow: 0 5px 0 #2E9050, 0 8px 18px rgba(0, 163, 104, 0.4);
    transform: translateY(-1px);
}

.btn-primary:active {
    box-shadow: 0 1px 0 #2E9050, 0 2px 6px rgba(0, 163, 104, 0.25);
    transform: translateY(2px);
}

.btn-glow {
    display: inline-block;
    padding: 1.1rem 2.8rem;
    background: var(--primary-green);
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-radius: 0;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
    box-shadow: 0 4px 16px rgba(0, 208, 132, 0.3);
    letter-spacing: 0.02em;
}

.btn-glow:hover {
    transform: translateY(-2px);
    background: #3DA05E;
    box-shadow: 0 6px 20px rgba(0, 208, 132, 0.4);
}

.btn-large {
    font-size: 1.1rem;
    padding: 1.2rem 3rem;
}

.btn-sub {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    margin-top: 0.3rem;
    opacity: 0.85;
}

/* ============================================================
   Animations
   ============================================================ */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================================
   Hero Section
   ============================================================ */
.hero-section {
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #f0f9f4;
    overflow: hidden;
    padding: 10rem 0 6rem;
    border-bottom: 1px solid var(--border-color);
}

.hero-section::after {
    display: none;
}

.hero-bg-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-bg-decoration::before,
.hero-bg-decoration::after {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 24px;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-left {
    flex: 1;
    text-align: left;
}

.hero-right {
    flex-shrink: 0;
    width: 340px;
}

.hero-benefit-card {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(0, 208, 132, 0.25);
    border-radius: 0;
    padding: 1.4rem 1.4rem 1rem;
    box-shadow: 0 12px 40px rgba(0, 208, 132, 0.15);
    text-align: center;
}

.hero-benefit-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-green);
    border-radius: 0;
    padding: 0.45rem 1.1rem;
    margin-bottom: 1rem;
}

.badge-tokuten {
    background: var(--primary-orange);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 0;
    padding: 0.15rem 0.55rem;
    letter-spacing: 0.05em;
}

.badge-label {
    color: white;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.hero-benefit-img {
    width: 100%;
    height: auto;
    border-radius: 0;
    display: block;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.3;
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.mission-text {
    font-size: 3.6rem;
    font-weight: 700;
    color: #1a2e44;
    line-height: 1.35;
    letter-spacing: 0.01em;
    margin-bottom: 1.8rem;
}

.hero-subtitle {
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 2.8rem;
}

.hero-accent {
    color: var(--primary-green);
    font-weight: 700;
}

.scroll-chevron {
    position: relative;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-top: 2rem;
    text-decoration: none;
    animation: chevron-bounce 2s ease-in-out infinite;
}

.chevron-icon {
    font-size: 1.4rem;
    color: var(--primary-green);
    font-weight: 600;
}

@keyframes chevron-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* ============================================================
   Vision Text (used on company page)
   ============================================================ */
.vision-text {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.8;
}

/* ============================================================
   Challenges Section
   ============================================================ */
.challenges-list {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 0;
    padding: 2rem 2.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.challenge-item {
    padding: 1.2rem 1.5rem;
    border-left: 3px solid var(--primary-green);
    margin-bottom: 0.75rem;
    background: rgba(0, 208, 132, 0.03);
    border-radius: 0 8px 8px 0;
}

.challenge-item:last-child {
    margin-bottom: 0;
}

.challenge-item p {
    color: var(--text-color);
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
}

/* ============================================================
   Services Section
   ============================================================ */
.service-hero {
    background: #f8f9fa;
    border: 1px solid var(--border-color);
    border-radius: 0;
    padding: 3rem;
    color: var(--text-color);
}

.service-hero-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.service-hero-desc {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.service-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin: 2.5rem 0;
}

.service-main-3 {
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 1rem;
}

.service-main-4 {
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 1rem;
}

.service-sub-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.service-menu-item {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--border-color);
    border-radius: 0;
    padding: 2rem 1.5rem 1.8rem;
    text-align: center;
    transition: all 0.3s ease;
}

.service-menu-item:hover {
    transform: translateY(-4px);
    border-color: var(--primary-green);
    box-shadow: 0 8px 24px rgba(0, 208, 132, 0.12);
}

.service-menu-item-sub {
    padding: 1.5rem 1.2rem 1.3rem;
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(0, 0, 0, 0.06);
}

.service-menu-item-sub h4 {
    font-size: 0.95rem;
}

.service-menu-item-sub p {
    font-size: 0.85rem;
}

.smi-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 0;
    background: rgba(0, 208, 132, 0.1);
    margin-bottom: 1rem;
}

.smi-icon-wrap-sub {
    width: 40px;
    height: 40px;
    border-radius: 0;
    background: rgba(0, 208, 132, 0.06);
}

.smi-icon {
    font-size: 0.85rem;
    color: var(--primary-green);
    font-weight: 700;
    line-height: 1;
    font-family: 'Inter', sans-serif;
}

.smi-icon-wrap-sub .smi-icon {
    font-size: 0.75rem;
}

.service-menu-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.6rem;
    line-height: 1.5;
}

.service-menu-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.service-format-note {
    margin-top: 2rem;
    padding: 1.5rem 2rem;
    background: rgba(0, 208, 132, 0.06);
    border-radius: 0;
    border-left: 4px solid var(--primary-green);
}

.service-format-note p {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.8;
    text-align: center;
}

/* ============================================================
   Profile Section
   ============================================================ */
.profile-card {
    max-width: 850px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 0;
    padding: 2.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.profile-inner {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
}

.profile-photo {
    flex-shrink: 0;
}

.profile-photo img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(0, 208, 132, 0.2);
}

.profile-info {
    flex: 1;
}

.profile-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.profile-name-en {
    display: inline-block;
    margin-left: 0.8rem;
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-light);
}

.profile-bio {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 1rem;
}

.profile-expertise {
    margin-top: 0.5rem;
}

.expertise-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 0.6rem;
    letter-spacing: 0.05em;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.expertise-tag {
    display: inline-block;
    padding: 0.35rem 0.9rem;
    background: rgba(0, 208, 132, 0.08);
    border: 1px solid rgba(0, 208, 132, 0.2);
    border-radius: 0;
    font-size: 0.85rem;
    color: var(--text-color);
    font-weight: 500;
}

/* ============================================================
   Reasons Section
   ============================================================ */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.reason-card {
    text-align: left;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-green);
}

.reason-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.reason-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 0.8rem;
}

.reason-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.reason-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ============================================================
   Achievements Section
   ============================================================ */
.achievements-kpi {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.kpi-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 0;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.kpi-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 208, 132, 0.1);
    border-color: rgba(0, 208, 132, 0.3);
}

.kpi-number {
    display: block;
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.kpi-label {
    display: block;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.achievements-content {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 0;
    padding: 2rem 2.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.achievements-cta-text {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.9;
    text-align: center;
    margin-bottom: 1rem;
}

.achievements-note {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-style: italic;
    text-align: center;
}

/* ============================================================
   CTA Section
   ============================================================ */
.cta-section {
    background: #f8f9fa;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 50px;
    background: var(--bg-secondary);
    clip-path: ellipse(55% 100% at 50% 0%);
    z-index: 1;
}

.cta-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 4rem;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(0, 208, 132, 0.2);
    border-radius: 0;
}

.cta-heading {
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.cta-main-text {
    margin-bottom: 1rem;
    color: var(--text-color);
    font-size: 1.15rem;
    line-height: 1.8;
}

.cta-sub-text {
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
}

/* ============================================================
   Company Info (info-row)
   ============================================================ */
.info-row {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    padding: 1.25rem 0;
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    width: 180px;
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.info-value {
    flex: 1;
    font-weight: 400;
    color: var(--text-color);
    font-size: 0.95rem;
}

/* ============================================================
   Page Hero (subpages)
   ============================================================ */
.page-hero {
    padding: 8rem 0 4rem;
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.page-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================================
   Company Page
   ============================================================ */
.company-vision-card {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 0;
    padding: 3rem 2.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.company-vision-card .vision-text {
    font-size: 1.65rem;
}

.company-vision-heading {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.company-info-card {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 0;
    padding: 2.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.company-info-inner {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.company-ceo-photo {
    flex-shrink: 0;
}

.company-ceo-photo img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(0, 208, 132, 0.2);
}

.company-info-table {
    flex: 1;
}

/* ============================================================
   FAQ Section
   ============================================================ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 0;
    padding: 2rem 2.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    margin-bottom: 1.5rem;
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.75rem;
}

.faq-answer {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
}

.faq-cta {
    text-align: center;
    margin-top: 4rem;
}

.faq-cta p {
    margin-bottom: 2rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* ============================================================
   Contact Section
   ============================================================ */
.contact-page-main {
    padding-top: 100px;
}

.contact-form-container {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    max-width: 700px;
    margin: 0 auto;
}

.contact-form {
    padding: 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 0;
    color: var(--text-color);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(0, 208, 132, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-message {
    text-align: center;
    padding: 2rem;
}

.form-message h3 {
    margin-bottom: 0.5rem;
}

.success-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
    padding: 3rem 0;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-mascot {
    width: 60px;
    height: auto;
}

.footer-company-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-color);
}

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

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-green);
}

.footer-details p {
    color: var(--text-light);
    font-size: 0.8rem;
    line-height: 1.8;
    text-align: center;
}

.footer-copyright {
    color: var(--text-light);
    font-size: 0.8rem;
    text-align: center;
}

/* ============================================================
   Floating Contact Button
   ============================================================ */
.floating-contact {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 999;
    transition: transform 0.3s ease;
}

.floating-contact:hover {
    transform: none;
}

.floating-label {
    padding: 13px 26px;
    background: var(--primary-green);
    color: white;
    font-size: 0.88rem;
    font-weight: 700;
    border-radius: 0;
    box-shadow:
        0 4px 0 #2E9050,
        0 6px 16px rgba(0, 163, 104, 0.45);
    letter-spacing: 0.03em;
    transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.floating-contact:hover .floating-label {
    box-shadow:
        0 6px 0 #2E9050,
        0 10px 24px rgba(0, 163, 104, 0.5);
    transform: translateY(-2px);
}

.floating-contact:active .floating-label {
    box-shadow:
        0 1px 0 #2E9050,
        0 2px 8px rgba(0, 163, 104, 0.3);
    transform: translateY(3px);
}

/* ============================================================
   New Sections — Common
   ============================================================ */
.new-section { padding: 3rem 0; background: #ffffff; }
.new-section.bg-light { background: #f4f4f4; }
.new-section.bg-accent { background: #e8f8f0; }

.sec-label-wrap { text-align: center; margin-bottom: 1rem; }
.sec-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary-green);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid var(--primary-green);
}

.new-heading {
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center;
    color: var(--text-color);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    line-height: 1.3;
}
.new-heading-sm { font-size: 2rem; font-weight: 700; color: var(--text-color); margin-bottom: 0.5rem; }
.new-sub { text-align: center; color: var(--text-secondary); font-size: 1rem; line-height: 1.9; margin-bottom: 1.5rem; }
#voice.new-section { padding: 1.8rem 0; }
#voice .new-heading { margin-bottom: 0.5rem; }
#voice .new-sub { margin-bottom: 1rem; }
#pricing.new-section { padding: 1.8rem 0; }
#pricing .new-heading { margin-bottom: 0.5rem; }
#pricing .new-sub { margin-bottom: 1.2rem; }

.btn-round-solid {
    display: inline-block;
    background: #00633A;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 0;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s;
}
.btn-round-solid:hover { background: #017c49; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,99,58,0.3); }

.btn-round-outline {
    display: inline-block;
    background: white;
    color: var(--text-color);
    padding: 1rem 2.5rem;
    border-radius: 0;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: 1.5px solid var(--border-color);
    transition: all 0.3s;
}
.btn-round-outline:hover { border-color: var(--primary-green); color: var(--primary-green); }

.btn-outline {
    display: inline-block;
    background: white;
    color: var(--text-color);
    padding: 0.75rem 2rem;
    border-radius: 0;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: 1.5px solid #ccc;
    transition: all 0.3s;
}
.btn-outline:hover { border-color: var(--primary-green); color: var(--primary-green); }
.btn-linkedin {
    background: #0A66C2;
    color: #ffffff !important;
    border-color: #0A66C2;
    padding: 0.45rem 1.4rem;
    font-size: 0.85rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    border-radius: 6px;
}
.btn-linkedin:hover { background: #004182; border-color: #004182; color: #ffffff !important; box-shadow: 0 3px 10px rgba(0,0,0,0.18); transform: translateY(-1px); }

.btn-outline-sm {
    display: inline-block;
    background: white;
    color: var(--text-color);
    padding: 0.55rem 1.4rem;
    border-radius: 0;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border: 1.5px solid #ccc;
    transition: all 0.3s;
    margin-top: 0.75rem;
}
.btn-outline-footer {
    display: inline-block;
    background: white;
    color: var(--text-color);
    padding: 0.75rem 2rem;
    border-radius: 0;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: 1.5px solid #ccc;
    transition: all 0.3s;
}

.cta-center { text-align: center; margin-top: 2.5rem; }
.note-dot { font-size: 0.85rem; color: var(--text-secondary); margin-top: 0.75rem; }
.note-dot.center { text-align: center; }
.note-small { font-size: 0.82rem; color: var(--text-secondary); margin-top: 1.5rem; }
.note-small.center { text-align: center; }
.section-link-row { text-align: right; margin-top: 2rem; }
.container-narrow { max-width: 860px; }

.green-num { color: var(--primary-green); font-weight: 700; }
.red-num { color: #e53e3e; font-weight: 700; }

/* ============================================================
   FREE診断 Section
   ============================================================ */
.shindan-sample {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    margin: 0 auto 2rem;
    max-width: 1000px;
}
.shindan-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    background: #fafafa;
}
.shindan-badge {
    background: rgba(0,208,132,0.12);
    color: var(--primary-green);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 0;
    border: 1px solid rgba(0,208,132,0.3);
}
.shindan-brand { font-size: 0.9rem; color: var(--text-light); font-weight: 600; }
.shindan-table { display: grid; grid-template-columns: 1.4fr 0.9fr 0.9fr 1.3fr 1.3fr; }
.shindan-col { padding: 1.2rem 1rem; border-right: 1px solid var(--border-color); font-size: 0.9rem; color: var(--text-color); }
.shindan-col:last-child { border-right: none; }
.shindan-col-head { font-weight: 700; font-size: 0.82rem; margin-bottom: 0.75rem; color: var(--text-color); }
.shindan-list { list-style: none; padding: 0; }
.shindan-list li { padding: 0.2rem 0; font-size: 0.88rem; }
.shindan-list li::before { content: "● "; color: var(--primary-green); font-size: 0.6rem; }
.priority-row { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; }
.priority-label { font-size: 0.82rem; width: 1rem; }
.priority-bar { height: 8px; border-radius: 4px; background: #e0e0e0; flex: 1; }
.priority-bar.high { background: var(--primary-green); width: 70%; flex: none; }
.priority-bar.mid { background: #aaa; width: 45%; flex: none; }
.priority-bar.low { background: #ccc; width: 25%; flex: none; }
.effect-row { padding: 0.3rem 0; font-size: 0.88rem; }
.cb-row { display: flex; align-items: center; gap: 0.4rem; padding: 0.3rem 0; font-size: 0.88rem; }
.cb-box { width: 14px; height: 14px; border: 1.5px solid #ccc; border-radius: 3px; flex-shrink: 0; }

/* ============================================================
   NUMBERS Section
   ============================================================ */
.numbers-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1px;
    background: var(--border-color);
    border: 1px solid var(--border-color);
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 1.5rem;
}
.number-item {
    background: white;
    padding: 2rem 1.5rem;
    text-align: center;
}
/* Row 1: 4 items × span 3 = 12 */
.number-item:nth-child(-n+4) { grid-column: span 3; }
/* Row 2: 3 items × span 4 = 12 */
.number-item:nth-child(n+5) { grid-column: span 4; }
.num-check { font-size: 2.4rem; font-weight: 700; color: var(--primary-green); line-height: 1; margin-bottom: 0.75rem; }
.num-label { font-size: 0.82rem; color: var(--text-secondary); margin-bottom: 0.75rem; line-height: 1.5; }
.num-value { font-size: 3.2rem; font-weight: 700; color: var(--text-color); line-height: 1; margin-bottom: 0.75rem; }
.num-unit { font-size: 1.2rem; font-weight: 400; color: var(--text-secondary); }
.num-plus { color: var(--primary-green); }
.num-small { font-size: 1rem; font-weight: 400; color: var(--text-secondary); }
.num-desc { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.6; }

/* ============================================================
   REASONS Section
   ============================================================ */
.reasons-grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}
.reasons-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.reasons-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.achievement-labels {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}
.achievement-label-head {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 0.1em;
    white-space: nowrap;
    padding-top: 0.3rem;
    flex-shrink: 0;
}
.achievement-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}
.ach-tag {
    display: inline-block;
    background: #f5f5f5;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.85rem;
    padding: 0.3rem 0.85rem;
    border-radius: 0;
    line-height: 1.6;
}
.reason-card-v2 {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1.4rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.4rem;
}
.reason-num-label { font-size: 0.68rem; color: var(--text-light); letter-spacing: 0.1em; }
.reason-num { font-size: 2rem; font-weight: 700; color: var(--primary-green); line-height: 1; margin-bottom: 0.25rem; }
.reason-icon-box { font-size: 1.4rem; margin-bottom: 0.5rem; }
.reason-icon-svg {
    width: 100%;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    overflow: hidden;
    border-radius: 8px;
}
.reason-icon-svg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
}
.reason-icon-svg svg {
    width: 110px;
    height: 110px;
}
.reason-card-v2 h4 { font-size: 1rem; font-weight: 700; color: var(--text-color); line-height: 1.4; }
.reason-card-v2 p { display: none; }
.reason-link { font-size: 0.85rem; color: var(--primary-green); text-decoration: none; font-weight: 600; margin-top: auto; }

/* ============================================================
   SERVICE Section
   ============================================================ */
.svc-illust {
    width: 100%;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,208,132,0.04);
    border-radius: 0;
    margin-bottom: 0.75rem;
    overflow: hidden;
}
.svc-illust img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 0;
    transition: transform 0.3s ease;
}
.service-card-v2:hover .svc-illust img {
    transform: scale(1.04);
}
.svc-illust svg {
    width: 100%;
    height: 100%;
    max-height: 100px;
}

.service-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}
.service-card-v2 {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 0;
    padding: 1.75rem 1.5rem;
    display: grid;
    grid-template-rows: 160px 1.6rem 3.6rem 1.6rem 1fr auto;
    gap: 0.4rem;
    position: relative;
}
.service-card-v2.service-featured {
    border: 1px solid var(--border-color);
}
.svc-num { font-size: 1.1rem; font-weight: 700; color: var(--primary-green); }
.service-card-v2 h3 { font-size: 1.05rem; font-weight: 700; color: var(--text-color); line-height: 1.4; overflow: hidden; }
.svc-tagline { font-size: 0.88rem; font-weight: 600; color: var(--primary-green); }
.service-card-v2 p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.8; flex: 1; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.25rem; }
.svc-tags span { background: rgba(0,208,132,0.08); border: 1px solid rgba(0,208,132,0.2); color: var(--text-color); font-size: 0.75rem; padding: 0.2rem 0.6rem; border-radius: 4px; }
.green-tag span { background: rgba(0,208,132,0.12); border-color: var(--primary-green); color: var(--primary-green); font-weight: 600; }
.svc-stats-row { display: flex; gap: 1rem; margin: 0.5rem 0; }
.svc-stat-label { font-size: 0.75rem; color: var(--text-secondary); }
.svc-stat-val { font-size: 1rem; font-weight: 700; color: var(--text-color); }
.svc-stat-val strong { color: var(--primary-green); }
.svc-detail {
    margin-top: 0.9rem;
    align-self: start;
    justify-self: start;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--primary-green);
    font-size: 0.84rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: gap 0.2s, opacity 0.2s;
}
.svc-detail:hover { gap: 0.55rem; opacity: 0.8; }

/* ============================================================
   COMPARISON Section
   ============================================================ */
.comp-table-wrap { overflow-x: auto; margin-bottom: 1rem; }
.comp-table { width: 100%; border-collapse: collapse; background: white; border-radius: 0; overflow: hidden; border: 1px solid var(--border-color); }
.comp-table th, .comp-table td { padding: 1.1rem 1.4rem; border-bottom: 1px solid var(--border-color); font-size: 0.92rem; text-align: left; }
.comp-table th { background: #f7faf8; font-weight: 600; color: var(--text-secondary); font-size: 0.85rem; }
.comp-table tbody tr:last-child td { border-bottom: none; }
.comp-th-wn { background: rgba(0,208,132,0.06) !important; border-left: 2px solid var(--primary-green); }
.comp-td-wn { background: rgba(0,208,132,0.03); border-left: 2px solid var(--primary-green); }
.comp-recommended { background: var(--text-secondary); color: white; font-size: 0.65rem; padding: 0.15rem 0.5rem; border-radius: 4px; margin-left: 0.4rem; vertical-align: middle; }
.check-green { color: var(--primary-green); font-weight: 700; margin-right: 0.3rem; }

/* ============================================================
   AI診断セクション
   ============================================================ */
/* ============================================================
   AI診断バナー
   ============================================================ */
.shindan-banner {
    background: #F97316;
    padding: 1.8rem 0;
}
.shindan-banner-inner {
    display: flex;
    align-items: stretch;
    gap: 1.5rem;
}
.shindan-banner-left {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 160px;
    border-right: 1px solid rgba(255,255,255,0.3);
    padding-right: 1.5rem;
}
.shindan-banner-eyebrow {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.05em;
    margin-top: 0.4rem;
}
.shindan-banner-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
    line-height: 1.3;
}
.shindan-banner-items {
    display: flex;
    gap: 0;
    flex: 1;
    align-items: stretch;
}
/* 矢羽（シェブロン）スタイル */
.shindan-item-block {
    flex: 1;
    background: rgba(255,255,255,0.15);
    padding: 0.75rem 0.9rem 0.75rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    position: relative;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%, 12px 50%);
    margin-left: -12px;
}
.shindan-item-block:first-child {
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%);
    margin-left: 0;
    padding-left: 0.9rem;
}
.shindan-item-block:last-child {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 12px 50%);
}
.shindan-num {
    font-size: 0.62rem;
    font-weight: 700;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.05em;
}
.shindan-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}
.shindan-desc {
    font-size: 0.67rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.45;
    margin: 0;
}
.shindan-banner-btn {
    flex-shrink: 0;
    align-self: flex-start;
    background: #fff;
    color: #F97316;
    font-size: 0.9rem;
    font-weight: 800;
    padding: 0.7rem 1.6rem;
    border-radius: 6px;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: opacity 0.15s, transform 0.15s;
    min-width: 140px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.4;
}
.shindan-banner-btn:hover { opacity: 0.92; transform: translateY(-1px); }

/* ============================================================
   比較カード (Comparison cards — top 3)
   ============================================================ */
.comp-cards-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    margin-bottom: 1.2rem;
}
.comp-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    border: 1px solid var(--border-color);
}
.comp-card--highlight {
    border-top: 3px solid var(--primary-green);
}
.comp-card-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.04em;
    text-transform: none;
    padding: 0.7rem 1.1rem;
    background: #52B870;
    border-bottom: none;
}
.comp-card-split { padding: 0; display: flex; flex-direction: column; height: 100%; }
.comp-card-other, .comp-card-wn {
    padding: 0.9rem 1.1rem;
    font-size: 0.95rem;
    line-height: 1.7;
}
.comp-card-wn { flex: 1; }
.comp-card-other {
    background: #ffffff;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
    min-height: 6.5rem;
}
.comp-card-wn {
    background: rgba(0,208,132,0.12);
    color: var(--text-color);
}
.comp-card-wn * {
    background: transparent;
}
.comp-other-tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    color: #999;
    border: 1px solid #ddd;
    border-radius: 0;
    padding: 0.1rem 0.45rem;
    margin-right: 0.4rem;
    vertical-align: middle;
    margin-bottom: 0.3rem;
}
.comp-wn-tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    color: #ffffff;
    background: #F97316;
    border: none;
    border-radius: 0;
    padding: 0.1rem 0.45rem;
    margin-right: 0.4rem;
    vertical-align: middle;
    margin-bottom: 0.3rem;
}
.comp-more-wrap {
    margin-bottom: 1rem;
}
.comp-toggle-btn {
    display: block;
    margin: 0 auto 1rem;
    background: none;
    border: 1.5px solid var(--primary-green);
    color: var(--primary-green);
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.6rem 2rem;
    border-radius: 0;
    cursor: pointer;
    transition: background 0.18s, color 0.18s;
    letter-spacing: 0.04em;
}
.comp-toggle-btn:hover {
    background: var(--primary-green);
    color: #fff;
}

/* ============================================================
   CEO プロフィールカード
   ============================================================ */
.ceo-profile-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin: 1.5rem 0 1.8rem;
}
.ceo-profile-card {
    background: #f7faf8;
    border-radius: 0;
    padding: 1rem 1.1rem;
    border: 1px solid var(--border-color);
}
.ceo-profile-card-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--primary-green);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}
.ceo-profile-card-val {
    font-size: 0.83rem;
    color: var(--text-color);
    line-height: 1.7;
}

/* ============================================================
   PROCESS Section
   ============================================================ */
.process-display {
    background: #1a1a2e;
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 1rem;
}
.process-display-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: #111;
    font-size: 0.82rem;
}
.proc-dot { width: 12px; height: 12px; border-radius: 50%; }
.proc-dot.red { background: #ff5f57; }
.proc-dot.yellow { background: #febc2e; }
.proc-dot.grn { background: #28c840; }
.proc-title { flex: 1; text-align: center; color: #ccc; font-size: 0.8rem; }
.proc-share { color: var(--primary-green); font-size: 0.78rem; }
.process-phases {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 0;
    padding: 2rem;
    align-items: center;
}
.phase-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 0;
    padding: 1.5rem 1.2rem;
    color: white;
}
.phase-card.phase-current {
    background: rgba(0,208,132,0.12);
    border-color: var(--primary-green);
}
.phase-label { font-size: 0.72rem; color: var(--primary-green); font-weight: 700; letter-spacing: 0.1em; margin-bottom: 0.4rem; }
.phase-card h4 { font-size: 1.05rem; font-weight: 700; color: white; margin-bottom: 0.25rem; }
.phase-sub { font-size: 0.78rem; color: #aaa; margin-bottom: 0.75rem; }
.phase-card ul { list-style: none; padding: 0; margin-bottom: 1rem; }
.phase-card ul li { font-size: 0.82rem; color: #ccc; padding: 0.2rem 0; }
.phase-card ul li::before { content: "• "; color: var(--primary-green); }
.phase-duration { background: rgba(255,255,255,0.08); border-radius: 4px; padding: 0.35rem 0.8rem; font-size: 0.78rem; color: #ddd; display: inline-block; }
.phase-arrow { color: var(--primary-green); font-size: 1.5rem; padding: 0 0.5rem; }

/* ============================================================
   TEAM Section
   ============================================================ */
.team-split {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: start;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 1.5rem;
}
.team-col { padding: 2.5rem 2rem; }
.team-col-right { border-left: 2px solid var(--primary-green); }
.team-col-head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.team-col-icon { font-size: 2rem; }
.team-col-head h3 { font-size: 1.2rem; font-weight: 700; color: var(--text-color); margin-bottom: 0.25rem; }
.team-col-head p { font-size: 0.85rem; color: var(--text-secondary); }
.team-item { display: flex; gap: 0.75rem; margin-bottom: 1.2rem; align-items: flex-start; }
.team-dot { width: 10px; height: 10px; background: var(--primary-green); border-radius: 50%; flex-shrink: 0; margin-top: 6px; }
.team-item strong { display: block; font-size: 0.95rem; font-weight: 700; color: var(--text-color); margin-bottom: 0.2rem; }
.team-item p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.7; margin: 0; }
.team-tools { font-size: 0.8rem; color: var(--text-light); margin-top: 0.5rem; }
.team-divider { display: flex; align-items: center; justify-content: center; padding: 2rem 0; }
.collaborate-badge { background: #f0faf5; border: 1.5px solid rgba(0,208,132,0.3); border-radius: 4px; padding: 0.5rem 1rem; font-size: 0.8rem; font-weight: 600; color: var(--primary-green); white-space: nowrap; }
.check-circle { width: 22px; height: 22px; background: var(--primary-green); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.team-note { font-size: 0.9rem; color: var(--text-secondary); }
.orange-dot { color: var(--primary-orange); margin-right: 0.3rem; }

/* ============================================================
   VOICE Section
   ============================================================ */
.voice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 1.5rem; }
.voice-card-v2 {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1.2rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.quote-mark { font-size: 2.5rem; line-height: 1; color: var(--primary-green); font-family: Georgia, serif; }
.voice-card-v2 p { font-size: 0.88rem; color: var(--text-color); line-height: 1.75; flex: 1; }
.voice-author { display: flex; align-items: center; justify-content: flex-end; gap: 0.75rem; text-align: right; }
.voice-avatar { display: none; }
.voice-role { font-size: 0.8rem; font-weight: 600; color: var(--text-color); }
.voice-project { font-size: 0.75rem; color: var(--text-light); }

/* ============================================================
   MESSAGE Section
   ============================================================ */
.message-split { display: grid; grid-template-columns: 1.1fr 1.3fr; gap: 3rem; align-items: start; margin-top: 2rem; }
.message-img-placeholder {
    background: #f0f0f0;
    border-radius: 0;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}
.message-img-placeholder img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    z-index: 1;
}
.placeholder-text { text-align: center; color: #aaa; font-size: 0.9rem; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.message-name-badge { background: rgba(0,0,0,0.6); color: white; font-size: 0.85rem; padding: 0.75rem 1rem; border-radius: 4px; line-height: 1.6; position: relative; z-index: 10; }
.message-name-badge span { font-size: 0.75rem; color: #ccc; }
.ceo-badge { display: inline-block; background: rgba(0,208,132,0.1); border: 1px solid rgba(0,208,132,0.3); color: var(--primary-green); font-size: 0.72rem; font-weight: 700; padding: 0.3rem 0.8rem; border-radius: 4px; letter-spacing: 0.08em; margin-bottom: 1rem; }
.message-heading { font-size: 2rem; font-weight: 700; line-height: 1.5; margin-bottom: 1.5rem; color: var(--text-color); }
.orange-underline { text-decoration: underline; text-decoration-color: var(--primary-orange); text-underline-offset: 4px; }
.message-text p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.9; margin-bottom: 1rem; }
.ceo-profile-table { border: 1px solid var(--border-color); border-radius: 0; overflow: hidden; margin: 1.5rem 0; }
.ceo-row { display: grid; grid-template-columns: 5rem 1fr; border-bottom: 1px solid var(--border-color); font-size: 0.85rem; }
.ceo-row:last-child { border-bottom: none; }
.ceo-row span:first-child { padding: 0.75rem 1rem; background: #f7faf8; font-weight: 600; color: var(--text-secondary); font-size: 0.8rem; }
.ceo-row span:last-child { padding: 0.75rem 1rem; color: var(--text-color); }

/* ============================================================
   FLOW Section
   ============================================================ */
.flow-wrap { margin-bottom: 1.5rem; }
.flow-row { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr 1fr; gap: 0; }
.flow-item { padding: 0 1rem; }
.flow-spacer { }
.flow-day { font-size: 0.78rem; font-weight: 700; color: var(--text-secondary); margin-bottom: 0.4rem; }
.green-day { color: var(--primary-green); }
.flow-badge { background: var(--primary-green); color: white; font-size: 0.65rem; padding: 0.15rem 0.5rem; border-radius: 4px; margin-left: 0.3rem; }
.flow-item h4 { font-size: 0.95rem; font-weight: 700; color: var(--text-color); margin-bottom: 0.4rem; }
.flow-item p { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.7; }
.flow-top-row { margin-bottom: 0.5rem; }
.flow-top-row .flow-spacer, .flow-bot-row .flow-spacer { }
.flow-top-row .flow-item:nth-child(2), .flow-top-row .flow-item:nth-child(4) { visibility: hidden; }
.flow-bot-row .flow-item:nth-child(1), .flow-bot-row .flow-item:nth-child(3), .flow-bot-row .flow-item:nth-child(5) { visibility: hidden; }
.flow-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    margin: 0.25rem 0;
}
.flow-circle {
    width: 40px; height: 40px;
    border: 2px solid var(--primary-green);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem; font-weight: 700;
    color: var(--primary-green);
    background: white;
    flex-shrink: 0;
    z-index: 1;
}
.flow-circle.active { background: var(--primary-green); color: white; }
.flow-line { flex: 1; height: 2px; background: var(--primary-green); opacity: 0.3; }
.flow-bot-row { margin-top: 0.5rem; }

/* ============================================================
   PRICING Section
   ============================================================ */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-bottom: 1.5rem; }
.pricing-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 0;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
}
.pricing-card.pricing-featured {
    border: 1px solid var(--border-color);
}
.plan-label { font-size: 0.75rem; color: var(--text-light); letter-spacing: 0.12em; font-weight: 700; }
.pricing-card h3 { font-size: 1rem; font-weight: 700; color: var(--text-color); line-height: 1.4; }
.plan-target { font-size: 0.82rem; color: var(--text-secondary); }
.plan-price { font-size: 1.5rem; font-weight: 700; color: var(--text-color); line-height: 1.3; }
.plan-price.green-price { color: var(--primary-green); }
.plan-unit { font-size: 0.9rem; font-weight: 400; }
.plan-tax { font-size: 0.75rem; color: var(--text-light); font-weight: 400; }
.plan-monthly { font-size: 0.95rem; font-weight: 600; color: var(--text-color); }
.plan-features { list-style: none; padding: 0; flex: 1; }
.plan-features li { font-size: 0.85rem; color: var(--text-color); padding: 0.35rem 0; border-bottom: 1px solid #f0f0f0; display: flex; align-items: center; gap: 0.5rem; }
.plan-features li::before { content: "✓"; color: var(--primary-green); font-weight: 700; }
.plan-achievement { background: rgba(0,208,132,0.1); border-radius: 4px; padding: 0.4rem 0.8rem; font-size: 0.78rem; color: var(--primary-green); font-weight: 600; text-align: center; }

/* ============================================================
   FAQ v2 Section
   ============================================================ */
.faq-v2-list { margin-bottom: 2rem; }
.faq-v2-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 0;
    margin-bottom: 0.75rem;
    overflow: hidden;
}
.faq-v2-q {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    user-select: none;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
}
.faq-v2-q:hover { background: #fafafa; }
.faq-v2-q span:nth-child(2) { flex: 1; }
.faq-q-badge {
    background: var(--primary-green);
    color: white;
    font-size: 0.78rem;
    font-weight: 700;
    width: 26px; height: 26px;
    border-radius: 0;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.faq-toggle { font-size: 1.2rem; color: var(--text-secondary); flex-shrink: 0; }
.faq-v2-a {
    max-height: 0;
    overflow: hidden;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.8;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
    border-top: 1px solid transparent;
}
.faq-v2-item.open .faq-v2-a {
    max-height: 200px;
    padding: 1rem 1.5rem 1.2rem;
    border-top-color: var(--border-color);
}

/* ============================================================
   Final CTA Section
   ============================================================ */
.final-cta-section {
    background: #F97316;
    padding: 3rem 0;
}
.final-cta-section .final-cta-heading { color: #ffffff; }
.final-cta-section .final-cta-left p { color: rgba(255,255,255,0.88); }
.final-cta-section .final-cta-list li { color: rgba(255,255,255,0.92); }
.final-cta-section .final-cta-list li::before { color: #ffffff; }
.final-cta-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3rem; align-items: center; }
.final-cta-label { display: inline-block; background: var(--primary-green); color: white; font-size: 0.72rem; font-weight: 700; padding: 0.3rem 0.9rem; border-radius: 4px; letter-spacing: 0.06em; margin-bottom: 1rem; }
.final-cta-heading { font-size: 2.4rem; font-weight: 700; line-height: 1.4; color: var(--text-color); margin-bottom: 1.25rem; }
.final-cta-left p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.9; margin-bottom: 1.25rem; }
.final-cta-list { list-style: none; padding: 0; margin-bottom: 2rem; }
.final-cta-list li { font-size: 0.9rem; color: var(--text-color); padding: 0.25rem 0; display: flex; align-items: center; gap: 0.5rem; }
.final-cta-list li::before { content: "✓"; color: var(--primary-green); font-weight: 700; }
.final-cta-btns { display: flex; flex-direction: column; gap: 0.75rem; align-items: flex-start; }
.final-cta-pic { display: contents; }   /* 出し分け用wrapper。レイアウトは中のimgに委ねる */
.final-cta-img {
    width: 100%;
    max-width: 560px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* ============================================================
   Footer v2
   ============================================================ */
.footer-v2 { background: white; border-top: 1px solid var(--border-color); }
.footer-cta-strip { padding: 3rem 0; border-bottom: 1px solid var(--border-color); }
.footer-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.footer-brand-block { display: flex; align-items: flex-start; gap: 1rem; }
.footer-logo-v2 { height: 48px; width: auto; }
.footer-tagline { font-size: 0.95rem; font-weight: 600; color: var(--text-color); margin-bottom: 0.4rem; }
.footer-brand-desc { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.7; max-width: 400px; }
.footer-cta-btns { display: flex; flex-direction: column; gap: 0.75rem; align-items: flex-end; }
.footer-main { padding: 3rem 0; border-bottom: 1px solid var(--border-color); }
.footer-main-inner { display: grid; grid-template-columns: repeat(5, 1fr); gap: 2rem; }
.footer-col-head { font-size: 0.85rem; font-weight: 700; color: var(--text-color); margin-bottom: 1rem; }
.footer-col a, .footer-col p { display: block; font-size: 0.82rem; color: var(--text-secondary); text-decoration: none; margin-bottom: 0.5rem; line-height: 1.6; }
.footer-col a:hover { color: var(--primary-green); }
.footer-bottom { padding: 1.5rem 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom-inner p { font-size: 0.8rem; color: var(--text-light); }
.footer-legal { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.footer-legal a { font-size: 0.78rem; color: var(--text-light); text-decoration: none; }
.footer-legal a:hover { color: var(--primary-green); }

/* ============================================================
   CASE & AREA Section
   ============================================================ */

.ca-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.ca-tab {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 0;
    padding: 0.45rem 1rem;
    font-size: 0.82rem;
    color: #666;
    cursor: pointer;
    white-space: nowrap;
    font-family: inherit;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.ca-tab:hover {
    border-color: #aaa;
    color: #111;
}

.ca-tab.active {
    background: #111;
    border-color: #111;
    color: #ffffff;
    font-weight: 600;
}

.ca-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    align-items: flex-start;
}

.ca-side-label {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #111;
    border-left: 2px solid #111;
    padding: 0.5rem 0 0.5rem 0.4rem;
    flex-shrink: 0;
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    flex: 1;
}

.case-card {
    border: 1px solid var(--border-color);
    border-radius: 0;
    padding: 1.25rem;
    background: #fff;
}

.case-card-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 0.75rem;
}

.case-card-inner {
    display: flex;
    gap: 1rem;
}

.case-illust {
    flex-shrink: 0;
    width: 140px;
    height: 170px;
    overflow: hidden;
    border-radius: 6px;
}

.case-illust img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 6px;
    transition: transform 0.3s ease;
}
.case-card:hover .case-illust img {
    transform: scale(1.04);
}

.case-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.case-title {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.5;
    color: #111;
    margin: 0;
}

.case-desc {
    font-size: 0.8rem;
    color: #555;
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

.case-stat-box {
    background: #f0fdf7;
    border: 1px solid #b8edd3;
    border-radius: 0;
    padding: 0.65rem 0.85rem;
    margin-top: 0.25rem;
}

.case-stat-before {
    font-size: 0.72rem;
    color: #555;
    margin-bottom: 0.2rem;
}

.case-stat-big {
    font-size: 0.9rem;
    font-weight: 600;
    color: #111;
    line-height: 1.3;
}

.case-stat-num {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-green);
}

.case-footer {
    font-size: 0.72rem;
    color: #999;
    margin-top: 0.1rem;
}

/* CASEカード内の「対応内容例」: PCでは非表示、スマホでのみ表示（AREA統合用） */
.case-area-mobile { display: none; }

.area-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    flex: 1;
}

.area-card {
    border: 1px solid var(--border-color);
    border-radius: 0;
    padding: 1.25rem;
    background: #fff;
}

.area-card-header {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
}

.area-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: #e07b2a;
}

.area-dot {
    color: var(--primary-green);
    font-size: 0.65rem;
    line-height: 1;
}

.area-icon {
    width: 64px;
    height: auto;
    display: block;
    margin-bottom: 0.75rem;
}

.area-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #111;
    margin: 0 0 0.5rem;
    line-height: 1.5;
}

.area-desc {
    font-size: 0.78rem;
    color: #555;
    line-height: 1.65;
    margin: 0;
}

/* Area card body: icon left + text right */
.area-card-body {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}
.area-card-text { flex: 1; }
.area-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    display: block;
}

/* Tab panels */
.ca-panel { display: none; }
.ca-panel.ca-panel-active { display: block; }

/* ALL panel category labels */
.ca-all-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.ca-all-section-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: #555;
    letter-spacing: 0.06em;
    border-left: 3px solid #52B870;
    padding-left: 0.6rem;
    margin-bottom: 0.5rem;
}

.ca-cta-wrap {
    text-align: right;
    margin-top: 1.25rem;
}

.ca-cta-link {
    font-size: 0.875rem;
    color: #111;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid #111;
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
}

.ca-cta-link:hover {
    color: var(--primary-green);
    border-color: var(--primary-green);
}

/* ============================================================
   Responsive: Tablet (max-width: 900px)
   ============================================================ */
@media (max-width: 1024px) {
    .service-menu-grid,
    .service-main-3,
    .service-main-4,
    .service-sub-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .achievements-kpi {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
        margin: 0 auto 2rem;
    }
}

@media (max-width: 900px) {
    .reasons-grid,
    .reasons-grid-3,
    .reasons-grid-4,
    .reasons-grid-5 {
        grid-template-columns: 1fr 1fr;
    }

    .shindan-cards { grid-template-columns: repeat(3, 1fr); }
    .comp-cards-top { grid-template-columns: 1fr; }

    .service-hero {
        padding: 2rem 1.5rem;
    }

    .service-hero-title {
        font-size: 1.4rem;
    }

    .service-hero-desc {
        font-size: 0.95rem;
    }
}

/* ============================================================
   Responsive: Mobile (max-width: 768px)
   ============================================================ */
@media (max-width: 768px) {
    /* Typography */
    h1 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    /* Header */
    .logo img {
        height: 35px;
    }

    .logo-text {
        font-size: 1.25rem;
    }

    /* Mobile Navigation */
    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        z-index: 1000;
        padding: 0;
        margin: 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        font-size: 1rem;
        display: block;
        padding: 0.5rem 1rem;
    }

    /* Hero */
    .hero-section {
        min-height: auto;
        padding: 7rem 0 4rem;
    }

    .hero-section::after {
        height: 30px;
    }

    .mission-text {
        font-size: 1.8rem;
    }

    .achievements-kpi {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 2rem;
    }

    .footer-brand {
        flex-direction: column;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .vision-text {
        font-size: 1.4rem;
    }

    /* Sections */
    .section-padding {
        padding: 2.5rem 0;
    }

    .info-row {
        flex-direction: column;
        gap: 0.5rem;
    }

    .info-label {
        width: 100%;
    }

    /* Grids */
    .service-menu-grid,
    .service-main-3,
    .service-main-4,
    .service-sub-3 {
        grid-template-columns: 1fr;
    }

    .reasons-grid,
    .reasons-grid-3,
    .reasons-grid-4,
    .reasons-grid-5 {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .shindan-cards { grid-template-columns: 1fr 1fr; }
    .ceo-profile-cards { grid-template-columns: 1fr; }

    /* Cards */
    .challenges-list {
        padding: 1.5rem 1.2rem;
    }

    .profile-card {
        padding: 1.5rem;
    }

    .reason-card {
        padding: 1.8rem 1.5rem;
    }

    .achievements-content {
        padding: 1.5rem 1.2rem;
    }

    .profile-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .profile-photo {
        margin-bottom: 1rem;
    }

    .expertise-tags {
        justify-content: center;
    }

    .service-format-note p {
        font-size: 0.85rem;
    }

    /* CTA */
    .cta-section::before {
        height: 30px;
    }

    .cta-box {
        padding: 2.5rem 1.5rem;
    }

    .cta-heading {
        font-size: 1.5rem;
    }

    .cta-main-text {
        font-size: 1rem;
    }

    /* Footer */
    .footer-links {
        gap: 1rem;
    }

    /* Page Hero (subpages) */
    .page-hero {
        padding: 6rem 0 3rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .page-description {
        font-size: 1rem;
    }

    /* Company Page */
    .company-vision-card {
        padding: 2rem 1.5rem;
    }

    .company-vision-card .vision-text {
        font-size: 1.4rem;
    }

    .company-info-card {
        padding: 1.5rem;
    }

    .company-info-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }

    .company-ceo-photo img {
        width: 140px;
        height: 140px;
    }

    /* FAQ & Contact */
    .faq-item {
        padding: 1.5rem 1.2rem;
    }

    .contact-form-container {
        padding: 1.5rem;
    }

    /* Form */
    .form-group input,
    .form-group textarea {
        font-size: 16px; /* Prevent iOS zoom */
    }
}

/* Mascot */
.mascot-wrap {
    text-align: center;
    margin-bottom: 0.6rem;
}
.mascot-wrap.mascot-left {
    text-align: left;
}
.mascot-small {
    width: 52px;
    height: auto;
    display: inline-block;
}

/* 強みセクション：キャラ大きく覆いかかる */
.reasons-mascot-section {
    position: relative;
    overflow: visible;
}
.reasons-mascot-bg {
    position: absolute;
    top: 40px;
    right: 2%;
    z-index: 3;
    pointer-events: none;
    width: 420px;
    text-align: center;
}
.reasons-mascot-img {
    width: 420px;
    height: auto;
    display: block;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.10));
}

/* ============================================================
   Worries Section
   ============================================================ */

/* ============================================================
   FV Value Props Strip
   ============================================================ */
.fv-values-strip {
    position: absolute;
    bottom: 18px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    padding: 1.4rem 0;
    z-index: 5;
}
.fv-values-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}
.fv-value-item {
    flex: 1;
    max-width: 300px;
    text-align: left;
    padding: 0 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.2rem;           /* アイコンと文字の距離を狭く */
}
.fv-value-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fv-value-icon svg {
    width: 100%;
    height: 100%;
}
.fv-value-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}
.fv-value-text { flex: 1; }
.fv-value-title {
    font-size: 1.18rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 0.35rem;
    letter-spacing: -0.01em;
}
.fv-value-desc {
    font-size: 0.86rem;
    color: #666;
    line-height: 1.4;
    white-space: nowrap;
}
.fv-value-cross {
    font-size: 1.2rem;
    font-weight: 400;
    color: #ccc;
    flex-shrink: 0;
    margin-left: 3em;       /* ×と文字の距離を広めに */
    margin-right: 0rem;
}

.worries-section {
    padding: 3.5rem 0;
    background: #f5f5f5;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.worries-heading {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    text-align: center;
}
/* スマホ専用改行（PCでは改行しない） */
.br-sp { display: none; }

/* ハンバーガーメニュー内だけに出すセクションリンク（PCナビでは非表示） */
.nav-sp-only { display: none; }

.worries-sub {
    font-size: 0.95rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2.5rem;
}

/* 6-column grid: top 3 span 2 each, bottom 2 span 2 centered */
.worries-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.worry-card {
    position: relative;
    border-radius: 10px;
    overflow: visible;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    background: #fff;
    border: 1px solid var(--border-color);
}

/* Top row: 3 cards */
.worry-card:nth-child(1) { grid-column: 1 / 3; }
.worry-card:nth-child(2) { grid-column: 3 / 5; }
.worry-card:nth-child(3) { grid-column: 5 / 7; }

/* Bottom row: 2 cards centered */
.worry-card:nth-child(4) { grid-column: 2 / 4; }
.worry-card:nth-child(5) { grid-column: 4 / 6; }

/* Photo wrapper clips the image */
.worry-card-photo {
    position: relative;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
}

.worry-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 19 / 10;
}

/* Text block below photo */
.worry-card-text {
    display: grid;
    grid-template-columns: 28px 1fr;
    grid-template-rows: auto auto;
    column-gap: 0.5rem;
    row-gap: 0.15rem;
    padding: 0.55rem 0.85rem 0.65rem;
    border-radius: 0 0 10px 10px;
    border-top: 1px solid var(--border-color);
    align-items: start;
}

.worry-num {
    grid-column: 1;
    grid-row: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--primary-green);
    color: #fff;
    border-radius: 50%;
    font-size: 0.78rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.worry-title {
    grid-column: 2;
    grid-row: 1;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
    line-height: 1.35;
    align-self: center;
}

.worry-desc {
    grid-column: 1 / -1;
    grid-row: 2;
    font-size: 0.73rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.55;
}

/* ---- Speech Bubble ---- */
.worry-bubble {
    position: absolute;
    background: #ffffff;
    border-radius: 8px;
    padding: 5px 14px;
    font-size: 0.82rem;
    font-weight: 500;
    color: #333;
    line-height: 1.7;
    box-shadow: 0 3px 14px rgba(0,0,0,0.14);
    white-space: nowrap;
    pointer-events: none;
    z-index: 2;
}
.worry-bubble strong {
    font-weight: 800;
    color: #1a1a1a;
}

/* Tail shared base */
.worry-bubble::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
}

/* Upper-right bubble → tail points down-left */
.worry-bubble--tr {
    top: 7%;
    right: 5%;
}
.worry-bubble--tr::after {
    bottom: -13px;
    left: 18px;
    border: 8px solid transparent;
    border-top: 13px solid #ffffff;
    filter: drop-shadow(0 3px 2px rgba(0,0,0,0.08));
}

/* Upper-left bubble → tail points down-right */
.worry-bubble--tl {
    top: 7%;
    left: 5%;
}
.worry-bubble--tl::after {
    bottom: -13px;
    right: 18px;
    border: 8px solid transparent;
    border-top: 13px solid #ffffff;
    filter: drop-shadow(0 3px 2px rgba(0,0,0,0.08));
}

/* 吹き出し調整カードは写真枠のクリップを解除（はみ出しOK・画像は自身の角丸で対応） */
/* 並べ替え後の位置に合わせて overflow/角丸を付け替え（旧①②③⑤＝新④①②③） */
.worries-grid .worry-card:nth-child(1) .worry-card-photo,
.worries-grid .worry-card:nth-child(2) .worry-card-photo,
.worries-grid .worry-card:nth-child(3) .worry-card-photo,
.worries-grid .worry-card:nth-child(4) .worry-card-photo { overflow: visible; }
.worries-grid .worry-card:nth-child(1) .worry-img,
.worries-grid .worry-card:nth-child(2) .worry-img,
.worries-grid .worry-card:nth-child(3) .worry-img,
.worries-grid .worry-card:nth-child(4) .worry-img { border-radius: 10px 10px 0 0; }

/* 新①＝AI活用の進め方（旧②）の吹き出し：写真下部・尻尾は左／細く4行 */
.worries-grid .worry-card:nth-child(1) .worry-bubble {
    top: auto;
    bottom: calc(8% - 6px);        /* さらに3px上へ */
    right: calc(5% + 110px);       /* さらに2px左へ */
    left: auto;
    white-space: normal;           /* 折り返しを有効化して細く */
    max-width: 140px;              /* 幅を絞って4行に */
    padding: 5px 3px;              /* 左右パディングをさらに狭く */
}
.worries-grid .worry-card:nth-child(1) .worry-bubble::after {  /* 三角：左 */
    top: 16px;
    bottom: auto;
    left: -13px;
    right: auto;
    border: 8px solid transparent;
    border-left: 0;
    border-right: 13px solid #ffffff;
    border-top-width: 8px;
    filter: drop-shadow(-2px 0 2px rgba(0,0,0,0.06));
}

/* 新②＝システムの老朽化（旧③）の吹き出し：100px右・写真下部・尻尾は上 */
.worries-grid .worry-card:nth-child(2) .worry-bubble {
    left: calc(5% + 100px);
    top: auto;
    bottom: 8%;
}
.worries-grid .worry-card:nth-child(2) .worry-bubble::after {
    top: -13px;
    bottom: auto;
    left: 18px;
    right: auto;
    border: 8px solid transparent;
    border-top: 0;
    border-bottom: 13px solid #ffffff;
    filter: drop-shadow(0 -2px 2px rgba(0,0,0,0.06));
}

/* 新③＝予算（旧⑤）の吹き出し：300px右へ・尻尾を左 */
.worries-grid .worry-card:nth-child(3) .worry-bubble {
    left: calc(5% + 276px);
}
.worries-grid .worry-card:nth-child(3) .worry-bubble::after {  /* 三角：左 */
    top: 16px;
    bottom: auto;
    left: -13px;
    right: auto;
    border: 8px solid transparent;
    border-left: 0;
    border-right: 13px solid #ffffff;
    filter: drop-shadow(-2px 0 2px rgba(0,0,0,0.06));
}

/* 新④＝エンジニア不在（旧①）の吹き出し：尻尾を下 */
.worries-grid .worry-card:nth-child(4) .worry-bubble {
    right: calc(5% + 120px);
    top: calc(7% + 50px);
}
.worries-grid .worry-card:nth-child(4) .worry-bubble::after {  /* 三角：下 */
    top: auto;
    bottom: -13px;
    left: 18px;
    right: auto;
    border: 8px solid transparent;
    border-bottom: 0;
    border-top: 13px solid #ffffff;
    filter: drop-shadow(0 3px 2px rgba(0,0,0,0.08));
}

/* 新⑤＝業務効率化（旧④）の吹き出し：三角を左 */
.worries-grid .worry-card:nth-child(5) .worry-bubble::after {
    top: 16px !important;
    bottom: auto !important;
    left: -13px !important;
    right: auto !important;
    border: 8px solid transparent !important;
    border-left: 0 !important;
    border-right: 13px solid #ffffff !important;
    filter: drop-shadow(-2px 0 2px rgba(0,0,0,0.06)) !important;
}

@media (max-width: 900px) {
    .worries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .worry-card:nth-child(1),
    .worry-card:nth-child(2),
    .worry-card:nth-child(3),
    .worry-card:nth-child(4),
    .worry-card:nth-child(5) {
        grid-column: span 1;
    }
    .worry-bubble {
        font-size: 0.72rem;
        padding: 7px 10px;
    }
}

@media (max-width: 600px) {
    .worries-grid {
        grid-template-columns: 1fr;
    }
    .worry-bubble {
        white-space: normal;
        font-size: 0.8rem;
    }
}

/* ============================================================
   FV 2025 — Header overrides
   ============================================================ */
.glass-header {
    height: 72px;
}

.fv-header-inner {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
    gap: 1.5rem;
}

.fv-header-inner .logo img { height: 40px; }

/* navをロゴから離して右寄せ */
.glass-header nav { margin-left: auto; margin-right: 1rem; }

.nav-links { gap: 1.6rem; }
.nav-links a { font-size: 0.85rem; }
.nav-chevron { font-size: 0.58rem; opacity: 0.55; margin-left: 1px; vertical-align: middle; }

.fv-header-btns {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
}

.fv-hbtn-outline {
    display: inline-flex;
    align-items: center;
    padding: 0.65rem 1.8rem;
    background: #F97316;
    border: none;
    border-radius: 0;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    line-height: 1;
    box-shadow: 0 3px 0 #c75b0a, 0 4px 12px rgba(249,115,22,0.35);
    transition: box-shadow 0.15s, transform 0.15s;
}
.fv-hbtn-outline:hover {
    color: #ffffff;
    box-shadow: 0 5px 0 #c75b0a, 0 6px 16px rgba(249,115,22,0.4);
    transform: translateY(-1px);
}
.fv-hbtn-outline:active {
    box-shadow: 0 1px 0 #c75b0a, 0 2px 6px rgba(249,115,22,0.3);
    transform: translateY(2px);
}

.fv-hbtn-solid {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.48rem 1.05rem;
    background: #52B870;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 0;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s;
    line-height: 1;
}
.fv-hbtn-solid:hover { background: #3DA05E; }

/* ヘッダー右：緑の「無料相談」ボタン */
.fv-hbtn-green {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.72rem 1.7rem;
    background: #3a9e60;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 6px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s, transform 0.15s, box-shadow 0.15s;
    line-height: 1;
    letter-spacing: 0.01em;
    box-shadow: 0 3px 10px rgba(58,158,96,0.3);
}
.fv-hbtn-green:hover { background: #2e8a52; transform: translateY(-2px); box-shadow: 0 5px 16px rgba(58,158,96,0.35); }
/* ヘッダーのサブCTA（お問い合わせ）：控えめなアウトライン */
.fv-hbtn-ghost {
    display: inline-flex;
    align-items: center;
    padding: 0.72rem 1.2rem;
    background: transparent;
    color: #333;
    font-size: 0.9rem;
    font-weight: 700;
    border: 1.5px solid #cfd6d2;
    border-radius: 6px;
    text-decoration: none;
    white-space: nowrap;
    line-height: 1;
    transition: border-color 0.2s, color 0.2s;
}
.fv-hbtn-ghost:hover { border-color: #3a9e60; color: #2e8a52; }

/* ============================================================
   FV 2025 — Hero Section
   ============================================================ */
.fv-section {
    position: relative;
    background: url('office-bg.webp') center right / cover no-repeat;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    padding-top: 72px;
    box-sizing: border-box;
    height: 570px;
}

/* 左側の白グラデーションオーバーレイ */
.fv-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(98deg,
        #ffffff 0%,
        #ffffff 28%,
        rgba(255,255,255,0.92) 42%,
        rgba(255,255,255,0.5) 58%,
        transparent 72%
    );
    z-index: 1;
    pointer-events: none;
}

/* Two-column grid */
.fv-inner {
    display: grid;
    grid-template-columns: 44% 56%;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 0 calc(4rem + 100px);
    position: relative;
    min-height: 0;
    height: 100%;
}

/* ---- Left column ---- */
.fv-left {
    display: flex;
    flex-direction: column;
    padding-right: 1.5rem;
    align-self: flex-start;
    padding-top: 1.8rem;
    position: relative;
    z-index: 20;            /* 左カラム全体を写真より前面に（CTAを確実に最前面へ） */
}

.fv-badge {
    display: inline-flex;
    align-items: center;
    border: 2px solid #52B870;
    background: transparent;
    color: #52B870;
    font-size: 1.05rem;
    font-weight: 700;
    padding: 0.3rem 1.0rem;
    letter-spacing: 0.06em;
    margin-bottom: 1.1rem;
    width: fit-content;
    border-radius: 0;
    transform: skewX(-12deg);
}

.fv-heading {
    font-size: 2.6rem;
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin-bottom: 0;
    white-space: nowrap;
}

.fv-heading-accent {
    display: block;
    color: #52B870;
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.04em;
    margin-bottom: 1.2rem;
}

.fv-sub {
    font-size: 0.92rem;
    color: #444;
    line-height: 1.85;
    margin-bottom: 1.8rem;
}

/* CTA row */
.fv-cta-wrap {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    margin-bottom: 0;
    margin-top: -0.8rem;
    position: relative;
    z-index: 30;            /* 特典カード(z-index:10)より前面に */
}

.fv-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #3a9e60;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
    padding: 1.1rem 2.8rem;
    border-radius: 4px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s, transform 0.15s, box-shadow 0.15s;
    letter-spacing: 0.02em;
    align-self: flex-start;
    min-width: 260px;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12), 0 4px 16px rgba(58,158,96,0.18);
}
.fv-cta-primary:hover { background: #2e8a52; transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.14), 0 6px 20px rgba(58,158,96,0.22); }
.fv-arrow { font-size: 1.1rem; margin-left: 4px; }

.fv-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: #52B870;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}
.fv-cta-secondary:hover { text-decoration: underline; }

/* Stats row */
.fv-stats {
    display: flex;
    align-items: center;
    gap: 0;
}

.fv-stat {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0 1.2rem;
}
.fv-stat:first-child { padding-left: 0; }

.fv-stat-divider {
    width: 1px;
    height: 36px;
    background: #ccd8c8;
}

.fv-stat-icon { flex-shrink: 0; }

.fv-stat-label {
    font-size: 0.68rem;
    color: #888;
    line-height: 1.3;
    margin-bottom: 0.1rem;
    white-space: nowrap;
}

.fv-stat-num {
    font-size: 1.55rem;
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1;
    letter-spacing: -0.02em;
}
.fv-stat-num span {
    font-size: 0.72rem;
    font-weight: 600;
    color: #555;
    letter-spacing: 0;
}

/* ---- Right column ---- */
.fv-right {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    height: 100%;
    padding-left: 0;
    padding-bottom: 100px; /* バリューストリップ分 */
    z-index: 2;            /* 白いグラデーション(::before z:1)より人物写真を前面に（帯z:5の後ろは維持） */
}

.fv-photo-area {
    position: relative;
    width: 100%;
    max-width: 620px;
    margin-left: -170px;
}

.fv-photo {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: bottom center;
    max-height: 520px;
    filter: drop-shadow(0 6px 24px rgba(0,0,0,0.13));
}

.fv-nameplate {
    position: absolute;
    bottom: calc(37% - 18px);
    right: calc(10% + 100px);
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    padding: calc(0.3rem + 2px) 0.8rem 0.3rem;
    border-radius: 0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.fv-nameplate-company {
    font-size: 0.62rem;
    color: #888;
    line-height: 1.2;
    margin-bottom: 0;
}
.fv-nameplate-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 0.06em;
}

/* ---- AI診断カード（FV右端に独立配置）---- */
.fv-card {
    position: absolute;
    right: calc(1.5rem + 88px);
    top: calc(50% - 40px);
    transform: translateY(-50%);
    width: 250px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.16);
    overflow: hidden;
    z-index: 10;
}

/* オレンジの三角リボン（左上） */
.fv-card-ribbon {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 92px 92px 0 0;
    border-color: #F97316 transparent transparent transparent;
    z-index: 3;
}
.fv-card-ribbon span {
    position: absolute;
    top: -84px;
    left: 4px;
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    transform: rotate(-45deg);
    white-space: nowrap;
}

.fv-card-inner {
    padding: 2.5rem 1rem 1rem;   /* 上部の特典リボンに見出しが被らないよう余白を確保 */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.fv-card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 0.5rem;
    padding-left: 0;
}

.fv-card-logo {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.fv-card-brand {
    font-size: 0.98rem;
    font-weight: 700;
    color: #1a1a1a;
}

.fv-card-title {
    font-size: 1.4rem;
    font-weight: 900;
    color: #2d7a4a;
    line-height: 1.3;
    margin-bottom: 0.7rem;
    padding-left: 0;
}
/* 特典カードの説明文はPCでは非表示（スマブ版レイアウトで使用） */
.fv-card-desc { display: none; }

/* FV下部ラッパー: PCでは箱を作らず、従来通りカード/価値を絶対配置のままにする */
.fv-bottom { display: contents; }

/* FV写真の<picture>はレイアウトに影響させない（imgを直接の子として扱う） */
.fv-photo-pic { display: contents; }

.fv-card-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: contain;
}
.fv-card-cta-btn {
    display: inline-block;
    margin-top: 0.7rem;
    padding: 0.45rem 1.6rem;
    border: 2px solid #3a8f58;
    border-radius: 999px;
    color: #3a8f58;
    background: #ffffff;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: background 0.2s, color 0.2s;
}
.fv-card-cta-btn:hover {
    background: #3a8f58;
    color: #ffffff;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .glass-header { height: 60px; }
    .fv-header-inner { padding: 0 1.5rem; }
    .fv-header-btns { display: none; }
    .nav-links { gap: 1.2rem; }

    /* flex+固定高さ570pxだと子要素が横並び・見切れになるため、ブロックflowに戻す */
    .fv-section { display: block; height: auto; min-height: auto; padding-top: 60px; }
    .fv-inner {
        grid-template-columns: 1fr;
        padding: 2.5rem 1.5rem 1.5rem;
        min-height: auto;
        height: auto;
        gap: 2rem;
    }
    .fv-left { padding-right: 0; }
    .fv-heading { font-size: 2.2rem; }
    .fv-heading-accent { font-size: 2.8rem; }
    .fv-watermark { font-size: 18vw; right: -5%; }

    .fv-right { min-height: auto; justify-content: flex-start; }
    .fv-photo-area { max-width: 320px; margin: 0 auto; }

    .fv-card {
        position: relative;
        right: auto;
        top: auto;
        bottom: auto;
        transform: none;
        margin: 1.5rem auto 0;
        width: 100%;
        max-width: 280px;
    }

    .fv-cta-wrap { flex-direction: column; align-items: flex-start; gap: 0.8rem; }
    .fv-stats { flex-wrap: wrap; gap: 0.5rem; }
    .fv-stat-divider { display: none; }
    .fv-stat { padding: 0 0.5rem; }
}

/* ============================================================
   Hero v2 Section (旧デザイン — 残置)
   ============================================================ */
.hero-v2-section {
    position: relative;
    background: #f7f9f7;
    padding: 6rem 0 4rem;
    overflow: hidden;
    min-height: 560px;
}

.hero-v2-watermark {
    position: absolute;
    top: 50%;
    right: -2%;
    transform: translateY(-50%);
    font-size: 22rem;
    font-weight: 900;
    color: rgba(0, 208, 132, 0.06);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    letter-spacing: -0.05em;
}

.hero-v2-inner {
    display: flex;
    align-items: center;
    gap: 3rem;
}

/* --- Left column --- */
.hero-v2-left {
    flex: 1 1 0;
    min-width: 0;
}

.hero-v2-badge {
    display: inline-block;
    border: 1.5px solid #1a1a1a;
    color: #1a1a1a;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 0.3rem 0.9rem;
    border-radius: 0;
    margin-bottom: 1.2rem;
}

.hero-v2-heading {
    font-size: 2.6rem;
    font-weight: 900;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.hero-v2-accent {
    color: var(--primary-green);
    display: block;
}

.hero-v2-sub {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.hero-v2-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #F97316;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.9rem 2.2rem;
    border-radius: 0;
    transition: all 0.2s;
    box-shadow: 0 4px 0 #c75b0a, 0 6px 16px rgba(249,115,22,0.35);
}

.hero-v2-btn:hover {
    background: #ea6b0e;
    box-shadow: 0 6px 0 #c75b0a, 0 10px 22px rgba(249,115,22,0.4);
    transform: translateY(-1px);
}

.hero-v2-btn:active {
    box-shadow: 0 1px 0 #c75b0a, 0 2px 8px rgba(249,115,22,0.25);
    transform: translateY(3px);
}

.hero-v2-btn-arrow {
    font-size: 1.2rem;
    line-height: 1;
}

/* --- Right column --- */
.hero-v2-right {
    flex: 0 0 380px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

.hero-v2-photo-wrap {
    position: relative;
    width: 260px;
}

.hero-v2-photo-placeholder {
    width: 260px;
    height: 340px;
    border-radius: 0;
    overflow: hidden;
    background: #e8ede8;
}

.hero-v2-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    display: block;
}

.hero-v2-nameplate {
    position: absolute;
    bottom: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.6rem 0.9rem;
    border-top-left-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.hero-v2-company {
    font-size: 0.72rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: 0.1rem;
}

.hero-v2-name {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
}

.hero-v2-feature-card {
    position: relative;
    background: #fdf9f0;
    border: 1px solid #eedfc0;
    border-radius: 0;
    padding: 1.6rem 1.4rem 1.4rem;
    width: 200px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.hero-v2-feature-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary-green);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.8rem;
    border-radius: 0;
}

.hero-v2-feature-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 0.8rem;
    margin-top: 0.4rem;
}

.hero-v2-feature-title {
    font-size: 1.15rem;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

.hero-v2-feature-title strong {
    font-weight: 900;
}

.hero-v2-feature-desc {
    font-size: 0.78rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
    text-align: left;
}

.hero-v2-feature-free {
    display: inline-block;
    border: 1.5px solid #ccc;
    border-radius: 0;
    padding: 0.3rem 1.8rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: #1a1a1a;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .hero-v2-section {
        padding: 5rem 0 3rem;
        min-height: auto;
    }

    .hero-v2-watermark {
        font-size: 10rem;
        right: -5%;
        top: auto;
        bottom: 0;
        transform: none;
    }

    .hero-v2-inner {
        flex-direction: column;
        gap: 2rem;
    }

    .hero-v2-heading {
        font-size: 2rem;
    }

    .hero-v2-right {
        flex: none;
        width: 100%;
        align-items: center;
    }

    .hero-v2-photo-wrap {
        width: 200px;
    }

    .hero-v2-photo-placeholder {
        width: 200px;
        height: 260px;
    }

    .hero-v2-feature-card {
        width: 100%;
        max-width: 320px;
    }
}

/* ============================================================
   Responsive: 新セクションのスマホ最適化（コンパクト化）
   FV特典カード/価値ストリップ、事例タブ、サービス、お客様の声など
   新しく追加したコンポーネントはモバイル指定が無かったため補完する
   ============================================================ */
@media (max-width: 900px) {
    /* FV価値ストリップ: 通常フローに戻す。ただしz-indexを効かせるため
       position:relativeにして、FVの白グラデオーバーレイ(::before)より前面へ
       （static だと z-index が無効になり、白いもやが被ってしまう） */
    .fv-values-strip {
        position: relative;
        z-index: 6;
        background: #ffffff;
        border: 1px solid var(--border-color);
        border-radius: 8px;
        padding: 1.1rem 1rem;
        margin-top: 1.5rem;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    .fv-values-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 0.9rem;
    }
    .fv-value-item { flex: none; max-width: none; padding: 0; }
    .fv-value-cross { display: none; }
    .fv-value-desc { white-space: normal; }
}

@media (max-width: 768px) {
    /* FV見出し: nowrap解除して折り返し、画面幅に収める */
    .fv-heading { font-size: 5.2rem; white-space: normal; }
    .fv-heading-accent { font-size: 5.85rem; }
    /* 代表直接伴走バッジ: 細長め（少しだけ大きく）＋8px下げ */
    .fv-badge { padding: 0.1rem 1.6rem; font-size: 0.9rem; margin-top: 8px; }

    /* セクション全体の余白・見出しを引き締める */
    .new-section { padding: 2.2rem 0; }
    .new-heading { font-size: 1.45rem; }
    .new-sub { font-size: 0.9rem; margin-bottom: 1.5rem; }

    /* 「こんな課題、抱えていませんか？」見出しが大きいので縮小し、「こんな課題、」で改行 */
    .worries-heading { font-size: 1.5rem; line-height: 1.4; }
    .worries-sub { font-size: 0.9rem; }
    /* スマホでは課題の吹き出しを非表示 */
    .worry-bubble { display: none !important; }
    .br-sp { display: inline; }   /* スマホのみ改行を有効化 */

    /* サービス: 4列 → 1列、画像と行を可変高さに */
    .service-grid-4 { grid-template-columns: 1fr; gap: 1rem; }
    .service-card-v2 {
        grid-template-rows: auto auto auto auto auto auto;
        padding: 1.3rem 1.2rem;
    }
    .svc-illust { height: 200px; }

    /* お客様の声: 3列 → 1列 */
    .voice-grid { grid-template-columns: 1fr; gap: 1rem; }

    /* 事例タブ: スマホはCASEカードだけの横スライダーに。
       AREAの内容は各CASEカード下部の「対応内容例」に統合済み */
    .ca-panel.ca-panel-active {
        display: flex;
        flex-wrap: nowrap;
        align-items: stretch;             /* CASEカードを全部同じ高さに揃える */
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 0.75rem;
        padding-bottom: 0.4rem;
        scrollbar-width: none;            /* Firefox: スクロールバー非表示 */
    }
    .ca-panel.ca-panel-active::-webkit-scrollbar { display: none; }  /* Chrome/Safari */

    /* CASE行のラッパーを解除し、カードをパネル直下のflex itemに昇格 */
    .ca-row { display: contents; }
    .ca-side-label { display: none; }     /* CASE/AREAの縦ラベル・線は非表示 */
    .case-cards-grid { display: contents; }
    .ca-row:has(.area-cards-grid) { display: none; }  /* 独立AREA行はスマホでは非表示 */

    .case-cards-grid > .case-card {
        flex: 0 0 86%;                    /* 1枚はほぼ全幅、残り14%で次カードがチラ見え */
        scroll-snap-align: start;
    }

    .ca-tab { padding: 0.4rem 0.5rem; font-size: 0.74rem; }
    /* CASEカード: 写真とテキストを横並び → 縦並び（写真が上・テキストが下） */
    .case-card-inner { flex-direction: column; gap: 0.85rem; }
    .case-illust { width: 100%; height: 180px; }

    /* CASEカード下部の「対応内容例」（AREA統合分） */
    .case-area-mobile {
        display: block;
        margin-top: 0.85rem;
        padding-top: 0.75rem;
        border-top: 1px dashed var(--border-color);
    }
    .case-area-label {
        display: inline-block;
        font-size: 0.66rem;
        font-weight: 700;
        color: #e07b2a;
        letter-spacing: 0.04em;
        margin-bottom: 0.3rem;
    }
    .case-area-title { font-size: 0.84rem; font-weight: 700; color: #111; line-height: 1.45; margin: 0 0 0.25rem; }
    .case-area-desc { font-size: 0.76rem; color: #555; line-height: 1.6; margin: 0; }

    /* AI診断バナー: スマホでは見出し＋ボタンのみ表示。01〜05のカードは非表示 */
    #shindan { display: block; }
    .shindan-banner { padding: 2rem 0; }
    .shindan-banner-inner { flex-direction: column; gap: 1.1rem; align-items: stretch; }
    .shindan-banner-left {
        min-width: 0;
        border-right: none;
        padding-right: 0;
        align-items: center;       /* 見出し・ボタンを中央揃え */
        text-align: center;
    }
    .shindan-banner-title { font-size: 1.4rem; }
    .shindan-banner-btn { align-self: center !important; }
    .shindan-banner-items { display: none; }   /* 01〜05のカードを削除 */

    /* 強み: 1列にして写真を横長・全幅に。余白を詰める */
    .reasons-grid-4 { grid-template-columns: 1fr; gap: 0.85rem; }
    .reason-card-v2 { padding: 0.7rem 0.7rem 1rem; gap: 0.25rem; border-radius: 8px; }
    .reason-num-label { font-size: 0.6rem; }
    .reason-num { font-size: 1.3rem; margin-bottom: 0.1rem; }
    .reason-icon-svg { height: 200px; margin-bottom: 0.6rem; }   /* 全幅の横長写真 */
    .reason-card-v2 h4 { font-size: 1.12rem; line-height: 1.4; }
}

@media (max-width: 480px) {
    /* FV見出しをさらに縮小 */
    .fv-heading { font-size: 1.7rem; }
    .fv-heading-accent { font-size: 1.95rem; }

    /* 画面が狭い端末向けにさらに引き締める */
    .case-card-inner { gap: 0.75rem; }
    .case-illust { width: 100%; height: 160px; }
    .case-card { padding: 1rem; }
    .area-card { padding: 1rem; }
    .ca-tabs { gap: 0.3rem; }
}

/* ============================================================
   Responsive: 下部セクション & フッターのスマホ最適化
   代表メッセージ / 料金 / 流れ / 最終CTA / フッターは
   PC向けの多カラム構成のままだったため、縦積みに整える
   ============================================================ */
@media (max-width: 768px) {
    /* 代表メッセージ: 2カラム → 1カラム（写真 → 本文の順） */
    .message-split { grid-template-columns: 1fr; gap: 1.5rem; margin-top: 1.5rem; }
    .message-img-placeholder { min-height: 440px; width: 100%; max-width: 420px; margin-left: auto; margin-right: auto; }
    .message-heading { font-size: 1.5rem; line-height: 1.55; margin-bottom: 1rem; }
    /* 代表メッセージ: 「代表に直接相談する」ボタンをセクション最下部（料金の直前）へ移動 */
    #message .container { display: flex; flex-direction: column; }
    .message-head-row { display: contents !important; }   /* インラインのflexを解除し、見出しとボタンをcontainer直下へ昇格 */
    #message .message-head-row h2 { order: 1; }
    #message .message-split { order: 2; }
    .message-head-row .btn-linkedin {
        order: 3;                                  /* 本文の後＝セクション末尾＝料金の上 */
        margin: 0.4rem 0 0 !important;
        align-self: center !important;
        width: auto;                               /* 内容幅でコンパクトに */
        max-width: none;
        justify-content: center;
        border-radius: 0;                          /* 角を丸くしない */
        font-size: 1rem;                           /* 少し大きく */
        padding: 0.85rem 1.8rem;
    }

    /* ハンバーガーメニュー: 全セクションへのリンクを表示 */
    .nav-links .nav-sp-only { display: block; }

    /* 料金: スマホは横スワイプのスライド式に（事例カードと同様） */
    .pricing-grid {
        display: flex;
        grid-template-columns: none;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 0.75rem;
        padding-bottom: 0.4rem;
        scrollbar-width: none;
    }
    .pricing-grid::-webkit-scrollbar { display: none; }
    .pricing-grid > .pricing-card {
        flex: 0 0 86%;                 /* 1枚はほぼ全幅、次カードがチラ見え */
        scroll-snap-align: start;
        padding: 1.5rem 1.3rem;
    }

    /* お申し込み後の流れ: 横ジグザグタイムライン → 縦ステップに
       カード間に下向き矢印を入れ、流れが分かるようにする */
    .flow-wrap { display: flex; flex-direction: column; gap: 1.9rem; margin-bottom: 1rem; }
    .flow-timeline { display: none; }                    /* 横の丸数字ラインは非表示 */
    .flow-spacer { display: none; }
    .flow-top-row, .flow-bot-row {
        display: contents;                               /* 子の.flow-itemをflow-wrap直下のflex itemに */
        margin: 0;
    }
    .flow-item {
        visibility: visible;
        position: relative;
        padding: 0.9rem 1.1rem;
        background: #fff;
        border: 1px solid var(--border-color);           /* 緑の左ラインは廃止 */
        border-radius: 6px;
    }
    /* カード下のすき間に下向き矢印（▼）を表示し、流れを示す */
    .flow-item::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: -1.45rem;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-left: 7px solid transparent;
        border-right: 7px solid transparent;
        border-top: 9px solid var(--primary-green);
    }
    /* DOM順は 1,3,5,(top) → 2,4(bot)。表示順を 1〜5 に並べ替える */
    .flow-top-row .flow-item:nth-child(1) { order: 1; }  /* お問い合わせ */
    .flow-bot-row .flow-item:nth-child(2) { order: 2; }  /* 無料ヒアリング */
    .flow-top-row .flow-item:nth-child(3) { order: 3; }  /* お見積もり */
    .flow-bot-row .flow-item:nth-child(4) { order: 4; }  /* ご契約・NDA */
    .flow-top-row .flow-item:nth-child(5) { order: 5; }  /* 開発開始（最後なので矢印なし） */
    .flow-top-row .flow-item:nth-child(5)::after { display: none; }

    /* 最終CTA: 2カラム → 1カラム。並びは 見出し → 写真 → 本文 → チェック → ボタン
       縦に間延びしないよう、写真を小さめに・余白を詰める */
    .final-cta-section { padding: 2.2rem 0; }
    .final-cta-inner {
        display: flex;
        flex-direction: column;
        gap: 0.85rem;
        grid-template-columns: none;
    }
    .final-cta-left,
    .final-cta-right { display: contents; }   /* 子要素をinner直下に並べ、order で順序制御 */
    .final-cta-heading { order: 1; font-size: 1.9rem; line-height: 1.35; margin-bottom: 0; align-self: flex-start; }
    /* 画像は大きめ。見出しとの間の余白を詰めるため上方向に引き上げる */
    .final-cta-img {
        order: 2;
        max-width: none;
        width: 100%;
        margin: 0.8rem auto 0.2rem;   /* 横長の新資料画像。見出しに被らないよう上余白を確保 */
    }
    .final-cta-left p { order: 3; font-size: 0.88rem; line-height: 1.7; margin-bottom: 0; }
    .final-cta-list { order: 4; margin-bottom: 0; }
    .final-cta-list li { padding: 0.12rem 0; }
    .final-cta-btns { order: 5; align-items: stretch; margin-top: 0.2rem; }
    .final-cta-btns .btn-round-solid { justify-content: center; text-align: center; }
    /* SPは濃い緑を維持（PCは#7FBB90） */
    .btn-round-solid { background: #016239; }
    .btn-round-solid:hover { background: #017a48; box-shadow: 0 6px 20px rgba(1,98,57,0.3); }

    /* フッター: 5カラム → 2カラム、最下部は縦並び */
    .footer-main { padding: 2rem 0; }
    .footer-main-inner { grid-template-columns: 1fr 1fr; gap: 1.5rem 1rem; }
    .footer-bottom { padding: 1.2rem 0; }
    .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 0.6rem; }
}

/* ============================================================
   FV スマホ版 再デザイン（提供モックに合わせる）
   ・ヘッダーにお問い合わせボタン表示
   ・写真を右に重ねる構図（テキスト左）
   ・特典カードを横型（テキスト左＋画像右）
   ・価値ストリップを行＋シェブロンのリスト化
   ============================================================ */
@media (max-width: 768px) {
    /* --- ヘッダー：お問い合わせボタンを表示（ハンバーガーの左に） --- */
    .fv-header-inner { gap: 0.4rem; padding: 0 1rem; }
    .fv-header-btns { display: none !important; }   /* スマホはお問い合わせボタンなし */
    .glass-header nav { margin-left: 0; }
    .mobile-menu-btn { order: 3; margin-left: auto; flex-shrink: 0; width: 22px; }
    .fv-header-inner .logo img { height: 42px; }
    .logo-text { font-size: 1.4rem; }
    .fv-hbtn-green {
        padding: 0.45rem 0.7rem;
        font-size: 0.72rem;
        border-radius: 999px;
        gap: 0.25rem;
        flex-shrink: 0;
    }

    /* --- ヒーロー：テキスト左／写真を右に重ねる --- */
    /* 背景は縦長版に差し替え（スマホ） */
    .fv-section {
        position: relative;
        overflow: hidden;
        background-image: url('office-bg-sp.webp');
        background-position: center top;
        background-size: cover;
    }
    .fv-inner {
        display: block;
        position: relative;
        padding: 1.2rem 1.2rem 0.2rem;
        gap: 0;
        height: auto;
        min-height: 0;
    }
    .fv-left {
        position: relative;
        z-index: 2;
        width: 80%;
        padding-right: 0;
        padding-top: 0;
    }
    /* サブ文は写真に被りすぎず、改行が崩れない幅に */
    .fv-left .fv-sub { max-width: 260px; }
    .fv-heading { font-size: 2.65rem; white-space: normal; margin-left: -4px; }
    .fv-heading-accent { font-size: 2.9rem; margin-bottom: 0.9rem; margin-left: -4px; }
    .fv-sub { font-size: 0.8rem; line-height: 1.7; margin-bottom: 1.2rem; }
    .fv-cta-wrap { margin-top: -4px; }
    .fv-cta-primary {
        min-width: 0;
        width: auto;
        padding: 0.85rem 1.6rem;
        font-size: 0.92rem;
    }

    /* 写真を右に絶対配置（透過PNGなので重なってOK） */
    .fv-right {
        position: absolute;
        top: 4.2rem;
        right: -10%;
        width: 68%;
        height: auto;
        min-height: 0;
        padding: 0;
        z-index: 1;
        align-items: flex-start;
        justify-content: flex-end;
    }
    /* 位置調整は .fv-right ではなく内側に（.fv-rightは登場アニメで上書きされるため） */
    .fv-photo-area { margin: 0; max-width: none; width: 100%; transform: translate(42px, 4px); }
    .fv-photo {
        width: 100%;
        max-height: 430px;
        transform: scale(1.7);
        transform-origin: center 30%;   /* 顔の位置を基準に拡大して顔が切れないように */
        filter: drop-shadow(0 4px 16px rgba(0,0,0,0.12));
    }
    /* ネームプレートは写真の下端に独立した帯として配置 */
    .fv-nameplate {
        right: calc(15% + 8px);
        left: auto;
        top: 70%;
        bottom: auto;
        padding: 0.3rem 0.7rem 0.15rem;
        white-space: nowrap;
        box-shadow: 0 2px 10px rgba(0,0,0,0.12);
    }
    .fv-nameplate-company { font-size: 0.55rem; }
    .fv-nameplate-name { font-size: 0.85rem; }

    /* --- FV下部: 特典カード(左) ＋ 価値アイコンカード(右) の横2カラム --- */
    .fv-bottom {
        display: flex;
        gap: 0.6rem;
        align-items: stretch;
        margin-top: 0.2rem;
        margin-bottom: 0.2rem;
        padding: 0 0.9rem;            /* 左右端のカードに余白を空ける */
        position: relative;
        z-index: 6;
    }

    /* 特典カード（左）: 画像＋ラベルのみのコンパクト縦型 */
    .fv-card {
        position: relative;
        right: auto; top: auto; bottom: auto; transform: none;
        margin: 0;
        flex: 1 1 0;
        min-width: 0;
        width: auto;
        max-width: none;
    }
    .fv-card-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 1rem 0.7rem 0.9rem;
        gap: 0;
        height: 100%;
    }
    .fv-card-ribbon { border-width: 42px 42px 0 0; }
    .fv-card-ribbon span { top: -38px; left: 2px; font-size: 0.76rem; }
    .fv-card-header { display: none; }
    .fv-card-desc { display: none; }
    .fv-card-cta-btn { display: none; }
    .fv-card-img { order: 1; width: 100%; margin: 0 0 0.5rem; }
    .fv-card-title { order: 2; text-align: center; font-size: 0.95rem; margin: 0; color: #1a1a1a; }

    /* 価値カード（右）: 3アイコンを横1列、ラベルのみ。上下余白を詰める */
    .fv-values-strip {
        flex: 1 1 0;
        min-width: 0;
        margin: 20px 0 0;            /* カード上の余白 */
        padding: 0.5rem 0.4rem;
        display: flex;
        align-items: center;
        align-self: flex-start;
    }
    .fv-values-strip > .container { padding: 0; max-width: none; width: 100%; }
    .fv-values-inner {
        flex-direction: row;
        align-items: stretch;
        gap: 0.15rem;
        justify-content: space-around;
    }
    .fv-value-cross { display: none; }
    .fv-value-item {
        flex: 1 1 0;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.4rem;
        padding: 0;
        border-bottom: none;
        max-width: none;
    }
    .fv-value-item::after { display: none; }
    .fv-value-icon {
        width: 44px; height: 44px;
        background: #eaf6ef;
        border-radius: 50%;
        display: flex; align-items: center; justify-content: center;
        flex-shrink: 0;
    }
    .fv-value-icon img { width: 26px !important; height: 26px !important; }
    .fv-value-text { flex: none; }
    .fv-value-title { font-size: 0.72rem; margin: 0; font-weight: 700; }
    .fv-value-desc { display: none; }
}

/* PC版FV: 代表写真を1.1倍に拡大（スマホは別途指定があるため769px以上に限定） */
@media (min-width: 769px) {
    .fv-photo {
        transform: scale(1.1);
        transform-origin: bottom center;
    }
}

/* ============================================================
   ハンバーガーメニュー（スマホ）: 左寄せリスト＋区切り線、白背景、下部に会社情報
   ============================================================ */
@media (max-width: 768px) {
    .nav-links {
        justify-content: flex-start;
        align-items: stretch;
        background: #ffffff;
        padding: 4.8rem 1.5rem 2rem;
        gap: 0;
        overflow-y: auto;
    }
    .nav-links li {
        width: 100%;
        text-align: left;
        border-bottom: 1px solid #ececec;
    }
    .nav-links li a {
        display: block;
        text-align: left;
        padding: 1.05rem 0.2rem;
        font-size: 1rem;
        font-weight: 700;
        color: #1a1a1a;
    }
    .nav-links li a .nav-chevron { display: none; }

    /* トップページ配下のセクションは、配下とわかるよう他項目より深くインデント＋左アクセント線 */
    .nav-acc-sub li a {
        padding-left: 2.3rem;
        position: relative;
        font-weight: 600;          /* 親(700)より少し細くして従属を示す */
        color: #444;
    }
    .nav-acc-sub li a::before {
        content: '';
        position: absolute;
        left: 1.2rem;
        top: 50%;
        transform: translateY(-50%);
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: #cfd4d2;
    }

    /* 最上部のお問い合わせ 四角ボタン */
    .nav-menu-cta { border-bottom: none !important; margin-bottom: 1.2rem; }
    .nav-menu-cta .nav-cta-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.4rem;
        background: #3a9e60;
        color: #ffffff;
        padding: 0.95rem 1rem;
        font-size: 1rem;
        font-weight: 700;
        border-radius: 0;            /* 四角ボタン */
        text-align: center;
    }
    /* サブCTA（お問い合わせ）：緑アウトライン */
    .nav-menu-cta .nav-cta-btn-sub {
        background: transparent;
        color: #2e8a52;
        border: 1.5px solid #3a9e60;
        margin-top: 0.5rem;
    }

    /* PC専用ナビ項目はスマホでは非表示（アコーディオン側で表示） */
    .nav-pc-only { display: none; }

    /* トップページ アコーディオン */
    .nav-acc { border-bottom: 1px solid #ececec; }
    .nav-acc-cb { display: none; }
    /* ラベル行：テキスト＝リンク／▾＝開閉トグル に分離 */
    .nav-acc-label {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .nav-acc-link {
        flex: 1;
        padding: 1.05rem 0.2rem;
        font-size: 1rem;
        font-weight: 700;
        color: #1a1a1a;
        text-decoration: none;
    }
    .nav-acc-toggle {
        display: flex;
        align-items: center;
        padding: 1.05rem 0.6rem;
        cursor: pointer;
    }
    .nav-acc-chev { font-size: 0.7rem; color: #999; transition: transform 0.25s; }
    .nav-acc-cb:checked ~ .nav-acc-label .nav-acc-chev { transform: rotate(180deg); }
    .nav-acc-sub { list-style: none; padding: 0; margin: 0; }
    .nav-acc-cb:not(:checked) ~ .nav-acc-sub { display: none; }
    .nav-acc-sub li { border-top: 1px solid #ececec; border-bottom: none; }

    /* 最下部の会社情報ブロック */
    .nav-menu-footer {
        border-bottom: none !important;
        margin-top: auto;
        padding-top: 1.6rem;
        text-align: left;
    }
    .nav-mf-name { font-size: 0.95rem; font-weight: 700; color: #1a1a1a; margin: 0 0 0.5rem; }
    .nav-mf-addr { font-size: 0.78rem; color: #666; line-height: 1.7; margin: 0 0 0.8rem; }
    .nav-mf-copy { font-size: 0.7rem; color: #aaa; margin: 0; }

    /* メニュー表示中はヘッダーのお問い合わせボタンを隠し、ロゴ＋×だけに */
    .glass-header:has(.nav-links.active) .fv-header-btns { display: none; }
}

/* ============================================================
   AI活用診断 オレンジ帯（スマホ専用・FV直下）。PCではFV内の特典カードを使うため非表示
   ============================================================ */
.shindan-band { display: none; }

@media (max-width: 768px) {
    /* FV内の特典カードはスマホでは非表示（帯に移動） */
    .fv-bottom .fv-card { display: none; }

    /* オレンジ帯 */
    .shindan-band {
        display: block;
        background: #F97316;
        padding: 0.7rem 0;          /* 高さを短く */
        overflow: hidden;           /* 内側のtranslateX(32px)が横スクロールを生むのをクリップ */
    }
    .shindan-band-inner {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.9rem;
    }
    .shindan-band-img {
        width: 40%;
        max-width: 160px;
        height: auto;
        border-radius: 6px;
        display: block;
    }
    .shindan-band-text {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .shindan-band-eyebrow {
        display: inline-block;
        background: #ffffff;
        color: #F97316;
        font-size: 0.66rem;
        font-weight: 700;
        padding: 0.1rem 0.6rem;
        border-radius: 999px;
        margin-bottom: 0.4rem;
    }
    .shindan-band-ttl {
        color: #ffffff;
        font-size: 1.2rem;
        font-weight: 800;
        margin: 0 0 0.5rem;
        line-height: 1.3;
    }
    .shindan-band-btn {
        display: inline-block;
        background: #ffffff;
        color: #F97316;
        font-size: 0.74rem;
        font-weight: 700;
        padding: 0.38rem 1rem;
        border-radius: 999px;
        text-decoration: none;
        box-shadow: 0 3px 10px rgba(0,0,0,0.15);
    }
}

/* ============================================================
   価値カードを独立3カード化（アイコン＋タイトル＋説明）＋ 帯の微調整
   ============================================================ */
@media (max-width: 768px) {
    /* 価値カード: 外枠を外し、3つの独立した薄いカードに */
    .fv-values-strip {
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
    }
    .fv-values-strip > .container { padding: 0; }
    .fv-values-inner { gap: 0.5rem; align-items: stretch; }
    .fv-value-item {
        background: #f6f7f8;
        border: 1px solid #e0e0e0;                  /* 細いグレーの枠 */
        border-radius: 10px;
        box-shadow: 0 3px 12px rgba(0,0,0,0.09);   /* 薄めのドロップシャドウ */
        padding: 0.55rem 0.5rem 0.65rem;
        gap: 0;                                     /* アイコンと文章の間隔をさらに狭く */
    }
    /* アイコンは円背景なしのプレーン表示 */
    .fv-value-icon {
        background: transparent;
        width: auto;
        height: auto;
    }
    .fv-value-icon img { width: 64px !important; height: 64px !important; }
    /* アイコンと文章をマイナスマージンでさらに近づける */
    .fv-value-text { margin-top: -10px; }
    .fv-value-title { font-size: 0.85rem; }
    .fv-value-desc {
        display: block;
        font-size: 0.64rem;
        color: #888;
        line-height: 1.5;
        white-space: normal;
    }

    /* オレンジ帯の調整 */
    .shindan-band-img { box-shadow: none; }          /* 画像のドロップシャドウ削除 */
    .shindan-band-eyebrow {                          /* 特典: オレンジ地・白文字（白枠で視認性確保） */
        background: transparent;
        border: 1.5px solid #ffffff;
        color: #ffffff;
    }
    .shindan-band-btn {                              /* こちらから: 白枠・中はオレンジ・文字白 */
        background: transparent;
        border: 2px solid #ffffff;
        color: #ffffff;
        box-shadow: none;
    }
}

/* タブレット（600〜768px）：FVネームプレートを上へ */
@media (min-width: 600px) and (max-width: 768px) {
    .fv-nameplate { top: 48%; }
}
