/* =================================
   生きる力を育む法教育プログラム
   カラースキーム: 緑・オレンジ・黄色
   ================================= */

/* CSS Variables - 緑・オレンジ・黄色のパステルカラー */
:root {
    /* メインカラー: 緑 */
    --primary-green: #7BC950;
    --primary-green-light: #A8D982;
    --primary-green-lighter: #C5E8A7;
    --primary-green-dark: #5FA039;
    
    /* アクセントカラー1: オレンジ */
    --accent-orange: #FF9F40;
    --accent-orange-light: #FFB366;
    --accent-orange-lighter: #FFC999;
    --accent-orange-dark: #E68A2E;
    
    /* アクセントカラー2: 黄色 */
    --accent-yellow: #FFD966;
    --accent-yellow-light: #FFE599;
    --accent-yellow-lighter: #FFF0CC;
    --accent-yellow-dark: #E6C452;
    
    /* 背景色 */
    --bg-cream: #FFFEF7;
    --bg-light-green: #F0F9E8;
    --bg-light-yellow: #FFFDF0;
    --bg-light-orange: #FFF5ED;
    
    /* テキストカラー */
    --text-dark: #333333;
    --text-medium: #666666;
    --text-light: #999999;
    --text-white: #FFFFFF;
    
    /* その他 */
    --shadow: rgba(123, 201, 80, 0.15);
    --shadow-hover: rgba(123, 201, 80, 0.25);
    --border-color: rgba(123, 201, 80, 0.2);
    
    /* フォント */
    --font-primary: 'Noto Sans JP', sans-serif;
    --font-accent: 'Zen Maru Gothic', sans-serif;
}

/* ===========================
   基本スタイル
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    background-color: var(--bg-cream);
    line-height: 1.8;
    overflow-x: hidden;
}

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

/* ===========================
   ナビゲーション
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    box-shadow: 0 2px 20px var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(123, 201, 80, 0.95);
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-accent);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-white);
}

.nav-weezu {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

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

.nav-menu a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-yellow);
    transition: width 0.3s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ===========================
   ヒーローセクション
   =========================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(123, 201, 80, 0.85) 0%, 
        rgba(168, 217, 130, 0.75) 50%,
        rgba(255, 159, 64, 0.65) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-white);
    animation: fadeInUp 1s ease-out;
}

.hero-weezu {
    margin-bottom: 30px;
}

.weezu-float {
    width: 150px;
    height: 150px;
    object-fit: contain;
    animation: float 3s ease-in-out infinite;
}

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

.hero-title {
    font-family: var(--font-accent);
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    font-weight: 500;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px var(--shadow);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-light) 100%);
    color: var(--text-white);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-orange-dark) 0%, var(--accent-orange) 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--shadow-hover);
}

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

.btn-secondary:hover {
    background: var(--bg-light-green);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--shadow-hover);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: var(--text-white);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-20px);
    }
    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* ===========================
   セクション共通スタイル
   =========================== */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-weezu {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin: 0 auto 20px;
    display: block;
    animation: bounceIn 0.8s ease-out;
}

.section-title {
    font-family: var(--font-accent);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 15px;
    line-height: 1.4;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--text-medium);
    font-weight: 400;
}

/* ===========================
   コンセプトセクション
   =========================== */
.concept {
    background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-light-green) 100%);
}

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

.concept-card {
    background: var(--text-white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.concept-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px var(--shadow-hover);
    border-color: var(--primary-green-light);
}

.concept-icon {
    margin-bottom: 20px;
}

.concept-icon img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.concept-card h3 {
    font-family: var(--font-accent);
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 15px;
    line-height: 1.6;
}

.concept-card p {
    color: var(--text-medium);
    line-height: 1.9;
}

/* ===========================
   プログラムの特長セクション
   =========================== */
.features {
    background: var(--bg-cream);
}

.features-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.feature-main, .feature-secondary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.feature-secondary {
    grid-template-columns: 1fr 1fr;
}

.feature-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px var(--shadow);
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feature-image:hover img {
    transform: scale(1.05);
}

.feature-text h3 {
    font-family: var(--font-accent);
    font-size: 1.8rem;
    color: var(--accent-orange);
    margin-bottom: 20px;
}

.feature-text p {
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 2;
}

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

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-medium);
    font-size: 1.05rem;
}

.feature-list i {
    color: var(--primary-green);
    font-size: 1.2rem;
}

/* ===========================
   司法書士セクション
   =========================== */
.shihoshoshi {
    background: linear-gradient(180deg, var(--bg-light-yellow) 0%, var(--bg-cream) 100%);
}

.shihoshoshi-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.shihoshoshi-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px var(--shadow);
}

.shihoshoshi-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.weezu-corner {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: var(--text-white);
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.weezu-corner img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.shihoshoshi-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.shihoshoshi-card {
    background: var(--text-white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 20px var(--shadow);
    transition: all 0.3s ease;
    border-left: 5px solid var(--accent-yellow);
}

.shihoshoshi-card:hover {
    transform: translateX(10px);
    box-shadow: 0 6px 25px var(--shadow-hover);
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary-green-light) 0%, var(--primary-green) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.card-icon i {
    font-size: 1.5rem;
    color: var(--text-white);
}

.shihoshoshi-card h3 {
    font-family: var(--font-accent);
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 12px;
}

.shihoshoshi-card p {
    color: var(--text-medium);
    line-height: 1.9;
}

/* ===========================
   アフターフォローセクション
   =========================== */
.support {
    background: linear-gradient(180deg, var(--bg-light-green) 0%, var(--bg-light-orange) 100%);
}

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

.support-card {
    background: var(--text-white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.support-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-orange) 0%, var(--accent-yellow) 100%);
}

.support-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px var(--shadow-hover);
}

.support-icon {
    margin-bottom: 20px;
}

.support-icon img {
    width: 90px;
    height: 90px;
    object-fit: contain;
}

.support-card h3 {
    font-family: var(--font-accent);
    font-size: 1.5rem;
    color: var(--accent-orange);
    margin-bottom: 15px;
}

.support-card p {
    color: var(--text-medium);
    line-height: 1.9;
}

/* ===========================
   導入実績セクション
   =========================== */
.results {
    background: var(--bg-cream);
}

.results-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.stat-card {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    color: var(--text-white);
    border-radius: 15px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px var(--shadow-hover);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: var(--font-accent);
    display: inline;
}

.stat-label {
    font-size: 2rem;
    font-weight: 700;
    display: inline;
    margin-left: 5px;
}

.stat-card p {
    margin-top: 10px;
    font-size: 1.1rem;
    font-weight: 500;
}

.results-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
    align-items: start;
}

.results-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px var(--shadow);
}

.results-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.results-voices h3 {
    font-family: var(--font-accent);
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.results-intro {
    color: var(--text-medium);
    line-height: 2;
    margin-bottom: 30px;
}

.voice-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.voice-card {
    background: var(--bg-light-green);
    border-radius: 15px;
    padding: 25px;
    border-left: 5px solid var(--accent-yellow);
    box-shadow: 0 3px 15px var(--shadow);
    transition: all 0.3s ease;
}

.voice-card:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px var(--shadow-hover);
}

.voice-icon {
    margin-bottom: 12px;
}

.voice-icon i {
    font-size: 1.5rem;
    color: var(--accent-orange);
}

.voice-card p {
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 10px;
}

.voice-author {
    display: block;
    text-align: right;
    color: var(--text-medium);
    font-size: 0.95rem;
    font-weight: 600;
}

.student-voices {
    margin-top: 40px;
}

.student-voices h3 {
    font-family: var(--font-accent);
    font-size: 2rem;
    color: var(--accent-orange);
    margin-bottom: 30px;
    text-align: center;
}

.sticky-notes-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px var(--shadow);
    max-width: 900px;
    margin: 0 auto;
}

.sticky-notes-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===========================
   お問い合わせセクション
   =========================== */
.contact {
    background: linear-gradient(180deg, var(--bg-light-yellow) 0%, var(--bg-light-green) 100%);
}

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

.contact-info h3 {
    font-family: var(--font-accent);
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 25px;
}

.contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-medium);
    line-height: 1.8;
}

.contact-list i {
    color: var(--accent-orange);
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.contact-note {
    background: var(--text-white);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 15px var(--shadow);
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-note img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    flex-shrink: 0;
}

.contact-note p {
    color: var(--text-medium);
    line-height: 1.8;
}

.contact-form {
    background: var(--text-white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 5px 25px var(--shadow);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.required {
    color: var(--accent-orange);
    font-weight: 700;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-family: var(--font-primary);
    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(123, 201, 80, 0.1);
}

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

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 500;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

.btn-large {
    width: 100%;
    padding: 18px 40px;
    font-size: 1.2rem;
    justify-content: center;
}

/* ===========================
   フッター
   =========================== */
.footer {
    background: linear-gradient(135deg, var(--primary-green-dark) 0%, var(--primary-green) 100%);
    color: var(--text-white);
    padding: 50px 0 30px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-logo img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.footer-logo h3 {
    font-family: var(--font-accent);
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-text p {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.footer-copyright {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 20px;
}

/* ===========================
   トップへ戻るボタン
   =========================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-light) 100%);
    color: var(--text-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px var(--shadow);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: linear-gradient(135deg, var(--accent-orange-dark) 0%, var(--accent-orange) 100%);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px var(--shadow-hover);
}

/* ===========================
   アニメーション
   =========================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

/* スクロールアニメーション用のクラス */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================
   レスポンシブデザイン
   =========================== */

/* タブレット */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 2.3rem;
    }
    
    .feature-main,
    .feature-secondary,
    .shihoshoshi-content,
    .results-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-secondary {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* スマートフォン */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: linear-gradient(180deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 20px;
        gap: 20px;
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .weezu-float {
        width: 100px;
        height: 100px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .concept-grid,
    .support-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .results-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .nav-logo span {
        font-size: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .contact-form {
        padding: 25px;
    }
}

/* アクセシビリティ: アニメーション軽減 */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
