/* ページの全体のスタイル */
.single-job .p-breadcrumbs-wrapper{
    display: none;
}

.single-job h1.c-entry__title{
    display: none;
}

.job-section-title.mt24px{
    margin-top: 24px;
}

/* 全体ラッパー */
.job-page-wrapper {
    min-height: 100vh;
    padding: 40px 20px;
    box-sizing: border-box;
}

@media screen and (max-width: 640px) {
    .job-page-wrapper {
        padding: 0;
    }
}



.job-page-inner {
    max-width: 1024px; /* Tailwindの max-w-6xl相当 */
    margin: 0 auto;
}

/* セクション共通 */
.section {
    background-color: #f5f5f5;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgb(0 0 0 / 0.1);
    padding: 24px;
    margin-bottom: 32px;
    box-sizing: border-box;
}

/* グリッドレイアウト */
.job-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 2rem;
}

@media (min-width: 1024px) {
    .job-detail-grid {
        grid-template-columns: 1fr 2fr;
    }
}

.body-content {
    display: flex;
    flex-direction: column;
    /* gap: 24px; */
}



/* サムネイル画像 */
.job-thumbnail-img {
    width: 100%;
    height: 256px; /* h-64相当 */
    object-fit: contain;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgb(0 0 0 / 0.15);
}

.job-thumbnail-noimg {
    width: 100%;
    height: 256px;
    background-color: #e5e7eb; /* gray-200 */
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #6b7280; /* gray-500 */
    font-size: 16px;
}

/* 基本情報 */
.job-basic-info {
    display: flex;
    flex-direction: column;
}

/* タイトル */
.job-title {
    font-size: 2rem; /* text-3xl */
    font-weight: 700;
    color: #111827; /* gray-900 */
    margin-bottom: 16px;
}

@media screen and (max-width: 640px) {
    .job-title {
        font-size: 1.5rem; 
    }
}


/* カテゴリーラベル */
.job-categories {
    margin-bottom: 16px;
}

.job-category-label {
    display: inline-block;
    background-color: var(--accent-color); /* blue-100 */
    color: #fff; /* blue-800 */
    font-size: 0.875rem; /* text-sm */
    font-weight: bold;
    padding: 4px 12px;
    margin-bottom: 4px;
}

/* ラベル共通 */
.job-label {
    font-weight: 600;
    color: #374151; /* gray-800 */
    margin-right: 6px;
}

/* 給与情報 */
/* .job-salary-info {
    margin-bottom: 16px;
} */

.job-salary-text {
    font-size: 1.125rem; /* text-lg */
    color: #4b5563; /* gray-700 */
}

/* 勤務地、交通手段 */
.job-location-info,
.job-traffic-info {
    /* margin-bottom: 16px; */
    color: #4b5563;
}

/* 仕事内容タイトル */
.job-section-title {
    font-size: 1.5rem; /* text-2xl */
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
    padding-bottom: 8px;
    display: flex;
    align-items: center;
}

/* .job-section-title::before {
    content: "";
    background-color: var(--accent-color);
    width: 1em;
    height: 1em;
    display: inline-block;
    margin-right: 8px;
    border-radius: 1rem;
    margin-bottom: 2px;
} */


/* 仕事内容テキスト */
.job-text-content {
    color: #4b5563;
    /* line-height: 1;
    white-space: pre-line; */
}

/* 給与・待遇グリッド */
.salary-treatment-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .salary-treatment-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* 小見出し */
.job-subtitle {
    font-size: 1.25rem; /* text-xl */
    font-weight: 600;
    color: #374151;
    /* margin-bottom: 12px; */
}

/* テキスト共通 */
.job-text {
    color: #4b5563;
    /* line-height: 1.6;
    white-space: pre-line; */
}

/* 加入保険 */
/* .job-social-insurance {
    margin-top: 24px;
} */

.job-social-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.job-social-tag {
    background-color: #f3f4f6; /* gray-100 */
    color: #374151;
    padding: 6px 12px;
    border-radius: 9999px;
    font-size: 0.875rem;
}

/* 勤務時間・休日グリッド */
.time-off-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .time-off-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* 雇用形態グリッド */
.employment-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .employment-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* PR・職場情報 */
.pr-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* 応募方法 */

/* 応募ボタン */
.apply-button-wrapper {
    margin-top: 32px;
    text-align: center;
}

.apply-button {
    display: inline-block;
    background-color: #2d92a4; /* blue-600 */
    color: #fff;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 8px 15px rgba(37, 99, 235, 0.3);
    font-size: 1.125rem;
    min-width: 180px;
}

.apply-button:hover,
.apply-button:focus {
    background-color: #2d92a4; /* blue-700 */
    transform: scale(1.05);
}

.apply-link{
    text-align: center;
    margin-top: 16px;
}

/* お問い合わせボタン */
.contact-button-wrapper {
    margin-top: 32px;
    text-align: center;
}

.contact-button {
    display: inline-block;
    background-color: #0693e3; /* blue-600 */
    color: #fff;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 8px 15px rgba(37, 99, 235, 0.3);
    font-size: 1.125rem;
    min-width: 180px;
}

.contact-button:hover,
.contact-button:focus {
    background-color: #0693e3; /* blue-700 */
    transform: scale(1.05);
}

.contact-link{
    text-align: center;
    margin-top: 16px;
}

/* 登録済みの方はボタン */
.neo-button-wrapper {
    margin-top: 32px;
    text-align: center;
}

.neo-button {
    display: inline-block;
    background-color: #FAA740; /* blue-600 */
    color: #fff;
    font-weight: 700;
    padding: 16px 16px;
    border-radius: 12px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 8px 15px rgba(37, 99, 235, 0.3);
    font-size: 1.125rem;
    min-width: 180px;
}

@media screen and (max-width: 640px) {
    .neo-button {
        font-size: 1rem;
    }
}

.neo-button:hover,
.neo-button:focus {
    background-color: #FAA740; /* blue-700 */
    transform: scale(1.05);
}

.neo-link{
    text-align: center;
    margin-top: 16px;
}

.job-pattern span{
    font-weight: bold;
}
/* 画像に影と角丸をつけてサイズ調整 */
/* テキスト色や行間、余白の調整でほぼTailwind風の雰囲気に */