@charset "utf-8";
.title {
    text-align: center;
    margin: 1em 0;
    color: #014cff;
    font-size: 28px;
}
.job_info {
    border: solid 1px #ccc;
    padding: 0 24px;
    margin-bottom: 24px;
}
.job_info .job_info_content {
    margin-bottom: 24px;
}
.job_info_heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.job_info h2 {
    font-size: 21px;
    margin: 24px 0;
}
.job_info h3 {
    font-size: 18px;
    border-left: solid 5px rgb(156, 215, 241);
    padding-left: 0.5em;
    line-height: 1.2;
    margin: 1.5em 0 0.6em;
}
.job_info h4 {
    font-size: 14px;
    margin-top: 1em;
}
.job_info h4::before {
    content: "■";
    display: inline-block;
    margin-right: 0.2em;
}
.job_info ul {
    padding-left: 32px;
}
.job_info section {
    margin: 0;
    padding: 0;
}
.job_info_content h3:first-of-type {
    margin-top: 0;
}
dl.contact_info {
    display: grid;
    grid-template-columns: 6em auto;
    margin-top: 1em;
}
dl.contact_info dd {
    margin: 0;
}

.job_info_opencheck,
.job_info_opencheck:not(:checked) + .job_info .job_info_content {
    display: none;
}
.job_info_opencheck:checked + .job_info .job_info_content {
    display: block;
}
.button_toggle_job_info {
    margin: 0;
    padding: 0;
    border: solid 2px #999;
    background: none;
    width: 32px;
    height: 32px;
    position: relative;
    transition: background-color 0.2s ease 0s;
}
.button_toggle_job_info:hover {
    background-color: #999;
}
.button_toggle_job_info:hover::before,
.button_toggle_job_info:hover::after {
    background-color: white;
}
@media print {
    .button_toggle_job_info {
        display: none;
    }
}
/* 十字 */
.button_toggle_job_info::before,
.button_toggle_job_info::after {
    content: "";
    display: block;
    width: 2px;
    height: 60%;
    background-color: #999;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    pointer-events: none;
    transition: background-color 0.2s ease 0s;
}
/* 十字の縦棒 */
.button_toggle_job_info::before {
    transform: translate3d(-50%, -50%, 0);
}
/* 十字の横棒 */
.button_toggle_job_info::after {
    transform: translate3d(-50%, -50%, 0) rotate(90deg);
}
/* 開いている場合は縦棒を非表示 */
.job_info_opencheck:checked + .job_info .button_toggle_job_info::before {
    display: none;
}
.button_toggle_job_info label {
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
}
