@charset "UTF-8";

/* ----------------------------------------------------------------
    医療関係者のご確認
---------------------------------------------------------------- */
.approval {
    padding: 23px 0 40px;
}
@media print, screen and (min-width: 768px) {
    .approval {
        padding: 50px 0 136px;
    }
}

.approval_ttl {
    color: #6496DB;
    font-feature-settings: 'halt' on;
    font-size: 2.0rem;
    font-weight: 700;
    line-height: 1.8;
    margin-top: 30px;
}
@media print, screen and (min-width: 768px) {
    .approval_ttl {
        font-size: 3.2rem;
        text-align: center;
        margin-top: 60px;
    }
}

.approvalSelectWrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 23px;
}
@media print, screen and (min-width: 768px) {
    .approvalSelectWrapper {
        flex-direction: row;
        justify-content: center;
        gap: 40px;
    }
}

.approvalSelect {
    border-radius: 6px;
    padding: 30px 20px;
}
.approvalSelect__yes {
    background: #E0EAF8;
}
.approvalSelect__no {
    background: #EFF0F2;
}
@media print, screen and (min-width: 768px) {
    .approvalSelect {
        width: 480px;
        padding: 40px;
    }
}
.approvalSelect_ttl {
    text-align: center;
    font-feature-settings: 'halt' on;
    font-size: 2.0rem;
    font-weight: 700;
    line-height: 1;
}
.approvalSelect_ttl span {
    font-size: 1.4rem;
}
@media print, screen and (min-width: 768px) {
    .approvalSelect_ttl {
        font-size: 2.6rem;
    }
    .approvalSelect_ttl span {
        font-size: 1.6rem;
    }
}

.approvalSelect_txt {
    font-size: 1.6rem;
    margin-top: 20px;
}

.approvalSelect_list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 25px;
}
.approvalSelect_list li {
    display: flex;
}
.approvalSelect_list li a {
    position: relative;
    color: #333;
    font-size: 1.4rem;
    font-weight: 500;
    text-decoration: none;
    background-color: #fff;
    border-radius: 8px;
    width: 100%;
    padding: 9px;
    text-align: center;
}
.approvalSelect_list li a::after {
    position: absolute;
    top: 50%;
    right: 17px;
    display: inline-block;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font: var(--fa-font-regular);
    content: '\f105';
    color: var(--commonPink);
    transform: translateY(-50%);
}
@media print, screen and (min-width: 768px) {
    .approvalSelect_list {
        flex-wrap: wrap;
        flex-direction: row;
        gap: 10px;
    }
    .approvalSelect_list li {
        width: calc((100% - 10px) / 2);
    }
    .approvalSelect_list li a {
        font-size: 1.6rem;
        padding: 5px;
        transition: all .3s;
    }
    .approvalSelect_list li a::after {
        right: 15px;
    }
    .approvalSelect_list li a:hover {
        background: var(--commonPink);
        color: #FFF;
    }
    .approvalSelect_list li a:hover::after {
        color: #FFF;
    }
}

a.approvalSelect_link {
    position: relative;
    display: block;
    color: #0062B0;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 500;
    border-radius: 20px;
    border: 1px solid #0062B0;
    background: #FFF;
    text-decoration: none;
    padding: 8px;
    margin-top: 27px;
}
a.approvalSelect_link::after {
    position: absolute;
    top: 50%;
    right: 17px;
    display: inline-block;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font: var(--fa-font-regular);
    content: '\f105';
    color: #0062B0;
    transform: translateY(-50%);
}
@media print, screen and (min-width: 768px) {
    a.approvalSelect_link {
        font-size: 1.6rem;
        border-radius: 30px;
        padding: 16px 20px;
        margin-top: 75px;
        transition: all .3s;
    }
    a.approvalSelect_link::after {
        right: 27px;
    }
    a.approvalSelect_link:hover {
        background: #0062B0;
        color: #FFF;
    }
    a.approvalSelect_link:hover::after {
        color: #FFF;
    }
}