@charset "UTF-8";
/* はじめての方へ・再診の方へ 共通 */


/* メインビュー画像設定 */
/* はじめての方へ */
#outpatient .mainv::after {
    background: url(../images/outpatient/mainv_pc.jpg) no-repeat center center /cover;
}
/* 再診の方へ */
#examination .mainv::after {
    background: url(../images/philosophy/mainv_pc.jpg) no-repeat center center /cover;
}

/* 外来のご予約ボタン */
.common-container .tel-btn {
    width: 500px;
    margin: 0 auto;
    text-align: center;
    padding: 15px 20px;
    line-height: 1;
    margin-top: 40px;
}

/* 受付時間 */
.reception-wrap {
    width: 100%;
    max-width: 850px;
    margin: 60px auto;
}
.reception-wrap .program-table {
    table-layout: fixed;
}
.reception-wrap .program-table .time {
    width: 25%;
    border-right: 1px solid #90CDE3;
}
.reception-wrap .program-table td {
    padding: 10px 0;
}
.reception-wrap .holiday {
    text-align: right;
    font-size: 14px;
}

/* コンテンツの区分け */
.common-item-wrap {
    margin-top: 40px;
}

/* 持ち物 */
.belong-list {
    display: flex;
}
.belong-list .belong-item {
    margin-right: 20px;
}

/* 流れ */
.step-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.step-content:not(:last-of-type) {
    padding-bottom: 60px;
    margin-bottom: 26px;
    position: relative;
}
.step-content:not(:last-of-type)::after {
    content: '';
    border-top: 24px solid #88A1DB;
    border-right: 20px solid transparent;
    border-left: 20px solid transparent;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.step-content .step-img {
    width: 25%;
    text-align: center;
}
.step-content .feature-detail {
    width: 73%;
}
.feature-detail .feature-ttl {
    color: #1840A0;
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 8px;
    margin-bottom: 14px;
    border-bottom: 2px solid #90CDE3;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

.introduction.center {
    text-align: center;
}

@media (max-width: 1024px) {
    /* 受付時間 */
    .reception-wrap .scroll_hint {
        overflow-y: hidden!important;
    }

    /* 電話ボタン */
    .common-container .tel-btn {
        width: 86%;
        padding: 10px 20px;
    }

    /* 流れ */
    .step-content {
        display: block;
    }
    .step-content .step-img {
        width: 80%;
        margin: 0 auto 4vw;
    }
    .step-content .feature-detail {
        width: 100%;
    }
}
@media (max-width: 750px) {
    /* 電話ボタン */
    .common-container .tel-btn p {
        font-size: 16px;
    }

    /* 受付時間 */
    .reception-wrap .program-table {
        width: 180%;
    }
    .reception-wrap .program-table td {
        padding: 1vw 0;
    }
    .reception-wrap .holiday {
        font-size: 11px;
    }

    /* 流れ */
    .feature-detail .feature-ttl {
        font-size: 16px;
        padding-bottom: 10px;
        margin-bottom: 16px;
    }
    .step-content:not(:last-of-type) {
        padding-bottom: 10vw;
        margin-bottom: 4vw;
    }
    .step-content:not(:last-of-type)::after {
        border-top-width: 18px;
        border-right-width: 16px;
        border-left-width: 16px;
    }
    .step-content .step-img {
        width: 100%;
    }

    /* コンテンツの区分け */
    .common-item-wrap {
        margin-top: 8vw;
    }

    /* 持ち物 */
    .belong-list {
        flex-flow: wrap;
        justify-content: space-between;
    }
    .belong-list .belong-item {
        width: 47%;
        margin: 0 0 2vw;
    }

    .introduction.center {
        text-align: left;
    }
}