:root {
    --green-50: #f0f9f0;
    --green-100: #dcf2dc;
    --green-200: #b8e6b8;
    --green-300: #86d186;
    --green-400: #6db33f;
    --green-500: #5a9e35;
    --green-600: #4a8c2a;
    --green-700: #3a7020;
    --mint: #e8f5e9;
    --cream: #fafdf7;
    --warm-white: #fefffe;
    --text-dark: #2e3d2e;
    --text-body: #4a5a4a;
    --text-muted: #7a8f7a;
    --border-light: rgba(109, 179, 63, 0.12);
    --shadow-soft: 0 4px 24px rgba(74, 140, 42, 0.06);
    --shadow-card: 0 8px 32px rgba(74, 140, 42, 0.08);
    --shadow-hover: 0 12px 40px rgba(74, 140, 42, 0.14);
    --font-main: 'Noto Sans JP', sans-serif;
    --radius: 30px;
    --radius-sm: 16px;
    --radius-xs: 10px;
    --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-body);
    line-height: 1.8;
    background-color: var(--warm-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ===== Background Decorations ===== */
.bg-decor {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: -2;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.25;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: var(--green-200);
    top: -200px;
    right: -100px;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: var(--green-100);
    bottom: -150px;
    left: -100px;
}

/* ===== Container ===== */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Header ===== */
.header {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 8px;
}

.logo img,
.logo svg {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.logo .logo-name {
    height: 70px;
    margin: 0 -12px;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 28px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-body);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--green-500);
}

.btn-primary-nav {
    background-color: var(--green-400);
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    box-shadow: 0 2px 12px rgba(109, 179, 63, 0.2);
    transition: var(--transition);
}

.btn-primary-nav:hover {
    background-color: var(--green-500);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(109, 179, 63, 0.3);
}

/* ===== Mobile Menu Button ===== */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--green-600);
    border-radius: 2px;
    transition: var(--transition);
}

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

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

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

/* ===== Hero Center (index.html) ===== */
.hero-center {
    position: relative;
    padding-top: 180px;
    padding-bottom: 100px;
    overflow: hidden;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(109, 179, 63, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 60% 50% at 80% 80%, rgba(168, 216, 110, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 10% 60%, rgba(109, 179, 63, 0.06) 0%, transparent 50%),
        linear-gradient(160deg, var(--cream) 0%, var(--green-50) 40%, var(--mint) 100%);
    text-align: center;
}

/* 装飾オーブ（大きなグラデーション円） */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(109, 179, 63, 0.12) 0%, transparent 70%);
    top: -120px;
    right: -80px;
    animation: orbFloat1 8s ease-in-out infinite;
}

.hero-orb-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(168, 216, 110, 0.15) 0%, transparent 70%);
    bottom: -60px;
    left: -60px;
    animation: orbFloat2 10s ease-in-out infinite;
}

.hero-orb-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(109, 179, 63, 0.1) 0%, transparent 70%);
    top: 40%;
    left: 15%;
    animation: orbFloat3 12s ease-in-out infinite;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20px, 30px) scale(1.05); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(25px, -20px) scale(1.08); }
}

@keyframes orbFloat3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(15px, 20px); }
}

/* 浮遊アイコン */
.hero-float {
    position: absolute;
    font-size: 1.6rem;
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(109, 179, 63, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(74, 140, 42, 0.08);
    pointer-events: none;
    z-index: 1;
}

.hero-float-1 {
    top: 22%;
    left: 8%;
    animation: float1 6s ease-in-out infinite;
}

.hero-float-2 {
    top: 18%;
    right: 10%;
    animation: float2 7s ease-in-out infinite;
    animation-delay: -1s;
}

.hero-float-3 {
    bottom: 25%;
    left: 12%;
    animation: float3 8s ease-in-out infinite;
    animation-delay: -2s;
}

.hero-float-4 {
    bottom: 20%;
    right: 8%;
    animation: float4 6.5s ease-in-out infinite;
    animation-delay: -3s;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-18px) rotate(5deg); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-14px) rotate(-4deg); }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(3deg); }
}

@keyframes float4 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-16px) rotate(-5deg); }
}

/* 装飾ライン */
.hero-line {
    position: absolute;
    pointer-events: none;
    border-radius: 2px;
}

.hero-line-1 {
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--green-300), transparent);
    top: 35%;
    right: 5%;
    transform: rotate(-15deg);
    opacity: 0.4;
    animation: linePulse 4s ease-in-out infinite;
}

.hero-line-2 {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--green-200), transparent);
    bottom: 30%;
    left: 5%;
    transform: rotate(20deg);
    opacity: 0.3;
    animation: linePulse 5s ease-in-out infinite;
    animation-delay: -2s;
}

@keyframes linePulse {
    0%, 100% { opacity: 0.2; transform: rotate(-15deg) scaleX(0.8); }
    50% { opacity: 0.5; transform: rotate(-15deg) scaleX(1.2); }
}

/* ヒーロー内部コンテンツ */
.hero-inner {
    position: relative;
    z-index: 2;
}

.hero-center .hero-tagline {
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--green-500);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out both;
}

.hero-center .hero-tagline::before {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background-color: var(--green-400);
    border-radius: 1px;
}

.hero-center h1 {
    font-size: 3.4rem;
    line-height: 1.35;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s ease-out 0.15s both;
}

.hero-desc-center {
    font-size: 1.05rem;
    color: var(--text-body);
    margin: 0 auto 44px;
    max-width: 640px;
    line-height: 2;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-btns-center {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.45s both;
}

/* CTAボタンのグロー効果 */
.hero-btn-glow {
    position: relative;
    overflow: hidden;
}

.hero-btn-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 40%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: skewX(-20deg);
    animation: shimmer 3.5s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { left: -60%; }
    50% { left: 120%; }
}

/* 数値バッジ */
.hero-badge-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-top: 56px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--green-500);
    line-height: 1.2;
}

.hero-badge-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 2px;
}

.hero-badge-divider {
    width: 1px;
    height: 36px;
    background: var(--border-light);
}

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

/* ===== Outline Button ===== */
.btn-outline {
    background: transparent;
    border: 2px solid var(--green-400);
    color: var(--green-600);
    padding: 14px 36px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-outline:hover {
    background: var(--green-400);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(109, 179, 63, 0.2);
}

/* ===== PC Only ===== */
.pc-only {
    display: inline;
}

/* ===== Feature Grid (3-column cards) ===== */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.feature-card {
    background: #fff;
    padding: 44px 32px 40px;
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.feature-icon-wrap {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--green-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

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

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--text-dark);
    line-height: 1.5;
}

.feature-card p {
    font-size: 0.92rem;
    color: var(--text-body);
    line-height: 1.85;
}

/* ===== Service List (horizontal rows) ===== */
.service-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-row {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    padding: 22px 28px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
}

.service-row:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--green-300);
}

.service-row-icon {
    font-size: 1.6rem;
    width: 48px;
    height: 48px;
    background: var(--green-50);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-row-body {
    flex: 1;
}

.service-row-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.service-row-body p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.service-row-arrow {
    font-size: 1.2rem;
    color: var(--green-400);
    flex-shrink: 0;
    transition: var(--transition);
}

.service-row:hover .service-row-arrow {
    transform: translateX(4px);
    color: var(--green-600);
}

/* ===== CTA Block (centered with form) ===== */
.cta-block {
    background: linear-gradient(145deg, var(--green-600), var(--green-500));
    border-radius: var(--radius);
    padding: 70px 60px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-block::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    top: -200px;
    right: -100px;
}

.cta-block::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    bottom: -80px;
    left: -50px;
}

.cta-text {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.cta-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 14px;
    line-height: 1.4;
}

.cta-text p {
    opacity: 0.9;
    line-height: 1.8;
    font-size: 0.95rem;
}

.cta-form {
    max-width: 560px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.form-row {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xs);
    color: #fff;
    margin-bottom: 12px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-row .form-input {
    margin-bottom: 0;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.form-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ===== Service Detail Cards (services.html) ===== */
.svc-detail-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.svc-detail-card {
    display: flex;
    gap: 32px;
    background: #fff;
    padding: 40px;
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.svc-detail-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

.svc-detail-icon {
    width: 100px;
    height: 100px;
    background: var(--green-50);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    flex-shrink: 0;
}

.svc-detail-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.svc-detail-body h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.svc-detail-body p {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.85;
    margin-bottom: 16px;
}

.svc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.svc-tag {
    background: var(--green-50);
    color: var(--green-600);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 500;
    border: 1px solid var(--border-light);
}

/* Service Sub Grid (4-column for additional services) */
.svc-sub-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.svc-sub-card {
    background: #fff;
    padding: 36px 28px;
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.svc-sub-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.svc-sub-emoji {
    font-size: 2rem;
    display: block;
    margin-bottom: 16px;
}

.svc-sub-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.svc-sub-card p {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.8;
}

/* ===== Legacy Hero (other pages using .hero) ===== */
.hero {
    position: relative;
    padding-top: 160px;
    padding-bottom: 120px;
    overflow: hidden;
    background: linear-gradient(160deg, var(--cream) 0%, var(--green-50) 40%, var(--mint) 100%);
}

.hero-image-bg {
    display: none;
}

.hero-content {
    max-width: 700px;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--text-body);
    margin-bottom: 40px;
    max-width: 520px;
    line-height: 2;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===== Sections ===== */
.section {
    padding: 100px 0;
    position: relative;
}

.section-head {
    margin-bottom: 60px;
    text-align: center;
}

.section-label {
    font-weight: 600;
    color: var(--green-500);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.8rem;
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

/* ===== Strengths Section ===== */
.strength-item {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

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

.strength-item:nth-child(even) {
    flex-direction: row-reverse;
}

.strength-visual {
    flex: 1;
    height: 340px;
    background: var(--green-50);
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.strength-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, rgba(109, 179, 63, 0.15), transparent 60%);
}

.strength-content {
    flex: 1;
}

.strength-num {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--green-100);
    line-height: 1;
    margin-bottom: -10px;
    display: block;
}

.strength-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.strength-content p {
    color: var(--text-body);
    line-height: 1.9;
}

/* ===== Service Cards ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: #fff;
    padding: 40px 28px 36px;
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    width: 88px;
    height: 88px;
    background: var(--green-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== Profile Table ===== */
.profile-section {
    background: var(--green-50);
    border-radius: var(--radius);
    padding: 60px;
    border: 1px solid var(--border-light);
}

.profile-table {
    width: 100%;
    border-collapse: collapse;
}

.profile-table tr {
    border-bottom: 1px solid var(--border-light);
}

.profile-table tr:last-child {
    border-bottom: none;
}

.profile-table th {
    text-align: left;
    padding: 24px 0;
    width: 200px;
    color: var(--green-600);
    font-size: 0.95rem;
    font-weight: 600;
    vertical-align: top;
}

.profile-table td {
    padding: 24px 0;
    font-size: 1rem;
    color: var(--text-body);
}

.profile-table td ul {
    padding-left: 18px;
}

.profile-table td li {
    margin-bottom: 4px;
}

/* ===== Contact Section ===== */
.contact-container {
    background: linear-gradient(145deg, var(--green-600), var(--green-500));
    border-radius: var(--radius);
    padding: 70px;
    color: #fff;
    display: flex;
    gap: 60px;
    position: relative;
    overflow: hidden;
}

.contact-container::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    top: -200px;
    right: -100px;
}

.contact-container::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    bottom: -80px;
    left: -50px;
}

.contact-info-side {
    flex: 1;
    z-index: 1;
}

.contact-info-side h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
}

.contact-info-side p {
    opacity: 0.9;
    line-height: 1.8;
}

.contact-form-side {
    flex: 1;
    z-index: 1;
}

.glass-input {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xs);
    color: #fff;
    margin-bottom: 16px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
}

.glass-input::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.glass-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ===== Buttons ===== */
.btn-primary {
    background: var(--green-400);
    color: #fff;
    padding: 16px 40px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 4px 16px rgba(109, 179, 63, 0.2);
}

.btn-primary:hover {
    background: var(--green-500);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(109, 179, 63, 0.3);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--green-400);
    color: var(--green-600);
    padding: 14px 36px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-secondary:hover {
    background: var(--green-400);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(109, 179, 63, 0.2);
}

.full-width {
    width: 100%;
}

.center-btn {
    text-align: center;
}

.mt-40 {
    margin-top: 40px;
}

/* ===== Other Page Hero ===== */
.hero-small {
    background: linear-gradient(160deg, var(--green-50) 0%, var(--mint) 100%);
    color: var(--text-dark);
    padding: 160px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-small h1 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.hero-small p {
    color: var(--text-muted);
}

/* ===== Map ===== */
.map-container {
    width: 100%;
    height: 400px;
    background-color: var(--green-50);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ===== Footer ===== */
.footer {
    padding: 60px 0 32px;
    background: var(--cream);
    border-top: 1px solid var(--border-light);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: var(--transition);
}

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

.copy {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ===== Privacy ===== */
.privacy-content h3 {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 12px;
}

.privacy-content ul {
    padding-left: 20px;
    margin: 8px 0 16px;
}

.privacy-content li {
    margin-bottom: 4px;
}

/* ===== Responsive: Tablet ===== */
@media (max-width: 1024px) {
    .header-container {
        height: 72px;
    }

    .logo .logo-name {
        height: 60px;
        margin: 0 -8px;
    }

    .hero {
        padding-top: 140px;
        padding-bottom: 80px;
    }

    .hero-center {
        padding-top: 150px;
        padding-bottom: 80px;
    }

    .hero-center h1 {
        font-size: 2.6rem;
    }

    .hero-float {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }

    .hero-content h1 {
        font-size: 2.6rem;
    }

    .feature-grid {
        gap: 20px;
    }

    .feature-card {
        padding: 32px 24px 28px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-graphic {
        display: none;
    }

    .strength-item {
        gap: 40px;
    }

    .cta-block {
        padding: 50px 40px;
    }

    .contact-container {
        padding: 50px;
        gap: 40px;
    }
}

/* ===== Responsive: Mobile ===== */
@media (max-width: 768px) {
    .header-container {
        height: 64px;
    }

    .logo .logo-name {
        height: 54px;
        margin: 0 -6px;
    }

    .logo img:first-child {
        height: 32px !important;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(10px);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
    }

    .nav-menu.active {
        right: 0;
        opacity: 1;
        visibility: visible;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .nav-menu a {
        font-size: 1.2rem;
        font-weight: 600;
        color: var(--text-dark);
    }

    /* Hero Center - mobile */
    .hero-center {
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .hero-center h1 {
        font-size: 2rem;
        line-height: 1.4;
    }

    .hero-desc-center {
        font-size: 0.9rem;
        margin-bottom: 28px;
    }

    .hero-btns-center {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .hero-btns-center .btn-primary,
    .hero-btns-center .btn-outline {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .pc-only {
        display: none;
    }

    /* 浮遊アイコン - モバイルでは小さく */
    .hero-float {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        border-radius: 12px;
    }

    .hero-float-1 { left: 3%; top: 18%; }
    .hero-float-2 { right: 3%; top: 16%; }
    .hero-float-3 { left: 5%; bottom: 28%; }
    .hero-float-4 { right: 3%; bottom: 24%; }

    .hero-line { display: none; }

    .hero-orb-1 { width: 280px; height: 280px; }
    .hero-orb-2 { width: 200px; height: 200px; }
    .hero-orb-3 { display: none; }

    /* バッジ - モバイル */
    .hero-badge-row {
        gap: 16px;
        margin-top: 40px;
    }

    .hero-badge-num {
        font-size: 1.4rem;
    }

    .hero-badge-label {
        font-size: 0.7rem;
    }

    .hero-badge-divider {
        height: 28px;
    }

    /* Feature Grid - mobile */
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-card {
        padding: 28px 20px 24px;
    }

    .feature-icon-wrap {
        width: 64px;
        height: 64px;
        margin-bottom: 16px;
        padding: 12px;
    }

    .feature-card h3 {
        font-size: 1.05rem;
        margin-bottom: 10px;
    }

    .feature-card p {
        font-size: 0.85rem;
    }

    /* Service Row - mobile */
    .service-row {
        padding: 16px 18px;
        gap: 14px;
    }

    .service-row-icon {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }

    .service-row-body h3 {
        font-size: 0.95rem;
    }

    .service-row-body p {
        font-size: 0.8rem;
    }

    /* CTA Block - mobile */
    .cta-block {
        padding: 40px 20px;
    }

    .cta-text {
        margin-bottom: 28px;
    }

    .cta-text h2 {
        font-size: 1.5rem;
    }

    .cta-text p {
        font-size: 0.85rem;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-row .form-input {
        margin-bottom: 12px;
    }

    .form-input {
        padding: 14px 16px;
        font-size: 0.95rem;
    }

    /* Service detail cards - mobile */
    .svc-detail-card {
        flex-direction: column;
        gap: 20px;
        padding: 28px 20px;
    }

    .svc-detail-icon {
        width: 72px;
        height: 72px;
        padding: 14px;
    }

    .svc-detail-body h3 {
        font-size: 1.15rem;
    }

    .svc-detail-body p {
        font-size: 0.88rem;
    }

    .svc-tag {
        font-size: 0.78rem;
        padding: 5px 12px;
    }

    .svc-sub-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .svc-sub-card {
        padding: 24px 20px;
    }

    /* Legacy hero - mobile */
    .hero {
        padding-top: 110px;
        padding-bottom: 60px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.4;
    }

    .hero-desc {
        font-size: 0.9rem;
        margin-bottom: 28px;
    }

    .hero-btns {
        flex-direction: column;
        gap: 12px;
    }

    .hero-btns .btn-primary,
    .hero-btns .btn-secondary {
        text-align: center;
    }

    .section {
        padding: 60px 0;
    }

    .section-head {
        margin-bottom: 36px;
    }

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

    .strength-item {
        flex-direction: column !important;
        margin-bottom: 48px;
        gap: 24px;
    }

    .strength-visual {
        height: 200px;
        width: 100%;
    }

    .strength-num {
        font-size: 2.5rem;
    }

    .strength-content h3 {
        font-size: 1.3rem;
    }

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

    .service-card {
        padding: 24px 14px;
    }

    .service-icon {
        width: 64px;
        height: 64px;
        font-size: 1.6rem;
        margin-bottom: 12px;
    }

    .service-card h3 {
        font-size: 1rem;
        margin-bottom: 6px;
    }

    .service-card p {
        font-size: 0.78rem;
        line-height: 1.5;
    }

    .contact-container {
        padding: 40px 20px;
        gap: 28px;
        flex-direction: column;
    }

    .contact-info-side {
        text-align: center;
    }

    .contact-icon-box {
        margin: 0 auto 16px !important;
        width: 60px !important;
    }

    .contact-info-side h2 {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }

    .contact-info-side p {
        font-size: 0.9rem;
    }

    .glass-input {
        padding: 14px 16px;
        margin-bottom: 12px;
        font-size: 0.95rem;
    }

    .btn-primary {
        padding: 15px 32px;
        font-size: 1rem;
    }

    .btn-secondary {
        padding: 13px 28px;
        font-size: 0.95rem;
    }

    .btn-outline {
        padding: 13px 28px;
        font-size: 0.95rem;
    }

    .hero-small {
        padding: 110px 0 48px;
    }

    .hero-small h1 {
        font-size: 1.8rem;
    }

    .profile-section {
        padding: 32px 20px;
    }

    .profile-table th {
        display: block;
        width: 100%;
        padding: 16px 0 4px;
    }

    .profile-table td {
        display: block;
        padding: 4px 0 16px;
    }

    .footer-container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}
