@charset "UTF-8";

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


/* ＝＝＝＝＝＝＝＝＝ローディングここから＝＝＝＝＝＝＝＝＝ */

/* ローディング画面 */
#loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: #f5e09c;
}
.spinner {
  width: 100px;
  height: 100px;
  margin: 200px auto;
  background-color: #fff;
  border-radius: 100%;
  animation: sk-scaleout 1s infinite ease-in-out;
}
/* ローディングアニメーション */
@keyframes sk-scaleout {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}


#loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: #f5e09c;

  /* 以下のコードを追加 */
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}


.loaded {
  opacity: 0;
  visibility: hidden;
}


/* ＝＝＝＝＝＝＝＝＝ローディングここまで＝＝＝＝＝＝＝＝＝ */




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


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;
}

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

/* ヘッダー */
.header {
    max-width: 450px;
    margin: 0 auto;
    background-image: url(../images/a-background01.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    /* ひまわりはみだし非表示 */
    overflow: hidden;
}

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

/* ファーストビュー */

.fv-top {
    position: relative;
}

.fv-top .human {
    display: block;
    width: 325px;
    margin-left: -28px;
    margin-top: -97px;
}

/* ひまわり擬似要素配置 */
.fv-top::after {
    /* contentは空に */
    content: "";
    /* 表示させたい画像サイズの幅と高さを設定 */
    width: 400px;
    height: 400px;
    /* widthとheightが機能するようにinline-blockに変更(::beforeはインライン要素のため) */
    display: inline-block;
    /* 画像を背景として表示 */
    background-image: url(../images/a-himawari.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: -61px;
    right: -124px;
    opacity: 0.3;
    overflow: hidden;
}

/* fvキャッチコピー */
.fv-top .sentence {
    position: absolute;
    display: block;
    width: 200px;
    top: 138px;
    right: 53px;
    z-index: 1;
}

.fv .english {
    font-family: "Cinzel", serif;
    color: #f3f3f3;
    text-shadow: #aeaca6 1px 0 10px;
    letter-spacing: 0.3em;
    line-height: 1.5;
    text-indent: -76px;
    padding-left: 113px;
    position: absolute;
    top: 417px;
    /* 英文大文字表記 */
    text-transform: uppercase
}


/* fv下段 */
.fv-down {
    background-image: url(../images/a-wave.png);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    margin-top: 26px;
    height: 240px;
}

.fv-down .time {
    display: block;
    position: absolute;
    width: 338px;
    top: 375px;
    left: -42px;
}

.fv-down .news {
    position: absolute;
    top: 621px;
    left: 14px;
    width: 300px;
    height: 50px;
    border: .5px solid #433c0f;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
}

.news h3 {
    font-family: "Cinzel", serif;
    font-weight: 200;
    letter-spacing: .2rem;
}

.newsline {
    border-left: .5px solid #4b4131;
    height: 40px;
}

/* ニュースリンク */
.news-link {
    text-decoration: none;
    color: #333;
}

.news-link span {
    background: linear-gradient(transparent 50%, #f5e09c 50%);
}
/* // ナビ
// --------------------------------------------- */


.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;
    }

    /* FVミツバチ */
    .nav_wrapper-right::before {
        position: absolute;
        content: "";
        background-image: url(../images/pc-fv-bee.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        width: 55px;
        height: 31px;
        top: 24px;
        left: -34%;
    }

    .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: 2;
}

/* メニューボタン　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;
        /* 英文大文字表記 */
    text-transform: uppercase
}

.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;
        /* 英文大文字表記 */
    text-transform: uppercase
}

.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: 100px 0;
    }
}



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

#sec01 .text {
    margin: 0 auto;
    background-image: url(../images/a-top-message-himawari.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 300px;
    height: 271px;
}

#sec01 .main {
    font-family: "Cinzel", serif;
    font-size: 24px;
    text-align: center;
    padding-top: 63px;
        /* 英文大文字表記 */
    text-transform: uppercase
}

#sec01 .sub {
    text-align: center;
    margin-top: 24px;
    line-height: 1.8;
}

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



/* はじめての方へ */
#sec02 {
    position: relative;
    background-color: #f7da79;
    background-image: url(../images/a-background-white.png);
    background-repeat: no-repeat;
    background-position: right 35% bottom 58%;
    background-size: cover;
    height: 660px;
}


/* fv下段 */
#sec02 .wave02 {
    position: absolute;
    top: -47px;
    left: 0;
    display: block;
    width: 100%;
}

#sec02 h2 {
    font-size: 20px;
}

#sec02 .sentence {
    line-height: 1.8;
    margin-top: 40px;
}

.button-13 {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 170px;
}

.button-13 img {
    display: block;
    width: 16px;
}

.button-13 a {
    font-size: 14px;
    letter-spacing: 0.1em;
    color: #333;
    font-weight: 400;
    display: block;
    position: relative;
    box-sizing: border-box;
    max-width: 180px;
    text-align: center;
    padding: 10px 16px 10px 0;
    margin: 24px;
    margin-inline: auto;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
}

.button-13 a::before {
    content: "";
    display: block;
    position: absolute;
    width: 126px;
    height: .5px;
    background: #626161;
    bottom: 3px;
    transition: all 0.3s;
}

.button-13 a::after {
    content: "";
    display: block;
    position: absolute;
    width: 20px;
    height: .5px;
    background: #626161;
    rotate: 40deg;
    right: -4px;
    bottom: 9.5px;
    transition: all 0.3s;
}

.button-13 a:hover::after,
.button-13 a:hover::before {
    translate: 20px 0;
    transition: all 0.3s;
}

#sec02 .message {
    position: absolute;
    bottom: 102px;
    right: 0;
    display: block;
    width: 200px;
}

#sec02 .wave {
    position: absolute;
    bottom: -13px;
    left: 0;
    display: block;
    width: 100%;
    height: 100px;
}

#sec02 .bee {
    position: absolute;
    bottom: 168px;
    left: 81px;
    display: block;
    width: 44px;
}

/* 施術内容 */
#sec03 {
    background-color: #f3f3f3;
    position: relative;
}

#sec03 .btn-wrap {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;

}

.heading {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-content: flex-end;
    align-items: baseline;
    margin: 0 0 50px 40px;

}

.heading::before {
    content: "";
    width: 20px;
    height: 20px;
    display: inline-block;
    background-image: url(../images/bee.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 5px;
    left: -31px;
}

.heading h2 {
    font-size: 30px;
    font-family: "Cinzel", serif;
        /* 英文大文字表記 */
    text-transform: uppercase
}

.heading p {
    font-size: 14px;
    margin-left: 20px;
}

#sec03 .btn-wrap a {
    text-decoration: none;
    color: #333;
}

/* ーーー施術ボタン共通ーーー */
.surgery {
    width: 178px;
    height: 225px;
    border: 1px solid #97807a;
    border-radius: 30px 30px 0 30px;
    padding: 5px;
    margin-top: 16px;
}

.surgery .img-box {
    display: flex;
    justify-content: center;
    margin-top: 18px;
}

.subcache img {
    display: block;
    margin: 0 auto;
}

.surgery h3,
.surgery .subcache {
    text-align: center;
}

/* ーーー共通　施術名前ーーー */
.surgery h3 {
    font-size: 20px;
    margin-top: 8px;
}

/* ーーー共通　アイコンの大きさーーー */
.surgery .icon {
    display: block;
    height: 30px;
}


.surgery .tap {
    display: inline-block;
    width: 35px;
    margin-left: 130px;
    margin-top: 5.5px;
}


/* ＝＝＝＝＝＝＝＝ここから各カラー＝＝＝＝＝＝＝＝ */


/* ーーーーーーーーーー美容鍼　ここからーーーーーーーーーーー */

/* ーーー美容鍼　英語サブタイトルーーー */
.beauty .subcache {
    font-size: 10px;
    font-family: "Cinzel", serif;
    margin-top: 10px;
    color: #d7a6c4;
}

/* ーーー美容鍼　セパレートラインーーー */
.beauty .separator_line {
    border: 0.5px solid #d7a6c4;
    width: 90%;
    margin: 10px auto;
}

/* ーーー美容鍼　ハッシュタグテキスト調整ーーー */
.beauty .text {
    display: block;
    width: 130px;
    margin: 0 auto;
    font-size: 12px;
    line-height: 1.5;
}

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

/* ーーーーーーーーーー産前産後整体　ここからーーーーーーーーーーー */

/* ーーー産前産後整体　英語サブタイトルーーー */
.maternity .subcache {
    font-size: 10px;
    font-family: "Cinzel", serif;
    margin-top: 10px;
    color: #c1b56b;
}

/* ーーー産前産後整体　セパレートラインーーー */
.maternity .separator_line {
    border: 0.5px solid #c1b56b;
    width: 90%;
    margin: 10px auto;
}

/* ーーー産前産後整体　ハッシュタグテキスト調整ーーー */
.maternity .text {
    display: block;
    width: 164px;
    margin: 0 auto;
    font-size: 12px;
    line-height: 1.5;
}

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

/* ーーーーーーーーーー鍼灸施術　ここからーーーーーーーーーーー */

/* ーーー鍼灸施術　英語サブタイトルーーー */
.acupuncture .subcache {
    font-size: 10px;
    font-family: "Cinzel", serif;
    margin-top: 10px;
    color: #9ab4d7;
}

/* ーーー鍼灸施術　セパレートラインーーー */
.acupuncture .separator_line {
    border: 0.5px solid #9ab4d7;
    width: 90%;
    margin: 10px auto;
}

/* ーーー鍼灸施術　ハッシュタグテキスト調整ーーー */
.acupuncture .text {
    display: block;
    width: 129px;
    margin: 0 auto;
    font-size: 12px;
    line-height: 1.5;
}

/* ーーーーーーーーーーー鍼灸施術　ここまでーーーーーーーーーーー */

/* ーーーーーーーーーーボディケア　ここからーーーーーーーーーーー */

/* ーーーボディケア　英語サブタイトルーーー */
.bodycare .subcache {
    font-size: 10px;
    font-family: "Cinzel", serif;
    margin-top: 10px;
    color: #bcd7a6;
}

/* ーーーボディケア　セパレートラインーーー */
.bodycare .separator_line {
    border: 0.5px solid #bcd7a6;
    width: 90%;
    margin: 10px auto;
}

/* ーーーボディケア　ハッシュタグテキスト調整ーーー */
.bodycare .text {
    display: block;
    width: 142px;
    margin: 0 auto;
    font-size: 12px;
    line-height: 1.5;
}

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

/* ーーーーーーーーーー交通事故治療　ここからーーーーーーーーーーー */

/* ーーー交通事故治療　英語サブタイトルーーー */
.accident .subcache {
    font-size: 10px;
    font-family: "Cinzel", serif;
    margin-top: 10px;
    color: #bba6d7;
}

/* ーーー交通事故治療　セパレートラインーーー */
.accident .separator_line {
    border: 0.5px solid #bba6d7;
    width: 90%;
    margin: 10px auto;
}

/* ーーー交通事故治療　ハッシュタグテキスト調整ーーー */
.accident .text {
    display: block;
    width: 160px;
    margin: 0 auto;
    font-size: 12px;
    line-height: 1.5;
}

/* ---tap　マージン--- */
.accident .tap {
    margin-top: -14.0px;
}

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

/* ＝＝＝＝＝＝＝＝ここまで各カラー＝＝＝＝＝＝＝＝ */



#sec03 .wave02 {
    position: absolute;
    bottom: -57px;
    left: 0;
    display: block;
    width: 100%;
    z-index: 1;
}


/* お客様の声 */

#sec04 {
    background-color: #f3f3f3;
    background-image: url(../images/a-background02.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}

#sec04 .review-cards {
    display: flex;
    flex-direction: row;
}

#sec04 .review-cards img {
    display: block;
    width: 300px;
}

/*ーーー スライダー(お客様の声・ギャラリー） ーーー*/
.sliderArea {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 25px;
}

@media screen and (min-width: 400px) {
.sliderArea {
    padding: 0 54px;
}
}

.sliderArea.w300 {
    max-width: 300px;
}

.slick-slide {
    margin: 0 5px;
}

.slider img {
    display: block;
    width: 300px;
    height: auto;
}

.slick-prev,
.slick-next {
    z-index: 1;
}

.slick-prev:before,
.slick-next:before {
    color: #000;
}

.slick-slide {
    transition: all ease-in-out .3s;
    opacity: .2;
}

.slick-active {
    opacity: 1;
}

.slick-current {
    opacity: 1;
}

.thumb {
    margin: 20px 0 0;
}

.thumb .slick-slide {
    cursor: pointer;
}

.thumb .slick-slide:hover {
    opacity: .7;
}

/*ーーー スライダー (お客様の声・ギャラリー）ーーー*/




/* ギャラリー */
#sec05 {
    background-color: #f3f3f3;
}

#sec05 .gallery-cards {
    display: flex;
    flex-direction: row;
}

#sec05 .gallery-cards img {
    display: block;
    width: 300px;
}


#sec04 .wave {
    position: absolute;
    bottom: -142px;
    left: 0;
    display: block;
    width: 100%;
    height: 200px;
}


/* よくある質問 */
#sec06 {
    background-color: #f3f3f3;
    position: relative;
}

#sec06::before {
    position: absolute;
    content: "";
    background-image: url(../images/a-qa01.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 224px;
    height: 45px;
    top: 0;
    right: 30px;
}

#sec06::after {
    position: absolute;
    content: "";
    background-image: url(../images/a-qa02.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 224px;
    height: 45px;
    bottom: 0;
    left: 30px;
}


/* アコーディオン */
#accordion {
    width: 100%;
}

#accordion ul {
    width: 100%;
    list-style: none;
    margin: 45px auto 0 auto;
}

#accordion ul li {
    margin-bottom: 30px;
    padding: 25px;
    border-radius: 10px;
    background-color: #f2f2da;
    border: .5px solid #433c0f;
    cursor: pointer;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
}

.accordion_q {
    position: relative;
    padding-left: 25px;
}

.accordion_q::before {
    content: "Q";
    position: absolute;
    left: 5px;
}

.accordion_q:after {
    content: "";
    position: absolute;
    right: -7px;
    top: 0;
    bottom: 0;
    margin: auto;
    transition: all 0.2s ease-in-out;
    display: block;
    width: 8px;
    height: 8px;
    border-top: solid 2px #333;
    border-right: solid 2px #333;
    transform: rotate(135deg);
}

.accordion_q.arrow:after {
    transform: rotate(-45deg);
    top: 45%;
}

.accordion_a {
    display: none;
    margin-top: 35px;
    padding: 35px;
    background-color: #f0f0f0;
}

@media (max-width: 400px) {
    #accordion {
        padding: 0;
    }

    #accordion h2 {
        font-size: 24px;
    }

    #accordion ul {
        width: 90%;
        margin: 35px auto 0 auto;
    }

    #accordion ul li {
        margin-bottom: 20px;
        padding: 25px;
        font-size: 16px;
        line-height: 24px;
    }

    .accordion_a {
        margin-top: 25px;
        padding: 25px;
    }
}

@media (max-width: 400px) {
    #accordion ul li {
        padding: 22px;
        font-size: 12px;
    }
}


/* 院長メッセージ */
#sec07 {
    background-color: #f3f3f3;
    position: relative;
}

#sec07 .comment {
    position: absolute;
    writing-mode: vertical-rl;
    top: 63px;
    right: 36px;
    line-height: 2;
    letter-spacing: .15rem;
}

#sec07 img {
    display: block;
    width: 250px;
    margin-top: 100px;
}

/* LINE促し */
#sec08 {
    background-color: #f3f3f3;
}

#sec08 img {
    display: block;
    width: 360px;
    margin: 0 auto;
}

/* フッター */
.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;
        /* 英文大文字表記 */
    text-transform: uppercase
}

/* トップボタン */
.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;
}