@charset "UTF-8";
/*============================================================
	Base
============================================================*/
html,
body {
  width: 100%;
  overflow-x: hidden;
}
@media only screen and (max-width: 767px) {
  html,
  body {
    min-height: 100vh;
  }
}

html {
  font-family: "Crimson Text", "Shippori Mincho", serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  font-feature-settings: "palt";
  color: #111;
  word-wrap: break-word;
}
@media only screen and (max-width: 767px) {
  html {
    font-size: 3.4666666667vw;
    -webkit-text-size-adjust: 100%;
  }
}
@media print, screen and (min-width: 768px) and (max-width: 1500px) {
  html {
    font-size: 1.067vw;
  }
}
html * {
  box-sizing: border-box;
  letter-spacing: 0.05em;
}

body {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: #f5f5f5;
  animation: fade-in 1.5s ease 0s 1 normal;
}
body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  inset: 0;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  body.fixed {
    height: -webkit-fill-available;
    height: 100vh;
    height: 100dvh;
    height: calc(var(--vh, 1vh) * 100);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
img {
  width: 100%;
  height: auto;
}
img[src$=".svg"] {
  max-width: 100%;
}

a,
a * {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  color: inherit;
  text-decoration: none;
  outline: none;
  transition: all 0.4s;
}

@media print, screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

header,
main,
section,
footer {
  width: 100%;
}

main {
  flex: 1 0 auto;
  min-height: 1px;
}

dt, strong {
  font-weight: inherit;
}

p {
  line-height: 1.8;
  text-align: justify;
}

/*============================================================
	Commmon
============================================================*/
@media only screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

@media print, screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

.inner {
  width: 80vw;
  max-width: 1200px;
  margin-inline: auto;
}
@media only screen and (max-width: 767px) {
  .inner {
    width: 86.667%;
    max-width: 86.667vw;
  }
}
.inner .container {
  width: 83.333%;
  margin-inline: auto;
}
@media only screen and (max-width: 767px) {
  .inner .container {
    width: 100%;
  }
}

.wider {
  display: flex;
  justify-content: space-between;
}
@media print, screen and (min-width: 768px) {
  .wider {
    width: 90vw;
    max-width: 1350px;
    margin-inline: auto 0;
  }
}
@media only screen and (max-width: 767px) {
  .wider {
    flex-direction: column;
  }
}
@media print, screen and (min-width: 1500px) {
  .wider {
    width: calc(50vw + 600px);
    max-width: calc(50vw + 600px);
    margin-left: calc(50vw - 600px);
  }
}
.wider .txt__wrap {
  display: flex;
  flex-direction: column;
}
.wider > figure {
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .wider > figure {
    width: 100vw;
    margin-left: -6.667vw;
    margin-top: 3.125rem;
  }
}
.wider > figure img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  inset: 0;
}

/*  注釈
-------------------------------------------------*/
.notes li {
  line-height: 1.4;
  margin-top: 0.5em;
  font-size: 0.875rem;
  color: #666;
  padding-left: 1em;
  text-indent: -1em;
}
.notes li::before {
  content: "※";
}

/*  フローティング
-------------------------------------------------*/
.floating {
  position: fixed;
  right: 1.875rem;
  bottom: 1.875rem;
  z-index: 10;
}
@media only screen and (max-width: 767px) {
  .floating {
    bottom: 1.154rem;
    right: unset;
    left: 50%;
    transform: translateX(-50%);
  }
}
.floating .reserve {
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s;
}
.floating .reserve.is-show {
  opacity: 1;
  visibility: visible;
}

/*  キャンセルポリシー
-------------------------------------------------*/
.cancel h4 {
  font-size: 112%;
  font-weight: 500;
  margin-bottom: 0.5em;
}
.cancel h4::before {
  content: "■ ";
}
.cancel h4:not(:first-of-type) {
  margin-top: 1em;
}

/*  headings & title
-------------------------------------------------*/
h2 {
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 767px) {
  h2 {
    font-size: 1.846rem;
  }
}

/*  links
-------------------------------------------------*/
.btn {
  width: 17.5rem;
  height: 3.75rem;
  border: solid 1px #111;
  padding-inline: 1.25rem;
  display: grid;
  align-items: center;
  position: relative;
}
.btn::before, .btn::after {
  position: absolute;
  content: "";
  top: 50%;
  transition: all 0.4s;
}
.btn::before {
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 50%;
  background: #111;
  right: 1.25rem;
  transform: translateY(-50%);
}
.btn::after {
  width: 0.625rem;
  height: 0.25rem;
  border-bottom: solid 1px #fff;
  border-right: solid 1px #fff;
  transform: translateY(-50%) skewX(45deg);
  right: 2rem;
}
@media (hover: hover) and (pointer: fine) {
  .btn:hover {
    background: #111;
    color: #fff;
  }
  .btn:hover::before {
    background: #fff;
  }
  .btn:hover::after {
    border-bottom-color: #111;
    border-right-color: #111;
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .btn:hover {
    background: #111;
    color: #fff;
  }
  .btn:hover::before {
    background: #fff;
  }
  .btn:hover::after {
    border-bottom-color: #111;
    border-right-color: #111;
  }
}

.reserve {
  width: 22.5rem;
  height: 5.625rem;
  background: #111;
  color: #fff;
  padding-inline: 1.875rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  font-family: "Inter", sans-serif;
  border: solid 1px #111;
}
.reserve span {
  font-family: "Crimson Text", "Shippori Mincho", serif;
  font-size: 1.125rem;
  padding-left: 1.875rem;
  position: relative;
}
.reserve span::before {
  position: absolute;
  content: "";
  width: 1.25rem;
  height: 100%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url(../img/common/icon_calendar-w.svg) no-repeat center left/contain;
  transition: all 0.4s;
}
@media (hover: hover) and (pointer: fine) {
  .reserve:hover {
    background: #fff;
    color: #111;
  }
  .reserve:hover span::before {
    background-image: url(../img/common/icon_calendar.svg);
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .reserve:hover {
    background: #fff;
    color: #111;
  }
  .reserve:hover span::before {
    background-image: url(../img/common/icon_calendar.svg);
  }
}

/*  scroll
-------------------------------------------------*/
.scroll_item,
.scroll_list_item,
.scroll_fade_item {
  opacity: 0;
  transition: all ease-in-out 1s;
}
.scroll_item.scrollActive,
.scroll_list_item.scrollActive,
.scroll_fade_item.scrollActive {
  opacity: 1;
  transform: translate(0) scale(1);
}

.fadeTop {
  transform: translate(0, 50px);
}
.fadeTop.scrollActive {
  transform: translate(0, 0);
}

.fadeLeft,
.fadeRight {
  transform: translate(50px, 0);
}
.fadeLeft.scrollActive,
.fadeRight.scrollActive {
  transform: translate(0, 0);
}

.fadeRight {
  transform: translate(-50px, 0);
}

@media print, screen and (min-width: 768px) {
  .popup {
    transform: translate(0, 50px) scale(0);
  }
  .popup.scrollActive {
    transform: translate(0, 0) scale(1);
  }
}

.imgAnimationRight::after,
.imgAnimationLeft::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #f5f5f5;
  transition: all ease-in-out 1s;
  transform-origin: center right;
}
.imgAnimationRight.scrollActive::after,
.imgAnimationLeft.scrollActive::after {
  transform: scaleX(0);
}

.imgAnimationLeft::after {
  transform-origin: center left;
}

/*============================================================
	Layout
============================================================*/
/*  header
-------------------------------------------------*/
header {
  position: fixed;
  right: 1.875rem;
  top: 1.875rem;
  background: #fff;
  width: 12.5rem;
  height: 5.625rem;
  border-radius: 0.313rem;
  padding-inline: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}
@media only screen and (max-width: 767px) {
  header {
    right: 1.154rem;
    top: 1.154rem;
  }
}
header .lang__wrap .lang {
  display: block;
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  background: #111;
  color: #fff;
  pointer-events: auto;
  cursor: pointer;
  display: grid;
  place-content: center;
  font-family: "Inter", sans-serif;
  color: #fff;
  position: relative;
}
header .lang__wrap .lang::after {
  position: absolute;
  content: "";
  width: 0.625rem;
  height: 0.313rem;
  background: #fff;
  clip-path: polygon(50% 100%, 100% 0, 0 0);
  bottom: 0.625rem;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.4s;
}
@media only screen and (max-width: 767px) {
  header .lang__wrap .lang::after {
    width: 0.538rem;
    height: 0.269rem;
    right: 0.385rem;
  }
}
header .lang__wrap .lang.open::after {
  transform: translateX(-50%) rotate(180deg);
}
header .lang__wrap .lang__list {
  display: none;
  position: fixed;
  top: 6.875rem;
  right: 7.188rem;
  width: 8.75rem;
}
@media only screen and (max-width: 767px) {
  header .lang__wrap .lang__list {
    top: 6.538rem;
    right: 6.731rem;
  }
}
header .lang__wrap .lang__list li p, header .lang__wrap .lang__list li a {
  width: 100%;
  height: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.875rem;
  color: #111;
  background: #ddd;
}
header .lang__wrap .lang__list li p span, header .lang__wrap .lang__list li a span {
  width: 2.5rem;
  text-align: right;
  font-family: "Inter", sans-serif;
  color: #999;
}
header .lang__wrap .lang__list li p.cn, header .lang__wrap .lang__list li a.cn {
  font-family: "Crimson Text", "Noto Serif SC", serif;
}
header .lang__wrap .lang__list li p.kr, header .lang__wrap .lang__list li a.kr {
  font-family: "Crimson Text", "Noto Serif KR", serif;
}
header .lang__wrap .lang__list li:not(:last-child) {
  border-bottom: solid 1px #fff;
}
header .lang__wrap .lang__list li:first-child p, header .lang__wrap .lang__list li:first-child a {
  border-radius: 0.313rem 0.313rem 0 0;
}
header .lang__wrap .lang__list li:last-child p, header .lang__wrap .lang__list li:last-child a {
  border-radius: 0 0 0.313rem 0.313rem;
}
header .lang__wrap .lang__list li.is-current p {
  background: #111;
  color: #fff;
}
header .hamburger {
  width: 5rem;
  height: 1.25rem;
  position: relative;
  cursor: pointer;
}
header .hamburger span {
  position: absolute;
  width: 100%;
  height: 1px;
  background: #111;
  transition: all 0.4s;
  left: 50%;
  transform: translateX(-50%);
}
header .hamburger span:first-child {
  top: 0;
}
header .hamburger span:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}
header .hamburger span:last-child {
  bottom: 0;
}
@media (hover: hover) and (pointer: fine) {
  header .hamburger:hover span:nth-child(2) {
    transform: scaleX(0.75) translate(-50%, -50%);
  }
  header .hamburger:hover span:last-child {
    transform: scaleX(0.5) translateX(-50%);
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  header .hamburger:hover span:nth-child(2) {
    transform: scaleX(0.75) translate(-50%, -50%);
  }
  header .hamburger:hover span:last-child {
    transform: scaleX(0.5) translateX(-50%);
  }
}
header .hamburger.active span:first-child {
  top: 50%;
  transform: translate(-50%, -50%) rotate(15deg);
}
header .hamburger.active span:nth-child(2) {
  transform: scaleX(0);
}
header .hamburger.active span:last-child {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
}

nav {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  position: fixed;
  background: #fff;
  width: 100%;
  height: 100vh;
  padding-block: 13.75rem 6.25rem;
  inset: 0;
  z-index: 98;
}
@media only screen and (max-width: 767px) {
  nav {
    height: 100dvh;
    padding: 11.538rem 0 0;
    overflow: auto;
  }
}
nav.open {
  opacity: 1;
  visibility: visible;
}
nav .inner {
  height: 100%;
  opacity: 0;
  transition: all ease-in-out 0.6s;
  filter: blur(10px);
}
nav .inner.open {
  opacity: 1;
  filter: blur(0);
}
nav .inner .container {
  height: 100%;
  display: flex;
}
@media only screen and (max-width: 767px) {
  nav .inner .container {
    flex-direction: column;
  }
}
nav .inner .container .nav__cotnents {
  position: relative;
  display: flex;
  flex-direction: column;
}
@media print, screen and (min-width: 768px) {
  nav .inner .container .nav__cotnents {
    width: 50%;
    padding-right: 6.25rem;
    border-right: solid 1px #ddd;
    justify-content: center;
    align-items: flex-end;
  }
}
@media only screen and (max-width: 767px) {
  nav .inner .container .nav__cotnents {
    padding-bottom: 2.885rem;
    border-bottom: solid 1px #ddd;
  }
}
nav .inner .container .nav__cotnents h2 {
  position: absolute;
  left: 0;
  top: 0;
  font-family: "Inter", sans-serif;
  font-size: 2.25rem;
  font-weight: 600;
  color: #ddd;
}
@media only screen and (max-width: 767px) {
  nav .inner .container .nav__cotnents h2 {
    font-size: 1.846rem;
    top: -2em;
  }
}
nav .inner .container .nav__cotnents ul {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3.125rem;
}
@media only screen and (max-width: 767px) {
  nav .inner .container .nav__cotnents ul {
    gap: 1.923rem;
  }
}
nav .inner .container .nav__cotnents ul li a {
  font-size: 1.125rem;
  position: relative;
}
nav .inner .container .nav__cotnents ul li a::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background: #111;
  left: 0;
  bottom: -0.313rem;
  transition: all 0.4s;
  transform: scale(0);
  transform-origin: left;
}
@media (hover: hover) and (pointer: fine) {
  nav .inner .container .nav__cotnents ul li a:hover::after {
    transform: scale(1);
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  nav .inner .container .nav__cotnents ul li a:hover::after {
    transform: scale(1);
  }
}
nav .inner .container .nav__info {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
@media print, screen and (min-width: 768px) {
  nav .inner .container .nav__info {
    width: 50%;
    padding-left: 6.25rem;
    justify-content: center;
    align-items: flex-start;
  }
}
@media only screen and (max-width: 767px) {
  nav .inner .container .nav__info {
    padding-top: 2.885rem;
    align-items: center;
  }
}
nav .inner .container .nav__info .info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media only screen and (max-width: 767px) {
  nav .inner .container .nav__info .info {
    align-items: center;
  }
}
nav .inner .container .nav__info .info figure {
  width: 17.5rem;
  margin-bottom: 1.25rem;
}
nav .inner .container .nav__info .info address {
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  nav .inner .container .nav__info .info address {
    text-align: center;
  }
}
nav .inner .container .nav__info .info .gmap {
  position: relative;
  padding-left: 0.938rem;
  font-family: "Inter", sans-serif;
  text-decoration: underline;
  margin-top: 0.5em;
}
nav .inner .container .nav__info .info .gmap::before {
  position: absolute;
  content: "";
  width: 0.625rem;
  height: 100%;
  background: url(../img/common/icon_pin.svg) no-repeat center left/contain;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (hover: hover) and (pointer: fine) {
  nav .inner .container .nav__info .info .gmap:hover {
    opacity: 0.75;
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  nav .inner .container .nav__info .info .gmap:hover {
    opacity: 0.75;
  }
}
nav .inner .container .nav__info .btns {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
nav .inner .container .nav__info .btns .tel {
  background: #fff;
  color: #111;
}
nav .inner .container .nav__info .btns .tel span {
  font-family: "Inter", sans-serif;
}
nav .inner .container .nav__info .btns .tel span::before {
  background-image: url(../img/common/icon_tel.svg);
}
nav .inner .container .nav__info .sns__wrap {
  width: 22.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
nav .inner .container .nav__info .sns__wrap aside {
  display: flex;
  gap: 1.25rem;
}
nav .inner .container .nav__info .sns__wrap aside .sns {
  width: 1.25rem;
}
@media (hover: hover) and (pointer: fine) {
  nav .inner .container .nav__info .sns__wrap aside .sns:hover {
    opacity: 0.75;
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  nav .inner .container .nav__info .sns__wrap aside .sns:hover {
    opacity: 0.75;
  }
}
nav .inner .container .nav__info .sns__wrap small {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 300;
  color: #999;
}

/*  cta
-------------------------------------------------*/
.cta {
  padding-block: 9.375rem;
  background: url(../img/common/bg_footer.webp) no-repeat center top/cover;
  color: #fff;
  margin-top: 12.5rem;
}
@media only screen and (max-width: 767px) {
  .cta {
    padding-block: 5.769rem;
    margin-top: 7.692rem;
  }
}
.cta .inner .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.125rem;
}
@media only screen and (max-width: 767px) {
  .cta .inner .container {
    gap: 1.923rem;
  }
}
.cta .inner .container .tel__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta .inner .container .tel__wrap h2 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1.875rem;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .cta .inner .container .tel__wrap h2 {
    font-size: 1.385rem;
    margin-bottom: 1.154rem;
  }
}
.cta .inner .container .tel__wrap .tel {
  font-family: "Inter", sans-serif;
  font-size: 3rem;
  font-weight: 600;
  padding-left: 3.125rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .cta .inner .container .tel__wrap .tel {
    font-size: 2.5rem;
    padding-left: 2.308rem;
  }
}
.cta .inner .container .tel__wrap .tel::before {
  position: absolute;
  content: "";
  width: 2.5rem;
  height: 100%;
  background: url(../img/common/icon_tel-w.svg) no-repeat left center/contain;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .cta .inner .container .tel__wrap .tel::before {
    width: 1.923rem;
  }
}
.cta .inner .container .tel__wrap p {
  text-align: center;
  margin-top: 0.625rem;
}
.cta .inner .container .book {
  width: 100%;
  background: #fff;
  color: #111;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 3.125rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .cta .inner .container .book {
    flex-direction: column;
    padding: 1.154rem;
    gap: 1.154rem;
  }
}
.cta .inner .container .book::after {
  position: absolute;
  content: "";
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  background: url(../img/common/icon_window-w.svg) no-repeat center center/1.563rem 100% #111;
  transition: all 0.4s;
}
@media print, screen and (min-width: 768px) {
  .cta .inner .container .book::after {
    right: 3.125rem;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media only screen and (max-width: 767px) {
  .cta .inner .container .book::after {
    right: 1.154rem;
    bottom: 1.154rem;
  }
}
.cta .inner .container .book figure {
  width: 17.5rem;
  aspect-ratio: 7/5;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .cta .inner .container .book figure {
    width: 100%;
  }
}
.cta .inner .container .book figure img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  inset: 0;
  transition: all 0.4s;
}
.cta .inner .container .book dl dt {
  font-size: 3.75rem;
  margin-bottom: 0.625rem;
  letter-spacing: 0;
}
@media only screen and (max-width: 767px) {
  .cta .inner .container .book dl dt {
    font-size: 3.462rem;
  }
}
@media only screen and (max-width: 767px) {
  .cta .inner .container .book dl dd {
    line-height: 1.6;
  }
}
@media (hover: hover) and (pointer: fine) {
  .cta .inner .container .book:hover {
    transform: scale(1.01);
  }
  .cta .inner .container .book:hover::after {
    transform: translateY(-50%) scale(1.1);
  }
  .cta .inner .container .book:hover figure img {
    transform: scale(1.1);
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .cta .inner .container .book:hover {
    transform: scale(1.01);
  }
  .cta .inner .container .book:hover::after {
    transform: translateY(-50%) scale(1.1);
  }
  .cta .inner .container .book:hover figure img {
    transform: scale(1.1);
  }
}

/*  footer
-------------------------------------------------*/
footer {
  padding-block: 3.125rem;
  background: #111;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 300;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  footer {
    padding-block: 1.923rem;
    font-size: 0.923rem;
  }
}