/* 募集要項ページ専用スタイル */
main {
    background-color: #ffffff;
}

.section-title {
    text-align: center;
    font-size: 40px; /* PC時はしっかり大きく */
    font-weight: bold;
    margin: 50px auto 30px;
    color: #d32f2f;
    line-height: 1.2;
}

.info-table {
    max-width: 1000px;
    margin: 0 auto 50px;
    border-collapse: collapse;
    width: 95%;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.info-table th, .info-table td {
    border: 1px solid #ccc;
    padding: 15px;
    text-align: left;
    vertical-align: top;
}

.info-table th {
    background: #f9f9f9;
    width: 25%;
    font-weight: bold;
    color: #333;
}

.flow-steps {
    max-width: 900px;
    margin: 0 auto 50px;
}

.flow-step {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid #ccc;
}

.flow-step h4 {
    font-size: 20px;
    color: #d32f2f;
    margin-bottom: 10px;
}

.flow-step p {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
}

/* 新しい画像矢印のスタイル */
.flow-arrow-image1 {
    width: 200px;
    height: auto;
    margin: 0px 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.entry-link {
    text-align: center;
    margin: 40px 0;
}

.entry-link a {
    background: #d32f2f;
    color: #fff;
    padding: 14px 30px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s;
}

.entry-link a:hover {
    background: #a30000;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
        line-height: 1.3;
    }
    .info-table th, .info-table td {
        display: block;
        width: 100%;
    }
    .info-table th {
        background: #f3f3f3;
        border-bottom: none;
    }
}
