/* ========================================
   リセット・基本設定
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.8;
    color: #333;
    background-color: #fff;
}

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

a {
    color: inherit;
    text-decoration: none;
}

/* ========================================
   コンテナ
======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   ヘッダー
======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.company-logo {
    display: flex;
    align-items: center;
}

.company-logo img {
    height: 50px;
    width: auto;
    display: block;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-list li a {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    white-space: nowrap;
    transition: color 0.3s;
}

.nav-list li a:hover {
    color: #01B0F1;
}

/* ハンバーガーメニュー */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* ========================================
   ファーストビュー
======================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
}

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

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

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.hero-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.4;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
}

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

/* ========================================
   スライダー
======================================== */
.slider-section {
    background-color: #f8f9fa;
    padding: 40px 0;
    overflow: hidden;
}

.slider {
    width: 100%;
    overflow: hidden;
}

.slider-track {
    display: flex;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.slide {
    flex-shrink: 0;
    width: 400px;
    padding: 0 10px;
}

.slide img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ========================================
   セクション共通
======================================== */
section {
    padding: 100px 0;
}

.section-title {
    font-size: 42px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
    position: relative;
    padding-bottom: 25px;
    letter-spacing: 0.05em;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #01B0F1, #00D9FF);
    border-radius: 3px;
}

.subsection-title {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: 0.03em;
}

.text {
    font-size: 17px;
    line-height: 2.2;
    color: #555;
    max-width: 950px;
    margin: 0 auto;
    letter-spacing: 0.02em;
}

.emphasis {
    color: #e74c3c;
    font-weight: 700;
    font-size: 1.1em;
}

.emphasis-large {
    color: #e74c3c;
    font-weight: 900;
    font-size: 1.3em;
}

.highlight {
    background: linear-gradient(transparent 60%, #FFB800 60%);
    font-weight: 700;
    padding: 0 4px;
}

/* ========================================
   こんな方歓迎
======================================== */
.welcome {
    background: linear-gradient(135deg, #01B0F1 0%, #0084C7 100%);
    color: #fff;
    padding: 100px 0;
}

.welcome .section-title {
    color: #fff;
}

.welcome .section-title::after {
    background: #fff;
}

.welcome-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    max-width: 1100px;
    margin: 0 auto;
}

.welcome-item {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 40px 35px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease;
}

.welcome-item:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.2);
}

.welcome-item p {
    font-size: 17px;
    line-height: 2;
    letter-spacing: 0.02em;
}

.welcome .highlight {
    background: none;
    color: #fff;
    font-weight: 900;
    font-size: 1.3em;
    letter-spacing: 0.05em;
}

/* ========================================
   ABOUT US
======================================== */
.about {
    background-color: #f8f9fa;
    padding: 100px 0;
}

.about-image {
    max-width: 850px;
    margin: 0 auto 50px;
    text-align: center;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: translateY(-5px);
}

/* ========================================
   コンテンツブロック（仕事内容、入社後の流れ、魅力、メンバー紹介）
======================================== */
.content-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.content-block:last-of-type {
    margin-bottom: 60px;
}

.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.content-title {
    font-size: 26px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
    letter-spacing: 0.03em;
}

.content-text p {
    font-size: 17px;
    line-height: 2.1;
    color: #555;
    letter-spacing: 0.02em;
}

/* PC表示時の左右交互配置 */
.content-block:nth-child(odd) .content-image {
    order: 1;
}

.content-block:nth-child(odd) .content-text {
    order: 2;
}

.content-block:nth-child(even) .content-image {
    order: 2;
}

.content-block:nth-child(even) .content-text {
    order: 1;
}

/* ========================================
   仕事内容
======================================== */
.work {
    background-color: #fff;
}

.work .content-text p {
    line-height: 1.8;
}

/* ========================================
   入社後の流れ
======================================== */
.flow {
    background-color: #f8f9fa;
}

.flow-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.flow-card {
    background-color: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.flow-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.flow-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

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

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

.flow-content {
    padding: 35px 30px;
}

.flow-title {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: 0.03em;
}

.flow-text {
    font-size: 15px;
    line-height: 2;
    color: #555;
    letter-spacing: 0.02em;
}

/* ========================================
   魅力
======================================== */
.appeal {
    background-color: #fff;
}

.appeal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.appeal-card {
    background-color: #f8f9fa;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.appeal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.appeal-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

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

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

.appeal-content {
    padding: 35px 30px;
}

.appeal-title {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: 0.03em;
}

.appeal-text {
    font-size: 15px;
    line-height: 2;
    color: #555;
    letter-spacing: 0.02em;
}

/* ========================================
   メンバー紹介
======================================== */
.members {
    background-color: #f8f9fa;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.member-card {
    background-color: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.member-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.member-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
}

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

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

.member-content {
    padding: 35px 30px;
}

.member-title {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: 0.03em;
}

.member-text {
    font-size: 15px;
    line-height: 2;
    color: #555;
    letter-spacing: 0.02em;
}

/* ========================================
   CTAボタン
======================================== */
.cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-top: 60px;
    flex-wrap: wrap;
}

.cta-box {
    background: linear-gradient(135deg, #01B0F1 0%, #0084C7 100%);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    margin-top: 80px;
    box-shadow: 0 8px 30px rgba(1, 176, 241, 0.3);
}

.cta-box h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
}

.cta-box p {
    color: #fff;
    font-size: 16px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-box .cta-buttons {
    margin-top: 0;
}

.btn {
    display: inline-block;
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    white-space: nowrap;
    letter-spacing: 0.05em;
}

.btn-primary {
    background: linear-gradient(135deg, #FFB800 0%, #FF9500 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 184, 0, 0.5);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 184, 0, 0.7);
    background: linear-gradient(135deg, #FF9500 0%, #FF8000 100%);
}

.btn-secondary {
    background: #fff;
    color: #01B0F1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border: 2px solid #fff;
    font-weight: 700;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
    background: #f8f9fa;
}

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

/* ========================================
   1日の流れ
======================================== */
.schedule {
    background-color: #fff;
}

.schedule-list {
    list-style: none;
    max-width: 850px;
    margin: 0 auto;
    background-color: #f8f9fa;
    padding: 50px 45px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.schedule-list li {
    font-size: 17px;
    line-height: 2.5;
    color: #333;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
    letter-spacing: 0.02em;
}

.schedule-list li:last-child {
    border-bottom: none;
}

.schedule-list .time {
    display: inline-block;
    font-weight: 700;
    color: #01B0F1;
    min-width: 65px;
    font-size: 18px;
}

/* ========================================
   おわりに
======================================== */
.closing {
    background: linear-gradient(135deg, #01B0F1 0%, #0084C7 100%);
    color: #fff;
    padding: 100px 0;
}

.closing .section-title {
    color: #fff;
}

.closing .section-title::after {
    background: #fff;
}

.closing .text {
    color: #fff;
    font-size: 18px;
    text-align: center;
    line-height: 2.3;
}

.closing .emphasis,
.closing .emphasis-large {
    color: #fff;
    background: rgba(255, 255, 255, 0.25);
    padding: 3px 10px;
    border-radius: 6px;
}

/* ========================================
   募集要項
======================================== */
.requirements {
    background-color: #f8f9fa;
}

.requirement-item {
    max-width: 950px;
    margin: 0 auto 45px;
    background-color: #fff;
    padding: 40px 35px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.requirement-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.requirement-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid #01B0F1;
    letter-spacing: 0.03em;
}

.requirement-item p {
    font-size: 16px;
    line-height: 2.1;
    color: #555;
    letter-spacing: 0.02em;
}

.requirement-item strong {
    color: #2c3e50;
    font-weight: 700;
}

/* ========================================
   応募フォーム
======================================== */
.contact {
    background-color: #fff;
    padding: 100px 0 120px;
}

.contact-description {
    text-align: center;
    font-size: 17px;
    color: #555;
    margin-bottom: 60px;
    letter-spacing: 0.02em;
}

.contact-form {
    max-width: 750px;
    margin: 0 auto;
    background-color: #f8f9fa;
    padding: 60px 55px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* ハニーポット（非表示） */
.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

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

.form-group label {
    display: block;
    font-size: 17px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.required {
    color: #e74c3c;
    font-size: 15px;
    margin-left: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-family: 'Noto Sans JP', sans-serif;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #01B0F1;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

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

.form-submit {
    text-align: center;
    margin-top: 40px;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* ========================================
   フッター
======================================== */
.footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-company h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-company p {
    font-size: 14px;
    line-height: 2;
    color: #bdc3c7;
}

.footer-tel {
    margin-top: 15px;
}

.footer-tel a {
    color: #01B0F1;
    font-weight: 700;
    font-size: 18px;
}

.footer-tel a:hover {
    text-decoration: underline;
}

.footer-nav ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.footer-nav li a {
    color: #bdc3c7;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-nav li a:hover {
    color: #01B0F1;
}

.footer-copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
}

.footer-copyright p {
    font-size: 13px;
    color: #7f8c8d;
}

/* ========================================
   レスポンシブ対応（768px以下）
======================================== */
@media (max-width: 768px) {
    /* ヘッダー */
    .header-container {
        padding: 15px 20px;
    }

    .company-logo img {
        height: 40px;
    }

    .nav {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
    }

    .nav-list li {
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-list li a {
        display: block;
        padding: 15px 30px;
        font-size: 15px;
    }

    .hamburger {
        display: flex;
    }

    /* ファーストビュー */
    .hero {
        height: 70vh;
        min-height: 500px;
        margin-top: 60px;
    }

    .hero-title {
        font-size: 28px;
    }

    /* スライダー */
    .slider-section {
        padding: 30px 0;
    }

    .slide {
        width: 300px;
    }

    .slide img {
        height: 225px;
    }

    /* セクション */
    section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 30px;
        margin-bottom: 45px;
        padding-bottom: 20px;
    }

    .section-title::after {
        width: 80px;
        height: 4px;
    }

    .subsection-title {
        font-size: 24px;
        margin-bottom: 35px;
    }

    .text {
        font-size: 16px;
        line-height: 2;
    }

    /* ABOUT US */
    .about {
        padding: 70px 0;
    }

    .about-image {
        margin-bottom: 35px;
    }

    .about-image img {
        border-radius: 12px;
    }

    /* こんな方歓迎 */
    .welcome {
        padding: 70px 0;
    }

    .welcome-list {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .welcome-item {
        padding: 30px 25px;
        border-radius: 12px;
    }

    .cta-box {
        padding: 35px 25px;
        border-radius: 16px;
        margin-top: 60px;
    }

    .cta-box h3 {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .cta-box p {
        font-size: 14px;
        margin-bottom: 25px;
    }

    /* コンテンツブロック - 重要：スマホ表示では写真→文章の順に統一 */
    .content-block {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-bottom: 70px;
    }

    /* スマホ表示では全て写真を上、文章を下に */
    .content-block .content-image {
        order: 1 !important;
    }

    .content-block .content-text {
        order: 2 !important;
    }

    .content-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .content-text p {
        font-size: 16px;
        line-height: 2;
    }

    /* CTAボタン */
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        margin-top: 50px;
        gap: 20px;
    }

    .btn {
        width: 100%;
        padding: 18px 35px;
        font-size: 17px;
    }

    /* 入社後の流れ */
    .flow-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .flow-image {
        height: 250px;
    }

    .flow-content {
        padding: 30px 25px;
    }

    .flow-title {
        font-size: 20px;
        margin-bottom: 18px;
    }

    .flow-text {
        font-size: 15px;
        line-height: 2;
    }

    /* 魅力 */
    .appeal-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .appeal-image {
        height: 250px;
    }

    .appeal-content {
        padding: 30px 25px;
    }

    .appeal-title {
        font-size: 20px;
        margin-bottom: 18px;
    }

    .appeal-text {
        font-size: 15px;
        line-height: 2;
    }

    /* メンバー紹介 */
    .members-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .member-image {
        height: 280px;
    }

    .member-content {
        padding: 30px 25px;
    }

    .member-title {
        font-size: 20px;
        margin-bottom: 18px;
    }

    .member-text {
        font-size: 15px;
        line-height: 2;
    }

    /* 1日の流れ - 1行で箇条書き */
    .schedule-list {
        padding: 40px 25px;
        border-radius: 12px;
    }

    .schedule-list li {
        font-size: 15px;
        line-height: 2.2;
        padding: 10px 0;
    }

    .schedule-list .time {
        min-width: 60px;
        font-size: 16px;
    }

    /* 募集要項 */
    .requirement-item {
        padding: 30px 25px;
        margin-bottom: 35px;
        border-radius: 12px;
    }

    .requirement-item h3 {
        font-size: 20px;
        margin-bottom: 18px;
        padding-bottom: 10px;
    }

    .requirement-item p {
        font-size: 15px;
        line-height: 2;
    }

    /* 応募フォーム */
    .contact {
        padding: 70px 0 90px;
    }

    .contact-description {
        font-size: 16px;
        margin-bottom: 50px;
    }

    .contact-form {
        padding: 40px 30px;
        border-radius: 12px;
    }

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

    .form-group label {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .form-group input,
    .form-group textarea {
        padding: 15px;
        font-size: 16px;
        border-radius: 8px;
    }

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

    /* フッター */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-nav ul {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   480px以下の追加対応
======================================== */
@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }

    .section-title {
        font-size: 24px;
    }

    .slide {
        width: 250px;
    }

    .slide img {
        height: 188px;
    }

    /* 入社後の流れ */
    .flow-grid {
        gap: 30px;
    }

    .flow-image {
        height: 220px;
    }

    .flow-content {
        padding: 25px 20px;
    }

    .flow-title {
        font-size: 18px;
    }

    .flow-text {
        font-size: 14px;
    }

    /* 魅力 */
    .appeal-grid {
        gap: 30px;
    }

    .appeal-image {
        height: 220px;
    }

    .appeal-content {
        padding: 25px 20px;
    }

    .appeal-title {
        font-size: 18px;
    }

    .appeal-text {
        font-size: 14px;
    }

    /* メンバー紹介 */
    .members-grid {
        gap: 30px;
    }

    .member-image {
        height: 250px;
    }

    .member-content {
        padding: 25px 20px;
    }

    .member-title {
        font-size: 18px;
    }

    .member-text {
        font-size: 14px;
    }
}