/* project-detail.php固有のスタイル */
/* コンフリクト回避のため .container ではなく .detail-container を使用 */

.detail-container { max-width: 900px; margin: 0 auto; padding: 16px; }

/* パンくずリストの上書き調整 */
.detail-container .breadcrumb {
margin: 0 0 20px 0;
font-size: 14px;
}

/* ヘッダー */
.back-link { 
display: inline-block;
margin-bottom: 16px;
color: #0066cc;
font-size: 14px;
}

/* メインコンテンツ */
.detail-content { 
background: #fff; 
border-radius: 4px;
border: 1px solid #ddd;
padding: 24px;
}

/* バッジ */
.badges { 
display: flex; 
gap: 6px; 
margin-bottom: 12px;
flex-wrap: wrap;
}
.badge { 
padding: 3px 10px; 
border-radius: 3px; 
font-size: 11px; 
font-weight: 600;
border: 1px solid;
display: inline-block;
}
.badge-new { background: #fff; color: #dc3545; border-color: #dc3545; }
.badge-tag { background: #e8f4f8; color: #0088cc; border-color: #0088cc; }

/* タイトル */
.job-title { 
font-size: 20px; 
font-weight: 700;
margin-bottom: 16px; 
color: #333;
line-height: 1.4;
/* h2のリセット（style.css影響回避） */
border-bottom: none;
padding-bottom: 0;
margin-top: 0;
}
.job-title::before {
display: none;
}

/* 基本情報テーブル */
.info-table { 
width: 100%; 
border-collapse: collapse;
margin-bottom: 20px;
border: 1px solid #d0d0d0;
box-shadow: none;
}
.info-table th,
.info-table td {
padding: 12px 14px;
border: 1px solid #d0d0d0;
vertical-align: middle;
font-size: 13px;
}
.info-table th { 
background: #3b5998;
color: #fff;
text-align: center;
vertical-align: middle;
font-weight: 600;
width: 140px;
border-bottom: 1px solid #d0d0d0;
}
.info-table td { 
color: #333;
background: #fff;
}
.price-highlight {
color: #e67e22;
font-weight: 700;
font-size: 16px;
}

/* セクション */
.detail-section { 
margin-bottom: 20px;
}
.section-title { 
font-size: 15px; 
font-weight: 700;
margin-bottom: 10px; 
color: #0066cc;
padding-bottom: 6px;
border-bottom: 2px solid #0066cc;
margin-top: 0;
text-align: left; /* 左寄せに変更 */
}
.section-title::before {
display: none; /* style.cssのリセット */
}

.section-content { 
color: #333;
line-height: 1.7;
font-size: 14px;
}
.section-text {
white-space: pre-wrap;
line-height: 1.8;
}

/* リスト */
.skill-list {
list-style: none;
padding: 0;
margin: 0;
}
.skill-list li {
padding: 6px 0 6px 20px;
position: relative;
line-height: 1.6;
}
.skill-list li:before {
content: '✓';
position: absolute;
left: 0;
color: #0066cc;
font-weight: bold;
}

/* 契約条件テーブル */
.contract-table {
width: 100%;
border-collapse: collapse;
border: 1px solid #d0d0d0;
box-shadow: none;
}
.contract-table th,
.contract-table td {
padding: 10px 12px;
border: 1px solid #d0d0d0;
font-size: 13px;
vertical-align: middle;
}
.contract-table th {
background: #3b5998;
color: #fff;
text-align: center;
vertical-align: middle;
font-weight: 600;
width: 140px;
border-bottom: 1px solid #d0d0d0;
}

/* アクションボタン */
.action-buttons {
display: flex;
justify-content: center;
margin-top: 24px;
padding-top: 20px;
border-top: 2px solid #e0e0e0;
}
.btn {
padding: 12px 28px;
border-radius: 4px;
font-size: 14px;
font-weight: 600;
cursor: pointer;
border: none;
text-align: center;
display: inline-block;
transition: all 0.2s;
}
.btn-primary {
background: #0066cc;
color: #fff;
}
.btn-primary:hover {
background: #0052a3;
color: #fff;
text-decoration: none;
}
.btn-primary * {
color: inherit;
}

/* メタ情報 */
.meta-info {
margin-top: 20px;
padding-top: 16px;
border-top: 1px solid #e0e0e0;
color: #888;
font-size: 12px;
}

/* レスポンシブ */
@media (max-width: 768px) {
.detail-container {
padding: 12px;
}
.detail-content {
padding: 16px;
}
.info-table {
display: block;
}
.info-table tbody {
display: block;
}
.info-table tr {
display: grid;
grid-template-columns: 120px 1fr;
margin-bottom: -1px;
}
.info-table th,
.info-table td {
display: block;
}
.info-table th {
display: flex;
align-items: center;
justify-content: center;
text-align: center;
width: 120px;
min-width: 120px;
max-width: 120px;
}
.contract-table {
display: block;
}
.contract-table tbody {
display: block;
}
.contract-table tr {
display: grid;
grid-template-columns: 120px 1fr;
margin-bottom: -1px;
}
.contract-table th,
.contract-table td {
display: block;
}
.contract-table th {
display: flex;
align-items: center;
justify-content: center;
text-align: center;
width: 120px;
min-width: 120px;
max-width: 120px;
}
}
/* ページトップへ戻るボタン */
#back-to-top {
position: fixed;
bottom: 20px;
right: 20px;
width: 50px;
height: 50px;
background: #0066cc;
color: #fff;
border-radius: 50%;
border: none;
box-shadow: 0 2px 10px rgba(0,0,0,0.2);
cursor: pointer;
display: none;
z-index: 2000;
align-items: center;
justify-content: center;
font-size: 24px;
transition: all 0.3s;
opacity: 0.9;
}
#back-to-top:hover {
background: #0052a3;
transform: translateY(-3px);
opacity: 1;
}
#back-to-top::before {
content: '▲';
font-size: 18px;
}

/* セカンダリボタン */
.btn-secondary {
background: #6c757d;
color: #fff;
}
.btn-secondary:hover {
background: #5a6268;
color: #fff;
text-decoration: none;
}