/* 全体のスタイル */
body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
    color: #333;
}

main {
    width: 80%;
    margin: 20px auto;
    background: #fff;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

h1, h2 {
    color: #444;
    text-align: center;
}

.job-info {
    margin-bottom: 20px;
    padding: 10px;
    background: linear-gradient(135deg, #eef2f3, #cfd9df);
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.job-info h2 {
    font-size: 1.8em;
    color: #333;
    margin-bottom: 10px;
    border-bottom: 2px solid #007bff;
    padding-bottom: 5px;
    text-align: center;
}

.job-info h3 {
    font-size: 1.4em;
    color: #0056b3;
    margin-top: 20px;
    padding: 8px 12px;
    border-left: 5px solid #007bff;
    background: rgba(0, 123, 255, 0.1);
    border-radius: 5px;
}
.job-info .highlight {
    font-size: 1.2em;
    font-weight: bold;
    color: black;
    text-align: center;
    margin-bottom: 20px;
}

.job-info p {
    font-size: 1em;
    color: #555;
    line-height: 1.2;
    margin-bottom: 5px;
    text-align: left;
}
/* 画像ギャラリー */
.job-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.job-gallery img {
    width: 30%;
    max-width: 180px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

.application-form {
    border-top: 2px solid #ddd;
    padding-top: 20px;
}

form {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

hr {
    border: none;
    border-top: 3px solid #666;
    margin: 25px 0;
}

label {
    margin: 5px 0;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 6px;
}

label input[type="checkbox"] {
    width: auto;
    margin: 0;
    transform: scale(1.2);
}

input, select, textarea {
    width: 100%;
    padding: 8px;
    margin-top: 3px;
    border: 1px solid #999;
    border-radius: 4px;
    background-color: #f9f9f9;
    font-size: 1em;
    display: block;
    box-sizing: border-box;
}


select {
    appearance: auto;
    -webkit-appearance: auto;
    -moz-appearance: auto;
}

textarea {
    height: 100px;
}

button {
    background-color: #28a745;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 15px;
}

button:hover {
    background-color: #218838;
}

.error-message {
    color: red;
    font-size: 0.9em;
    display: none;
}

/* 補足説明（note クラス） */
.note {
    font-size: 0.85em;
    color: #777;
    margin-top: -5px;
    margin-bottom: 10px;
}

.highlight {
    font-size: 1.2em;
    font-weight: bold;
    color: #222;
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.job-info p2 {
    font-size: 1em;
    color: #555;
text-align: center;
    line-height: 1.6;
    margin-bottom: 10px;
    text-align: left;
}

