@charset "UTF-8";

html {
    font-family: 'Noto Serif JP', serif;
}

header {
    position: fixed;
    top: 0;
    max-width: 100vw;
    width: 100%;
    height: 100px;
    background-color: #221777;
    z-index: 9999;
}

.header_logo {
    width: 250px;
    height: auto;
    padding-top: 20px;
    padding-left: 30px;
}

.header_logo img {
    width: 100%;
}

/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.openbtn {
    /*ボタン内側の基点となるためrelativeを指定。
    追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
    position: fixed;
    top: 20px;
    right: 20px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    z-index: 9999;
}

/*ボタン内側*/
.openbtn span {
    display: inline-block;
    transition: all .4s;
    /*アニメーションの設定*/
    position: absolute;
    left: 14px;
    height: 2px;
    border-radius: 5px;
    background: #fff;
    width: 45%;
}


.openbtn span:nth-of-type(1) {
    top: 13px;
}

.openbtn span:nth-of-type(2) {
    top: 19px;
}

.openbtn span:nth-of-type(3) {
    top: 25px;
}

.openbtn span:nth-of-type(3)::after {
    content: "Menu";
    /*3つ目の要素のafterにMenu表示を指定*/
    position: absolute;
    top: 5px;
    left: -4px;
    color: #fff;
    font-size: 0.6rem;
    text-transform: uppercase;
}

/*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/

.openbtn.active span:nth-of-type(1) {
    top: 10px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
    background-color: #333;
}

.openbtn.active span:nth-of-type(2) {
    opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
    top: 22px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
    background-color: #333;
}

.openbtn.active span:nth-of-type(3)::after {
    content: "Close";
    /*3つ目の要素のafterにClose表示を指定*/
    transform: translateY(0) rotate(-45deg);
    top: 8px;
    left: 3px;
    color: #333;
}

#g-nav {
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
    top: 0;
    right: -120%;
    width: 50%;
    height: 100vh;
    /*ナビの高さ*/
    background: rgba(255, 255, 255, 0.9);
    /*動き*/
    transition: all 0.6s;
}

.g-nav_image {
    width: 200px;
    margin: 0 auto;
    margin-top: 70px;
    filter: brightness(60%);
}

.g-nav_image img {
    width: 100%;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
    right: 0;
}

/*ナビゲーション*/
#g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 100%;
}

/*リストのレイアウト設定*/

#g-nav li {
    list-style: none;
    text-align: center;
    border-bottom: 1px solid #333;
    display: inline-block;
    width: 100%;
}

#g-nav li a {
    color: #333;
    text-decoration: none;
    display: inline-block;
    padding: 20px 0;
    letter-spacing: 0.2em;
    font-weight: bold;

}

.gnav_sns {
    position: absolute;
    display: flex;
    justify-content: center;
    gap: 40px;
    bottom: 8%;
    left: 50%;
    transform: translate(-50%, -8%);
}

header li:not(:last-child):after {
    content: none;

}

.main_image_Box {
    width: 100%;
    height: 70vw;
    overflow: hidden;
    position: relative;
  }
  
  /* imgのみ */
  .item1 {
    opacity: 0;
    width: 100%;
    object-fit: contain;
    position: absolute;
    left: 0;
    top: 100px;
    -webkit-animation: anime 21s 0s infinite;
    animation: anime 21s 0s infinite;
    padding-bottom: 100px;
    background-color: #221777;
  }
  
  .item1:nth-of-type(2) {
    -webkit-animation-delay: 7s;
    animation-delay: 7s;
  }
  
  .item1:nth-of-type(3) {
    -webkit-animation-delay: 14s;
    animation-delay: 14s;
  }
  
  /* ふわっとアニメーション */
  @keyframes anime {
    0% {
      opacity: 0;
    }
    30% {
      opacity: 1;
    }
    35% {
      opacity: 1;
    }
    50% {
      opacity: 0;
      z-index: 9;
    }
    100% {
      opacity: 0;
    }
  }
  
  @-webkit-keyframes anime {
    0% {
      opacity: 0;
    }
    30% {
      opacity: 1;
    }
    35% {
      opacity: 1;
    }
    50% {
      opacity: 0;
      z-index: 9;
    }
    100% {
      opacity: 0;
    }
  }


.ABOUT {
    background-color: #221777;
}

h2 {
    font-family: 'Cambo', serif;
    font-size: 36px;
    padding-top: 50px;
    padding-bottom: 100px;
    text-align: center;
    color: #ffd700;
}

.NEWS h1 {
    font-family: 'Cambo', serif;
    font-size: 36px;
    padding-top: 50px;
    color: #221777;
    padding-bottom: 50px;
    text-align: center;
}

.NEWS p {
    color: #333;
    text-align: center;
    padding: 10px;
    width: 150px;
}

.NEWS p:first-child {
    border: 1px solid #177847;
    background-color: #177847;
    border-radius: 10px;
    color: #fff;
    transition: 0.5s;
}

.NEWS p:nth-child(2) {
    border: 1px solid #177847;
    background-color: #177847;
    border-radius: 10px;
    color: #fff;
    transition: 0.5s;
}

.NEWS p:last-child {
    border: 1px solid #177847;
    background-color: #177847;
    border-radius: 10px;
    color: #fff;
    transition: 0.5s;
}

.NEWS_box a {
    text-decoration: none;

}

.NEWS_box p:hover {
    cursor: pointer;
    background-color: #fff;
    color: #177847;
}

.NEWS_box {
    margin-bottom: 70px;
    display: flex;
    justify-content: center;
    gap: 100px;
}

.ABOUT_title {
    color: #ffd700;
    text-align: center;
    padding-bottom: 80px;
}

.ABOUT_title p {
    padding-bottom: 30px;
}

.ABOUT_title p:nth-child(2) {
    font-size: 28px;
}

.ABOUT_content {
    display: flex;
    gap: 50px;
    margin-bottom: 50px;
}

.ABOUT_content p {
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 60px;
    color: #fff;
    width: 50%;
    line-height: 1.8em;
    font-size: 18px;
}

.ABOUT_content_image {
    width: 50%;
}

.ABOUT_content img {
    width: 100%;

}

.ABOUT_content2 {
    display: flex;
    flex-direction: row-reverse;
    gap: 50px;
    margin-bottom: 50px;
}

.ABOUT_content2 p {
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 60px;
    color: #fff;
    width: 50%;
    line-height: 1.8em;
    font-size: 18px;
}

.ABOUT_content2_image {
    width: 50%;
}

.ABOUT_content2 img {
    width: 100%;

}

.ABOUT_content_last {
    width: 700px;
    font-size: 24px;
    color: #ffd700;
    margin: 0 auto;
    text-align: center;
    line-height: 2em;
    padding: 70px 0 100px;
}

.do_it {
    margin-bottom: 200px;
}

.do_it h3 {
    font-size: 40px;
    padding-top: 100px;
    padding-bottom: 100px;
    text-align: center;
    color: #221777;
}

.bodycare {
    width: 520px;
    border: 1px solid #221777;
    border-radius: 20px;
}

.bodycare h4 {
    font-size: 36px;
    text-align: center;
    padding-top: 58px;
    padding-bottom: 68px;
}

.bodycare_image {
    width: 200px;
    height: auto;
    margin: 0 auto;
}

.bodycare_image img {
    width: 100%;
}

.bodycare_text {
    margin: 40px 50px 20px;
}

.bodycare_text p {
    line-height: 1.8em;
    padding-bottom: 20px;
    color: #221777;
}

.bodycare_text span {
    font-weight: bold;
}

.bodycare_text span::after {
    content: "・・・";
}

.personaltraining {
    width: 520px;
    border: 1px solid #221777;
    border-radius: 20px;
}

.personaltraining h4 {
    font-size: 36px;
    text-align: center;
    padding-top: 40px;
    padding-bottom: 50px;
}

.personaltraining_image {
    width: 168px;
    height: 125px;
    margin: 0 auto;
}

.personaltraining_image img {
    height: 125px;
}

.personaltraining_text {
    margin: 40px 50px 20px;
}

.personaltraining_text p {
    line-height: 1.8em;
    padding-bottom: 20px;
    color: #221777;
}

.personaltraining_text span {
    font-weight: bold;
}

.personaltraining_text span::after {
    content: "・・・";
}

.do_it_content {
    display: flex;
    gap: 60px;
    justify-content: center;
    margin:0 10px 150px;
}

/*==================================================
スライダーのためのcss
===================================*/
.slider {
    /*横幅94%で左右に余白を持たせて中央寄せ*/
    width: 90%;
    margin: 0 auto 150px;
}

.slider_image {
    width: 350px;
    height: 255px;
}

.slider_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.slider .slick-slide {
    transform: scale(0.7);
    /*左右の画像のサイズを80%に*/
    transition: all .5s;
    /*拡大や透過のアニメーションを0.5秒で行う*/
    opacity: 0.5;
    /*透過50%*/
}

.slider .slick-slide.slick-center {
    transform: scale(1);
    /*中央の画像のサイズだけ等倍に*/
    opacity: 1;
    /*透過なし*/
}


/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev,
.slick-next {
    position: absolute;
    /*絶対配置にする*/
    top: 42%;
    cursor: pointer;
    /*マウスカーソルを指マークに*/
    outline: none;
    /*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #666;
    /*矢印の色*/
    border-right: 2px solid #666;
    /*矢印の色*/
    height: 15px;
    width: 15px;
}

.slick-prev {
    /*戻る矢印の位置と形状*/
    left: -1.5%;
    transform: rotate(-135deg);
}

.slick-next {
    /*次へ矢印の位置と形状*/
    right: -1.5%;
    transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
    text-align: center;
    margin: 20px 0 0 0;
}

.slick-dots li {
    display: inline-block;
    margin: 0 5px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width: 16px;
    /*ドットボタンのサイズ*/
    height: 16px;
    /*ドットボタンのサイズ*/
    display: block;
    border-radius: 50%;
    background: #ccc;
    /*ドットボタンの色*/
}

.slick-dots .slick-active button {
    background: #333;
    /*ドットボタンの現在地表示の色*/
}


.MENU_short {
    margin-bottom: 60px;
}

.MENU_short h3 {
    font-size: 24px;
    color: #221777;
    border-bottom: 2px solid #221777;
    padding-bottom: 2px;
    font-weight: bold;
}

.MENU_short_title {
    display: flex;
    align-items: center;
    margin-left: 90px;
    margin-bottom: 50px;
}

.MENU_short_title p {
    color: #221777;
}

.MENU_short_title p::before {
    content: "・・・";
    color: #221777;
}

.MENU_short dl {
    display: flex;
    margin-bottom: 20px;
    font-size: 20px;
    color: #221777;
    justify-content: center;
}

.MENU_short dt {
    margin-right: 90px;
}

.MENU_long {
    margin-bottom: 60px;
}

.MENU_long h3 {
    font-size: 24px;
    color: #221777;
    border-bottom: 2px solid #221777;
    padding-bottom: 2px;
}

.MENU_long_title {
    display: flex;
    align-items: center;
    margin-left: 90px;
    margin-bottom: 50px;
}

.MENU_long_title p {
    color: #221777;
}

.MENU_long_title p::before {
    content: "・・・";
    color: #221777;
}

.MENU_long dl {
    display: flex;
    margin-bottom: 20px;
    font-size: 20px;
    color: #221777;
    justify-content: center;
}

.MENU_long dt {
    margin-right: 90px;
}

.MENU_personal {
    margin-bottom: 60px;
}

.MENU_personal h3 {
    font-size: 24px;
    color: #221777;
    border-bottom: 2px solid #221777;
    padding-bottom: 2px;
}

.MENU_personal_title {
    display: flex;
    align-items: center;
    margin-left: 90px;
    margin-bottom: 50px;
}

.MENU_personal_title p {
    color: #221777;
}

.MENU_personal_title p::before {
    content: "・・・";
    color: #221777;
}

.MENU_personal dl {
    display: flex;
    margin-bottom: 20px;
    font-size: 20px;
    color: #221777;
    justify-content: center;
}

.MENU_personal dt {
    margin-right: 90px;
}

.MENU_sup p {
    color: #333;
    text-align: center;
    padding-bottom: 15px;
}

.MENU_sup p:last-child {
    margin-bottom: 15px;
}

.MENU_box h2 {
    padding-top: 50px;
    padding-bottom: 90px;
    color: #221777;
}

.MENU_box {
    border: 3px solid #221777;
    border-radius: 20px;
    width: 700px;
    margin: 0 auto;
    position: relative;
}

.MENU {
    margin-bottom: 200px;
}

.STAFF {
    background-color: #221777;
    margin-bottom: 200px;
}

.STAFF_box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding-bottom: 50px;
}

.STAFF_image {
    width: 350px;
    height: auto;
}

.STAFF_image img {
    width: 100%;
}

.STAFF_box_text {
    width: 50%;
}

.STAFF_box_text dl {
    color: #ffd700;
    margin-right: 5px;
}

.STAFF_box_text dt {
    font-size: 30px;
    border-bottom: 2px solid #ffd700;
    display: inline-block;
    margin-bottom: 60px;
}

.STAFF_box_text dd {
    line-height: 1.8em;
}

.STAFF_box_text dl :nth-child(2) {
    padding-bottom: 16px;
}

.ACCESS {
    margin-bottom: 150px;
}

.ACCESS h2 {
    color: #221777;
    border-bottom: 2px solid #221777;
    padding-bottom: 10px;
    margin: 0 120px;
    margin-bottom: 60px;
}

.ACCESS table {
    margin: 0 auto 40px;

}

.ACCESS caption {
    margin-bottom: 50px;
}

.ACCESS caption p {
    display: inline-block;
    font-size: 24px;
    color: #fff;
    background-color: #221777;
    padding: 10px
}

.ACCESS tr {
    height: 40px;
    font-size: 18px;
    text-align: center;
    border-bottom: 1px solid #221777;
}

.ACCESS th {
    height: 40px;
    padding: 0 75px;
    vertical-align: middle;
}

.ACCESS td {
    height: 40px;
    padding: 0 75px;
    vertical-align: middle;
}

.pay_sup {
    width: 540px;
    margin: 0 auto 90px;
    line-height: 1.8em;
}

.pay_sup ul {
    list-style: none;
    font-size: 14px;
}

.pay_sup li:last-child {
    color: #cc3d3d;
}

.pay_sup li:last-child::before {
    content: "※";
}

.address {
    margin-bottom: 50px;
}

.address p {
    width: 500px;
    margin: 0 auto;
    line-height: 1.8em;
}

.address p:last-child {
    color: #5c5c5c;
    font-size: 14px;
    border-bottom: 1px solid #5c5c5c;
}

.ACCESS_map {
    width: 600px;
    height: auto;
    margin: 0 auto 50px;
}

.ACCESS_map img {
    width: 100%;
}

.google_map {
    width: 150px;
    background-color: #221777;
    text-align: center;
    margin: 0 auto;
    padding: 10px 0;
    border-radius: 10px;
    color: #fff;
}

.ACCESS a {
    text-decoration: none;
    width: 150px;
}

.ACCESS a:hover {
    opacity: 0.6;
    cursor: pointer;
}


.RESERVE {
    margin-bottom: 200px;
}

.RESERVE h2 {
    color: #221777;
    border-bottom: 2px solid #221777;
    padding-bottom: 10px;
    margin: 0 120px;
    margin-bottom: 60px;
}

.RESERVE p {
    line-height: 1.8em;
    text-align: center;
}

.RESERVE_text {
    margin-bottom: 50px;
}

.RESERVE_sns {
    display: flex;
    justify-content: center;
    gap: 80px;
}





footer {
    background-color: #221777;
    width: 100%;
}

.footer_logo {
    width: 300px;
    height: auto;
    padding: 70px 0 30px 70px;
}

.footer_logo img {
    width: 100%;
}

.footer_address {
    padding-left: 70px;
    padding-bottom: 70px;
}

.footer_address p {
    color: #fff;
    line-height: 1.8em;
}

.footer_address p:last-child {
    color: #ffd700;
    font-size: small;
    padding-top: 5px;
}

.footer_address p:last-child::before {
    content: "※";
}

.copyright {
    font-size: small;
    width: 100%;
    color: #fff;
    text-align: center;
    padding-bottom: 20px;
}

.main_box {
    padding-top: 100px;
}

.main_box section {
    padding-top: 100px;
    margin-top: -100px;
}

.fadeUpTrigger{
    opacity: 0;
    }

    .fadeUp {
        animation-name: fadeUpAnime;
        animation-duration:2s;
        animation-fill-mode:forwards;
        opacity: 0;
    }
    @keyframes fadeUpAnime{
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
    }

    .fadeLeftTrigger{
        opacity: 0;
        }
    
        .fadeLeft{
            animation-name:fadeLeftAnime;
            animation-duration:2s;
            animation-fill-mode:forwards;
            opacity:0;
            }
            
            @keyframes fadeLeftAnime{
              from {
                opacity: 0;
              transform: translateX(-100px);
              }
            
              to {
                opacity: 1;
              transform: translateX(0);
              }
            }

@media screen and (max-width: 767px) {

    .main_image_Box {
        height: 100vw;
    }

    .header_logo {
        width: 200px;
        padding-top: 25px;
        padding-left: 20px;
    }
    h2 {
        font: 24px;
        padding-bottom: 80px;
    }

    #g-nav {
        width: 100%; 
    }

    .ABOUT p {
        padding: 20px;
    }

    .NEWS_box {
        display: block;
    }

    .NEWS p {
        margin: 0 auto 30px;
    }

    .ABOUT_title p:last-child {
        line-height: 1.8em;
        padding: 20px 50px;
    }

    .ABOUT_content {
        display: block;
    }

    .ABOUT_content p {
        padding: 20px 20px 50px;
        width: 100%;
        box-sizing: border-box;
        font-size: 16px;
    }

    .ABOUT_content_image {
        width: 90%;
        margin: 0 auto;
    }

    .ABOUT_content2 {
        display: block;
    }

    .ABOUT_content2 p {
        padding: 20px 20px 50px;
        width: 100%;
        box-sizing: border-box;
    }

    .ABOUT_content2_image {
        width: 90%;
        margin: 0 auto;
    }

    .ABOUT_content_last {
        width: 90%;
        font-size: 18px;
    }

    .MENU_box {
        width: 80%;
    }

    .do_it h3 {
        font-size: 24px;
        text-align: center;
        margin: 0 10px;
    }

    .do_it_content {
        display: block;
    }

    .do_it_content h4{
        font-size: 24px;
    }

    .bodycare {
        width: 90%;
        margin: 0 auto 50px;
    }
    .bodycare_text {
        margin: 40px 20px 20px;
    }

    .personaltraining {
        width: 90%;
        margin: 0 auto;
    }

    .personaltraining_text {
        margin: 40px 20px 20px;
    }

    .MENU_box {
        width: 80%;
    }

    .MENU_short_title {
        display: block;
        margin-left: 20px;
    }

    .MENU_short_title h3 {
        display: inline;
        padding-bottom: 0;
        font-size: 20px;
    }

    .MENU_short_title p {
        padding-top: 10px;
        font-size: 14px;
    }

    .MENU_short dl {
        margin-bottom: 15px;
        font-size: 16px;
        color: #221777;
        justify-content: center;
    }

    .MENU_short dt {
        margin-right: 50px;
    }

    .MENU_long_title {
        margin-left: 20px;
    }

    .MENU_long_title h3 {
        padding-bottom: 0;
        font-size: 20px;
        margin: 0;
    }

    .MENU_long dl {
        margin-bottom: 15px;
        font-size: 16px;
        color: #221777;
        justify-content: center;
    }

    .MENU_long dt {
        margin-right: 50px;
    }

    .MENU_personal_title {
        margin-left: 20px;
    }

    .MENU_personal_title h3 {
        padding-bottom: 0;
        font-size: 20px;
        margin: 0;
    }

    .MENU_personal dl {
        margin-bottom: 15px;
        font-size: 16px;
        color: #221777;
        justify-content: center;
    }

    .MENU_personal dt {
        margin-right: 50px;
    }

    .MENU_sup p {
        font-size: 14px;
    }


    .STAFF_box {
        display: block;
    }

    .STAFF_image {
        width: 300px;
        margin: 0 auto 50px;

    }

    .STAFF_box_text {
        margin: 0 auto;
        width: 90%;
    }

    .STAFF_box_text dt {
        font-size: 24px;
    }

    .pay_sup {
        width: 90%;
    }

    .address {
        width: 100%;
    }

    .address p {
        width: 100%;
        padding: 0 20px 20px;
        margin: 0 auto;
        box-sizing: border-box;
        font-size: 15px;
    }

    .address p:first-child {
        padding-bottom: 0px;
    }

    .address p:last-child {
        font-size: 12px;
        padding-bottom: 10px;
    }

    .ACCESS h2 {
        margin: 0;
        margin-bottom: 50px;
    }

    .ACCESS table {
        width: 90%;
    }

    .ACCESS th {
        width: 40%;
        padding: 5px;
        font-size: 16px;
    }

    .ACCESS td {
        width: 50%;
        padding: 5px;
    }

    .ACCESS_map {
        width: 90%;
        margin: 0 auto 30px;
        padding: 0;
    }

    .ACCESS_map img {
        width: 100%;
        box-sizing: border-box;
        padding: 0;
    }

    .pay_sup li:last-child {
        font-size: 12px;
    }

    .RESERVE h2 {
        margin: 0;
        margin-bottom: 50px;
    }

    .RESERVE_text {
        padding: 20px;
    }

    .RESERVE_sns {
        gap: 40px;
    }

    .RESERVE_sns_hot {
        width: 135px;
        height: 45px;
    }

    .RESERVE_sns_hot img {
        width: 135px;
        height: 45px;
    }

    .RESERVE_sns_instagram {
        width: 45px;
        height: 45px;
    }

    .RESERVE_sns_instagram img {
        width: 45px;
        height: 45px;
    }

    .RESERVE_sns_line {
        width: 45px;
        height: 45px;
    }

    .RESERVE_sns_line img {
        width: 45px;
        height: 45px;
    }



    .footer_address {
        width: 90%;
        padding: 0;
    }

    .footer_address p {
        font-size: 14px;
        padding-left: 20px;
    }

    .footer_address p:last-child {
        font-size: 12px;
    }

    .footer_logo {
        width: 200px;
        margin: 0 auto;
        padding: 30px 0;
    }

    .copyright {
        padding: 40px 0;
    }
}