@charset "utf-8";
/* CSS Document */
/*--------------------
トップページ社員寮紹介
--------------------*/
.topics-wrapper {
    /*border: 2px solid #E60013;*/
    padding: 24px 36px;
    border-radius: 3px;
    background-color: #F0F0F0;
    height: 530px;
}

.topics-wrapper .topics_heading {
    margin-bottom: 12px;
}

.topics-wrapper .topics_heading p {
    line-height: 1;
    font-size: 18px;
}

.topics-wrapper .topics_img {
    padding: 4px;
}


@media screen and (max-width: 768px) {
    .topics-wrapper {
        padding: 12px 18px;
        height: auto;
    }
}

/*--------------------
モーダルウィンドウ
--------------------*/
.modal-2__wrap input {
    display: none;
}

.modal-2__open-label,
.modal-2__close-label {
    cursor: pointer;
}

.modal-2__open-label {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 180px;
    margin:0 auto;
    padding: 8px 0;
    border: none;
    border-radius: 5px;
    background-color: #E60013;
    color: #fff;
    line-height: 1;
}

.modal-2__open-label:hover {
    opacity: 0.8;
}

.modal-2 {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
}

.modal-2__open-input:checked + label + input + .modal-2 {
    display: block;
    animation: modal-2-animation .6s;
}

.modal-2__content-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 720px;
    background-color: #fefefe;
    z-index: 2;
    border-radius: 5px;
}

.modal-2__close-label {
    background-color: #777;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 20px;
    width: 36px;
    height: 36px;
    line-height: 1.6;
    text-align: center;
    display: table-cell;
    position: fixed;
    top: -15px;
    right: -2%;
    z-index: 99999;
    font-size: 1.3em;
}

.modal-2__content {
    max-height: 80vh;
    overflow-y: auto;
    padding: 39px 45px 40px;
}

.modal-2__background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .45);
    z-index: 1;
}

@keyframes modal-2-animation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@media only screen and (max-width: 520px) {
    .modal-2__open-label {
        max-width: 90%;
        padding: .94em 2.1em .94em 2.6em;
    }

    .modal-2__close-label {
        top: -17px;
        right: -4%;
    }

    .modal-2__content-wrap {
        width: 90vw;
    }

    .modal-2__content {
        padding: 33px 21px 35px;
        max-width: 100%;
    }
}


/*--------------------
募集要項社員寮追加
--------------------*/
.dormitory {
    margin-bottom: 48px;
}
.dormitory_detail .detail_title {
    font-size: 17px;
    margin-bottom: 24px;
    color: #E60013;
    font-weight: bold;
}

.dormitory_detail .detail_item {
    width: 100%;
    display: flex;
    margin-bottom: 24px;
}
.dormitory_detail .detail_item:nth-of-type(even) {
    flex-direction: row-reverse;
}

.dormitory_detail .detail_item img {
    width: 40%;
    margin-right: 2%;
}
.dormitory_detail .detail_item:nth-of-type(even) img {
    margin-right: 0;
}

.dormitory_detail .detail_item p {
    width: 58%;
    font-size: 14px;
}
.dormitory_detail .detail_item p span {
    font-size: 16px;
    border-bottom: 1px solid #E60013;
}
.dormitory_detail .detail_item:nth-of-type(even) p {
    margin-right: 2%;
}


.dormitory {
    border: 3px solid #E60013;
    padding: 18px 36px;
    text-align: center;
}

.dormitory .read {
    font-weight: bold;
    color: #E60013;
    font-size: 22px;
}

.dormitory .read::before {
    content: "NEWS";
    background-color: #E60013;
    color: #fff;
    padding: 2px 8px 4px 8px;
    margin-right: 8px;
    font-size: 22px;
    animation: blink 1.5s infinite;
    line-height: 1;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

@media screen and (max-width: 768px) {
    .dormitory {
        border: 3px solid #E60013;
        padding: 18px 6px;
        text-align: left;
    }
    .dormitory .read {
        font-size: 16px;
        margin-bottom: 8px;
        text-align: center;
    }
    .dormitory .read::before {
        padding: 2px 6px 4px 6px;
        margin-right: 8px;
        font-size: 12px;
    }
    .dormitory .caption {
        font-size: 14px;
    }
}

.c-tbl01__row .gift {
    display: flex;
    margin-bottom: 12px;
}

@media screen and (max-width: 768px) {
    .c-tbl01__row .gift {
        display: flex;
        margin-bottom: 12px;
        flex-direction: column;
    }
}


/*--------------------
アピールポイント
--------------------*/
.appeal {
    margin-bottom: 48px;
}
.appeal_detail .detail_title {
    font-size: 17px;
    margin-bottom: 24px;
    color: #00B7C3;
    font-weight: bold;
}

.appeal_detail .detail_item {
    width: 100%;
    display: flex;
    margin-bottom: 24px;
}
.appeal_detail .detail_item:nth-of-type(even) {
    flex-direction: row-reverse;
}

.appeal_detail .detail_item img {
    width: 40%;
    margin-right: 2%;
}
.appeal_detail .detail_item:nth-of-type(even) img {
    margin-right: 0;
}

.appeal_detail .detail_item p {
    width: 58%;
    font-size: 14px;
}
.appeal_detail .detail_item p span {
    font-size: 16px;
    border-bottom: 1px solid #00B7C3;
}
.appeal_detail .detail_item:nth-of-type(even) p {
    margin-right: 2%;
}


.appeal {
    border: 3px solid #00B7C3;
    padding: 18px 36px;
    text-align: center;
}

.appeal .read {
    font-weight: bold;
    color: #00B7C3;
    font-size: 22px;
}

.appeal .read::before {
    content: "POINT";
    background-color: #00B7C3;
    color: #fff;
    padding: 2px 8px 4px 8px;
    margin-right: 8px;
    font-size: 22px;
    animation: blink 1.5s infinite;
    line-height: 1;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

.appeal .caption .bold {
    font-weight: bold;
    font-size: 18px;
}

.appeal .caption .underline {
    background: linear-gradient(transparent 40%, #f5ff00 80%);
}

@media screen and (max-width: 768px) {
    .appeal {
        border: 3px solid #00B7C3;
        padding: 18px 6px;
        text-align: left;
    }
    .appeal .read {
        font-size: 16px;
        margin-bottom: 8px;
        text-align: center;
    }
    .appeal .read::before {
        padding: 2px 6px 4px 6px;
        margin-right: 8px;
        font-size: 12px;
    }
    .appeal .caption {
        font-size: 14px;
    }
}

.c-tbl01__row .gift {
    display: flex;
    margin-bottom: 12px;
}
