@charset "UTF-8";
/* naze_muryou
-------------------------------------------- */
.main__container > section .section__heading:first-child{
    margin-top: 56px;
}
@media screen and (max-width: 1024px) {
    .main__container > section .section__heading:first-child{
        margin-top:24px;
    }
}
.has-box,
.icon-check{
    position: relative;
    padding-left: 3.25rem;
}
.has-box:after,
.icon-check:before{
    content: '';
    display: block;
    position: absolute;
    left: 0;
}
.icon-check:before{
    width: 16px;
    height: 8px;
    border-left-width: 3px;
    border-bottom-width: 3px;
    transform: rotate(-45deg);
    top: 0.8rem;
    border-color: #d61518;
    left: 0.5rem;
}
.has-box:after{
    width: 18px;
    height: 18px;
    background-color: #eaeaea;
    top: 0.8rem;
    z-index: -1;
}

.flexbox{
    display: flex;
}
@media screen and (max-width: 414px) {
    .underline_dot:after{
        height: 10px;
    }
}

/* reason */
.reason .section__heading{
    padding:0;
    margin-bottom: 36px;
}
.reason .text-wrap{
    margin-bottom: 5rem;
}
.compare_lists .flexbox{
    justify-content: space-between;
    column-gap: 56px;
    z-index: 0;
    position: relative;
}
.compare_lists .lists_head{
    font-weight: bold;
    margin-bottom: 4rem;
    text-align: center;
    font-size: 1.8rem;
}
.compare_lists_item {
    width: 50%;
}
.compare_lists_item .lists_ttl{
    padding: 2.5rem 0;
    border-radius: 6px 6px 0 0;
    background: #777;
    color: #fff;
    text-align: center;
    line-height: 1.4;
}
.compare_lists_item .lists_cont{
    padding: 0rem 2rem 1rem;
}
.compare_lists_item .lists_cont ol{
    display: grid;
    gap: 25px;
    margin-top: 2rem;
    grid-auto-rows: 1fr;
    margin-bottom: 1rem;
}
.compare_lists_item .lists_cont ol li{
    background: #fff;
    text-align: center;
    padding: 1.25rem;
    border: 1px solid;
    border-radius: 4px;
    position: relative;
}
.compare_lists_item .lists_cont ol li img{
    position: absolute;
    top: 5px;
    right: 5px;
    width: 30px;
}
.compare_lists_item:last-child .lists_ttl{
    background-color: #d61518;
}
.compare_lists_item:last-child .lists_cont ol li{
    color: #d61518;
    font-weight: bold;
}
.compare_lists_item:last-child .lists_cont ol li:nth-child(1){
    grid-row: 1 / 2;
}
.compare_lists_item:last-child .lists_cont ol li:nth-child(2){
    grid-row: 2 / 3;
    border-style: dashed;
    background: transparent;
    opacity: 0.5;
    font-weight: normal;
    font-size: 1.4rem;
}
.compare_lists_item:last-child .lists_cont ol li:nth-child(3){
    grid-row: 3 / 4;
}
.compare_lists_item:last-child .lists_cont ol li:nth-child(4){
    grid-row: 4 / 5;
}
.compare_lists_item .arrow.arrow-bottom::before{
    margin: 0 auto;
    display: block;
    right: 0;
    top: -1.2rem;
    left: 0;
    border-color: #777777;;
}
.compare_lists_item .arrow.arrow-bottom::after{
    content: '';
    display: block;
    width: 2px;
    height: 100%;
    background: #777777;
    position: absolute;
    right: 0;
    left: 0;
    top: -55px;
    margin: 0 auto;
    z-index: -1;
}
.compare_lists_item:last-child .arrow.arrow-bottom:nth-child(3)::after{
    top: -105px;
    height: 200%;
}
.compare_lists_item:last-child .arrow.arrow-bottom::before{
    border-color:#d61518;
}
.compare_lists_item:last-child .arrow.arrow-bottom::after{
    background-color:#d61518;
}
.compare_lists_item .txt{
    text-align: center;
}
@media screen and (max-width:1024px) {
    .compare_lists .flexbox{
        column-gap: 25px;
        row-gap: 35px;
    }
    .compare_lists_item .lists_cont{
        padding: 0;
    }
}
@media screen and (max-width: 768px) {
    .compare_lists .flexbox{
        flex-direction: column;
    }
    .compare_lists_item{
        width: 100%;
    }
    .compare_lists_item .lists_ttl{
        padding:1.5rem 1rem;
    }
    .compare_lists_item .lists_cont ol li{
        padding: 1.5rem 0.5rem;
    }
    .compare_lists_item:last-child .arrow.arrow-bottom:nth-child(3)::after{
        top:-110px;
    }
}
/* advantages */
.advantages__li {
    flex-wrap: wrap;
    gap: 15px;
    max-width: 760px;
    margin: 0 auto 6rem;
}
.advantages__item {
    width: calc(50% - 15px);
}
.advantages__ttl {
    color: #d61518;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
    .advantages__li{
        display: flex;
        flex-direction: column;
    }
    .advantages__item {
        width: 100%;
    }
    .advantages__ttl{
        font-size: 1.6rem;
    }
}