@charset "utf-8";

/* ==================================
  メニュー(menu.html)
=====================================*/
/* ヒーロー画像
------------------------------------- */
.hero-menu {
    background-image: url(../img/menu/menu2-2.jpg);
    background-position: right;
    background-size: 60%;
    object-fit: cover;

}


/* はじめての方へ */
.first {
    text-align: center;
    font-size: calc(28/16 *1rem);
}

.first h2 {
    margin-top: 124px;
    margin-bottom: 29px;
}

.first p {
    margin-bottom: 142px;
}

.first__blue {
    font-size: 2rem;
    font-weight: bold;
    position: relative;
    display: inline-block;
    padding: 0 45px;
    color: #18AABE;
}

.first__blue:before,
.first__blue:after {
    content: '';
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 44px;
    height: 2px;
    background-color: #18AABE;
    -webkit-transform: rotate(-60deg);
    transform: rotate(-60deg);
}

.first__blue:before {
    left: 0;
}

.first__blue:after {
    right: 0;
}


/* メニュー楕円------------------------------------------ */
.menu__title {
    text-align: center;
}

.menu__title h2 {
    font-size: calc(36/16 *1rem);
    font-weight: 700;
    margin-bottom: 124px;
    background-color: #5DC1CF;
    color: #fff;
    background-image: url(../img/menu/foot-white.svg), url(../img/menu/foot-white.svg);
    background-repeat: no-repeat;
    background-position: left 41px center, right 41px center;
    background-size: 52px 44px;
    border-radius: 38px;
    display: inline-block;
    padding: 12.5px 176px;
}

/* メニュー写真とテキスト */
.menu__container {
    display: flex;
    flex-wrap: wrap;
    gap: 68px;
    justify-content: center;
    margin-bottom: 165px;
}

.menu__container img {
    width: 504px;
    object-fit: contain;
}

.menu__text {
    width: 514px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.menu__text1 {
    display: flex;
    align-items: center;
    padding: 25px 40px;
    font-size: calc(28/16*1rem);
    background-color: #fff;
    border-radius: 30px;
    margin-bottom: 41px;
}

.menu__text2 {
    text-indent: -1em;
    font-size: calc(22/16*1rem);
    padding-left: 1em;
}

/* メニュー内容--------------- */
.care__wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    /* 中央寄せ */
    column-gap: 40px;
    /* ボックス間のスペース */
    max-width: 1300px;
    margin: 0 auto;
    margin-bottom: 82px;
}

.care {
    position: relative;
    background-color: #fff;
    margin-bottom: 119px;
    width: 550px;
    height: 370px;
    border-radius: 50px 50px 0 0;
}

/* トータルフットケア */
.care__title {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: #ffffff;
    font-weight: 700;
    border-radius: 50px 50px 0 0;
    width: 550px;
    height: 86px;
    margin-bottom: 25px;
}

.pink {
    background: #F98A8F;
}

.blue {
    background: #588BB7;
}

.green {
    background: #5DCFA7;
}

.yellow {
    background: #E4CB66;
}

.care__price {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    text-decoration: underline;
    text-decoration-color: #AEBBBD;
    text-underline-offset: 7px;
    letter-spacing: 0.05em;
}


.text-pink {
    color: #F98A8F;
}

.text-blue {
    color: #588BB7;
}

.text-green {
    color: #5DCFA7;
}

.text-yellow {
    color: #E4CB66;
}

.care__text {
    height: 200px;
    font-size: calc(28/16*1rem);
    color: #3F3F3F;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1.25em;
}

/* 米印------------------------------------------ */

.other {
    position: absolute;
    color: #3F3F3F;
    font-size: calc(25/16*1rem);
    right: 0;
    bottom: -40px;
    padding-top: 30px;
}

/* オプション------------------------------------------ */

.option {
    background-color: #E5F7F8;
    border-radius: 50px 50px 0 0;
    max-width: 1230px;
    margin: 0 auto 239px;
}

.option__title {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    font-weight: 700;
    background: #5DC1CF;
    color: #fff;
    border-radius: 50px 50px 0 0;
    height: 86px;
    margin-bottom: 81px;
}

.option__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 60px;
    gap: 45px;
    padding-bottom: 95px;
}

.option__contents {
    background-color: #fff;
    width: 300px;
    height: 235px;
    border-bottom: 10px solid #A4DCE4;
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.option h3 {
    color: #18AABE;
    font-size: 2rem;
    font-weight: 700;
}

.option__contents__price {
    color: #18AABE;
    font-size: calc(30/16*1rem);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: #AEBBBD;
    text-underline-offset: 7px;
}


/*レスポンシブ (タブレット版)
-------------------------------------- */
@media screen and (max-width: 960px) {




    /* はじめての方へ */
    .first {
        font-size: calc(16/16 *1rem);
    }

    .first h2 {
        margin-top: 43px;
        margin-bottom: 16px;
    }

    .first p {
        margin-bottom: 50px;
    }

    .first__blue {
        font-size: 2rem;
    }

    /* メニュー楕円------------------------------------------ */
    .menu__title h2 {
        font-size: 2rem;
        background-size: 30px;
        padding: 12.5px 50px;
        background-position: left 15px center, right 15px center;
        margin-bottom: 27px;
        letter-spacing: 0.22em;
    }

    /* menu写真・テキスト */
    .menu__container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        flex-wrap: nowrap;
        gap: 15px;
        margin-bottom: 35px;
    }

    .menu__container img {
        width: 430px;
        height: 290px;
    }

    .menu__text {
        width: 430px;
        margin-bottom: 15px;
    }

    .menu__text1 {
        padding: 13px 24px;
        font-size: calc(17/16*1rem);
        margin-bottom: 20px;
    }

    .menu__text2 {
        font-size: calc(16/16*1rem);
    }

    /* メニュー内容--------------- */
    .care__wrapper {
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: center;
        margin-bottom: 0;
        max-width: 430px;
    }

    .care,
    .care__title {
        width: 100%;
        max-width: 430px;
    }

    .care {
        height: 200px;
        margin-bottom: 70px;
    }

    .care__title {
        height: 47px;
        font-size: calc(22/16*1rem);
        margin-bottom: 10px;
    }

    .care__price {
        font-size: calc(27/16*1rem);
    }

    .care__text {
        height: 110px;
        font-size: calc(16/16*1rem);
        padding: 0;
    }

    .other {
        bottom: -30px;
        font-size: calc(14/16*1rem);
    }

    /* オプション----------------------- */
    .option,
    .option__title {
        max-width: 430px;
    }

    .option {
        margin-bottom: 100px;
    }

    .option__title {
        font-size: calc(27/16*1rem);
        height: 62px;
        margin-bottom: 40px;
    }

    .option__container {
        padding: 0 40px 42px;
    }

    .option__contents {
        height: 180px;
        padding: 0 20px;
    }

    .option__contents h3 {
        font-size: calc(22/16*1rem);
    }

    .option__contents__price {
        font-size: calc(22/16*1rem);
    }
}

/* レスポンシブ(スマホ版) */
@media screen and (max-width: 428px) {


    .first {
        font-size: calc(13/16 *1rem);
    }

    .first__blue {
        font-size: 1rem;
    }

    /* メニュー楕円------------------------------------------ */
    .menu__title h2 {
        font-size: 1rem;
        background-size: 25px;
        padding: 12.5px 50px;
        background-position: left 15px center, right 15px center;
        margin-bottom: 27px;
        letter-spacing: 0.22em;
    }

    /* menu写真・テキスト */
    .menu__container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        flex-wrap: nowrap;
        gap: 15px;
        margin-bottom: 35px;
    }

    .menu__container img {
        width: 215px;
        height: 145px;
    }

    .menu__text {
        width: 300px;
        margin-bottom: 15px;
    }

    .menu__text1 {
        padding: 13px 24px;
        font-size: calc(13/16*1rem);
        margin-bottom: 20px;
    }

    .menu__text2 {
        font-size: calc(12/16*1rem);
    }

    /* メニュー内容--------------- */
    .care__wrapper {
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: center;
        margin-bottom: 0;
        max-width: 330px;
    }

    .care,
    .care__title {
        width: 100%;
        max-width: 330px;
    }

    .care {
        height: 200px;
        margin-bottom: 40px;
    }

    .care__title {
        height: 47px;
        font-size: calc(25/16*1rem);
        margin-bottom: 10px;
    }

    .care__price {
        font-size: calc(25/16*1rem);
    }

    .care__text {
        height: 110px;
        font-size: calc(13/16*1rem);
        padding: 0;
    }

    .other {
        bottom: -40px;
        font-size: calc(14/16*1rem);
    }

    /* オプション----------------------- */
    .option,
    .option__title {
        max-width: 330px;
    }

    .option {
        margin-bottom: 100px;
    }

    .option__title {
        font-size: calc(22/16*1rem);
        height: 62px;
        margin-bottom: 40px;
    }

    .option__container {
        padding: 0 40px 42px;
    }

    .option__contents {
        height: 180px;
        padding: 0 20px;
    }

    .option__contents h3 {
        font-size: calc(22/16*1rem);
    }

    .option__contents__price {
        font-size: calc(22/16*1rem);
    }

}
