/* === トップ画像 === */
.oiwaiImg img {
    display: block;
}


/* === 応募方法 === */
.application-method {
    background: #e6b1ad;
}
@media (min-width: 768px) {
    .application-method {
        display: flex;
        justify-content: space-between;
        padding: 24px 56px;
    }
}
@media not all and (min-width: 768px) {
    .application-method {
        padding: 12px 18px;
    }
}

.application-method__note {
    font-weight: 600;
    text-align: center;
    color: #8c2438;
    background: #fff;
    border-top: 3px solid #8c2438;
    border-bottom: 3px solid #8c2438;
}
@media (min-width: 768px) {
    .application-method__note {
        font-size: 24px;
        color: #8c2438;
        padding: 16px;
    }
}
@media not all and (min-width: 768px) {
    .application-method__note {
        font-size: 16px;
        color: #8c2438;
        padding: 8px;
        line-height: 1.4;
    }
}

.application-method__link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #8c2438;
    border: 2px solid #641827;
    border-radius: 36px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s ease;
}
@media (min-width: 768px) {
    .application-method__link {
        width: 170px;
        font-size: 20px;
        line-height: 1.4;
    }
}
@media not all and (min-width: 768px) {
    .application-method__link {
        width: 100%;
        font-size: 18px;
        margin-top: 12px;
        padding: 8px 0;
    }
}
.application-method__link::after {
    content: "";
    position: absolute;
    right: 16px;
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
}
.application-method__link:hover {
    background: #a9344b;
}


/* === 【ご応募にあたっての注意事項】 === */
.application-notes {
    background: #fce0d6;
    line-height: 1.4;
}
@media (min-width: 768px) {
    .application-notes {
        padding: 24px 56px;
    }
}
@media not all and (min-width: 768px) {
    .application-notes {
        padding: 12px 18px;
    }
}
.application-notes__title {
    margin-bottom: 12px;
}
.application-notes__content {
    margin-bottom: 8px;
}
