@font-face {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/webfonts/fa-solid-900.woff2') format('woff2'),
    url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/webfonts/fa-solid-900.woff') format('woff');
}

body {
  position: relative;
  font-size: 18px;
  font-family: YakuHanJP, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
  background: white;
  transition: 1s;
  color: #3a191c;
  background-image: url(../img/bg-zara.jpg);
  background-size: 50%;
  background-repeat: repeat;
  transition: .5s;
}

.scroll-background {
  background-color: #ffe6de;
  background-image: url(../img/awa.png);
}

.scroll-after-container-background {
  background-color: white;
  background-image: none;
}

.scroll-container-background {
  background-color: #4d3e39;
  background-image: none;
}

.sp-only {
  display: none;
}

.pc-only {
  display: block;
}

.red {
  color: #eb6159;
}

/*------メインビジュアル--------/*/

/*========= LoadingのためのCSS ===============*/

/* Loading背景画面設定　*/
#splash {
  /*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #fff5f8;
  text-align: center;
  color: #fff;
}

/* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo svg {
  width: 900px;
}

/*========= SVG操作手書き風にするためのCSS ===============*/

#mask .st0 {
  fill: none;
  stroke: #fff;
  stroke-width: 250;
  /*線の太さを指定する*/
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
  stroke-dasharray: 1500;
  /* 線の間隔を指定する */
  stroke-dashoffset: 1500;
  /* 線の位置を指定する */
}

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

#container {
  width: 100%;
  height: 100vh;
  background: #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}



#header {}

.header {
  position: relative;
  /* 相対的な配置に変更します */
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffe6de;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .5rem 2rem;
  height: 100px;
  z-index: 11;
  transition: top 0.3s;
  /* アニメーションの速度を設定します */
}

.header.fixed {
  position: sticky;
  top: 0;
  animation: .5s linear fixed;
  box-shadow: 0 5px 20px 3px rgba(0, 0, 0, .1);
}

@keyframes fixed {
  0% {
    transform: translateY(-100px);
  }

  100% {
    transform: translateY(0);
  }
}

.mv {}

.mv-flex {
  display: flex;
  position: relative;
}

.mv-left {
  width: 50%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-right: -2%;
  z-index: 2;
  flex-wrap: wrap;
}

.mv-logo {
  width: 70%;
  margin-left: 2vw;
  max-width: 700px;
}

.mv-catch {
  font-family: "Hiragino Kaku Gothic ProN W3", "Arial", "Yu Gothic", "Meiryo", "Helvetica Neue", "Helvetica", "Hiragino Sans", sans-serif;
  margin-left: 5vw;
}

.mv-catch--top {
  padding: .5rem 2rem;
  background-color: white;
  margin-bottom: 1rem;
  font-size: 2rem;
}

.mv-catch--btm {
  padding: .5rem 2rem;
  background-color: white;
  display: inline-block;
  font-size: 1.5rem;
}

.mv-right {
  width: 65%;
  position: relative;
}

.mv-right::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: rgb(255 171 194 / 23%);
  background-image: url(../img/img__fv__maskbox.png);
  background-repeat: repeat;
}

.mv-right video {
  display: block;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  max-width: 100%;
  height: 100vh;
  object-position: center;
  width: 100%;
  position: relative;
}

/*-----LINE追従ボタン--------*/
#line-wrap.line-wrap {
  position: fixed;
  background: white;
  padding: 1rem;
  bottom: 0;
  right: 0;
  box-shadow: -1px -1px 6px #b7a39d;
  z-index: 20;

  /* 初期状態は右外に隠す */
  transform: translate(120%, 0);
  opacity: 0;
  pointer-events: none;
  transition: transform .45s cubic-bezier(.22, .61, .36, 1), opacity .3s ease;
  will-change: transform, opacity;
}

/* 表示状態 */
#line-wrap.is-visible {
  transform: translate(0, 0);
  opacity: 1;
  pointer-events: auto;
}

/* 明示的に非表示（閉じる押下時など） */
#line-wrap.is-hidden {
  transform: translate(120%, 0);
  opacity: 0;
  pointer-events: none;
}

/* 動きを減らしたい環境配慮 */
@media (prefers-reduced-motion: reduce) {
  #line-wrap.line-wrap {
    transition: none;
  }
}

.line-lead {
  font-size: 17px;
  font-weight: bold;
}

.line-img {
  width: 140px;
  margin-top: 1rem;
}

.line-close {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  text-align: center;
  cursor: pointer;
}

.line-close--1st {
  font-size: 10px;
}

.line-close--2nd {
  font-size: 26px;
  font-weight: bold;
}

/*-----グロナビ--------/*/
.nav-logo {
  text-align: center;
  display: flex;
  align-items: center;
}

.nav-logo img {
  width: 200px;
}

.head-nav {
  z-index: 1;
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.head-nav-ul {
  display: flex;
  justify-content: center;
  font-weight: bold;
  height: 40px;
  align-items: center;
}

.head-nav-list {
  font-size: 18px;
}

.head-nav-list span {
  position: absolute;
  bottom: 18px;
  font-size: .8rem;
  color: #f9c9b9;
}

.head-nav-ul a {
  color: #3a191c;
  margin: 0;
  padding: 0 1vw;
  display: block;
  transition: .5s;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
}

.head-nav-link.head-nav-link__kitsuke {
  color: white;
  background-color: #7c5d39;
}

.head-nav-ul a.active {
  background: #eb6159;
  color: white;
}

.head-nav-ul a:hover {
  color: white;
  background-color: #eb6159;
  transition: .5s;
}

.cont-wrap {
  max-width: 1980px;
  margin: 0 auto;
  position: relative;
  padding-top: 220px;
}

.cont-wrap.kimono-plan {
  max-width: none;
}

.esthe.cont-wrap {
  padding-top: 30vw;
}

.secsion-ttl {
  text-align: center;
  padding-bottom: 4rem;
}

.esthe .cnpt-right {
  margin-left: -4%;
  width: 55%;
  justify-content: flex-end;
}

.esthe .cnpt-left {
  width: 55%;
  position: sticky;
  height: 100%;
  top: 20%;
  overflow: visible;
}

.esthe .conpt-hl {
  font-size: 3.5vw;
  padding-left: 2rem;
}

.esthe .menu-list {
  background-color: white;
}

.secsion-ttl img {
  height: 10vw;
  min-height: 4rem;
}

.esthe .cnpt-right--txt {
  padding-top: 20vw;
}

.esthe .cv-tel {
  background: none;
}

#esthe.esthe .cnpt-flex::before {
  background: none;
}

.secsion-ttl img {
  transform: rotateX(90deg);
  transition: transform 1.6s cubic-bezier(0.85, 0, 0.15, 1);
}

.secsion-ttl.powa-on img {
  transform: rotateX(0deg);
}

/*-----メディアエリア--------/*/
.media {
  padding: 30vh 0 0;
  max-width: none;
  position: relative;
}

#scroll-container {
  padding-top: 30vh;
}

.media::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transform: skewY(-7deg);
}

.media-ttl {
  margin-bottom: 20vh;
}

.logo {
  position: sticky;
  content: "";
  width: 70vh;
  height: 70vh;
  max-width: 80%;
  max-height: 80%;
  background: url(../img/logo.svg) no-repeat;
  background-size: contain;
  right: 0;
  left: 0;
  top: 15vh;
  bottom: 0;
  margin: auto;
  filter: drop-shadow(1px 1px 1px rgb(200, 201, 204)) drop-shadow(-1px -1px 1px rgb(255, 255, 255));
  transition: 2s;
  z-index: -1;
  opacity: 0;
}

.logo.powa-on {
  opacity: 1;
}

#slider-container {
  position: relative;
  transform: translateX(100%);
  z-index: 3;
  transition: transform 2.5s cubic-bezier(0, 0.55, 0.45, 1);
  width: 100%;
}

#slider-container.powa-on {
  transform: translateX(0%);
}

.slider {
  transition: transform 0.3s ease-out;
  display: flex;
  margin-left: 10vw;
  z-index: 1;
  padding-top: 4rem;
}


.slide {
  display: inline-block;
  font-size: 1rem;
  width: 22vw;
  margin-right: 5vw;
}

.slide img {
  border-radius: 20px;
}

.staff {
  margin-top: -4rem;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  align-items: flex-start;
  color: white;
  width: 100%;
}

.staff-name {
  font-size: 1.6vw;
  font-weight: 700;
  border-bottom: 2px groove #f9c9b9;
  align-self: stretch;
  padding: 0 1rem 0.5rem;
  margin: 1rem -1rem;
}

.staff-copy {
  font-size: 19px;
  font-weight: bold;
  background: #f9c9b9;
  padding: 0.2rem 0.5rem;
  color: #4d3e39;
  margin-left: -0.5rem;
  margin-bottom: 0.5rem;
  display: inline;
}

.staff-lead {
  font-size: 18px;
}


/*-----ニュースエリア--------/*/
.news-list {
  border-top: 1px solid #9f9f9f;
}

.news-item {
  padding: 2rem 3rem;
  border-bottom: 1px solid #9f9f9f;
  color: #0d0d0d;
}

.news-item-date {
  display: block;
  width: 7rem;
  background: #0d0d0d;
  color: white;
  text-align: center;
  margin-bottom: 0.8rem;
}

.news-link {
  color: #0d0d0d;
}

/*-----コンセプトエリア--------/*/
.concept-wrap {
  padding: 4rem 0;
  position: relative;
}

.cnpt-ttl {
  position: absolute;
  top: -6rem;
  left: -2vw;
  width: 90%;
}

.cnpt-flex {
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.cnpt-left {
  width: 50%;
  text-align: left;
  overflow: hidden;
  position: relative;
}

.cnpt-left::before {
  background: #ffe6de5a;
  content: '';
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.cnpt-left::after {
  background: #fcf1f5;
  content: '';
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.esthe .cnpt-left::after {
  background: #ffe6de;
  content: '';
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.cnpt-left.powa-on::before {
  animation: img-wrap 1.3s .5s cubic-bezier(0.87, 0, 0.13, 1) forwards;
}

.cnpt-left.powa-on::after {
  animation: img-wrap 1.2s cubic-bezier(0.87, 0, 0.13, 1) forwards;
}

@keyframes img-wrap {
  100% {
    transform: translateX(-100%);
  }
}

.cnpt-left img {
  position: relative;
  border-radius: 0;
}

.cnpt-left.powa-on img {
  transition: 2s 1s;
  border-radius: 0 50px 50px 0;
}

.cnpt-right {
  position: relative;
  width: auto;
  display: flex;
  align-items: center;
  width: 50%;
  text-align: left;
}

.cnpt-right--txt {
  color: #4d3e39;
  position: relative;
  margin: 2rem;
  overflow: hidden;
}


.conpt-hl {
  font-size: 4vw;
  font-family: "Sawarabi Mincho", serif;
  font-weight: 300;
  font-style: normal;
  letter-spacing: .1rem;
  padding-bottom: 2rem;
}

#stylist .conpt-hl {
  font-size: 3.5vw;
}

.conpt-hl span {
  color: white;
  text-shadow: 0px 20px 50px rgba(235, 97, 89, 1);
}

.conpt-hl.powa-on span {
  color: #eb6159;
  transition: 8s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-shadow: none;
}

.cnpt-right--txt .lead {
  font-size: 19px;
  line-height: 1.8;
  opacity: 0;
}

#kitsuke .cnpt-right--txt .lead {
  padding-right: 4rem;
}

.cnpt-right--txt .lead.powa-on {
  opacity: 1;
  animation: slideIn 3s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes slideIn {
  0% {
    transform: translateX(40px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
  }

  80%,
  100% {
    opacity: 1;
  }
}

/* ------メニューエリア-----------*/
.menu-wrap {
  margin-top: 200px;
  padding-top: 320px;
}

.menu-ttl {
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  top: 10rem;
}

.menu-ttl img {
  height: 7vw;
}

.menu-h3 {
  position: relative;
  text-align: center;
  font-size: 2rem;
  font-family: "Sawarabi Mincho", serif;
  font-weight: 300;
  color: #3a191c;
  padding-bottom: 100px;
}

.rokuyou-flex {
  display: flex;
  justify-content: center;
}

.rokuyou-flex form {
  width: 45%;
  position: sticky;
  height: 100%;
  top: 10%;
  padding: 2rem;
  max-width: 700px;
}

.rokuyou-flex form .ft-tell h4 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
}

.menu-table--wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 50%;
}

.menu-table {
  width: 100%;
  margin-bottom: 3rem;
  padding: 2rem;
  position: relative;
}

.menu-table .lead {
  font-size: 90%;
  margin-bottom: 2rem;
  margin-top: -1rem;
}

.tax {
  position: absolute;
  top: -2rem;
  right: 1rem;
  font-weight: bold;
  font-size: 90%;
  color: #4d3e39;
}

.menu-list {
  position: relative;
  display: flex;
  padding: 1.5rem;
  font-size: 18px;
  justify-content: space-between;
  box-shadow: -1px -1px 1px #e5dcd7, 1px 1px 1px #fff8f3;
  border-radius: 10px;
  margin-bottom: 2rem;
  background: #fdf8f9;
  align-items: center;
}

.menu-point {}

.menu-head {
  font-size: 1.5rem;
  line-height: 1.8;
  font-weight: 400;
  margin-right: 2rem;
  margin-bottom: 1rem;
  font-weight: bold;
  color: #4d3e39;
}

.menu-head-cut {
  padding-left: 3rem;
  background: url(../img/cut.png) no-repeat left;
  background-size: 2.5rem;
}

.menu-head-spa {
  padding-left: 3rem;
  background: url(../img/spa.png) no-repeat left;
  background-size: 2.5rem;
}

.menu-head-color {
  padding-left: 3rem;
  background: url(../img/color.png) no-repeat left;
  background-size: 2.5rem;
}

.menu-head-perma {
  padding-left: 3rem;
  background: url(../img/perma.png) no-repeat left;
  background-size: 2.5rem;
}

.cut-icon-list {
  display: flex;
  padding-top: .6rem;
}

.cut-icon-item {
  margin-right: .5rem;
}

.cut-icon-item img {
  width: 4rem;
}

.menu-item {
  display: flex;
  flex-direction: column;
  margin-right: 1rem;
  width: 100%;
}

.menu-item-ttl {
  font-weight: bold;
}

.menu-item-sub {
  font-size: 16px;
  color: #3a3a3a;
  margin-top: 0.2rem;
  padding-top: 0.2rem;
}

.menu-dtil {
  color: #eb6159;
  font-weight: 700;
  min-width: 6rem;
  text-align: right;
}

.menu-list-sp .menu-dtil {
  min-width: 13rem;
  color: #2d0f0d;
  font-weight: 700;
  text-align: right;
  margin-top: 1rem;
  line-height: 1;
}

.menu-list-sp .menu-dtil .price {
  font-size: 3rem;
  color: #EB6159;
}

.menu-list-sp .menu-dtil .c-line {
  position: relative;
  font-size: 1.6rem;
}

.menu-list-sp .menu-dtil .c-line::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  /* 線の太さ */
  background-color: #EB6159;
  /* 線の色 */
  top: 50%;
  /* テキストの中央に位置させる */
  transform: translateY(-50%);
}

/* ------炭酸泉ヘッドスパ-----------*/
.headspa {
  max-width: none;
}

.headspa .cnpt-flex {
  position: relative;
}

.headspa .cnpt-flex::before {
  position: absolute;
  width: 80%;
  height: 60vh;
  content: "";
  background: #fffaf8;
  bottom: -80%;
  right: 0;
}

.scroll-background .esthe .cnpt-flex::before {
  width: 40%;
  background: #ffe6de;
}

.scroll-after-container-background .esthe .cnpt-flex::before {
  width: 30%;
  background: #fffaf8;
  bottom: -10%;
  right: 0;
  height: 120vh;
}

.spa-list {
  padding: 1.5rem;
  box-shadow: -2px -2px 1px #e5dcd7, 2px 2px 2px #fff8f3;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  background: white;
}

.spa-item {
  font-size: 22px;
  padding: .5rem .5rem .5rem 0;
  border-bottom: 2px dashed #fff5f8;
}

.spa-item i {
  color: #eb6159;
  font-size: 110%;
  padding-right: .6rem;
}

.spa-b-txt {
  margin: 8rem 2rem 4rem;
  font-size: 2.6vw;
  text-align: center;
  font-family: "Sawarabi Mincho", serif;
  position: relative;
  color: #3a191c;
}

.spa-b-txt p {
  line-height: 1.8;
}

.spa-stky-container {
  display: flex;
  justify-content: center;
}


.stky-left {
  position: sticky;
  height: 100%;
  width: 50%;
  top: 0;
  display: flex;
  justify-content: center;
  padding: 39vh 0;
  overflow: hidden;
}

.stky-left::before {
  position: absolute;
  width: 35vw;
  height: 36vw;
  content: "";
  border-radius: 53% 62% 58% 77%;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  animation: 22s linear infinite rotation;
  background: linear-gradient(145deg, #e6d8d4, #fffffb);
  box-shadow: 15px 15px 15px #d9ccc8,
    -15px -15px 15px #ffffff;
}

@keyframes rotation {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

.stky-arrow {
  width: 3rem;
  margin: 0 auto;
}

.spa-step-ttl {
  text-align: left;
  font-family: "Sawarabi Mincho", serif;
  font-weight: 300;
  position: relative;
  color: #3a191c;
}

.spa-step-ttl__red {
  color: #eb6159;
  font-size: 4vw;
  letter-spacing: .5rem;
  line-height: 1.4;
}

.spa-step-ttl__top {
  font-size: 1.5vw;
}

.spa-step-ttl__btm {
  font-size: 2vw;
}

.stky-right--wrap {
  position: relative;
  margin: 3rem 2rem;
  background: #ffede7;
  box-shadow: 5px 5px 11px #f4e4de, -3px -3px 10px #fff8f8;
  padding: 2rem;
  border-radius: 14px;
  opacity: 0;
}

.stky-right--merit .stky-right--wrap {
  background: none;
  box-shadow: none;
  margin: 0 2rem;
}

.stky-right--merit {
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), rgb(249 201 185 / 35%) calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), rgb(249 201 185 / 35%) calc(100% - 1px));
  background-size: 26px 26px;
  background-repeat: repeat;
  background-position: center center;
  background-color: #ffffffb5;
}

.stky-right--merit .stky-right-step {
  position: relative;
  display: inline-block;
  padding: .5rem;
}

.stky-right--merit .stky-right-step::before {
  position: absolute;
  background-color: rgba(255, 255, 0, 0.5);
  content: "";
  width: 100%;
  height: 1rem;
  bottom: 0;
  z-index: -1;
}

.stky-right--wrap.powa-on {
  opacity: 1;
  animation: .5s cubic-bezier(0.34, 1.56, 0.64, 1) sura forwards;
}

@keyframes sura {
  0% {
    transform: translateX(150px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}


/*.stky-right--wrap::before {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: 2vw;
  height: 2vw;
  border-radius: 50%;
  box-shadow: inset 6px 6px 6px #c5c5c5,
    inset -6px -6px 6px #fbfbfb;
  background: #eb61590d;
}

.stky-right--wrap::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: 2vw;
  height: 2vw;
  border-radius: 50%;
  box-shadow: inset 6px 6px 6px #c5c5c5,
    inset -6px -6px 6px #fbfbfb;
  background: #eb61590d;
}*/

.stky-right {
  padding: 50vh 1rem 10vh;
  max-width: 800px;
  width: 50%;
  overflow: hidden;
}

.stky-right-step {
  color: #eb6159;
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1;
  margin-left: -.5rem;
}

.stky-right-cap {
  padding: 0 0 .5rem;
  font-size: 1.8rem;
  position: relative;
  margin-left: 0vw;
  margin-bottom: .5rem;
  color: #4d3e39;
}

.stky-lead {
  line-height: 1.8;
}

.stky-right-img {
  margin-top: -2vw;
}

.stky-right-img img {
  border-radius: 40px 40px 40px 0;
}

.stky-right-img figcaption {
  font-size: 20px;
  padding-top: 1rem;
}

.bubble {
  position: absolute;
  border-radius: 100%;
  box-shadow: 3px 3px 3px #e5dcd7, -3px -3px 3px #fff8f3;
  bottom: 1px;
  max-width: 90vw;
  background: rgba(255, 251, 251, 0.477);
  z-index: 0;
}

/* ------アクセス-----------*/
.access-ttl {
  padding-bottom: 30vh;
}

.g-map {
  display: flex;
  align-items: flex-end;
  position: relative;
  align-items: center;
  padding-bottom: 14%;
  margin-top: -12vh;
}

.g-map::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 80%;
  background: #fff5f8;
  z-index: -1;
  bottom: 0;
}

.g-map iframe {
  width: 65%;
  height: 70vh;
  padding: 1rem 0 1rem 1rem;
  background: #fff5f8;
}

.map-cap--wrap {
  width: 35%;
  padding: 0 2rem;
}

.map-cap--wrap img {
  width: 80%;
  padding-bottom: 2rem;
}

.map-cap {
  color: #3a191c;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.map-cap--item {
  width: 5rem;
  line-height: 2;
}

.facty-img--wrap {
  width: 100%;
  overflow: hidden;

  position: relative;
  padding-top: 30vh;
}

.facty-img {
  width: 200%;
  display: flex;
  animation: slide 100s linear infinite;
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

.facty-img--item {
  margin: 1rem;
  width: 50%;
}

.facty-img--item img {
  border-radius: 20px;
}

/*-----カレンダー--------/*/
table {
  border-collapse: collapse;
  width: 100%;
}

th,
td {
  border-bottom: 1px solid #bbb;
  text-align: center;
  background: transparent;
  width: 5vmin;
  height: 7vmin;
}

.current-month {
  background-color: white;
  /* 現在の月の日付の背景色 */
}

.other-month {
  color: #ddd;
  /* 他の月の日付の色 */
}

.holiday {
  background-color: #ffcccc;
  /* 定休日の背景色 */
}

.border-no th {
  border: none;
  text-align: left;
  height: 20px;
}

.table-cap {
  color: #666666;
  text-align: right;
}

.yajirusi {
  border-radius: 50px;
  margin-bottom: 2rem;
  padding: 1rem 2rem;
  background: #fcf1f5;
  box-shadow: 4px 4px 3px #F2E7ED,
    -4px -4px 3px #fffbff;
}

.kongetu {
  margin: 0 1rem;
}

.table-date {
  background: #fcf1f5;
  box-shadow: 4px 4px 3px #F2E7ED, -4px -4px 3px #fffbff;
  padding: 0.5rem 1rem;
  border-radius: 40px;
  margin-right: 1rem;
}

.table-niti {
  font-size: 1.5rem;
}

/*-----スタイリスト--------/*/
.stylist-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.stylist-list-wrap:first-child {
  width: 90%;
}

.stylist-list-wrap {
  display: flex;
  flex-direction: column;
  width: 45%;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e2c5cc;
}

.stylist-list-sub {
  color: #eb6159;
  font-size: 80%;
  font-weight: bold;
}

.stylist-list-ttl {
  background: #eb6159;
  color: white;
  padding: .5rem;
  margin: 1rem 0;
}

.stylist-list-name {
  color: #4d3e39;
  font-weight: 300;
  font-size: 1.5rem;
  letter-spacing: 5px;
  line-height: 1;
}

.stylist-list-kana {
  font-size: 90%;
  color: #eb6159;
}

/*-----フッター--------/*/
footer {
  width: 100%;
  color: white;
  background: #eb6159;
}

.btm-cont {
  padding-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ft-logo {
  width: 50%;
  max-width: 400px;
  margin-bottom: 4%;
}

.ft-tell {
  text-align: center;
}

.ft-tell h4 {
  font-size: 2rem;
  margin: 1rem 0;
}

.ft-tell-flex {
  display: flex;
  margin-top: 1rem;
}

.ft-tell-left,
.ft-tell-right {
  max-width: 450px;
}

.ft-tell-left {
  margin-right: 1rem;
}

.ft-tell-right {
  margin-left: 1rem;
}

.foot-nav {
  padding: 4rem 0;
}

.footer-btm .policy {
  text-align: right;
  margin-right: 2rem;
}

.footer-btm .policy a {
  color: white;
}

.btm-navi-ul {
  display: flex;
  justify-content: center;
}

.btm-navi-ul a {
  color: white;
  margin: 0.5rem;
  padding: 0.5rem;
}

.footer-btm {
  text-align: center;
  line-height: 2;
  padding: 1rem 0;
  font-size: 14px;
}


/*------着付けページ--------/*/
/*------メインビジュアル--------/*/
#kimono-mv {
  position: relative;
  overflow: hidden;
}

#start {
  animation-name: start;
  animation-duration: .5s;
  animation-delay: 1.2s;
  width: 110%;
  height: 100vh;
  background: white;
  position: absolute;
  z-index: 1;
  animation-timing-function: cubic-bezier(0.64, 0, 0.78, 0);
  animation-fill-mode: forwards;
}

#start2 {
  animation-name: start2;
  animation-duration: 1s;
  animation-delay: 1s;
  width: 140%;
  height: 100vh;
  background: white;
  position: absolute;
  z-index: 1;
  animation-timing-function: cubic-bezier(0.85, 0, 0.15, 1);
  animation-fill-mode: forwards;
}

@keyframes start {
  from {
    transform: translate(0, 0);
  }

  to {
    transform: translate(0, 100%);
  }
}

@keyframes start2 {
  0% {
    transform: translate(-5%, 0) skewX(-9deg);
    opacity: 1;
  }

  20% {
    opacity: 1;
  }

  100% {
    transform: translate(100%, 0%) skewX(-9deg);
    opacity: 0;
  }
}

.mv2 {
  position: relative;
  height: 100vh;
}

.mv2 ul {
  display: flex;
  overflow: hidden;
  background: white;
  width: 109vw;
  margin-left: -4vw;
}

.mv2 li {
  content: "";
  height: 100vh;
  background: white;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  transform: skewX(9deg);
  width: 27.2vw;
  overflow: hidden;
  position: relative;
}

.mv2 li.mv-item::before {
  position: absolute;
  content: "";
  background: #fcd1ce;
  width: 30vw;
  height: 100%;
  z-index: 2;
  transition: 0.1s .3s;
}

.mv2 li.mv-item.mvblack::before {
  transform: translateX(-101%);
}

.mv2 li.mv-item img {
  position: absolute;
  object-position: 50% 28%;
  top: 50%;
  left: 50%;
  width: 145%;
  height: 102%;
  object-fit: cover;
  transition: 0.2s;
}

.mv2 li.mv-item.mvblack img {
  animation-timing-function: ease;
  animation-fill-mode: forwards;
  animation-name: mv-item;
  animation-duration: 6s;
}

@keyframes mv-item {
  0% {
    transform: translate(-250%, -50%) skewX(-9deg) scale(1.11);
  }

  1% {
    transform: translate(-50%, -50%) skewX(-9deg) scale(1.05);
  }

  100% {
    transform: translate(-48%, -49.5%) skewX(-9deg) scale(1);
  }
}

.mv-fst {
  font-size: 3vw;
  background: rgb(255 255 255 / 80%);
  padding-left: 1rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.mv-sec {
  font-family: serif;
  letter-spacing: .4vw;
  font-size: 2vw;
  background: rgb(255 255 255 / 80%);
  padding-left: 1rem;
}

.mv-txt {
  position: absolute;
  bottom: 10%;
  left: 4%;
  color: #eb6159;
  z-index: 3;
  transition: .5s;
  overflow: hidden;
  width: 90vw;
  text-shadow: 0 0 8px rgb(255, 255, 255);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.mv-txt::before {
  position: absolute;
  width: 100%;
  height: 101%;
  content: "";
  background: white;
  z-index: 1;
  animation-timing-function: cubic-bezier(0.85, 0, 0.15, 1);
  animation-fill-mode: forwards;
  animation-name: mv-txt;
  animation-duration: 1s;
}

@keyframes mv-txt {
  from {
    transform: translate(0, 0);
  }

  to {
    transform: translate(0, 100%);
  }
}

.mv-txt img {
  padding-bottom: 2rem;
  max-width: 700px;
}

.mv-fst,
.secsion-ttl {
  font-family: serif;
}

#mask-line {
  display: none;
}

#kitsuke .cnpt-flex {
  align-items: center;
}

.kimono-plan {
  position: relative;
  overflow: hidden;
}

.kimono-plan-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 0 auto 18vw;
  position: relative;
}

#plan-dtil.kimono-plan-wrap {
  margin: 0 auto;
}

.kimono-plan-wrap:before {
  position: absolute;
  content: "";
  background: url(../img/kumol-left.png) no-repeat;
  width: 70vw;
  height: 27vw;
  bottom: -35%;
  left: -30vw;
  z-index: -1;
  background-size: contain;
}

#plan.powa-on.kimono-plan-wrap::before {
  animation: 4s cubic-bezier(0.34, 1.56, 0.64, 1) kumo;
  opacity: 1;
}

@keyframes kumo {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.kimono-plan-ttl {
  position: relative;
  font-size: 2vw;
  z-index: 1;
  color: #471716;
  padding: 0 5vw;
}

.kimono-plan-ttl::before {
  position: absolute;
  width: 4vw;
  height: 3vw;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: url(../img/hana-left.svg) no-repeat;
  z-index: -1;
}

.kimono-plan-ttl::after {
  position: absolute;
  width: 4vw;
  height: 3vw;
  content: "";
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  background: url(../img/hana-right.svg) no-repeat;
  z-index: -1;
}

.kumo-right {
  position: relative;
}

.kumo-right::before {
  position: absolute;
  content: "";
  background: url(../img/kumol-right.png) no-repeat;
  width: 70vw;
  height: 27vw;
  top: 3rem;
  right: -30vw;
  z-index: -1;
  background-size: contain;
  opacity: 0;
}

.powa-on.kumo-right::before {
  animation: 3s cubic-bezier(0.34, 1.56, 0.64, 1) kumo;
  opacity: 1;
}

@keyframes kumo {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.kumo-left {
  position: relative;
}

.kumo-left::before {
  position: absolute;
  content: "";
  background: url(../img/left-bg-line.png) repeat-y;
  width: 18vw;
  left: 0;
  top: -18%;
  height: 150%;
  z-index: 0;
  background-size: contain;
  opacity: .2;
  z-index: -3;
}

.kumo-left::after {
  position: absolute;
  content: "";
  background: url(../img/right-bg-line.png) repeat-y;
  width: 18vw;
  right: 0;
  top: -6%;
  height: 150%;
  z-index: 0;
  background-size: contain;
  opacity: .2;
  z-index: -3;
}

.plan-ttl {
  color: white;
  background-color: #EB6159;
  padding: 1rem 2rem;
  border-radius: 50px;
}

.kimono-h3 {
  font-size: 2vw;
  font-family: "Sawarabi Mincho", serif;
  font-weight: 300;
  font-style: normal;
  text-align: center;
  padding-bottom: 2rem;
  position: relative;
}

.kimono-h3 span {
  position: relative;
  padding: 0 1rem;
}

.kimono-h3 span::before {
  position: absolute;
  content: "";
  width: 0;
  height: 1rem;
  background-color: #ffee88;
  right: 0;
  left: 0;
  bottom: .5rem;
  margin: auto;
  z-index: -1;
  transition: 1s;
}

.powa-on.kimono-h3 span::before {
  width: 100%;
}

.plan3-list {
  display: flex;
  justify-content: center;
  width: 90%;
  max-width: 1280px;
  margin: 1rem auto 0;
}

.plan3-list::before {
  position: absolute;
  content: "";
  width: 100vw;
  background: url(../img/bg-zarapink.png);
  height: 90vh;
  z-index: -2;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: scaleX(0);
}

.powa-on.plan3-list::before {
  transform: skewY(10deg) scaleX(1);
  animation: .5s cubic-bezier(0.55, 0, 1, 0.45) obi;
}

@keyframes obi {
  0% {
    transform: skewY(10deg) scaleX(0);
  }

  100% {
    transform: skewY(10deg) scaleX(1);
  }
}

.plan3-item {
  margin: 1rem;
}

.plan3-list-lead-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.plan3-list-lead {
  background-color: #fff5f8;
  margin-bottom: .5rem;
  padding: 1rem 2rem;
  border-radius: 5px;
}

.komono-list {
  display: flex;
  justify-content: center;
  width: 90%;
  max-width: 1080px;
  margin-top: 4rem;
}

.komono-item {
  padding: 3rem 3rem 2rem 3rem;
  box-shadow: -1px -1px 1px #E5DCD7, 1px 1px 1px #fff8f3;
  width: 25%;
  border-radius: 50%;
  background: #fafafa;
  margin: 1rem;
  aspect-ratio: 1;
  overflow: hidden;
}

.komono-item img {
  width: 100%;
  max-height: 100%;
  transform: translateX(-150%);
  transition: .4s;
}

.omake-dtil img {
  transform: translateX(-150%);
  transition: .4s;
}

.powa-on.komono-item img {
  transform: translateX(0);
}

.powa-on.omake-dtil img {
  transform: translateX(0);
}

.plass {
  width: 5vw;
  margin: 2rem;
}

.kimono-omake-wrap {
  width: 90%;
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  max-width: 1080px;
}

.omake-dtil {
  display: flex;
  align-items: center;
  font-size: 16px;
  justify-content: center;
  overflow: hidden;
}

.omake-dtil p {
  width: 70%;
}

.kimono-omake-left {
  box-shadow: -1px -1px 1px #E5DCD7, 1px 1px 1px #fff8f3;
  background: #fafafa;
  border-radius: 50%;
  margin: 1rem;
}

.kimono-omake-right {
  box-shadow: -1px -1px 1px #E5DCD7, 1px 1px 1px #fff8f3;
  background: #fafafa;
  border-radius: 50%;
  margin: 1rem;
}

.kimono-omake-left,
.kimono-omake-right {
  width: 30vw;
  height: 30vw;
  max-width: 500px;
  max-height: 500px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.omake-ttl {
  position: relative;
  text-align: center;
  font-size: 2vw;
  font-weight: bold;
  color: #4d3e39;
  margin-bottom: 1rem;
  z-index: 1;
}

.omake-ttl::before {
  position: absolute;
  content: "";
  width: 0;
  height: 1rem;
  background-color: #ffda00;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  z-index: -1;
  transition: .5s;
}

.powa-on.omake-ttl::before {
  width: 90%;
}

.kimono-photo {
  display: flex;
  width: 90%;
  align-items: center;
  justify-content: space-between;
  border-radius: 20px;
  max-width: calc(1080px - 2rem);
}


.kimono-photo-txt-head {
  font-size: 2.4vw;
  font-family: "Sawarabi Mincho", serif;
  font-weight: 100;
  padding-bottom: 2rem;
}

.kimono-photo-txt-head span {
  color: #eb6159;
}

.kimono-photo-p-wrap {
  width: 45%;
  display: flex;
  justify-content: center;
  padding: 1rem;
}

.kimono-photo-txt-wrap {
  width: 58%;
  position: relative;
}

.kimono-photo-txt-wrap::before {
  position: absolute;
  content: "";
  width: 50vw;
  background: url(../img/photo-bg-right.png) no-repeat right;
  background-size: contain;
  height: 50vh;
  z-index: -2;
  top: 0;
  bottom: 0;
  right: -5vw;
  margin: auto;
  opacity: .7;
}

.kimono-photo-txt-cap {
  padding: .2rem 1rem;
  display: inline-block;
  font-size: 1.5vw;
  font-weight: bold;
  margin-bottom: .5rem;
  position: relative;
}

.kimono-photo-txt-cap::before {
  position: absolute;
  content: "";
  width: 0;
  height: 1rem;
  background-color: #ffda00;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  z-index: -1;
  transition: .5s;
}

.powa-on.kimono-photo-txt-cap::before {
  width: 90%;
}

.kimono-place-wrap {
  margin: 10rem auto 0;
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-bottom: 4rem;
}

.kimono-place-wrap::before {
  position: absolute;
  content: "";
  width: 100vw;
  background: url(../img/bg-zarapink.png);
  height: 100%;
  z-index: -2;
  top: 0;
  bottom: 0;
  margin: auto;
}

.kimono-place-wrap::after {
  content: "";
  position: absolute;
  background: url(../img/bg-zarapink.png);
  width: 10vw;
  height: 3vw;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  bottom: -2vw;
  z-index: 11;
}

.kimono-place-ttl {
  font-size: 2rem;
  padding: 1rem 2rem 0rem;
  background: url(../img/bg-zarapink.png);
  border-radius: 50px 50px 0 0;
  margin-top: -2rem;
  position: relative;
  z-index: 1;
}

.kimono-place-ttl::before {
  position: absolute;
  content: "";
  width: 90%;
  height: 1rem;
  background-color: #ffda00;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  z-index: -1;
}

.kimono-place {
  max-width: calc(1080px - 2rem);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 4rem auto 2rem;
}

.kimono-place-item {
  width: 29%;
  position: relative;
  border-radius: 7px;
  text-align: center;
  padding: 2rem;
  margin-bottom: 2rem;
  font-size: 1.4rem;
  color: #4d3e39;
  background: #fff1f4;
  box-shadow: inset 2px 2px 1px #e2c5cc, inset -2px -2px 1px #ffe3ea;
  transform: translateY(30px);
  opacity: 0;
  transition: .3s;
}

.kimono-place-item.powa-on {
  opacity: 1;
  transform: translateY(0);
}

.kimono-place-item span {
  position: absolute;
  top: 5px;
  left: 5px;
  font-size: 1.5rem;
  line-height: 1;
  color: #f9c9b9;
  font-weight: bold;
}

.kimono-cv-wrap {
  width: 100%;
  display: flex;
  background: white;
  position: relative;
  padding: 6rem 2rem;
  justify-content: center;
  z-index: 0;
}


.cv-left {
  width: 60%;
  max-width: 700px;
}

.cv-right {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 1.2vw;
  align-items: center;
  font-weight: bold;
  color: #eb6159;
}

.cv-right-ttl {
  font-weight: bold;
  color: #471716;
  position: relative;
  margin: 2rem 0 1rem;
  font-size: 3vw;
  padding: 0 5vw;
}

.cv-right-ttl::before {
  position: absolute;
  width: 4vw;
  height: 3vw;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: url(../img/hana-left.svg) no-repeat;
  z-index: -1;
}

.cv-right-ttl::after {
  position: absolute;
  width: 4vw;
  height: 3vw;
  content: "";
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  background: url(../img/hana-right.svg) no-repeat;
  z-index: -1;
}

.cv-right-kakaku {
  max-width: 1000px;
  color: #272727;
  width: 90%;
  position: relative;
  font-weight: 400;
  font-size: 90%;
  margin-bottom: 4rem;
  text-align: right;
}

.cv-right-kakaku::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1rem;
  background-color: #ffda00;
  right: 0;
  left: 0;
  bottom: 2rem;
  margin: auto;
  z-index: -1;
}

.cv-tel {
  background: white;
  padding: 1rem 0;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.cv-tel img {
  width: 80%;
  max-width: 1080px;
}

.cont-wrap.clean {
  display: flex;
  background-color: #EB6159;
}

.clean img {
  width: 90%;
  max-width: 900px;
}

.clean-wrap {
  width: 100%;
  text-align: center;
}

.clean .menu-ttl {
  top: 2rem;
}


@media screen and (max-width: 1024px) {
  .nav-logo img {
    width: 140px;
  }

  .header {
    padding: 0.5rem 1rem;
  }

  .head-tel {
    display: none;
  }

  /*------着付けトップ--------/*/
  .mv2 ul {
    width: 113vw;
  }

  .mv2 li.mv-item img {
    width: 195%;
  }

  .mv2 li {

    width: 28vw;
  }
}

/*------タブレット--------/*/
@media screen and (max-width: 820px) {
  .sp-only {
    display: block;
  }

  .pc-only {
    display: none;
  }

  .secsion-ttl {
    padding-bottom: 2rem;
    margin-bottom: 10vh;
    top: 0;
  }

  .saite-ttl {
    font-size: 1rem;
    letter-spacing: .5rem;
  }

  main {
    margin-top: 70px;
  }

  .cont-wrap {
    padding-top: 20px;
    margin: 0 10px;
  }

  .clean.cont-wrap {
    margin: 0;
    flex-direction: column;
    padding-top: 8rem;
  }

  .cnpt-left img {
    border-radius: 50px 50px 50px 0%;
  }

  /*----MV--------/*/
  .mv-right::after {
    height: calc(100vh - 70px);
    background-color: rgb(255 171 194 / 3%);
    opacity: .7;
  }

  .mv-right video {
    height: calc(100vh - 70px);
  }

  .mv-logo {
    position: absolute;
    top: 50vh;
    left: 50%;
    width: 200px;
    margin-left: 0;
    transform: translate(-50%, -50%);
  }

  .mv-logo img {
    width: 200px;
    height: 200px;
  }

  .mv-left {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    justify-content: flex-start;
  }


  .mv-catch--top {
    padding: 0.5rem 1rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
  }

  .mv-catch--btm {
    padding: 0.5rem 2rem;
    font-size: 1.3rem;
  }

  .mv-right {
    width: 100%;
    height: calc(100vh - 70px);
    top: 70px;
  }


  .mv-catch {
    margin-left: 0;
  }

  #splash_logo svg {
    width: 200px;
    height: 200px;
  }

  .logo {
    opacity: 1;
  }

  .head-nav,
  .btm-cont {
    display: none;
  }

  .header {
    position: fixed;
    height: 70px;
    padding: 0.5rem 1rem;
  }

  .nav-logo img {
    width: 120px;
  }

  /*------スマホLINEボタン------/*/
  .sp-line {
    margin-left: 1rem;
    width: 110px;
  }

  .sp-line figcaption {
    font-size: 10px;
  }

  .sp-line img {
    width: 100px;
  }

  /*------スマホメニュー------/*/

  .menu {
    position: fixed;
    right: 0;
    top: 0;
    width: 70px;
    z-index: 99;
    background: #eb6159;
    height: 70px;
    padding: 0.5rem 1rem;
  }

  .menu__line {
    background: #fff;
    display: block;
    height: 2px;
    position: absolute;
    transition: transform .3s;
    right: 0;
    left: 0;
    width: 60%;
    margin: auto;
  }

  .menu__line--bottom {
    bottom: 44px;
  }

  .menu__line--top {
    top: 36px;
  }

  .menu__line--txt {
    bottom: 5px;
    position: absolute;
    color: white;
    font-size: 60%;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
  }

  .menu__line--top.active {
    top: 0;
    bottom: 0;
    margin: auto;
    transform: rotate(45deg);
  }

  .menu__line--bottom.active {
    top: 0;
    bottom: 0;
    margin: auto;
    transform: rotate(135deg);
  }

  .gnav {
    display: none;
    height: 100%;
    position: fixed;
    width: 100%;
    z-index: 98;
    padding: 1rem;
    background-image: url(../img/bg-zara.jpg);
    background-size: 50%;
    background-repeat: repeat;
    overflow-y: scroll;
  }

  .gnav.menu-on {
    display: block;
  }

  .gnav-logo {
    text-align: left;
  }

  .gnav-logo img {
    width: 50%;
  }

  .gnav-ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 2rem;
  }

  .gnav-list {
    width: 32%;
    position: relative;
    margin: 1% 0;
    background: #ffeeed;
    box-shadow: 4px 4px 3px #F2E7ED, -4px -4px 3px #fffbff;
    border-radius: 20px;
  }

  .gnav-link {
    color: #4d3e39;
    margin: 0;
    padding: 0 1vw;
    display: block;
    transition: .5s;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    font-size: 3vw;
    font-weight: bold;
  }

  .gnav-link span {
    position: absolute;
    bottom: 18px;
    font-size: .8rem;
    color: #eb6159;
  }

  .gnav .ft-tell {
    margin-top: 3rem;
  }

  .gnav .ft-tell h4 {
    font-size: 3vw;
  }

  /*------スマホフッター固定メニュー------/*/
  .sp-btm-menu {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 60px;
    z-index: 10;
    transform: translateY(100%);
    transition: .6s;
  }

  .sp-btm-menu.nyoki {
    transform: translateY(0);
    transition: .6s;
  }

  .sp-btm-flex {
    display: flex;
    height: 60px;
    z-index: 11;
  }

  .sp-btm-tel {
    background-color: #4aba86;
    width: calc(50% - 30px);
  }

  .sp-btm-web {
    background-color: #ae2b5b;
    width: calc(50% - 30px);
  }

  .sp-btm-access {
    background-color: #70332e;
    width: 60px;
  }

  .sp-btm-flex li {
    position: relative;
  }

  .sp-btm-flex li img {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
  }

  .sp-btm-flex li.sp-btm-access img {
    width: 40px;
  }

  .sp-btm-flex li.sp-btm-tel img,
  .sp-btm-flex li.sp-btm-web img {
    width: 7rem;
  }

  /*------コンセプト------/*/
  .menu-h3 {
    font-size: 1.5rem;
    padding-bottom: 30px;
  }

  .cnpt-flex {
    flex-direction: column;
  }

  .cnpt-left {
    width: 100%;
    margin: auto;
    padding: 2rem;
  }

  .cnpt-left.powa-on img {
    transition: 2s 1s;
    border-radius: 30px 30px 30px 0;
  }

  .cnpt-right {
    width: 100%;
    margin-top: -3rem;
    padding-top: 5rem;
    justify-content: center;
  }

  .cnpt-ttl {
    position: absolute;
    top: 0;
    left: auto;
    width: 100%;
  }

  .cnpt-right--txt {
    margin-left: 0rem;
    width: 100%;
    margin: 2rem;
  }

  .cnpt-right--txt .lead {
    font-size: 18px;
  }

  .conpt-hl {
    font-size: 6vw;
    text-align: center;
    line-height: 1.4;
  }

  /*------メニュー------/*/
  .menu-wrap {
    margin-top: 3rem;
    padding-top: 6rem;
  }

  .menu-list {
    padding: 0.5rem 1rem;
    font-size: 18px;
    margin-bottom: 1rem;
    flex-direction: column;
  }

  .menu-dtil {
    align-self: flex-end;
    min-width: 0;

  }

  .tax {
    top: -1.5rem;
    right: .5rem;
    font-size: 80%;
  }

  .menu-head {
    margin-right: 0;
    padding-bottom: 0.5rem;
  }

  .rokuyou-flex form {
    padding: 1rem;
    width: 50%;
  }

  .rokuyou-flex form .ft-tell h4 {
    font-size: 1rem;
  }

  .yajirusi,
  .table-date {
    border-radius: 10px;
    padding: 4px 20px;
  }

  .border-no th {
    text-align: center;
    height: 70px;
  }

  .footer-btm {
    padding: 1rem 0 70px;
  }

  /*------ヘッドスパ------/*/
  .stky-left::before {
    box-shadow: 5px 5px 5px #D9CCC8,
      -5px -5px 5px #ffffff;
  }

  .stky-left {
    width: 50%;
  }

  .stky-right {
    width: 58%;
  }

  .spa-step-ttl__top,
  .spa-step-ttl__btm {
    font-size: 1.5rem;
  }

  .spa-step-ttl__red {
    font-size: 3rem;
  }

  .spa-b-txt {
    font-size: 4.6vw;
  }

  .headspa .cnpt-flex::before {
    width: 90%;
    height: 40vh;
    background: #fff8f3;
    bottom: -49%;
    filter: blur(15px);
  }

  .stky-right--merit .stky-right--wrap {
    margin: 0;
  }

  .stky-left {
    top: 30vh;
    padding: 10vh 0;
  }

  .stky-right--wrap {
    border-radius: 20px 20px 20px 0;
  }

  .stky-right-img img {
    border-radius: 10px 10px 10px 0;
  }

  /*------エステ------/*/
  .esthe.cont-wrap {
    margin: 0;
    padding-top: 90vh;
  }

  .esthe .cnpt-left {
    width: 100%;
    padding: 0;
    position: relative;
  }

  .esthe .cnpt-left.powa-on img {
    border-radius: 0;
  }

  .esthe .cnpt-right {
    margin: auto;
    width: 100%;
  }

  .esthe .cnpt-right img {
    width: 95%;
  }

  .esthe .conpt-hl {
    font-size: 6.5vw;
    padding-left: 0;
  }

  .esthe .cnpt-right {
    padding-top: 0;
    top: 0;
  }

  .esthe .cnpt-right--txt {
    padding-top: 0;
  }

  .esthe .cnpt-ttl {
    top: -60vh;
  }

  .esthe .cnpt-flex::before {
    background: none;
  }

  .scroll-after-container-background .esthe .cnpt-flex::before {
    filter: none;
    height: 180vh;
    top: 0;
    bottom: auto;
    margin: 0;
    right: 0;
  }

  /*------スタイリスト------/*/
  .media {
    padding: 40vh 0 0;
  }

  .slider {
    padding: 2rem;
    margin-left: 0;
    flex-direction: column;
  }

  .slide {
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    margin-right: 0;
  }

  .slide img {
    max-width: 500px;
    width: 40%;
  }

  .staff-lead {
    padding: 0 1rem;
  }

  .staff-name {
    font-size: 23px;
    margin: 1rem;
  }

  .staff-copy {}

  .bcard-title {
    font-size: 15px;
  }

  .btn-wrap::before {
    height: 1.4rem;
  }

  .btn-wrap {
    width: 50%;
  }

  .staff {
    margin-top: 0rem;
  }

  /*------アクセス--------/*/
  .facty-img--wrap {
    padding-top: 20vh;
  }

  .g-map::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
  }

  .g-map {}

  .map-cap--wrap {
    width: 100%;
    background: #fff5f873;
    padding-top: 1rem;
  }

  .g-map iframe {
    width: 100%;
    height: 30vh;
    padding: 0;
  }

  .map-cap--wrap img {
    width: 80%;
    max-width: 430px;
  }



  /*------着物ページ--------/*/

  #kimono-mv {
    position: relative;
    overflow: hidden;
  }

  .mv2 {
    position: relative;
    height: 100vh;
    ;
  }

  .mv2 ul {
    display: flex;
    overflow: hidden;
    background: #111111;
    width: 114vw;
    margin-left: -7vw;
    flex-wrap: wrap;
    transform: skewX(0);
    transform-style: preserve-3d;
    height: 100%;
  }

  .mv2 li {
    height: 50vh;
    width: 50%;
    transform: skewX(0);
  }


  .mv2 li.mv-item::before {
    width: 39vw;
  }

  .mv2 li.mv-item img {
    width: 110%;
    transform: skewX(0);
    object-position: 50% 16%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }

  @keyframes mv-item {
    0% {
      transform: translate(-250%, -50%) skewX(-3deg) scale(2.11);
    }

    1% {
      transform: translate(-50%, -50%) skewX(-3deg) scale(1.05);
    }

    100% {
      transform: translate(-48%, -49.5%) skewX(-3deg) scale(1);
    }
  }

  .mv-txt {
    bottom: 46%;
    width: 90vw;
    left: 0;
  }

  .mv-txt img {
    padding-left: 1rem;
    max-width: 60%;
  }

  .mv-fst {
    font-size: 1.2rem;
    padding-right: 1rem;
  }

  .mv-sec {
    font-size: 1rem;
    padding-right: 1rem;
  }

  #start2 {
    animation-delay: 1.3s;
    animation-duration: 2s;
    width: 400%;
  }

  #kimono-page main {
    margin-top: 0;
  }

  .kimono-plan {
    padding-top: 5rem;
  }

  #kitsuke.kimono-plan {
    padding-top: 1rem;
  }

  #kimono-plan.cont-wrap {
    margin: 0 0px;
  }

  #kitsuke .cnpt-right--txt .lead {
    padding-right: 0;
    font-size: 16px;
  }

  .kimono-h3 {
    font-size: 1.8rem;
  }

  .komono-item {
    padding: 2rem 2rem 1rem 2rem;
  }

  .kimono-plan-ttl,
  .cv-right-ttl {
    font-size: 2rem;
    padding: 0 2.6rem;
  }

  .cv-right-ttl::before,
  .cv-right-ttl::after,
  .kimono-plan-ttl::before,
  .kimono-plan-ttl::after {
    width: 2.5rem;
    height: 2rem;
  }

  /*------着物コンセプト--------/*/
  .plan3-list::before {
    height: 40vh;
    transform: skewY(16deg);
  }

  .plan3-list-lead {
    background-color: #fff5f8b8;
    margin: 0;
    padding: .5rem 2rem;
    border-radius: 0;
    font-size: 15px;
    width: 80%;
  }

  .kimono-omake-wrap {
    width: 96%;
  }

  .kimono-omake-right,
  .kimono-omake-left {
    padding: 2rem 0;
  }

  .omake-dtil p {
    width: 50%;
  }

  .omake-ttl {
    font-size: 1.5rem;
  }

  .omake-ttl::before {
    width: 0;
    transition: .5s;
  }

  .powa-on.omake-ttl::before {
    width: 60%;
  }

  .omake-dtil {
    font-size: 14px;
  }

  .omake-item {
    font-size: 12px;
  }

  .kimono-photo-txt-head {
    font-size: 1.4rem;
  }

  .kimono-photo-txt-cap,
  .kimono-place-ttl {
    font-size: 1.6rem;
  }

  .kimono-photo-txt-lead {
    font-size: 16px;
  }

  .kimono-photo-p-wrap,
  .kimono-photo-txt-wrap {
    width: 50%;
  }

  .kimono-photo-txt-wrap::before {
    width: 70vw;
    height: 70vh;
    right: 13vw;
    opacity: .5;
  }

  .kimono-place {
    width: 90%;
  }

  .kimono-place-item {
    padding: 1.5rem 0;
    font-size: 1.2rem;
  }

  .kimono-place-item span {
    font-size: 1rem;
    color: #eb6159;
  }

  .cv-left,
  .cv-right {
    width: 50%;
  }

  .cv-txt {
    font-size: 1.2rem;
  }

  .kimono-plan-wrap.kumo-left {
    margin-bottom: 0;
  }

  .clean-wrap {
    padding-bottom: 1rem;
  }
}


/*------スマホ--------/*/
@media screen and (max-width: 599px) {

  /*----コンセプト--------/*/
  .conpt-hl,
  #stylist .conpt-hl {
    font-size: 8vw;
  }

  .cnpt-left {
    padding: 1rem;
  }

  .cnpt-right--txt {
    margin: 0;
  }

  .cnpt-right--txt .lead {
    padding: 1rem;
    line-height: 1.5;
  }

  /*----メニュー--------/*/
  .rokuyou-flex {
    flex-direction: column-reverse;
  }

  .rokuyou-flex form {
    position: relative;
    width: 100%;
  }

  .menu-table--wrap {
    width: 100%;
  }

  .table-niti {
    font-size: 1.2rem;
  }

  /*------ヘッドスパ--------/*/
  .spa-list {
    padding: 0.6rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
  }

  .spa-item {
    font-size: 18px;
  }

  .spa-b-txt {
    margin: 2rem 0.2rem;
    font-size: 21px;
    text-align: left;
  }

  .headspa .cnpt-flex::before {
    right: 0;
    left: 0;
    margin: auto;
  }

  .spa-stky-container {
    flex-direction: column;
  }

  .stky-left {
    width: 100%;
    overflow: hidden;
    padding: 39vh 3rem 3rem;
    position: relative;
    top: 0;
  }

  .stky-left::before {
    top: auto;
    bottom: 2rem;
    box-shadow: 2px 2px 5px #d9ccc8, -2px -2px 15px #ffffff;
  }

  .bubble {
    z-index: 0;
  }

  .spa-step-ttl-wrap {
    position: relative;
    z-index: 11;
  }

  .spa-step-ttl {
    text-align: center;
  }

  .spa-step-ttl__top {
    font-size: 2rem;
  }

  .spa-step-ttl__red {
    font-size: 3rem;
  }

  .spa-step-ttl__btm {
    font-size: 2rem;
  }

  .stky-right--wrap {
    border-radius: 10px;
    padding: 5rem 1rem 1rem;
    margin: 2rem 0;
    box-shadow: none;
    background: none;
  }

  .stky-right--merit .stky-right--wrap {
    padding: 1rem;
  }

  .stky-right--merit .stky-right--wrap {
    margin: 0;
  }

  .stky-right {
    padding: 5rem 0 0;
    width: 100%;
  }

  .stky-right-step {
    font-size: 60px;
    margin-left: 0;
    margin-top: -9rem;
    color: #f9c9b9;
  }

  .stky-right--merit .stky-right-step {
    font-size: 20px;
    margin-left: 0;
    margin-top: -2rem;
    color: #eb6159;
  }

  .stky-right-cap {
    font-size: 22px;
    margin-left: -1rem;
    padding: 0.2rem 1rem;
    color: #eb6159;
  }

  .stky-right-img figcaption {
    font-size: 18px;
  }

  .stylist-list-ttl {
    margin: 1rem;
  }

  .stylist-list-name {
    font-size: 1.2rem;
  }

  .stylist-list-kana {
    font-size: 80%;
  }

  .stylist-list-sub {
    font-size: 70%;
  }

  .esthe .conpt-hl {
    font-size: 8vw;
  }

  /*------スタイリスト--------/*/
  .media {
    padding: 70vh 0 13rem;
    margin: 0;
  }

  .slide {
    flex-direction: column;
  }

  .media-ttl {
    margin-top: -40vh;
  }

  .slide img {
    width: 70%;
  }

  .slider {
    padding: 0;
  }

  .staff {
    margin-top: -5rem;
  }

  .staff-copy {
    padding-left: 1rem;
  }

  #slider-container {
    transform: translateX(0);
  }

  .secsion-ttl {
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
  }

  .media-ttl {
    top: 50vh;
  }


  /*----アクセス--------/*/

  .g-map {
    flex-direction: column;
  }

  .facty-img {
    width: 380%;
  }

  .map-cap--wrap {
    width: 100%;
    margin: auto;
    padding: 2rem 1rem 0 1rem;
  }

  .map-cap--wrap img {
    width: 60%;
    margin-top: -2%;
    padding-bottom: 1rem;
  }

  .g-map iframe {
    width: 100%;
    height: 30vh;
    margin: auto;
    padding: 1rem;
  }

  .map-cap {
    align-items: baseline;
    flex-wrap: nowrap;
  }

  /*----メニュー--------/*/
  .menu-table {
    width: 100%;
    min-width: 0;
    box-shadow: none;
    background: none;
    padding: 0rem;
  }

  .esthe .menu-table {
    padding: 1rem;
  }

  .scroll-after-container-background .esthe .cnpt-flex::before {
    filter: none;
    height: 200vh;
    top: 0;
    bottom: auto;
    margin: 0;
    right: 0;
    left: auto;
    background: #fff5f8;
  }

  /*----スマホメニュー--------/*/
  .gnav .ft-tell h4 {
    font-size: 1.2rem;
  }

  .gnav .ft-tell-flex {
    flex-direction: column;
  }

  .gnav .ft-tell-left,
  .gnav .ft-tell-right {
    margin: 0;
  }

  /*----着物ページ--------/*/

  .kumo-left::after {
    width: 25vw;
    right: 0;
    top: -6%;
    height: 150%;
    z-index: 0;
    background-size: contain;
    opacity: .4;
    z-index: -3;
  }

  #kitsuke .cnpt-right--txt .lead {
    padding: 0;
    font-size: 15px;
  }

  .kimono-plan-ttl,
  .cv-right-ttl {
    font-size: 1.5rem;
  }

  .kumo-right::before {
    width: 120vw;
    height: 47vw;
    top: 1rem;
    right: -52vw;
  }

  .kimono-plan-wrap:before {
    width: 120vw;
    height: 32vw;
    bottom: -5rem;
    left: -63vw;
    z-index: 1;
  }

  .kumo-left::before {
    position: absolute;
    content: "";
    background: url(../img/left-bg-line.png) repeat-y;
    width: 25vw;
    left: 0;
    top: -18%;
    height: 150%;
    z-index: 0;
    background-size: contain;
    opacity: .4;
    z-index: -3;
  }

  .kimono-h3 {
    font-size: 1.4rem;
    padding: 1rem
  }

  .plan3-list {
    width: 100%;
  }

  .plan3-item {
    margin: 0;
  }

  .plan3-list-lead-wrap {
    background-color: #fff5f8db;
    width: 96%;
    padding: 1rem 1rem 3rem;
    margin-top: -2rem;
  }

  .plan3-list-lead {
    padding: 0;
    background-color: transparent;
    width: 100%;
  }

  .kimono-plan-wrap {
    margin: 0 auto 6rem;
  }

  .komono-list {
    flex-wrap: wrap;
    justify-content: space-around;
  }

  .komono-item {
    padding: 1rem;
    margin: 0 0 1rem 0;
    width: 40vw;
    height: 40vw;
  }

  .plass {
    width: 3rem;
  }

  .kimono-omake-wrap {
    flex-direction: column;
  }

  .kimono-omake-right,
  .kimono-omake-left {
    width: 90vw;
    height: 90vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .omake-dtil p {
    width: 70%;
  }

  .kimono-photo {
    flex-direction: column;
  }

  .kimono-photo-p-wrap,
  .kimono-photo-txt-wrap {
    width: 100%;
    padding: 0;
  }

  .kimono-photo-txt-cap {
    padding: 0;
  }

  .kimono-photo-txt-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .kimono-photo-txt-wrap::before {
    width: 100vw;
    height: 100vw;
    right: 0;
  }

  .kimono-cv-wrap {
    padding: 3rem 1rem;
    flex-direction: column;
  }

  .cv-left,
  .cv-right {
    width: 100%;
  }

  .cv-txt {
    font-size: 1rem;
    background: rgb(255 255 255 / 80%);
    padding: 1rem 1rem;
  }

  .kimono-photo-txt-cap,
  .kimono-place-ttl {
    font-size: 1.2rem;
  }

  .cv-right {
    margin-top: -6rem;
  }

  .cv-right-ttl {
    margin: 0rem 0 1rem;
  }
}