/* ===== リセット & ベーススタイル ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* カラーパレット - 緑系カラフル */
    --primary-green: #10b981;
    --secondary-green: #059669;
    --dark-green: #047857;
    --light-green: #34d399;
    --emerald: #34d399;
    --mint: #6ee7b7;
    --lime: #84cc16;
    --teal: #14b8a6;
    
    /* アクセントカラー */
    --yellow: #fbbf24;
    --orange: #fb923c;
    --blue: #3b82f6;
    --purple: #a855f7;
    
    /* ニュートラルカラー */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* タイポグラフィ */
    --font-primary: 'Noto Sans JP', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
    
    /* スペーシング */
    --header-height: 80px;
    --section-padding: 100px;
    
    /* トランジション */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* シャドウ */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);
    --shadow-green: 0 10px 30px rgba(16, 185, 129, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--gray-800);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding) 0;
}

/* ===== ヘッダー & ナビゲーション ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition-normal);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-green);
}

.nav-logo i {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary-green), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.nav-link {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-green), var(--teal));
    transition: var(--transition-normal);
}

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

.nav-link:hover::after {
    width: 100%;
}

.nav-link.contact-btn {
    background: linear-gradient(135deg, var(--primary-green), var(--teal));
    color: var(--white);
    padding: 10px 25px;
    border-radius: 25px;
    transition: var(--transition-normal);
}

.nav-link.contact-btn::after {
    display: none;
}

.nav-link.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-green);
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-green);
    cursor: pointer;
}

/* ===== ヒーローセクション ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 50%, #a7f3d0 100%);
    padding-top: var(--header-height);
}

.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    animation: float 20s infinite ease-in-out;
}

.hero-shape.shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-green), var(--teal));
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.hero-shape.shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--lime), var(--yellow));
    bottom: -100px;
    left: -50px;
    animation-delay: 5s;
}

.hero-shape.shape-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--teal), var(--blue));
    top: 50%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(50px, -50px) rotate(120deg);
    }
    66% {
        transform: translate(-30px, 30px) rotate(240deg);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title-main {
    display: block;
    font-family: var(--font-secondary);
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-green), var(--teal), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    animation: fadeInUp 1s ease;
}

.hero-title-sub {
    display: block;
    font-size: 2rem;
    font-weight: 300;
    color: var(--gray-700);
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin: 30px 0;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--teal));
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-green);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-secondary:hover {
    background: var(--primary-green);
    color: var(--white);
}

.hero-image {
    position: relative;
    height: 500px;
    animation: fadeInUp 1s ease 0.8s backwards;
}

.hero-card {
    position: absolute;
    background: var(--white);
    padding: 25px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    transition: var(--transition-normal);
}

.hero-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.hero-card i {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary-green), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-card.card-1 {
    top: 50px;
    left: 50px;
    animation: floatCard 3s infinite ease-in-out;
}

.hero-card.card-2 {
    top: 200px;
    right: 50px;
    animation: floatCard 3s infinite ease-in-out 1s;
}

.hero-card.card-3 {
    bottom: 80px;
    left: 100px;
    animation: floatCard 3s infinite ease-in-out 2s;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

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

/* ===== セクション共通 ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary-green);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
}

.section-subtitle::before,
.section-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-green));
}

.section-subtitle::before {
    right: calc(100% + 15px);
}

.section-subtitle::after {
    left: calc(100% + 15px);
    background: linear-gradient(90deg, var(--primary-green), transparent);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
}

/* ===== 会社概要セクション ===== */
.about {
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.about-img-wrapper {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--primary-green), var(--teal));
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.about-img-wrapper i {
    font-size: 8rem;
    color: var(--white);
    opacity: 0.9;
}

.about-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.about-text {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 30px;
    line-height: 1.8;
}

.about-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.detail-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.detail-item i {
    font-size: 1.5rem;
    color: var(--primary-green);
    flex-shrink: 0;
}

.detail-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 5px;
}

.detail-item p {
    color: var(--gray-600);
}

/* ===== サービスセクション ===== */
.services {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-green), var(--teal), var(--lime));
    transform: translateX(-100%);
    transition: var(--transition-normal);
}

.service-card:hover::before {
    transform: translateX(0);
}

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

.service-card.featured {
    background: linear-gradient(135deg, var(--primary-green), var(--teal));
    color: var(--white);
}

.service-card.featured .service-icon,
.service-card.featured .service-title,
.service-card.featured .service-description,
.service-card.featured .service-features {
    color: var(--white);
}

.service-card.featured .service-features i {
    color: var(--mint);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--yellow);
    color: var(--gray-900);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-green), var(--teal));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-card.featured .service-icon {
    background: rgba(255, 255, 255, 0.2);
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 15px;
}

.service-description {
    color: var(--gray-600);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-700);
}

.service-features i {
    color: var(--primary-green);
    font-size: 0.875rem;
}

/* ===== ビジョンセクション ===== */
.vision {
    background: var(--white);
}

.vision-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.vision-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--gray-50), var(--white));
    border: 2px solid var(--gray-100);
    transition: var(--transition-normal);
    position: relative;
}

.vision-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.vision-number {
    font-size: 4rem;
    font-weight: 900;
    font-family: var(--font-secondary);
    background: linear-gradient(135deg, var(--primary-green), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.vision-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 15px;
}

.vision-card p {
    color: var(--gray-600);
    line-height: 1.7;
}

/* ===== チームセクション ===== */
.team {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stat-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-icon i {
    font-size: 2rem;
    color: var(--white);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    font-family: var(--font-secondary);
    color: var(--primary-green);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.125rem;
    color: var(--gray-600);
    font-weight: 500;
}

/* ===== お問い合わせセクション ===== */
.contact {
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), var(--teal));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon i {
    font-size: 1.25rem;
    color: var(--white);
}

.contact-info-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 5px;
}

.contact-info-item p {
    color: var(--gray-600);
    line-height: 1.6;
}

.contact-social {
    margin-top: 20px;
}

.contact-social h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-green), var(--teal));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition-normal);
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-green);
}

.contact-form {
    background: var(--gray-50);
    padding: 40px;
    border-radius: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.required {
    color: var(--primary-green);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
}

.form-group textarea {
    resize: vertical;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    display: none;
}

.form-message.success {
    background: #d1fae5;
    color: var(--dark-green);
    display: block;
}

.form-message.error {
    background: #fee2e2;
    color: #dc2626;
    display: block;
}

/* ===== フッター ===== */
.footer {
    background: linear-gradient(135deg, var(--gray-900), var(--gray-800));
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-logo i {
    font-size: 2rem;
    color: var(--primary-green);
}

.footer-description {
    color: var(--gray-300);
    line-height: 1.6;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--gray-300);
    text-decoration: none;
    transition: var(--transition-fast);
}

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

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-300);
}

.footer-contact i {
    color: var(--primary-green);
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--gray-700);
}

.footer-bottom p {
    color: var(--gray-400);
}

/* ===== スクロールトップボタン ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), var(--teal));
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.25rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-green);
}

/* ===== レスポンシブデザイン ===== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        display: none;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 0;
        box-shadow: var(--shadow-lg);
        transition: var(--transition-normal);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .hero-title-main {
        font-size: 2.5rem;
    }
    
    .hero-title-sub {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title-main {
        font-size: 2rem;
    }
    
    .hero-title-sub {
        font-size: 1.25rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .contact-form {
        padding: 25px;
    }
}

/* ===== 会社概要テーブル ===== */
.company-profile {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--gray-200);
    margin-top: 30px;
}
.company-profile .profile-row {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 16px;
    padding: 16px 4px;
    border-bottom: 1px solid var(--gray-200);
}
.company-profile dt {
    font-weight: 700;
    color: var(--secondary-green);
    font-size: 0.95rem;
}
.company-profile dd {
    color: var(--gray-700);
    font-size: 0.95rem;
    line-height: 1.8;
}
@media screen and (max-width: 480px) {
    .company-profile .profile-row {
        grid-template-columns: 1fr;
        gap: 4px;
    }
}


/* ===== 関連する取り組み（サービス下段） ===== */
.services-related {
    margin-top: 70px;
    padding-top: 50px;
    border-top: 1px solid var(--gray-200);
}
.related-header {
    text-align: center;
    margin-bottom: 30px;
}
.related-label {
    display: block;
    font-family: var(--font-secondary);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary-green);
    margin-bottom: 8px;
}
.related-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-800);
}
.related-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 28px;
    align-items: start;
    max-width: 760px;
    margin: 0 auto;
    background: var(--gray-50);
}
.related-card .service-features {
    margin-top: 14px;
}
@media screen and (max-width: 640px) {
    .related-card {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}


/* ===== 下層ページ（プライバシーポリシー等） ===== */
.legal {
    padding-top: calc(var(--header-height) + 70px);
}
.container-narrow {
    max-width: 820px;
}
.legal-lead {
    color: var(--gray-700);
    line-height: 2;
    margin-bottom: 50px;
}
.legal-block {
    margin-bottom: 40px;
}
.legal-heading {
    position: relative;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gray-900);
    padding-left: 16px;
    margin-bottom: 14px;
}
.legal-heading::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.25em;
    width: 4px;
    height: 1.1em;
    border-radius: 2px;
    background: linear-gradient(180deg, var(--primary-green), var(--teal));
}
.legal-block p {
    color: var(--gray-700);
    line-height: 2;
}
.legal-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.legal-list li {
    position: relative;
    padding-left: 20px;
    color: var(--gray-700);
    line-height: 1.9;
}
.legal-list li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 0.75em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-green);
}
.legal-contact {
    background: var(--gray-50);
    border-radius: 16px;
    padding: 32px;
}
.legal-contact .legal-heading {
    margin-top: 0;
}
.legal-company {
    font-weight: 700;
    color: var(--gray-900) !important;
}
.legal-contact a {
    color: var(--secondary-green);
    text-decoration: none;
}
.legal-contact a:hover {
    text-decoration: underline;
}
.legal-date {
    margin-top: 50px;
    color: var(--gray-600);
    font-size: 0.9rem;
}
.footer-legal {
    list-style: none;
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 12px;
}
.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}
.footer-legal a:hover {
    color: var(--light-green);
}


/* ===== 特定商取引法に基づく表記 ===== */
.tokusho {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--gray-200);
}
.tokusho .tokusho-row {
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: 24px;
    padding: 24px 4px;
    border-bottom: 1px solid var(--gray-200);
}
.tokusho dt {
    font-weight: 700;
    color: var(--secondary-green);
    line-height: 1.9;
}
.tokusho dd {
    color: var(--gray-700);
    line-height: 1.9;
}
.tokusho dd a {
    color: var(--secondary-green);
    text-decoration: none;
}
.tokusho dd a:hover {
    text-decoration: underline;
}
.tokusho .note {
    display: inline-block;
    margin-top: 6px;
    font-size: 0.875rem;
    color: var(--gray-600);
}
.tokusho .tbd {
    background: rgba(251, 191, 36, 0.18);
    border-radius: 4px;
    padding: 0 4px;
}
.tokusho .legal-list {
    margin-top: 2px;
}
@media screen and (max-width: 640px) {
    .tokusho .tokusho-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}


/* ===== フッター免責事項 ===== */
.footer-disclaimer {
    margin-top: 50px;
    padding: 24px 28px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
}
.footer-disclaimer h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
}
.footer-disclaimer ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.footer-disclaimer li {
    position: relative;
    padding-left: 16px;
    font-size: 0.82rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.6);
}
.footer-disclaimer li::before {
    content: '・';
    position: absolute;
    left: 0;
}
