@charset "utf-8";

/* ====================
common
==================== */
:root {
  --primary_white: #F8F8F8;
  --cloudDancer: #F0EEE9;
  --primary_black: #0F1116;
  --illustration_black: #3E3A39;
  --illustration_gray: #777777;
  --illustration_lightGray: #C4C4C4;
  --contentWidth: 91.4%;
  --contentPadding: 4.2%;
}

html,
body {
  overflow-x: clip;
}


html {
  font-size: 62.5%;
}

body {
  /* font-family: "Noto Sans JP", Arial, sans-serif; */
  font-family: "Zen Kaku Gothic New", "ヒラギノ角ゴ ProN W3", meiryo, sans-serif;
  font-style: normal;
  color: var(--primary_black, #0F1116);
  background-color: var(--cloudDancer, #F0EEE9);
  line-height: 2.5;

}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.topic {
  position: relative;
}

.topic::after {
  content: "";
  display: block;
  margin-top: 2px;
  width: 0px;
  height: 1px;
  background: currentColor;
  transition: width 0.6s ease;
}

.topic.is-active::after {
  width: 164px;
}

.topic__jp {
  font-size: 1.2rem;
  line-height: 1;
}

.topic__en {
  margin-top: 6px;
  font-family: "Inter";
  font-size: 2rem;
  line-height: 1;
}

.topic__white {
  color: var(--primary_white, #F8F8F8);
}

.btn__group {
  display: block;
  margin: 0 auto;
  text-align: center;
}

.btn__group__white {
  color: var(--primary_white);
}

.btn__group p {
  font-size: 1.2rem;
  line-height: 1;
  text-align: center;
  color: currentColor;
}

.btn {
  margin-top: 12px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 1.4rem;
  line-height: 1;
  border-radius: 50px;
  padding: 12px 18px;
  position: relative;
  color: currentColor;
  background: none;
  overflow: hidden;
}

.btn__white {
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.60);
}

.btn::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 50px;
  border: 1px solid currentColor;
  pointer-events: none;

  clip-path: polygon(0 0,
      0 0,
      0 0,
      0 0);

  transition: clip-path 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn.is-show::after {
  clip-path: polygon(0 0,
      100% 0,
      100% 100%,
      0 100%);
}

@media (hover: hover) {
  .btn:hover {
    background-color: var(--illustration_black);
    color: var(--primary_white);
  }

  .btn__white:hover {
    background-color: var(--primary_white);
    color: var(--illustration_black);
    text-shadow: none;
  }

  .btn__black:hover {
    background-color: #FFFFFF;
    color: var(--primary_black);
  }
}

.btn:focus-visible {
  background-color: var(--illustration_black);
  color: var(--primary_white);
  outline: none;
}

.btn__white:focus-visible {
  background-color: var(--primary_white);
  color: var(--illustration_black);
  outline: none;
  text-shadow: none;
}

.btn__black:focus-visible {
  background-color: var(--primary_white);
  color: var(--primary_black);
  outline: none;
}

.btn:active {
  background-color: var(--illustration_black);
  color: var(--primary_white);
  transform: translateY(1px);
  opacity: 0.7;
}

.btn__white:active {
  background-color: var(--primary_white);
  color: var(--illustration_black);
  text-shadow: none;
  transform: translateY(1px);
  opacity: 0.7;
}

.btn__black:active {
  /* background-color: var(--primary_black); */
  background-color: #FFFFFF;
  color: var(--primary_black);
  transform: translateY(1px);
  opacity: 0.7;
}

.btn__arrow {
  position: relative;
  width: 13px;
  height: 9px;
}

.btn__arrow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 13px;
  height: 1px;
  margin-top: 8px;
  border-radius: 9999px;
  background-color: currentColor;
}

.btn__arrow::before {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  bottom: 0;
  width: 7px;
  height: 1px;
  margin-top: 4px;
  border-radius: 9999px;
  background-color: currentColor;
  transform: rotate(30deg);
  transform-origin: calc(100% - 0.5px) 50%;
}

#reviews,
#gallery,
#faq,
#reservation,
#salonInfo {
  scroll-margin-top: 56px;
}

/* ==JS初期状態== */
/* 共通：フェード用 */
.js-c-anime-elem {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease-out, transform 0.8s ease-out;
}

/* 右から：フェード用 */
.js-c-anime-elem-right {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.4s ease-out, transform 0.6s ease-out;
}

/* 左から：フェード用 */
.js-c-anime-elem-left {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.4s ease-out, transform 0.6s ease-out;
}

/* フェードイン 左右 */
.fade-only-right.is-visible,
.fade-only-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}


/* ズームするやつだけ */
.zoom-only {
  transform: scale(1.1);
  transition-duration: 1.6s;
  transform-origin: center center;
}


/* フェードインだけ */
.fade-only.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ズームだけ */
.zoom-only.is-visible {
  opacity: 1;
  transform: scale(1.01);
}

.js-c-img__wrap {
  overflow: hidden;
  border: 1px solid #3E3A39;
  z-index: 1;
}

.js-c-img__wrap img {
  object-fit: cover;
  width: 100%;
}

/* ==レスポンシブ＝＝ */
.pcSide {
  display: flex;
  justify-content: center;
  width: 100%;
  background-color: var(--cloudDancer, #F0EEE9);
}

.spContainer {
  max-width: 100%;
  max-width: 540px;
  margin: 0 auto;
  background-color: var(--cloudDancer, #F0EEE9);
}

.pcSide--left {
  mix-blend-mode: normal;
  background-image: url(../images/hairpin-pattern.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position-y: 16px;
  width: 100%;
  height: 100vh;
  position: sticky;
  top: 0;
}

.pcNav {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  padding: 40px;
  position: sticky;
  top: 0;
}

.pcNav .nav__list {
  width: 260px;
}

.pcSide--right .inner {
  margin: 0 16px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  position: sticky;
  top: 0;
}

.KNit_logo_pcSide--right {
  width: 176px;
  aspect-ratio: 176/81;
}

.LINE_QR__group {
  display: flex;
  padding: 32px 0;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.LINE_QR__group p {
  color: var(--illustrationblack, #3E3A39);
  font-size: 1.6rem;
  line-height: 1.5;
}

.LINE_QR__group p br {
  display: none;
}

.LINE_QR__group img {
  width: 150px;
}

@media screen and (1024px <=width <=1120px) {
  .LINE_QR__group p br {
    display: block;
  }

}

.LINE_QR__group::after {
  content: "";
  width: 141px;
  height: 85px;
  margin-top: 32px;
  background-image: url(../images/pc_right_bottle.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

/* SP：〜741px 通常のスマホ */
@media (max-width: 741px) {
  .pcSide {
    display: none;
  }

  .pcLayout {
    display: flex;
    justify-content: center;
    overflow-x: clip;
    background-color: var(--illustration_black, #3E3A39);
  }

  .spContainer {
    width: 100%;
    max-width: 540px;
  }
}

/* タブレット扱い：742px〜1023px */
@media (min-width: 742px) and (max-width: 1023px) {
  .pcLayout {
    display: grid;
    grid-template-columns: 1fr minmax(0, 665px) 1fr;
    min-height: 100vh;
    background-color: var(--illustration_black, #3E3A39);
    gap: 16px;
  }

  .pcSide--right {
    display: none;
  }
}

/* PC：1024px〜 */
@media (min-width: 1024px) {
  .pcLayout {
    display: grid;
    grid-template-columns: 1fr 425px 1fr;
    min-height: 100vh;
    background-color: var(--illustration_black, #3E3A39);
    grid-gap: 32px;
  }

  .pcSide--right {
    display: flex;
  }

  .pcSide--left {
    background-position-y: center;
  }

  #reviews,
  #gallery,
  #faq,
  #reservation,
  #salonInfo {
    scroll-margin-top: 0;
  }
}


/* ====================
header
==================== */
.header,
.nav__header {
  padding: 16px var(--contentPadding) 6px;
  margin-bottom: 20px;
  height: 56px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.header {
  position: sticky;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  pointer-events: none;
  /* mix-blend-mode: difference;
  background-color: transparent; */
  background-color: rgba(240, 238, 233, 0.60);
}

.header * {
  pointer-events: auto;
}


/* PC：1025px〜 */
@media (min-width: 1024px) {
  .header {
    position: static;
  }
}

.KNit_logo {
  display: block;
  width: 78px;
}

.nav {
  background-color: var(--cloudDancer);
  mix-blend-mode: normal;
  background-image: url(../images/hairpin-pattern.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top 36px;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  inset: 0;
  transform: translateX(-100%);
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
  opacity: 1;
}

.header__btn_group {
  display: flex;
  gap: 8px;
  mix-blend-mode: normal;
}

.header__reservation__btn {
  background-color: var(--cloudDancer);
  mix-blend-mode: normal;
}

.reservation__btn,
.nav__btn {
  display: inline-flex;
  padding: 8px 12px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  border-radius: 50px;
  font-family: Inter;
  font-size: 1.2rem;
  line-height: 1;
}

.header__btn {
  font-family: 'Inter';
  font-size: 1.2rem;
  padding: 8px 12px;
}

.btn__black {
  background-color: var(--primary_black);
  color: var(--cloudDancer);
}

.reservation__btn::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 16px;
  background-color: currentColor;

  -webkit-mask: url(../images/calendar_icon_mask.svg) no-repeat center / contain;
  mask: url(../images/calendar_icon_mask.svg) no-repeat center / contain;
}

.nav__btn::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: currentColor;

  -webkit-mask: url(../images/close.svg) no-repeat center / contain;
  mask: url(../images/close.svg) no-repeat center / contain;
}

.nav__list {
  max-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 48px;
  margin: 10% auto;
  gap: 24px;
  background-color: var(--illustration_black);
  color: var(--cloudDancer);
}

.nav__item a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  position: relative;
}

.nav__item a.is-active {
  pointer-events: none;
}


.nav__item a::after {
  content: "";
  display: block;
  margin-top: 2px;
  width: 0;
  height: 1px;
  background-color: currentColor;
  transition: width 0.6s ease;
}

@media (hover: hover) {
  .nav__item a:hover::after {
    width: 164px;
  }
}

.nav__item a:focus-visible::after,
.nav__item a.is-active::after {
  width: 164px;
}

.nav__topic__jp {
  font-size: 1rem;
  line-height: 1;
  align-self: stretch;
}

.nav__topic__en {
  font-family: Inter;
  font-size: 1.6rem;
  line-height: 1;
  align-self: stretch;
}

/* .nav.active表示 */
.nav.active {
  transform: translateX(0);
}

.nav.is-fadeout {
  opacity: 0;
  pointer-events: none;
}

/* .header__btn {
  font-size: 1.2rem;
  padding: 8px 12px;
} */


/* ====================
footer__group
==================== */

/* ====================
footer__reservation
==================== */
.footer__reservation {
  display: flex;
  padding: 48px var(--contentPadding);
  flex-direction: column;
  gap: 24px;
  opacity: 0.9;
  background-image: url(../images/section_reservation_back.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left bottom;
}

.reservation__txt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  color: var(--primary_white, #F8F8F8);
  font-size: 1.4rem;
}

.reservation__txt::before {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url(../images/reservation_icon.svg);
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.line__btn {
  border-radius: 12px;
  padding: 20px;
  gap: 20px;
}

.line__btn::after {
  border-radius: 12px;
}

.reservation__txt__bottom {
  color: var(--primary_white, #F8F8F8);
  font-size: 1.4rem;
  width: fit-content;
  display: inline-block;
  margin: 0 auto;
}

.underLine {
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.example__txtBox {
  position: relative;
  padding: 12px;
  display: block;
  margin: 0 auto;
  align-items: center;
  border-radius: 24px;
  background-color: var(--primary_white);
  height: 168px;
  max-width: 241px;
  /* overflow: hidden; */
}

.example__txtBox::before {
  content: "";
  position: absolute;
  display: block;
  width: 17px;
  height: 12.5px;
  background-image: url(../images/example_rectangle.svg);
  background-repeat: no-repeat;
  top: 3px;
  /* left: 230px; */
  right: 0;
  left: auto;
}

.example__label {
  position: absolute;
  top: 50%;
  left: 0;
  transform:
    translate(-66%, -50%) rotate(-90deg);

  transform-origin: center;
  white-space: nowrap;

  color: var(--primary_white, #F8F8F8);
  font-family: Inter;
  font-size: 1.2rem;
  line-height: 1;
}

.example__txt {
  font-size: 1.2rem;
  line-height: 1.5;
}

.txt_gray {
  color: var(--illustration_gray, #777);
  font-weight: 500;
}

/* ====================
footer__salonInfo
==================== */
.footer__salonInfo {
  display: flex;
  padding: 48px var(--contentPadding);
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer__salonInfo .topic {
  margin-right: auto;
}

.salonInfo__list {
  display: flex;
  flex-direction: column;
  width: fit-content;
  gap: 24px;
  font-size: 1.4rem;
}

.salonInfo__row {
  display: flex;
}

.salonInfo__item {
  width: 90px;
  font-weight: 400;
  flex-shrink: 0;
}

.txt_12 {
  font-size: 1.2rem;
}

.salonInfo__explanation__annotation {
  font-size: 1.2rem;
}

/* ====================
footer__salonInfo
==================== */
.footer__bottom__group {
  display: flex;
  flex-direction: column;
  padding: 48px 0 24px 0;
  gap: 36px;
  width: 100%;
  background-color: var(--primary_white);
}

.footer__navArea_row {
  display: flex;
  padding-left: var(--contentPadding);
  justify-content: space-between;
  align-items: flex-end;
}

.footer__navList {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-shrink: 0;
}

.footer__navItem {
  font-family: Inter;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
}

.footer__copy {
  text-align: center;
  font-family: Inter;
  font-size: 1rem;
  line-height: 1;
}