@charset "UTF-8";
/* CSS Document */

/*---------- SPが最初　----------*/


/*---------- 共通　----------*/
.main {
  background-color: #f6f8f9;
}

@media (min-width: 1040px) {
  .main {
    padding-bottom: 120px;
  }
}

.section__common-title {
  margin-bottom: 40px;
}

.none {
  display: none;
}

/*---------- /共通終わり　----------
-----------------------------------*/

/*---------- ハンバーガーメニュー始まり　----------*/
/*min-widthではなくmax-widthにすることで
画面が小さい時のみこのスタイルが効く*/
@media (max-width: 480px) {
  /*---------- ハンバーガーメニュー開くボタン始まり　----------*/
    #header__nav-drawer {
      padding: 10px 24px 0 0;
      text-align: right;
      position: relative;
    }

    #header__nav-open {
      width: 25px;
      height: 22px;
      display: inline-block;
      vertical-align: middle;
    }

    #header__nav-open span,
    #header__nav-open span:before,
    #header__nav-open span:after{
      position: absolute;
      height: 3px;
      width: 25px;
      background-color: #777;
      display: block;
      content: "";
    }

    #header__nav-open span:before {
      bottom: -8px;
    }

    #header__nav-open span:after {
      bottom: -16px;
    }
    /*---------- /ハンバーガーメニュー開くボタン終わり　----------*/

    /*---------- ハンバーガーメニュー閉じるボタン始まり　----------*/
    #header__nav-close {
      z-index: 999;
      /* display: block; */
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: #000;
      opacity: 0.5;
    }
    /*---------- /ハンバーガーメニュー閉じるボタン終わり　----------*/

    /*---------- ハンバーガーメニューナビゲーションの中身始まり　----------*/
    #nav-content {
      display: block;
      position: fixed;
      top: 0;
      left: 0;
      z-index: 9999;
      width: 70%;
      background-color: #fff;
      height: 100%;
      text-align: left;
      padding: 15px 0 0 24px;

      /*メニューを消す*/
      transform: translateX(-105%);

      /*メニューゆっくり表れるようにする*/
      transition: 0.3s ease-in-out;

      /*シャドウ*/
      box-shadow: 5px 0 25px rgba(0, 0, 0, 0.25);
    }
    
    .header__nav {
      
    }

    .header__nav-drawer-title {
      display: block;

      font-size: 1.2rem;
      font-weight: 600;
      color: #fa6980;
      margin-bottom: 46px;
    }

    .header__nav-link {
      margin-bottom: 36px;

    }

    .header__nav-link a {
      text-decoration: none;
      font-size: 1.6rem;
      font-weight: 600;
      color: #333;
    }

    .header__nav-drawer-link-top {
      display: block;
    }

    /*タップされたら表示される*/
    #header__nav-input:checked ~ #header__nav-close {
      display: block;
    }

    #header__nav-input:checked ~ #nav-content {
      transform: translateX(0%);
    }

    /*---------- ハンバーガーメニューナビゲーションの中身終わり　----------*/
  }


/*---------- /ハンバーガーメニュー終わり　----------
-----------------------------------*/


/*---------- SPヘッダー始まり　----------*/

.header {
  height: 44px;
  background-color: #fff;
  position: relative;
}

.header__inner {
  
}

.header__title {
  font-size: 1.3rem;
  color: #fa6980;
  position: absolute;
  left: 24px;
  top: 10px;
}

.header__nav {
  display: none;
}

/*---------- /SPヘッダー終わり　----------
-----------------------------------*/

/*---------- PCヘッダー始まり　----------*/
/*---------- メディアクエリ　----------*/
@media (min-width: 480px) {
  .header {
    max-width: 1040px;
    margin: 0 auto;
    min-height: 50px;
    padding: 16px;
    box-sizing: border-box;
  }
  
  .header__title {
    font-size: 2rem;
    top: 14px;
  }
  
  .header__nav {
    display: block;
    text-align: right;
  }
  
  .header__nav-link {
    display: inline-block;
    margin-left: 40px;
  }
  
  .header__nav-link a {
    text-decoration: none;
    font-size: 2rem;
    font-weight: 600;
  }
}

/*---------- /PCヘッダー終わり　--------------------------------
----------------------------------------------------------------------------------*/

/*---------- SPトップ始まり　----------*/

.section-top {
  margin-bottom: 60px;
}

.section-top__img-area {
  background-image: url("../imgs/top/top_image.jpg");
  height: 388px;
  background-position: center;
  background-size: auto 100%;
  background-repeat: no-repeat;
  color: #fff;
  font-weight: 600px;
  margin-bottom: 40px;
  position: relative;
}

.section-top__img-massage {
  font-size: 1.6rem;
  position: absolute;
  width: 100%;
  top: 15px;
}

.section-top__img-sav-massage {
  position: absolute;
  width: 100%;
  bottom: 10px;
}

.section-top__lead {
  margin: 0 24px;
}

.section-top__lead p {
  
}

/*---------- /SPトップ終わり　----------*/

/*---------- PCトップ始まり　----------*/
/*---------- メディアクエリ　----------*/
@media (min-width: 480px) {
  .section-top__img-area {
    height: 600px;
    margin-bottom: 80px;
  }

  .section-top__img-massage {
    font-size: 3.2rem;
    /*staticをメモすること
    絶対座標を解除*/
    position: static;
    max-width: 1040px;
    /*なぜmarginを指定して真ん中に寄せたのにtext-alignで左に指定するのか？*/
    margin: 0 auto;
    text-align: left;
    padding: 60px 0 0 24px;
  }

  .section-top__img-sav-massage {
    font-size: 2.0rem;
    /*staticをメモすること
    絶対座標を解除*/
    position: static;
    max-width: 1040px;
    /*なぜmarginを指定して真ん中に寄せたのにtext-alignで左に指定するのか？*/
    margin: 0 auto;
    text-align: left;
    padding: 25px 0 0 24px;
  }

  .section-top__lead {
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 4.0rem;
  }
}


/*---------- /PCトップ終わり　--------------------------------
----------------------------------------------------------------------------------*/

/*---------- SPメニュー始まり　----------*/

.section-menu {
  margin-bottom: 80px;
}

.section-menu-items {
  margin: 0 24px;
  list-style: none;
}

.section-menu-item {
  /*max-widthは最大の幅が327px、
  小さくなったら自動で調整してね*/
  max-width: 327px;
  margin: 0 auto;
  background-color: #fff;
  margin-bottom: 40px;
  border-radius: 6px;
  text-align: left;
}

.section-menu__item-picture {
  width: 100%;
  height: 186px;
  object-fit: cover;
  object-position: 0 0;
  border-radius: 6px 6px 0 0;
}

.section-menu__item-title {
  padding: 14px 20px;
}

.section-menu__item-description {
  padding: 0 20px 20px 20px;
}

.section-menu__item-description span {
  font-size:  1.2rem;
}


/*---------- /SPメニュー終わり　----------
-------------------------------------*/

/*---------- PCメニュー始まり　----------*/
/*---------- メディアクエリ　----------*/

@media (min-width: 1040px) {
  .section-menu {
    margin-bottom: 20px;
  }

  .section-menu-items {
    max-width: 1040px;
    padding: 0;
    margin: 0 auto;
  }

  .section-menu-item {
    display: inline-block;
    width: 320px;
    margin-right: 40px;
  }

  .section-menu-item:last-child {
    margin-right: 0px;
  }
}
/*---------- /PCメニュー終わり　--------------------------------
----------------------------------------------------------------------------------*/

/*---------- SPアクセス始まり　----------*/

.section-access {
  padding-top: 40px;
  background-color: #fff;
  margin-bottom: 60px;
}

.section__address {
  padding-bottom: 40px;
  font-style: normal;
}

.section-access__break:after {
  content: "\A";
  white-space: pre;
}

.section-access__map {
  height: 330px;
}

.section-access__map iframe {
  width: 100%;
  height: 100%;
  border: solid 1px #333;
}

/*---------- /SPアクセス終わり　----------
------------------------------------*/

/*---------- PCアクセス始まり　----------*/
/*---------- メディアクエリ　----------*/
@media (min-width: 1040px) {
  .section-access {
    padding:60px 36px;
    /*これ以上広がらないでね*/
    max-width: 1040px;
    margin: 0 auto 60px;
    /*全体でも指定してるけど,
    一応box-sizingをここでも指定する*/
    box-sizing: border-box;
  }

  .section-news-title {
    padding-bottom: 40px;
    border-bottom: solid 1px #333;
    margin-bottom: 30px;
  }

  .section-access__break:after {
    content: "";
  }

  .section__address {
    font-size: 1.8rem;
    line-height: 2.7rem;
  }

  .section-access__map {
    max-width: 840px;
    margin: 0 auto;
    height: 340px;
  }

}



/*---------- /PCアクセス終わり　--------------------------------
----------------------------------------------------------------------------------*/


/*---------- SPニュース始まり　----------*/

.section-news {
  background-color: #fff;
  padding: 40px 24px 0;
}

.section-news-title {
  border-bottom: solid 1px #333;
  padding-bottom: 40px;
}

.section-news-pages {
  list-style-type: none;
}

.section-news-page {
  margin-bottom: 40px;
  text-align: left;
}

.section-news-day {
  font-weight: 600;
}

.section-news-day::after {
  content: ": "
}

.section-news-page-title {
  display: inline;
}

/*---------- /SPニュース終わり　----------
------------------------------------*/


/*---------- PCニュース始まり　----------*/
/*---------- メディアクエリ　----------*/

@media (min-width: 1040px) {
  .section-news {
    padding: 60px 36px 20px;
    max-width: 1040px;
    margin: 0 auto;
    box-sizing: border-box;
  }

  .section-news-pages {
    max-width: 840px;
    margin: 0 auto;
  }
}

/*---------- /PCニュース終わり　--------------------------------
-------------------------------------------------------------*/


/*---------- SPフッター始まり　------------------------------------------------------------------------------------*/

.footer {
  min-height: 228px;
  background-color: #888;
  padding-top: 46px;
  padding-bottom: 20px;
  font-weight: 600;
}

.footer__site-map {
  margin-bottom: 30px;
}

.footer__site-map-title {
  display: none;
}

.footer__site-map-list {
  margin: 0 10px;
  display: inline-block;
}

.footer__site-map-list a {
  text-decoration: none;
  color: #cad0d2;
}

.footer__site-map-list a:visited {
  color: #cad0d2;
}

.footer__sns-links {
  margin-bottom: 80px;
}

.footer__sns-link {
  display: inline-block;
  width: 20px;
  margin: 0 10px;
}

.footer__sns-link img {
  width: 100%;
}

.footer small {
  color: #fff;
}

/*---------- /SPフッター終わり　----------
-------------------------------------*/


/*---------- PCフッター始まり　----------*/
/*---------- メディアクエリ　----------*/
@media (min-width: 1040px) {
  .footer {
    margin: 0;
    padding: 0;
  }

  .footer__container {
    max-width: 1040px;
    margin: 0 auto;
    padding-top: 40px;
    text-align: left;
  }

  .footer__site-map {
    float: left;
  }

  .footer__site-map-title {
    display: inline-block;
    width: 120px;
    color: #fff;
    vertical-align: top;
  }

  .footer__site-map-lists {
    display: inline-block;
    margin-left: 10px;
  }

  .footer__site-map-list {
    margin: 0;
    display: block;
  }

  .footer__sns-links {
    float: right;
  }

  .footer__sns-link {
    
  }

  .footer small {
    clear: both;
    display: block;
    text-align: center;
  }



}


/*---------- /PCフッター終わり　--------------------------------
----------------------------------------------------------------------------------*/




