@charset "UTF-8";
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
:root {
  --main-color: #1acfff;

}
@keyframes bggradient{
  0% {
      background-position: 0% 50%;
  }
  50% {
      background-position: 100% 50%;
  }
  100% {
      background-position: 0% 50%;
  }
}

body {
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans",
  "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 16px;
  color: #444;
  font-feature-settings: "palt";
  background:linear-gradient(90deg,rgb(205, 251, 255), #aff1fc,#eee4b5,#aff1fc);
  background-size: 200% 200%;
  animation: bggradient 20s ease infinite;
}
body:after {/*擬似要素をつくる*/
  position: fixed;/*固定配置*/
  top: 0; left: 0;/*左上に固定*/
  width: 100%; height: 100%;/*画面全体を覆う*/
  content: "";
  z-index: -1;/*背景にするため*/
}

#containar {
  max-width: 100vw;
  height: 100vh;
  margin: 0 auto;
  padding: 0;
}

/*全共通*/
.bgextend {
  position: relative;
  opacity: 0;
  overflow: hidden; /*はみ出た色要素を隠す*/
  animation-name: bgextendAnimeBase;
  animation-duration: 3s;
  animation-fill-mode: forwards;
}

@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
/*中の要素*/
.bgappear {
  opacity: 0;
  animation-name: bgextendAnimeSecond;
  animation-duration: 1s;
  animation-delay: 0.6s;
  animation-fill-mode: forwards;
}

@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*左から右*/
.bgLRextend::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--main-color); /*伸びる背景色の設定*/
  animation-name: bgLRextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
@keyframes bgLRextendAnime {
  0% {
    transform: scaleX(0);
    transform-origin: left;
  }
  50% {
    transform: scaleX(1);
    transform-origin: left;
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform: scaleX(0);
    transform-origin: right;
  }
}

/*--------------------------------
ヘッダー
---------------------------------*/
.header_nav_lists_sp {
  display: none;
}
header {
  position: fixed;
  max-width: 100%;
  top: 0;
  z-index: 10000;
}
.header_bg {
  background: rgba(255, 255, 255, 0.8);
  width: 100%;
  height: 80px;
}
.header_contents {
  max-width: 100%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header_contents h1 img {
  width: 50%;
  height: auto;
  margin: 0 0 0 20px;
}
.header_nav_lists {
  display: flex;
}
.header_nav_lists li {
  margin: 0 40px 0 0;
}
.nav_link {
  font-size: 18px;
}
.header_nav_lists li a {
  transition: all 0.4s;
}
.header_nav_lists li a:hover{
  color: var(--main-color);
}


/* ハンバーガー */
.responsive_btn {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin: 0 40px 0 0;
  cursor: pointer;
  position: relative;
  z-index: 10;
}
.menu_line {
  background: #555;
  border-radius: 5px;
  width: 100%;
  height: 5px;
  margin: 4px 0;
}
/* Responsive style */
@media screen and (min-width: 768px) and (max-width: 960px) {
  .responsive_btn {
    display: flex;
  }
  .header_bg {
    position: relative;
  }
  .header_nav {
    background: #fff;
    width: 70%;
    height: 100vh;
    padding: 80px 0 0 0;
    position: absolute;
    top: 0;
    right: -100%;
    transition: .5s;

  }
  .header_nav_lists {
    display: block;
    text-align: center;
    font-size: 30px;
    line-height: 2;
    padding-top: 10%;
  }
  .header_nav_lists li {
    margin: 0 0 40px;
    text-align: center;
  }
  .nav_link {
    font-size: 20px;
  }


/* js function "menuToggle" starting only */
.menu_active {
  right: 0;
}
}

@media screen and (min-width: 375px) and (max-width: 428px) {
  .responsive_btn {
    display: flex;
  }
  .header_bg {
    position: relative;
  }
  .header_nav {
    background: #fff;
    width: 100%;
    height: 100vh;
    padding: 80px 0 0 0;
    position: absolute;
    top: 0;
    right: -100%;
    transition: .5s;
  }
  .header_nav_lists {
    display: block;
    text-align: center;
  }
  .header_nav_lists li {
    margin: 0 0 40px;
    text-align: center;
  }
  .nav_link {
    font-size: 20px;
  }


/* js function "menuToggle" starting only */
.menu_active {
  right: 0;
}
}


/*--------------------------------
 メインビジュアル
---------------------------------*/
.sp {
 display: none;
}

.mv_title h4 {
  font-family: serif;
  font-size: 4.2em;
  font-weight: bold;
  letter-spacing: 0.1em;
  padding-top: 0;
  padding-left: 12%;
  margin-top: 20%;

}
.mv_title h3 {
  font-family: serif;
  font-weight: bold;
  font-size: 1.5em;
  line-height: 1.5em;
  letter-spacing: 0.1em;
  padding-left: 12%;
  margin-top: 3%;
}

.mv_img {
  position: absolute;
  top: 0;
  z-index: -1;
  opacity: 0;
  width: 100%;
  height: 100vh;
  background-image: url(images/mv-pc.png);
  background-repeat: no-repeat;
  background-size: contain;
  animation: 1s fadeInMvImg 0.2s forwards;
}

@keyframes fadeInMvImg {
  100% {
    opacity: 1;
  }
}

/*--------------------------------
 コンセプト
---------------------------------*/
#concept {
  margin-top: 25%;
  padding: 0 20px;
  text-align: center;
}

#concept img {
  width: 30%;
  padding: 40px 0;
}
.concept_text {
  font-family: serif;
  font-size: 25px;
  line-height: 1.8;
  padding-top: 20px;
}
.concept_list{
  display: flex;
  justify-content: center;
  padding-top: 5%;
}
.concept_list ul {
  list-style:none;/*デフォルトの指定を解除*/
  margin:0;/*デフォルトの指定を解除*/
  padding:0;/*デフォルトの指定を解除*/
  display:table;
  width: 1000px;/*幅を指定*/
  table-layout:fixed;/*中の要素の幅を均等に*/
  }
.concept_list li {
  display:table-cell;
  padding:40px;/*余白を指定*/
  height:280px;/*高さを指定*/
  vertical-align:middle;/*縦方向を中央揃え*/
  text-align:center;/*横方向を中央揃え*/
}
.concept_list img {
  width: 100%;
}
.concept_list li p {
padding-top: 20px;
font-size: 20px;
line-height: 1.5;
}
/*--------------------------------
 お知らせ
---------------------------------*/
#news {
  padding: 0 23%;
  text-align: center;
}
#news img {
  width: 30%;
  padding: 10% 0;
}
.news_box {
	height: 200px;/*スクロールの高さ*/
	overflow-y: scroll;
}
ul.newsList {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  border-bottom: 1px dotted #999;
  background-color: #fff;
  padding: 10px 0;
  margin: 0 auto;
  }
  ul.newsList li {
  display: block;
  margin: 10px 10px;
  }
  ul.newsList li:nth-child(-n + 3) {
  flex-basis: 130px;
  }
  ul.newsList li:nth-child(2) {
  color: #fff;
  font-size: 12px;
  padding: 5px 10px;
  text-align: center;
  background-color: var(--main-color);
  }
  ul.newsList li:nth-child(3) {
  flex-basis: auto;
  }
/*--------------------------------
 料金
---------------------------------*/
#fee {
  padding: 0 20px;
  text-align: center;
}
#fee .fee_item_body img {
  width: 25%;
  margin-top: 10%;
}
#fee .fee_list img{
  width: 100%;
  margin-top: -150px;
  text-align: center;
}
#fee .fee_list h3 {
  width: 300px;
  height: 60px;
  font-size: 20px;
  color: #fff;
  background-color:  var(--main-color);
  border-radius: 20px;
  padding: 8% 0;
}
#fee .fee_menu h4{
  font-size: 20px;
  color:  var(--main-color);
  text-align: left;
  padding-left: 5px;
}
#fee .down{
  color: #fff;
}
#fee h3 {
  color: #666;
  font-size: 20px;
  font-weight: 600;
}
#fee table {
  border-collapse: collapse;
  margin: 20px 0;
  width: 100%;
  table-layout: auto;
  color: #555;
}
.fee_menu {
  width: 70%;
  background-color: #fff;
  border-radius: 30px;
  padding: 3em;
  margin: 0 auto;
  margin-top: 3em;
}
table{
  border-collapse: collapse;
  max-width: 100%;
}
.tb01 th,
.tb01 td{
  padding: 15px;
  border-bottom: solid 1px #ccc;
  text-align:center;
  box-sizing:border-box;
}
.tb01 th {
  background: #1acfff;
  color: #fff;
}


table tr:last-child{
   border-bottom: 1px solid #1acfff;
}
table th,
table td {
  padding: 1em 10px 1em 1em;
  border-bottom: 1px dashed #1acfff;
  text-align: center;
}
tbody th {
    color: #555;
    text-align: center;
    letter-spacing: 0.1em;
}
.txt{
   text-align: left;
   vertical-align: middle;
   font-size: 0.8em;
   line-height: 1;
}
.price{
   text-align: center;
}

#fee img {
  width: 30%;
  padding: 40px 0;
}
.fee_text {
  font-size: 20px;
  line-height: 1.8;
  padding-top: 20px;
}
.fee_list{
  display: flex;
  justify-content: center;
  padding-top: 10%;
}
.fee_list ul {
  list-style:none;/*デフォルトの指定を解除*/
  margin:0;/*デフォルトの指定を解除*/
  padding:0;/*デフォルトの指定を解除*/
  display:table;
  width: 1000px;/*幅を指定*/
  table-layout:fixed;/*中の要素の幅を均等に*/
  }
.fee_list li {
  display:table-cell;
  padding:40px;/*余白を指定*/
  height:280px;/*高さを指定*/
  vertical-align:middle;/*縦方向を中央揃え*/
  text-align:center;/*横方向を中央揃え*/
}
.fee_list li p {
padding-top: 20px;
}

/*--------------------------------
 営業時間
---------------------------------*/
#time {
  text-align: center;
}

#time img {
  width: 20%;
  padding: 8% 0 5% 0;
}

.time_list .zikan{
  width: 700px;
  margin: 0 auto;
}
.biz-hour {
  border-collapse: collapse;
  margin: 0 auto;
  margin-top: 60px;
}
.biz-hour th {
  border-top: 1px solid #fff;
}

.biz-hour th, .biz-hour td {
  padding: 10px 20px;
  text-align: center;
  line-height: 2;
  border-bottom: 1px solid #fff;
  font-size: 20px;
}

.biz-hour th {
  font-weight: normal;
  font-size: 20px;
}

.biz-hour th.sat {
  color: #3db2da;
}
.biz-hour th.sun {
  color: #e66a6a;
}

#time p  {
  font-size: 20px;
  line-height: 2em;
  letter-spacing: 0.1em;
}
.tel_box p {
  width: 350px;
  background-color: #fff;
  letter-spacing: 0.1em;
  line-height: 2;
  margin: 0 auto;
}
.tel_box .tel{
  background-color: #fff;
  padding: 2%;
  font-weight: bold;
  font-size: 1.5em;
  letter-spacing: 0.1em;
  line-height: 2;
}
#time .map {
  width: 90%;
  padding-top: 10em;
  margin: 0 auto;
  }
#time .add {
  text-align: center;
  font-size: 1.3em;
  padding-top: 2em;
  }
/*--------------------------------
 Q&A
---------------------------------*/
.faq_item {
clear: left;
}

.faq_title h2 {
  font-size: 1.5em;
  padding-top: 5em;
}
/*アコーディオン全体*/
.accordion-area{
  list-style: none;
  width: 96%;
  max-width: 800px;
  margin:0 auto;
}
.accordion-area li{
  margin: 10px 0;
}
.accordion-area section {
border: 1px solid #555;
background-color: #fff;
}
/*アコーディオンタイトル*/
.title {
  position: relative;/*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  font-size: 1em;
  font-weight: normal;
  padding: 3% 3% 3% 50px;
  transition: all .5s ease;
}
/*アイコンの＋と×*/
.title::before,
.title::after{
  position: absolute;
  content:'';
  width: 15px;
  height: 2px;
  background-color: #333;
}
.title::before{
  top:48%;
  left: 15px;
  transform: rotate(0deg);
}
.title::after{
  top:48%;
  left: 15px;
  transform: rotate(90deg);
}

/*　closeというクラスがついたら形状変化　*/

.title.close::before{
transform: rotate(45deg);
}

.title.close::after{
transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.box {
  display: none;/*はじめは非表示*/
  background: #f3f3f3;
margin:0 3% 3% 3%;
  padding: 3%;
}


/*========= レイアウトのためのCSS ===============*/

h2{
  text-align: center;
  margin: 30px 0;
  font-size: 1.1em;
  font-weight: bold;
  color: #555;
}
/*--------------------------------
 ボタン
---------------------------------*/
.button_area {
  position: fixed;
  bottom: 20%;
  right: 5%;
}
.fixed_btn {
  width: 200px;
  height: 120px;
  background-color: #1acfff;
  color: #555;
  font-size: 1.3em;
  font-weight: 400;
  line-height: 1.3;
  border-radius: 30% 70% 35% 65% / 50% 50% 50% 50% ;
  animation: border-animation 3s infinite linear;
  text-align: center;
  }
  .updown {
    animation-name:updown1;   /* アニメーション名の指定 */
    animation-delay:0s;   /* アニメーションの開始時間指定 */
    animation-duration: 3s;   /* アニメーション動作時間の指定 */
    animation-timing-function: ease-in-out;  /* アニメーションの動き指定（徐々に早く）*/
    animation-iteration-count: infinite;
}

@keyframes updown1 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
/*--------------------------------
 フッター
---------------------------------*/
.footer {
  text-align: center;
  color: #000;
  width: 100%;
  height: 100px;
  padding: 8%;
}

/*-----------------------------------------------------*/
/* PC用 */
/*-----------------------------------------------------*/
@media only screen and (min-width: 960px) and (max-width:1280px){
  .nav {
    display: none;
  }
  .nav_links {
    display: block;
  }
}
/*-----------------------------------------------------*/
/* タブレット用のCSS */
/*-----------------------------------------------------*/
@media only screen and (min-width:768px) and (max-width:960px) {
  * {
    float: none;
    position: static;
  }

  img {
    max-width: 960px;
    height: auto;
  }
  #containar {
    max-width: 960px;
    height: 100vh;
    margin: 0 auto;
    padding: 0;
  }
  .nav_links {
    display: none;
  }
  .yoyaku {
    display: none;
  }
  .nav {
    display: block;
  }
/*--------------------------------
ヘッダー
---------------------------------*/
header {
  position: fixed !important;
  max-width: 960px;
  height: auto;
  top: 0;
  z-index: 10000;
}
.header_bg {
  background: rgba(255, 255, 255, 0.8);
  max-width: 960px;
  height: auto;
}

/*--------------------------------
 メインビジュアル
---------------------------------*/
.mv {
  position: relative;
  width: 100%;
  height: 110%;
}
.mv_title{
  padding-top: 30%;
  height: 100vh;
}
.mv_title h4 {
  font-size: 3.5em;
  line-height: 1.5em;
  margin-top: 40%;
  max-width: 500px;
}
.mv_title h3 {
  font-size: 2em;
  line-height: 1.5em;
  max-width: 500px;

}

.mv_img {
  position: absolute;
  top: 0;
  z-index: -1;
  opacity: 0;
  max-width: 960px;
  height: 100%;
  background-image: url(images/mv-sp.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
  animation: 1s fadeInMvImg 0.2s forwards;
}

@keyframes fadeInMvImg {
  100% {
    opacity: 1;
  }
}


@keyframes fadeInMvImg {
  100% {
    opacity: 1;
  }
}
/*--------------------------------
 コンセプト
---------------------------------*/
#concept {
  margin-top: 25%;
  padding: 0 3%;
  text-align: center;
}
.concept_title {
  font-size: 3.5em;
  font-style: normal;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: #fff;
  text-align: center;
}
.concept_subtitle {
  font-size: 2em;
  font-weight: normal;
  letter-spacing: 0.2em;
  text-align: center;
  color: #333;
  margin-top: 25px;
  margin-bottom: 25px;
}
.concept_subtitle span {
  color: #222;
  font-size: 1em;
}
#concept img {
  width: 55%;
  padding: 40px 0;
  margin: 0 auto;
}
.concept_text {
  font-size: 1.5em;
  line-height: 1.8;
  padding-top: 20px;
  margin: 0 auto;

}
.concept_list{
  display: block;
  justify-content: center;

}
.concept_list ul {
  list-style:none;/*デフォルトの指定を解除*/
  margin: 0 auto;/*デフォルトの指定を解除*/
  padding:0;/*デフォルトの指定を解除*/
  display:table;
  width: 60%;/*幅を指定*/
  table-layout:fixed;/*中の要素の幅を均等に*/
  }
.concept_list li {
  display: block;
  padding:1%x;/*余白を指定*/
  height:100%;/*高さを指定*/
  text-align:center;/*横方向を中央揃え*/
}
.concept_list li p {
  font-size: 1.8em;
  padding-top: 10%;
  line-height: 1.5;
}
/*--------------------------------
 お知らせ
---------------------------------*/
#news {
  padding: 0 3%;
  text-align: center;
}
#news img {
  width: 60%;
  padding: 10% 10%;
}
.news_box {
	height: 300px;/*スクロールの高さ*/
	overflow-y: scroll;
}
ul.newsList {
  width: 500px;
  display: flex;
  flex-flow: row wrap;
  border-bottom: 1px dotted #999;
  padding: 10px 0;
  margin: 0 auto;
  }
  ul.newsList li {
  display: block;
  margin: 10px 10px;
  }
  ul.newsList li:nth-child(-n + 3) {
  flex-basis: 130px;
  }
  ul.newsList li:nth-child(2) {
  color: #fff;
  font-size: 12px;
  padding: 5px 10px;
  text-align: center;
  background-color: var(--main-color);
  }
  ul.newsList li:nth-child(3) {
  flex-basis: auto;
  }

/*--------------------------------
 料金
---------------------------------*/
#fee {
  max-width: 100%;
  padding: 0 8%;
  text-align: center;
}

#fee .fee_cv img {
  width: 50%;
  padding-bottom: 2%;
  margin: 0 auto;
}

#fee .fee_list h3 {
  width: 180px;
  color: #fff;
  font-size: 1.1em;
  font-weight: 500;
  background-color: var(--main-color);
  border-radius: 10px;
  padding:9%;
}
#fee .fee_list .down {
  color: #fff;
}
#fee .fee_box_img img {
  display: none;
  }

.fee_list ul {
  list-style:none;/*デフォルトの指定を解除*/
  margin: 0 auto;/*デフォルトの指定を解除*/
  padding:0;/*デフォルトの指定を解除*/
  display: flex;
  max-width: 100%;/*幅を指定*/
  table-layout:fixed;/*中の要素の幅を均等に*/
  }
.fee_list li {
  padding: 0 0 0 5%;/*余白を指定*/
  height: auto;/*高さを指定*/
  text-align: center;/*横方向を中央揃え*/
}
.fee_list li p {
  line-height: 1.5;
}
.fee_menu {
  max-width: 100%;
  background-color: #fff;
  border-radius: 30px;
  padding: 1em;
  margin-top: 2em;
}
.fee_menu h4 {
  margin-top: 30px;
}
.relaxation_list .head{
  display:none;
  }
.relaxation_list table {
  min-width: 90%;
    }
.relaxation_list table td {
  display: block;
  max-width: 100%;
  border-bottom:none;
  text-align: center;

  }

table.tb01 td:first-child{
  background: #1acfff;
  color:#fff;
  font-weight:bold;
  }
table.tb01 td:before{
  display:none;
  }
.tb01 tr:last-child{
  border-bottom: none;
  }
/*--------------------------------
 営業時間
---------------------------------*/
#time {

  text-align: center;
}
#time img {
  width: 45%;
  padding: 10% 0;
  margin: 0 auto;
}
#time p{
  width: 100%;
  font-size: 0.8em;
  padding: 0.5%;
  text-align: center;
}
.time_list .zikan{
  width: 700px;
  margin: 0 auto;
}
.biz-hour {
  border-collapse: collapse;
  margin: 0 auto;
  margin-top: 60px;
}
.biz-hour th {
  border-top: 1px solid #fff;
}

.biz-hour th, .biz-hour td {
  padding: 10px 20px;
  text-align: center;
  line-height: 2;
  border-bottom: 1px solid #fff;
  font-size: 20px;
}

.biz-hour th {
  font-weight: normal;
  font-size: 20px;
}

#time p  {
  font-size: 20px;
  line-height: 2em;
  letter-spacing: 0.1em;
}
.tel_box p {
  width: 350px;
  background-color: #fff;
  letter-spacing: 0.1em;
  line-height: 2;
  margin: 0 auto;
}
.tel_box .tel{
  background-color: #fff;
  padding: 2%;
  font-weight: bold;
  font-size: 1.5em;
  letter-spacing: 0.1em;
  line-height: 2;
}
#time .map {
  width: 90%;
  padding-top: 10em;
  margin: 0 auto;
  }
#time .add {
  text-align: center;
  font-size: 1.3em;
  padding-top: 2em;
  }


.zikan{
  max-width: 600px;
}
table .biz-hour {
  display: block;
  border-collapse: collapse;
  width: 600px;
  /* overflow-x: scroll;で、
  スマホ画面幅に表が入りきらない場合は
  横スクロールしてくれます */
  overflow-x: scroll;
}

table .biz-hour th {
 font-size: 1.2em;
 border-top: 1px solid #fff;
}

.biz-hour th, .biz-hour td {
  font-size: 1.2em;
  padding: 10px 8px;
  text-align: center;
  border-bottom: 1px solid #fff;
}

.map iframe {
 width: 500px;
 margin: 0 auto;

}
.time .add {
  margin: 0 auto;
  font-size: 1em ;
}


/*--------------------------------
 Q&A
---------------------------------*/
.faq_item {
clear: left;
}
/*アコーディオン全体*/
.accordion-area{
  list-style: none;
  width: 90%;
  max-width: 800px;
  margin:0 auto;
}
.accordion-area li{
  margin: 10px 0;
}
.accordion-area section {
border: 1px solid #555;
background-color: #fff;
}
/*アコーディオンタイトル*/
.title {
  position: relative;/*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  font-size:1rem;
  font-weight: normal;
  padding: 3% 3% 3% 50px;
  transition: all .5s ease;
}
/*アイコンの＋と×*/
.title::before,
.title::after{
  position: absolute;
  content:'';
  width: 15px;
  height: 2px;
  background-color: #333;
}
.title::before{
  top:48%;
  left: 15px;
  transform: rotate(0deg);
}
.title::after{
  top:48%;
  left: 15px;
  transform: rotate(90deg);

}

/*　closeというクラスがついたら形状変化　*/

.title.close::before{
transform: rotate(45deg);
}

.title.close::after{
transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.box {
  display: none;/*はじめは非表示*/
  background: #f3f3f3;
  margin:0 3% 3% 3%;
  padding: 3%;
}
/*========= レイアウトのためのCSS ===============*/

h2{
  text-align: center;
  margin: 30px 0;
  font-size: 1.1em;
  font-weight: bold;
  color: #555;
}
/*--------------------------------
 ボタン
---------------------------------*/
.button_area {
  width: 100%;
  position: fixed;
  bottom: 30%;
  left: 60%;
}
.fixed_btn {
  width: 200px;
  height: 120px;
  background-color: #1acfff;
  color: #555;
  font-size: 1.3em;
  font-weight: 400;
  line-height: 1.3;
  border-radius: 30% 70% 35% 65% / 50% 50% 50% 50% ;
  animation: border-animation 3s infinite linear;
  text-align: center;
  }
  .updown {
    animation-name:updown1;   /* アニメーション名の指定 */
    animation-delay:0s;   /* アニメーションの開始時間指定 */
    animation-duration: 3s;   /* アニメーション動作時間の指定 */
    animation-timing-function: ease-in-out;  /* アニメーションの動き指定（徐々に早く）*/
    animation-iteration-count: infinite;
}

@keyframes updown1 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
/*--------------------------------
 フッター
---------------------------------*/
.footer {
  text-align: center;
  color: #000;
  width: 100%;
  height: 200px;
  padding: 8%;
}
}




/*-----------------------------------------------------*/
/* スマホ用のCSS */
/*-----------------------------------------------------*/
@media only screen and (min-width: 375px) and (max-width:428px){
  * {
    float: none;
    position: static;
  }
  body {
    width: 100%;
    background:linear-gradient(90deg,rgb(205, 251, 255), #aff1fc,#eee4b5,#aff1fc);
    background-size: 120% 120%;
    animation: bggradient 20s ease infinite;
  }
  img {
    max-width: 100%;
    height: auto;

  }
  #containar {
    width: 100vw;
    margin: 0 auto;
  }
  .sp {
  display: block;
  }
/*--------------------------------
ヘッダー
---------------------------------*/
header {
  position: fixed !important;
  width: 100%;
  top: 0;
  z-index: 10000;
}
.header_bg {
  background: rgba(255, 255, 255, 0.8);
  width: 100%;
  height: 70px;
}
.header_contents {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header_nav_lists_sp {
  display: flex;
}
.header_nav_lists_sp li {
  margin: 0 40px 0 0;
}
.nav_link {
  font-size: 18px;
}
.header_nav_lists_sp li a {
  transition: all 0.4s;
}
.header_nav_lists_sp li a:hover{
  color: var(--main-color);
}
/*--------------------------------
 メインビジュアル
---------------------------------*/
.mv {
  position: relative;
  width: 100%;
  height: 100vh;
}
.mv_title{
  padding-top: 60%;
  height: 100vh;
}
.mv_title h4 {
  font-size: 1.9em;
  line-height: 1.5em;
  margin-top: 0;
}
.mv_title h3 {
  font-size: 1em;
  line-height: 1.5em;

}
.mv_img {
  position: absolute;
  top: 0;
  z-index: -1;
  opacity: 0;
  width: 100%;
  height: 100vh;
  background-image: url(images/mv-sp.png);
  background-repeat: no-repeat;
  background-size: contain;
  animation: 1s fadeInMvImg 0.2s forwards;
}

@keyframes fadeInMvImg {
  100% {
    opacity: 1;
  }
}
/*--------------------------------
 コンセプト
---------------------------------*/
#concept {
  width: 100%;
  margin-top: 20%;
  padding: 0 8%;
  text-align: center;
}

#concept img {
  width: 70%;
  padding: 5% 0;
  margin: -10% auto 10% auto;
}
.concept_text {
  font-size: 1.2em;
  line-height: 1.8;
  padding-top: 20px;
  margin: 0 auto;

}
.concept_list{
  display: block;
  justify-content: center;

}
.concept_list ul {
  list-style:none;/*デフォルトの指定を解除*/
  margin: 0 auto;/*デフォルトの指定を解除*/
  padding:0;/*デフォルトの指定を解除*/
  display:table;
  width: 80%;/*幅を指定*/
  table-layout:fixed;/*中の要素の幅を均等に*/
  }
.concept_list li {
  display: block;
  padding:1%x;/*余白を指定*/
  height:100%;/*高さを指定*/
  text-align:center;/*横方向を中央揃え*/
}
.concept_list li p {
  font-size: 1.2em;
  padding-top: 10%;
  line-height: 1.5;
}
/*--------------------------------
 お知らせ
---------------------------------*/
#news {
  max-width: 100%;
  padding: 0 5%;
  text-align: center;
}
#news img {
  width: 40%;
  padding: 10% 0;
}
.news_box {
	height:300px;/*スクロールの高さ*/
	overflow-y: scroll;
}
ul.newsList {
  width: 320px;
  display: flex;
  flex-flow: row wrap;
  border-bottom: 1px dotted #999;
  padding: 10px 0;
  margin: 0 auto;
  }
  ul.newsList li {
  display: block;
  margin: 10px 10px;
  }
  ul.newsList li:nth-child(-n + 3) {
  flex-basis: 130px;
  }
  ul.newsList li:nth-child(2) {
  color: #fff;
  font-size: 12px;
  padding: 5px 10px;
  text-align: center;
  background-color: var(--main-color);
  }
  ul.newsList li:nth-child(3) {
  flex-basis: auto;
  }

/*--------------------------------
 料金
---------------------------------*/
#fee {
  text-align: center;
}

#fee .fee_cv img {
  width: 50%;
  padding-bottom: 5%;
  margin: 0 auto;
}

#fee .fee_list h3 {
  width: 90px;
  height: 40px;
  color: #fff;
  font-size: 0.6em;
  font-weight: 500;
  background-color: var(--main-color);
  border-radius: 10px;
  padding: 10%;
}
#fee .fee_list .down {
  color: #fff;
}
#fee .fee_box_img img {
display: none;
}

.fee_list ul {
  list-style:none;/*デフォルトの指定を解除*/
  margin: 0 auto;/*デフォルトの指定を解除*/
  padding: 0;/*デフォルトの指定を解除*/
  display: flex;
  width: 100%;/*幅を指定*/
  table-layout:fixed;/*中の要素の幅を均等に*/
  }
.fee_list li {
  padding: 5% 0 0 5%;/*余白を指定*/
  height: auto;/*高さを指定*/
  text-align: center;/*横方向を中央揃え*/
}
.fee_list li p {
  line-height: 1.5;
}
.fee_menu {
  width: 100%;
  background-color: #fff;
  border-radius: 30px;
  padding: 1em;
  margin-top: 2em;
}
.fee_menu h4 {
  margin-top: 30px;
}
.relaxation_list .head{
  display:none;
  }
.relaxation_list .fee_menu table {
  width: 100%;
    }
.relaxation_list .fee_menu table td {
  display: block;
  width: 100%;
  border-bottom:none;
  text-align: left;

  }

table.tb01 td:first-child{
  background: #1acfff;
  color:#fff;
  font-weight:bold;
  }
table.tb01 td:before{
  display:none;
  }
.tb01 tr:last-child{
  border-bottom: none;
  }
/*--------------------------------
 営業時間
---------------------------------*/
#time {
  text-align: center;
}
#time img {
  width: 35%;
  padding: 20% 0 13% 0;
  margin: 0 auto;
}
#time p{
  width: 300px;
  font-size: 0.8em;
  padding: 2px;
  text-align: center;
}
.zikan{
  max-width: 310px;
}
.biz-hour {
  display: block;
  border-collapse: collapse;
  /* overflow-x: scroll;で、
  スマホ画面幅に表が入りきらない場合は
  横スクロールしてくれます */
  overflow-x: scroll;
}

.biz-hour th {
 font-size: 0.8em;
 border-top: 1px solid #fff;
}

.biz-hour th, .biz-hour td {
  font-size: 0.8em;
  padding: 10px 8px;
  text-align: center;
  border-bottom: 1px solid #fff;
}

.map iframe {
 width: 300px;
 margin: 0 auto;
 padding: 0;

}
#time .add {
  margin: 0 auto;
  font-size: 1em ;
}


/*--------------------------------
 Q&A
---------------------------------*/
.faq_item {
clear: left;
}
/*アコーディオン全体*/
.accordion-area{
  list-style: none;
  width: 90%;
  max-width: 800px;
  margin:0 auto;
  z-index: 1;
}
.accordion-area li{
  margin: 10px 0;
}
.accordion-area section {
border: 1px solid #555;
background-color: #fff;
}
/*アコーディオンタイトル*/
.title {
  position: relative;/*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  font-size:1rem;
  font-weight: normal;
  padding: 3% 3% 3% 50px;
  transition: all .5s ease;
  z-index: 0;
}
/*アイコンの＋と×*/
.title::before,
.title::after{
  position: absolute;
  content:'';
  width: 15px;
  height: 2px;
  background-color: #333;
  z-index: 1;
}
.title::before{
  top:48%;
  left: 15px;
  transform: rotate(0deg);
}
.title::after{
  top:48%;
  left: 15px;
  transform: rotate(90deg);

}
.title h3 {
  z-index: 0;
}
/*　closeというクラスがついたら形状変化　*/

.title.close::before{
transform: rotate(45deg);
}

.title.close::after{
transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.box {
  display: none;/*はじめは非表示*/
  background: #f3f3f3;
  margin:0 3% 3% 3%;
  padding: 3%;
}
/*========= レイアウトのためのCSS ===============*/

h2{
  text-align: center;
  margin: 30px 0;
  font-size: 1.1em;
  font-weight: bold;
  color: #555;
}
/*--------------------------------
 ボタン
---------------------------------*/
.button_area {
  max-width: 40%;
  position: fixed;
  bottom: 5%;
  left: 50%;
}
.fixed_btn {
  width: 120px;
  height: 80px;
  background-color: #1acfff;
  color: #555;
  font-size: 0.8em;
  font-weight: 500;
  line-height: 1.3;
  border-radius: 30% 70% 35% 65% / 50% 50% 50% 50% ;
  animation: border-animation 3s infinite linear;
  text-align: center;
  }
  .updown {
    animation-name:updown1;   /* アニメーション名の指定 */
    animation-delay:0s;   /* アニメーションの開始時間指定 */
    animation-duration: 3s;   /* アニメーション動作時間の指定 */
    animation-timing-function: ease-in-out;  /* アニメーションの動き指定（徐々に早く）*/
    animation-iteration-count: infinite;
}

@keyframes updown1 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
/*--------------------------------
 フッター
---------------------------------*/
.footer {
  text-align: center;
  color: #000;
  width: 100%;
  height: 200px;
  padding: 8%;
}

}