* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
    line-height: 1.6;
}

.hero-right {
    width: 100%;
    text-align: center;
    position: relative;
}

.hero-image {
    width: 100%;
    height: auto;
}

.top-apply-image {
    max-width: 500px;
    position: absolute;
    bottom: 6%;
    right: 5%;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #2E86AB;
    margin-bottom: 30px;
}

.cta-button img {
    max-width: 500px;
}

.cta-button img:hover {
    transform: scale(0.96);
    transition: 0.3s;
}

/* セクション共通 */
.section-title {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 100px;
}

/* 悩みセクション */
.concerns {
    background: white;
}

.concern-image {
    width: 100%;
    max-width: 1120px;
    height: auto;
    margin: 0 auto;
    display: block;
}

/* ヒトの力セクション */
.human-power {
    background: #5AC1E9;
    padding: 100px 0;
    text-align: center;
}

.human-power-content {
    color: white;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
}

.deadline-info {
    color: white;
    font-weight: bold;
    font-size: 32px;
    text-align: center;
    margin-bottom: 20px;
}

/* 強みセクション */
.advantages {
    background: #DAF6FF;
}

.advantages .container {
    max-width: 800px;
    padding-top: 100px;
    padding-bottom: 80px;
}

.advantages .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.advantage-image {
    width: 100%;
    height: auto;
    margin: 0 auto 50px;
}

/* 実績セクション */
.works {
    background: #f6f6f6;
    padding: 100px 0;
}

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

.works-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}

.works-item {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.works-image {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

/* キャンペーン概要 */
.campaign {
    padding: 100px 0;
}

.outline-image {
    width: 100%;
    max-width: 1080px;
    height: auto;
    margin: 0 auto 40px;
    display: block;
}

/* 流れセクション */
.flow {
    background: white;
    padding: 100px 0;
}

.step-top-image {
    width: 100%;
    max-width: 235px;
    height: auto;
    margin: auto;
    margin-bottom: 100px;
    display: block;
}

.step-main-image {
    width: 100%;
    max-width: 1080px;
    height: auto;
    margin: 0 auto;
}

/* FAQセクション */
.faq {
    background: #f6f6f6;
    padding: 100px 0;
}

.faq-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin: 0 auto 40px;
    display: block;
}

/* 申込フォーム */
.application {
    background: white;
    padding: 100px 0;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 100px;
}

.form-subtitle {
    font-size: 32px;
    margin-bottom: 10px;
}

.sm-description {
    font-size: 15px;
    margin-bottom: 50px;
}

.deadline {
    max-width: 550px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
}

.form-deadline {
    background: #FFD700;
    color: #333;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 1.1rem;
    display: inline-block;
    margin-bottom: 20px;
}

.form-description {
    margin: 0 auto;
    margin-top: 50px;
    font-size: 20px;
    line-height: 1.8;
    font-weight: 500;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 10px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group.full {
    flex: none;
    width: 100%;
}

.form-label {
    display: block;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 30px;
}

.required {
    background-color: #FF0000;
    font-size: 16px;
    padding: 2px 12px;
    color: white;
    border-radius: 2px;
    margin-left: 10px;
}

.form-input {
    width: 100%;
    height: 70px;
    padding: 12px;
    border: 1px solid #E2E0E0;
    border-radius: 5px;
    font-size: 1rem;
    background: #FFE6E6;
}

.form-input:focus {
    outline: none;
    border-color: #2E86AB;
}

.form-textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #E2E0E0;
    border-radius: 5px;
    font-size: 1rem;
    min-height: 218px;
    resize: vertical;
}

.submit-button {
    width: 350px;
    height: 100px;
    background: #0793C3;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 100px auto 0;
}

.submit-button:hover {
    background: #1e5f7a;
}

/* フッター */
.footer {
    background: #5AC1E9;
    color: white;
    padding: 95px 0;
}

.footer-links a {
    color: white;
    text-decoration: none;
    text-align: center;
    font-size: 20px;
    display: block;
}

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

.footer-copyright {
    font-size: 20px;
    text-align: center;
    color: white;
    margin-top: 50px;
    font-weight: 600;
}

/* PC用の改行を非表示 */
.sp {
    display: none;
}

/* 画像のレスポンシブ対応 - PC画像をデフォルトで表示、SP画像を非表示 */
.hero-image.sp,
.concern-image.sp,
.advantage-image.sp,
.works-image.sp,
.outline-image.sp,
.step-main-image.sp,
.faq-image.sp {
    display: none;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .human-power,
    .advantages,
    .works,
    .campaign,
    .flow,
    .faq,
    .application,
    .footer {
        padding: 50px 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .human-power-content {
        font-size: 16px;
    }

    .deadline-info {
        font-size: 22px;
        margin-bottom: 5px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .container {
        padding: 0 22.5px;
    }

    .cta-button img {
        width: 100%;
    }

    .advantages .container {
        padding-top: 0;
        padding-bottom: 0;
    }

    .outline-image {
        margin-bottom: 0;
    }

    .top-apply-image {
        width: 95%;
        bottom: 1%;
        right: 1%;
    }

    .form-container {
        padding: 100px 0;
    }

    .form-title {
        margin-bottom: 50px;
    }

    .form-subtitle {
        font-size: 22px;
    }

    .form-description {
        font-size: 16px;
    }

    .form-container {
        padding: 0;
    }

    .works-container {
        flex-direction: column;
    }

    .works-item {
        min-width: auto;
    }

    .submit-button {
        width: 290px;
        height: 63px;
        font-size: 17px;
        border-radius: 8px;
        margin-top: 50px;
    }

    .footer-links a {
        font-size: 14px;
    }

    .footer-copyright {
        font-size: 14px;
        margin-top: 30px;
    }
    
    .pc {
        display: none;
    }

    /* SP画像を表示、PC画像を非表示 */
    .hero-image.pc,
    .concern-image.pc,
    .advantage-image.pc,
    .works-image.pc,
    .outline-image.pc,
    .step-main-image.pc,
    .faq-image.pc {
        display: none;
    }

    /* SP用の改行を表示 */
    .sp {
        display: block;
    }
    .hero-image.sp,
    .concern-image.sp,
    .advantage-image.sp,
    .works-image.sp,
    .outline-image.sp,
    .step-main-image.sp,
    .faq-image.sp {
        display: block;
    }

}