@charset "UTF-8";

/* // 背景設定
// --------------------------------------------- */

body {
    background-color: #fffef2;
    color: #333333;
    /* font-family: "Cinzel", serif; */
    font-family: "Klee One", cursive;
    transition: .7s;
    box-sizing: border-box;
}

body {
    background-image:
        radial-gradient(290px 300px, rgba(248, 233, 185, 0.5) 20%, transparent 20%),
        radial-gradient(800px 780px, rgba(248, 233, 185, 0.5) 20%, transparent 20%),
        radial-gradient(1000px 990px, rgba(248, 233, 185, 0.5) 20%, transparent 20%),
        radial-gradient(400px 380px, rgba(248, 233, 185, 0.5) 20%, transparent 20%),
        radial-gradient(750px 750px, rgba(248, 233, 185, 0.5) 20%, transparent 20%),
        radial-gradient(100px 100px, rgba(248, 233, 185, 0.5) 20%, transparent 20%);
    background-size:
        1230px 1280px,
        810px 910px,
        1470px 990px,
        1200px 1700px,
        1520px 1200px,
        1100px 1300px;
    background-position:
        -300px -550px,
        -200px 100px,
        50px 510px,
        -200px -550px,
        -180px -250px,
        130px -150px;
}


/* ヘッダー */
.header {
    max-width: 450px;
    margin: 0 auto;
    background-color: #f3f3f3;
    padding-top: 25px;
}

.header .logo img {
    display: block;
    height: 50px;
    margin: 0 25px;
}


/* // ナビ
// --------------------------------------------- */

.nav_wrapper-right {
    display: none;
}

.nav_wrapper-left {
    display: none;
}


/*1200px以上に適用されるCSS */
@media screen and (min-width:1200px) {

    /* PC表示　右　写真 */
    .nav_wrapper-right {
        position: fixed;
        display: block;
        top: 25%;
        right: 6%;
    }

    .nav_wrapper-right::after {
        position: absolute;
        content: "";
        background-image: url(../images/pc-fv-himawari.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        width: 69px;
        height: 41px;
        bottom: -24px;
        right: -30px;
    }

    .fade-img-box {
        width: 300px;
        height: 370px;
        position: relative;
    }

    .fade-img-box::after {
        position: absolute;
        content: "";
        width: 300px;
        height: 370px;
        border: 1px solid #433c0f;
        border-radius: 0 30px 0 30px;
        top: -19px;
        left: -19px;
    }

    .fade-img-box::before {
        position: absolute;
        content: "";
        width: 300px;
        height: 370px;
        background-color: #f8e9b9;
        border-radius: 0 30px 0 30px;
        bottom: -19px;
        left: 19px;
    }

    .fade-img-box img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 0 30px 0 30px;
    }
}


/* PC表示 左　メニュー　 */

/*1200px以上に適用されるCSS */
@media screen and (min-width:1200px) {
    .nav_wrapper-left {
        display: block;
        position: fixed;
        top: 100px;
        left: 140px;
    }

    /* 上２つ */
    .nav_wrapper-left .nav_list01 {

        z-index: 5;

        li {
            margin-bottom: 20px;
            list-style: none;

            a {
                display: inline-block;
                color: #5a3429;
                text-decoration: none;
            }
        }
    }

    /* 施術メニュー */
    .nav_wrapper-left .nav_list02 {

        z-index: 5;
        margin-top: 40px;

        li {
            margin-bottom: 20px;

            /* リスト前　黒丸打ち消し */
            list-style: none;

            /* 横棒　装飾 */
            display: flex;
            align-items: center;

            a {
                display: inline-block;
                color: #5a3429;
                text-decoration: none;
            }
        }
    }

    /* 横棒　装飾 */
    .nav_list02 li::before {
        content: "";
        width: 20px;
        height: 0.5px;
        background-color: #5a3429;
        display: block;
        margin-right: 20px;
    }

    /* インスタグラム */
    .nav_wrapper-left .nav_list03 {

        z-index: 5;
        margin-top: 40px;

        li {
            margin-bottom: 20px;

            /* リスト前　黒丸打ち消し */
            list-style: none;

            /* インスタグラムicon　装飾 */
            display: flex;
            align-items: center;

            a {
                display: inline-block;
                color: #5a3429;
                text-decoration: none;
                font-family: "Cinzel", serif;
                letter-spacing: .2rem;
            }
        }
    }

    /* インスタグラムicon　装飾 */
    .nav_list03 li::before {
        content: "";
        display: block;
        background-image: url(../images/Instagram.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        width: 30px;
        height: 30px;
        margin-right: 20px;
    }

    /* 吹き出し */
    .fukidashi-14 {
        position: relative;
        display: block;
        padding: 12px 0;
        border-bottom: solid 1px #333;
        margin-bottom: 20px;
        width: fit-content;
    }

    .fukidashi-14::before {
        content: "";
        position: absolute;
        bottom: -5px;
        left: 50%;
        width: 18px;
        height: 18px;
        box-sizing: border-box;
        rotate: 135deg;
        translate: -50%;
    }

    .fukidashi-14::after {
        content: "";
        position: absolute;
        bottom: -7px;
        left: 39%;
        width: 20px;
        height: 20px;
        box-sizing: border-box;
        border-top: solid 1px;
        border-color: #333;
        rotate: 135deg;
    }

    .nav_wrapper-left .line-qr {
        display: block;
        width: 118px;
    }


    .service {
        width: 300px;
        height: 100px;
        background-color: #f8e9b9;
        border-radius: 0 30px 0 30px;
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        margin-top: 20px;
        font-size: 12px;
        color: #5a3429;
        padding: 5px;
    }

    .service img {
        display: block;
        height: 40px;
        width: 40px;
        margin-bottom: 10px;
    }

    .service .pay,
    .service .room,
    .service .clothes {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* ====＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝==ハンバーガーメニュー====＝＝＝＝＝＝＝＝＝＝＝＝＝＝=*/


/* 1200px以上に適用するcss */
@media screen and (min-width: 1200px) {

    /* ハンバーガーメニューボタン */
    #js-open-btn {
        display: none;
    }

    /* ラインボタン */
    .linebtn {
        display: none;
    }
}

.nav-pc {
    display: none;
}


/* メニューボタン　bg */
#js-open-btn {
    position: fixed;
    top: 501px;
    right: 10px;
    background-image: url(../images/a-menu-open.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 70px;
    height: 70px;
    z-index: 10;
}

/* メニューボタン　bg */
/* ※「.open」の前にスペースしたら効かなくる！！ */
#js-open-btn.open {
    background-image: url(../images/a-menu-close.png);

}

/* ====メニュー開いた時の表示==== */
.nav-sp {
    display: none;
    background: rgba(91, 80, 69, 0.9);
    position: absolute;
    top: 0;
    left: 0px;
    width: 75%;
    z-index: 9999;
    position: fixed;
}

.header__nav-sp {
    display: block;
    transition: right .5s;
}

.nav-sp .open {
    right: 0;
}

.header__navItems {
    display: block;
    letter-spacing: .1rem;
    text-align: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.header__navItems h3 {
    display: inline-block;
    font-family: "Cinzel", serif;
    font-size: 20px;
    color: #f3f3f3;
    margin-top: 50px;
}

.header__navItems .underline {
    width: 20px;
    height: 3px;
    background-color: #fff;
    border-radius: 10px;
    margin: 10px auto;
}

.header__navItems .nav01 {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.header__navItems .nav02 li {
    border-top: .5px solid #f3f3f3;
}

.header__navItems .nav02 a {
    padding: 20px 0;
}

.nav01 .arrow,
.nav02 .arrow {
    position: relative;
}

.nav01 .arrow::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4px 0 4px 6px;
    border-color: transparent transparent transparent #f3f3f3;
    position: absolute;
    top: 0;
    right: -14px;
    bottom: 0;
    margin: auto;
}

.nav02 .arrow::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4px 0 4px 6px;
    border-color: transparent transparent transparent #f3f3f3;
    position: absolute;
    top: 0;
    right: 24px;
    bottom: 0;
    margin: auto;
}

.header .navItem a {
    color: #f3f3f3;
    font-size: 14px;
    font-weight: normal;
    text-decoration: none;
    display: block;
    padding: 24px 0;
    margin: 0 auto;
    transition: .5s;
}

.header .nav03 {
    border-top: .5px solid #f3f3f3;
}


/* インスタ */
.header .nav03 p {
    font-family: "Cinzel", serif;
    color: #f3f3f3;
    text-align: center;
}

.header .nav03 img {
    display: block;
    width: 20px;
    margin: 0 auto;
    padding: 5px 0;
}

.header__navItems .service {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    margin: 20px 0;
    font-size: 10px;
    color: #5a3429;
}

.header__navItems .service img {
    display: block;
    height: 30px;
    width: 30px;
    margin-bottom: 10px;
}

.header__navItems .service .pay,
.header__navItems .service .room,
.header__navItems .service .clothes {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f3f3f3;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    letter-spacing: .01rem;
}


@media (hover: hover) and (pointer: fine) {
    .navigation__link:hover {
        background: #333;
    }
}

/* ====メニュー開いた時の表示 ここまで==== */





/* 1200px以上に適用されるCSS */
@media screen and (min-width: 1200px) {

    /* メニューボタンOPEN */
    #js-hamburger-menu img {
        display: none;
    }


    /* メニュー開いた時の表示 */
    .nav-sp {
        display: none;
    }

    .header__navItems {
        display: none;
    }
}


/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ハンバーガーメニューここまで＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */





/* LINE予約ボタン */
.linebtn img {
    display: block;
    position: fixed;
    top: 586px;
    right: 10px;
    display: block;
    width: 70px;
    height: auto;
    z-index: 100;
}

@media screen and (min-width: 1200px) {
    .linebtn img {
        display: none;
    }
}


/* // コンテンツ
// --------------------------------------------- */
header,
main,
footer {
    max-width: 450px;
    margin: 0 auto;
    position: relative;

    @media screen and (max-width:400px) {
        max-width: none;
        width: 100%;
    }

    .section {
        padding: 50px 0;
    }
}


.width {
    width: 93%;
    margin: 0 auto;
}


#sec01 {
    background-color: #F3f3f3;
    padding-top: 80px;
}

#sec01 img {
    display: block;
    width: 50px;
    margin: 0 auto;
}

#sec01 h2 {
    font-size: 24px;
    margin-top: 20px;
    text-align: center;
}

/* メッセージ */
#sec02 {
    background-color: #f3f3f3;
}

#sec02 img {
    display: block;
    width: 230px;
    margin: 0 auto;
}

#sec02 p {
    text-align: center;
    margin: 20px 0;
    line-height: 1.5;
}

/* <!-- コース一覧 --> */
#sec03 {
    background-color: #f3f3f3;
}

#sec03 h3 {
    position: relative;
    font-size: 20px;
    text-align: center;
}

#sec03 .tax {
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    margin-bottom: 50px;
}


#sec03 h3::before {
    position: absolute;
    content: "";
    background-image: url(../images/bee.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 20px;
    height: 20px;
    top: -52px;
    right: 47%;
}

/* メニュ表 */
.menu_table {
    background-color: #fffffe;
    border: .5px solid #4b4131;
    border-radius: 0 30px 0 30px;
    padding: 70px 0;
    position: relative;
    /* 施術内容を中央よせ */
    text-align: center;
    margin-bottom: 50px;
}


/* ＝＝＝＝＝＝＝＝＝＝＝＝各施術内容＝＝＝＝＝＝＝＝＝＝＝＝＝ */

/* 美容鍼ベーシックコース　施術内容 */
.basic .detail {
    display: block;
    width: 120px;
    padding: 10px;
    text-align: center;
    background-color: #f8e9b9;
    border-radius: 10px;
        margin: 8px auto;
    font-size: 14px;
}

/* 美容鍼ゴールドコース　施術内容 */
.gold .detail {
    display: block;
    width: 130px;
    padding: 10px;
    background-color: #f8e9b9;
    border-radius: 10px;
    margin: 8px auto;
    font-size: 14px;
}

/* 美容鍼プレミアムコース　施術内容 */
.premium .detail {
    display: block;
    width: 130px;
    padding: 10px;
    background-color: #f8e9b9;
    border-radius: 10px;
    margin: 8px auto;
    font-size: 14px;
}

/* 東洋・西洋の文章 */
.premium .wide {
    width: 254px;
}


/* 産前産後ケア整体　施術内容 */
.care .detail {
    display: block;
    width: 130px;
    padding: 10px;
    background-color: #f8e9b9;
    border-radius: 10px;
    margin: 8px auto;
    font-size: 14px;
}

/* ボディマッサージの文章 */
.care .wide {
    width: 165px;
}

/* 鍼灸施術　肩こり・腰痛　施術内容 */
.upperbody .detail {
    display: block;
    width: 130px;
    padding: 10px;
    background-color: #f8e9b9;
    border-radius: 10px;
    margin: 8px auto;
    font-size: 14px;
}

/* ボディマッサージの文章 */
.upperbody .wide {
    width: 165px;
}

/* 鍼灸施術　眼精疲労　施術内容 */
.eye .detail {
    display: block;
    width: 130px;
    padding: 10px;
    background-color: #f8e9b9;
    border-radius: 10px;
    margin: 8px auto;
    font-size: 14px;
}

/* ボディマッサージの文章 */
.eye .wide {
    width: 165px;
}

/* 鍼灸施術　自律神経　施術内容 */
.nerve .detail {
    display: block;
    width: 130px;
    padding: 10px;
    background-color: #f8e9b9;
    border-radius: 10px;
    margin: 8px auto;
    font-size: 14px;
}

/* ボディマッサージの文章 */
.nerve .wide {
    width: 165px;
}

/* 交通事故施術 */

/* 写真まとめ配置 */
.accident .warning_note-area {
    position: relative;
}
.accident .warning_note-area::after {
    content: '';
    background-image: url(../images/pic-accident.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    width: 263px;
    height: 200px;
    bottom: -248px;
    left: 20%;
}
/* 写真まとめ配置 */


.accident .warning_note-area h4 {
    display: inline-block;
    background-color: #f5e09c;
    padding: 18px;
    position: relative;
    margin-top: 30px;
}

.accident .warning_note-area h4::after {
    position: absolute;
    content: '';
    background-image: url(../images/menu-himawari.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 30px;
    height: 30px;
    bottom: -9px;
    right: -12px;
}

.accident .warning_note-area .text {
    background-color: #fbfbf9;
    padding: 20px;
    font-size: 14px;
    line-height: 1.8;
}

.accident .warning_note-area .text span {
    background:linear-gradient(transparent 60%, #f5e09c 60%);
}



/* ご来院までの流れ */
.accident .flow {
    margin-top: 350px;
}

.accident .flow h4 {
    font-size: 20px;
    position: relative;
}

.accident .flow .one::before {
    content: '01';
    font-family: "Cinzel", serif;
    font-size: 48px;
    margin-right: 16px;
}

.accident .flow .two::before {
    content: '02';
    font-family: "Cinzel", serif;
    font-size: 48px;
    margin-right: 16px;
}

.accident .flow .three::before {
    content: '03';
    font-family: "Cinzel", serif;
    font-size: 48px;
    margin-right: 16px;
}

.accident .flow .four::before {
    content: '04';
    font-family: "Cinzel", serif;
    font-size: 48px;
    margin-right: 16px;
}

.accident .flow .text {
    background-color: #fbfbf9;
    padding: 20px;
    margin-top: 30px;
    border-radius: 30px;
    border: 1px solid #f5e09c;
}

.accident .flow .text p {
    margin-top: 20px;
    line-height: 1.5;
}

.accident .closing {
    text-align: center;
    margin: 100px 0 100px;
    font-size: 20px;
}



/* ＝＝＝＝＝＝＝＝＝＝＝＝各施術内容　ここまで＝＝＝＝＝＝＝＝＝＝＝＝＝ */


.menu_table h4 {
    font-size: 20px;
    text-align: center;
}

.menu_table .underline {
    border: .5px solid #4b4131;
    margin: 40px auto 0;
    width: 70%;
}

.menu_table .text {
    text-align: center;
    line-height: 1.5;
    margin: 40px 0;
}


/* ＝＝＝施術内容の親要素＝＝＝＝ */
/* 美容鍼 */
.beauty .menu_table .priceArea {
    position: relative;
    width: 70%;
    margin: 20px auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

/* 産前産後 */
.maternity .menu_table .priceArea {
    position: relative;
    width: 70%;
    margin: 20px auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

/* 鍼灸施術 */
.acupuncture .menu_table .priceArea {
    position: relative;
    width: 70%;
    margin: 20px auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

/* ボディケア */
.bodycare .menu_table .priceArea {
    position: relative;
    width: 70%;
    margin: 20px auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

/* ＝＝＝施術内容の親要素 ここまで＝＝＝＝ */



.menu_table .priceArea::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 78px;
    width: 60px;
    height: .5px;
    background-color: #4b4131;
}

.menu_table .priceArea .time span {
    font-family: "Cinzel", serif;
}

.menu_table .priceArea .price span {
    font-family: "Cinzel", serif;
    font-size: 30px;
    font-weight: 500;
}

.menu_table .priceArea .separator_line {
    border: .5px solid #4b4131;
}


.menu_table img {
    position: relative;
    display: block;
    width: 70%;
    margin: 0 auto;
}


/* ＝＝＝＝＝＝＝＝＝写真の英語装飾＝＝＝＝＝＝＝＝＝ */

/* 美容鍼　ベーシック　写真装飾 */
.basic::before {
    content: "Basic";
    position: absolute;
    bottom: 91px;
    left: 11%;
    font-family: "Cinzel", serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .3rem;
    background-color: rgba(248, 233, 185, 0.75);
    padding: 13px;
    z-index: 3;
        /* 英文大文字表記 */
    text-transform: uppercase
}

/* 美容鍼　ゴールド　写真装飾 */
.gold::before {
    content: "Gold";
    position: absolute;
    bottom: 91px;
    left: 11%;
    font-family: "Cinzel", serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .3rem;
    background-color: rgba(248, 233, 185, 0.75);
    padding: 13px;
    z-index: 3;
        /* 英文大文字表記 */
    text-transform: uppercase
}

/* 美容鍼　プレミアム　写真装飾 */
.premium::before {
    content: "Premium";
    position: absolute;
    bottom: 253px;
    right: 11%;
    font-family: "Cinzel", serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .3rem;
    background-color: rgba(248, 233, 185, 0.75);
    padding: 13px;
    z-index: 3;
        /* 英文大文字表記 */
    text-transform: uppercase
}

/* 産前産後　ケア　写真装飾 */
.care::before {
    content: "Care";
    position: absolute;
    bottom: 253px;
    left: 11%;
    font-family: "Cinzel", serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .3rem;
    background-color: rgba(248, 233, 185, 0.75);
    padding: 13px;
    z-index: 3;
        /* 英文大文字表記 */
    text-transform: uppercase
}

/* 鍼灸施術　肩こり・腰痛　写真装飾 */
.upperbody::before {
    content: "Upper body";
    position: absolute;
    bottom: 87px;
    left: 11%;
    font-family: "Cinzel", serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .3rem;
    background-color: rgba(248, 233, 185, 0.75);
    padding: 13px;
    z-index: 3;
        /* 英文大文字表記 */
    text-transform: uppercase
}

/* 鍼灸施術　眼精疲労　写真装飾 */
.eye::before {
    content: "Eye";
    position: absolute;
    bottom: 87px;
    left: 11%;
    font-family: "Cinzel", serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .3rem;
    background-color: rgba(248, 233, 185, 0.75);
    padding: 13px;
    z-index: 3;
        /* 英文大文字表記 */
    text-transform: uppercase
}

/* 産前産後　ケア　写真装飾 */
.nerve::before {
    content: "Nerve";
    position: absolute;
    bottom: 253px;
    left: 11%;
    font-family: "Cinzel", serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .3rem;
    background-color: rgba(248, 233, 185, 0.75);
    padding: 13px;
    z-index: 3;
        /* 英文大文字表記 */
    text-transform: uppercase
}

/* ボディケア　全身マッサージ　写真装飾 */
.chiropractic::before {
    content: "Chiropractic";
    position: absolute;
    bottom: 87px;
    left: 11%;
    font-family: "Cinzel", serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .3rem;
    background-color: rgba(248, 233, 185, 0.75);
    padding: 13px;
    z-index: 3;
        /* 英文大文字表記 */
    text-transform: uppercase
}

/* ボディケア　よもぎ蒸し　写真装飾 */
.mugwort::before {
    content: "Mugwort";
    position: absolute;
    bottom: 87px;
    left: 11%;
    font-family: "Cinzel", serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .3rem;
    background-color: rgba(248, 233, 185, 0.75);
    padding: 13px;
    z-index: 3;
    /* 英文大文字表記 */
    text-transform: uppercase
}

/* ＝＝＝＝＝＝＝＝＝写真の英語装飾　ここまで＝＝＝＝＝＝＝＝＝ */


.menu_table::after {
    content: "";
    position: absolute;
    background-image: url(../images/menu-himawari.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 50px;
    height: 50px;
    bottom: 52px;
    right: 11%;
}


/* =====オプション===== */

#sec04 {
    background-color: #f3f3f3;
}

#sec04 h3 {
    position: relative;
    font-size: 20px;
    text-align: center;
}

#sec04 .tax {
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    margin-bottom: 50px;
}

#sec04 h3::before {
    position: absolute;
    content: "";
    background-image: url(../images/bee.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 20px;
    height: 20px;
    top: -52px;
    right: 47%;
}


/* オプションメニュー共通 */
#sec04 .option-menu01,
#sec04 .option-menu02,
#sec04 .option-menu03,
#sec04 .option-menu04,
#sec04 .option-menu05,
#sec04 .option-menu06 {
    border-bottom: .5px solid #4b4131;
    padding: 20px 0;
}

/* オプションメニュー共通 */
#sec04 .option-menu01 h4,
#sec04 .option-menu02 h4,
#sec04 .option-menu03 h4,
#sec04 .option-menu04 h4,
#sec04 .option-menu05 h4,
#sec04 .option-menu06 h4 {
    font-size: 18px;
    margin-left: 34px;
    position: relative;
}

/* オプションメニュー共通 */
#sec04 .option-menu01 h4::before,
#sec04 .option-menu02 h4::before,
#sec04 .option-menu03 h4::before,
#sec04 .option-menu04 h4::before,
#sec04 .option-menu05 h4::before,
#sec04 .option-menu06 h4::before {
    position: absolute;
    content: "";
    background-image: url(../images/menu-himawari.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 20px;
    height: 20px;
    top: 0;
    left: -30px;
}

/* オプションメニュー共通 */
#sec04 .option-menu01 .upside,
#sec04 .option-menu02 .upside,
#sec04 .option-menu03 .upside,
#sec04 .option-menu04 .upside,
#sec04 .option-menu05 .upside,
#sec04 .option-menu06 .upside {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

/* オプションメニュー共通 */
#sec04 .option-menu01 .priceArea,
#sec04 .option-menu02 .priceArea,
#sec04 .option-menu03 .priceArea,
#sec04 .option-menu04 .priceArea,
#sec04 .option-menu05 .priceArea,
#sec04 .option-menu06 .priceArea {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 170px;
    position: relative;
}

/* オプションメニュー共通 */
#sec04 .option-menu01 .priceArea .time span,
#sec04 .option-menu02 .priceArea .time span,
#sec04 .option-menu03 .priceArea .time span,
#sec04 .option-menu04 .priceArea .time span,
#sec04 .option-menu05 .priceArea .time span,
#sec04 .option-menu06 .priceArea .time span {
    font-family: "Cinzel", serif;
}

/* オプションメニュー共通 */
#sec04 .option-menu01 .priceArea .price span,
#sec04 .option-menu02 .priceArea .price span,
#sec04 .option-menu03 .priceArea .price span,
#sec04 .option-menu04 .priceArea .price span,
#sec04 .option-menu05 .priceArea .price span,
#sec04 .option-menu06 .priceArea .price span {
    font-family: "Cinzel", serif;
    font-size: 20px;
    font-weight: 500;
}


#sec04 .option-menu01 .priceArea::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 57px;
    width: 20%;
    height: .5px;
    background-color: #4b4131;
}

#sec04 .option-menu02 .priceArea::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 48px;
    width: 20%;
    height: .5px;
    background-color: #4b4131;
}

#sec04 .option-menu03 .priceArea::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 55px;
    width: 20%;
    height: .5px;
    background-color: #4b4131;
}

#sec04 .option-menu04 .priceArea::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 57px;
    width: 20%;
    height: .5px;
    background-color: #4b4131;
}

#sec04 .option-menu05 .priceArea::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 52px;
    width: 20%;
    height: .5px;
    background-color: #4b4131;
}

#sec04 .option-menu06 .priceArea::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 48px;
    width: 20%;
    height: .5px;
    background-color: #4b4131;
}

/* オプションメニュー共通 */
#sec04 .option-menu01 .description,
#sec04 .option-menu02 .description,
#sec04 .option-menu03 .description,
#sec04 .option-menu04 .description,
#sec04 .option-menu05 .description,
#sec04 .option-menu06 .description {
    background-color: #f8e9b9;
    display: inline-block;
    padding: 10px;
    border-radius: 10px;
    margin-top: 16px;
    font-size: 14px;
}

/* ＝＝＝他のメニューを見る＝＝＝ */
#sec05 {
    background-color: #f3f3f3;
}

#sec05 h3 {
    position: relative;
    font-size: 20px;
    text-align: center;
    margin-bottom: 50px;
}

#sec05 h3::before {
    position: absolute;
    content: "";
    background-image: url(../images/bee.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 20px;
    height: 20px;
    top: -52px;
    right: 47%;
}



/* ボタン共通 */
#sec05 .menu-btn {
    display: flex;
    width: 70%;
    height: 60px;
    margin: 10px auto 0;
    background-color: #f8f6f6;
    border: .5px solid #4b4131;
    border-radius: 10px 10px 0 10px;
    justify-content: center;
    align-items: center;
    position: relative;
}

#sec05 a {
    text-decoration: none;
    color: #333333;
}

/* ボタン共通 */


/* ーーーーーーーーーー産前産後整体　ここからーーーーーーーーーーー */
#sec05 .maternity::after {
    position: absolute;
    content: "";
    background-image: url(../images/a-tap-yellow.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 29px;
    height: 25px;
    bottom: 5px;
    right: 5px;
}

#sec05 .maternity::before {
    position: absolute;
    content: "";
    background-image: url(../images/a-maternity.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 30px;
    height: 25px;
    top: 17px;
    left: 29px;
}

/* ーーーーーーーーーーー産前産後整体　ここまでーーーーーーーーーーー */

/* ーーーーーーーーーー鍼灸施術　ここからーーーーーーーーーーー */
#sec05 .acupuncture::after {
    position: absolute;
    content: "";
    background-image: url(../images/a-tap-blue.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 29px;
    height: 25px;
    bottom: 5px;
    right: 5px;
}

#sec05 .acupuncture::before {
    position: absolute;
    content: "";
    background-image: url(../images/a-acupuncture.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 25px;
    height: 25px;
    top: 17px;
    left: 29px;
}

/* ーーーーーーーーーーー産前産後整体　ここまでーーーーーーーーーーー */

/* ーーーーーーーーーーボディケア　ここからーーーーーーーーーーー */
#sec05 .bodycare::after {
    position: absolute;
    content: "";
    background-image: url(../images/a-tap-green.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 25px;
    height: 25px;
    bottom: 5px;
    right: 5px;
}

#sec05 .bodycare::before {
    position: absolute;
    content: "";
    background-image: url(../images/a-bodycare.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 29px;
    height: 25px;
    top: 17px;
    left: 29px;
}

/* ーーーーーーーーーーーボディケア　ここまでーーーーーーーーーーー */

/* ーーーーーーーーーー交通事故　ここからーーーーーーーーーーー */
#sec05 .accident::after {
    position: absolute;
    content: "";
    background-image: url(../images/a-tap-purple.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 25px;
    height: 25px;
    bottom: 5px;
    right: 5px;
}

#sec05 .accident::before {
    position: absolute;
    content: "";
    background-image: url(../images/a-crash.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 29px;
    height: 25px;
    top: 17px;
    left: 29px;
}

/* ーーーーーーーーーーー交通事故　ここまでーーーーーーーーーーー */

/* ーーーーーーーーーー美容鍼　ここからーーーーーーーーーーー */
#sec05 .beauty::after {
    position: absolute;
    content: "";
    background-image: url(../images/a-tap-pink.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 29px;
    height: 25px;
    bottom: 5px;
    right: 5px;
}

#sec05 .beauty::before {
    position: absolute;
    content: "";
    background-image: url(../images/a-beauty.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 25px;
    height: 25px;
    top: 17px;
    left: 29px;
}

/* ーーーーーーーーーーー美容鍼　ここまでーーーーーーーーーーー */

/* フッター */
.footer {
    background-color: #5b5045;
    max-width: 450px;
    margin: 0 auto;
    position: relative;
    color: #f3f3f3;
    padding-top: 50px;

    @media screen and (max-width:768px) {
        max-width: none;
        width: 100%;
    }
}

.footer p {
    padding-top: 10px;
}

/* トップボタン */
.footer .topbtn {
    border: 1px solid #f3f3f3;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto;
}

.footer .topbtn {
    color: #f3f3f3;
    font-size: 16px;
    font-family: "Cinzel", serif;
    text-decoration: none;
    width: 80px;
    height: 80px;
    border-radius: 50%;

    /* ③次に作る上向きの三角と、TOPの文字の位置を揃えるためのcss */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.footer .topbtn::before {
    /* ④絶対必要 */
    content: "";
    display: block;

    /* ⑤三角のサイズ */
    width: 10px;
    height: 10px;

    /* ⑥三角の線と回転角度 */
    border-top: 2px solid white;
    border-right: 2px solid white;
    transform: rotate(-45deg);
    /* margin-bottom: 5px; */
}

/* インスタボタン */
.footer .follow {
    text-align: center;
    font-family: "Cinzel", serif;
    letter-spacing: 0.2em;
    margin-top: 60px;
}

.footer .insta {
    display: block;
    width: 30px;
    margin: 20px auto 0;
}

.footer .separator_line {
    border: .5px solid #f3f3f3;
    width: 100%;
    margin: 60px auto;
}

/* 営業時間 */
.footer .time {
    display: block;
    width: 100%;
    margin: 0 auto 50px;
}

.footer .copyright {
    text-align: center;
    font-family: "Cinzel", serif;
    padding: 50px 0;
}

.footer span {
    font-family: "Cinzel", serif;
}

.footer .mapbtn {
    background-color: #f3f3f3;
    font-size: 16px;
    width: 150px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px auto;
}

.footer .mapbtn a {
    text-decoration: none;
    font-family: "Cinzel", serif;
    color: #5b5045;
    letter-spacing: .1rem;
}

.footer::after {
    position: absolute;
    content: "";
    background-image: url(../images/a-footer-himawari.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 50px;
    height: 90px;
    bottom: 0;
    right: 20px;
}