@charset "utf-8";

.worries ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    justify-content: center;
    max-width: 900px;
    justify-content: space-between;
}
.worries ul li {
    border-radius: 50px;
    width: 200px;
    height: 200px;
    text-align: center;
    position: relative;
    background-color: #fff;
    border-radius: 50%;
    padding-top: 30px;
    margin-top: 20px;
    box-shadow: 2px 4px 5px rgb(5 5 5 / 5%);
}
.worries ul li:after {
    position: absolute;
    top: 0;
    left: 0;
}
.worries ul li img {
    max-height: 43%;
    max-width: 43%;
    width: auto;
}
.worries ul li p {
    font-size: clamp(12px, 2.5vw, 15px);
    line-height: 1.6;
    text-align: center;
    padding-top: 6px;
}
.worries ul li p span {
    font-size: clamp(12px, 2.5vw, 14px);
    line-height: 1.6;
}

@media only screen and (max-width: 890px) {
    .worries ul {
        justify-content: space-evenly;
    }
    .worries ul li {
        width: 165px;
        height: 165px;
        margin-top: 10px;
    }
    .worries ul li p {
        padding-top: 2px;
    }
}

/* Rehab Programのサービスメニュー */
.cancel-policy {
    border-top: dotted 1px #333;
}
.cancel-policy p {
    font-weight: bold;
    font-size: clamp(14px, 2.5vw, 15px);
}
.cancel-policy ul li {
    font-size: clamp(13px, 2.5vw, 14px);
    padding: 0 0 0 13px;
    position: relative;
}
.cancel-policy ul li:before {
    content: "";
    position: absolute;
    top: 15px;
    left: 0px;
    transform: translateY(-60%) translateX(0%);
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background-color: #91d2f1;
}
.offer {
    padding-top: 20px;
}
.offer h4 {
    font-weight: bold;
    font-size: clamp(15px, 2.5vw, 16px);
}
.offer-content {
    font-weight: bold;
    margin-top: 15px;
    margin-bottom: 8px;
}
.offer ul {
    display: flex;
    max-width: 1000px;
    justify-content: space-between;
}
.offer ul li {
    max-width:310px;
    border-top: solid 1px #91d2f1;
    padding: 0px 10px 0px 10px;
    margin: 0 10px 0 10px;
    min-width: 250px;
}
.offer ul li .list p {
    font-size: clamp(14px, 2.5vw, 15px);
}
.offer ul li .list p small {
    line-height: 1.6;
}
.service-menu-wrap .list {
    position: relative;
}
.service-menu-wrap .list .number {
    position: absolute;
    top: -30px;
    left: -10px;
    color: #fff;
    background-color: #91d2f1;
    padding: 0 10px;
    border-radius: 50%;
    font-weight: bold;
}

@media only screen and (max-width: 890px) {
    .offer ul {
        display: block;
    }
    .offer ul li {
        margin: 10px 0 30px 0px;
    }
}

/* 対応エリア */
.area .area-wrap {
    display: flex;
}
.detailed-area {
    padding-top: 20px;
}
.detailed-area li {
    padding: 0 0 0 13px;
    position: relative;
}
.detailed-area .d-orange:before {
    content: "";
    position: absolute;
    top: 15px;
    left: 0px;
    transform: translateY(-60%) translateX(0%);
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background-color: #febd3d;
}
.detailed-area .d-green:before {
    content: "";
    position: absolute;
    top: 15px;
    left: 0px;
    transform: translateY(-60%) translateX(0%);
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background-color: #a0db61;
}
.detailed-area .d-pink:before {
    content: "";
    position: absolute;
    top: 15px;
    left: 0px;
    transform: translateY(-60%) translateX(0%);
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background-color: #e57b87;
}

@media only screen and (max-width: 890px) {
    .area ul {
        display: block;
    }
    .area .area-wrap {
        display: block;
    }
}