@charset "UTF-8";
/* ===============================================
# 全体
=============================================== */
:root {
  --main: #3BC8A7;
  --second: #EFCAC7;
  --blue: #1696ad;
  --gray: #f0e5d1;
  --dark-gray: #ddc19f;
  --black: #412A2A;
  --white: #f9f9f3;
  --font-jp: "Klee One", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  --font-en: "Shippori Antique B1", "Helvetica", "Arial", sans-serif;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  background-image: url(../img/bg.jpeg);
  background-color: var(--white);
  background-size: contain;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-family: var(--font-jp), var(--font-en);
  font-size: 16px;
  color: var(--black);
  margin: 0;
  line-height: 1.7;
}

svg {
  width: 100%;
}

img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
}

.title {
  font-size: 28px;
  text-align: center;
  position: relative;
  padding-bottom: 0.5rem;
  margin-bottom: 50px;
}

.title::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 50%;
  height: 2px;
  background-color: var(--main);
}

button {
  padding: 1rem 1.5rem;
  font-size: 20px;
  background-color: var(--white);
  border: 1.5px solid var(--dark-gray);
  margin-top: 50px;
}

.deco-text {
  font-family: "WindSong", serif;
  font-weight: 500;
  font-size: clamp(1.875rem, 0.764rem + 2.31vw, 2.5rem);
  color: var(--dark-gray);
}

@media (hover: hover) and (pointer: fine) {
  button:hover {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
@media screen and (max-width: 768px) {
  body {
    font-size: clamp(0.75rem, 0.571rem + 0.89vw, 1rem);
  }
  .inner {
    padding: 0 1rem;
  }
}
/* ===============================================
メイン
=============================================== */
main {
  margin-left: 18vw;
}

@media screen and (max-width: 768px) {
  main {
    margin-left: initial;
  }
}
/* ===============================================
# トップへもどる
=============================================== */
.to-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 70px;
  position: fixed;
  bottom: 30px;
  right: 25px;
  word-wrap: none;
  z-index: 99999;
}
@media screen and (max-width: 768px) {
  .to-top {
    bottom: 10vh;
    width: 12vw;
    right: 3.5vw;
  }
}

/* ===============================================
# MV
=============================================== */
.mv {
  position: relative;
}
.mv h1 {
  font-family: "Baloo 2", serif;
  font-weight: 600;
  font-size: 38px;
  margin: 0 auto;
  padding: 1.7rem 0 0.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--main);
}
.mv h1 span {
  font-size: 14px;
  font-weight: lighter;
}
.mv h1 div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mv h1 div img {
  width: 35px;
  margin: 3px 5px 0;
}
.mv .main {
  height: 40vh;
}
.mv p {
  position: absolute;
  top: 50%;
  right: 5%;
  font-size: clamp(0.875rem, 0.722rem + 0.76vw, 1.438rem);
}

@media screen and (max-width: 768px) {
  .mv p {
    top: 50%;
    left: 50%;
    font-size: 16px;
  }
}
/* ===============================================
# 予約はこちら
=============================================== */
.reservation {
  position: fixed;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  bottom: 50%;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  right: 0;
  background-color: var(--main);
  color: var(--white);
  letter-spacing: 0.1rem;
  border-radius: 10px 0 0 10px;
  padding: 2rem 1rem;
  font-size: 25px;
  z-index: 9999;
  border: 1px solid var(--dark-gray);
  border-right: none;
}

@media (hover: hover) and (pointer: fine) {
  .reservation:hover {
    opacity: 1;
    background-color: var(--white);
    border: 1px solid var(--blue);
    color: var(--blue);
  }
}
@media screen and (max-width: 768px) {
  .reservation {
    font-size: 20px;
    text-align: center;
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    bottom: 0;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
    right: 50%;
    width: 100%;
    padding: 0.8rem;
    border-radius: 0;
    border: none;
  }
}
/* ===============================================
# マッサージについて
=============================================== */
#about-massage .history {
  background: url(../img/uma.jpg) no-repeat center center/cover;
  padding: 2rem 1rem 180px;
  position: relative;
}
#about-massage .history p {
  background-color: rgba(255, 255, 255, 0.6);
  padding: 2rem;
}
#about-massage .history svg {
  position: absolute;
  bottom: 0;
  left: 0;
}
#about-massage .feature {
  padding: 2rem 2rem 0;
  background-color: var(--gray);
}
#about-massage .feature .feature-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  gap: 2rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
#about-massage .feature .feature-item dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#about-massage .feature .feature-item dt {
  font-weight: bold;
  text-align: center;
  font-size: 18px;
  margin: 1rem 0 0.5rem;
}
#about-massage .feature .feature-item img {
  width: clamp(12.5rem, 4.019rem + 17.67vw, 25rem);
  height: clamp(12.5rem, 4.019rem + 17.67vw, 25rem);
  -webkit-clip-path: circle(50%);
          clip-path: circle(50%);
  -webkit-mask-image: radial-gradient(circle, rgb(0, 0, 0) 60%, rgba(0, 0, 0, 0) 70%);
          mask-image: radial-gradient(circle, rgb(0, 0, 0) 60%, rgba(0, 0, 0, 0) 70%);
  z-index: 10;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .feature-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
/* ===============================================
# 当店について
=============================================== */
#about-shop {
  position: relative;
  padding: 320px 2rem 310px;
  background: url(../img/hana-fade.png) no-repeat center center/cover;
  text-align: center;
}
#about-shop .top {
  position: absolute;
  top: 0;
  left: 0;
}
#about-shop p {
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 5px;
  padding: 2rem 1rem;
}
#about-shop .bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}
#about-shop button {
  z-index: 90;
}

/* ===============================================
# ハンバーガー
=============================================== */
.hamburger {
  display: none;
  cursor: pointer;
  position: fixed;
  top: 15px;
  right: 20px;
  z-index: 8000;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 60px;
  height: 60px;
  border: none;
  border-radius: 5px;
  padding-top: 5px;
  background-color: var(--main);
}
.hamburger .menu-text {
  font-size: 12px;
  margin-top: 3.5px;
}
.hamburger .bar {
  width: 25px;
  height: 2.5px;
  background-color: var(--gray);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 3px;
  margin: 3.5px;
}

.hamburger.open .bar:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(10px, 10px);
          transform: rotate(45deg) translate(10px, 10px);
}
.hamburger.open .bar:nth-child(2) {
  opacity: 0;
}
.hamburger.open .bar:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(3px, -4px);
          transform: rotate(-45deg) translate(3px, -4px);
}

#gnavMenu {
  position: fixed;
  top: 50.6vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 999;
  font-size: clamp(1rem, 0.661rem + 0.71vw, 1.5rem);
  font-weight: bold;
  gap: 2rem;
  width: 18vw;
  height: 50vh;
  padding: 30px 1vw;
  color: var(--white);
  background-color: var(--main);
}
#gnavMenu li {
  border-bottom: 2px dotted var(--second);
  padding-bottom: 0.5rem;
}
#gnavMenu img {
  max-height: 70px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-top: -20px;
}

#gnavMenu.open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-animation: fadeIn 1s ease-in-out;
          animation: fadeIn 1s ease-in-out;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@media screen and (max-width: 768px) {
  #gnavMenu {
    display: none;
    background-color: var(--white);
    color: var(--black);
    padding: initial;
    top: 0;
    width: 100vw;
    height: 100vh;
    font-size: clamp(1.25rem, 1.071rem + 0.89vw, 1.5rem);
  }
  .hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
/* ===============================================
# コース
=============================================== */
#course {
  background-color: var(--second);
  padding: 2rem;
}
#course .course-item {
  margin-top: 100px;
  position: relative;
  width: 100%;
}
#course .course-item img {
  display: block;
  width: 60%;
}
#course .course-text {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.8);
  width: 50%;
  bottom: 20px;
  right: -10px;
  padding: 1rem;
  border-radius: 5px;
}
#course button {
  display: block;
  margin: 100px auto 0;
}

@media screen and (max-width: 768px) {
  #course {
    text-align: center;
    padding: 3rem 0;
  }
  #course .course-item {
    margin-bottom: 150px;
    width: 100%;
  }
  #course .course-item img {
    width: 100%;
  }
  #course .course-text {
    width: 90%;
    bottom: -20%;
    right: 50%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
}
/* ===============================================
# スタッフ
=============================================== */
#staff {
  position: relative;
  background-color: var(--gray);
  padding: 200px 5rem;
  text-align: center;
}
#staff .top {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
}
#staff .bottom {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
}
#staff .staff dl {
  margin: 80px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}
#staff .staff dl img {
  -webkit-clip-path: circle(50%);
          clip-path: circle(50%);
}
#staff .staff dl div {
  margin: 50px 0;
  position: relative;
  max-width: 500px;
  width: 30vw;
  min-width: 280px;
}
#staff .staff dl .deco-text {
  position: absolute;
  top: -35px;
  left: -45px;
  -webkit-transform: rotate(-25deg);
          transform: rotate(-25deg);
}
#staff .staff dl .sm {
  top: -50px;
  left: -55px;
}
#staff .staff dl dt {
  margin: 1rem 0 0.5rem;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  position: relative;
  white-space: nowrap;
}
#staff .staff dl dt::after {
  position: absolute;
  content: "";
  background-color: var(--main);
  height: 2px;
  width: 70px;
  bottom: 0;
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}
#staff .staff dl dd {
  text-align: justify;
}

@media screen and (max-width: 768px) {
  #staff {
    padding: 200px 2rem;
  }
  #staff dl {
    padding: 30px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #staff dl p div {
    max-width: inherit;
    width: 100%;
  }
}
/* ===============================================
# お知らせ
=============================================== */
#news {
  padding: 50px 2rem 80px;
}
#news .news-container {
  height: 200px;
  overflow-y: auto;
  padding: 10px;
  border: 1px solid #ddd;
}
#news .news-container li {
  margin-bottom: 10px;
  padding: 10px;
  border-bottom: 1px dotted var(--main);
}
#news .news-container time {
  font-style: 10px;
}
#news .news-container span {
  background-color: var(--second);
  margin: 0 0.5rem;
  padding: 0.2rem;
  border-radius: 10px;
}

/* ===============================================
# フッター
=============================================== */
footer {
  text-align: right;
}

@media screen and (max-width: 768px) {
  footer {
    padding-bottom: 4rem;
  }
}
/* ===============================================
# パンくず
=============================================== */
.breadcrumb {
  padding: 0;
  margin: 0.5rem 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.breadcrumb a {
  text-decoration: none;
  color: var(--blue);
}

.breadcrumb li + li::before {
  content: "＞";
  margin: 0 0.5rem;
}

/* ===============================================
# about-index
=============================================== */
.page-title {
  text-align: center;
  font-family: "Shippori Antique B1";
  font-weight: 500;
  position: absolute;
  padding: 50px;
  top: 25%;
  right: 47%;
  -webkit-transform: translate(50%, 50%);
          transform: translate(50%, 50%);
  font-size: 35px;
  color: var(--main);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(13px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.concept {
  position: relative;
  padding: 3rem 2rem 180px;
  text-align: center;
  background: url(../img/lavender-fade.jpg) no-repeat center center/cover;
}
.concept svg {
  position: absolute;
  bottom: 0;
  left: 0;
}
.concept div {
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 5px;
  padding: 2rem 1rem;
}
.concept h3 {
  color: var(--main);
  font-size: 23px;
}
.concept p {
  font-size: 20px;
}

.message {
  position: relative;
  padding: 1rem 2rem 180px;
  background-color: var(--gray);
}
.message svg {
  position: absolute;
  bottom: 0;
  left: 0;
}
.message span {
  display: block;
  text-align: right;
}

@media screen and (max-width: 768px) {
  .page-title {
    font-family: "Shippori Antique B1";
    font-weight: 500;
    position: absolute;
    padding: 30px;
    top: 60%;
    right: 47%;
    -webkit-transform: translate(50%, -50%);
            transform: translate(50%, -50%);
    font-size: 22px;
  }
  .concept {
    position: relative;
    padding: 3rem 2rem 180px;
    text-align: center;
    background: url(../img/lavender-fade.jpg) no-repeat center center/cover;
  }
  .concept svg {
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .concept div {
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 5px;
    padding: 2rem 1rem;
  }
  .concept h3 {
    color: var(--main);
    font-size: 23px;
  }
  .concept p {
    font-size: 20px;
  }
  .message {
    padding-bottom: 100px;
  }
}
/* ===============================================
# course-index
=============================================== */
#course-menu {
  text-align: center;
  background-color: var(--second);
  padding: 100px 0;
}
#course-menu img {
  height: 50vh;
}
#course-menu h3 {
  width: 80vw;
  max-width: 500px;
  background: url(../img/frame.png) no-repeat center center/cover;
  padding: 1rem 0;
  font-size: 30px;
  margin: 50px auto 0;
}
#course-menu .course-text {
  background-color: var(--white);
  margin-top: 100px;
  padding: 2rem;
}
#course-menu .fee {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 2rem;
}
#course-menu dl {
  font-family: "Shippori Antique B1";
  background-color: var(--white);
  padding: 1rem 8vw;
  border-radius: 5px;
}
#course-menu dt {
  position: relative;
  color: var(--main);
  font-size: 20px;
  border-bottom: 2px dotted var(--blue);
}
#course-menu dd {
  margin-top: 1rem;
}

/* ===============================================
# staff-index
=============================================== */
.staff-introduction dl {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 50px;
}
.staff-introduction dl img {
  width: 40vw;
}
.staff-introduction dl .name {
  font-size: 25px;
}
.staff-introduction dl .erick {
  margin-inline: 6.5vw;
}
.staff-introduction dl ul {
  margin: 1.5rem 0;
}
.staff-introduction dl ul li::before {
  content: "●";
  margin-right: 0.5rem;
  color: var(--dark-gray);
}

/* ===============================================
# 初めての方へ
=============================================== */
.steps {
  position: relative;
  background-color: var(--gray);
  padding-bottom: 200px;
}
.steps .bottom {
  position: absolute;
  bottom: 0;
}
.steps ol {
  margin: 0;
  padding: 0 2rem;
}
.steps ol div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 1rem auto;
}
.steps ol div .number {
  font-family: "Baloo 2", serif;
  padding: 20px;
  border-radius: 50%;
  font-size: 30px;
  background-color: var(--second);
  margin: 0;
}
.steps ol div .step-title {
  margin: 0;
  margin-left: 1rem;
  font-size: 25px;
}
.steps ol p {
  margin-bottom: 50px;
}

/* ===============================================
# access-index
=============================================== */
.access {
  padding: 2rem;
  margin-bottom: 100px;
}
.access h3 {
  color: var(--main);
  text-align: center;
  margin-bottom: 0.6rem;
}
.access .map iframe {
  aspect-ratio: 4/2;
  width: 100%;
  height: auto;
}
.access table {
  margin: 0 auto;
  padding: 1rem 2rem;
}
.access table tr {
  text-align: left;
}
.access table th {
  width: 20%;
}
.access table span {
  font-size: 13px;
  color: var(--blue);
}

@media screen and (max-width: 768px) {
  .access {
    padding: 1rem;
  }
}
/* ===============================================
# reservation
=============================================== */
.form {
  padding-bottom: 180px;
  position: relative;
  background-color: var(--second);
}
.form .bottom {
  position: absolute;
  bottom: 0;
}
.form p {
  margin: 0 auto;
  text-align: center;
  width: 80%;
  padding-bottom: 50px;
}
.form form {
  width: 80%;
  margin: 0 auto;
  background: var(--white);
  padding: 50px;
  border-radius: 8px;
}
.form form p {
  text-align: center;
  margin-bottom: 20px;
}
.form form label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}
.form form label .required {
  color: red;
}
.form form input,
.form form select,
.form form textarea {
  width: 100%;
  padding: 8px;
  margin-bottom: 2rem;
  border: 1px solid var(--dark-gray);
  border-radius: 4px;
}
.form form input[type=submit] {
  display: block;
  font-family: "Shippori Antique B1";
  background-color: var(--main);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-size: 18px;
  width: 35%;
  padding: 1rem;
  margin: 0 auto;
}
.form form input[type=submit]:hover {
  background-color: var(--blue);
}
.form form #course {
  padding: 1rem;
  background-color: var(--gray);
}/*# sourceMappingURL=style.css.map */