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

:root {
    --primary-green: #1a7c3e;
    --dark-green: #0f5a2b;
    --light-green: #2e9b55;
    --accent-green: #4caf50;
    --primary-red: #e74c3c;
    --dark-red: #c0392b;
    --light-red: #ff6b5a;
    --bg-light: #f8faf9;
    --bg-white: #ffffff;
    --text-dark: #1a1a1a;
    --text-gray: #666666;
    --text-light: #999999;
    --border-color: #e0e0e0;
    --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-heavy: 0 8px 24px rgba(0, 0, 0, 0.16);
}

body {
    font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

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

/* ========================================
   ヘッダー
======================================== */
.header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 24px;
    font-weight: 900;
    color: var(--primary-green);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    font-size: 28px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-powered {
    font-size: 10px;
    font-weight: 400;
    color: var(--text-gray);
    margin-top: 2px;
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 15px;
}

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

.nav-link-cta {
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: white;
    padding: 10px 24px;
    border-radius: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-link-cta:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* ========================================
   メインビジュアル（ヒーローセクション）
======================================== */
.hero {
    background: linear-gradient(135deg, #0f5a2b 0%, #1a7c3e 50%, #2e9b55 100%);
    color: white;
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: scale(1.15);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(255, 255, 255, 0.03) 10px,
            rgba(255, 255, 255, 0.03) 20px
        );
    pointer-events: none;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 90, 43, 0.85) 0%, rgba(26, 124, 62, 0.75) 50%, rgba(46, 155, 85, 0.85) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-subtitle {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 20px;
    opacity: 0.9;
    text-transform: uppercase;
}

.hero-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 24px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 50px;
    opacity: 0.95;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 8px;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
    font-weight: 500;
}

/* ========================================
   ボタン
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Noto Sans JP', sans-serif;
}

.btn-primary {
    background: white;
    color: var(--primary-green);
    box-shadow: var(--shadow-medium);
}

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

.btn-large {
    padding: 18px 42px;
    font-size: 18px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

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

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
    background: linear-gradient(135deg, var(--dark-green), var(--primary-green));
}

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

.section-title {
    font-size: 36px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 16px;
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 60px;
}

/* CTA Wrapper */
.cta-wrapper {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
}

/* ========================================
   ターゲット訴求セクション
======================================== */
.target-section {
    background-color: var(--bg-white);
}

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

.target-card {
    background: linear-gradient(135deg, #f8faf9 0%, #ffffff 100%);
    padding: 40px 30px;
    border-radius: 16px;
    border: 2px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.target-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--light-green);
}

.target-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    color: white;
    box-shadow: var(--shadow-light);
}

.target-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-green);
}

.target-description {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-gray);
}

/* ========================================
   求人例セクション
======================================== */
.jobs-example-section {
    background: linear-gradient(135deg, #f8faf9 0%, #ffffff 100%);
    padding: 80px 0;
}

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

.job-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.job-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-green);
}

.job-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: white;
    letter-spacing: 0.5px;
}

.job-badge-private {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.job-badge-featured {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.job-badge-new {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.job-header {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.job-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.5;
}

.job-salary {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 22px;
    font-weight: 900;
    color: var(--primary-green);
}

.job-salary i {
    font-size: 18px;
}

.job-details {
    margin-bottom: 20px;
}

.job-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

.job-detail-item i {
    color: var(--primary-green);
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.job-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.job-tag {
    background: rgba(26, 124, 62, 0.1);
    color: var(--primary-green);
    padding: 5px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.btn-job-detail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    background: var(--primary-green);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-job-detail:hover {
    background: var(--dark-green);
    transform: translateX(5px);
}

.btn-job-detail i {
    transition: transform 0.3s ease;
}

.btn-job-detail:hover i {
    transform: translateX(5px);
}

.jobs-note {
    background: #fff9e6;
    border-left: 4px solid #f39c12;
    padding: 20px 25px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.jobs-note p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.7;
}

.jobs-note i {
    color: #f39c12;
    font-size: 20px;
    flex-shrink: 0;
}

/* ========================================
   サービス特徴セクション
======================================== */
.features-section {
    background-color: var(--bg-light);
}

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

.feature-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-green), var(--light-green));
}

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

.feature-number {
    font-size: 14px;
    font-weight: 900;
    color: var(--primary-green);
    background: rgba(26, 124, 62, 0.1);
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.feature-description {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
}

.feature-list i {
    color: var(--accent-green);
    font-size: 18px;
}

/* ========================================
   メリットセクション
======================================== */
.benefits-section {
    background: white;
}

.benefits-container {
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    box-shadow: var(--shadow-medium);
}

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

.benefit-item-reverse {
    grid-template-columns: 1fr 200px;
}

.benefit-item-reverse .benefit-content {
    order: -1;
}

.benefit-image {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px;
    color: white;
    box-shadow: var(--shadow-medium);
    margin: 0 auto;
}

.benefit-title {
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 16px;
    color: var(--primary-green);
}

.benefit-description {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.benefit-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    background: var(--primary-green);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.benefit-stats-mini {
    display: flex;
    gap: 40px;
    margin-top: 20px;
}

.mini-stat {
    text-align: center;
}

.mini-stat-number {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary-green);
    margin-bottom: 5px;
}

.mini-stat-label {
    font-size: 13px;
    color: var(--text-gray);
}

.benefit-list {
    list-style: none;
}

.benefit-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 500;
}

.benefit-list i {
    color: var(--accent-green);
    font-size: 16px;
}

/* ========================================
   利用の流れセクション
======================================== */
.flow-section {
    background: linear-gradient(135deg, #f8faf9 0%, #ffffff 100%);
}

.flow-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.flow-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.flow-step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.flow-step-number {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.flow-step-icon {
    width: 80px;
    height: 80px;
    background: rgba(26, 124, 62, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--primary-green);
}

.flow-step-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.flow-step-description {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-gray);
}

.flow-arrow {
    font-size: 24px;
    color: var(--primary-green);
    flex-shrink: 0;
}

/* ========================================
   FAQセクション
======================================== */
.faq-section {
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 25px 30px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-light);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.faq-question i {
    color: var(--primary-green);
    font-size: 22px;
}

.faq-answer {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-gray);
    padding-left: 37px;
}

/* ========================================
   登録フォームセクション
======================================== */
.register-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
    color: white;
    padding: 80px 0;
}

.register-content {
    max-width: 700px;
    margin: 0 auto;
}

.register-title {
    font-size: 36px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 16px;
}

.register-description {
    font-size: 16px;
    text-align: center;
    margin-bottom: 50px;
    opacity: 0.95;
}

.register-form {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
}

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

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

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

.required {
    background: #e74c3c;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    margin-left: 6px;
    font-weight: 700;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Noto Sans JP', sans-serif;
    transition: all 0.3s ease;
    background: white;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(26, 124, 62, 0.1);
}

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

.form-hint {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    margin-top: 6px;
    line-height: 1.5;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--text-dark);
    cursor: pointer;
    font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-green);
}

.privacy-link {
    color: var(--primary-green);
    text-decoration: underline;
    font-weight: 600;
}

/* ========================================
   フッター
======================================== */
.footer {
    background: #1a1a1a;
    color: #e0e0e0;
    padding: 60px 0 30px;
}

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

.footer-title {
    font-size: 22px;
    font-weight: 900;
    color: var(--light-green);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.footer-powered {
    font-size: 10px;
    font-weight: 400;
    color: #888;
    margin-top: 2px;
}

.footer-description {
    font-size: 14px;
    line-height: 1.8;
    color: #b0b0b0;
}

.footer-section-title {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-contact {
    font-size: 14px;
    line-height: 1.8;
    color: #b0b0b0;
    margin-bottom: 15px;
}

.footer-contact i {
    color: var(--light-green);
    margin-right: 8px;
}

.footer-contact-time {
    display: block;
    font-size: 12px;
    color: #888;
    margin-top: 5px;
    margin-left: 24px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #888;
    font-size: 13px;
}

/* ========================================
   固定応募ボタン
======================================== */
.fixed-cta-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    animation: fadeInUp 0.5s ease;
}

.btn-fixed-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 32px;
    background: linear-gradient(135deg, var(--primary-red), var(--light-red));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(231, 76, 60, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-fixed-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 32px rgba(231, 76, 60, 0.6);
    background: linear-gradient(135deg, var(--dark-red), var(--primary-red));
}

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

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

/* 固定ボタンがフォームエリアで隠れる */
.fixed-cta-button.hidden {
    opacity: 0;
    pointer-events: none;
}

/* ========================================
   レスポンシブデザイン
======================================== */
@media (max-width: 968px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .hero-stats {
        gap: 40px;
    }
    
    .benefit-item,
    .benefit-item-reverse {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .benefit-item-reverse .benefit-content {
        order: 0;
    }
    
    .benefit-tags {
        justify-content: center;
    }
    
    .benefit-stats-mini {
        justify-content: center;
    }
    
    .flow-arrow {
        display: none;
    }
    
    .jobs-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .header-content {
        justify-content: center;
    }
    
    .hero {
        padding: 60px 0 80px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .target-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .jobs-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .register-form {
        padding: 40px 25px;
    }
    
    .benefit-item {
        padding: 30px 20px;
    }
    
    .benefit-title {
        font-size: 22px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* 固定ボタンをモバイル用に調整 */
    .fixed-cta-button {
        bottom: 15px;
        right: 15px;
        left: 15px;
    }
    
    .btn-fixed-cta {
        width: 100%;
        padding: 16px 24px;
        font-size: 16px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .btn-large {
        padding: 16px 32px;
        font-size: 16px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .register-title {
        font-size: 28px;
    }
}