@charset "UTF-8";

/* =====================================================
   求人ページ共通設定（変数継承）
===================================================== */
:root {
    --recruit-bg: #fffcf9;
    --accent-orange: #f39800;
    --azuki: #96514d;
    --wakakusa: #abc900;
}

/* =====================================================
   メインレイアウト
===================================================== */
.recruit-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
    line-height: 1.8;
}

/* ヘッダー・キャッチコピー周り（不足していた箇所） */
.recruit-title {
    text-align: center;
    margin-bottom: 50px;
}

.sub-copy {
    color: var(--accent-orange);
    font-weight: bold;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 10px;
}

.recruit-title h2 {
    font-size: 1.8rem;
    color: var(--azuki);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.recruit-title h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--wakakusa);
}

/* 導入文セクション（不足していた箇所） */
.intro-section {
    margin-bottom: 40px;
    text-align: center;
}

.concept-box {
    background-color: #fdf2e9;
    padding: 25px;
    border-radius: 15px;
    margin-top: 20px;
    border-left: 5px solid var(--accent-orange);
}

/* =====================================================
   コンテンツグループ（保存情報適用）
===================================================== */
.recruit-info-group {
    margin-left: 100px; /* 保存された設定 */
    margin-bottom: 50px;
}

.recruit-info-group h3 {
    color: var(--azuki);
    border-bottom: 1px solid #e6d5d5;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

/* =====================================================
   フォーム・テーブル設定
===================================================== */
.recruit-form-box {
    background: #fff;
    border: 1px solid #e6d5d5;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(150, 81, 77, 0.05);
}

.form-row {
    margin-bottom: 25px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    overflow: visible;
}

.form-row label {
    width: 200px;
    font-weight: bold;
    color: var(--azuki);
    padding-right: 20px;
}

.form-row label.required::after {
    content: "必須";
    font-size: 10px;
    background: #e74c3c;
    color: #fff;
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 8px;
}

.form-content {
    flex: 1;
    min-width: 300px;
}

input[type="text"],
input[type="number"],
input[type="email"],
textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fcfcfc;
}

/* 確認テーブル */
.recruit-confirm-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #e6d5d5;
    border-radius: 12px;
    overflow: hidden;
}

.recruit-confirm-table th {
    width: 30%;
    background: #fdf2e9;
    color: var(--azuki);
    padding: 20px;
    text-align: left;
}

.recruit-confirm-table td {
    padding: 20px;
    border-bottom: 1px solid #f0e6e6;
}

/* =====================================================
   ボタン・コンタクトスタック（保存情報適用）
===================================================== */
.contact-stack {
    margin-left: 100px; /* 保存された設定 */
    margin-top: 50px;
}

.btn-area {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.btn-recruit-submit {
    display: inline-block;
    padding: 18px 60px;
    font-size: 1.1rem;
    font-weight: bold;
    background: var(--wakakusa);
    color: #fff;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(171, 201, 0, 0.3);
    transition: all 0.3s;
}

/* =====================================================
   レスポンシブ
===================================================== */
@media (max-width : 471px ){
    .recruit-info-group, .contact-stack {
        margin-left: 0;
    }
    .form-row label {
        width: 100%;
        margin-bottom: 8px;
    }
    .form-content {
        min-width: 100%;
    }
}
/* =====================================================
   お仕事のポイント (.points)
===================================================== */
.points {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.points li {
    position: relative;
    padding: 15px 15px 15px 45px;
    margin-bottom: 15px;
    background: #fff;
    border: 1px dashed var(--azuki); /* あずき色の点線で柔らかい印象 */
    border-radius: 10px;
    transition: transform 0.2s;
}

.points li:hover {
    transform: translateX(5px);
}

/* チェックアイコンの装飾 */
.points li::before {
    content: "✔";
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--wakakusa);
    font-weight: bold;
    font-size: 1.2rem;
}

.points li strong {
    color: var(--azuki);
    font-size: 1.1rem;
    display: inline-block;
    margin-right: 5px;
}

/* =====================================================
   メッセージセクション (.message-section)
===================================================== */
.message-section {
    background: #fdf2e9; /* 暖かいベージュ系 */
    padding: 40px;
    border-radius: 30px 0 30px 0; /* 角丸を互い違いにして和の柔らかさを演出 */
    margin: 60px 0;
    position: relative;
}

.message-section h3 {
    text-align: center;
    color: var(--azuki);
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.message-section p {
    text-align: center;
    font-size: 1.05rem;
    line-height: 2;
}

/* =====================================================
   募集要項テーブル (.recruit-table)
===================================================== */
.recruit-details h2 {
    text-align: center;
    color: var(--azuki);
    margin-bottom: 30px;
}

.recruit-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: 2px solid var(--azuki);
    border-radius: 15px;
    overflow: hidden; /* 角丸を適用させるため */
}

.recruit-table th {
    width: 25%;
    background-color: var(--azuki);
    color: #fff;
    padding: 20px;
    text-align: center;
    font-weight: bold;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    vertical-align: middle;
}

.recruit-table td {
    background-color: #fff;
    padding: 20px;
    border-bottom: 1px solid #eee;
    line-height: 1.8;
}

.recruit-table tr:last-child th,
.recruit-table tr:last-child td {
    border-bottom: none;
}

/* レスポンシブ対応（スマホで見やすく） */
@media (max-width : 471px ){
    .message-section {
        padding: 25px 15px;
    }
    
    .recruit-table th, 
    .recruit-table td {
        display: block;
        width: 100%;
        text-align: left;
    }
    
    .recruit-table th {
        padding: 10px 20px;
        background-color: #fdf2e9;
        color: var(--azuki);
        border-bottom: 1px solid var(--azuki);
    }
}
/* recruit.css の末尾に追記 */
.main-header .contact-stack {
    display: flex !important;
    flex-direction: column !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    vertical-align: middle !important;
    height: auto !important;
}
