/* 応募ページ固有のスタイル */

/* セクション共通 */
.deadline-section,
.guide-section,
.form-section,
.submission-section,
.briefing-section {
    margin-bottom: 40px;
}

/* 応募書類の提出期間 */
.deadline-text {
    font-size: 18px;
    font-weight: bold;
    color: #c41e3a;
    text-align: center;
    padding: 20px;
    background-color: #fff5f5;
    border: 2px solid #c41e3a;
    border-radius: 8px;
    margin-bottom: 30px;
}

/* スクロールボタン */
.scroll-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-btn {
    padding: 10px 20px;
    background-color: #fff;
    border: 2px solid #003366;
    color: #003366;
    text-decoration: none;
    font-size: 16px;
    font-weight: normal;
    text-align: center;
    min-width: 150px;
}

.scroll-btn:hover {
    background-color: #f0f8ff;
    color: #003366;
    text-decoration: none;
}

/* ボタン共通スタイル */
.btn-guide {
    display: block;
    width: 100%;
    margin: 20px 0;
    text-align: center;
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    font-weight:500;
    padding: 20px 24px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-guide span {
    position: relative;
    z-index: 1;
    line-height: 1.4;
}

.btn-guide::before,
.btn-guide::after {
    content: "";
    display: block;
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    transition: 0.3s ease;
}

.btn-guide::before {
    left: 0;
}

.btn-guide::after {
    right: 0;
}

/* 青ボタン */
.btn-blue {
    background-color: #4a5fa5;
    border: 2px solid #4a5fa5;
}

.btn-blue::before,
.btn-blue::after {
    background-color: #4a5fa5;
}

.btn-blue:hover::before,
.btn-blue:hover::after {
    width: 0;
}

.btn-blue:hover {
    background-color: #fff;
    color: #4a5fa5;
    text-decoration: none;
}

/* 赤ボタン */
.btn-red {
    background-color: #c85a5a;
    border: 2px solid #c85a5a;
}

.btn-red::before,
.btn-red::after {
    background-color: #c85a5a;
}

.btn-red:hover::before,
.btn-red:hover::after {
    width: 0;
}

.btn-red:hover {
    background-color: #fff;
    color: #c85a5a;
    text-decoration: none;
}

/* 緑ボタン */
.btn-green {
    background-color: #5a9e5a;
    border: 2px solid #5a9e5a;
}

.btn-green::before,
.btn-green::after {
    background-color: #5a9e5a;
}

.btn-green:hover::before,
.btn-green:hover::after {
    width: 0;
}

.btn-green:hover {
    background-color: #fff;
    color: #5a9e5a;
    text-decoration: none;
}

/* 深ピンクボタン */
.btn-pink {
    background-color: #d14d72;
    border: 2px solid #d14d72;
}

.btn-pink::before,
.btn-pink::after {
    background-color: #d14d72;
}

.btn-pink:hover::before,
.btn-pink:hover::after {
    width: 0;
}

.btn-pink:hover {
    background-color: #fff;
    color: #d14d72;
    text-decoration: none;
}

/* テキストスタイル */
.submission-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.upload-info {
    background-color: #f9f9f9;
    padding: 20px;
    margin: 20px 0;
    border-radius: 4px;
    border-left: 4px solid #0066cc;
}

.upload-info p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

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

.notice-text {
    background-color: #fff5f5;
    padding: 20px;
    margin: 20px 0;
    border-radius: 4px;
    border-left: 4px solid #c41e3a;
}

.notice-text p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 8px;
    color: #c41e3a;
}

.notice-text p:last-child {
    margin-bottom: 0;
}

.briefing-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.briefing-info {
    background-color: #f0f8ff;
    padding: 20px;
    margin: 20px 0;
    border-radius: 4px;
    border: 1px solid #0066cc;
}

.briefing-info p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
}

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

.contact-info {
    background-color: #f0f8ff;
    padding: 20px;
    margin: 20px 0;
    border-radius: 4px;
    border: 2px solid #0066cc;
    text-align: center;
}

.contact-info p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
}

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

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .scroll-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .scroll-btn {
        width: 200px;
        font-size: 13px;
        padding: 8px 16px;
    }
    
    .btn-guide {
        font-size: 16px;
        padding: 16px 20px;
    }
    
    .deadline-text {
        font-size: 16px;
        padding: 15px;
    }
    
    .submission-text,
    .briefing-text {
        font-size: 14px;
    }
    
    .upload-info,
    .notice-text,
    .briefing-info,
    .contact-info {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .scroll-btn {
        width: 180px;
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .btn-guide {
        font-size: 14px;
        padding: 14px 16px;
    }
    
    .deadline-text {
        font-size: 14px;
        padding: 12px;
    }
    
    .submission-text,
    .briefing-text {
        font-size: 13px;
    }
    
    .upload-info p,
    .notice-text p,
    .briefing-info p,
    .contact-info p {
        font-size: 13px;
    }
}