@charset "utf-8";
/* CSS Document */
/*========== 背景 ==========*/
body {
  background-image: url("../images/top/top.jpeg");
  /*background-size: auto;*/
  background-repeat: no-repeat;
  background-position: center 78%;
  padding: 15%;
}
@media(max-width: 480px) {
  body {
    padding: 90px 30px 50px 30px;
  }
}
/* ========== ハンバーガーメニュー ==========*/
#g-nav {
  /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
  position: fixed;
  z-index: -1;
  opacity: 0; /*はじめは透過0*/
  /*ナビの位置と形状*/
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh; /*ナビの高さ*/
  /*動き*/
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-backdrop-filter: blur(35px); /* グラスモーフィズム */
  backdrop-filter: blur(35px); /* グラスモーフィズム */
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive {
  opacity: 1;
  z-index: 999;
}
/*ナビゲーションリスト*/
#g-nav.panelactive #g-nav-list {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh; /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
/*ナビゲーション*/
#g-nav ul {
  display: none;
}
#g-nav.panelactive ul {
  display: block;
}
/*リストのレイアウト設定*/
#g-nav li {
  list-style: none;
  text-align: center;
}
#g-nav li a {
  color: #fff;
  text-decoration: none;
  padding: 10px;
  display: block;
  letter-spacing: 0.1em;
  font-weight: bold;
}
/*========= ボタン設定 ==========*/
.openbtn1 {
  position: fixed;
  z-index: 9999; /*ボタンを最前面に*/
  top: 10px;
  right: 140px;
  cursor: pointer;
  width: 50px;
  height: 50px;
}
/*×設定*/
.openbtn1 span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #A19D9D;
  width: 43px;
}
.openbtn1 span:nth-of-type(1) {
  top: 15px;
}
.openbtn1 span:nth-of-type(2) {
  top: 30px;
}
.openbtn1 span:nth-of-type(3) {
  top: 45px;
}
.openbtn1.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 50px;
}
.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn1.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 50px;
}
@media(max-width: 1024px) {
  .openbtn1 {
    right: 65px;
  }
}
@media(max-width: 480px) {
  .top-art img {
    width: 306px;
    height: auto;
  }
  .openbtn1 {
    top: 10px;
    right: 77px;
    width: 0px;
    height: 0px;
  }
  .openbtn1 span {
    height: 2px;
  }
  .openbtn1 span:nth-of-type(1) {
    top: 10px;
  }
  .openbtn1 span:nth-of-type(2) {
    top: 23px;
  }
  .openbtn1 span:nth-of-type(3) {
    top: 36px;
  }
  .sp-only {
    display: block;
  }
}
/*ハンバーガーメニュー・左アート*/
.menu {
  display: flex;
  width: 100%;
  justify-content: space-around;
  max-width: 1367px;
  margin: 13% auto;
  flex-wrap: wrap;
}
.top-art img {
  max-width: 423px;
}
.top-art p {
  color: #fdfdfd;
  font-size: 18px;
  text-align: center;
  margin: 30px 0;
  max-width: 423px;
  width: 100%;
}
.viewmore a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fdfdfd;
  font-size: 18px;
  text-align: center;
  text-decoration: none;
  max-width: 423px;
  width: 100%;
}
.viewmore-line {
  width: 50px;
  height: 1px;
  background-color: #fdfdfd;
  margin: 0 0 0 15px;
}
/*右メニュー*/
.top-menu_esthe, .top-menu_relaxation, .top-menu_healing, .top-menu_lingerie, .top-menu_salon {
  display: flex;
  line-height: 35px;
}
.top-menu_esthe img, .top-menu_healing img, .top-menu_salon img {
  width: 35px;
  height: 31px;
  margin: 13px 15px 0 0;
}
.top-menu_relaxation img, .top-menu_lingerie img {
  width: 30px;
  height: 27px;
  margin: 15px 15px 0 4px;
}
.top-menu a {
  color: #fdfdfd;
  font-size: 18px;
  text-decoration: none;
}
/*メッセージ*/
.top-massage {
  color: #fdfdfd;
  text-align: center;
  letter-spacing: 3px;
  font-size: clamp(13px, 1vw, 16px);
  max-width: 1087px;
}
.sp-only {
  display: none;
}
/*追加*/
@media(max-width: 670px) {
  .menu {
    flex-direction: column-reverse;
    align-items: center;
  }
  .top-menu {
    margin: 0 0 100px 0;
  }
  .sp-only {
  display: unset;
}
}