/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', sans-serif;
    font-weight: 300;
    color: #333;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Hero Section */
.hero {
    width: 100%;
    position: relative;
}

.hero-video {
    width: 100%;
    height: auto;
    position: relative;
}

.hero-video video {
    width: 100%;
    height: auto;
    display: block;
}

/* デフォルト（モバイル版）: モバイル動画を表示、PC動画を非表示 */
.hero-video-pc {
    display: none !important;
}

.hero-video-mobile {
    display: block !important;
}

/* タブレット・PC版（768px以上）: PC動画を表示、モバイル動画を非表示 */
@media screen and (min-width: 768px) {
    .hero-video-pc {
        display: block !important;
    }
    
    .hero-video-mobile {
        display: none !important;
    }
}

/* 動画内のボタン配置エリア */
.hero-button-wrapper {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 90%;
    max-width: 500px;
    display: flex;
    justify-content: center;
}

/* 動画内のボタンスタイル - レスポンシブ対応 */
.hero-video-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: clamp(6px, 1.5vw, 12px);
    background: linear-gradient(135deg, #00BFA5 0%, #00D4B8 100%);
    color: #fff;
    font-size: clamp(16px, 2.5vw, 28px);
    font-weight: 700;
    padding: clamp(12px, 2vw, 24px) clamp(24px, 5vw, 60px);
    border-radius: 60px;
    text-decoration: none;
    box-shadow: 
        0 8px 24px rgba(0, 191, 165, 0.5),
        0 2px 8px rgba(0, 191, 165, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

/* キラキラエフェクト */
.hero-video-button::before {
    content: '✨';
    position: absolute;
    left: clamp(8px, 1.5vw, 15px);
    font-size: clamp(14px, 2vw, 20px);
    animation: sparkle 2s ease-in-out infinite;
}

.hero-video-button::after {
    content: '✨';
    position: absolute;
    right: clamp(8px, 1.5vw, 15px);
    font-size: clamp(12px, 1.8vw, 18px);
    animation: sparkle 2s ease-in-out infinite 1s;
}

/* ホバーエフェクト */
.hero-video-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 12px 32px rgba(0, 191, 165, 0.6),
        0 4px 12px rgba(0, 191, 165, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, #00D4B8 0%, #00BFA5 100%);
}

/* 矢印スタイル - レスポンシブ対応 */
.hero-video-button .cta-arrow {
    font-size: clamp(9px, 1.5vw, 14px);
    animation: arrowBounce 1.5s ease-in-out infinite;
}

/* Container */
.container {
    max-width: 375px;
    margin: 0 auto;
    padding: 60px 15px;
}

/* 最初の白背景セクション（やさしさを〜）の下余白を増やす */
.section-white:first-of-type .container {
    padding-bottom: 80px;
}

/* h2タイトルのみのセクションはpadding調整 */
.section-white .container {
    padding: 60px 15px;
}

/* カラーセクションのコンテナは斜め部分の高さ分のpaddingを追加 */
.section-yellow .container,
.section-bright-yellow .container,
.section-pink .container,
.section-blue .container,
.section-contact .container {
    padding-top: 90px;
    padding-bottom: 60px;
}

/* Section Styles */
.section {
    width: 100%;
    position: relative;
}

.section-white {
    background-color: #fff;
}

.section-yellow {
    background-color: #e7eab4;
    position: relative;
}

/* 白→黄色(薄)への斜めトランジション */
.section-yellow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom right, #fff 49.5%, #e7eab4 50.5%);
}

.section-bright-yellow {
    background-color: #ede066;
    position: relative;
}

/* 黄色(薄)→黄色(濃)への斜めトランジション */
.section-bright-yellow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom right, #e7eab4 49.5%, #ede066 50.5%);
}

.section-pink {
    background-color: #fce8eb;
    position: relative;
}

/* 黄色(濃)→ピンクへの斜めトランジション */
.section-pink::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom right, #ede066 49.5%, #fce8eb 50.5%);
}

.section-blue {
    background-color: #c0e1ea;
    position: relative;
}

/* ピンク→青への斜めトランジション */
.section-blue::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom right, #fce8eb 49.5%, #c0e1ea 50.5%);
}

.section-contact {
    background-color: #81c4b9;
    text-align: center;
    position: relative;
}

/* 青→緑への斜めトランジション */
.section-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom right, #c0e1ea 49.5%, #81c4b9 50.5%);
}

/* Typography */
/* h1 - ヒーロータイトル */
.hero-title {
    font-family: 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', sans-serif;
    font-weight: 600;
    font-size: 24px;
    letter-spacing: 0.05em;
    line-height: 34px;
    text-align: center;
    margin-bottom: 24px;
    color: #333;
}

/* h2 - セクションタイトル */
.section-title {
    font-family: 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', sans-serif;
    font-weight: 600;
    font-size: 24px;
    letter-spacing: 0.05em;
    line-height: 44px;
    text-align: center;
    margin-top: 60px;
    margin-bottom: 40px;
    color: #111111;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* セクションの最初のh2は上マージンなし */
.section-title:first-child {
    margin-top: 0;
}

/* h2内のグラデーション */
/* やさしさ: オレンジ→黄色 */
.gradient-yasashisa {
    background: linear-gradient(90deg, #ff8c00 0%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 寄り添い: 黄緑→緑 */
.gradient-yorisoi {
    background: linear-gradient(90deg, #9acd32 0%, #228b22 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 精神障害: 水色→紺 */
.gradient-seishin {
    background: linear-gradient(90deg, #87ceeb 0%, #191970 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 子育て世代: ピンク→水色 */
.gradient-kosodate {
    background: linear-gradient(90deg, #ff69b4 0%, #87ceeb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* オレンジアンダーライン */
.under {
    background: linear-gradient(transparent 75%, #ffc499 75%);
}

/* h3 - サブタイトル */
.subtitle,
.box-title,
.info-title {
    font-family: 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', sans-serif;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.05em;
    line-height: 34px;
    text-align: left;
    margin-bottom: 16px;
    color: #333333;
}

/* 目立たせるサブタイトル */
.subtitle-highlight {
    font-family: 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', sans-serif;
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 0.05em;
    line-height: 34px;
    text-align: center;
    margin-bottom: 32px;
    color: #ff6b35;
    background: linear-gradient(135deg, #fff9e6 0%, #ffe8cc 100%);
    padding: 16px 24px;
    border-radius: 8px;
    border-left: 4px solid #ff6b35;
}

/* table-title, box-title, info-title - 背景付き見出し */
.table-title,
.box-title,
.info-title {
    font-family: 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', sans-serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 34px;
    text-align: left;
    color: #fff !important;
    background-color: #333333;
    padding: 2px 16px;
    border-radius: 4px;
    display: block;
    width: fit-content;
}

/* 黄色背景内の見出し - 補色（青紫） */
.section-bright-yellow .box-title {
    background-color: #6666ed;
}

/* ピンク背景内の見出し - 補色（緑青） */
.section-pink .table-title,
.section-pink .box-title {
    background-color: #17b8a0;
}

/* 青背景内の見出し - 補色（オレンジ） */
.section-blue .box-title {
    background-color: #ea9f15;
}

/* 緑背景内の見出し - 補色（赤紫） */
.section-contact .info-title {
    background-color: #c48190;
}

/* pointラベルも補色に */
.section-yellow .point-label {
    background-color: #6666ed;
}

.section-pink .point-label {
    background-color: #17b8a0;
}

.table-title {
    margin-bottom: 16px;
}

/* お問い合わせセクションのh2とh3を白色に */
.section-contact .section-title,
.section-contact .subtitle {
    color: #fff;
}

/* お問い合わせセクションのsubtitleは中央揃え・白色 */
.section-contact .subtitle {
    text-align: center;
    color: #fff;
}

/* 本文テキスト - 14px */
.body-text,
.intro-text,
.point-text,
.info-text {
    font-family: 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', sans-serif;
    font-weight: 200;
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 25px;
    text-align: left;
    margin-bottom: 20px;
    color: #737373;
}

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

.body-text.emphasis {
    font-weight: 600;
}

.body-text.quote {
    text-align: center;
    margin: 30px 0;
}

/* Point Box */
.point-box {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-top: 40px;
    margin-bottom: 20px;
    position: relative;
}

.point-label {
    display: inline-block;
    background-color: #333;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.point-text {
    font-family: 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', sans-serif;
    font-weight: 200;
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 25px;
    color: #666666;
}

.point-list {
    list-style: none;
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 25px;
    color: #737373;
}

.point-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
}

.point-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
}

/* Support List */
.support-list {
    list-style: none;
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 25px;
    color: #737373;
    margin-bottom: 20px;
}

.support-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
}

.support-list li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: #6666ed;
    font-size: 0.8em;
}

/* Work Conditions */
.work-conditions {
    margin: 40px 0;
}

.conditions-title {
    font-family: 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', sans-serif;
    font-weight: 600;
    font-size: 18px;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

/* 勤務時間・給与の表 */
.conditions-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.conditions-table thead {
    background-color: #17b8a0;
}

.conditions-table thead th {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 10px;
    text-align: center;
}

.conditions-table tbody td {
    padding: 16px 10px;
    text-align: center;
    font-size: 13px;
    line-height: 22px;
    color: #737373;
    border-bottom: 1px solid #f0f0f0;
}

.conditions-table tbody tr:last-child td {
    border-bottom: none;
}

.conditions-table .row-label {
    background-color: #f8f8f8;
    font-weight: 600;
    color: #333;
    text-align: center;
}

.conditions-table .salary {
    font-size: 16px;
    font-weight: 600;
    color: #17b8a0;
}

/* Benefits List */
.benefits-list {
    list-style: none;
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 25px;
    color: #737373;
    margin-top: 20px;
}

.benefits-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
}

.benefits-list li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: #17b8a0;
    font-size: 0.8em;
}

/* Welfare List */
.welfare-list {
    list-style: none;
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 25px;
    color: #737373;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.welfare-list li {
    position: relative;
    padding-left: 20px;
}

.welfare-list li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: #17b8a0;
    font-size: 0.8em;
}

/* Checklist */
.checklist-with-image {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 32px 0;
}

.checklist-box {
    background-color: #fff;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.checklist {
    list-style: none;
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 25px;
    color: #737373;
}

.checklist li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 16px;
}

.checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ea9f15;
    font-weight: bold;
    font-size: 18px;
}

.checklist-image {
    width: 100%;
    max-width: 120px;
    height: auto;
    margin: 0 auto;
}

.checklist-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* モバイル版でヘルプマーク画像を横100%に */
@media screen and (max-width: 767px) {
    .checklist-image {
        max-width: none;
        margin-left: -15px;
        margin-right: -15px;
        width: calc(100% + 30px);
    }
    
    .checklist-image img {
        border-radius: 0;
    }
}

/* Two Column Layout */
.two-column-layout {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 32px 0;
}

.content-column {
    width: 100%;
}

.side-image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

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

/* Content Images */
.content-image {
    margin: 32px 0;
    border-radius: 8px;
    overflow: hidden;
}

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

.image-placeholder {
    width: 100%;
    height: 200px;
    background-color: #f0f0f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 32px 0;
    overflow: hidden;
}

/* モバイル版で作業風景の画像を横100%に */
@media screen and (max-width: 767px) {
    .image-placeholder {
        margin-left: -15px;
        margin-right: -15px;
        width: calc(100% + 30px);
        border-radius: 0;
    }
}

/* Contact Section */
.contact-wrapper {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 40px 24px;
    margin: 40px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.contact-item {
    text-align: center;
    padding: 24px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.contact-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.contact-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
}

.contact-detail {
    margin-bottom: 8px;
}

.phone-number {
    font-size: 24px;
    font-weight: 600;
    color: #17b8a0;
    text-decoration: none;
}

.phone-number:hover {
    color: #149889;
}

/* 新しい応募ボタン（お問い合わせセクション用） */
.contact-form-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: clamp(6px, 1.5vw, 10px);
    background: linear-gradient(135deg, #00BFA5 0%, #00D4B8 100%);
    color: #fff;
    font-size: clamp(16px, 2.5vw, 22px);
    font-weight: 700;
    padding: clamp(12px, 2vw, 18px) clamp(24px, 5vw, 48px);
    border-radius: 60px;
    text-decoration: none;
    box-shadow: 
        0 8px 24px rgba(0, 191, 165, 0.5),
        0 2px 8px rgba(0, 191, 165, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

/* キラキラエフェクト */
.contact-form-button::before {
    content: '✨';
    position: absolute;
    left: clamp(8px, 1.5vw, 12px);
    font-size: clamp(14px, 2vw, 18px);
    animation: sparkle 2s ease-in-out infinite;
}

.contact-form-button::after {
    content: '✨';
    position: absolute;
    right: clamp(8px, 1.5vw, 12px);
    font-size: clamp(12px, 1.8vw, 16px);
    animation: sparkle 2s ease-in-out infinite 1s;
}

/* ホバーエフェクト */
.contact-form-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 12px 32px rgba(0, 191, 165, 0.6),
        0 4px 12px rgba(0, 191, 165, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, #00D4B8 0%, #00BFA5 100%);
}

/* 矢印スタイル */
.contact-form-button .cta-arrow {
    font-size: clamp(9px, 1.5vw, 12px);
    animation: arrowBounce 1.5s ease-in-out infinite;
}

/* 古いフォームリンクのスタイルを削除 */
.form-link {
    display: none;
}

.contact-time {
    font-size: 13px;
    color: #999;
}

.contact-message {
    text-align: center;
    font-size: 14px;
    line-height: 25px;
    color: #666;
}

/* Office Section */
.office-section {
    margin-top: 60px;
}

.office-section-title {
    font-family: 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', sans-serif;
    font-weight: 600;
    font-size: 20px;
    text-align: center;
    margin-bottom: 32px;
    color: #fff;
}

.office-info {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 32px;
}

.info-item {
    margin-bottom: 24px;
}

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

.info-label {
    font-weight: 600;
    font-size: 14px;
    color: #17b8a0;
    margin-bottom: 8px;
}

.info-content {
    font-size: 14px;
    line-height: 25px;
    color: #666;
}

/* Map */
.map-placeholder {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Thank You Message */
.thank-you-message {
    margin-top: 40px;
    padding: 32px 24px;
    text-align: center;
    background: linear-gradient(135deg, #00BFA5 0%, #00D4B8 100%);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 191, 165, 0.3);
}

.thank-you-message p {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    letter-spacing: 0.05em;
}

/* Footer */
.footer {
    background-color: #fff;
    padding: 40px 20px;
    text-align: center;
}

.footer-logo {
    max-width: 200px;
    margin: 0 auto;
}

.footer-logo img {
    width: 100%;
    height: auto;
    display: block;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    margin: 3% auto;
    padding: 40px 30px;
    border-radius: 20px;
    max-width: 90%;
    width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: slideDown 0.4s ease;
}

.modal-title {
    font-size: 28px;
    font-weight: 700;
    color: #111;
    text-align: center;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #00BFA5 0%, #00D4B8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-subtitle {
    text-align: center;
    color: #666;
    font-size: 14px;
    margin-bottom: 32px;
}

.close {
    color: #999;
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 32px;
    font-weight: bold;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close:hover,
.close:focus {
    color: #00BFA5;
    background-color: rgba(0, 191, 165, 0.1);
    transform: rotate(90deg);
}

/* Contact Form */
.contact-form {
    width: 100%;
}

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

.form-label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-label.required::after {
    content: '必須';
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    background-color: #ff6b6b;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 8px;
}

.form-note {
    font-size: 12px;
    color: #666;
    margin-top: 4px;
    margin-bottom: 12px;
}

.form-error {
    font-size: 13px;
    color: #ff6b6b;
    margin-top: 8px;
    padding: 8px 12px;
    background-color: #fff5f5;
    border-left: 3px solid #ff6b6b;
    border-radius: 4px;
}

.form-info-text {
    font-size: 14px;
    color: #333;
    font-weight: 600;
    margin-bottom: 12px;
    padding: 12px;
    background-color: #f0f9f7;
    border-radius: 6px;
    text-align: center;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: #fff;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #00BFA5;
    box-shadow: 0 0 0 4px rgba(0, 191, 165, 0.1);
}

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

/* Checkbox Group */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    transition: all 0.3s ease;
    background-color: #fff;
}

.checkbox-label:hover {
    border-color: #00BFA5;
    background-color: rgba(0, 191, 165, 0.05);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    cursor: pointer;
    accent-color: #00BFA5;
}

.checkbox-text {
    font-size: 14px;
    color: #333;
}

/* Date Group */
.date-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.date-item {
    display: flex;
    flex-direction: column;
}

.date-label {
    font-size: 13px;
    font-weight: 600;
    color: #666;
    margin-bottom: 6px;
}

/* Submit Button */
.submit-button {
    width: 100%;
    background: #ccc;
    color: #888;
    border: none;
    padding: 18px 32px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: not-allowed;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.submit-button:not(:disabled) {
    background: linear-gradient(135deg, #00BFA5 0%, #00D4B8 100%);
    color: #fff;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 191, 165, 0.3);
}

.submit-button:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 191, 165, 0.4);
    background: linear-gradient(135deg, #00D4B8 0%, #00BFA5 100%);
}

.submit-button:not(:disabled):active {
    transform: translateY(0);
}

.submit-text {
    line-height: 1.4;
    text-align: center;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.submit-text .submit-arrow {
    font-size: 50%;
}

.submit-arrow {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.submit-button:hover .submit-arrow {
    transform: translateX(4px);
}

/* Animations */
@keyframes sparkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(0.8) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.2) rotate(180deg);
    }
}

@keyframes arrowBounce {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(5px);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Tablet Styles (768px) */
@media screen and (min-width: 768px) {
    .container {
        max-width: 720px;
        padding: 80px 24px;
    }

    .section-white:first-of-type .container {
        padding-bottom: 100px;
    }

    .section-white .container {
        padding: 80px 24px;
    }

    .section-yellow .container,
    .section-bright-yellow .container,
    .section-pink .container,
    .section-blue .container,
    .section-contact .container {
        padding-top: 110px;
        padding-bottom: 80px;
    }

    .section-yellow::before,
    .section-bright-yellow::before,
    .section-pink::before,
    .section-blue::before,
    .section-contact::before {
        height: 100px;
    }

    /* h2を拡大 */
    .section-title {
        font-size: 28px;
        line-height: 50px;
        margin-bottom: 48px;
    }

    /* h3を拡大 */
    .subtitle,
    .box-title,
    .info-title {
        font-size: 20px;
        line-height: 38px;
    }

    /* 本文テキストを拡大 */
    .body-text,
    .intro-text,
    .point-text,
    .info-text {
        font-size: 16px;
        line-height: 28px;
    }

    .table-title {
        font-size: 20px;
        line-height: 38px;
    }

    .label {
        font-size: 16px;
        line-height: 28px;
    }

    .table-col p {
        font-size: 16px;
        line-height: 28px;
    }

    .support-list {
        font-size: 16px;
        line-height: 28px;
    }

    .point-list {
        font-size: 16px;
        line-height: 28px;
    }

    .point-box {
        margin-top: 48px;
    }

    .benefits-list {
        font-size: 16px;
        line-height: 28px;
    }

    .welfare-list {
        font-size: 16px;
        line-height: 28px;
    }

    .checklist li {
        font-size: 16px;
        line-height: 28px;
    }

    .image-placeholder {
        height: 300px;
    }

    .info-tables {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .welfare-list {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-button {
        font-size: 18px;
        padding: 20px 60px;
    }

    .map-placeholder {
        height: 400px;
    }
    
    /* 勤務時間・給与の表 */
    .conditions-table thead th {
        font-size: 16px;
        padding: 14px 12px;
    }
    
    .conditions-table tbody td {
        font-size: 15px;
        line-height: 24px;
        padding: 18px 12px;
    }
    
    .conditions-table .salary {
        font-size: 18px;
    }
    
    /* Two Column Layout for Tablet */
    .two-column-layout {
        flex-direction: row;
        align-items: flex-start;
        gap: 20px;
    }
    
    .content-column {
        flex: 1;
    }
    
    .side-image {
        width: 200px;
        flex-shrink: 0;
    }
    
    /* Checklist with Image for Tablet */
    .checklist-with-image {
        flex-direction: row;
        align-items: stretch;
        gap: 20px;
    }
    
    .checklist-box {
        flex: 1;
    }
    
    .checklist-image {
        width: 150px;
        height: auto;
        max-width: none;
        margin: 0;
        flex-shrink: 0;
        align-self: stretch;
    }
    
    .checklist-image img {
        height: 100%;
        object-fit: cover;
    }
}

/* Desktop Styles (1200px) */
@media screen and (min-width: 1200px) {
    .container {
        max-width: 950px;
        padding: 100px 40px;
    }

    .section-white:first-of-type .container {
        padding-bottom: 120px;
    }

    .section-white .container {
        padding: 100px 40px;
    }

    .section-yellow .container,
    .section-bright-yellow .container,
    .section-pink .container,
    .section-blue .container,
    .section-contact .container {
        padding-top: 130px;
        padding-bottom: 100px;
    }

    .section-yellow::before,
    .section-bright-yellow::before,
    .section-pink::before,
    .section-blue::before,
    .section-contact::before {
        height: 120px;
    }

    /* h2をさらに拡大 */
    .section-title {
        font-size: 42px;
        line-height: 64px;
        margin-bottom: 56px;
    }

    /* h3をさらに拡大 */
    .subtitle,
    .box-title,
    .info-title {
        font-size: 22px;
        line-height: 42px;
    }

    /* 本文テキストをさらに拡大 */
    .body-text,
    .intro-text,
    .point-text,
    .info-text {
        font-size: 18px;
        line-height: 32px;
        margin-bottom: 24px;
    }

    .table-title {
        font-size: 22px;
        line-height: 42px;
    }

    .label {
        font-size: 18px;
        line-height: 32px;
    }

    .table-col p {
        font-size: 18px;
        line-height: 32px;
    }

    .support-list {
        font-size: 18px;
        line-height: 32px;
    }

    .point-list {
        font-size: 18px;
        line-height: 32px;
    }

    .point-box {
        margin-top: 56px;
    }

    .benefits-list {
        font-size: 18px;
        line-height: 32px;
    }

    .welfare-list {
        font-size: 18px;
        line-height: 32px;
    }

    .checklist li {
        font-size: 18px;
        line-height: 32px;
    }

    .image-placeholder {
        height: 400px;
    }

    .support-box,
    .encouragement-box {
        padding: 32px 28px;
    }

    .box-title {
        font-size: 22px;
    }

    .info-table {
        padding: 32px 28px;
    }

    .table-title {
        font-size: 22px;
    }

    .contact-button {
        font-size: 20px;
        padding: 22px 72px;
    }

    .map-placeholder {
        height: 500px;
    }

    .modal-content {
        max-width: 600px;
        padding: 48px;
    }
    
    /* 勤務時間・給与の表 */
    .conditions-table thead th {
        font-size: 18px;
        padding: 16px 14px;
    }
    
    .conditions-table tbody td {
        font-size: 16px;
        line-height: 26px;
        padding: 20px 14px;
    }
    
    .conditions-table .salary {
        font-size: 20px;
    }
    
    /* Two Column Layout for PC */
    .side-image {
        width: 250px;
    }
    
    .checklist-image {
        width: 180px;
    }

    /* 2カラムレイアウト調整 */
    .section-intro .container,
    .section-white .container {
        max-width: 900px;
    }
    
    .footer {
        padding: 80px 60px;
    }
    
    .footer-logo {
        max-width: 300px;
    }
    
    /* Modal for Desktop */
    .modal-content {
        padding: 60px 50px;
        max-width: 750px;
        max-height: 85vh;
    }
    
    .modal-title {
        font-size: 32px;
    }
}

/* Placeholder Text */
.placeholder-text {
    font-size: 14px;
    color: #999;
    text-align: center;
    padding: 20px;
    font-style: italic;
}

/* CTA Image Placeholder */
.cta-image-placeholder {
    margin: 32px auto;
    text-align: center;
    min-height: 80px;
}

/* Responsive adjustments for contact section */
@media (min-width: 768px) {
    .contact-methods {
        flex-direction: row;
        justify-content: center;
        gap: 24px;
    }
    
    .contact-item {
        flex: 1;
        max-width: 320px;
    }
    
    .contact-intro {
        font-size: 18px;
    }
    
    .contact-wrapper {
        padding: 48px 32px;
    }
    
    .office-section-title {
        font-size: 24px;
    }
    
    .placeholder-text {
        font-size: 16px;
    }
    
    .cta-image-placeholder {
        min-height: 100px;
    }
    
    .footer {
        padding: 60px 40px;
    }
    
    .footer-logo {
        max-width: 250px;
    }
    
    /* Modal for Tablet */
    .modal-content {
        padding: 50px 40px;
        max-width: 700px;
        max-height: 85vh;
    }
}
