/**
 * 申請届出サブシステム ログイン画面のお問い合わせ
 * 
 * @author NSS
 * @version 1.0
 */

.contact-notice {
    display: flex;
    gap: 32px;
    align-items: center;
    padding: 24px 32px;
    border: 2px solid #ff3b30;
    border-radius: 12px;
    /* background: #fffafa; */
    /* background: #ffe1e1; */
    background: #ffefef;
    margin-bottom: 2em;
}

.contact-notice__icon {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #ff0000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-notice__icon span {
    color: #fff;
    font-size: 72px;
    font-weight: bold;
    line-height: 1;
}

.contact-notice__content {
    flex: 1;
}

.contact-notice__title {
    margin: 0 0 16px;
    color: #ff0000;
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    padding-bottom: 12px;
    border-bottom: 3px dotted #ff3b30;
}

.contact-notice__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.contact-notice__list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.8;
    font-family: initial;
}

.contact-notice__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 12px;
    height: 12px;
    background: #000;
    border-radius: 50%;
}