@charset "UTF-8";


/* メインビュー画像設定 */
#hospitalization .mainv::after {
    background: url(../images/hospitalization/mainv_pc.png) no-repeat center center /cover;
}
/* コンテンツの区分け */
.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%;
}
.step-content .list-style {
    padding-top: 10px;
}
.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%;
}
/* テーブル */
.cost-table {
    table-layout: fixed;
}
.cost-table th {
    background: #DDE6FC;
}
.cost-table tbody tr {
    border: 1px solid #A6B7E5;
}
.cost-table td {
    padding: 18px 0;
}
.cost-table.pt02 td {
    padding: 20px;
}
.cost-table.pt02 td {
    text-align: left;
}
.cost-table .genre {
    width: 226px;
    text-align: center;
}
@media (max-width: 1024px) {

    /* 流れ */
    .step-content {
        display: block;
    }
    .step-content .step-img {
        width: 80%;
        margin: 0 auto 4vw;
    }
    .step-content .feature-detail {
        width: 100%;
    }
}
@media (max-width: 750px) {
    /* 流れ */
    .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;
    }
    /* テーブル */
    .cost-table td {
        padding: 18px 0;
    }
    .cost-table.pt02 td {
        padding: 20px;
    }
    .cost-table .genre {
        width: 35%;
        text-align: center;
        vertical-align: middle;
    }
}