/* トップページ画像部
============================================== */

.main-top-image-container {
    background-image: url('../img/online/online_top_img.jpg');
    width: 100%;
    background-size: cover;
    background-position: center;
    /* padding-top: 56.25%;  */
    position: relative;
    padding: 30% 0 5% 5%;
}

.main-top-text h1 {
    font-size: 3vw;
    text-shadow:
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000;
}

.main-top-text p {
    font-size: 2vw;
    text-shadow:
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000;
}

/* 注意事項
============================================== */

.online-notification {
    display: flex;
    grid-gap: 0 .7em;
    margin: 40px 13%;
    padding: 1em;
    border-radius: 15px;
    background-color: #ffefe0;
    color: #333333;
}

.online-notification::before {
    width: 24px;
    height: 24px;
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12.8659 3.00017L22.3922 19.5002C22.6684 19.9785 22.5045 20.5901 22.0262 20.8662C21.8742 20.954 21.7017 21.0002 21.5262 21.0002H2.47363C1.92135 21.0002 1.47363 20.5525 1.47363 20.0002C1.47363 19.8246 1.51984 19.6522 1.60761 19.5002L11.1339 3.00017C11.41 2.52187 12.0216 2.358 12.4999 2.63414C12.6519 2.72191 12.7782 2.84815 12.8659 3.00017ZM10.9999 16.0002V18.0002H12.9999V16.0002H10.9999ZM10.9999 9.00017V14.0002H12.9999V9.00017H10.9999Z' fill='%23f06060'%3E%3C/path%3E%3C/svg%3E");
}

.online-notification p {
    margin: 0;
    padding: 0 0 0 .7em;
    border-left: 1px solid #f06060;
    font-size: 20px;
}

@media (max-width: 767px) {
    .online-notification {
        margin: 20px 3%;
        padding: 1em;
        border-radius: 15px;
    }

    .online-notification p {
        font-size: 15px;
    }

}


/* オンライン診療の流れ
============================================== */

.online-procedure-text {
    font-size: 2vmin;
    font-weight: bold;
}

.online-procedure-title {
    font-size: 3vmin;
}

.online-procedure-content {
    position: relative;
    overflow: hidden;
    min-height: 300px;
}

.card-background-position {
    position: absolute;
    top: 50px;
    left: 800px;
    right: 0;
    bottom: 0;
    background-size: 50% auto;
    background-position: top left;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: 0;
}

@media (max-width: 767px) {
    .card-background-position {
        position: absolute;
        top: 10px;
        left: 270px;
        right: 0;
        bottom: 0;
        background-size: 70% auto;
        background-position: top left;
        background-repeat: no-repeat;
        opacity: 0.15;
        z-index: 0;
    }
}

.card-background-2 {
    background-image: url('../img/online/online_reservation.png');
}

.card-background-3 {
    background-image: url('../img/online/online_medical_examination.png');
}

.card-background-4 {
    background-image: url('../img/online/online_bill.png');
}

.card-background-5 {
    background-image: url('../img/online/online_registration.png');
}

.content-wrapper {
    position: relative;
    z-index: 1;
}

.bg-lightgray {
    background-color: #E0EFFE;
}

.badge-fixed-width {
    display: inline-block;
    width: 100px;
    text-align: center;
}

@media (max-width: 767px) {
    .mobile-block {
        display: block;
        margin-bottom: 5px;
    }
}