@charset "UTF-8";

html {
  font-size: 62.5%;
}

img {
  width: 100%;
}

a {
  text-decoration: none;
}

body {
  font-size: 1.6rem;
  background-color: #fee8ee;
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
}

.inner {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}

img {
  width: 100%;
  vertical-align: top;
}

/*-----------------------------------
 accordion 
 -----------------------------------*/

.cp-box1 {
  position: relative;
  max-width: 750px;
  margin: 0 auto;
}

.cp-box1 input {
  display: none;
}

.cp-box1 .cp-container {
  overflow: hidden;
  max-height: 400px;
  transition: max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@media screen and (min-width: 768px) {
  .cp-box1 .cp-container {
    max-height: 700px;
  }
}

.cp-box1 input:checked~.cp-container {
  max-height: 2000px;
}

/* --- もっとみる --- */
.show-more-label {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 35%;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 6rem;
  z-index: 10;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 80%);
  transition: 0.3s;
}

.show-more-label span {
  font-size: 3rem;
  font-weight: 700;
  color: #404040;
  text-shadow: 3px 3px 0px #fff;
  letter-spacing: 0.1em;
}

/* 表示切り替え：開いた時 */
.show-more-label .text-close {
  display: none;
}

.cp-box1 input:checked~.show-more-label .text-view-more {
  display: none;
}

.cp-box1 input:checked~.show-more-label .text-close {
  display: inline;
}


.cp-box1 input:checked~.show-more-label {
  height: 80px;
  background: none;
}

/* --- VLOGボタン --- */
.accordion-content {
  position: relative;
  width: 100%;
  padding-bottom: 10rem;
  background-color: #fff;
}

.contract {
  width: 100%;
  display: block;
}

.vlog-btn-wrap {
  position: absolute;
  left: 50%;
  bottom: 15%;
  transform: translateX(-50%) translateY(20px);
  width: 80%;
  max-width: 500px;
  opacity: 0;
  transition: all 0.5s ease 0.4s;
  z-index: 5;
}

.vlog-btn-wrap img {
  width: 100%;
  height: auto;
}

.cp-box1 input:checked~.cp-container .vlog-btn-wrap {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}


.modal-video {
  background: rgba(255, 230, 235, 0.9) !important;
}


.modal-video-inner {
  background: transparent !important;
}


.modal-video-close-btn {
  display: block !important;
  width: 40px !important;
  height: 40px !important;
  top: 20px !important;
  right: 20px !important;
}


.modal-video-close-btn::before,
.modal-video-close-btn::after {
  background-color: #ff69b4 !important;
  height: 5px !important;
}


.modal-video-movie-wrap {
  padding-bottom: 177.77% !important;
  max-width: 675px;
  max-height: 80vh;
  margin: 0 auto;
  border-radius: 20px !important;
  overflow: hidden !important;
}

.modal-video-movie-wrap>video,
.modal-video-movie-wrap>iframe {
  width: 100% !important;
  height: 100% !important;
}

@media screen and (max-width: 768px) {
  .modal-video-movie-wrap {
    max-width: 80%;
  }
}

/*-----------------------------------
 swiper 
 ------------------------------------*/

.swiper-wrapper {
  width: 100%;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #333;
}

.flow-section .inner {
  position: relative;
}

.flow-section .flow-bg {
  width: 100%;
  display: block;
}

.flow-section .flow-slider {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 1;
  padding: 0 40px;
  box-sizing: border-box;
  overflow: hidden;
}

.flow-slider .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100% !important;
  flex-shrink: 0;
  box-sizing: border-box;
  padding: 0 20px;
}

.flow-section .flow-slider {
  padding-bottom: 50px;
  box-sizing: border-box;
}

.flow-slider .swiper-pagination {
  bottom: 5px !important;
}

.flow-slider .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
}

.flow-slider .swiper-pagination-bullet-active {
  background: #65aadd;
}

.flow-slider .swiper-button-prev,
.flow-slider .swiper-button-next {
  color: #65aadd;
  border: 10px;
}

/* -----------------------------------
cta-btn
----------------------------------- */

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 62.5%;
}

.btn,
a.btn,
button.btn {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 4.4rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #212529;
  text-decoration: none;

  display: flex;
  align-items: center;
  justify-content: center;
  width: 90%;
  max-width: 67.5rem;
  height: 15rem;
  margin: 0 auto;

  cursor: pointer;
  user-select: none;
  transition: all 0.3s;

  border-radius: 0.5rem;
  position: relative;
  text-align: center;
  vertical-align: middle;
  padding: 0;

  overflow: hidden;
}

@media screen and (max-width: 750px) {
  html {
    font-size: 1.5vw;
  }

  .btn,
  a.btn,
  button.btn {
    height: 14rem;
    font-size: 4rem;
  }

  .fv .cta-box .cta-note {
    font-size: 3rem;
  }
}

a.btn--green {
  color: #fff;
  background-color: #61e4b4;
  border-bottom: 10px solid #35b98b;
}

a.btn--green:hover {
  margin-top: 3px;
  color: #fff;
  background: #7becc3;
  border-bottom: 5px solid #35b98b;
}

.cta .cta-box .cta-note,
.cta .cta-box02 .cta-note,
.cta .cta-box03 .cta-note {
  font-size: 3.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.2rem;
  text-shadow: 2px 2px 0px #fff;
  letter-spacing: 0.1em;
  color: #35b98b;
}
a.btn--shadow {
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
  box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
}

.cta {
  position: relative;
}

.cta img {
  display: block;
  width: 100%;
  height: auto;
}

.cta .cta-box {
  position: absolute;
  left: 50%;
  bottom: 3%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  z-index: 10;
}

.cta .cta-box02 {
  position: absolute;
  left: 50%;
  bottom: -2%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  z-index: 10;
}

.cta .cta-box03 {
  position: absolute;
  left: 50%;
  bottom: 3%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  z-index: 10;
}


a.btn--green:before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;

  background: linear-gradient(120deg,
      rgba(255, 255, 255, 0) 30%,
      rgba(255, 255, 255, 0.8) 50%,
      rgba(255, 255, 255, 0) 70%);

  animation: kiran 2.5s infinite;
}

@keyframes kiran {
  0% {
    left: -150%;
  }

  40% {
    left: 150%;
  }

  100% {
    left: 150%;
  }
}

/* Safari用 */
@-webkit-keyframes kiran {
  0% {
    left: -150%;
  }

  30% {
    left: 150%;
  }

  100% {
    left: 150%;
  }
}


/* 動画カルーセル */
.video-slider .swiper-slide video {
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  display: block;
  border-radius: 20px;
  border: 15px solid #fff;
}

.video-slider {
  max-width: 750px;
  margin: 0 auto;
}

.video-slider .swiper-wrapper {
  will-change: transform;
  transition-timing-function: linear !important;
}

.influencer-section {
  position: relative;
}

.influencer-inner {
  position: relative;
  z-index: 1;
}

.slider_wrap2 {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 2;
}


.video-slider .swiper-slide {
  width: 450px !important;
  margin: 0 20px !important;
}

@media (max-width: 768px) {
  .video-slider .swiper-slide {
    width: 55% !important;
    margin: 0 15px !important;
  }

  .video-slider {
    max-width: 100%;
  }

  .video-slider .swiper-slide video {
    border: 10px solid #fff;
  }

  .slider_wrap2 {
    bottom: 9%;
  }
}




/*-------------------------- 
サロン案内
--------------------------  */

.purple_bg {
  background: #feffff;
}

.shop_info {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}

.inner {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}

.store-block {
  text-align: left;
  margin: 0 15px 0;
  font-size: 16px;
}

.store-block:nth-of-type(n + 2) {
  margin-top: 10px;
}

.store-block h3 {
  margin: 0;
  padding: 15px 0;
  font-size: 3rem;
}

p.caption {
  margin: 0;
  padding: 0 15px;
  text-align: center;
  font-size: 12px;
  color: #666;
  line-height: 1.6;
}

@media all and (max-width: 640px) {
  p.caption {
    font-size: 10px;
    text-align: left;
  }
}

.store-area {
  background: #65aadd;
  font-size: 1.273em;
  /* font-family: "fot-tsukuardgothic-std,sans-serif" !important; */
  font-family: "Noto Sans JP", sans-serif !important;
  font-style: normal;
  font-weight: 400;
  color: #fff;
  text-align: center;
  padding: 0.6em 0;
  cursor: pointer;
  position: relative;
  transition: opacity .2s;
}

@media all and (max-width: 640px) {
  .store-area {
    font-size: 22px !important;
  }
}

.store-area:hover {
  opacity: .8;
}

.store-area::after {
  content: "";
  background: url("../img/arrow.png") no-repeat center top/contain;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%) rotate(0deg);
  transition: transform .4s;
}

@media all and (max-width: 640px) {
  .store-area::after {
    width: 24px;
    height: 24px;
    right: 0.5em;
  }
}

.store-area.js-active::after {
  content: "";
  background: url("../img/arrow.png") no-repeat center top/contain;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%) rotate(90deg);
  transition: transform .4s;
}

@media all and (max-width: 640px) {
  .store-area.js-active::after {
    width: 24px;
    height: 24px;
    right: 0.5em;
  }
}

.store-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-items: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: stretch;
  align-items: stretch;
  background: #e6f4f7;
}

.store-region {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-flex: auto;
  -ms-flex-positive: auto;
  flex-grow: auto;
  width: 2em;
  max-width: 56px;
  line-height: 1.2;
  background: #6c9ab3;
  font-size: 1.273em;
  -webkit-writing-mode: vertical-rl;
  -moz-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -ms-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  padding: 1em 0 1em;
  margin: 10px 0;
  color: #fff;
  text-align: center;
  border-right: 3px solid #e6f4f7;
}

.store-body:nth-of-type(n + 2) {
  border-top: 3px solid #e6f4f7;
}

.store-box {
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  padding: 10px;
  box-sizing: border-box;
}

.store-desc {
  background: white;
  line-height: 1.4;
  padding: 1em .9em 1.8em;
}

.store-desc:nth-of-type(n + 2) {
  border-top: 10px solid #e6f4f7;
}

.store-block_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  color: #6c9ab3;
  position: relative;
  padding: 0;
  margin: 0;
}

.store-block_tel,
.store-block_tel a,
.store-block_address,
.store-block_route {
  color: #000;
}

.store-block_tel {
  font-size: 1.273em;
  font-weight: bold;
  margin: .6em 0 0;
  display: none;
}

.store-block_address {
  font-size: 1em;
  font-weight: normal;
  font-style: normal;
  margin: .6em 0 0;
}

.store-block_route {
  font-size: .818em;
  border-top: 1px dashed #000;
  margin: 1em 0 0;
  padding: 1em 0 0;
}

.store-block_route a {
  color: #f667aa;
  text-decoration: underline;
}

.store-block_link {
  margin-top: 1.2em;
}

.store-block_link a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 80%;
  height: 3em;
  border: 1px solid #ee2584;
  font-weight: bold;
  color: #ee2584;
  margin: 1em auto 0;
}

.store-block_link a:hover {
  background-color: #ee2584;
  color: #fff;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
}

/* --- PC・スマホ共通の基本スタイル --- */
.salon_btn {
  display: flex;
  justify-content: center;
  padding: 20px 0px 200px;
}

.salon_btn div {
  margin: 0 15px;
}

.salon_btn div a {
  display: inline-block;
  background: #e6f4f7;
  border-radius: 30px;
  padding: 15px 30px;
  color: #65aadd;
  font-size: 20px;
  transition: all .3s;
  text-align: center;
}

.salon_btn div a:hover {
  color: #666;
}

/* --- スマホ用のスタイル（横幅640px以下） --- */
@media all and (max-width: 640px) {
  .salon_btn {
    flex-wrap: wrap;
  }

  .salon_btn div {
    width: 80%;
    margin: 10px auto;
  }

  .salon_btn div a {
    display: block;
    font-size: 16px;
    padding: 15px 15px;
  }
}

.shop_info {
  padding-bottom: 80px;
}

/* フローティングバナー */
#fixed {
  position: fixed;
  bottom: 10px !important;
  z-index: 9999;
  width: 100%;
  display: block;
}

#fixed .fixInner {
  max-width: 720px;
  margin: 0 auto;
}

#fixed .fixInner:after {
  content: "";
  width: 100%;
  display: block;
  clear: both;
  height: 0;
}

#fixed .fixInner img {
  float: none;
}