.whyreccomendWrapper {
    width: 980px;
    margin: 0 auto;
    padding-top: 50px;
    color: #003894;
    font-weight: bold;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

.whyreccomendInner__heading {
    font-size: 30px;
    font-weight: bold;
    border-bottom: 2px solid #003894;
    text-align: left;
}

.whyreccomendInner__list {
    display: flex;
    justify-content: space-around;
    padding: 25px;
    width: 100%;
}

.whyreccomendInner__item {
    /* padding-right: 41px; */
    width: calc(100% / 3);
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
.whyreccomendInner__item img {
    height: auto;
    width: 200px;
}

.whyreccomendInner__item:last-child {
    padding-right: 0;
}

.whyreccomendInner__item_text {
    display: flex;
    text-align: left;
    align-items: center;
    font-size: 16px;
    height: 40px;
}

.whyreccomendInner__item_text::before {
    counter-increment: count-number;
    content: counter(count-number);
    background: #003894;
    color: #ffffff;
    border-radius: 50%;
    margin-right: 10px;
    width: 20px;
    height: 20px;
    text-align: center;
    padding: 1px 4px 6px 5px;
}
body{counter-reset:count-number attraction-number feature-number;}

.whyreccomendInner .link_btn {
    text-align: right;
}

.whyreccomendInner .link_btn a{
    color: #003894;
    font-size: 16px;
}

.whyreccomendInner .link_btn a:hover{
    opacity: .7;
}

@media all and (-ms-high-contrast: none) {
    .whyreccomendInner__list_item_text::before {
        padding-top: 5px;
    }
  }