@charset "utf-8";

/* index.html */
body {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  color: #333;
}

@media (min-width:768px) {
  body {
    font-size: 16px;
  }
}



h2 {
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  letter-spacing: 5px;
  text-align: center;
  margin: 80px 0;
}

@media (min-width:768px) {
  h2 {
    margin: 160px 0 80px 0;
  }
}

ul,
li {
  list-style: none;
}

.wrapper {
  padding: 0 20px;
}

@media (min-width:768px) {
  .wrapper {
    padding: 0 10vw;
  }
}

@media (min-width:960px) {
  .wrapper {
    padding: 0 27.5vw;
  }
}

.flex {
  display: flex;
}

/*==================================================
ふわっ
===================================*/


/* fadeUp */

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* スクロールをしたら出現する要素にはじめに透過0を指定　*/

.fadeUpTrigger {
  opacity: 0;
}




/* header */
.header {
  background-color: #c7e3c8;
  width: 100%;
  height: 8vh;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

.header__inner {
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  position: relative;
}

.header__title {
  width: 80px;
}


@media (min-width: 960px) {
  .header__title {
    width: 120px;
  }
}

.header__title img {
  display: block;
  width: 100%;
  height: 100%;
}

.header__nav {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  background-color: #c7e3c8;
  transition: ease .4s;
}


@media (min-width: 960px) {
  .header__nav {
    position: static;
    transform: initial;
    background-color: inherit;
    height: inherit;
    display: flex;
    justify-content: end;
    width: 70%;
  }
}


@media (min-width: 960px) {
  .nav__items {
    width: 100%;
    display: flex;
    align-items: center;
    height: initial;
    justify-content: space-between;
  }
}

.nav-items {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0;
}


@media (min-width: 960px) {
  .nav-items {
    padding-top: inherit;
    padding-bottom: inherit;
    position: inherit;
    top: 0;
    left: 0;
    transform: translate(0, 0);
  }
}

.nav-items__item a {
  color: black;
  width: 100%;
  display: block;
  text-align: center;
  font-size: 16px;
  font-family: "futura-pt", sans-serif;
  letter-spacing: 4px;
  margin-bottom: 48px;
  text-decoration: none;
}

.nav-items__item a:hover {
  color: #ecbcd6;
}

.nav-items__item:last-child a {
  margin-bottom: 0;
}

@media (min-width: 960px) {
  .nav-items__item a {
    margin-bottom: 0;
  }
}

.app__icon {
  width: 50px;
  height: auto;
}


/* ハンバーガーメニュー */
.header__hamburger {
  width: 30px;
  height: 100%;

}

.hamburger {
  background-color: transparent;
  border-color: transparent;
  z-index: 9999;
}

@media (min-width: 960px) {
  .hamburger {
    display: none;
  }
}


.hamburger span {
  width: 100%;
  height: 1px;
  background-color: #000;
  position: relative;
  transition: ease .4s;
  display: block;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  margin: 8px 0;
}

.hamburger span:nth-child(3) {
  top: 0;
}


/* ハンバーガーメニュークリック後のスタイル */
.header__nav.active {
  transform: translateX(0);
}

.hamburger.active span:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;

}

.hamburger.active span:nth-child(3) {
  top: -13px;
  transform: rotate(-45deg);
}



/* メインビジュアル */


.top__view {
  width: 100%;
  height: 92vh;
  position: relative;
  margin-top: 8vh;
}

.top__view__text {
  position: absolute;
  z-index: 998;
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  letter-spacing: 18px;
  font-size: 10vw;
  background-color: #ffffff70;
  writing-mode: vertical-rl;
  height: 92vh;
  padding: 0 50px;
  text-align: center;
}

@media (min-width:960px) {
  .top__view__text {
    font-size: 5vw;
  }
}


@keyframes zoomUp {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.15);
  }
}

.swiper-slide-active .swiper-img,
.swiper-slide-duplicate-active .swiper-img,
.swiper-slide-prev .swiper-img {
  animation: zoomUp 7s linear 0s normal both;
}

.swiper-slide img {
  height: 90vh;
  width: 100%;
  object-fit: cover;
}



/* コンセプト */

.concept__store {
  margin-bottom: 80px;
}

.concept__logo {
  text-align: center;
}

.concept__logo img {
  width: 90%;
  height: auto;
}

@media (min-width:960px) {
  .concept__logo img {
    width: 100%;
    object-fit: contain;
  }
}

.concept__text {
  line-height: 200%;
  letter-spacing: 2.5px;
  margin: 20px 0;
}


.concept__stuff dd {
  border-bottom: #333 1px solid;
}


/* メニュー */
.menu__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 80px;
}

.menu__grid a {
  text-decoration: none;
  color: #333;
}

.grid-item {
  text-align: center;
  border-right: 3px #c7e3c8 solid;
  border-bottom: 3px #c7e3c8 solid;
}

.grid-item:hover {
  border-right: 3px #ecbcd6 solid;
  border-bottom: 3px #ecbcd6 solid;
}

.grid-item img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  background-color: #c7e3c8;
  border-radius: 35px;
  margin: 20px 0;
}

.grid-item p {
  margin-bottom: 20px;
}


/* フェイシャル */
@media (min-width:960px) {
  .top__facial {
    display: flex;
    max-width: 1000px;
    justify-content: space-between;
    margin: 0 auto;
  }
}

@media (min-width:960px) {
  .facial__text {
    width: 45%;
    padding: 0;
  }
}


.top__facial dl {
  margin: 40px 0;
  letter-spacing: 2.5px;
  line-height: 200%;
}

@media (min-width:960px) {
  .top__facial dl {
    text-align: left;
  }
}

.top__facial p {
  letter-spacing: 2.5px;
  line-height: 200%;
  margin-bottom: 40px;
}

@media (min-width:960px) {
  .top__facial p {
    text-align: left;
  }
}

.top__facial img {
  width: 100%;
  height: auto;
}

@media (min-width:960px) {
  .top__facial img {
    width: 45%;
    height: auto;
    object-fit: contain;
  }
}

/* ボディ */
@media (min-width:960px) {
  .top__body {
    display: flex;
    max-width: 1000px;
    justify-content: space-between;
    margin: 0 auto;
  }
}

@media (min-width:960px) {
  .body__text {
    width: 45%;
    padding: 0;
    order: 1;
  }
}

@media (min-width:960px) {
  .top__body {
    text-align: center;
  }
}

.top__body dl {
  margin: 40px 0;
  letter-spacing: 2.5px;
  line-height: 200%;
}

@media (min-width:960px) {
  .top__body dl {
    text-align: left;
  }
}

.top__body p {
  letter-spacing: 2.5px;
  line-height: 200%;
  margin-bottom: 40px;
}

@media (min-width:960px) {
  .top__body p {
    text-align: left;
  }
}

.top__body img {
  width: 100%;
  height: auto;
}

@media (min-width:960px) {
  .top__body img {
    width: 45%;
    height: auto;
    object-fit: contain;
    order: 2;
  }
}

/* 脱毛 */
@media (min-width:960px) {
  .top__removal {
    display: flex;
    max-width: 1000px;
    justify-content: space-between;
    margin: 0 auto;
  }
}

@media (min-width:960px) {
  .removal__text {
    width: 45%;
    padding: 0;
  }
}

@media (min-width:960px) {
  .top__removal {
    text-align: center;
  }
}

.top__removal dl {
  margin: 40px 0;
  letter-spacing: 2.5px;
  line-height: 200%;
}

@media (min-width:960px) {
  .top__removal dl {
    text-align: left;
  }
}

.top__removal p {
  letter-spacing: 2.5px;
  line-height: 200%;
  margin-bottom: 40px;
}

@media (min-width:960px) {
  .top__removal p {
    text-align: left;
  }
}

.top__removal img {
  width: 100%;
  height: auto;
}

@media (min-width:960px) {
  .top__removal img {
    width: 45%;
    height: auto;
    object-fit: contain;
  }
}

/* 詳しく見るボタン */
.more {
  text-align: center;
}

.button {
  color: #333;
  text-decoration: none;
}

.button:hover {
  color: #ecbcd6;
}


/* リンク集 */
.link-box {
  text-align: center;
  margin: 80px 0;
}

@media (min-width:960px) {
  .link-box {
    margin: 160px 0;
  }
}

.link-box p {
  padding-top: 10px;
}

.link-box a:hover {
  opacity: 60%;
}

.banner-box {
  margin-bottom: 80px;
}

@media (min-width:768px) {
  .banner-box img {
    width: 65%;
    height: auto;
  }
}


.sns-box img {
  width: 70px;
  height: auto;
}

.sns-minibox {
  justify-content: center;
  gap: 40px;
}

@media (min-width:768px) {
  .sns-minibox {
    gap: 80px;
  }
}

.hpb-box {
  margin-top: 80px;
}

.hpb-box img {
  width: 240px;
  height: auto;
}

/* アクセス */
.access {
  margin: 80px 0;
  /* text-align: center; */
}

@media (min-width:960px) {
  .access {
    display: flex;
    max-width: 1000px;
    justify-content: space-between;
    margin: 0 auto;
  }
}

@media (min-width:960px) {
  .access__text {
    width: 45%;
    padding: 0;
    order: 1;
  }
}

.access img {
  width: 100%;
  height: auto;
}

@media (min-width:960px) {
  .access img {
    width: 45%;
    height: auto;
    object-fit: cover;
    order: 2;
  }
}

.access dl {
  letter-spacing: 2.5px;
  line-height: 200%;
}

@media (min-width:768px) {
  .access dl {
    text-align-last: left;
    margin: 80px 0;
  }
}

@media (min-width:960px) {
  .access dl {
    text-align-last: left;
    margin: 0;
  }
}

.access dt {
  padding: 20px 0 10px 0;
}

@media (min-width:768px) {
  .access dt {
    padding: 40px 0 10px 0;
  }
}

@media (min-width:960px) {
  .access dt {
    padding: 80px 0 10px 0;
  }
}

.border {
  padding-bottom: 20px;
  border-bottom: 1px #333 solid;
}

@media (min-width:960px) {
  .map {
    max-width: 1000px;
    margin: 80px auto;
  }
}


iframe {
  margin: 40px auto 0;
  padding: 0 20px;
  width: 100%;
  aspect-ratio: 16 / 9;
}

@media (min-width:768px) {
  iframe {
    padding: 0 10vw;
  }
}

@media (min-width:960px) {
  iframe {
    padding: 0;
    max-width: 1000px;
  }
}

/* フッター */
footer {
  padding: 20px 0;
  text-align: center;
  background-color: #c7e3c8;
}

footer p {
  letter-spacing: 2.5px;
  line-height: 200%;
}