@charset "UTF-8";
/* ========== 色 ========== */
/* ========== フォントサイズ ========== */
/* ========== フォント ========== */
/* Box sizing rules */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: all 0.4s ease;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* A elements that don't have a class get default styles */
/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* ====================================================
  BASE CSS – Reusable Utility & Foundation Styles
  Author: ChatGPT
==================================================== */
/* -----------------------------
  Font sizing & root setup
----------------------------- */
html {
  font-size: clamp(10px, 1.2vw, 16px);
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: "Shippori Mincho", serif;
}

/* -----------------------------
  Base styles
----------------------------- */
body {
  font-family: "Shippori Mincho", serif;
  color: #5a5a5a;
  font-optical-sizing: auto;
  font-style: normal;
  letter-spacing: 0.048rem;
  font-size: 10px;
  position: relative;
  overflow-x: hidden;
  font-weight: 500;
}

/* Reset for common elements */
a {
  text-decoration: none;
}

li {
  list-style: none;
}

/* -----------------------------
  Image styling
----------------------------- */
img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

/* -----------------------------
  Animation classes
----------------------------- */
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation: fade-in 1s ease forwards;
  animation-delay: 2s;
}

@keyframes fade-out {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  animation: fade-out 0.5s ease forwards;
}

@keyframes loop_animation_right-left_double {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes loop_animation_left-right_double {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
.loop_60 {
  animation: loop_animation_right-left_double 60s linear infinite;
  white-space: nowrap;
}

.loop_30right-left {
  animation: loop_animation_right-left_double 30s linear infinite;
  white-space: nowrap;
}

.loop_30left-right {
  animation: loop_animation_left-right_double 30s linear infinite;
  white-space: nowrap;
}

/* -----------------------------
  Layout container
----------------------------- */
@media screen and (max-width: 768px) {
  .container-sp {
    width: 94.7vw;
    margin: 0 auto;
    padding-top: clamp(40px, 40px + 53 * (100vw - 390px) / 378, 93px);
  }
}

/* -----------------------------
  Prevent tel link on desktop
----------------------------- */
@media print, screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none !important;
    text-decoration: none;
    color: inherit;
  }
}
/* ========== animation ========== */
/*アンダーラインを消すアニメーション
  もともと要素に色のついたアンダーラインをあてて
  疑似要素で背景と同じ色を重ねてか隠すイメージ

  2秒の場合
  0～0.8秒   まで下線を左から右に消し
  0.9～1.2秒 までそのまま待機
  1.3～2.0秒 まで下線を左から右に表示
*/
@keyframes underline-leftToright {
  0% {
    transform: scaleX(0) translateY(50%);
    transform-origin: left bottom;
  }
  40% {
    transform: scaleX(1) translateY(50%);
    transform-origin: left bottom;
  }
  41% {
    transform: scaleX(1) translateY(50%);
    transform-origin: right bottom;
  }
  60% {
    transform: scaleX(1) translateY(50%);
    transform-origin: right bottom;
  }
  100% {
    transform: scaleX(0) translateY(50%);
    transform-origin: right bottom;
  }
}
.is-visible {
  position: sticky;
  top: 0%;
  transform: translateY(50%);
}

/* 親（境界）…パディングを持たせないこと */
.sticky-box {
  position: relative; /* 境界用。overflow は visible 推奨 */
  /* padding: 0;  必要なら明示してOK */
}

/* 中央追従させる要素 */
.sticky-box .target {
  position: sticky;
  /* 50vh の代わりに JS で設定する --vh を使う（モバイルのアドレスバー対策） */
  top: calc(var(--vh, 1vh) * 50 - var(--target-h, 0px) / 2);
  /* translate は使わず、上記topで中央化 */
  /* レイアウトは通常フローのままなので flex の横並びは崩れない */
}

/* ========== レスポンシブcss ========== */
.sp-only {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .sp-only {
    display: block !important;
  }
}

.pc-only {
  display: none !important;
}
@media screen and (min-width: 769px) {
  .pc-only {
    display: block !important;
  }
}

:root {
  --gap: 5.697rem;
}
@media screen and (min-width: 1025px) {
  :root {
    --gap: 4.375rem;
  }
}

.footer {
  background-color: #b59da1;
}
.footer__inner {
  text-align: center;
  margin: 0 auto;
  padding-top: 5.5rem;
  padding-bottom: 2rem;
}
.footer__logo {
  width: 82.5%;
  margin: 0 auto;
  max-width: 320px;
}
.footer__text {
  color: #ffffff;
  margin-top: 4.1rem;
}
.footer__text--addres {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
}
.footer__text--tel {
  font-size: 1.4rem;
  margin-top: 1rem;
  letter-spacing: 0.1em;
}
.footer__text--tel > span {
  pointer-events: none;
  text-decoration: none;
  color: #ffffff;
}
.footer__text--tel > span > a {
  color: #ffffff;
  pointer-events: auto;
  text-decoration: none;
}
.footer__text--reserve-info {
  font-size: 1.4rem;
  margin-top: 1rem;
  letter-spacing: 0.1em;
}
.footer__box.list {
  display: none;
}
.footer__icon--top {
  display: flex;
  flex-direction: column;
  color: #ffffff;
  justify-content: center;
  align-items: center;
  margin-top: 3.9rem;
  gap: 8.5%;
}
.footer__icon--top-link {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  color: #ffffff;
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 0.1em;
  font-family: "EB Garamond", serif;
}
.footer__icon--top-link:hover {
  opacity: 0.7;
}
.footer__icon--top-link + .footer__icon--top-link {
  margin-top: 1.8rem;
}
.footer__icon--top-link > span {
  display: inline-block;
  width: 1.8rem;
  margin-top: 0.5rem;
  margin-right: 1.1rem;
}
.footer__icon--bottom {
  display: block;
  color: #ffffff;
  margin-top: 1.8rem;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  color: #ffffff;
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 0.1em;
  font-family: "EB Garamond", serif;
}
.footer__icon--bottom:hover {
  opacity: 0.7;
}
.footer__icon--bottom > span {
  display: inline-block;
  width: 1.8rem;
  margin-bottom: -0.5rem;
  margin-right: 0.7rem;
}
.footer__item {
  position: relative;
  display: inline-block;
}
.footer__link {
  position: relative;
}
.footer__link::before {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 1px;
  bottom: -1px;
  left: 0;
  background-color: #ffffff;
  transform-origin: bottom right;
  transition: transform 0.4s ease;
}
.footer__link:hover::before {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.footer__copy {
  margin-top: 3.8rem;
  color: #ffffff;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  font-family: "EB Garamond", serif;
}
@media screen and (min-width: 520px) {
  .footer .footer__icon--top {
    flex-direction: row;
  }
  .footer .footer__icon--top-link + .footer__icon--top-link {
    margin-top: 0;
  }
}
@media screen and (min-width: 769px) {
  .footer__inner {
    padding-top: 4.45rem;
    padding-bottom: 1.7rem;
  }
  .footer__wrapper {
    display: flex;
    justify-content: center;
  }
  .footer__box {
    width: 50%;
  }
  .footer__box.list {
    display: none;
  }
  .footer__logo {
    width: 100%;
    max-width: 320px;
  }
  .footer__text {
    text-align: center;
    margin-top: 3.2rem;
  }
  .footer__text--addres {
    font-size: 1.16rem;
    letter-spacing: 0.1em;
  }
  .footer__text--tel {
    font-size: 1.14rem;
    margin-top: 0.9rem;
    letter-spacing: 0.12em;
  }
  .footer__text--reserve-info {
    font-size: 1.14rem;
    margin-top: 0.9rem;
  }
  .footer__list {
    text-align: left;
    margin-left: 7.25rem;
  }
  .footer__list:last-child {
    margin-left: 6.5rem;
  }
  .footer__item {
    margin-bottom: 1.54rem;
  }
  .footer__item:last-child {
    margin-bottom: 0;
  }
  .footer__link {
    color: #ffffff;
    font-size: 1rem;
    letter-spacing: 0.1em;
    line-height: 1.6;
    text-wrap: nowrap;
  }
  .footer__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3rem;
    gap: var(--gap);
  }
  .footer__icon--top {
    margin-top: 0;
    gap: var(--gap);
  }
  .footer__icon--top-link {
    font-size: 1.465rem;
    letter-spacing: 0.05em;
  }
  .footer__icon--top-link + .footer__icon--top-link {
    margin-top: 0rem;
  }
  .footer__icon--top-link > span {
    width: 1.5rem;
    margin-right: 0.7rem;
    margin-top: 0.35rem;
  }
  .footer__icon--bottom {
    display: flex;
    align-items: center;
    font-size: 1.465rem;
    text-underline-offset: 0.2em;
  }
  .footer__icon--bottom > span {
    width: 1.5rem;
    margin-top: 0.35rem;
    margin-bottom: 0;
  }
  .footer__copy {
    margin-top: 3rem;
    font-size: 1.14rem;
    letter-spacing: 0.05em;
  }
}
@media screen and (min-width: 1025px) {
  .footer__inner {
    padding-top: 6.5rem;
    padding-bottom: 1.7rem;
  }
  .footer__box {
    width: 26%;
  }
  .footer__box.list {
    display: flex;
  }
  .footer__logo {
    margin: 0 auto;
    max-width: 500px;
  }
  .footer__text {
    text-align: left;
    margin-top: 4.1rem;
  }
  .footer__text--addres {
    font-size: 1rem;
    letter-spacing: 0.06em;
  }
  .footer__text--tel {
    font-size: 1rem;
    margin-top: 0.7rem;
    letter-spacing: 0.08em;
  }
  .footer__text--reserve-info {
    font-size: 0.9rem;
    margin-top: 0.7rem;
    letter-spacing: 0.137em;
  }
  .footer__icon {
    margin-top: 5.85rem;
  }
  .footer__icon--top-link {
    font-size: 1.25rem;
    letter-spacing: 0.055em;
  }
  .footer__icon--top-link > span {
    width: 1.25rem;
    margin-right: 1rem;
  }
  .footer__icon--bottom {
    font-size: 1.25rem;
    margin-top: 0;
  }
  .footer__icon--bottom > span {
    width: 1.25rem;
    margin-right: 1rem;
  }
  .footer__copy {
    margin-top: 6.3rem;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
  }
}

.more__btn {
  position: relative;
  width: 20rem;
  font-size: 1.3rem;
  margin: 0 auto;
  line-height: 3.48;
  display: block;
  text-align: left;
  overflow: hidden;
  z-index: 10;
}
.more__btn::after {
  content: "";
  width: 20rem;
  height: 1px;
  background: #5a5a5a;
  position: absolute;
  bottom: 0;
}
.more__btn::before {
  content: "";
  width: 20rem;
  height: 1px;
  background: #5a5a5a;
  position: absolute;
  bottom: 0;
  transform: translateX(-100%);
  transition-delay: 1s;
}
.more__btn:hover::before {
  transform: translateX(0);
}
.more__btn:hover::after {
  transform: translateX(100%);
}
.more__btn:hover .more__btn-link {
  transform: translateX(70%);
}
.more__btn-link {
  color: #5a5a5a;
  position: relative;
  z-index: 10;
  font-size: 1.2rem;
  display: block;
  width: 100%;
  transition: all 2s ease;
}
.more__btn-link::before {
  content: "";
  background-image: url(.././img/png/icon_arrow2.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 4.2rem;
  height: 1.5rem;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-100%, -50%);
}
.more__btn-link::after {
  content: "";
  background-image: url(.././img/png/icon_arrow2.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 4.2rem;
  height: 1.5rem;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 769px) {
  .more__btn {
    width: 16.25rem;
    margin: 0 auto 0 0;
    line-height: 3.5;
  }
  .more__btn-link {
    font-size: 1rem;
    letter-spacing: 0.07em;
  }
  .more__btn-link::before {
    width: 3.3rem;
  }
  .more__btn-link::after {
    width: 3.3rem;
  }
}
@media screen and (min-width: 1025px) {
  .more__btn {
    width: 13.8rem;
    margin: 0 auto 0 0;
    line-height: 3.8;
  }
  .more__btn-link {
    font-size: 0.9rem;
    letter-spacing: 0;
  }
  .more__btn-link::before {
    width: 2.6rem;
  }
  .more__btn-link::after {
    width: 2.6rem;
  }
}

.section__title {
  font-size: 2.8rem;
  letter-spacing: 0.05em;
  line-height: 1.2;
  font-family: "EB Garamond", serif;
  -webkit-text-decoration: underline 1px;
          text-decoration: underline 1px;
  text-underline-offset: 5.5px;
  font-weight: 400;
}
@media screen and (min-width: 769px) {
  .section__title {
    font-size: 2.2rem;
    letter-spacing: 0.06em;
  }
}
@media screen and (min-width: 1025px) {
  .section__title {
    font-size: 2.875rem;
    letter-spacing: 0.05em;
    text-underline-offset: 12.5px;
  }
}

.kv__inner {
  position: relative;
}
.kv__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 220px;
  z-index: 2;
}
.kv__nav {
  display: none;
  position: relative;
  z-index: 2;
}
.kv__box {
  mix-blend-mode: difference;
  position: relative;
  z-index: 100;
  position: fixed;
  right: 3%;
  top: 3%;
  width: 5rem;
  aspect-ratio: 1/1;
  z-index: 12;
}
.kv__btn {
  width: 100%;
  height: 100%;
}
.kv__btn-img {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  z-index: 10;
}
.kv__btn-img.is-hidden {
  opacity: 0;
}
.kv__bg {
  position: absolute;
  background: #5a5a5a;
  opacity: 0.2;
  width: 100vw;
  height: 100vh;
  top: 0;
  z-index: 1;
}
.kv__bg--left {
  display: none;
}
.kv__bg--right {
  display: none;
}
.kv__bg--SP {
  width: 100%;
  height: 100vh;
}
@media screen and (min-width: 769px) {
  .kv__title {
    width: 22%;
    display: flex;
    justify-content: center;
  }
  .kv__box {
    right: 2.7%;
    top: 0.5%;
    width: 4.5rem;
  }
  .kv__bg--pc {
    display: flex;
  }
  .kv__bg--left {
    display: block;
    width: 50%;
    height: 100vh;
  }
  .kv__bg--right {
    display: block;
    width: 50%;
    height: 100vh;
  }
  .kv__bg--SP {
    display: none;
  }
}
@media screen and (min-width: 1025px) {
  .kv__box {
    right: 2.9%;
    top: 1.6%;
    width: 4rem;
  }
  .kv__nav {
    position: absolute;
    display: block;
    right: 3%;
    top: 9.2%;
  }
  .kv__item {
    text-align: right;
    margin-bottom: 1.79em;
  }
  .kv__link {
    font-family: "EB Garamond", serif;
    color: #ffffff;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    position: relative;
  }
  .kv__link::before {
    content: "";
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: -1px;
    left: 0;
    background-color: #ffffff;
    transform-origin: bottom right;
    transition: transform 0.4s ease;
  }
  .kv__link:hover::before {
    transform: scaleX(1);
    transform-origin: bottom left;
  }
}

.fixed {
  background: #b59da1;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 11;
  transform: translateX(100%);
  transition: all 1s ease;
  opacity: 0;
}
.fixed.is-active {
  transform: translateX(0);
  opacity: 1;
  /* 左カラム */
  /* 右カラム（左と同じく上から） */
}
.fixed.is-active .glay::after {
  content: "";
  background: #5a5a5a;
  opacity: 0.5;
  width: 100%;
  height: 100%;
  position: fixed;
  offset: 0;
  z-index: 1;
}
.fixed.is-active .fixed__list:nth-of-type(1) .fixed__item:nth-child(1) {
  transition-delay: 0.05s;
}
.fixed.is-active .fixed__list:nth-of-type(1) .fixed__item:nth-child(2) {
  transition-delay: 0.1s;
}
.fixed.is-active .fixed__list:nth-of-type(1) .fixed__item:nth-child(3) {
  transition-delay: 0.15s;
}
.fixed.is-active .fixed__list:nth-of-type(1) .fixed__item:nth-child(4) {
  transition-delay: 0.2s;
}
.fixed.is-active .fixed__list:nth-of-type(2) .fixed__item:nth-child(1) {
  transition-delay: 0.25s;
}
.fixed.is-active .fixed__list:nth-of-type(2) .fixed__item:nth-child(2) {
  transition-delay: 0.3s;
}
.fixed.is-active .fixed__list:nth-of-type(2) .fixed__item:nth-child(3) {
  transition-delay: 0.35s;
}
.fixed.is-active .fixed__list:nth-of-type(2) .fixed__item:nth-child(4) {
  transition-delay: 0.4s;
}
.fixed__btn {
  position: fixed;
  top: 3%;
  right: 3%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 5rem;
  aspect-ratio: 1/1;
  opacity: 0;
  visibility: hidden;
  z-index: 12;
  /* 非表示へ：遅延なしで 0.5s かけてフェードアウト。
     visibility は 0.5s 後に hidden へ切替（= フェードが終わってから消える） */
  transition: opacity 0.5s ease 0s, visibility 0s linear 0.5s;
}
.fixed__btn.is-active {
  opacity: 1;
  visibility: visible;
  /* 表示へ：2s 待ってから 1s でフェードイン。
   visibility は即 visible（クリック直後からフォーカス可にしたいならこれでOK） */
  transition: opacity 1s ease 2s, visibility 0s linear 0s;
}
.fixed__btn span {
  width: 80%;
  height: 1px;
  background: #ffffff;
  transform: rotate(15deg);
}
.fixed__btn span:last-child {
  transform: rotate(-15deg) translateY(-1px);
}
.fixed__inner {
  width: 90%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.fixed__title {
  width: 55%;
  height: auto;
}
.fixed__list {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.fixed__list-wrapper {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-top: 3rem;
}
.fixed__item {
  opacity: 0;
  transform: translateX(500%);
  transition: transform 2s ease, opacity 0.6s ease;
  /* 退場はいっせいにするため、デフォは遅延なし */
  transition-delay: 0s;
  will-change: transform, opacity;
  filter: blur(25px);
}
.fixed__item.is-active {
  transform: translateX(0);
  opacity: 1;
  filter: blur(0px);
}
.fixed__item:not(.is-active) .fixed__inner {
  transition-delay: 0s; /* 閉じるときは遅延しない */
}
.fixed__item:hover {
  opacity: 0.8;
}
.fixed__link {
  display: block;
  text-align: center;
}
.fixed__link:hover {
  opacity: 0.8;
}
.fixed__text--japanese {
  display: block;
  color: #ffffff;
  font-size: 1.6rem;
  line-height: 1.7;
}
.fixed__text--english {
  display: block;
  color: #ffffff;
  font-size: 0.9rem;
  letter-spacing: 0;
  line-height: 1;
}
.fixed__contact {
  width: 100%;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border: solid 1px #ffffff;
  color: #ffffff;
  margin-top: 3rem;
  line-height: 2;
}
.fixed__contact:hover {
  background: #ffffff;
}
.fixed__contact:hover > span {
  color: #b59da1;
}
@media screen and (min-width: 769px) {
  .fixed {
    right: 0;
    width: 70%;
  }
  .fixed__btn {
    top: 0;
    right: 2%;
  }
  .fixed__inner {
    width: 56%;
    max-width: none;
  }
  .fixed__list {
    gap: 2.1rem;
  }
  .fixed__list-wrapper {
    margin-top: 3.2rem;
  }
  .fixed__link {
    text-align: left;
  }
  .fixed__text--japanese {
    font-size: 1.3rem;
    line-height: 2;
  }
  .fixed__text--english {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
  }
  .fixed__contact {
    height: 4rem;
    margin-top: 4.2rem;
  }
}
@media screen and (min-width: 1025px) {
  .fixed {
    right: 0;
    width: 50%;
    align-items: start;
  }
  .fixed__btn {
    top: 1%;
    right: 2%;
  }
  .fixed__inner {
    width: 41.7%;
  }
  .fixed__title {
    width: 70%;
    margin-top: 79%;
  }
  .fixed__list {
    gap: 2.7rem;
  }
  .fixed__list-wrapper {
    margin-top: 16.9%;
  }
  .fixed__link {
    text-align: left;
  }
  .fixed__text--japanese {
    font-size: 1rem;
    line-height: 2.1;
    letter-spacing: 0.03em;
  }
  .fixed__text--english {
    font-size: 0.5rem;
    letter-spacing: 0.1em;
  }
  .fixed__contact {
    height: 3.9rem;
    margin-top: 24%;
  }
}

.about {
  background-color: #ffffff;
  overflow-x: hidden;
}
.about__inner {
  text-align: center;
  padding-bottom: 5.5rem;
  position: relative;
  padding-top: 60px;
}
.about__images {
  width: 94.7vw;
  margin: 0 auto;
  margin-bottom: 60px;
  position: relative;
  max-width: 540px;
}
.about__img {
  position: absolute;
}
.about__img.no1 {
  display: block;
  width: 66.6%;
  transform: translateX(21%);
  position: relative;
  z-index: 1;
}
.about__img.no2 {
  z-index: 2;
  width: 40.2%;
  top: 65.3%;
  left: 0.5%;
}
.about__img.no3 {
  z-index: 3;
  width: 31.3%;
  top: 33.6%;
  left: 68.1%;
}
.about__img.no4 {
  z-index: 2;
  width: 31.3%;
  top: 75%;
  left: 57%;
}
.about__img.bg {
  display: flex;
  top: 10.75%;
  height: 7rem;
  left: 0%;
  z-index: 0;
}
.about__img.no5 {
  display: none;
  z-index: 0;
  max-width: none;
  position: static;
  display: block;
}
.about__title {
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  line-height: 1.6;
  font-family: "Shippori Mincho", serif !important;
  text-decoration: none;
}
.about__text {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  line-height: 2.25;
  text-align: left;
}
.about__btn {
  margin-top: 3.4rem;
}
@media screen and (min-width: 769px) {
  .about__inner {
    padding-bottom: 4.5rem;
    display: flex;
    width: 92vw;
    margin: 0 auto;
    max-width: 1670px;
  }
  .about__images {
    width: 50%;
    position: absolute;
    right: 0;
  }
  .about__img.no1 {
    width: 76.7%;
    top: 0;
    left: 10%;
    transform: translateX(0);
  }
  .about__img.no2 {
    width: 46.5%;
    top: 65.5%;
    left: -5.8%;
  }
  .about__img.no3 {
    width: 36%;
    top: 33.6%;
    left: 72.5%;
  }
  .about__img.no4 {
    width: 36.3%;
    top: 75.4%;
    left: 59.5%;
  }
  .about__img.bg {
    top: 17%;
    height: 10.84%;
    left: -50vw;
  }
  .about__title {
    font-size: 2rem;
    letter-spacing: 0.07em;
  }
  .about__text {
    font-size: 1.2rem;
    margin-top: 2rem;
    line-height: 2.28;
  }
  .about__text-wrapper {
    text-align: left;
    width: 43%;
    padding-top: 9.8rem;
  }
  .about__btn {
    margin-top: 2.8rem;
  }
}
@media screen and (min-width: 1025px) {
  .about__inner {
    padding-bottom: 17.3rem;
    max-width: 1666px;
    padding-top: 6.8vw;
  }
  .about__images {
    height: auto;
  }
  .about__img.no1 {
    width: 81.2%;
    top: 0;
    left: 10.8%;
    z-index: 1;
  }
  .about__img.no2 {
    width: 48.9%;
    top: 65.6%;
    left: -5.9%;
  }
  .about__img.no3 {
    width: 38.3%;
    top: 33.5%;
    left: 76.6%;
  }
  .about__img.no4 {
    width: 38.3%;
    top: 75.4%;
    left: 63%;
  }
  .about__img.bg {
    top: 15%;
    height: 10.6%;
    left: -122px;
  }
  .about__title {
    font-size: 1.9rem;
    letter-spacing: 0.09em;
    line-height: 1.56;
  }
  .about__text {
    font-size: 1rem;
    margin-top: 2.9rem;
    line-height: 2.38;
    letter-spacing: 0.03em;
  }
  .about__text-wrapper {
    width: 41%;
    padding-top: 20.2rem;
  }
  .about__btn {
    margin-top: 2.6rem;
  }
}

:root {
  --news__item-img-box-width: 31.5vw;
  --news__item-img-box-width-pc: 21.1vw;
}
@media screen and (min-width: 1025px) {
  :root {
    --news__item-img-box-width-pc: 12.6vw;
  }
}

.news {
  background: #e7dfd6;
}
.news__inner {
  text-align: center;
  padding-top: 5.5rem;
  padding-bottom: 5.9rem;
}
.news__content-img-box {
  overflow: hidden;
}
.news__content--top {
  width: 94%;
  margin: 0 auto;
  margin-top: 4.3rem;
  max-width: 480px;
  cursor: pointer;
}
.news__content--top:hover .news__content-img {
  transform: scale(1.2);
}
.news__content--top .news__content-text {
  text-align: left;
  margin-top: 2.8rem;
}
.news__content--top .news__content-date {
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  color: #999;
}
.news__content--top .news__content-title {
  font-size: 1.6rem;
  margin-top: 0.8rem;
  letter-spacing: 0.1em;
  line-height: 1.8;
}
.news__content--top .news__content-discription {
  width: 100%;
  height: 9rem;
  font-size: 1.5rem;
  margin-top: 1.7rem;
  line-height: 2;
  letter-spacing: 0.026em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news__list {
  width: 94%;
  margin: 0 auto;
  margin-top: 3rem;
  max-width: 560px;
}
.news__item-link {
  display: flex;
  padding: 2.02rem 0;
  border-bottom: solid 1px #5a5a5a;
}
.news__item-link:hover .news__item-img {
  transform: scale(1.1);
}
.news__item-link.last {
  border-bottom: none;
}
.news__item-img {
  -o-object-fit: cover;
     object-fit: cover;
}
.news__item-img-box {
  width: var(--news__item-img-box-width);
  height: 21vw;
  overflow: hidden;
}
.news__item-text {
  width: calc(100% - var(--news__item-img-box-width));
  padding-left: 3.5%;
  text-align: left;
  color: #5a5a5a;
}
.news__item-date {
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  color: #999;
}
.news__item-date > span {
  margin-left: -0.6rem;
  letter-spacing: 0.09em;
}
.news__item-title {
  font-size: 1.5rem;
  margin-top: 0.7rem;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news__btn {
  margin-top: 2.1rem;
}
.news__swiper {
  width: 75.75%;
  height: -moz-fit-content;
  height: fit-content;
  margin: 0 auto;
  margin-top: 6rem;
}
.news__slide {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
.news .swiper-slide {
  display: block;
  height: -moz-fit-content;
  height: fit-content;
}
.news .swiper-button-next {
  right: 2.7%;
}
.news .swiper-button-next:after {
  content: "";
  background-image: url(../img/png/icon_arrow.png);
  width: 2.5rem;
  aspect-ratio: 1/1;
  background-size: contain;
  transform: rotate(180deg);
  background-repeat: no-repeat;
}
.news .swiper-button-prev {
  left: 2.7%;
}
.news .swiper-button-prev:after {
  content: "";
  background-image: url(../img/png/icon_arrow.png);
  width: 2.5rem;
  aspect-ratio: 1/1;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (min-width: 769px) {
  .news__inner {
    padding-top: 4.5rem;
    padding-bottom: 4.8rem;
  }
  .news__box {
    display: flex;
    width: 94vw;
    margin: 0 auto;
    justify-content: space-between;
  }
  .news__content--top {
    width: 44.87%;
    margin: 0;
    margin-top: 3.65rem;
  }
  .news__content--top .news__content-text {
    margin-top: 2.3rem;
  }
  .news__content--top .news__content-date {
    font-size: 1.1rem;
  }
  .news__content--top .news__content-title {
    margin-top: 0.7rem;
    letter-spacing: 0.12em;
  }
  .news__content--top .news__content-discription {
    width: 99.8%;
    font-size: 1.15rem;
    margin-top: 1.5rem;
    line-height: 2.1;
    letter-spacing: 0.09em;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    height: 7rem;
  }
  .news__list {
    width: 52.1%;
    margin: 0;
    margin-top: 3.65rem;
  }
  .news__item-link {
    gap: 0;
    padding: 3rem 0;
  }
  .news__item-link.first {
    padding-top: 0;
  }
  .news__item-link.last {
    border-bottom: none;
  }
  .news__item-img {
    width: 100%;
    aspect-ratio: 3/2;
  }
  .news__item-img-box {
    width: var(--news__item-img-box-width-pc);
    height: 14vw;
  }
  .news__item-text {
    width: calc(100% - var(--news__item-img-box-width-pc));
    padding-left: 4%;
  }
  .news__item-date {
    font-size: 1.1rem;
    margin-top: 2.3rem;
    letter-spacing: 0.06em;
  }
  .news__item-date > span {
    margin-left: 0;
    letter-spacing: 0.05em;
  }
  .news__item-title {
    font-size: 1.3rem;
    margin-top: 0.8rem;
    line-height: 1.8;
    letter-spacing: 0.18em;
  }
  .news__btn {
    margin: 0 auto;
    margin-top: 0.2rem;
  }
  .news__swiper {
    width: 73.1%;
    margin-top: 4.75rem;
  }
  .news .swiper-button-next {
    right: 6.9%;
    width: 2.6rem;
  }
  .news .swiper-button-next:after {
    width: 100%;
  }
  .news .swiper-button-prev {
    left: 6.9%;
    width: 2.6rem;
  }
  .news .swiper-button-prev:after {
    width: 100%;
  }
}
@media screen and (min-width: 1025px) {
  .news__inner {
    padding-top: 6.8rem;
    padding-bottom: 10rem;
  }
  .news__box {
    max-width: 1120px;
  }
  .news__content--top {
    margin-top: 5.4rem;
  }
  .news__content--top .news__content-text {
    text-align: left;
    margin-top: 2.2rem;
  }
  .news__content--top .news__content-date {
    font-size: 0.9rem;
    letter-spacing: 0.08em;
  }
  .news__content--top .news__content-title {
    font-size: 1.2rem;
    margin-top: 0.7rem;
    line-height: 1.9;
    letter-spacing: 0.14em;
  }
  .news__content--top .news__content-discription {
    font-size: 0.9rem;
    margin-top: 1.2rem;
    line-height: 2.2;
    letter-spacing: 0.15em;
    height: 6rem;
  }
  .news__list {
    margin-top: 5.4rem;
  }
  .news__item-link {
    display: flex;
    padding: 2.05rem 0;
    border-bottom: solid 1px #5a5a5a;
  }
  .news__item-img-box {
    height: 8.5vw;
    overflow: hidden;
  }
  .news__item-text {
    padding-left: 5.5%;
    text-align: left;
  }
  .news__item-date {
    font-size: 0.85rem;
    margin-top: 2.1rem;
  }
  .news__item-title {
    font-size: 1rem;
    line-height: 1.9;
  }
  .news__btn {
    margin-top: 2rem;
  }
  .news__swiper {
    width: 39.1%;
    margin-top: 8.6rem;
  }
  .news .swiper-button-next {
    right: 27.1%;
    width: 2rem;
  }
  .news .swiper-button-prev {
    left: 27.1%;
    width: 2rem;
  }
}

.background {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  opacity: 0;
  overflow: hidden;
}
.background > img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(0%, -50%) scale(3.5);
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.background-glay {
  position: fixed;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  opacity: 0;
  background: #5a5a5a;
}
.background-glay.is-active {
  opacity: 0.5;
  z-index: 10;
}
.background-window {
  width: 100%;
  height: 58.2vw;
  overflow: hidden;
  position: relative;
}
.background-window::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 40%;
  width: 100%;
  max-width: none;
  background: linear-gradient(to bottom, transparent 0%, #fff 100%);
}
@media screen and (min-width: 520px) {
  .background > img {
    transform: translate(-25%, -50%) scale(2);
  }
}
@media screen and (min-width: 769px) {
  .background > img {
    transform: translate(-40%, -50%) scale(1.5);
  }
  .background-window {
    height: 58.9vw;
  }
}
@media screen and (min-width: 1025px) {
  .background > img {
    transform: translateY(-50%) translateX(-50%) scale(1.5);
  }
  .background-window {
    height: 31.2vw;
  }
}

.service {
  padding-top: 21.5vw;
  padding-bottom: 5.1rem;
  background-color: #ffffff;
}
.service.is-color-changed {
  background-color: #b59da1;
}
.service.is-color-changed > * {
  color: #ffffff;
}
.service.is-color-changed .service__btn:before {
  background-color: #ffffff;
}
.service.is-color-changed .service__btn::after {
  background-color: #ffffff;
}
.service.is-color-changed .service__btn-link {
  color: #ffffff;
}
.service.is-color-changed .service__btn-link::before {
  background-image: url(.././img/png/icon_arrow_white.png);
}
.service.is-color-changed .service__btn-link::after {
  background-image: url(.././img/png/icon_arrow_white.png);
}
.service__inner {
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  position: relative;
  justify-content: flex-start;
}
.service__chatch {
  font-size: clamp(1.8rem, 3vw, 2rem);
  letter-spacing: 0.1em;
  line-height: 1.9;
  margin-top: 1.7rem;
}
.service__discription {
  font-size: 1.5rem;
  margin-top: 1.5rem;
  line-height: 2.24;
}
.service__btn {
  margin-top: 2.1rem;
}
.service__text {
  width: 94.4vw;
  margin: 0 auto;
  transition: transform 1s ease;
  z-index: 10;
}
.service__image {
  position: relative;
  overflow: hidden;
  height: clamp(1544.03px, 1544.03px + 2038.69 * min(378px, max(0px, 100vw - 390px)) / 378, 3582.72px);
}
.service__image--1 {
  position: absolute;
  width: 34.6%;
  top: 25.1%;
  left: 1.5%;
  min-width: 200px;
}
.service__image--2 {
  position: absolute;
  width: 40.9%;
  top: 29.9%;
  left: 65.2%;
}
.service__image--3 {
  position: absolute;
  width: 31.6%;
  top: 42.65%;
  left: 6.8%;
}
.service__image--4 {
  position: absolute;
  width: 31.1%;
  top: 52.8%;
  left: 58.8%;
}
.service__image--5 {
  position: absolute;
  width: 48.42%;
  top: 64.7%;
  left: -14%;
}
.service__image--6 {
  position: absolute;
  width: 27.5%;
  top: 71.35%;
  left: 71.2%;
}
.service__image--7 {
  position: absolute;
  width: 36.9%;
  top: 80%;
  left: 4.2%;
}
.service__image--8 {
  position: absolute;
  width: 51.9%;
  bottom: 0;
  left: 45%;
}
@media screen and (min-width: 769px) {
  .service {
    padding-top: 11rem;
    padding-bottom: 5.3rem;
  }
  .service__chatch {
    font-size: 1.6rem;
    letter-spacing: 0.12em;
  }
  .service__discription {
    font-size: 1.2rem;
    margin-top: 1rem;
    line-height: 2.3;
  }
  .service__btn {
    margin: 0 auto;
    margin-top: 1.5rem;
  }
  .service__image {
    height: 274.5vh;
    max-height: 1800px;
    min-height: 1100px;
  }
  .service__image--1 {
    width: 24.7%;
    top: 14.8%;
    left: 1.1%;
  }
  .service__image--2 {
    width: 30.7%;
    top: 19.1%;
    left: 74.5%;
  }
  .service__image--3 {
    width: 21.7%;
    top: 33.35%;
    left: 6.7%;
  }
  .service__image--4 {
    width: 21.25%;
    top: 48.5%;
    left: 66.25%;
  }
  .service__image--5 {
    width: 38.5%;
    top: 55.7%;
    left: -15.2%;
  }
  .service__image--6 {
    width: 17.4%;
    top: 64.5%;
    left: 81%;
  }
  .service__image--7 {
    width: 27%;
    top: 75.25%;
    left: 8.4%;
  }
  .service__image--8 {
    width: 42.15%;
    bottom: 0;
    left: 55%;
  }
}
@media screen and (min-width: 1025px) {
  .service {
    padding-top: 20.8rem;
    padding-bottom: 11.37rem;
  }
  .service__chatch {
    font-size: 1.9rem;
    letter-spacing: 0.085em;
    line-height: 1.8;
    margin-top: 2.9rem;
    padding-left: 0.1em;
  }
  .service__discription {
    font-size: 1rem;
    margin-top: 2.6rem;
    line-height: 2.48;
    padding-left: 0.1em;
    letter-spacing: 0.03em;
  }
  .service__btn {
    margin-top: 2.4rem;
  }
  .service__image {
    height: 231vh;
    max-height: 2800px;
    min-height: 1500px;
  }
  .service__image--1 {
    width: 19.3%;
    min-width: 296px;
    top: 20.3%;
    left: 11.8%;
  }
  .service__image--2 {
    width: 24%;
    min-width: 368px;
    top: 24.25%;
    left: 69.2%;
  }
  .service__image--3 {
    width: 16.9%;
    min-width: 259px;
    top: 37.55%;
    left: 16.2%;
  }
  .service__image--4 {
    width: 16.5%;
    min-width: 252px;
    top: 51.65%;
    left: 62.7%;
  }
  .service__image--5 {
    width: 29.9%;
    min-width: 459px;
    top: 58.3%;
    left: -0.8%;
  }
  .service__image--6 {
    width: 13.5%;
    min-width: 207px;
    top: 66.4%;
    left: 74.3%;
  }
  .service__image--7 {
    width: 21%;
    min-width: 324px;
    top: 76.4%;
    left: 17.6%;
  }
  .service__image--8 {
    width: 32.7%;
    min-width: 501px;
    bottom: 0;
    left: 54.1%;
  }
}

.photo {
  position: relative;
  text-align: center;
  overflow: hidden;
}
.photo::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: #5a5a5a;
  opacity: 0.56;
  z-index: -1;
}
.photo::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: url(.././img/06.PHOTO/PHOTO1.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}
.photo__inner {
  margin: 0 auto;
  padding-top: 5rem;
  width: 94.4vw;
  padding-bottom: 5.2rem;
  max-width: 480px;
}
.photo__bg {
  position: absolute;
  display: block;
  transform: scale(2.5) translateY(-50%);
  z-index: -1;
  top: 50%;
}
.photo__title {
  color: #ffffff;
}
.photo__text {
  font-size: 1.4rem;
  margin-top: 2.3rem;
  line-height: 2.4;
  letter-spacing: 0.1em;
  text-align: left;
  color: #ffffff;
}
.photo__btn {
  margin-top: 2rem;
}
.photo__btn::after {
  background: #ffffff;
}
.photo__btn::before {
  background: #ffffff;
}
.photo__btn > a {
  color: #ffffff;
}
.photo__btn > a:before {
  background-image: url(.././img/png/icon_arrow_white.png);
}
.photo__btn > a:after {
  background-image: url(.././img/png/icon_arrow_white.png);
}
.photo__box {
  width: 100%;
  aspect-ratio: 3/2;
  margin-top: 4.5rem;
  overflow: hidden;
}
.photo__box:hover > img {
  transform: scale(1.2);
}
.photo__img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.8s ease;
}
@media screen and (min-width: 769px) {
  .photo__inner {
    padding-top: 3.7rem;
    width: 94vw;
    padding-bottom: 4.3rem;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    max-width: none;
  }
  .photo__title {
    text-align: left;
    margin-top: 5.9rem;
  }
  .photo__text {
    font-size: 1.2rem;
    margin-top: 1.9rem;
    line-height: 2.3;
    letter-spacing: 0.04em;
  }
  .photo__text-wrapper {
    width: 40.2%;
  }
  .photo__btn {
    margin-top: 1.6rem;
  }
  .photo__box {
    width: 56.6%;
    margin-top: 0;
  }
}
@media screen and (min-width: 1025px) {
  .photo__inner {
    padding-top: 7.2rem;
    max-width: 1199px;
    padding-bottom: 7rem;
  }
  .photo__title {
    margin-top: 4rem;
  }
  .photo__text {
    font-size: 1rem;
    margin-top: 2.6rem;
    line-height: 2.4;
    letter-spacing: 0.04em;
  }
  .photo__text-wrapper {
    width: 38.3%;
  }
  .photo__btn {
    margin-top: 2.3rem;
  }
  .photo__box {
    width: 56.7%;
  }
}

.hairmake {
  position: relative;
  text-align: center;
  overflow: hidden;
}
.hairmake::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: #5a5a5a;
  opacity: 0.56;
  z-index: -1;
}
.hairmake::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: url(.././img/07.HAIRMAKE/HAIRMAKE1.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}
.hairmake__inner {
  margin: 0 auto;
  padding-top: 5rem;
  width: 94.4vw;
  padding-bottom: 5.4rem;
  max-width: 480px;
}
.hairmake__bg {
  position: absolute;
  display: block;
  transform: scale(2.5) translateY(-50%);
  z-index: -1;
  top: 50%;
}
.hairmake__title {
  color: #ffffff;
}
.hairmake__text {
  font-size: 1.4rem;
  margin-top: 2.3rem;
  line-height: 2.4;
  letter-spacing: 0.1em;
  text-align: left;
  color: #ffffff;
}
.hairmake__btn {
  margin-top: 2rem;
}
.hairmake__btn::after {
  background: #ffffff;
}
.hairmake__btn::before {
  background: #ffffff;
}
.hairmake__btn > a {
  color: #ffffff;
}
.hairmake__btn > a::before {
  background-image: url(.././img/png/icon_arrow_white.png);
}
.hairmake__btn > a::after {
  background-image: url(.././img/png/icon_arrow_white.png);
}
.hairmake__box {
  width: 100%;
  aspect-ratio: 3/2;
  margin-top: 4.5rem;
  overflow: hidden;
}
.hairmake__box:hover > img {
  transform: scale(1.2);
}
.hairmake__img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.8s ease;
}
@media screen and (min-width: 769px) {
  .hairmake__inner {
    padding-top: 3.7rem;
    width: 94vw;
    padding-bottom: 4.3rem;
    display: flex;
    justify-content: space-between;
    max-width: none;
  }
  .hairmake__title {
    text-align: left;
    margin-top: 5.9rem;
  }
  .hairmake__text {
    font-size: 1.2rem;
    margin-top: 1.9rem;
    line-height: 2.3;
    letter-spacing: 0.04em;
  }
  .hairmake__text-wrapper {
    width: 41.2%;
  }
  .hairmake__btn {
    margin-top: 1.6rem;
  }
  .hairmake__box {
    width: 56.6%;
    margin-top: 0;
  }
}
@media screen and (min-width: 1125px) {
  .hairmake__inner {
    padding-top: 7.2rem;
    max-width: 1199px;
    padding-bottom: 7rem;
  }
  .hairmake__title {
    margin-top: 4rem;
  }
  .hairmake__text {
    font-size: 1rem;
    margin-top: 2.6rem;
    line-height: 2.4;
    letter-spacing: 0.03em;
  }
  .hairmake__text-wrapper {
    width: 38.3%;
  }
  .hairmake__btn {
    margin-top: 2.3rem;
  }
  .hairmake__box {
    width: 56.7%;
  }
}

.ceremony {
  position: relative;
  text-align: center;
  overflow: hidden;
}
.ceremony::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: #5a5a5a;
  opacity: 0.56;
  z-index: -1;
}
.ceremony::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 117%;
  height: 100%;
  background-image: url(.././img/08.CEREMONY/CEREMONY1.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}
.ceremony__inner {
  margin: 0 auto;
  padding-top: 4.8rem;
  width: 94.4vw;
  padding-bottom: 5.2rem;
  max-width: 480px;
}
.ceremony__bg {
  position: absolute;
  display: block;
  transform: scale(2.5) translateY(-50%);
  z-index: -1;
  top: 50%;
}
.ceremony__title {
  color: #ffffff;
}
.ceremony__text {
  font-size: 1.4rem;
  margin-top: 2.3rem;
  line-height: 2.4;
  letter-spacing: 0.1em;
  text-align: left;
  color: #ffffff;
}
.ceremony__btn {
  margin-top: 2.1rem;
}
.ceremony__btn::before {
  background: #ffffff;
}
.ceremony__btn::after {
  background: #ffffff;
}
.ceremony__btn > a {
  color: #ffffff;
}
.ceremony__btn > a::before {
  background-image: url(.././img/png/icon_arrow_white.png);
}
.ceremony__btn > a::after {
  background-image: url(.././img/png/icon_arrow_white.png);
}
.ceremony__box {
  width: 100%;
  aspect-ratio: 3/2;
  margin-top: 4.5rem;
  overflow: hidden;
}
.ceremony__box:hover > img {
  transform: scale(1.2);
}
.ceremony__img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.8s ease;
}
@media screen and (min-width: 769px) {
  .ceremony__inner {
    padding-top: 3.7rem;
    width: 94vw;
    padding-bottom: 4.3rem;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    max-width: none;
  }
  .ceremony__title {
    text-align: left;
    margin-top: 5.9rem;
  }
  .ceremony__text {
    font-size: 1.2rem;
    margin-top: 1.9rem;
    line-height: 2.3;
    letter-spacing: 0.04em;
  }
  .ceremony__text-wrapper {
    width: 40.2%;
  }
  .ceremony__btn {
    margin-top: 1.6rem;
  }
  .ceremony__box {
    width: 56.6%;
    margin-top: 0;
  }
}
@media screen and (min-width: 1025px) {
  .ceremony__inner {
    padding-top: 7.2rem;
    max-width: 1199px;
    padding-bottom: 7rem;
  }
  .ceremony__title {
    margin-top: 4.2rem;
    letter-spacing: 0.09em;
  }
  .ceremony__text {
    font-size: 1rem;
    margin-top: 2.6rem;
    line-height: 2.4;
  }
  .ceremony__text-wrapper {
    width: 38.3%;
  }
  .ceremony__btn {
    margin-top: 2.3rem;
  }
  .ceremony__box {
    width: 56.7%;
  }
}

:root {
  --collection__list-width: 58.2%;
}

.collection {
  text-align: center;
  background: #b59da1;
}
.collection__inner {
  width: 94%;
  margin: 0 auto;
  padding-top: 5rem;
  padding-bottom: 5.5rem;
  position: relative;
}
.collection__title {
  color: #ffffff;
}
.collection__text {
  font-size: 1.4rem;
  margin-top: 2.3rem;
  line-height: 2.5;
  letter-spacing: 0.1em;
  color: #ffffff;
}
.collection__btn {
  margin-top: 2.1rem;
  color: #ffffff;
}
.collection__btn::before {
  background: #ffffff;
}
.collection__btn::after {
  background: #ffffff;
}
.collection__btn-link {
  color: #ffffff;
}
.collection__btn-link:before {
  background-image: url(.././img/png/icon_arrow_white.png);
}
.collection__btn-link:after {
  background-image: url(.././img/png/icon_arrow_white.png);
}
.collection__box {
  margin-top: 5.95rem;
  align-items: flex-start;
}
.collection__link {
  color: #ffffff;
}
.collection__list {
  display: flex;
  flex-direction: column;
  border-bottom: solid 1px rgba(255, 255, 255, 0.5725490196);
}
.collection__image {
  display: none;
}
.collection__image-sticky {
  width: 40%;
}
.collection__item {
  border-top: solid 1px rgba(255, 255, 255, 0.5725490196);
}
.collection__item:hover {
  border-top: solid 1px #ffffff;
}
.collection__item:hover .collection__item-link {
  color: #ffffff;
}
.collection__item-link {
  display: flex;
  flex-direction: column;
  padding: 4.6rem 0 3.65rem;
  align-items: center;
  gap: 2.7rem;
  color: rgba(255, 255, 255, 0.5725490196);
}
.collection__item-img {
  width: 65.25%;
}
.collection__item-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.collection__item-title--english {
  font-size: 2.8rem;
  font-family: "EB Garamond", serif;
  font-weight: 400;
  letter-spacing: 0.05em;
}
.collection__item-title--japanese {
  font-size: 1.5rem;
  font-weight: 400;
  font-family: "EB Garamond", serif;
}
@media screen and (min-width: 520px) {
  .collection__item-link {
    flex-direction: row;
    padding: 4.15rem 0 4rem;
    gap: 2rem;
  }
  .collection__item-img {
    width: 33.25%;
  }
  .collection__item-title {
    align-items: start;
    gap: 1rem;
  }
  .collection__item-title--english {
    letter-spacing: 0.06em;
  }
}
@media screen and (min-width: 769px) {
  .collection {
    text-align: left;
  }
  .collection__inner {
    padding-top: 4rem;
    padding-bottom: 4.45rem;
  }
  .collection__text {
    font-size: 1.1rem;
    margin-top: 2rem;
    letter-spacing: 0.14em;
  }
  .collection__btn {
    position: absolute;
    right: 0;
    top: 10rem;
    margin-top: 0;
  }
  .collection__box {
    margin-top: 5rem;
    display: flex;
  }
  .collection__item-link {
    flex-direction: row;
    padding: 3.3rem 0 3.15rem;
    gap: 2.3rem;
  }
  .collection__item-img {
    width: 25%;
  }
  .collection__item-title {
    align-items: start;
    gap: 0.5rem;
  }
  .collection__item-title--english {
    font-size: 2.3rem;
  }
  .collection__item-title--japanese {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 1025px) {
  .collection__wrapper {
    padding-left: 15.8vw;
  }
  .collection__inner {
    padding-top: 8.15rem;
    padding-bottom: 7.6rem;
  }
  .collection__text {
    font-size: 1rem;
    margin-top: 1.75rem;
    letter-spacing: 0.03em;
  }
  .collection__btn {
    left: 70.9%;
    top: 14.3rem;
  }
  .collection__box {
    margin-top: 5.6rem;
    justify-content: space-between;
    position: relative;
    padding-left: 2.1%;
  }
  .collection__image {
    display: block;
    position: relative;
    min-height: -moz-fit-content;
    min-height: fit-content;
    width: 34.9%;
    aspect-ratio: 3/4;
  }
  .collection__image > img {
    position: absolute;
    inset: 0;
    width: 100%;
    max-height: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
    opacity: 0;
    pointer-events: none;
  }
  .collection__image > img.is-active {
    opacity: 1;
  }
  .collection__list {
    width: var(--collection__list-width);
  }
  .collection__item-link {
    display: flex;
    flex-direction: row;
    padding: 5.1rem 0 5.6rem;
    align-items: center;
    gap: 2rem;
  }
  .collection__item-img {
    display: none;
  }
  .collection__item-title {
    flex-direction: row;
    align-items: baseline;
    gap: 1.5rem;
  }
  .collection__item-title--english {
    font-size: 3.3rem;
    letter-spacing: 0.06em;
  }
  .collection__item-title--japanese {
    font-size: 1rem;
  }
}

.contact {
  background-color: #ffffff;
  padding-top: 5.55rem;
  padding-bottom: 5rem;
}
.contact__inner {
  background-color: #ffffff;
  width: 90vw;
  margin: 0 auto;
  background-image: url(.././img/10.CONTACT/CONTACT1.jpg);
  text-align: center;
  padding-top: 4.5rem;
  padding-bottom: 5rem;
  position: relative;
  z-index: 0;
}
.contact__bg {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: #5a5a5a;
  opacity: 0.3;
  top: 0;
  z-index: -1;
}
.contact__title {
  letter-spacing: 0.05em;
  color: #ffffff;
}
.contact__text {
  font-size: 1.3rem;
  margin-top: 2.8rem;
  line-height: 2.2;
  letter-spacing: 0.2em;
  color: #ffffff;
}
.contact__tel {
  font-size: 1.8rem;
  margin-top: 1.6rem;
  font-family: "EB Garamond", serif;
  padding-left: 1rem;
  letter-spacing: 0.12em;
  color: #ffffff;
  pointer-events: none;
  text-decoration: none;
}
.contact__tel > span {
  font-size: 3rem;
  letter-spacing: 0.12em;
  padding-left: 0.5rem;
  pointer-events: none;
  text-decoration: none;
  color: #ffffff;
}
.contact__tel > span > a {
  color: #ffffff;
  pointer-events: auto;
  text-decoration: none;
}
.contact__time {
  margin-top: 1rem;
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  line-height: 1.6;
  color: #ffffff;
}
.contact__btn {
  margin-top: 3rem;
}
.contact__btn-link {
  color: #ffffff;
}
.contact__btn-link:before {
  background-image: url(.././img/png/icon_arrow_white.png);
}
.contact__btn-link:after {
  background-image: url(.././img/png/icon_arrow_white.png);
}
.contact__btn::before {
  background: #ffffff;
}
.contact__btn::after {
  background: #ffffff;
}
@media screen and (min-width: 769px) {
  .contact {
    padding-top: 4.5rem;
    padding-bottom: 4.2rem;
  }
  .contact__inner {
    width: 94vw;
    padding-top: 3.6rem;
    padding-bottom: 4rem;
  }
  .contact__text {
    font-size: 1.1rem;
    margin-top: 2.4rem;
    line-height: 2.1;
    letter-spacing: 0.144em;
  }
  .contact__tel {
    font-size: 1.6rem;
    margin-top: 1.4rem;
  }
  .contact__tel > span {
    font-size: 2.5rem;
    padding-left: 0.3rem;
  }
  .contact__time {
    margin-top: 0.6rem;
    font-size: 1rem;
    letter-spacing: 0.24em;
  }
  .contact__btn {
    margin: 0 auto;
    margin-top: 2.4rem;
  }
}
@media screen and (min-width: 1025px) {
  .contact {
    padding-top: 9.3rem;
    padding-bottom: 8rem;
  }
  .contact__inner {
    width: 62.5vw;
    padding-top: 4.5rem;
    padding-bottom: 4.9rem;
  }
  .contact__text {
    font-size: 1rem;
    margin-top: 2.7rem;
    line-height: 2.5;
    letter-spacing: 0.08em;
  }
  .contact__tel {
    font-size: 2.1rem;
    margin-top: 0.5rem;
  }
  .contact__tel > span {
    font-size: 3.4rem;
    padding-left: 0.3rem;
  }
  .contact__time {
    margin-top: 0.4rem;
    font-size: 0.8rem;
    letter-spacing: 0.187em;
  }
  .contact__btn {
    margin-top: 2rem;
  }
}

.instagram {
  background-color: #ffffff;
  overflow-x: hidden;
}
.instagram__inner {
  text-align: center;
  padding-bottom: 5.5rem;
}
.instagram__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 3.65rem;
}
.instagram__grid-title {
  text-align: left;
  color: #b59da1;
  font-size: 2rem;
  margin-top: 4.8rem;
  letter-spacing: 0.08em;
  padding-left: 3%;
  display: flex;
  align-items: center;
  font-family: "EB Garamond", serif;
  font-weight: 400;
  cursor: pointer;
}
.instagram__grid-title.bottom {
  margin-top: 5rem;
}
.instagram__grid-title:hover {
  opacity: 0.7;
}
.instagram__grid-title > span {
  background: #b59da1;
  width: 4rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}
.instagram__grid-title > span > img {
  width: 2.2rem;
}
.instagram__item {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  vertical-align: bottom;
}
.instagram__link {
  vertical-align: bottom;
}
.instagram__img {
  vertical-align: bottom;
}
.instagram__bg {
  max-width: none;
}
.instagram__bg-box {
  display: flex;
}
.instagram__bg.top {
  height: 2.3rem;
  margin-top: 2.2rem;
}
.instagram__bg.bottom {
  height: 3.2rem;
  margin-top: 2.3rem;
}
@media screen and (min-width: 520px) {
  .instagram__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media screen and (min-width: 769px) {
  .instagram__inner {
    padding-bottom: 4.5rem;
  }
  .instagram__grid {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    margin-top: 3rem;
  }
  .instagram__grid-title {
    margin-top: 4.05rem;
    letter-spacing: 0;
  }
  .instagram__grid-title.bottom {
    margin-top: 4.1rem;
  }
  .instagram__grid-title > span {
    width: 3.2rem;
    margin-right: 0.7rem;
  }
  .instagram__grid-title > span > img {
    width: 1.8rem;
  }
  .instagram__bg.top {
    height: 1.87rem;
    margin-top: 1.8rem;
    width: auto;
  }
  .instagram__bg.bottom {
    height: 2.68rem;
    margin-top: 1.8rem;
    width: auto;
  }
}
@media screen and (min-width: 1025px) {
  .instagram__inner {
    padding-bottom: 9.5rem;
  }
  .instagram__grid {
    margin-top: 2.3rem;
  }
  .instagram__grid-title {
    font-size: 1.9rem;
    margin-top: 3.6rem;
    padding-left: 2.65%;
    letter-spacing: 0.01em;
  }
  .instagram__grid-title.bottom {
    margin-top: 5.2rem;
  }
  .instagram__grid-title > span {
    margin-right: 1rem;
  }
  .instagram__bg.top {
    height: 2rem;
    margin-top: 1.3rem;
  }
  .instagram__bg.bottom {
    height: 2.63rem;
    margin-top: 1.3rem;
    width: auto;
  }
}/*# sourceMappingURL=main.css.map */