@charset "UTF-8";
.f14 {
  font-size: clamp(1.3rem, 3vw, 1.4rem);
}

/* -----------------
 250423 add
----------------- */
.mv-link__wrap {
  position: fixed;
  width: 212px;
  aspect-ratio: 1 / 1;
  right: 28px;
  bottom: 20px;
  z-index: 98;
  pointer-events: none; /* クリックをリンクに通す */
  /* box-shadow: 0 2px 30px 0 rgba(78, 81, 90, 0.2); ← こっちで影つける */
  border-radius: 100vmax;
  animation: box-shadow 2s cubic-bezier(0.5, 0, 0.2, 1) forwards;
}
.mv-link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  right: auto;
  bottom: auto;
  -webkit-mask-image: url(../img/index/mv-link_mask.png);
  mask-image:  url(../img/index/mv-link_mask.png);
  -webkit-mask-size: 0% 0%;
  mask-size: 0% 0%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  animation: revealCircleMask 2s cubic-bezier(0.5, 0, 0.2, 1) forwards;
  z-index: inherit;
  pointer-events: all;
}
@keyframes revealCircleMask {
  0% {
    -webkit-mask-size: 0% 0%;
    mask-size: 0% 0%;
  }
  100% {
    -webkit-mask-size: 200% 200%;
    mask-size: 200% 200%;
  }
}
@keyframes box-shadow {
  0% {
    box-shadow: none;
  }
  50% {
    box-shadow: none;
  }
  100% {
    box-shadow: 0 2px 30px 0 rgba(78, 81, 90, 0.2);
  }
}
@keyframes box-shadow-sp {
  0% {
    box-shadow: none;
  }
  50% {
    box-shadow: none;
  }
  100% {
    box-shadow: 0 2px 15px 0 rgba(78, 81, 90, 0.2);
  }
}
.mv-link::before {
  position: absolute;
  content: '';
  width: 12px;
  aspect-ratio: 1 / 1;
  bottom: 20%;
  left: calc(50% - 6px);
  background: url(../img/index/mv-link_arw.png) no-repeat center center / cover;
  z-index: 1;
}
@media screen and (max-width: 1200px) {
  .mv-link__wrap {
    width: 114px;
    right: 10px;
    bottom: 10px;
    box-shadow: 0 2px 15px 0 rgba(78, 81, 90, 0.2);
    animation: box-shadow-sp 2s cubic-bezier(0.5, 0, 0.2, 1) forwards;
  }  
  .mv-link::before {
    width: 8px;
    bottom: 17%;
    left: calc(50% - 4px);
  }
}

/* -----------------
 260107 add
----------------- */
.mv-wrap__img video {
  width: 100%;
  height: 100%;
  border-bottom-left-radius: min(85px,5.1vw);
  object-fit: cover;
}
.mv-wrap__ttl strong {
  margin-bottom: 1em;
  font-size: clamp(2.2rem,4vw,4.8rem);
}
.mv-wrap__ttl small {
  margin-bottom: 0;
  font-size: clamp(1.6rem,2vw,2rem);
}
.mv-wrap__ttl small.line-txt {
  font-size: 1.17em;
  margin: 0.5em 0 1.6em;
  display: inline-block;
}
.mv-wrap__ttl span small {
  color: #fff;
  font-size: 0.83em;
}
.campaign-main__ttl:before {
  display: none;
}
@media screen and (min-width: 835px) {
 .mv-wrap__ttl small.line-txt {
    margin-left: 0.3em;
  }
  .rust-wrap__block-txt {
    text-align: center;
  }
}
@media screen and (min-width: 641px) {
  .mv-wrap {
    padding-top: clamp(50px,20vw,350px);
  }
  .mv-wrap__img {
    left: 31%;
  }
}
@media screen and (max-width: 640px) {
    .campaign-main {
      padding-top: 50px;
    }
}
@media screen and (max-width: 370px) {
  .mv-wrap__ttl small.line-txt {
    font-size: 2rem;
  }
}

/* -----------------
 260129 add
----------------- */
.sec-salon__flex {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 3rem;
}
.salon-ttl {
  max-width: 29rem;
  flex-direction: column;
  border-bottom-width: 0;
}
.salon-ttl__en {
  margin-bottom: 2rem;
  font-size: 1.8rem;
  font-family: Gilda Display, serif;
}
.salon-ttl__sub {
  max-width: 28rem;
}
.salon-main {
  max-width: 88rem;
}
.reservation-list {
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem;
}
@media screen and (max-width: 1100px) {
  .sec-salon__flex {
    flex-direction: column;
    gap: 0;
  }
  .salon-ttl {
    max-width: 100%;
  }
  .salon-ttl__sub {
    max-width: 100%;
  }
  .salon-main {
    max-width: 100%;
    width: 100%;
  }
}
@media screen and (max-width: 834px) {
  .salon-ttl__en {
    margin-bottom: 1rem;
    text-align: center;
  }
  .reservation-list {
    gap: 4rems 2rem;
  }
}

.rust-wrap {
  position: relative;
}
.rust-wrap::before {
  position: absolute;
  content: '';
  width: 38.1rem;
  aspect-ratio: 381 / 152;
  bottom: -10rem;
  left: calc(50% - 38.1rem / 2);
  z-index: 2;
  background: url(../img/index/rust-triangle.png) no-repeat center center / cover;
}
.sec-rust__add {
  margin-top: 12rem;
  font-size: 3.2rem;
  text-align: center;
  color: #2d2138;
  font-family: Noto Serif JP, serif;
}
@media screen and (max-width: 970px) {
  .sec-rust__add {
    font-size: 3vw;
  }
}
@media screen and (max-width: 834px) {
  .rust-wrap::before {
    width: 30rem;
    left: calc(50% - 15rem);
  }
  .sec-rust__add {
    font-size: 2.2rem;
  }
  /* .sec-rust__add br {
    display: none;
  } */
}
@media screen and (max-width: 500px) {
  .sec-rust__add {
    font-size: 4.4vw;
  }
}
@media screen and (max-width: 450px) {
  .rust-wrap::before {
    width: 20rem;
    left: calc(50% - 10rem);
    bottom: -6rem;
  }
  .sec-rust__add {
    margin-top: 7rem;
  }
}
@media screen and (max-width: 410px) {
  .sec-rust__add {
    font-size: 4.2vw;
  }
}


#footer .footer-btn {
  max-width: 86rem;
  padding: 6rem 3rem 6rem 8rem;
  background-color: rgba(255, 255, 2555, 0.5);
  border-radius: 1rem;
  justify-content: center;
  align-items: center;
}
#footer .footer-btn a {
  position: relative;
  height: 8rem;
  font-size: 2.4rem;
}
#footer .footer-btn a::before {
  position: absolute;
  content: '';
  width: 1.4rem;
  aspect-ratio: 14 / 13;
  top: calc(50% - 0.65rem);
  right: 5rem;
  z-index: 1;
  background: url(../img/index/mv-link_arw.png) no-repeat center center / cover;
}
.footer-btn__txt {
  margin-right: 5rem;
  padding-right: 4rem;
  border-right: 1px solid #e3e3e3;
  font-family: Noto Serif JP, serif;
  font-size: 2.4rem;
}
.footer-btn__txt span {
  margin-right: 2rem;
  font-family: Gilda Display, serif;
  color: #a388c5;
  font-size: 1.4rem;
}
@media screen and (max-width: 876px) {
  .footer-btn__txt {
    margin-right: 3rem;
    padding-right: 3rem;
  }
}
@media screen and (max-width: 834px) {
  #footer .footer-btn {
    padding: 3rem;
    flex-direction: column;
  }
  .footer-btn__txt {
    margin-right: 0;
    margin-bottom: 3rem;
    padding-right: 0;
    padding-bottom: 3rem;
    border-right-width: 0;
    border-bottom: 1px solid #e3e3e3;
  }
}
@media screen and (max-width: 450px) {
  #footer .footer-btn a {
    height: 5rem;
    font-size: 2rem;
  }
  #footer .footer-btn a::before {
    width: 1.2rem;
    top: calc(50% - 0.55rem);
    right: 2rem;
  }

  .footer-btn__txt {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    font-size: 2rem;
  }
  .footer-btn__txt span {
    margin-right: 1rem;
    font-size: 1.2rem;
  }
}

.box-notice {
  z-index: 1;
}
@media screen and (max-width: 834px) {
  .salon-ttl__main {
    font-size: 2.8rem;
  }
}
