@charset "UTF-8";

/* new
------------------------------*/
.new_wrap {
    text-align: center;
}

.new_wrap .text_1_wrap {
    display: flex;
    width: fit-content;
    text-align: center;
    justify-content: center;
    vertical-align: middle;
    margin: 0 auto;
}

.new_wrap .text_1l,
.new_wrap .text_1r {
    padding: 8px 15px 5px;
}

.new_wrap .text_1r {
    background-color: #BE1A1B;
    color: #fff;
}

.new_wrap .text_dots {
    background-image: radial-gradient(circle at center, #BE1A1B 20%, transparent 20%);
    background-position: top right;
    background-repeat: repeat-x;
    background-size: 1em 0.5em;
    padding-top: 10px;
}

.new_wrap .text_2 {
    align-items: center;
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.new_wrap .text_2::before,
.new_wrap .text_2::after {
    background-color: #242424;
    content: '';
    height: 1px;
    width: 25px;
}

.new_wrap .text_2::before {
    margin-right: 5px;
    transform: rotate(60deg);
}

.new_wrap .text_2::after {
    margin-left: 5px;
    transform: rotate(-60deg);
}

.new_wrap .text_3 {
    padding: 10px 25px 8px;
    border: 1px solid #D8D8D8;
    display: inline-block;
    margin-top: 15px;
}

.new_wrap .text_4 {
    margin-top: 25px;
}

.new_wrap .list_wrap {
    width: min(67.01vw, 650px);
    background-color: #FFEFEF;
    padding: 15px 20px;
    margin: 30px auto 0;
}

.new_wrap .list_item {
    list-style-type: none;
    position: relative;
    padding-left: 1em;
    text-align: left;
}

.new_wrap .list_item::before {
    border-radius: 50%;
    width: 6px;
    height: 6px;
    display: block;
    position: absolute;
    left: 0;
    top: 0.6em;
    content: '';
    background: #BE1A1B;
}



/* features
------------------------------*/
.pint_wrap {
    width: min(77.32vw, 750px);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: min(4.64vw, 45px);
    margin: 0 auto 100px;
}

.pint_wrap .point_item {
    width: 220px;
    border: 2px solid #C6C6C6;
    border-radius: 5px;
    position: relative;
    padding: 40px 10px 30px;
    text-align: center;
    margin-top: 80px;
}

.pint_wrap .item_title {
    width: max-content;
    color: #BE1A1B;
    background-color: #fff;
    padding: 0 5px;
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pint_wrap .circle_wrap {
    background-color: #F2F2F2;
    background-repeat: no-repeat;
    background-position: center;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.features_wrap .text_1_wrap {
    text-align: center;
}

.features_wrap .text_1 {
    border-bottom: 2px solid #BE1A1B;
    display: inline-block;
    margin: 0 auto;
    position: relative;
    margin-bottom: 50px;
}

.features_wrap .text_1::after {
    content: '';
    width: 35px;
    height: 0;
    border-top: 5px #BE1A1B dotted;
    display: block;
    transform: rotate(90deg);
    position: absolute;
    left: calc(50% - 17px);
    top: calc(50% + 50px);
}

.features_wrap .text_2 {
    padding-top: 30px;
}


/* table */
.features_wrap .table_wrap {
    padding-top: min(10.31vw, 100px);
}

.features_table {
    table-layout: fixed;
    width: 100%;
}

.features_table th:nth-child(1) {
    width: 20%;
}

.features_table th:nth-child(2) {
    width: 40%;
}

.features_table th:nth-child(3) {
    width: 40%;
}

.features_table th {
    border: 1px solid #BE1A1B;
    background-color: #FFF2F2;
    vertical-align: middle;
    font-weight: normal;
    padding: 20px;
}

.features_table td {
    padding: 20px;
    vertical-align: middle;
}

.features_table tr:first-child td:first-child {
    border-top: 1px solid #fff;
    border-right: 1px solid #BE1A1B;
    border-left: 1px solid #fff;
    border-bottom: 1px solid #BE1A1B;
}



/* scheme
------------------------------*/
.scheme_wrap {
    background-image: url(../images/common/bg_dot.jpg);
    padding: min(4.69vw, 60px) 0 min(8.25vw, 80px);
}

.scheme_wrap .img_wrap {
    text-align: center;
}



/* media
------------------------------*/

@media screen and (max-width: 768px) {
    .new_wrap .text_1_wrap {
        display: block;
    }

    .new_wrap .list_wrap {
        width: 100%;
    }

    .features_wrap {
        margin-top: min(15.79vw, 60px);
    }

    .features_wrap .table_wrap {
        padding-top: min(7.81vw, 60px);
    }

    .features_table th:nth-child(1),
    .features_table th:nth-child(2),
    .features_table th:nth-child(3) {
        width: 33%;
    }

    .scheme_wrap {
        margin-top: min(10.42vw, 80px);
        padding: min(7.81vw, 60px) 0 min(10.42vw, 80px);
    }
}

@media screen and (max-width: 620px) {
    .pint_wrap {
        width: 100%;
        column-gap: 1.5%;
        margin-bottom: 60px;
    }

    .pint_wrap .point_item {
        width: 49%;
    }
}