/* ========================================
   メンバー募集ページ専用スタイル
   ======================================== */
.wanted-page {
    padding: 20px 0;
}

/* セクション共通スタイル */
.wanted-section {
    margin-bottom: 50px;
}

.wanted-section:last-child {
    margin-bottom: 0;
}

.wanted-section .section-content {
    margin-bottom: 20px;
    line-height: 1.8;
}

/* 表のスタイル */
.table-wrapper {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 20px 0;
}

.wanted-table {
    width: 100%;
    max-width: 100%;
    border-collapse: collapse;
    background: transparent;
}

.wanted-table thead {
    background: transparent;
}

.wanted-table th {
    padding: 12px 15px;
    text-align: left;
    font-weight: bold;
    border: 1px solid var(--border-white-medium);
    border-bottom: 2px solid var(--secondary-color);
}

.wanted-table td {
    padding: 12px 15px;
    border: 1px solid var(--border-white-light);
    line-height: 1.6;
}

.wanted-table tbody tr:nth-child(even) {
    background: transparent;
}

.wanted-table .fee-amount {
    text-align: right;
    font-weight: bold;
}

/* 持ち物リスト */
.items-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.items-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.8;
}

.items-list li::before {
    content: "・";
    position: absolute;
    left: 0;
}

/* 体験入部について */
.trial-info,
.trial-application,
.trial-flow {
    margin-bottom: 30px;
}

.subsection-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.trial-info p,
.trial-application p,
.flow-content {
    line-height: 1.8;
    white-space: pre-line;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .wanted-section {
        margin-bottom: 40px;
    }
    
    .wanted-table {
        font-size: 0.9rem;
    }
    
    .wanted-table th,
    .wanted-table td {
        padding: 10px 12px;
    }
    
    /* スマホでは表を横スクロール */
    @media (max-width: 600px) {
        .table-wrapper {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }
    }
}
