@charset "UTF-8";
/*! ----------------------------------------------------------
 base/_index.scss
 - 他のファイルからは `@use 'base'` でまとめて利用可能
 - forward 順序を変えると依存関係に影響する場合あり
---------------------------------------------------------- */
/*! -----------------------------
  common
----------------------------- */
/* ページ本体はスクロールさせない */
/* 外側はスクロールさせない */
html {
  box-sizing: border-box;
  position: relative;
  font-family: "Zen Old Mincho", "Yu Mincho", "Hiragino Mincho ProN", "MS Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 62.5%;
  font-weight: normal;
}

/* iOS Safariでも効く範囲での対策 */
html, body {
  overscroll-behavior: none;
} /* 新しめのiOSで有効 */
.your-scroll {
  overscroll-behavior: contain;
}

*, *::before, *::after {
  box-sizing: inherit;
}

/* ノッチ分の安全領域を考慮 */
.app-root {
  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

* {
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "palt";
  font-kerning: normal; /* カーニング有効 */
}

/*! -----------------------------
    フォント設定
----------------------------- */
.-en {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
}

.-font-shippori {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 400;
}

.-f-arsenica {
  font-family: "arsenica-variable", sans-serif;
  font-variation-settings: "opsz" 100, "wght" 400;
}

/*! -----------------------------
  セレクタ　リセット
----------------------------- */
body {
  position: relative;
  -webkit-text-size-adjust: 100%;
  color: #1c1f1e;
}

body.-fixed {
  overflow: hidden;
  position: fixed;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  line-height: 1.4;
  letter-spacing: 0;
}

img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

a {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

a[href^="tel:"] {
  text-decoration: none;
}

button {
  cursor: pointer;
  display: block;
  outline: none;
  display: block;
  padding: 0;
  border: none;
  border-radius: 0;
  margin: 0;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  margin-bottom: 0;
}

tbody {
  display: block;
  width: 100%;
}

th, td {
  text-align: left;
}

::-webkit-input-placeholder,
:-moz-placeholder {
  color: #CCC9C4;
}

/*! -----------------------------
  フォームタグ　リセット
----------------------------- */
input,
textarea {
  box-sizing: border-box;
  display: block;
  width: 100%;
  padding: 0;
  border: unset;
  border-width: 0;
  background-color: transparent;
  border: none;
  -webkit-appearance: none;
}

input[type=button], input[type=text], input[type=tel], input[type=email], input[type=submit], input[type=image], textarea {
  -webkit-appearance: none;
  border-radius: 0;
  font-family: "Zen Old Mincho", "Yu Mincho", "Hiragino Mincho ProN", "MS Mincho", serif;
}

input[type=text i] {
  padding: 0;
}

input:focus-visible,
textarea:focus-visible {
  outline: none;
}

input:-webkit-autofill,
textarea:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #f4f0eb inset;
  -webkit-text-fill-color: #222;
}

select {
  border-width: 0px;
  border: none;
  color: #242424;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  border: 0;
  margin: 0;
  padding: 0;
  background: none transparent;
  vertical-align: middle;
  font-size: inherit;
  color: inherit;
  box-sizing: content-box;
  font-family: "Zen Old Mincho", "Yu Mincho", "Hiragino Mincho ProN", "MS Mincho", serif;
}

/* クリック/タップ時のハイライトも含めて視覚的フォーカスを全消し */
:focus,
:focus-visible,
:focus-within {
  outline: none !important;
  box-shadow: none !important;
}

a, button, [tabindex], input, select, textarea {
  outline: none !important;
  box-shadow: none !important;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
}

* {
  -webkit-tap-highlight-color: transparent; /* iOS/Android */
}

.d-button {
  cursor: pointer;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  transition: 0.4s;
  border: 1px solid rgba(28, 31, 30, 0.5);
  gap: 1rem 0;
}
.d-button:hover {
  opacity: 0.7;
}
.d-button__text {
  font-size: 1.6rem;
  padding: 0.85rem 1.5rem 0.85rem 2rem;
  margin-top: -0.2rem;
  letter-spacing: 0em !important;
  transition: 0.4s;
  color: #1c1f1e;
}
.d-button__icon {
  background-image: radial-gradient(circle, #1c1f1e 1px, transparent 1px);
  display: flex;
  align-items: center;
  justify-self: center;
  width: 4rem;
  height: 2rem;
  background-size: 1px 4px;
  background-repeat: repeat-y;
  background-position: left top;
}
.d-button__icon svg {
  transition: 0.3s;
  width: 1rem;
  height: 0.5rem;
  margin: 0 auto;
  transform: rotate(-90deg);
}
.d-button .cls-1 {
  fill: #1c1f1e;
}
.d-button.-black {
  background: #2e332f;
}
.d-button.-black .d-button__text {
  color: #fff;
}
.d-button.-black .d-button__icon {
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
}
.d-button.-black .cls-1 {
  fill: #fff;
}
.d-button.-large__text {
  font-size: 1.7rem;
  padding: 1.65rem 1.5rem 1.65rem 2rem;
}
.d-button.-large__icon {
  width: 5rem;
}

.-pc {
  display: block !important;
}

.-tabsp {
  display: none !important;
}

.-sp {
  display: none !important;
}

.c-title-block {
  font-size: 3.6rem;
  font-weight: normal;
  letter-spacing: 0.15em;
}
.c-title-block.-white {
  color: #fff;
}

/* ---------- sp1 ---------- */
@media screen and (max-width: 1000px) {
  .c-title-block {
    font-size: 3rem;
  }
}
.c-button {
  position: relative;
  display: inline-block;
  /* 黒丸（前面） */
  /* hoverでほわんほわん */
}
.c-button__link {
  position: relative;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
  text-decoration: none;
  color: #1c1f1e;
  padding-bottom: 1rem;
  cursor: pointer;
  /* 下線（最背面） */
}
.c-button__link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 0.2rem; /* 太さ */
  background: #000; /* 色 */
  opacity: 0.25;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.c-button__link.-white {
  color: #fff;
}
.c-button__link.-white::before { /* 太さ */
  background: #fff; /* 色 */
  opacity: 0.25;
}
.c-button .c-button__text {
  font-size: 1.7rem;
  position: relative;
  z-index: 1;
  transition: 0.4s;
}
.c-button__dot {
  position: relative;
  width: 0.3rem; /* 小さめ点でOK */
  height: 0.3rem;
  border-radius: 50%;
  background: #000;
  flex-shrink: 0;
  z-index: 2; /* 下線より前面 */
  transition: 0.3s;
  /* 波紋（黒丸と別サイズで見やすく） */
}
.c-button__dot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  /* 見えやすい大きさを固定（ドットと独立） */
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.35) 0%, transparent 50%);
  transform: translate(-50%, -50%) scale(1);
  opacity: 0;
  z-index: 1; /* 黒丸の下、下線の上 */
  will-change: transform, opacity;
  pointer-events: none;
}
.-white .c-button__dot {
  background: #fff;
}
.-white .c-button__dot::after {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.35) 0%, transparent 50%);
}
.c-button__link:hover .c-button__dot::after {
  animation: ripplePulse 2.5s ease-in-out infinite;
}
.c-button__link:hover .c-button__text {
  opacity: 0.7;
}

/*＝＝＝＝＝＝＝＝＝＝＝＝
  プラスマイナスアイコン 
 ＝＝＝＝＝＝＝＝＝＝＝＝*/
.plus-minus {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #2e332f;
  border: 1px solid #2e332f;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.plus-minus::before,
.plus-minus::after {
  content: "";
  position: absolute;
  background-color: #fff;
  transition: all 0.3s ease;
}

.plus-minus::before {
  width: 8px;
  height: 1px;
}

/* 縦線（プラス状態） */
.plus-minus::after {
  width: 1px;
  height: 8px;
}

/* 黒丸＋白のプラス記号 */
.is-open .plus-minus {
  background-color: transparent;
}

.is-open .plus-minus::before,
.is-open .plus-minus::after {
  background-color: #2e332f;
}

/* is-open時は「マイナス」にする（縦線非表示） */
.is-open .plus-minus::after {
  opacity: 0;
}

a:hover .c-button {
  /* hoverでほわんほわん */
}
a:hover .c-button__link .c-button__dot::after {
  animation: ripplePulse 2.5s ease-in-out infinite;
}
a:hover .c-button__link .c-button__text {
  opacity: 0.7;
}

@keyframes ripplePulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.2;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
}
/* ::::: inview  ::::: */
.inview-fade {
  transition: filter 1s 0.3s, opacity 1s 0.3s, transform 1s 0.3s !important;
  /* transition: opacity .7s, transform .7s; */
  transform: translate(0, 5px);
  opacity: 0;
}

.inview-fade.-action {
  transform: translate(0, 0);
  opacity: 1;
}

.inview.show {
  transform: translate(0, 0);
  opacity: 1;
}

.inview.--inview-img {
  transform: scale(1.1);
}

.inview.--inview-img.show {
  transform: scale(1);
}

.inview.--inview-delay {
  transition: filter 1.8s 0.3s, opacity 1.8s 0.3s, transform 1.8s 0.3s;
}

/* ---------------------------------- wrapper ---------------------------------- */
.wrapper {
  width: 88.8%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ---------------------------------- wrapper responsive ---------------------------------- */
/* ---------- sp1 ---------- */
@media screen and (max-width: 1000px) {
  .wrapper {
    width: 88.8%;
  }
  .-tabpc {
    display: none !important;
  }
  .-tabsp {
    display: block !important;
  }
}
/* ---------------------------------- header ---------------------------------- */
.l-header {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 100;
  width: 100%;
}
.l-header__logo {
  padding-top: 3rem;
  display: block;
  width: 27rem;
  margin: 0 auto;
}
.l-header__logo.-fixed {
  position: fixed;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.l-header.-home .l-header__logo {
  display: none;
}
.l-header.-white .l-header__logo svg {
  fill: #fff;
}
.l-header.-white .l-header__logo .cls-1 {
  fill: #fff;
}

.header-head {
  position: fixed;
  right: 3%;
  top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: right;
  gap: 0 1.8rem;
  z-index: 9999;
}
.header-head.is-active .lang-unit__link {
  color: #1c1f1e;
}
.header-head.is-active .lang-unit__link.on {
  border: solid 1px rgba(28, 31, 30, 0.5);
}
.header-head.is-active .lang-unit__slash {
  color: #1c1f1e;
}
.header-head.is-active .reserve-button {
  border: 1px solid rgba(28, 31, 30, 0.6);
  backdrop-filter: blur(3px);
}
.header-head.is-active .reserve-button .reserve-button__text {
  color: #1c1f1e;
}
.header-head.is-active .reserve-button .cls-1 {
  fill: #1c1f1e;
}
.header-head.is-active .reserve-button .reserve-button__icon {
  background-image: radial-gradient(circle, #1c1f1e 1px, transparent 1px);
}
.header-head.is-active .hamburger-button__line {
  background: #1c1f1e;
}

.-fixed .header-head .lang-unit__link {
  color: #fff;
}
.-fixed .header-head .lang-unit__link.on {
  border: solid 1px #fff;
}
.-fixed .header-head .lang-unit__slash {
  color: #fff;
}
.-fixed .header-head .reserve-button {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.6);
}
.-fixed .header-head .reserve-button .reserve-button__text {
  color: #fff;
}
.-fixed .header-head .reserve-button .reserve-button__icon {
  background-image: radial-gradient(circle, #fff 1px, transparent 1px) !important;
}
.-fixed .header-head .reserve-button svg .cls-1 {
  fill: #fff;
}
.-fixed .header-head .hamburger-button__line {
  background: #fff;
}

.lang-unit {
  display: flex;
  align-items: center;
  gap: 0 0.5rem;
}
.lang-unit__link {
  font-size: 1.4rem;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 4rem;
  border-radius: 50%;
  text-decoration: unset;
  font-weight: 700;
  opacity: 0.6;
  transition: 0.4s;
}
.lang-unit__link.on {
  width: 4rem;
  opacity: 1;
  border: 1px solid #fff;
  transition: 0.4s;
}
.lang-unit__link span {
  margin-top: -1px;
}
.lang-unit__slash {
  color: #fff;
  font-size: 1.4rem;
  transition: 0.4s;
}

.reserve-button {
  color: #fff;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  transition: 0.4s;
}
.reserve-button__text {
  font-size: 1.6rem;
  color: #fff;
  padding: 0.85rem 1.5rem;
  margin-top: -0.2rem;
  letter-spacing: 0.15em;
  transition: 0.4s;
}
.reserve-button__icon {
  display: flex;
  align-items: center;
  justify-self: center;
  width: 4rem;
  height: 2rem;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 1px 4px;
  background-repeat: repeat-y;
  background-position: left top;
}
.reserve-button__icon svg {
  transition: 0.3s;
  width: 1rem;
  height: 0.5rem;
  margin: 0 auto;
}
.reserve-button__icon svg .cls-1 {
  fill: #fff;
}
.reserve-button.-open {
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0) !important;
}
.reserve-button.-open .reserve-button__text {
  color: #fff !important;
}
.reserve-button.-open .reserve-button__icon svg {
  transform: rotate(-180deg);
}
.reserve-button.-open .reserve-button__icon svg .cls-1 {
  fill: #fff;
}

.cookie {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 10000;
  max-width: 37.5rem;
  width: 88.8%;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 10px;
  background: #949995;
  padding: 2.5rem 2.5rem 3rem;
}
.cookie__text {
  font-size: 1.5rem;
  letter-spacing: 0;
  line-height: 2;
  color: #fff;
}
.cookie__text-link {
  display: inline-block;
  font-size: 1.4rem;
  margin-top: 1rem;
  text-decoration: underline;
  color: #fff;
  opacity: 0.5;
}
.cookie__buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}
.cookie__button {
  box-sizing: border-box;
  width: 12rem;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
  padding: 0.5rem 0px 0.6rem;
  transition: opacity 0.3s;
}
.cookie__button.-agree {
  color: #6b6f6c;
  background: #ffffff;
}
.cookie__button.-coating {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
}

.important-notice {
  position: absolute;
  z-index: 9999;
  right: 2rem;
  bottom: 2rem;
}
.important-notice__link {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  max-width: 32rem;
  display: block;
  position: relative;
  font-size: 1.5rem;
  line-height: 2;
  color: #1c1f1e;
  background: #ffffff;
  padding: 2rem 2.5rem;
  box-sizing: border-box;
  transition: 0.4s;
}
.important-notice__link:hover {
  opacity: 0.8;
}
.important-notice__icon {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  width: 2.4rem;
  position: absolute;
  left: -0.9rem;
  top: -0.9rem;
}

@media screen and (max-width: 1000px) {
  .important-notice {
    position: absolute;
    z-index: 9999;
    right: 2rem;
    bottom: 2rem;
    width: calc(100% - 4rem);
  }
  .important-notice__link {
    max-width: 100%;
    display: block;
    position: relative;
    font-size: 1.5rem;
    line-height: 2;
    padding: 2rem 2.5rem;
    box-sizing: border-box;
    transition: 0.4s;
  }
  .important-notice__link:hover {
    opacity: 0.8;
  }
  .important-notice__icon {
    width: 2.4rem;
    position: absolute;
    left: -0.9rem;
    top: -0.9rem;
  }
  .-tabpc {
    display: none !important;
  }
  .-tabsp {
    display: block !important;
  }
}
/* --------------------------- _header responsive --------------------------- */
/* ---------- sp1 ---------- */
@media screen and (max-width: 1000px) {
  .l-header__logo {
    padding-top: 3.5rem;
    width: 20rem;
  }
  .header-head {
    width: 92%;
    margin: 0 auto;
    box-sizing: border-box;
    justify-content: space-between;
    right: 0;
    left: 0;
  }
  .header-head .reserve-button {
    position: fixed;
    bottom: -6rem;
    left: 0;
    width: 100%;
    border: none;
    background: #1c1f1e;
  }
  .header-head .reserve-button .reserve-button__text {
    color: #fff !important;
    width: 100%;
    text-align: center;
    padding: 2rem 1rem;
    font-size: 1.7rem;
    letter-spacing: 0.1em;
  }
  .header-head .reserve-button .reserve-button__icon {
    display: none;
  }
  .header-head .reserve-button.-fix {
    bottom: 0;
  }
  .-fixed .header-head .reserve-button {
    border: none;
  }
  body.-fixed .reserve-button {
    bottom: 0 !important;
    z-index: 999;
    background: #5E6060;
  }
  .-open.reserve-button:after {
    content: "";
    display: block;
    position: absolute;
    top: -0.5rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 0;
    height: 0;
    border-style: solid;
    transform: rotate(180deg);
    border-width: 0.5rem 0.5rem 0 0.5rem;
    border-color: #5E6060 transparent transparent transparent;
  }
  .-tabpc {
    display: none !important;
  }
  .-tabsp {
    display: block !important;
  }
}
/* ---------- sp2 ---------- */
@media screen and (max-width: 768px) {
  .l-header__logo {
    width: 12rem;
  }
  .header-head {
    width: 92%;
    margin: 0 auto;
    box-sizing: border-box;
    justify-content: space-between;
    right: 0;
    left: 0;
    top: 1.7rem;
  }
  .lang-unit {
    gap: 0 0.5rem;
  }
  .lang-unit__link {
    font-size: 1.2rem;
    height: 2.8rem;
    line-height: 0.8;
  }
  .lang-unit__link.on {
    width: 2.8rem;
  }
  .lang-unit__slash {
    color: #fff;
    font-size: 1.2rem;
    transition: 0.4s;
  }
  .-pc {
    display: none !important;
  }
  .-sp {
    display: block !important;
  }
}
/* ---------------------------------- hamburger-button ---------------------------------- */
.hamburger-button {
  position: relative;
  top: 0;
  right: 0;
  z-index: 5000;
  width: 3.5rem;
  margin-left: 0.7rem;
  height: auto;
  transition: background 0.3s;
}
.hamburger-button__line-base {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 3.5rem;
  height: 1.2rem;
}
.hamburger-button__line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  transition: opacity 0.3s;
}
.hamburger-button__line.-line1 {
  top: 0;
}
.hamburger-button__line.-line2 {
  top: 50%;
  transform: translateY(-50%);
}
.hamburger-button__line.-line3 {
  bottom: 0;
}
.hamburger-button.-open {
  background: #fff;
}
.hamburger-button.-open .hamburger-button__line.-line2 {
  opacity: 0;
}

@keyframes menu-open-top {
  0% {
    top: 0;
  }
  60% {
    top: 50%;
    transform: translateY(-50%);
  }
  100% {
    top: 50%;
    transform: translateY(-50%) rotate(30deg);
  }
}
@keyframes menu-open-bottom {
  0% {
    bottom: 0;
  }
  60% {
    bottom: 50%;
    transform: translateY(50%);
  }
  100% {
    bottom: 50%;
    transform: translateY(50%) rotate(-30deg);
  }
}
@keyframes menu-close-top {
  0% {
    top: 50%;
    transform: translateY(-50%) rotate(30deg);
  }
  40% {
    top: 50%;
    transform: translateY(-50%);
  }
  100% {
    top: 0;
  }
}
@keyframes menu-close-bottom {
  0% {
    bottom: 50%;
    transform: translateY(50%) rotate(-30deg);
  }
  40% {
    bottom: 50%;
    transform: translateY(50%);
  }
  100% {
    bottom: 0;
  }
}
/* --------------------------- hamburger-button responsive --------------------------- */
/* ---------- sp1 ---------- */
@media screen and (max-width: 1000px) {
  .hamburger-button__line-base {
    width: 2.8rem;
  }
  .-tabpc {
    display: none !important;
  }
  .-tabsp {
    display: block !important;
  }
}
/* ---------------------------------- fixed-area ---------------------------------- */
.fixed-area {
  display: flex;
  position: fixed;
  top: 0;
  right: 7rem;
  z-index: 5000;
  height: 7rem;
  background: #333;
}
.fixed-area__link, .fixed-area__button {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  height: 100%;
}
.fixed-area__link:hover, .fixed-area__button:hover {
  opacity: 0.6;
}
.fixed-area__link {
  padding: 0 1.2rem 0 2.5rem;
  transition: padding 0.3s, opacity 0.3s;
}
.fixed-area__button {
  position: relative;
  width: 13rem;
  padding-right: 1rem;
  transition: padding 0.3s, opacity 0.3s, width 0.3s, background 0.3s;
}
.fixed-area__button::before {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.7rem 0.5rem 0 0.5rem;
  border-color: #727272 transparent transparent transparent;
  opacity: 0;
  transition: opacity 0.3s;
}
.fixed-area__text {
  display: block;
  font-size: 1.7rem;
  letter-spacing: 0.05em;
  color: #fff;
}
.fixed-area__button-text {
  box-sizing: border-box;
  padding-left: 2rem;
  background: url(/img/common/calendar-white.svg) left top 0.55rem no-repeat;
  background-size: 1.2rem 1.5rem;
}
.fixed-area.-open .fixed-area__link {
  padding: 0 1.7rem 0 2.3rem;
}
.fixed-area.-open .fixed-area__button {
  padding-right: 0;
  background: #727272;
}
.fixed-area.-open .fixed-area__button::before {
  opacity: 1;
}
.fixed-area.-open .fixed-area__button .fixed-area__button-text {
  background: url(/img/common/booking-close.svg) left center no-repeat;
  background-size: 1rem 1rem;
}

/* --------------------------- fixed-area responsive --------------------------- */
/* ---------- sp1 ---------- */
@media screen and (max-width: 1000px) {
  .fixed-area {
    top: auto;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 6rem;
  }
  .fixed-area__link, .fixed-area__button {
    justify-content: center;
    box-sizing: border-box;
    width: 50%;
    padding: 0 1rem;
  }
  .fixed-area__link {
    border-right: 1px solid #222;
  }
  .fixed-area__button-text {
    background-position: left top 0.65rem;
  }
  .fixed-area.-open .fixed-area__link,
  .fixed-area.-open .fixed-area__button {
    padding: 0 1rem;
  }
  .fixed-area.-open .fixed-area__button {
    padding: 0 2.5rem;
  }
  .fixed-area.-open .fixed-area__button::before {
    top: auto;
    bottom: 100%;
    transform: translateX(-50%) scale(1, -1);
  }
  .-tabpc {
    display: none !important;
  }
  .-tabsp {
    display: block !important;
  }
}
/* ---------- sp2 ---------- */
@media screen and (max-width: 768px) {
  .-pc {
    display: none !important;
  }
  .-sp {
    display: block !important;
  }
}
/* ---------------------------------- hamburger-menu ---------------------------------- */
.hamburger-menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 4000;
  box-sizing: border-box;
  width: 100%;
  height: 100dvh;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.hamburger-menu.-open {
  opacity: 1;
  visibility: visible;
}
.hamburger-menu__base {
  position: relative;
  height: 100%;
  background-size: cover;
}
.hamburger-menu__base::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.hamburger-menu__inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  box-sizing: border-box;
  height: 100dvh;
  padding-bottom: 5.5rem;
}
.hamburger-menu__upper {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  width: 88.88%;
  max-width: 1000px;
}
.hamburger-menu__large-link {
  display: inline-block;
  position: relative;
  font-size: 2.8rem;
  line-height: 2;
  letter-spacing: 0.15em;
  color: #fff;
  transition: opacity 0.3s;
}
.hamburger-menu__large-link:hover {
  opacity: 0.5;
}
.hamburger-menu__large-link::before {
  content: "";
  display: block;
  position: absolute;
  background: url(/assets/images/icon/icon-arrow.svg) no-repeat center center;
  top: 2.2rem;
  left: -2rem;
  box-sizing: border-box;
  width: 0.8rem;
  height: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.hamburger-menu__large-link.-current::before {
  opacity: 1;
}
.hamburger-menu__underlayer {
  display: flex;
  align-items: flex-start;
  padding-top: 4rem;
}
.hamburger-menu__large-list {
  padding-right: 8%;
}
.hamburger-menu__large-item:not(:last-child) {
  padding-bottom: 1.2rem;
}
.hamburger-menu__medium-unit {
  display: flex;
  gap: 0 10%;
  flex-basis: 49rem;
  padding: 0 4% 0 0;
}
.hamburger-menu__medium-item:not(:last-child) {
  padding-bottom: 1.2rem;
}
.hamburger-menu__medium-item .hamburger-menu__small-link {
  opacity: 1;
}
.hamburger-menu__medium-link {
  display: inline-block;
  position: relative;
  font-size: 2.8rem;
  letter-spacing: 0.015em;
  line-height: 2;
  color: #fff;
  transition: opacity 0.3s;
}
.hamburger-menu__medium-link:hover {
  opacity: 0.5;
}
.hamburger-menu__medium-link::before {
  content: "";
  display: block;
  position: absolute;
  background: url(/assets/images/icon/icon-arrow.svg) no-repeat center center;
  top: 2.2rem;
  left: -2rem;
  box-sizing: border-box;
  width: 0.8rem;
  height: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.hamburger-menu__medium-link.-current::before {
  opacity: 1;
}
.hamburger-menu__small-list {
  padding-top: 1.2rem;
}
.hamburger-menu__small-item:not(:last-child) {
  padding-bottom: 0.8rem;
}
.hamburger-menu__small-link {
  display: inline-block;
  position: relative;
  font-size: 1.4rem;
  line-height: 2;
  color: #fff;
  letter-spacing: 0.15em;
  opacity: 0.8;
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
  gap: 0 0.5rem;
  transition: opacity 0.3s;
}
.hamburger-menu__small-link:hover {
  opacity: 0.5;
}
.hamburger-menu__small-link::before {
  content: "";
  display: block;
  position: absolute;
  background: url(/assets/images/icon/icon-arrow.svg) no-repeat center center;
  top: 1rem;
  left: -1.2rem;
  box-sizing: border-box;
  width: 0.5rem;
  height: 0.8rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.hamburger-menu__small-link.-current::before {
  opacity: 1;
}
.hamburger-menu__small-link[target=_blank]::after {
  position: relative;
  content: "";
  display: block;
  background: url(/assets/images/icon/blank-icon.svg) no-repeat center;
  background-size: cover;
  width: 1.4rem;
  height: 1.4rem;
}
.hamburger-menu__lower {
  margin: 0 auto;
}
.hamburger-menu__sns-unit {
  justify-content: flex-end;
  padding-right: 0.5rem;
}
.hamburger-menu__bottom {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 4.5rem 6rem;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 10rem;
}
.hamburger-menu__addr-body {
  margin-bottom: 1.5rem;
}
.hamburger-menu__addr-text {
  color: #fff;
  font-size: 1.5rem;
  line-height: 2;
}
.hamburger-menu__info {
  display: flex;
  align-items: flex-end;
}
.hamburger-menu__info-hours {
  font-size: 1.5rem;
  color: #fff;
  margin-top: 1.5rem;
}
.hamburger-menu__phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.hamburger-menu__phone-heading {
  padding-bottom: 1rem;
  font-size: 1.3rem;
  line-height: 1.2;
  color: #fff;
}
.hamburger-menu__phone-link {
  font-size: 3rem;
  color: #fff;
  transition: opacity 0.3s;
}
.hamburger-menu__phone-link:hover {
  opacity: 0.5;
}

.hammenu-bg {
  background: #1f2323;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.hammenu-bg__item {
  position: relative;
  z-index: 999;
  width: 100%;
  height: 100%;
}
.hammenu-bg__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hammenu-bg__item::after {
  position: absolute;
  content: "";
  display: block;
  background: rgba(28, 31, 30, 0.7);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

/* --------------------------- hamburger-menu responsive --------------------------- */
/* ---------- BP1200 ---------- */
@media screen and (max-width: 1200px) {
  .hamburger-menu__large-link {
    font-size: 2.8rem;
  }
  .hamburger-menu__large-link::before {
    top: 2.5rem;
    left: -1.2rem;
    box-sizing: border-box;
    width: 0.5rem;
    height: 1rem;
  }
  .hamburger-menu__underlayer {
    display: block;
    padding-top: 0rem;
  }
  .hamburger-menu__large-list {
    display: flex;
    gap: 0 7%;
    flex-wrap: wrap;
    padding: 0 0 3rem 0;
  }
  .hamburger-menu__large-item {
    width: 100%;
  }
  .hamburger-menu__large-item:not(:last-child) {
    padding-bottom: 0;
  }
  .hamburger-menu__medium-unit {
    gap: 0 7%;
    padding: 0 0 3rem 0;
  }
  .hamburger-menu__medium-list {
    width: 46.5%;
    flex-grow: 1;
  }
  .hamburger-menu__medium-item:not(:last-child) {
    padding-bottom: 0;
  }
  .hamburger-menu__medium-item .hamburger-menu__small-list {
    display: block;
  }
  .hamburger-menu__medium-item .hamburger-menu__small-list .hamburger-menu__small-item {
    width: 100%;
  }
  .hamburger-menu .hamburger-menu__underlayer > .hamburger-menu__small-list .hamburger-menu__small-item {
    margin-bottom: 1rem;
  }
  .hamburger-menu .hamburger-menu__underlayer > .hamburger-menu__small-list .hamburger-menu__small-item:nth-child(1) {
    order: 1;
  }
  .hamburger-menu .hamburger-menu__underlayer > .hamburger-menu__small-list .hamburger-menu__small-item:nth-child(2) {
    order: 3;
  }
  .hamburger-menu .hamburger-menu__underlayer > .hamburger-menu__small-list .hamburger-menu__small-item:nth-child(3) {
    order: 5;
  }
  .hamburger-menu .hamburger-menu__underlayer > .hamburger-menu__small-list .hamburger-menu__small-item:nth-child(4) {
    order: 2;
  }
  .hamburger-menu .hamburger-menu__underlayer > .hamburger-menu__small-list .hamburger-menu__small-item:nth-child(5) {
    order: 4;
  }
  .hamburger-menu__medium-link {
    font-size: 2.2rem;
  }
  .hamburger-menu__medium-link::before {
    top: 1.2rem;
  }
  .hamburger-menu__small-list {
    flex-grow: 1;
    padding-top: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0 7%;
  }
  .hamburger-menu__medium-link::before {
    top: 1.9rem;
    left: -1.2rem;
    width: 0.8rem;
    height: 0.8rem;
  }
  .hamburger-menu__small-link::before {
    top: 1rem;
    left: -1.2rem;
    width: 0.8rem;
    height: 0.8rem;
  }
  .hamburger-menu__small-link[target=_blank]::after {
    width: 1.4rem;
    height: 1.3rem;
    top: 1px;
  }
  .hamburger-menu__small-item {
    width: 46.5%;
  }
  .hamburger-menu__small-item:not(:last-child) {
    padding-bottom: 0;
  }
  .hamburger-menu__bottom {
    padding-top: 3.5rem;
  }
  .hamburger-menu__info {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
  .hamburger-menu__info-hours {
    font-size: 1.2rem;
    line-height: 1.5;
    margin-top: 0.5rem;
  }
  .hamburger-menu__inner {
    height: auto;
    padding: 12rem 0 4rem 0;
  }
  .hamburger-menu__upper {
    position: relative;
    top: 0;
    left: 0;
    transform: translate(0);
    z-index: 5;
    width: 88.88%;
    margin: 0 auto;
    max-width: 1000px;
    padding-bottom: 6rem;
  }
  .hamburger-menu__phone {
    align-items: unset;
  }
  .hamburger-menu__phone-heading {
    padding-bottom: 0;
  }
  .hamburger-menu__info {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}
@media screen and (max-width: 1000px) {
  .hamburger-menu__lower {
    padding-bottom: 6rem;
  }
  .-tabpc {
    display: none !important;
  }
  .-tabsp {
    display: block !important;
  }
}
/* ---------- sp2 ---------- */
@media screen and (max-width: 768px) {
  .hamburger-menu__base {
    min-height: 1px;
    height: auto;
    min-height: 100vh;
    background-size: cover;
  }
  .hamburger-menu__inner {
    padding: 9rem 0 0;
  }
  .hamburger-menu__upper {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    max-width: 9999px;
    margin: 0 auto;
    padding-top: 0;
  }
  .hamburger-menu__large-list {
    display: block;
    padding-bottom: 2rem;
  }
  .hamburger-menu__large-item {
    width: 100%;
  }
  .hamburger-menu__medium-unit {
    gap: 0 3%;
    justify-content: left;
  }
  .hamburger-menu__small-list {
    gap: 0 3%;
    justify-content: left;
  }
  .hamburger-menu__medium-list {
    width: auto;
  }
  .hamburger-menu__small-item {
    width: 45%;
  }
  .hamburger-menu__large-link {
    font-size: 2.2rem;
  }
  .hamburger-menu__large-link::before {
    top: 1.8rem !important;
  }
  .hamburger-menu__large-link, .hamburger-menu__medium-link {
    display: block;
  }
  .hamburger-menu__sns-unit {
    justify-content: flex-start;
    padding-right: 0;
  }
  .hamburger-menu__bottom {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 4rem;
    gap: 3rem 6rem;
  }
  .-pc {
    display: none !important;
  }
  .-sp {
    display: block !important;
  }
}
/* ---------------------------------- booking-menu ---------------------------------- */
.booking-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 4000;
  height: 100vh;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  overflow-y: auto;
}
.booking-menu::before {
  content: "";
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(28, 31, 30, 0.5);
  z-index: -1;
}
.booking-menu.-open {
  opacity: 1;
  visibility: visible;
}
.booking-menu__base {
  position: relative;
  height: 100vh;
  width: 1065px;
  margin-right: 0;
  margin-left: auto;
  background: #191c1c;
  z-index: 1;
  box-shadow: 0 0 5px rgb(16, 17, 17);
}
.booking-menu__calendar-area {
  padding: 13rem 0 5rem 0;
  background: #1f2323;
  background-size: cover;
}
.booking-menu__calendar-wrapper {
  max-width: 80rem;
  width: 75%;
  margin: 0 auto;
}
.booking-menu__booking-area {
  padding: 0 0 8rem 0;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.05);
}
.booking-menu__plan-area {
  padding: 6rem 0;
  background: #191c1c;
}
.booking-menu__plan-wrap {
  width: 88.88%;
  margin: 0 auto;
  max-width: 90rem;
}

.booking-plan__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
}
.booking-plan__head .c-title-block {
  font-size: 3rem;
}
.booking-plan__body .plan-list__title {
  font-size: 1.5rem;
}

/* --------------------------- booking-menu responsive --------------------------- */
/* ---------- BP1200 ---------- */
@media screen and (max-width: 1200px) {
  .booking-menu__calendar-wrapper {
    width: 88.88%;
  }
  .booking-menu__plan-area {
    padding: 4rem 0 3rem 0;
  }
  .booking-menu__info-wrapper {
    flex-direction: column;
    align-items: center;
  }
  .booking-menu__logo {
    width: 19rem;
  }
  .booking-menu__info-wrap {
    width: 100%;
  }
  .booking-menu__info-img {
    width: 27rem;
  }
}
/* ---------- sp1 ---------- */
@media screen and (max-width: 1000px) {
  .booking-menu__calendar-area {
    padding: 9rem 0 5rem 0;
  }
  .booking-menu__calendar-wrapper {
    width: auto;
  }
  .booking-menu__plan-area {
    padding: 4rem 0 12rem 0;
  }
  .booking-menu__base {
    width: 100%;
    height: auto;
    padding-bottom: 8rem;
  }
  .booking-menu__booking-area {
    padding: 0 0 6rem 0;
  }
  .booking-plan__head {
    margin-bottom: 3rem;
  }
  .booking-menu__plan-area .plan-list {
    display: flex;
    overflow-y: auto;
    gap: 3rem;
    margin-bottom: 3rem;
  }
  .booking-menu__plan-area .plan-list__item {
    width: 24rem;
    margin-right: 3rem;
  }
  .booking-menu__plan-area .plan-list::-webkit-scrollbar {
    display: none;
  }
  .-tabpc {
    display: none !important;
  }
  .-tabsp {
    display: block !important;
  }
}
/* ---------- sp2 ---------- */
@media screen and (max-width: 768px) {
  .booking-menu__plan-area {
    padding: 4rem 0 12rem 0;
  }
  .booking-menu__info-wrap {
    flex-direction: column;
  }
  .booking-menu__info-heading {
    padding-bottom: 3.5rem;
    font-size: 1.9rem;
  }
  .booking-menu__info-img {
    width: 100%;
    max-width: 999px;
  }
  .-pc {
    display: none !important;
  }
  .-sp {
    display: block !important;
  }
}
/* ---------------------------------- sns-unit ---------------------------------- */
.booking-calendar {
  position: relative;
  max-width: 83rem;
  margin: 0 auto;
}
.booking-calendar.-month1 {
  display: none;
}
.booking-calendar .ui-datepicker-prev,
.booking-calendar .ui-datepicker-next {
  display: block;
  position: absolute;
  top: 50%;
  width: 1rem;
  cursor: pointer;
  transition: opacity 0.3s;
}
.booking-calendar .ui-datepicker-prev:hover,
.booking-calendar .ui-datepicker-next:hover {
  opacity: 0.5;
}
.booking-calendar .ui-datepicker-prev.ui-state-disabled,
.booking-calendar .ui-datepicker-next.ui-state-disabled {
  opacity: 0.4;
  pointer-events: none;
}
.booking-calendar .ui-datepicker-prev {
  width: 5rem;
  left: -7rem;
  transform: scale(-1, 1) translateY(-50%);
}
.booking-calendar .ui-datepicker-next {
  width: 5rem;
  right: -7rem;
  transform: translateY(-50%);
}
.booking-calendar .ui-datepicker-inline {
  display: flex !important;
  justify-content: space-between;
  width: auto !important;
  margin: 0 auto;
  text-align: center;
}
.booking-calendar .ui-datepicker-group {
  width: 30%;
}
.booking-calendar .ui-datepicker-title {
  color: #fff;
  padding-bottom: 2.5rem;
  font-size: 1.7rem;
  font-family: "Zen Old Mincho", serif;
}
.booking-calendar .ui-datepicker-calendar {
  width: 100%;
  font-size: 1.5rem;
}
.booking-calendar .ui-datepicker-calendar thead {
  color: #fff;
  backface-visibility: visible;
}
.booking-calendar .ui-datepicker-calendar tr {
  display: flex;
}
.booking-calendar .ui-datepicker-calendar th,
.booking-calendar .ui-datepicker-calendar td {
  color: #fff;
  position: relative;
  z-index: 10;
  width: 14.2857142857%;
  line-height: 2.8rem;
  text-align: center;
}
.booking-calendar .ui-datepicker-calendar th.ui-datepicker-week-end:first-child::before {
  content: "";
  display: block;
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  box-sizing: border-box;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  border: 1px solid #444;
}
.booking-calendar .ui-datepicker-calendar th.ui-datepicker-week-end:last-child::before {
  content: "";
  display: block;
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: #5a5c5b;
  color: #fff;
}
.booking-calendar .ui-datepicker-calendar td a {
  display: block;
  transition: opacity 0.3s;
}
.booking-calendar .ui-datepicker-calendar td a:hover {
  opacity: 0.5;
}
.booking-calendar .ui-datepicker-calendar .ui-datepicker-unselectable {
  opacity: 0.3;
}
.booking-calendar .ui-datepicker-calendar .ui-state-active {
  display: block;
  position: relative;
  z-index: 10;
  color: #1c1f1e;
  font-weight: 700;
}
.booking-calendar .ui-datepicker-calendar .ui-state-active::before {
  content: "";
  display: block;
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: #fff;
}
.booking-calendar .ui-datepicker-calendar .ui-datepicker-calendar {
  width: 100%;
  max-width: 280px;
}
.booking-calendar .ui-datepicker-row-break {
  display: none;
}
.booking-calendar.-modal .ui-datepicker-prev,
.booking-calendar.-modal .ui-datepicker-next {
  top: 50%;
  transform: translateY(-50%);
}
.booking-calendar.-modal .ui-datepicker-prev {
  left: -6rem;
}
.booking-calendar.-modal .ui-datepicker-prev img {
  transform: rotate(-180deg);
}
.booking-calendar.-modal .ui-datepicker-next {
  right: -6rem;
}

/* --------------------------- sns-unit responsive --------------------------- */
/* ---------- BP1200 ---------- */
@media screen and (max-width: 1200px) {
  .booking-calendar .ui-datepicker-group {
    max-width: 280px;
  }
}
/* ---------- sp1 ---------- */
@media screen and (max-width: 1000px) {
  .booking-calendar {
    width: auto;
  }
  .booking-calendar.-month3 {
    display: none;
  }
  .booking-calendar.-month1 {
    display: flex;
  }
  .booking-calendar .ui-datepicker-prev {
    left: 3rem;
  }
  .booking-calendar .ui-datepicker-next {
    right: 3rem;
  }
  .booking-calendar .ui-datepicker-inline {
    flex-direction: column;
    justify-content: center;
  }
  .booking-calendar .ui-datepicker-calendar {
    width: 25.2rem;
    margin: 0 auto;
  }
  .booking-calendar.-modal .ui-datepicker-prev {
    left: 3rem;
  }
  .booking-calendar.-modal .ui-datepicker-next {
    right: 3rem;
  }
  .-tabpc {
    display: none !important;
  }
  .-tabsp {
    display: block !important;
  }
}
/* ---------- sp2 ---------- */
@media screen and (max-width: 768px) {
  .booking-calendar .ui-datepicker-prev {
    left: 3rem;
    width: 3rem;
  }
  .booking-calendar .ui-datepicker-next {
    right: 3rem;
    width: 3rem;
  }
  .booking-calendar.-modal .ui-datepicker-prev {
    left: -3rem;
  }
  .booking-calendar.-modal .ui-datepicker-next {
    right: -3rem;
  }
  .booking-calendar.-modal {
    width: 25.2rem;
  }
  .-pc {
    display: none !important;
  }
  .-sp {
    display: block !important;
  }
}
/* ---------------------------------- booking-search ---------------------------------- */
.booking-search {
  position: relative;
}
.booking-search__form {
  display: flex;
  gap: 3.5rem 2.5rem;
}
.booking-search__input-area {
  display: flex;
  align-items: start;
  width: 100%;
  gap: 1rem 3%;
  flex-grow: 1;
}
.booking-search__input-unit, .booking-search__select-unit {
  align-items: flex-end;
}
.booking-search__input-unit {
  flex-grow: 1;
  padding-bottom: 0.6rem;
}
.booking-search__select-unit {
  width: 25%;
  padding-bottom: 0.6rem;
}
.booking-search__select-unit:nth-child(2) {
  width: 36%;
}
.booking-search__input-text, .booking-search__select-text {
  padding: 0 1rem 0.5rem 0;
  font-size: 1.3rem;
  white-space: nowrap;
}
.booking-search__input-text.-large, .booking-search__select-text.-large {
  font-size: 1.4rem;
  color: #fff;
}
.booking-search__input, .booking-search__select {
  width: 100%;
  height: 4rem;
  font-size: 1.6rem;
  letter-spacing: 0.12em;
}
.booking-search__input {
  transition: 0.4s;
  padding-bottom: 0.6rem;
}
.booking-search__input::-moz-placeholder {
  color: inherit;
}
.booking-search__input::placeholder {
  color: inherit;
}
.booking-search__input[readonly] {
  pointer-events: none;
}
.booking-search__input.-calendar {
  background: url(/assets/images/icon/icon-calendar.svg) right 0.5rem center no-repeat;
  background-size: 1.6rem 2rem;
  pointer-events: auto;
  cursor: pointer;
}
.booking-search__input.-calendar-white {
  background: url(/assets/images/icon/icon-calendar.svg) right 0.5rem center no-repeat;
  background-size: 1.6rem 2rem;
  pointer-events: auto;
  cursor: pointer;
  color: #fff;
}
.booking-search__input:hover {
  opacity: 0.7;
}
.booking-search__select {
  transition: 0.4s;
  background: url(/assets/images/icon/icon-arrow-down.svg) right 0.5rem center no-repeat;
  background-size: 1.1rem 1.1rem;
  color: #fff;
}
.booking-search__select option{
  color: #222;     
  background: #fff;
}
.booking-search__select:hover {
  opacity: 0.7;
}
.booking-search__select-group {
  width: 65%;
  display: flex;
  gap: 0 2rem;
}
.booking-search__button {
  display: flex;
  align-items: center;
  flex-grow: 1;
  box-sizing: border-box;
  width: 24rem;
  height: 5rem;
  font-size: 1.7rem;
  letter-spacing: 0.05em;
  background: rgba(255, 255, 255, 0.3);
  transition: color 0.3s, 0.3s;
}
.booking-search__button-text {
  width: calc(100% - 5rem);
  color: #fff;
}
.booking-search__button-icon {
  display: flex;
  align-items: center;
  width: 5rem;
  height: 3rem;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 1px 4px;
  background-repeat: repeat-y;
  background-position: left top;
}
.booking-search__button-icon img {
  margin: 0 auto;
  width: 0.5rem;
}
.booking-search__button:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
.booking-search__info-area {
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
  padding-top: 2.5rem;
}
.booking-search__info-text {
  color: #fff;
  opacity: 0.8;
  margin: -0.3em 0;
  font-size: 1.3rem;
  line-height: 1.6;
  text-align: right;
}
.booking-search__info-text .text-link {
  text-decoration: underline;
}
.booking-search__info-text.-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.booking-search__modal {
  position: absolute;
  z-index: 99;
  right: 0;
  bottom: calc(100% + 3rem);
  width: 100%;
  box-sizing: border-box;
  padding: 4.5rem 5%;
  border-radius: 3px;
  background: #1f2323;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.5rem);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
}
.booking-search__modal.-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.booking-search__modal::before {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.7rem 0.5rem 0 0.5rem;
  border-color: #1f2323 transparent transparent transparent;
}
.booking-search.-white {
  color: #fff;
}
.booking-search.-white .booking-search__input-unit, .booking-search.-white .booking-search__select-unit {
  position: relative;
}
.booking-search.-white .booking-search__input-unit:before, .booking-search.-white .booking-search__select-unit:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 0.2rem;
  background: #fff;
  opacity: 0.5;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.booking-search.-white .booking-search__select {
  background: url(/assets/images/icon/icon-arrow-down.svg) right 0.5rem center no-repeat;
  background-size: 1.1rem 1.1rem;
}
.booking-search.-white .booking-search__button {
  border-color: #fff;
}
.booking-search.-white .booking-search__button:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
.booking-search.-white .booking-search__modal {
  color: #444;
}

.booking-menu__booking-area {
  background: #1f2323;
}
.booking-menu__booking-area-wrapper {
  max-width: 78rem;
  width: 88.88%;
  margin: 0 auto;
}
.booking-menu .booking-search__input-text {
  color: #fff;
}
.booking-menu .booking-search__input-unit,
.booking-menu .booking-search__select-unit {
  position: relative;
  color: #fff;
}
.booking-menu .booking-search__input-unit:before,
.booking-menu .booking-search__select-unit::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 0.2rem;
  background: #fff;
  opacity: 0.5;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

/* ---------------------------------- booking-search responsive ---------------------------------- */
/* ---------- BP1200 ---------- */
@media screen and (max-width: 1200px) {
  .booking-search__modal::before {
    right: calc(8.8% + 53rem);
  }
}
/* ---------- sp1 ---------- */
@media screen and (max-width: 1000px) {
  .booking-search__input-area {
    gap: 1.5rem 3%;
  }
  .booking-search__form {
    flex-direction: column;
    align-items: center;
    gap: 2.5rem 2.5rem;
  }
  .booking-search__info-area {
    flex-direction: column;
    padding-top: 1.5rem;
    gap: 1rem 0;
  }
  .booking-search__info-text {
    text-align: left;
  }
  .booking-search__info-text.-flex {
    gap: 0.5rem;
    flex-direction: column;
  }
  .booking-search__modal {
    width: 100%;
    bottom: calc(100% + 0.5rem);
    padding: 4rem 5%;
  }
  .booking-search__modal::before {
    right: calc(3.3% + 26.5rem);
  }
  .booking-search__button-area {
    width: 100%;
  }
  .booking-search__button {
    width: 100%;
  }
  .-tabpc {
    display: none !important;
  }
  .-tabsp {
    display: block !important;
  }
}
/* ---------- sp2 ---------- */
@media screen and (max-width: 768px) {
  .booking-search__input-area {
    flex-direction: column;
  }
  .booking-search__select-unit {
    width: 100%;
  }
  .booking-search__select-unit:nth-child(2) {
    width: 100%;
  }
  .booking-search__input, .booking-search__select {
    height: 3.5rem;
  }
  .booking-search__input-unit {
    width: 100%;
  }
  .booking-search__button-area {
    width: 100%;
  }
  .booking-search__modal {
    width: 100%;
    padding: 3rem 5%;
  }
  .booking-search__modal::before {
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  .booking-search__select-group {
    width: 100%;
  }
  .booking-search__button {
    width: 100%;
  }
  .-pc {
    display: none !important;
  }
  .-sp {
    display: block !important;
  }
}
.home-calendar-sec {
  position: relative;
  z-index: 2;
  padding: 13.5rem 0;
  position: relative;
  background: url(/assets/images/pages/home/home-calendar-bg.jpg) no-repeat;
  background-size: cover;
}
.home-calendar-sec::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 17, 17, 0.2);
}
.home-calendar-sec .wrapper {
  width: 88.88%;
  max-width: 100rem;
}

.home-contact {
  position: relative;
  z-index: 2;
  background: #2e312f;
  padding: 7.5rem 0 9rem;
}
.home-contact__inner {
  max-width: 1080px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  gap: 2rem 10%;
  justify-content: center;
  align-items: start;
}
.home-contact__title {
  font-size: 1.5rem;
  color: #fff;
  text-align: center;
  margin-bottom: 1.5rem;
}
.home-contact__reservations .reservations__number {
  display: block;
  color: #fff;
  text-align: center;
  font-size: 2.8rem;
  transition: 0.4s;
}
@media (any-hover: hover) {
  .home-contact__reservations .reservations__number:hover {
    opacity: 0.7;
  }
}
.home-contact__reservations .reservations__note {
  font-size: 1.3rem;
  color: #fff;
  text-align: center;
  margin-top: 0.5rem;
}
.home-contact__location {
  text-align: center;
}
.home-contact__location .location__address {
  font-size: 1.5rem;
  text-align: center;
  color: #fff;
  line-height: 2;
}
.home-contact__location .location__link {
  position: relative;
  display: inline-block;
  text-align: center;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.8;
  transition: 0.4s;
}
.home-contact__location .location__link::before {
  position: absolute;
  bottom: 0.1rem;
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  background: #fff;
}
@media (any-hover: hover) {
  .home-contact__location .location__link:hover {
    opacity: 0.7;
  }
}

.social__list {
  display: flex;
  align-items: center;
  gap: 2rem 1.4rem;
  margin-top: 3rem;
}
.social__list .social__item {
  transition: 0.4s;
}
.social__list .social__item .icon-fb {
  width: 2.4rem;
}
.social__list .social__item .icon-x {
  width: 2.4rem;
}
.social__list .social__item .icon-trip {
  width: 3.2rem;
}
.social__list .social__item .icon-ig {
  width: 2rem;
}
@media (any-hover: hover) {
  .social__list .social__item:hover {
    opacity: 0.7;
  }
}

/* --------------------------- _footer responsive --------------------------- */
/* ---------- sp1 ---------- */
@media screen and (max-width: 1000px) {
  .home-calendar-sec {
    padding: 7.5rem 0;
  }
  .home-contact {
    position: relative;
    z-index: 2;
    padding: 5.5rem 0;
  }
  .home-contact__inner {
    flex-direction: column;
    align-items: center;
    gap: 3rem 10%;
  }
  .home-contact__title {
    margin-bottom: 1rem;
  }
  .home-contact__reservations .reservations__number {
    display: block;
    color: #fff;
    text-align: center;
    font-size: 2.4rem;
  }
  .home-contact__reservations .reservations__note {
    font-size: 1.3rem;
    color: #fff;
    text-align: center;
    margin-top: 0.5rem;
  }
  .home-contact .social__list {
    margin-top: 2rem;
  }
  .home-contact__location {
    text-align: center;
  }
  .home-contact__location .location__address {
    text-align: center;
    color: #fff;
    line-height: 2;
  }
  .-tabpc {
    display: none !important;
  }
  .-tabsp {
    display: block !important;
  }
}
@media screen and (max-width: 768px) {
  .home-calendar-sec {
    background: url(/assets/images/pages/home/home-calendar-bg-sp.jpg) no-repeat;
  }
  .hamburger-menu__addr .social__list {
    margin-top: 0;
  }
  .hamburger-menu__addr .social__list .social__item .icon-fb {
    width: 1.8rem;
  }
  .hamburger-menu__addr .social__list .social__item .icon-x {
    width: 1.6rem;
  }
  .hamburger-menu__addr .social__list .social__item .icon-trip {
    width: 2.2rem;
  }
  .hamburger-menu__addr .social__list .social__item .icon-ig {
    width: 1.6rem;
  }
  .-pc {
    display: none !important;
  }
  .-sp {
    display: block !important;
  }
}
/* --------------------------- 
footer 
--------------------------- */
.l-footer {
  position: relative;
  z-index: 2;
  background: #1c1f1e;
  padding: 6rem 0 8.5rem;
}
.l-footer__wrapper {
  width: 84%;
  max-width: 1600px;
  margin: 0 auto;
}
.l-footer .ft-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: #fff;
  text-align: center;
  margin-bottom: 3.5rem;
  line-height: 1.75;
}
.l-footer .ft-logo-unit {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 7rem;
}
.l-footer .ft-logo-unit__left {
  display: flex;
  align-items: self-end;
  gap: 2rem 5rem;
  /* padding-right: 7rem; */
  /* background-image: linear-gradient(to top, #fff 1px, transparent 1px); */
  background-size: 1px 5px;
  background-repeat: repeat-y;
  background-position: top right;
}
.l-footer .ft-logo-unit__left .-gorahanaougi {
  width: 16.5rem;
}
.l-footer .ft-logo-unit__left .-madokanomori {
  width: 14.5rem;
}
.l-footer .ft-logo-unit__right {
  display: flex;
  align-items: center;
  gap: 2rem 7rem;
  margin-left: 6rem;
}
.l-footer .ft-logo-unit__right .-yado {
  width: 5.8rem;
}
.l-footer .ft-logo-unit__item {
  transition: 0.3s;
}
@media (any-hover: hover) {
  .l-footer .ft-logo-unit__item:hover {
    opacity: 0.7;
  }
}
.l-footer .ft-logo-unit__link {
  display: block;
}
.l-footer .ft-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 3rem;
}
.l-footer .ft-list__item {
  font-size: 1.3rem;
}
.l-footer .ft-list__link {
  color: #fff;
  transition: 0.3s;
  letter-spacing: 0.15em;
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
  gap: 0 0.5rem;
}
.l-footer .ft-list__link[target=_blank]::after {
  content: "";
  display: block;
  background: url(/assets/images/icon/blank-icon.svg) no-repeat center;
  background-size: cover;
  width: 1.2rem;
  height: 1.2rem;
}
@media (any-hover: hover) {
  .l-footer .ft-list__link:hover {
    opacity: 0.7;
  }
}
.l-footer .ft-list + .ft-copy {
  padding-top: 8rem;
}
.ft-copy{
  display: block;
}
.l-footer .ft-copy__text {
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.3rem;
  color: #6c6e6d;
  text-align: center;
}

/* --------------------------- _footer responsive --------------------------- */
/* ---------- sp2 ---------- */
@media screen and (max-width: 768px) {
  .l-footer {
    padding: 5rem 0 6rem;
  }
  .l-footer .ft-title {
    font-size: 1.3rem;
    margin-bottom: 4rem;
  }
  .l-footer .ft-logo-unit {
    margin-bottom: 4rem;
  }
  .l-footer .ft-logo-unit__left {
    gap: 2rem 3rem;
    padding-right: 0;
  }
  .l-footer .ft-logo-unit__left .-gorahanaougi {
    width: 12.5rem;
  }
  .l-footer .ft-logo-unit__left .-madokanomori {
    width: 11rem;
  }
  .l-footer .ft-logo-unit__right {
    margin-left: 1.8rem;
  }
  .l-footer .ft-logo-unit__right .-yado {
    width: 3.8rem;
  }
  .l-footer .ft-list {
    gap: 1rem 3rem;
  }
  .l-footer .ft-list__item {
    font-size: 1.3rem;
  }
  .l-footer .ft-list__link {
    color: #fff;
    transition: 0.3s;
  }
  .l-footer .ft-list__link[target=_blank]::after {
    content: "";
    display: block;
    background: url(/assets/images/icon/blank-icon.svg) no-repeat center;
    background-size: cover;
    width: 1.2rem;
    height: 1.2rem;
  }
}
@media screen and (max-width: 768px) and (any-hover: hover) {
  .l-footer .ft-list__link:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 768px) {
  .l-footer .ft-list + .ft-copy {
    padding-top: 4.5rem;
  }
  .-pc {
    display: none !important;
  }
  .-sp {
    display: block !important;
  }
}
.home-top {
  position: relative;
  max-height: 105rem;
  height: 100vh;
}
.home-top .bg-slider-wrap {
  max-height: 85.8rem;
  height: calc(100% - 19.2rem);
}
.home-top .home-kv {
  position: relative;
  max-height: 105rem;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 0;
}
.home-top .home-kv .home-kv-contents {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
}
.home-top .home-kv .home-kv-contents .home-kv-contents__catch {
  display: flex;
  gap: 1.5rem 3rem;
  color: #fff;
  font-size: 4rem;
  letter-spacing: 0.15em;
  text-align: center;
  margin-bottom: 3.2rem;
}
.home-top .home-kv__wrapper {
  max-width: 100rem;
  width: 100%;
  margin: 0 auto;
}
.home-top .home-kv__box {
  display: block;
  width: 100%;
  height: 100svh;
  position: relative;
  z-index: -1;
  pointer-events: none;
}
.home-top .bg-fix-video {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.home-top .bg-fix-video video {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
}
.home-top .bg-fix-video::before {
  content: "";
  display: block;
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(28, 31, 30, 0.2);
  z-index: 1;
  left: 0;
  right: 0;
}
.home-top .fix-bg {
  background-color: #1c1f1e;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.home-top .fix-bg__item {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
}
.home-top .fix-bg__item img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
  object-position: center;
  width: 100%;
  height: 100%;
}
.home-top .fix-bg::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(28, 31, 30, 0.7) 0%, rgba(28, 31, 30, 0) 50%, rgba(28, 31, 30, 0.4) 100%);
  z-index: 1;
  left: 0;
  right: 0;
}

.loading {
  position: absolute;
  inset: 0;
  z-index: 10000;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 1s, visibility 1s;
}

.loading.-end {
  opacity: 0;
  visibility: hidden;
}

.loading__img {
  width: 6rem;
  opacity: 0.8;
  animation: loading 0.6s linear infinite;
}

@keyframes loading {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.top-kv-bottom {
  width: 100%;
  position: absolute;
  bottom: 0;
}

.home-modal {
  width: 100%;
  padding: 4rem 0;
  background-color: #2e332f;
  backdrop-filter: blur(20px);
}

@media screen and (max-width: 1000px) {
  .home-modal {
    padding: 5rem 0;
  }
  .top-kv-bottom {
    position: static;
  }
  .home-top .fix-bg {
    height: 100%;
  }
  .bg-slider-wrap {
    max-height: unset;
    height: 150vw;
  }
  .bg-slider-wrap .scroll-down {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
  }
  .home-top .home-kv {
    height: auto;
    max-height: unset;
  }
  .-tabpc {
    display: none !important;
  }
  .-tabsp {
    display: block !important;
  }
}
html.is-locked,
body.is-locked {
  overflow: hidden; /* 念のための二重止め */
}

.home-about {
  position: relative;
  aspect-ratio: 16/10;
}
.home-about::before {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 70%;
  height: 100%;
  background: linear-gradient(to right, rgba(17, 17, 17, 0.8) 0%, rgba(17, 17, 17, 0) 100%);
}
.home-about-parallax {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.home-about-parallax img {
  right: 0;
  width: 100%;
  height: 100%;
  will-change: transform;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.home-about__wrap {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: left;
  z-index: 2;
}
.home-about__body {
  display: inline-block;
  will-change: transform;
  backface-visibility: hidden;
}
.home-about__title {
  color: #fff;
  font-size: 3.6rem;
  margin-bottom: 3rem;
  line-height: 1.5;
}
.home-about__title span {
  display: block;
}
.home-about__title span .-left-m0 {
  display: inline;
}
.home-about__title .-small-text {
  font-size: 2.8rem;
  margin-bottom: 0rem;
  line-height: 1.5;
}
.home-about__title .-small-text + .-normal-text {
  margin-top: 0rem;
}
.home-about__text {
  color: #fff;
  font-size: 1.5rem;
  line-height: 2;
}
.home-about__button {
  margin-top: 6rem;
}

/* 低速回線や OS 設定でのアニメ抑止 */
@media (prefers-reduced-motion: reduce) {
  .home-about-parallax img,
  .home-about__body {
    transition: none !important;
    transform: none !important;
  }
}
@media screen and (max-width: 1000px) {
  .home-about {
    background: url(/assets/images/common/noise-bg.png);
    background-size: 1280px;
    position: relative;
    aspect-ratio: unset;
  }
  .home-about::before {
    display: none;
  }
  .home-about-parallax {
    position: static;
    height: auto;
  }
  .home-about-parallax img {
    position: static;
    min-width: auto;
    min-height: auto;
    width: 100%;
    height: auto;
    transform: unset;
  }
  .home-about__wrap {
    padding: 3.5rem 0 0;
    position: relative;
    max-height: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: left;
    z-index: 2;
  }
  .home-about__body {
    display: inline-block;
    will-change: transform;
    backface-visibility: hidden;
  }
  .home-about__title {
    color: #1c1f1e !important;
    font-size: 3.6rem;
    margin-bottom: 3rem;
    line-height: 1.5;
  }
  .home-about__title span {
    display: block;
  }
  .home-about__title span .-left-m0 {
    display: inline;
  }
  .home-about__title .-small-text {
    font-size: 2.8rem;
    line-height: 1.5;
  }
  .home-about__title .-small-text + .-normal-text {
    margin-top: 0;
  }
  .home-about__text {
    color: #1c1f1e !important;
    font-size: 1.5rem;
    line-height: 2;
  }
  .home-about__button {
    margin-top: 6rem;
  }
  .home-about .c-button__link.-white {
    color: #1c1f1e;
  }
  .home-about .c-button__link.-white::before {
    background: #1c1f1e;
  }
  .home-about .-white .c-button__dot {
    background: #1c1f1e;
  }
  .-tabpc {
    display: none !important;
  }
  .-tabsp {
    display: block !important;
  }
}
/*
 動画ブロック
*/
.video-block {
  background: url(/assets/images/common/noise-bg.png);
  background-size: 1280px;
  position: relative;
  z-index: 99;
  padding: 1rem;
}

.video-block .video-wrapper {
  width: 100%;
  margin: 0 auto;
  position: relative;
  aspect-ratio: 1260/550;
  overflow: hidden;
  cursor: pointer;
  transition: 0.3s;
}

.video-block .video-wrapper video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: bottom;
}

.video-block .video-wrapper .video-btn {
  position: absolute;
  width: 120px;
  height: 120px;
  top: 50%;
  left: 50%;
  margin-left: -60px;
  margin-top: -60px;
}

.video-block .video-wrapper:hover {
  opacity: 0.7;
}

.video-block .video-wrapper .video-btn img {
  width: 100%;
  height: auto;
}

.video-block .video-wrapper .video-btn.stop {
  display: none;
  opacity: 0.4;
}

/* ---------- sp1 ---------- */
@media screen and (max-width: 1000px) {
  .home-top .home-kv .bg-slider-wrap{
    height: 80rem;
    max-height: 85.8rem;
  }
  .home-top {
    max-height: unset;
    height: auto;
  }
  .home-top .home-kv .home-kv-contents {
    bottom: 0;
  }
  .home-top .home-kv .home-kv-contents .scroll-down-icon {
    height: 6rem;
  }
  .home-top .home-kv .home-kv-contents .scroll-down__link:before, .home-top .home-kv .home-kv-contents .scroll-down__link:after {
    height: 6rem;
  }
  .video-block {
    padding: 0.5rem;
  }
  .video-block .video-wrapper {
    aspect-ratio: 1/1;
  }
  .video-block .video-wrapper .video-btn {
    position: absolute;
    width: 9rem;
    height: 9rem;
    top: 50%;
    left: 50%;
    margin-left: -4.5rem;
    margin-top: -4.5rem;
    cursor: pointer;
    z-index: 99;
    transition: 0.4s;
  }
  .-tabpc {
    display: none !important;
  }
  .-tabsp {
    display: block !important;
  }
  
}
/* ---------- sp2 ---------- */
@media screen and (max-width: 768px) {
  .home-top .home-kv .home-kv-contents .home-kv-contents__catch {
    font-size: 3.2rem;
    margin-bottom: 1rem;
  }
  .home-top .home-kv .bg-slider-wrap {
    height: 150vw;
    max-height: 150vw;
  }
  .home-about__title {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 3rem;
  }
  .home-about__title .-small-text {
    font-size: 2.4rem;
  }
  .home-about__title .-left-m0 {
    display: block;
    margin-left: -0.5em;
  }
  .home-about__text {
    color: #fff;
    font-size: 1.5rem;
    line-height: 2;
  }
  .home-about__button {
    margin-top: 4rem;
  }
  .-pc {
    display: none !important;
  }
  .-sp {
    display: block !important;
  }
}
.scroll-down + .home-kv__lower {
  margin-top: 1.5rem;
}

/*======== スクロールダウン ========*/
.scroll-down {
  text-align: center;
  position: relative;
  z-index: 0;
}

.scroll-down-icon {
  position: relative;
  height: 9rem;
  z-index: 1;
}

.scroll-down a {
  display: inline-block;
}

.scroll-down__text {
  text-align: center;
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.scroll-down__link {
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  width: 15px;
  padding: 0 0 9rem;
  color: #000;
  font-size: 14px;
  font-family: "Josefin Sans", sans-serif;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  writing-mode: vertical-lr;
  transition: 0.5s;
  overflow: hidden;
  margin: 0 auto;
}

.scroll-down__link:before {
  content: "";
  position: absolute;
  margin: 0 auto;
  bottom: 0;
  left: 0;
  right: 0;
  width: 1px;
  height: 10rem;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 1px 4px; /* 1px のドットを 4px ごとに配置 */
  background-repeat: repeat-y;
  background-position: center top; /* 中央に配置 */
}

.scroll-down__link:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 1px;
  height: 10rem;
  background: #fff;
}

.scroll-down__link:hover {
  opacity: 0.7;
}

.scroll-down__link:after {
  animation: sdl01 2s cubic-bezier(1, 0.2, 0.4, 1) infinite;
}

@keyframes sdl01 {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
/* ---------- sp2 ---------- */
@media screen and (max-width: 768px) {
  .scroll-down__link:before,
  .scroll-down__link:after {
    height: 7rem;
  }
  .-pc {
    display: none !important;
  }
  .-sp {
    display: block !important;
  }
}
.dot-glow {
  --size: 9px; /* 中央の黒丸の大きさ */
  --color: 255 255 255; /* RGB値。白丸にしたければ 255 255 255 */
  --glow-size: 14px; /* 外側の光の範囲 */
  --speed: 2.5s;
  position: relative;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background: rgb(var(--color));
  z-index: 1;
  margin: 0 auto;
}

/* 外側のホワホワ発光 */
.dot-glow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--glow-size);
  height: var(--glow-size);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1);
  background: radial-gradient(circle, rgb(var(--color)/1) 0%, transparent 100%);
  opacity: 0.8;
  filter: blur(4px);
  z-index: -1;
  animation: dotRipple var(--speed) ease-in-out infinite;
}

@keyframes dotRipple {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    filter: blur(4px);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 1;
    filter: blur(8px);
  }
}
.home-plan {
  position: relative;
  z-index: 1;
  padding: 10rem 0 11rem;
  background: url(/assets/images/common/noise-bg.png);
  background-size: 1280px;
}
.home-plan__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6rem;
}

.plan-list {
  display: grid;
  gap: 6.5rem 4.15%;
  width: 100%;
  grid-template-columns: repeat(auto-fill, minmax(30.5666666667%, 1fr));
}
.plan-list__item {
  transition: transform 0.4s;
}
.plan-list__link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.plan-list__thumb {
  position: relative;
  overflow: hidden;
  /* 画像の比率を一定にしたい場合（任意） */
  aspect-ratio: 3/2;
}
.plan-list__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s;
  display: block;
}
@media (any-hover: hover) {
  .plan-list__item:hover img {
    transform: scale(1.1);
  }
  .plan-list__item:hover .plan-list__title {
    opacity: 0.7;
  }
}
.plan-list__category {
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 1.3rem;
  color: #fff;
  background: #516e17;
  border-radius: 2px;
  padding: 0.5rem 1.2rem 0.5rem 2.5rem;
}
.plan-list__category::after {
  position: absolute;
  content: "";
  left: 1.1rem;
  bottom: 1.1rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: #fff;
}
.plan-list__body {
  padding-top: 2rem;
  transition: transform 0.4s;
}
.plan-list__title {
  font-size: 1.5rem;
  line-height: 2;
  transition: transform 0.4s;
}
.plan-list__title.-white {
  color: #fff;
}

.plan-item__img{
  position: relative;
}

.plan-item__img img{
  vertical-align: bottom;
}

/* ---------- sp1 ---------- */
@media screen and (max-width: 1000px) {
  .home-plan {
    padding: 6rem 0 7rem;
    background: url(/assets/images/common/noise-bg.png);
    background-size: 1280px;
  }
  .home-plan__head {
    margin-bottom: 3.5rem;
  }
  .plan-list {
    grid-template-columns: 1fr;
    gap: 3rem 0;
  }
  .plan-list__body {
    padding-top: 2rem;
  }
  .plan-list__title {
    font-size: 1.5rem;
  }
  .home-plan__list-wrap + .home-plan__button {
    margin-top: 3rem;
  }
  .-tabpc {
    display: none !important;
  }
  .-tabsp {
    display: block !important;
  }
}
/* 動きが苦手な利用者の配慮（任意） */
@media (prefers-reduced-motion: reduce) {
  .plan-list__thumb img {
    transition: none;
  }
}
/* =========
 ・アイコン　設定
========= */
.solid-core-glow {
  --size: 1rem;
  --color: 72 118 255; /* RGB（青系）。例: 255 90 90 で赤系 */
  --speed: 2.8s;
  width: var(--size);
  aspect-ratio: 1;
  border-radius: 50%;
  position: relative;
  background: rgb(var(--color));
}

.solid-core-glow::before {
  content: "";
  position: absolute;
  inset: -28%; /* 少し外側まで広げて柔らかく */
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0) 48%, rgb(var(--color)/0.55) 72%, rgb(var(--color)/0) 100%);
  filter: blur(12px);
  opacity: 0.8;
  animation: auraPulse var(--speed) ease-in-out infinite;
}

.solid-core-glow::after {
  content: "";
  position: absolute;
  inset: -8%;
  border-radius: 50%;
  box-shadow: 0 0 30px 12px rgb(var(--color)/0.35) inset;
  pointer-events: none;
}

@keyframes auraPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.6;
    filter: blur(10px);
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
    filter: blur(18px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .solid-core-glow::before {
    animation: none;
  }
}
.bg-slider-wrap {
  position: relative;
  height: 100%;
}

.c-progressDots__svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
} /* 12時起点 */
.c-progressDots__track {
  fill: none;
  stroke: rgba(255, 255, 255, 0.35);
  stroke-width: 1;
}

.c-progressDots__bar {
  fill: none;
  stroke: #fff;
  stroke-width: 1;
  stroke-linecap: round;
}

@keyframes ring-draw {
  to {
    stroke-dashoffset: 0;
  }
}
.c-progressDots__dot {
  width: 16px;
  height: 16px;
  position: relative;
  cursor: pointer;
  opacity: 0.5;
  background: none;
  border: 0;
  padding: 0;
}

.c-progressDots__dot[aria-selected=true] {
  opacity: 1;
}

.c-progressDots__center {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  transition: 0.4s;
}

.c-progressDots__center::after {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.9;
  transition: 0.4s;
}

/* ▼ 円のサイズ変更 */
.c-progressDots__dot {
  width: 24px; /* 推奨：16px + 余白 + クリック範囲を考え24px程度 */
  height: 24px;
}

/* ▼ SVG内の円 */
.c-progressDots__track,
.c-progressDots__bar {
  stroke-width: 1; /* ← 1px の細縁 */
}

/* ▼ 中心の丸（クリック誘導 or フィル）※直径6px */
.c-progressDots__center::after {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.9;
  transition: 0.4s;
}

.c-progressDots {
  position: absolute;
  right: 4rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 22px;
  z-index: 10;
  pointer-events: auto;
  transition: 0.4s;
}

@media screen and (max-width: 1000px) {
  .c-progressDots {
    right: 1.5rem;
    gap: 1.5rem;
  }
  .-tabpc {
    display: none !important;
  }
  .-tabsp {
    display: block !important;
  }
}
@media screen and (max-width: 768px) {
  .bg-slider-wrap {
    height: 100%;
  }
  .c-progressDots__center::after {
    width: 4px;
    height: 4px;
  }
  .c-progressDots__dot {
    width: 12px;
    height: 12px;
  }
  .-pc {
    display: none !important;
  }
  .-sp {
    display: block !important;
  }
}
.sticky-slide {
  background: url(/assets/images/common/noise-bg.png);
  background-size: 1280px;
  background: #fff;
  position: relative;
}
.sticky-slide__item {
  height: 100svh;
  position: sticky;
  top: 0;
  max-height: 70rem;
}
.sticky-slide__link {
  overflow: hidden;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 1;
  position: relative;
}
.sticky-slide__link::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -10rem;
  left: 0;
  width: 100%;
  height: 70rem;
  opacity: 0.8;
  background: linear-gradient(to top, rgb(17, 17, 17) 0%, rgba(17, 17, 17, 0) 100%);
}
.sticky-slide__link.-cuisine-after::after {
  background: linear-gradient(to top, rgb(17, 17, 17) -45%, rgba(17, 17, 17, 0) 100%);
}
.sticky-slide__images {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
.sticky-slide__images img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
.sticky-slide__images img.-action {
  opacity: 1;
  transform: scale(1);
}
.sticky-slide__hud {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 999;
}
.sticky-slide__contents {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10rem;
  z-index: 3;
}
.sticky-slide__title {
  font-size: 3.6rem;
  line-height: 1.5;
  font-weight: normal;
  color: #fff;
}
.sticky-slide__title span {
  display: block;
}
.sticky-slide__title .-small-text {
  font-size: 2.8rem;
}
.sticky-slide__title .-small-text + .-normal-text {
  margin-top: 0.5rem;
}
.sticky-slide__text {
  font-size: 1.5rem;
  line-height: 2;
  color: #fff;
}
.sticky-slide__title + .sticky-slide__text {
  margin-top: 3rem;
}
.sticky-slide__text + .c-button {
  margin-top: 4rem;
}
.sticky-slide__hudWrap {
  position: sticky;
  top: 0;
  height: 100vh;
}
.sticky-slide__indicator {
  position: absolute;
  right: 5%;
  bottom: 10rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: auto;
}
.sticky-slide__indicator span {
  width: 3.4rem;
  height: 3.4rem;
  line-height: 3.4rem;
  text-align: center;
  font-size: 1.7rem;
  color: #fff;
  opacity: 0.25;
}
.sticky-slide__indicator .is-active {
  opacity: 1;
}

.column2-sec {
  background: url(/assets/images/common/noise-bg.png);
  background-size: 1280px;
  display: flex;
}
.column2-sec__item {
  position: relative;
  height: 40rem;
  width: 50%;
  transition: 0.4s;
}
.column2-sec__item::before {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(17, 17, 17, 0.6) -45%, rgba(17, 17, 17, 0) 100%);
}
@media (any-hover: hover) {
  .column2-sec__item:hover {
    width: 58%;
  }
}
.column2-sec__body {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 0 10% 10rem;
  width: 100%;
}
.column2-sec__images {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left;
     object-position: left;
  height: 100%;
}
.column2-sec__title {
  font-size: 3.6rem;
  line-height: 1.5;
  color: #fff;
}
.column2-sec__title span {
  display: block;
}
.column2-sec__title .-small-text {
  font-size: 2.8rem;
}
.column2-sec__title .-small-text .-large-text {
  margin-top: 0.5rem;
}
.column2-sec__title + .c-button {
  margin-top: 3rem;
}

.sticky-slide .sticky-slide-slick{
  height: 100%;
}

@media screen and (max-width: 1000px) {
  .sticky-slide__title {
    font-size: 3rem;
  }
  .sticky-slide__title .-small-text {
    font-size: 2.4rem;
  }
  .sticky-slide__item {
    height: auto;
    position: static;
    max-height: none;
  }
  .sticky-slide__link {
    background: url(/assets/images/common/noise-bg.png);
    background-size: 1280px;
    overflow: auto;
    display: block;
    min-height: auto;
  }
  .sticky-slide__link::after {
    display: none;
  }
  .sticky-slide__images {
    -o-object-fit: cover;
       object-fit: cover;
    height: auto;
    width: 100%;
  }
  .sticky-slide__images img.inview {
    width: 100%;
    height: auto;
    opacity: 0.9;
    transform: scale(1);
    transition: opacity 0.8s 0.2s, transform 0.8s 0.2s;
  }
  .sticky-slide__images img.inview.-action {
    opacity: 1;
    transform: scale(1);
  }
  .sticky-slide__contents {
    position: static;
    padding: 3.5rem 0 7rem;
    width: 88.8%;
  }
  .sticky-slide__title {
    color: #1c1f1e;
  }
  .sticky-slide__text {
    color: #1c1f1e;
  }
  .sticky-slide .c-button__link.-white {
    color: #1c1f1e;
  }
  .sticky-slide .c-button__link.-white::before {
    background: #000;
  }
  .sticky-slide .-white .c-button__dot {
    background: #000;
  }
  .sticky-slide .sticky-slide-slick {
    aspect-ratio: 720/840;
    width: 100%;
    height: 116.66vw;
  }
  .sticky-slide .sticky-slide-slick .bg-slider-wrap {
    height: 100%;
  }
  @supports not (aspect-ratio: 1) {
    .sticky-slide .sticky-slide {
      position: relative;
    }
    .sticky-slide .sticky-slide::before {
      content: "";
      display: block;
      padding-top: 116.6666666667%;
    }
    .sticky-slide .sticky-slide .sticky-slide-slick {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
    }
  }
  .column2-sec {
    display: flex;
    flex-direction: column;
    gap: 1rem 0;
    flex-wrap: wrap;
  }
  .column2-sec__item {
    width: 100%;
    height: auto;
  }
  .column2-sec__item::before {
    display: none;
  }
}
@media screen and (max-width: 1000px) and (any-hover: hover) {
  .column2-sec__item:hover {
    width: 100%;
  }
}
@media screen and (max-width: 1000px) {
  .column2-sec__body {
    position: static;
    padding: 3.5rem 0 6rem;
    width: 88.8%;
    margin: 0 auto;
  }
  .column2-sec__images {
    height: auto;
  }
  .column2-sec__title {
    font-size: 3rem;
    line-height: 1.5;
    color: #1c1f1e;
  }
  .column2-sec__title .-small-text {
    font-size: 2.4rem;
  }
  .column2-sec__title + .c-button {
    margin-top: 3rem;
  }
  .column2-sec .c-button__link.-white {
    color: #1c1f1e;
  }
  .column2-sec .c-button__link.-white::before {
    background: #000;
  }
  .column2-sec .-white .c-button__dot {
    background: #000;
  }
  .-tabpc {
    display: none !important;
  }
  .-tabsp {
    display: block !important;
  }
}
.home-news {
  padding: 9rem 0 12.5rem;
  background: url(/assets/images/common/noise-bg.png);
  background-size: 1280px;
}
.home-news__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4rem;
}

.home-news__head + .news-catelistBlock{
  margin-bottom: 4.5rem;
}
.news-filter{
  font-size: 1.5rem;
  border-bottom: 1px solid rgba(28, 31, 30, 0.5);
  padding: 1rem 2em;
  padding-left: 0;
  margin-bottom: 3rem;
}
.news-catelist{
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  font-size: 1.5rem;
}
.news-catelist__item{
  padding: 0.2rem 1rem 0.3rem;
  border: 1px solid rgba(28, 31, 30, 0.5);
  transition: .3s;
}
.news-catelist__item.-active{
  background: #858786;
  color: #fff;
  border: 1px solid #858786;
}
.news-catelist__item:hover{
  background: #858786;
  color: #fff;
  border: 1px solid #858786;
}
.news-list__head{
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: center;
}
.news-list__cate{
  font-size: 1.5rem;
  padding: 0.2rem 1rem 0.3rem;
  border: 1px solid rgba(28, 31, 30, 0.5);
}

.news-list {
  --cols: 3;
  --col-gap: 10%;
  --col-w: calc((100% - (var(--cols) - 1) * var(--col-gap)) / var(--cols));
  /* 区切り線のX位置（3列なら2本） */
  --x1: calc(var(--col-w) + 0.5 * var(--col-gap));
  --x2: calc(2 * var(--col-w) + 1.5 * var(--col-gap));
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 5rem var(--col-gap);
  /* 2本の縦ドット線を背景で描く */
  background-image: linear-gradient(to bottom, #1c1f1e 1px, transparent 1px), linear-gradient(to bottom, #1c1f1e 1px, transparent 1px);
  background-size: 1px 5px, 1px 5px;
  background-repeat: repeat-y, repeat-y;
  background-position: var(--x1) 0, var(--x2) 0; /* ← 修正ポイント */
  /* 列間の“gapの真ん中”に線（高さ=アイテムの高さだけ） */
}
.news-list + .news-list {
  margin-top: 5rem;
}
.news-list__item {
  width: var(--col-w);
}
.news-list__link {
  transition: 0.4s;
}
@media (any-hover: hover) {
  .news-list__link:hover {
    opacity: 0.7;
  }
}
.news-list__item::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0; /* 行間(row-gap)では自動で途切れる */
  left: calc(100% + var(--col-gap) / 2); /* gapの幾何中心に配置 */
  transform: translateX(-50%); /* 線の中心をぴったり合わせる */
  width: var(--sep-w);
  background: repeating-linear-gradient(to bottom, #1c1f1e 0, #1c1f1e 1px, transparent var(--dot-step));
  pointer-events: none;
}
.news-list__data {
  color: #1c1f1e;
  font-size: 1.6rem;
  opacity: 0.5;
}
.news-list__text {
  margin-top: 1rem;
  color: #1c1f1e;
  font-size: 1.6rem;
  line-height: 2;
}

@media screen and (max-width: 1000px) {
  .home-news {
    padding: 0 0 7rem;
  }
  .home-news__head {
    margin-bottom: 0;
  }
  .home-news__head + .news-catelistBlock{
    margin-top: 2.5rem;
    margin-bottom: 0.5rem;
  }
  .news-list {
    gap: 0;
    background: none;
  }
  .news-list + .news-list {
    margin-top: 0;
  }
  .news-list__item {
    padding: 2.5rem 0;
    width: 100%;
    background-image: linear-gradient(to left, rgba(28, 31, 30, 0.6) 1px, transparent 1px);
    background-size: 5px 1px;
    background-repeat: repeat-x;
    background-position: left bottom;
  }
  .news-list__head {
    margin-bottom: 1.5rem;
    flex-direction: row-reverse;
    justify-content: left;
  }
  .news-list__data {
    font-size: 1.5rem;
  }
  .news-list__text {
    margin-top: 1rem;
    color: #1c1f1e;
    line-height: 1.5;
  }
  .news-list-wrap + .c-button {
    margin-top: 3rem;
  }
  .-tabpc {
    display: none !important;
  }
  .-tabsp {
    display: block !important;
  }
}
.home-caution {
  padding: 9rem 0 12.5rem;
  background: url(/assets/images/common/noise-bg.png);
  background-size: 1280px;
}
.home-caution .caution-contents {
  border: 1px solid #777777;
  padding: 3.5rem 5rem 4rem;
}
.home-caution .caution-contents__title {
  font-size: 2.1rem;
  color: #777777;
  margin-bottom: 1.5rem;
}
.home-caution .caution-list__item {
  position: relative;
  color: #777777;
  font-size: 1.5rem;
  line-height: 2;
}

/* ---------- sp1 ---------- */
@media screen and (max-width: 1000px) {
  .home-caution {
    padding: 7rem 0 8rem;
  }
  .home-caution .caution-contents {
    padding: 4rem 3rem 3rem;
  }
  .-tabpc {
    display: none !important;
  }
  .-tabsp {
    display: block !important;
  }
}
/* 初期状態 */
.home-top .bg-fix-video {
  opacity: 1;
  transition: opacity 0.4s ease;
} /* ←初期0をここで上書き */
/* 越えたときの状態 */
.is-crossed .home-top,
.is-crossed .home-top .bg-fix-video {
  opacity: 0;
}

.is-crossed .parallax-bg {
  opacity: 1;
}

.parallax-bg {
  opacity: 0;
  transition: opacity 0.4s ease;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
}
.parallax-bg img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}

.home-parallax {
  width: 100%;
  height: 60rem;
}

/* ---------- sp1 ---------- */
@media screen and (max-width: 1000px) {
  .home-parallax {
    height: 55rem;
  }
  .-tabpc {
    display: none !important;
  }
  .-tabsp {
    display: block !important;
  }
}
.home-blog {
  padding: 13.5rem 0 0;
  background: url(/assets/images/common/noise-bg.png);
  background-size: 1280px;
}
.home-blog__inner {
  display: flex;
}
.home-blog .home-left-wrap {
  width: 30%;
}
.home-blog .home-right-wrap {
  flex: 1;
  position: relative;
  z-index: 2;
}
.home-blog .sticky-style {
  position: sticky;
  top: 3rem;
}
.home-blog .c-title-block + .c-button {
  margin-top: 3rem;
}

.blog-list {
  flex: 1;
  background-image: linear-gradient(to left, #1c1f1e 1px, transparent 1px);
  background-size: 5px 1px;
  background-repeat: repeat-x;
  background-position: left top;
}
.blog-list__item {
  background-image: linear-gradient(to left, #1c1f1e 1px, transparent 1px);
  background-size: 5px 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
.blog-list__link {
  display: block;
  padding: 2.5rem 0 3rem;
  transition: 0.3s;
}
.blog-list__link:hover {
  opacity: 0.7;
}
.blog-list__data {
  font-size: 1.6rem;
  opacity: 0.5;
}
.blog-list__text {
  font-size: 1.8rem;
  padding: 2.5rem 0 0;
}

.cursor-thumb {
  position: fixed;
  top: 0;
  left: 5rem;
  width: 18rem;
  aspect-ratio: 37/26;
  /* ← 被らせないために -50% は使わず左上基準に */
  transform-origin: top left;
  transform: scale(0.95);
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
  overflow: visible;
  background: #000;
  box-shadow: 0 0 5px rgb(34, 34, 34);
  transition: opacity 0.18s ease, transform 0.22s ease;
  will-change: transform, opacity;
}

.cursor-thumb.is-active {
  opacity: 1;
  transform: scale(1);
}

.cursor-thumb img {
  position: absolute;
  inset: 0;
  display: block;
  max-width: none; /* 追従サムネのサイズ指定をしているなら合わせて調整 */
  opacity: 0;
  transition: opacity 220ms ease; /* フェード時間はお好みで */
  will-change: opacity;
}

/* 表示側だけ見せる */
.cursor-thumb img.is-visible {
  opacity: 1;
}

@media (hover: none) and (pointer: coarse) {
  .cursor-thumb {
    display: none;
  }
}
/* ---------- sp1 ---------- */
@media screen and (max-width: 1000px) {
  .home-blog {
    padding: 7rem 0 0;
  }
  .home-blog__inner {
    display: block;
  }
  .home-blog .home-left-wrap {
    width: 100%;
    margin-bottom: 3rem;
  }
  .home-blog .blog-list {
    background-image: linear-gradient(to left, #1c1f1e 1px, transparent 1px);
    background-size: 5px 1px;
    background-repeat: repeat-x;
    background-position: left top;
  }
  .home-blog .blog-list__item {
    background-image: linear-gradient(to left, #1c1f1e 1px, transparent 1px);
    background-size: 5px 1px;
    background-repeat: repeat-x;
    background-position: left bottom;
  }
  .home-blog .blog-list__link {
    display: block;
    padding: 2.5rem 0 2rem;
    transition: 0.3s;
  }
  .home-blog .blog-list__link:hover {
    opacity: 0.7;
  }
  .home-blog .blog-list__data {
    font-size: 1.5rem;
  }
  .home-blog .blog-list__text {
    font-size: 1.7rem;
    padding: 1rem 0 0;
  }
  .home-blog .home-right-wrap + .c-button {
    margin-top: 3rem;
  }
  .-tabpc {
    display: none !important;
  }
  .-tabsp {
    display: block !important;
  }
}
.ly-set {
  padding: 34rem 0 14rem;
  background: url(/assets/images/common/noise-bg.png);
  background-size: 1280px;
}

.ly-bg {
  background: url(/assets/images/common/noise-bg.png);
  background-size: 1280px;
}

/* ::::: pagination ::::: */
.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 7rem;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.05em;
}

.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  font-size: 1.7rem;
  line-height: 0;
  border-radius: 50%;
  color: #1c1f1e;
  background-color: #cccdcd;
  opacity: 0.5;
  transition: opacity 0.3s, background-color 0.3s;
}

.page-numbers.current {
  color: #fff;
  background-color: #1c1f1e;
  opacity: 1;
}

a.page-numbers:hover {
  opacity: 1;
}

@media screen and (max-width: 1000px) {
  .ly-set {
    padding: 20rem 0 7rem;
  }
  .pagination {
    gap: 1rem;
    padding-top: 6rem;
  }
  .-tabpc {
    display: none !important;
  }
  .-tabsp {
    display: block !important;
  }
}
@media screen and (max-width: 768px) {
  .ly-set {
    padding-top: 15rem;
  }
  .-pc {
    display: none !important;
  }
  .-sp {
    display: block !important;
  }
}
.ly-about {
  padding: 12rem 0;
}
.ly-about__title span {
  display: block;
}
.ly-about__title .-small {
  font-size: 2.8rem;
}
.ly-about__title .-large {
  font-size: 3.6rem;
}
.ly-about__title .-small + .-large {
  margin-top: 0.5rem;
}
.ly-about__body {
  margin-top: 3rem;
}
.ly-about__text {
  font-size: 1.5rem;
  line-height: 2;
}

@media screen and (max-width: 1000px) {
  .ly-about {
    padding: 7rem 0 5rem;
  }
  .ly-about__title span {
    display: block;
  }
  .ly-about__title .-small {
    font-size: 2.4rem;
  }
  .ly-about__title .-large {
    font-size: 3rem;
  }
  .ly-about__title .-small + .-large {
    margin-top: 0.5rem;
    line-height: 1.5;
  }
  .ly-about__body {
    margin-top: 3rem;
  }
  .ly-about__text {
    font-size: 1.5rem;
    line-height: 2;
  }
  .-tabpc {
    display: none !important;
  }
  .-tabsp {
    display: block !important;
  }
}
.news-single .ly-news__inner {
  max-width: 78rem !important;
}

.single-head {
  margin-bottom: 5rem;
}
.single-head-top{
  display: flex;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-bottom: 1.5rem;
}
.single-head__cate{
  font-size: 1.5rem;
  padding: 0.2rem 1rem 0.3rem;
  border: 1px solid rgba(28, 31, 30, 0.5);
}
.single-head__date {
  opacity: 0.5;
  font-size: 1.5rem;
  letter-spacing: -0.05em;
}
.single-head__title {
  font-size: 3.6rem;
  line-height: 1.5;
  letter-spacing: 0.15em;
}

.other-news {
  margin-top: 8rem;
}

@media screen and (max-width: 768px) {
  .other-news {
    margin-top: 4.5rem;
  }
  .single-head {
    margin-top: 3.5rem;
  }
  .single-head__title {
    font-size: 3rem;
  }
  .-pc {
    display: none !important;
  }
  .-sp {
    display: block !important;
  }
}
.ly-kv {
  position: relative;
  overflow: hidden;
  height: 100%;
  max-height: 90rem;
}
.ly-kv::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(28, 31, 30, 0.7) 0%, rgba(28, 31, 30, 0) 50%, rgba(28, 31, 30, 0.5) 100%);
  z-index: 1;
  left: 0;
  right: 0;
}
.ly-kv__bg {
  background: #1c1f1e;
}
.ly-kv__bg img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1.1);
  filter: blur(5px);
  vertical-align: bottom;
}
.ly-kv .ly-kv-contents {
  position: absolute;
  z-index: 9;
  width: 100%;
  bottom: 0;
}
.ly-kv .ly-kv-contents__catch {
  font-size: 4.8rem;
  text-align: center;
  color: #fff;
  margin-bottom: 2rem;
  letter-spacing: 0.15em;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 1.5rem 3rem;
}
.ly-kv .ly-kv-contents__catch .-small {
  font-size: 2.1rem;
  letter-spacing: 0.05em;
}
.ly-kv .ly-kv-contents .scroll-down-icon {
  height: 8rem;
}
.ly-kv .ly-kv-contents .scroll-down__link {
  padding: 0 0 8rem;
}

@media screen and (max-width: 1000px) {
  .ly-kv {
    height: 100%;
  }
  .ly-kv .ly-kv-contents__catch {
    font-size: 3.6rem;
    flex-direction: column;
    justify-self: center;
    width: 100%;
    display: block;
  }
  .ly-kv .ly-kv-contents__catch .-large {
    display: block;
    text-align: center;
    width: 100%;
  }
  .ly-kv .ly-kv-contents__catch .-small {
    font-size: 1.7rem;
  }
  .ly-kv .ly-kv-contents .scroll-down-icon {
    height: 6rem !important;
  }
  .ly-kv .ly-kv-contents .scroll-down__link {
    padding: 0 0 6rem !important;
  }
  .-tabpc {
    display: none !important;
  }
  .-tabsp {
    display: block !important;
  }
}
.facility-content {
  padding: 14.5rem 0 14rem;
}

.facility-block {
  display: flex;
}
.facility-block .facility-side {
  min-width: 30rem;
}

.facility-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6.5rem 6rem;
}
.facility-list .facility-item {
  width: calc((100% - 6rem) / 2);
}
.facility-list .facility-item__title {
  letter-spacing: 0.1em;
}
.facility-list .facility-item__title .-small {
  font-size: 1.8rem;
  line-height: 1.5;
}
.facility-list .facility-item__title .-large {
  font-size: 2.5rem;
  line-height: 1.8;
}
.facility-list .facility-item__body {
  margin-top: 2rem;
}
.facility-list .facility-item__body + .c-table {
  margin-top: 3rem;
}
.facility-list .facility-item__text {
  margin-top: 1rem;
  font-size: 1.5rem;
  line-height: 2;
}
.facility-list .c-button {
  margin-top: 2.5rem;
}

@media screen and (max-width: 1280px) {
  .facility-content {
    padding: 10rem 0;
  }
  .facility-block {
    display: block;
  }
  .facility-block .facility-side {
    margin-bottom: 3rem;
  }
  .facility-block .c-title-block br {
    display: none;
  }
  .facility-list {
    gap: 6rem 6%;
  }
  .facility-list .facility-item {
    width: 47%;
  }
  .facility-list .facility-item__body {
    margin-top: 2rem;
  }
  .facility-list .facility-item__text {
    font-size: 1.6rem;
    line-height: 2;
  }
}
@media screen and (max-width: 1000px) {
  .ly-facility .sticky-slide__item:last-child .sticky-slide__contents {
    padding-bottom: 0;
  }
  .facility-content {
    padding: 6.5rem 0 6rem;
  }
  .facility-block {
    display: block;
  }
  .facility-block .facility-side {
    margin-bottom: 3rem;
  }
  .facility-list .facility-item {
    width: 100%;
  }
  .facility-item-btn-wrap {
    gap: 1rem;
  }
  .facility-item-btn-wrap .d-button {
    width: 50%;
    justify-content: space-between;
  }
  .facility-item-btn-wrap .d-button:nth-child(1) {
    width: 65%;
  }
  .facility-item-btn-wrap .d-button__text {
    flex: 1;
    display: block;
    padding-left: 1rem;
    text-align: center;
    font-size: 1.6rem;
  }
  .-tabpc {
    display: none !important;
  }
  .-tabsp {
    display: block !important;
  }
}
.ly-feature {
  padding-bottom: 13rem;
}

.feature-greeting {
  padding: 13rem 0 10rem;
}
.feature-greeting__inner {
  display: flex;
  flex-wrap: wrap;
  max-width: 80rem;
  gap: 4rem;
}
.feature-greeting__item {
  width: 100%;
}
.feature-greeting__title {
  font-size: 2.1rem;
  line-height: 1.5;
}
.feature-greeting__title + figure {
  max-width: 48rem;
  margin: 1.5rem auto 0;
}
.feature-greeting__text {
  margin-top: 1rem;
  font-size: 1.5rem;
  line-height: 2;
}
.feature-greeting__text a {
  position: relative;
  display: inline-block;
  transition: 0.4s;
  text-decoration: underline;
}
.feature-greeting__text a:hover {
  opacity: 0.7;
}
.feature-greeting__figure-wrap {
  max-width: 48rem;
  margin: 1rem auto;
}
.feature-greeting__name {
  width: 73.2%;
  margin: 3rem auto 6rem;
}
.feature-greeting .greeting-button {
  margin-top: 2.5rem;
}

@media screen and (max-width: 1000px) {
  .feature-greeting {
    padding: 6rem 0 5rem;
  }
  .feature-greeting__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 5rem;
  }
  .feature-greeting__item {
    width: 100%;
  }
  .feature-greeting__title {
    font-size: 2rem;
    line-height: 1.5;
  }
  .feature-greeting__text {
    margin-top: 2rem;
    font-size: 1.5rem;
  }
  .feature-greeting__name {
    margin-top: 1.5rem;
    max-width: 42rem;
    width: 100%;
    margin-bottom: 0;
  }
  .ly-feature {
    padding-bottom: 6rem;
  }
  .ly-feature .sticky-slide__contents {
    padding-bottom: 0;
  }
  .-tabpc {
    display: none !important;
  }
  .-tabsp {
    display: block !important;
  }
}
.spa-overview {
  padding: 9rem 0 10rem;
}

.slide-section + .spa-overview-table {
  margin-top: 8rem;
}

.overview-table + .overview-table {
  margin-top: 5rem;
}

.overview-table__title {
  font-size: 2.5rem;
  margin-bottom: 3.5rem;
}

.spa-about {
  margin-bottom: 8rem;
}
.spa-about__content {
  background: #fff;
  padding: 5rem 6rem 6rem;
}
.spa-about__title {
  font-size: 1.8rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.spa-about__text {
  font-size: 1.5rem;
  line-height: 2;
}

@media screen and (max-width: 1000px) {
  .slide-section + .spa-overview-table {
    margin-top: 7rem;
  }
  .overview-table__title {
    font-size: 2.2rem;
    margin-bottom: 2rem;
  }
  .spa-overview {
    padding: 6rem 0;
  }
  .ly-spa .ly-about {
    padding-bottom: 3rem;
  }
  .spa-about {
    margin-bottom: 6rem;
  }
  .spa-about__content {
    padding: 2.5rem;
  }
  .spa-about__title {
    font-size: 1.7rem;
    margin-bottom: 0.5rem;
  }
  .-tabpc {
    display: none !important;
  }
  .-tabsp {
    display: block !important;
  }
}
.slide-section + .slide-section {
  margin-top: 7rem;
}

.slide-section__title {
  font-size: 3.6rem;
  margin-bottom: 4rem;
}
.slide-section .card-slide__title {
  margin-top: 2rem;
  font-size: 2.1rem;
  line-height: 1.8;
}
.slide-section .card-slide__title span {
  display: block;
}
.slide-section .card-slide__title .-small {
  font-size: 1.7rem;
  line-height: 1.5;
}
.slide-section .card-slide__body {
  margin-top: 1.2rem;
}
.slide-section .card-slide__text {
  font-size: 1.5rem;
  line-height: 2;
}
.slide-section .card-slide__button {
  margin-top: 2.5rem;
  display: flex;
  justify-content: left;
  gap: 2rem 4rem;
}

.card-slide-block {
  width: 100%;
}

.card-slide {
  margin-bottom: 4rem;
}
.card-slide__item {
  /* お好みで調整。横3枚見せのための基本幅 */
  box-sizing: border-box;
  height: auto;
}
.card-slide__item img {
  display: block;
  width: 100%;
  height: auto;
}
.card-slide .slick-track {
  display: flex !important;
  gap: 20px; /* ← ここで隙間管理する（左右は開かない） */
}

/* ガター方式：外側０、スライド間だけ余白 */
.js-card-slide .slick-list {
  margin: 0 -12px; /* ← ここを “-ガター/2” に */
}

.js-card-slide .slick-slide {
  padding: 0 12px; /* ← ここを “ガター/2” に */
  box-sizing: border-box; /* 幅計算を安定化 */
}

/* 画像のはみ出し防止と見た目安定 */
.js-card-slide .card-slide__item img {
  width: 100%;
  height: auto;
  display: block;
}

.fix-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #111;
  overflow: hidden;
}

.fix-bg .slick-list,
.fix-bg .slick-track {
  height: 100%;
}

.fix-bg__item {
  position: relative;
  width: 100%;
  height: 100%;
  transform: scale(1.2);
  filter: blur(5px);
  transition: 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.ly-bg .fix-bg__item {
  filter: blur(0);
}

.fix-bg__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.add-animation {
  animation: zoomOut 8s linear both;
}

@keyframes zoomOut {
  from {
    transform: scale(1.2);
  }
  to {
    transform: scale(1);
  }
}
/* もし前に入れていた gap 指定があれば消す */
.js-card-slide .slick-track {
  display: block !important; /* 以前 flex にしていたら戻す */
}

/* 下のコントロール行 */
.card-slide__controls {
  display: flex;
  align-items: center;
  justify-content: space-between; /* 左:ドット / 右:矢印 */
  margin-top: 3.5rem;
}

/* ドット（Slickが入れてくるul） */
.card-slide__dots .slick-dots {
  display: flex;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.card-slide__dots .slick-dots li button {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 10px;
  border: none;
  background: rgba(28, 31, 30, 0.2);
  text-indent: -9999px;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  transition: 0.4s;
}

.card-slide__dots .slick-dots li.slick-active button {
  background: #1c1f1e;
  width: 4rem;
  height: 0.4rem;
}

.card-slide__arrows {
  width: 7rem;
  display: flex;
  justify-content: space-between;
}
.card-slide__arrows .slick-prev,
.card-slide__arrows .slick-next {
  width: 1.2rem;
  transition: 0.4s;
}
@media (any-hover: hover) {
  .card-slide__arrows .slick-prev:hover,
  .card-slide__arrows .slick-next:hover {
    opacity: 0.7;
  }
}

@media screen and (max-width: 1000px) {
  .slide-section + .slide-section {
    margin-top: 5rem;
  }
  .slide-section__title {
    font-size: 3rem;
    margin-bottom: 2rem;
  }
  .card-slide__arrows {
    width: 6rem;
    display: flex;
    justify-content: space-between;
  }
  .card-slide__arrows .slick-prev,
  .card-slide__arrows .slick-next {
    width: 0.9rem;
  }
  .-tabpc {
    display: none !important;
  }
  .-tabsp {
    display: block !important;
  }
}
.large-slide__item {
  height: auto;
}
.large-slide__item img {
  height: auto;
}
.large-slide .card-slide__controls {
  width: 88.88%;
  margin: 0 auto;
}

/*  中央スライドの画像だけ */
.large-slide__item {
  width: auto !important;
}

.slick-track {
  display: flex;
}

.js-large-slide .slick-track {
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.slick-initialized .large-slide__item {
  display: flex;
  height: auto;
  max-width: 66.5vw;
  margin-left: 2.5rem;
  margin-right: 2.5rem;
  justify-content: center;
  align-items: center;
}

.large-slide__item img {
  height: 42vw;
  width: auto;
  margin: 0 auto;
  display: block;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  overflow: hidden;
  vertical-align: top;
  backface-visibility: hidden;
}

@media screen and (max-width: 1000px) {
  .large-slide__item {
    margin: 0 1rem;
  }
  .card-slide__controls {
    margin-top: 2rem;
  }
  .large-slide-block {
    margin-bottom: 5rem;
  }
  .slick-initialized .large-slide__item {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .slick-initialized .large-slide__item {
    max-width: 79.8vw;
  }
  .large-slide__item img {
    height: 60vw;
  }
  .-tabpc {
    display: none !important;
  }
  .-tabsp {
    display: block !important;
  }
  .spa-about__text span{
    display: none;
  }
  .spa-about .greeting-button{
    margin-top: 2.5rem;
  }
}
.plan-block {
  display: flex;
}
.plan-block .plan-side {
  min-width: 30rem;
}
.plan-block .plan-side .c-button {
  margin-top: 3.5rem;
}

.plan-content {
  display: flex;
  flex-wrap: wrap;
  gap: 6.5rem 6rem;
  width: 100%;
}
.plan-content .plan-item {
  width: calc((100% - 6rem) / 2);
}
.plan-content .plan-item__body {
  margin-top: 2rem;
}
.plan-content .plan-item__text {
  font-size: 1.8rem;
  line-height: 2;
}

.plan-content + .c-button {
  display: none;
}

.plan-item-btn-wrap {
  margin-top: 2.5rem;
  display: flex;
  gap: 2rem;
}
.plan-item-btn-wrap .d-button {
  width: 50%;
  justify-content: space-between;
}
.plan-item-btn-wrap .d-button__text {
  flex: 1;
  display: block;
  padding-left: 1.5rem;
  text-align: center;
}

.rooms-item-btn-wrap {
  margin-top: 2.5rem;
  display: flex;
  gap: 2rem;
}
.rooms-item-btn-wrap .d-button {
  justify-content: space-between;
}
.rooms-item-btn-wrap .d-button__text {
  flex: 1;
  display: block;
  padding-left: 1.5rem;
  text-align: center;
}

.plan__paginationArea {
  width: calc(100% - 30rem);
  margin-right: 0;
  margin-left: auto;
}

@media screen and (max-width: 1280px) {
  .plan-block {
    display: block;
  }
  .plan-block .plan-side {
    margin-bottom: 3rem;
  }
  .plan-block .plan-side .c-button {
    display: none;
  }
  .plan-content {
    gap: 6.5rem 6%;
  }
  .plan-content .plan-item {
    width: 47%;
  }
  .plan-content .plan-item__body {
    margin-top: 2rem;
  }
  .plan-content .plan-item__text {
    font-size: 1.6rem;
    line-height: 2;
  }
  .plan-content + .c-button {
    margin-top: 4rem;
    display: block;
  }
  .plan__paginationArea {
    width: 100%;
  }
}
@media screen and (max-width: 1000px) {
  .plan-block {
    display: block;
  }
  .plan-block .plan-side {
    margin-bottom: 3rem;
  }
  .plan-content .plan-item {
    width: 100%;
  }
  .plan-item-btn-wrap {
    gap: 1rem;
  }
  .plan-item-btn-wrap .d-button {
    width: 50%;
    justify-content: space-between;
  }
  .plan-item-btn-wrap .d-button:nth-child(1) {
    width: 65%;
  }
  .plan-item-btn-wrap .d-button__text {
    flex: 1;
    display: block;
    padding-left: 1rem;
    text-align: center;
    font-size: 1.6rem;
  }
  .-tabpc {
    display: none !important;
  }
  .-tabsp {
    display: block !important;
  }
}
@media screen and (max-width: 500px) {
  .rooms-item-btn-wrap {
    margin-top: 2.5rem;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .rooms-item-btn-wrap .d-button {
    width: 100%;
    justify-content: space-between;
  }
  .rooms-item-btn-wrap .d-button__text {
    flex: 1;
    display: block;
    padding-left: 1.5rem;
    text-align: center;
  }
}
.plan-single .large-slide-block {
  margin-bottom: 3.5rem;
}
.plan-main__title {
  font-size: 3.6rem;
  line-height: 1.53;
  margin-bottom: 6rem;
}
.plan-main .plan-detail {
  display: flex;
  justify-content: space-between;
  margin-bottom: 11rem;
}
.plan-main .plan-detail__left {
  width: 44.44%;
}
.plan-main .plan-detail__right {
  width: 46%;
}
.plan-main .plan-detail__text {
  font-size: 1.5rem;
  line-height: 2;
}
.plan-main .plan-detail__button {
  margin-top: 7rem;
}

@media screen and (max-width: 1000px) {
  .plan-main {
    margin-bottom: 5rem;
  }
  .plan-main .large-slide-block {
    margin-bottom: 3rem;
  }
  .plan-main__title {
    font-size: 3rem;
    line-height: 1.5;
    margin-bottom: 3rem;
  }
  .plan-main .plan-detail {
    display: block;
    margin-bottom: 0;
  }
  .plan-main .plan-detail__left {
    width: 100%;
    margin-bottom: 3rem;
  }
  .plan-main .plan-detail__right {
    width: 100%;
  }
  .plan-main .plan-detail__text {
    font-size: 1.5rem;
    line-height: 2;
  }
  .plan-main .plan-detail__button {
    margin-top: 4rem;
  }
  .-tabpc {
    display: none !important;
  }
  .-tabsp {
    display: block !important;
  }
}
@media screen and (max-width: 500px) {
  .plan-item-btn-wrap{
    flex-wrap: wrap;
  }
  .plan-item-btn-wrap .d-button{
    width: 100%!important;
  }
  .plan-detail__button .d-button {
    width: 100%;
    justify-content: space-between;
  }
  .plan-detail__button .d-button__text {
    flex: 1;
    display: block;
    padding-left: 1.5rem;
    text-align: center;
  }
}
.ly-rooms {
  padding-bottom: 14rem;
}
.ly-rooms .ly-about {
  padding: 33rem 0 0;
}
.tab-list {
  padding-top: 6rem;
  margin-bottom: 8rem;
}
.amenity-overview + .tab-list{
  padding-top: 0;
}
.tab-list .rooms-tab-list {
  display: flex;
  gap: 2rem 3rem;
}
.tab-list .rooms-tab-list .rooms-tab-list__item {
  font-size: 1.7rem;
}
.tab-list .rooms-tab-list .rooms-tab-list__link {
  cursor: pointer;
  position: relative;
  display: inline-block;
  opacity: 0.4;
  transition: 0.4s;
}
.tab-list .rooms-tab-list .rooms-tab-list__link::before {
  position: absolute;
  display: block;
  content: "";
  height: 1px;
  background: rgba(28, 31, 30, 0.7);
  bottom: -3px;
  left: 0;
  width: 0%;
  transition: 0.4s;
}
.tab-list .rooms-tab-list .rooms-tab-list__link.-current {
  opacity: 1;
}
.tab-list .rooms-tab-list .rooms-tab-list__link.-current::before {
  width: 100%;
}
.tab-list .rooms-tab-list .rooms-tab-list__link:hover {
  opacity: 1;
}
.tab-list .rooms-tab-list .rooms-tab-list__link:hover::before {
  width: 100%;
}

.rooms-list {
  margin-top: 11.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 6.5rem 8rem;
}
.rooms-list__item {
  width: calc((100% - 8rem) / 2);
}
.rooms-list__title {
  margin-top: 3rem;
  display: flex;
  align-items: baseline;
  gap: 1rem 2.5rem;
}
.rooms-list__title .-large {
  font-size: 2.5rem;
}
.rooms-list__title .-small {
  font-size: 1.8rem;
}
.rooms-list__detail {
  margin-top: 2rem;
  font-size: 1.5rem;
}
.rooms-list__body {
  margin-top: 1.5rem;
}
.rooms-list__text {
  font-size: 1.5rem;
  line-height: 2;
}

@media screen and (max-width: 1000px) {
  .ly-rooms {
    padding-bottom: 6rem;
  }
  .ly-rooms .sticky-slide__contents {
    padding-bottom: 0;
  }
  .ly-rooms .ly-about {
    padding: 20rem 0 0;
  }
  .tab-list {
    padding-top: 5rem;
    margin-bottom: 4rem;
  }
  .tab-list .rooms-tab-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem 3rem;
  }
  .tab-list .rooms-tab-list .rooms-tab-list__item {
    font-size: 1.7rem;
  }
  .tab-list .rooms-tab-list .rooms-tab-list__link {
    cursor: pointer;
    position: relative;
    display: inline-block;
    opacity: 0.4;
    transition: 0.4s;
  }
  .tab-list .rooms-tab-list .rooms-tab-list__link::before {
    position: absolute;
    display: block;
    content: "";
    height: 1px;
    background: rgba(28, 31, 30, 0.7);
    bottom: -3px;
    left: 0;
    width: 0%;
    transition: 0.4s;
  }
  .rooms-list {
    margin-top: 6rem;
    display: flex;
    flex-wrap: wrap;
    gap: 6rem 8rem;
  }
  .rooms-list__item {
    width: 100%;
  }
  .rooms-list__title {
    margin-top: 2.5rem;
    display: flex;
    align-items: baseline;
    gap: 1rem 1.5rem;
  }
  .rooms-list__title .-large {
    font-size: 2.2rem;
  }
  .rooms-list__title .-small {
    font-size: 1.7rem;
  }
  .rooms-list__detail {
    margin-top: 1rem;
    font-size: 1.5rem;
  }
  .rooms-list__body {
    margin-top: 1.5rem;
  }
  .rooms-list__text {
    font-size: 1.5rem;
    line-height: 2;
  }
  .-tabpc {
    display: none !important;
  }
  .-tabsp {
    display: block !important;
  }
}
.rooms-single {
  padding-bottom: 14rem;
}
.rooms-single .room-info {
  padding-bottom: 9rem;
}
.rooms-single .rooms-intro {
  padding: 9rem 0 7rem;
}
.rooms-single .rooms-intro__body .d-button {
  margin-top: 7rem;
}
.rooms-single .rooms-intro__text {
  font-size: 1.5rem;
  line-height: 2;
}
.rooms-single .room-info-list {
  display: flex;
  justify-content: space-between;
}
.rooms-single .room-info-list__title {
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
}
.rooms-single .room-info-list__left {
  width: calc((100% - 8rem) / 2);
}
.rooms-single .room-info-list__right {
  width: calc((100% - 8rem) / 2);
}
.rooms-single .room-info-list__text {
  font-size: 1.5rem;
  line-height: 2;
}
.rooms-single .room-info-list .room-info-list__item + .room-info-list__item {
  margin-top: 5rem;
}
.rooms-single .room-info-list .room-info-list__image + .room-info-list__image {
  margin-top: 4rem;
}
.rooms-single .room-info-list .room-info-list__body + .d-button {
  margin-top: 3.5rem;
}
.rooms-single .amenity-overview {
  padding-bottom: 11rem;
}
.rooms-single .amenity-overview .card-slide-block {
  margin-top: 5rem;
}
.rooms-single .large-slide-block {
  margin-bottom: 4.5rem;
}

@media screen and (max-width: 1000px) {
  .rooms-single {
    padding-bottom: 7rem;
  }
  .rooms-single .room-info-list__title {
    font-size: 2.5rem;
  }
  .rooms-single .room-info {
    padding-bottom: 6rem;
  }
  .rooms-single .rooms-intro {
    padding: 9rem 0 6rem;
  }
  .rooms-single .rooms-intro__body .d-button {
    margin-top: 3rem;
  }
  .rooms-single .rooms-intro__text {
    font-size: 1.5rem;
    line-height: 2;
  }
  .rooms-single .room-info-list {
    display: flex;
    flex-direction: column;
  }
  .rooms-single .room-info-list__title {
    font-size: 2.2rem;
    margin-bottom: 2rem;
  }
  .rooms-single .room-info-list__left {
    display: contents;
  }
  .rooms-single .room-info-list__right {
    width: 100%;
    margin-top: 4rem;
  }
  .rooms-single .room-info-list__text {
    font-size: 1.5rem;
    line-height: 2;
  }
  .rooms-single .room-info-list .room-info-list__item:nth-child(2) {
    order: 3;
    margin-top: 5rem;
  }
  .rooms-single .room-info-list .room-info-list__image + .room-info-list__image {
    margin-top: 2.5rem;
  }
  .rooms-single .room-info-list .room-info-list__body + .d-button {
    margin-top: 3.5rem;
  }
  .rooms-single .amenity-overview {
    padding-bottom: 6rem;
  }
  .rooms-single .amenity-overview .card-slide-block {
    margin-top: 3rem;
  }
  .rooms-single .large-slide-block {
    margin-bottom: 3rem;
  }
  .rooms-single .sticky-slide__contents {
    padding-bottom: 0;
  }
  .-tabpc {
    display: none !important;
  }
  .-tabsp {
    display: block !important;
  }
}
.cusine-signle {
  padding: 33rem 0 13rem;
}

.cusine-images {
  margin-top: 7rem;
}

.cusine-images-wrap {
  margin-top: 7rem;
  position: relative;
  z-index: 99;
  aspect-ratio: 1080/700;
}

.cusine-info {
  padding-top: 7rem;
  margin-bottom: 10rem;
}
.cusine-info__title {
  font-size: 3.6rem;
}
.cusine-info__body {
  margin-top: 3rem;
}
.cusine-info__text {
  font-size: 1.5rem;
  line-height: 2;
}
.cusine-info__span {
  margin-top: 1.5rem;
  display: block;
  font-size: 1.5rem;
  color: rgba(28, 31, 30, 0.8);
}

@media screen and (max-width: 1000px) {
  .cusine-signle {
    padding: 19rem 0 7rem;
  }
  .cusine-images {
    margin-top: 3rem;
  }
  .cusine-images-wrap {
    margin-top: 3rem;
    aspect-ratio: 640/720;
    height: calc(112vw - 12%);
    width: 100%;
  }
  .cusine-info {
    padding-top: 4rem;
    margin-bottom: 5rem;
  }
  .cusine-info__title {
    font-size: 3rem;
  }
  .cusine-info__body {
    margin-top: 2rem;
  }
  .cusine-info__text {
    font-size: 1.5rem;
    line-height: 2;
  }
  .cusine-info__span {
    margin-top: 1rem;
    display: block;
    font-size: 1.5rem;
  }
  .-tabpc {
    display: none !important;
  }
  .-tabsp {
    display: block !important;
  }
}
@media screen and (max-width: 500px) {
  .rooms-single .rooms-intro__body .d-button {
    width: 100%;
    justify-content: space-between;
  }
  .rooms-single .rooms-intro__body .d-button .d-button__text {
    flex: 1;
    text-align: center;
  }
  .rooms-single .room-info-list .room-info-list__body + .d-button {
    width: 100%;
    justify-content: space-between;
  }
  .rooms-single .room-info-list .room-info-list__body + .d-button .d-button__text {
    flex: 1;
    text-align: center;
  }
}
.ly-cuisine .instructions-sec {
  padding: 7rem 0 9rem;
}
.ly-cuisine .access-button__text{
  letter-spacing: 0;
}
.ly-cuisine .instructions-sec__title {
  font-size: 3.6rem;
  margin-bottom: 3rem;
}
.ly-cuisine .cusine-other {
  padding-bottom: 9rem;
}
.ly-cuisine .detail-sec {
  margin-top: 2.5rem;
}
.ly-cuisine .detail-sec__item {
  text-indent: -1em;
  padding-left: 1em;
  color: #1c1f1e;
  opacity: 0.8;
  font-size: 1.3rem;
  line-height: 1.5;
}

.ly-cuisine table td a{ 
  text-decoration: underline;
  transition: .3s;
}
.ly-cuisine table td a:hover{
  opacity: 0.7;
}

.instructions-sec-block + .access-button{
  margin-top: 2.5rem;
}

.ly-cuisine .access-button + .detail-sec{
  margin-top: 2rem;
}
.ly-cuisine .access-button__icon svg{
  transform: rotate(270deg);
}

.ly-cuisine .detail-sec__item a{
  text-decoration: underline;
  transition: .3s;
}
.ly-cuisine .detail-sec__item a:hover{
  opacity: 0.7;
}
.suiso-sec {
  padding-bottom: 12rem;
}
.suiso-sec__title {
  font-size: 3.6rem;
  margin-bottom: 4rem;
}
.suiso-sec .suiso-sec-list {
  display: flex;
  justify-content: space-between;
}
.suiso-sec .suiso-sec-list__left {
  width: calc((100% - 8rem) / 2);
}
.suiso-sec .suiso-sec-list__left .access-button {
  margin-top: 4rem;
}
.suiso-sec .suiso-sec-list__text {
  font-size: 1.5rem;
  line-height: 2;
}
.suiso-sec .suiso-sec-list__right {
  width: calc((100% - 8rem) / 2);
}
.suiso-sec .access-button__icon svg {
  transform: rotate(-90deg);
}

.botom-banner {
  position: relative;
  margin: 1rem;
}
.botom-banner__link {
  display: block;
  height: 38rem;
}
.botom-banner__link img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.botom-banner .sticky-slide__contents {
  position: absolute;
  bottom: auto;
  display: flex;
  align-items: center;
  top: 0;
  height: 100%;
}

@media screen and (max-width: 1000px) {
  .ly-cuisine .instructions-sec {
    padding: 5rem 0 5rem;
  }
  .ly-cuisine .instructions-sec__title {
    font-size: 3rem;
    margin-bottom: 2rem;
  }
  .ly-cuisine .cusine-other {
    padding-bottom: 6rem;
  }
  .ly-cuisine .sticky-slide__contents {
    padding-bottom: 0;
  }
  .ly-cuisine .detail-sec {
    margin-top: 2rem;
  }
  .ly-cuisine .suiso-sec {
    padding-bottom: 7rem;
  }
  .ly-cuisine .suiso-sec__title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
  }
  .ly-cuisine .suiso-sec .suiso-sec-list {
    flex-direction: column;
  }
  .ly-cuisine .suiso-sec .suiso-sec-list__left {
    width: 100%;
  }
  .ly-cuisine .suiso-sec .suiso-sec-list__left .access-button {
    margin-top: 3rem;
    width: auto;
  }
  .ly-cuisine .suiso-sec .suiso-sec-list__right {
    width: 100%;
    margin-top: 4rem;
  }
  .botom-banner {
    position: relative;
    margin: 0.5rem;
  }
  .botom-banner__link {
    height: auto;
  }
  .botom-banner__link img {
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .botom-banner .sticky-slide__contents {
    position: absolute;
    padding: 0;
  }
  .botom-banner .sticky-slide__title,
  .botom-banner .sticky-slide__text {
    color: #fff;
  }
  .-tabpc {
    display: none !important;
  }
  .-tabsp {
    display: block !important;
  }
}
@media screen and (max-width: 500px) {
  .ly-cuisine .suiso-sec .suiso-sec-list__left .access-button {
    width: 100%;
  }
  .ly-cuisine .suiso-sec .suiso-sec-list__left .access-button .access-button__text {
    text-align: center;
    flex: 1;
  }
}
.ly-aniversary {
  padding: 0 0 13rem;
}

.columns02 .ly-about {
  padding: 13rem 0 7rem;
}

.surprise-sec .ly-about {
  padding: 10rem 0 7rem;
}

.columns02-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6.5rem 8rem;
}
.columns02-list__item {
  width: calc((100% - 8rem) / 2);
}
.columns02-list__title {
  font-size: 2.5rem;
  margin-top: 3rem;
  display: flex;
  align-items: baseline;
  gap: 1rem 2.5rem;
}
.columns02-list__small {
  font-size: 1.8rem;
  margin-top: 0.5rem;
}
.columns02-list__body {
  margin-top: 2.5rem;
}
.columns02-list__text {
  font-size: 1.5rem;
  line-height: 2;
}

.columns02-detail {
  margin-top: 0.6rem;
}
.columns02-detail__text {
  font-size: 1.3rem;
  line-height: 1.5;
  display: block;
  color: #1c1f1e;
  opacity: 0.8;
}

.surprise-sec {
  margin-bottom: 8rem;
}

.explanation-sec {
  margin-top: 6rem;
  background: #fff;
  padding: 5rem;
}
.explanation-sec__title {
  font-size: 2.1rem;
  font-weight: bold;
}
.explanation-sec__text {
  margin-top: 1.5rem;
  font-size: 1.5rem;
  line-height: 2;
}

@media screen and (max-width: 1000px) {
  .ly-aniversary {
    padding: 0 0 7rem;
  }
  .columns02 .ly-about {
    padding: 8rem 0 4rem;
  }
  .surprise-sec .ly-about {
    padding: 6rem 0 5rem;
  }
  .columns02-list {
    display: flex;
    flex-wrap: wrap;
    gap: 5rem 8rem;
  }
  .columns02-list__item {
    width: 100%;
  }
  .columns02-list__title {
    font-size: 2.2rem;
    margin-top: 2rem;
    display: flex;
    align-items: baseline;
    gap: 1rem 2.5rem;
  }
  .columns02-list__small {
    font-size: 1.7rem;
    margin-top: 0.2rem;
  }
  .columns02-list__body {
    margin-top: 2rem;
  }
  .columns02-list__text {
    font-size: 1.5rem;
    line-height: 2;
  }
  .explanation-sec {
    margin-top: 2.5rem;
    background: #fff;
    padding: 4rem 2.5rem;
  }
  .explanation-sec__title {
    font-size: 2rem;
  }
  .explanation-sec__text {
    margin-top: 1rem;
  }
  .-tabpc {
    display: none !important;
  }
  .-tabsp {
    display: block !important;
  }
}
.ly-esthe {
  padding-bottom: 14rem;
}
.ly-esthe .c-faq {
  padding-top: 15rem;
}

.esthe-list__title {
  font-size: 2.8rem;
  margin-bottom: 2rem;
}
.esthe-list__text {
  font-size: 1.5rem;
  line-height: 2;
}
.esthe-list .esthe-box {
  margin-top: 4rem;
}
.esthe-list .esthe-box__title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}
.esthe-list .esthe-box__item {
  background: #fff;
  padding: 5rem;
}
.esthe-list .esthe-box__block-title {
  font-size: 1.8rem;
}
.esthe-list .esthe-box__block-text {
  font-size: 1.5rem;
  line-height: 2;
}
.esthe-list .esthe-box__block .esthe-box__block-title + .esthe-box__block-text {
  margin-top: 1.5rem;
}
.esthe-list .esthe-box .esthe-box__details {
  font-size: 1.3rem;
  line-height: 1.5;
  margin-top: 3rem;
  text-indent: -1em;
  padding-left: 1em;
  color: #1c1f1e;
  opacity: 0.8;
}
.esthe-list .esthe-box .esthe-box__block + .esthe-box__block {
  margin-top: 2rem;
}

@media screen and (max-width: 1000px) {
  .ly-esthe {
    padding-bottom: 7rem;
  }
  .ly-esthe .c-faq {
    padding-top: 0;
  }
  .esthe-list__title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }
  .esthe-list__text {
    font-size: 1.5rem;
    line-height: 2;
  }
  .esthe-list .esthe-box {
    margin-top: 4rem;
  }
  .esthe-list .esthe-box__title {
    font-size: 2.2rem;
    margin-bottom: 2rem;
  }
  .esthe-list .esthe-box__item {
    background: #fff;
    padding: 2rem 2.5rem;
  }
  .esthe-list .esthe-box__block-title {
    font-size: 1.7rem;
  }
  .esthe-list .esthe-box__block-text {
    font-size: 1.5rem;
    line-height: 2;
  }
  .esthe-list .esthe-box__block .esthe-box__block-title + .esthe-box__block-text {
    margin-top: 0.8rem;
  }
  .esthe-list .esthe-box .esthe-box__details {
    margin-top: 2rem;
  }
  .esthe-list .esthe-box .esthe-box__block + .esthe-box__block {
    margin-top: 2.5rem;
  }
  .-tabpc {
    display: none !important;
  }
  .-tabsp {
    display: block !important;
  }
}
.ly-bar {
  padding-bottom: 13rem;
}

.large-slide-block {
  margin-bottom: 9rem;
}

.bar-info {
  margin-top: 10rem;
}

@media screen and (max-width: 1000px) {
  .ly-bar {
    padding-bottom: 7rem;
  }
  .bar-info {
    margin-top: 6rem;
  }
  .large-slide-block {
    margin-bottom: 6rem;
  }
  .-tabpc {
    display: none !important;
  }
  .-tabsp {
    display: block !important;
  }
}
.home-access__head {
  margin-bottom: 3rem;
}

.c-accessMap {
  -moz-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  filter: grayscale(100%);
}
.c-accessMap iframe {
  height: 50rem;
}

.c-access-addr {
  padding: 7rem 0;
}
.c-access-addr__title {
  font-size: 2.1rem;
  margin-bottom: 1.5rem;
}
.c-access-addr__body {
  font-size: 1.5rem;
  line-height: 2;
}
.c-access-addr__body a {
  transition: 0.4s;
}
.c-access-addr__body a:hover {
  opacity: 0.7;
}

.c-access-root + .c-access-root {
  margin-top: 10rem;
}

.c-access-root-wrap {
  padding-top: 6rem;
}

.c-access-root__title {
  font-size: 3.6rem;
  line-height: 1.5;
  letter-spacing: 0.15em;
  margin-bottom: 3rem;
}
.c-access-root__wrap {
  display: flex;
  gap: 3rem 7.4%;
}
.c-access-root__wrap > div {
  width: 46.3%;
}
.c-access-root .c-access-root__right-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}
.c-access-root-box {
  margin-bottom: 2.5rem;
}
.c-access-root-box:last-child {
  margin-bottom: 0;
}
.c-access-root-box__title {
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.c-access-root-box__title02 {
  margin-top: 3rem;
  font-size: 2.5rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin-bottom: 2.5rem;
}
.c-access-root-box__text {
  font-size: 1.5rem;
  line-height: 2;
  letter-spacing: 0.05em;
}
.c-access-root .c-access-root-bottom {
  display: flex;
  flex-direction: column;
  gap: 4rem 0;
  margin-top: 6rem;
}
.c-access-root .c-access-root-top {
  display: flex;
  flex-direction: column;
  gap: 4rem 0;
  margin-bottom: 6rem;
}
.c-access-root .c-access-root-top__title{
  font-size: 1.5rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.c-access-sp-figure figure + figure {
  margin-top: 2rem;
}

.c-access-root-box .c-table-left {
  width: 25%;
}

.c-access-root-box .c-table-center {
  width: 30% !important;
}

.english .c-access-root-box .c-table-center{
  width: 40% !important;
}

.access-button-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 4rem;
}

.access-button {
  cursor: pointer;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  transition: 0.4s;
  border: 1px solid rgba(28, 31, 30, 0.5);
  gap: 1rem 0;
}
.access-button:hover {
  opacity: 0.7;
}
.access-button__text {
  font-size: 1.6rem;
  padding: 1.35rem 1.5rem 1.35rem 2rem;
  margin-top: -0.2rem;
  letter-spacing: 0.1em;
  transition: 0.4s;
  color: #1c1f1e;
}
.english .access-button__text,
.french .access-button__text{
  letter-spacing: 0;
}
.access-button__icon {
  background-image: radial-gradient(circle, #1c1f1e 1px, transparent 1px);
  display: flex;
  align-items: center;
  justify-self: center;
  width: 5rem;
  height: 3rem;
  background-size: 1px 4px;
  background-repeat: repeat-y;
  background-position: left top;
}
.access-button__icon svg {
  transition: 0.3s;
  width: 1rem;
  height: 0.5rem;
  margin: 0 auto;
}
.access-button .cls-1 {
  fill: #1c1f1e;
}

@media screen and (max-width: 1000px) {
  .c-access-addr {
    padding: 5rem 0 0;
  }
  .c-access-addr__title {
    font-size: 2.1rem;
    margin-bottom: 1.5rem;
  }
  .c-access-addr__body {
    font-size: 1.5rem;
    line-height: 2;
  }
  .c-access-addr__body a {
    transition: 0.4s;
  }
  .c-access-addr__body a:hover {
    opacity: 0.7;
  }
  .c-access-root + .c-access-root {
    margin-top: 5rem;
  }
  .c-access-root-wrap {
    padding-top: 5rem;
  }
  .c-access-root__title {
    font-size: 3rem;
  }
  .c-access-root__wrap {
    flex-wrap: wrap;
    gap: 3rem 7.4%;
  }
  .c-access-root__wrap > div {
    width: 100%;
  }
  .c-access-root .c-access-root__right-title {
    font-size: 2.4rem;
    margin-bottom: 2rem;
  }
  .c-access-root-box__title {
    margin-bottom: 1.5rem;
  }
  .c-access-root-box__title02 {
    margin-top: 0;
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
  }
  .c-access-root .c-access-root-top {
    display: flex !important;
    flex-direction: column;
    gap: 2rem 0;
    margin-bottom: 4rem;
  }
  .c-access-root .c-access-root-top.-tabpc {
    display: none !important;
  }
  .c-access-root-box .c-table-center {
    width: 40%!important;
  }
  .access-button-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3.5rem;
  }
  .access-button {
    width: 100%;
    justify-content: space-between;
  }
  .access-button__text {
    font-size: 1.6rem;
    padding: 1.35rem 1.5rem 1.35rem 2rem;
  }

  .ly-cuisine .access-button__text{
    width: 100%;
    text-align: center;
  }
  .access-button__icon {
    width: 5rem;
    height: 3rem;
  }
  .-tabpc {
    display: none !important;
  }
  .-tabsp {
    display: block !important;
  }
  .c-access-root .c-access-root-top__title{
    margin-bottom: 1rem;
  }
}
.c-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  background-image: linear-gradient(to left, rgba(28, 31, 30, 0.6) 1px, transparent 1px);
  background-size: 5px 1px;
  background-repeat: repeat-x;
  background-position: left top;
}
.c-table.fln .c-table-tr {
  display: table-row;
}
.c-table.fln .c-table-th {
  width: auto;
}
.c-table.fln .c-table-td {
  width: auto;
}
.c-table.fln .c-table-left {
  width: 25%;
}
.c-table-tr {
  display: flex;
  background-image: linear-gradient(to left, rgba(28, 31, 30, 0.6) 1px, transparent 1px);
  background-size: 5px 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
  width: 100%;
}
.c-table-th {
  padding: 1.5rem 1rem 1.5rem 0;
  font-size: 1.5rem;
  line-height: 2;
  font-weight: bold;
  vertical-align: top;
  width: 100%;
}
.c-table-td {
  padding: 1.5rem 0;
  font-size: 1.5rem;
  line-height: 2;
  vertical-align: top;
  width: 100%;
}
.c-table-td span {
  font-size: 1.3rem;
  line-height: 1.5;
  color: rgba(28, 31, 30, 0.8);
  display: block;
  text-indent: -1em;
  padding-left: 1em;
}
.c-table-td span a {
  text-decoration: underline;
}
.c-table .wid115 {
  width: 11.5rem !important;
}
.c-table.wid15 th {
  width: 15% !important;
}
.c-table.wid20 th {
  width: 20% !important;
}
.c-table.wid22 th {
  width: 22% !important;
}
.c-table.wid25 th {
  width: 25% !important;
}
.c-table.wid28 th {
  width: 28% !important;
}
.c-table.wid30 th {
  width: 30% !important;
}
.c-table .c-table-td-block__text {
  padding-left: 1em;
}

@media screen and (max-width: 1000px) {
  .-tabpc {
    display: none !important;
  }
  .-tabsp {
    display: block !important;
  }
}
.c-faq {
  display: flex;
  gap: 0 5.5rem;
}
.c-faq .faq-side {
  min-width: 30%;
}
.c-faq .faq-side-list {
  margin-top: 4.5rem;
}
.c-faq .faq-side-list__item {
  font-size: 1.7rem;
  margin-bottom: 2rem;
}
.c-faq .faq-side-list__link {
  cursor: pointer;
  position: relative;
  display: inline-block;
  opacity: 0.4;
  transition: 0.4s;
}
.c-faq .faq-side-list__link::before {
  position: absolute;
  display: block;
  content: "";
  height: 1px;
  background: rgba(28, 31, 30, 0.7);
  bottom: -3px;
  left: 0;
  width: 0%;
  transition: 0.4s;
}
.c-faq .faq-side-list__link.-current {
  opacity: 1;
}
.c-faq .faq-side-list__link.-current::before {
  width: 100%;
}
.c-faq .faq-side-list__link:hover {
  opacity: 1;
}
.c-faq .faq-side-list__link:hover::before {
  width: 100%;
}
.c-faq .faq-list-block {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}
.c-faq .faq-list {
  background-image: linear-gradient(to left, rgba(28, 31, 30, 0.6) 1px, transparent 1px);
  background-size: 5px 1px;
  background-repeat: repeat-x;
  background-position: left top;
  width: 100%;
}
.c-faq .faq-list__item {
  position: relative;
  cursor: pointer;
  opacity: 0.5;
  padding: 2rem 3rem 3rem;
  background-image: linear-gradient(to left, rgba(28, 31, 30, 0.6) 1px, transparent 1px);
  background-size: 5px 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
  width: 100%;
  transition: 0.4s;
}
.c-faq .faq-list__item::after {
  position: absolute;
  content: "";
  display: block;
  background: url(/assets/images/icon/icon-faq-arw.png) no-repeat center center;
  background-size: contain;
  width: 1.8rem;
  height: 0.8rem;
  top: 4.2rem;
  right: 2.5rem;
  transition: 0.4s;
}
.c-faq .faq-list__item:hover {
  opacity: 1;
}
.c-faq .faq-list__item.is-active::after {
  transform: rotate(-180deg);
}
.c-faq .faq-list__question {
  display: flex;
  gap: 1.5rem;
  padding-right: 2.5rem;
}
.c-faq .faq-list__question-icon {
  font-size: 3rem;
  font-family: "Kaisei Decol", serif;
  font-weight: 400;
}
.c-faq .faq-list__question-text {
  margin-top: 0.35em;
  font-size: 2.1rem;
  line-height: 1.71;
}
.c-faq .faq-list__answer {
  display: none;
  margin-top: 3rem;
  gap: 1.5rem;
}
.c-faq .faq-list__answer-icon {
  font-size: 3rem;
  font-family: "Kaisei Decol", serif;
  font-weight: 400;
}
.c-faq .faq-list__answer-body {
  font-size: 1.5rem;
  line-height: 2;
  padding-top: 0.8rem;
}
.c-faq .faq-list__item.is-active {
  opacity: 1;
}
.c-faq .faq-list .c-button {
  margin-top: 1rem;
}
.c-faq .faq-list .c-button .c-button__text {
  font-size: 1.5rem;
}

@media screen and (max-width: 1280px){
  .ly-plan .c-faq .faq-side-list {
    margin-top: 3rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem 2.5rem;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 1000px) {
  .c-faq {
    margin-top: 0;
    display: block;
  }
  .c-faq .faq-side {
    min-width: 100%;
  }
  .c-faq .faq-side-list {
    margin-top: 3rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem 2.5rem;
    margin-bottom: 4rem;
  }
  .ly-plan .c-faq .faq-side-list {
    margin-bottom: 4rem;
  }
  .c-faq .faq-side-list__item {
    margin-bottom: 0;
  }
  .c-faq .faq-list__item {
    padding: 1.2rem 1rem 2rem;
  }
  .c-faq .faq-list__item::after {
    width: 1.6rem;
    height: 0.8rem;
    top: 3rem;
    right: 1rem;
  }
  .c-faq .faq-list__question {
    position: relative;
    display: flex;
    gap: 1.5rem;
  }
  .c-faq .faq-list__question-icon {
    font-size: 2.6rem;
  }
  .c-faq .faq-list__question-text {
    margin-top: 0.35em;
    font-size: 1.8rem;
    line-height: 1.71;
  }
  .c-faq .faq-list__answer {
    display: none;
    margin-top: 3rem;
    gap: 1.5rem;
  }
  .c-faq .faq-list__answer-icon {
    font-size: 3rem;
  }
  .c-faq .faq-list__answer-body {
    font-size: 1.5rem;
    line-height: 2;
  }
  .-tabpc {
    display: none !important;
  }
  .-tabsp {
    display: block !important;
  }
}
.ly-cookie-top {
  margin-bottom: 5rem;
}
.ly-cookie-top__title {
  font-size: 3.6rem;
}
.ly-cookie-top__body {
  margin-top: 2.5rem;
}
.ly-cookie-top__text {
  font-size: 1.5rem;
  line-height: 2;
  letter-spacing: 0.08em;
}

.cookie-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: cookie-section;
  display: grid;
  row-gap: 2.4rem;
  /* タイトル：番号をCSSで自動表示 */
}
.cookie-list__item {
  counter-increment: cookie-section;
  background: transparent;
}
.cookie-list__item + .cookie-list__item {
  margin-top: 5rem;
}
.cookie-list__title {
  display: flex;
  position: relative;
  line-height: 1.5;
  letter-spacing: 0.15em;
  font-size: 2.8rem;
  font-weight: normal;
}
.cookie-list__title-txt {
  display: block;
}
.cookie-list__title::before {
  content: counter(cookie-section) ".";
  display: inline-block;
  padding-right: 0.5em;
}
.cookie-list__body {
  margin-top: 2rem;
}
.cookie-list__text {
  font-size: 1.5rem;
  line-height: 2;
  letter-spacing: 0.08em;
}
.cookie-list__text + .cookie-list__text {
  margin-top: 2rem;
}

.cookie-list__title + .cookie-list-detail {
  margin-top: 3rem;
}

.cookie-list__body + .cookie-list-detail {
  margin-top: 3rem;
}

/* 詳細ブロック（リンク集など） */
.cookie-list-detail {
  padding: 3.5rem 5rem;
  display: grid;
  row-gap: 3rem;
  margin: 0;
  background: rgba(255, 255, 255, 0.6);
}
.cookie-list-detail__block:last-child {
  padding-bottom: 1rem;
}
.-mb0 .cookie-list-detail__block:last-child {
  padding-bottom: 0;
}
.cookie-list-detail__text {
  margin: 0;
  font-weight: normal;
  font-size: 1.5rem;
  line-height: 2;
  color: #1c1f1e;
}
.cookie-list-detail__link {
  position: relative;
  display: inline-block;
  font-size: 1.5rem;
  color: #1c1f1e;
  word-break: break-all;
  text-decoration: none;
  text-decoration: underline;
  transition: 0.4s;
}
.cookie-list-detail__link:hover {
  opacity: 0.7;
}

@media screen and (max-width: 768px) {
  .ly-cookie-top__title {
    font-size: 3rem;
  }
  .ly-cookie-top__body {
    margin-top: 2rem;
  }
  .ly-cookie-top__text {
    letter-spacing: 0.05em;
  }
  .cookie-list {
    row-gap: 0;
    /* タイトル：番号をCSSで自動表示 */
  }
  .cookie-list__item + .cookie-list__item {
    margin-top: 5rem;
  }
  .cookie-list__title {
    font-size: 2.6rem;
  }
  .cookie-list__body {
    margin-top: 2rem;
  }
  .cookie-list__text {
    font-size: 1.5rem;
    line-height: 2;
    letter-spacing: 0.05em;
  }
  .cookie-list__text + .cookie-list__text {
    margin-top: 2rem;
  }
  /* 詳細ブロック（リンク集など） */
  .cookie-list-detail {
    padding: 2rem 3rem;
    display: grid;
    row-gap: 3rem;
  }
  .-pc {
    display: none !important;
  }
  .-sp {
    display: block !important;
  }
}
.sticky {
  position: sticky;
  top: 3rem;
}

.ly-contact__body {
  margin-top: 2.5rem;
  font-size: 1.5rem;
  line-height: 2;
}

.contact-tel {
  margin-top: 8rem;
}
.contact-tel__title {
  font-size: 2.1rem;
  line-height: 1.71;
  margin-bottom: 1rem;
}
.contact-tel__body {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 1rem;
}
.contact-tel__tel {
  font-size: 3.6rem;
  line-height: 1;
}
.contact-tel__time {
  opacity: 0.5;
  font-size: 1.5rem;
}

.contactBlock {
  margin-top: 8rem;
}
.contactBlock-wrap {
  display: flex;
  gap: 2rem 5.5%;
}
.contactBlock-side {
  min-width: 30%;
}
.contactBlock-side .c-title-block {
  font-size: 3.6rem;
  left: 0.1em;
}
.contactBlock-form {
  width: 100%;
}

.contact-table {
  display: block;
  width: 100%;
}
.contact-table tr {
  padding-bottom: 3rem;
}

/* 確認画面 */
.confirmBlock .contact-table tr{
  background-image: linear-gradient(to left, rgba(28, 31, 30, 0.6) 1px, transparent 1px);
  background-size: 5px 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
.confirmBlock .contact-table-td{
  padding: 2rem 0;
}
.confirmBlock .contact-table tr{
  padding-bottom: 1rem;
}
.errWrap{
  margin-top: 3rem;
}
@media screen and (max-width: 1000px){
  .confirmBlock .contact-table-td{
    margin-top: 0;
    padding-top: 0;
  }
  .confirmBlock .contact-table tr{
    padding-bottom: 0;
  }
}

.contact-table-th {
  width: 22rem;
  font-size: 1.5rem;
  font-weight: bold;
  display: flex;
  gap: 0.5rem 1rem;
  padding-top: 1.4rem;
}
.contact-table .required {
  display: inline-block;
  font-size: 1.3rem;
  padding: 0.2rem 0.6rem;
  font-weight: bold;
  background: #2e332f;
  color: #fff;
}
.contact-table-td {
  width: 100%;
  font-size: 1.5rem;
}
.error_messe{
font-size: 1.5rem;
line-height: 2;
color: red;
}	
.contact-table-td input, .contact-table-td textarea {
  width: 100%;
  background: #e6e2d8;
  line-height: 2;
  margin-bottom: 3rem;
  padding: 1.2rem 1em;
  font-size: 1.5rem;
}
.contact-table-td textarea {
  height: 25rem;
  resize: vertical;
}
.contact-table tr:last-child textarea {
  margin-bottom: 0;
}

.confirm-table th {
  padding: 2rem 0;
}

.contactBlock-privacy {
  margin-top: 7rem;
  background: #fff;
  padding: 3.2rem 6rem 3.8rem;
}
.contactBlock-privacy__title {
  font-size: 2.1rem;
  font-weight: bold;
}
.contactBlock-privacy__body {
  margin-top: 1rem;
}
.contactBlock-privacy__text {
  font-size: 1.5rem;
  line-height: 2;
}
.contactBlock-privacy__link {
  font-size: 1.5rem;
  line-height: 2;
  text-decoration: underline;
  transition: 0.4s;
}
.contactBlock-privacy__link:hover {
  opacity: 0.7;
}

.contact-button {
  font-weight: bold;
  width: 26rem;
  margin: 5.5rem auto 0;
  line-height: 6rem;
  font-size: 1.7rem;
  background: #2e332f;
  border: solid 1px #2e332f;
  color: #fff;
  transition: 0.4s;
}

.contact-button:hover {
  opacity: 0.7;
}

.confirm-button-wp {
  margin-top: 5.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem 5rem;
}
.confirm-button-wp .contact-button {
  margin: 0;
}
.confirm-button-wp .contact-button:nth-child(1) {
	background: none;
  border: solid 1px #2e332f;
  color: #2e332f;
}


@media screen and (max-width: 1000px) {
  .contact-tel {
    margin-top: 5.5rem;
  }
  .contact-tel__title {
    font-size: 1.8rem;
  }
  .contact-tel__body {
    display: block;
  }
  .contact-tel__tel {
    font-size: 3rem;
    line-height: 1;
  }
  .contact-tel__time {
    margin-top: 1.5rem;
    margin-left: -0.5em;
  }
  .contactBlock {
    margin-top: 5rem;
  }
  .contactBlock-wrap {
    display: block;
    gap: 2rem 5.5%;
  }
  .contactBlock-side {
    min-width: 100%;
  }
  .contactBlock-side .c-title-block {
    font-size: 3rem;
    left: 0.1em;
  }
  .contactBlock-form {
    width: 100%;
  }
  .contact-table {
    margin-top: 3.5rem;
  }
  .contact-table tr {
    display: block;
    width: 100%;
    padding-bottom: 3rem;
  }
  .contact-table-th {
    width: 100%;
    font-size: 1.5rem;
    padding-top: 0;
  }
  .contact-table-td {
    display: block;
    width: 100%;
    margin: 1.4rem 0 0;
    font-size: 1.5rem;
  }
  .contact-table-td input, .contact-table-td textarea {
    line-height: 2;
    margin-bottom: 0;
    padding: 1rem 1em;
    font-size: 1.5rem;
  }
  .contact-table-td textarea {
    height: 20rem;
  }
  .contact-table tr:last-child {
    padding-bottom: 0;
  }
  .contactBlock-privacy {
    margin-top: 4rem;
    padding: 2rem 2.8rem 2.5rem;
  }
  .contactBlock-privacy__title {
    font-size: 1.8rem;
  }
  .contactBlock-privacy__body {
    margin-top: 0.5rem;
  }
  .contact-button {
    width: 26rem;
    margin: 4rem auto 0;
  }
  .-tabpc {
    display: none !important;
  }
  .-tabsp {
    display: block !important;
  }
}
/* ==========================
Video Modal – base styles
========================== */
/* 画面全体のモーダルレイヤー（初期は非表示） */
/* モーダル中のbody固定 */
body.is-fixed {
  overflow: hidden;
  height: 100vh;
}

.video-modal {
  position: fixed;
  inset: 0; /* top/right/bottom/left:0 の省略 */
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  display: flex;
  align-items: center;
}

/* 表示時（JSで .is-open を付与） */
.video-modal.is-open {
  opacity: 1;
  visibility: visible;
}

/* 背景の半透明オーバーレイ */
.video-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 31, 30, 0.95);
  z-index: 999;
}

/* ダイアログ本体 */
.video-modal__dialog {
  max-width: 1200px;
  margin: 0 auto;
  width: 88.88%;
  position: relative;
  z-index: 999;
}

/* 表示時に少し持ち上げる */
.video-modal.is-open .video-modal__dialog {
  transform: translateY(0);
}

/* 閉じるボタン（×） */
.video-modal__close {
  position: absolute;
  top: -1.7rem;
  right: -1.7rem;
  width: 3.4rem;
  border-radius: 999px;
  text-align: center;
  cursor: pointer;
  outline: none;
  z-index: 99999;
  transition: 0.4s;
}

.video-modal__close:hover,
.video-modal__close:focus {
  opacity: 0.7;
}

/* 動画の置き場＆フィット */
.video-modal__body video {
  width: 100%;
}

/* スマホで上下が窮屈な場合の微調整 */
@media (max-width: 768px) {
  .video-modal__close {
    top: -1rem;
    right: -1rem;
    width: 2rem;
    height: 2rem;
    font-size: 14px;
    font-weight: bold;
    line-height: 2rem;
  }
}
/* 動きを控えたいユーザー配慮 */
@media (prefers-reduced-motion: reduce) {
  .video-modal,
  .video-modal__dialog {
    transition: none !important;
  }
}
/* フッターサイトマップ */
.ft-sitemap{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4rem 5.5%;
  margin-bottom: 3rem;
}
.ft-tabpc-wrap{
  display: contents;
}
.-ft-tabpc{
  display: none!important;
}
.ft-sitemap-block{
  display: flex;
  flex-direction: column;
  gap: 2rem 0;
}
.ft-sitemap-item a{
  font-size: 2rem;
  /* line-height: 1.5; */
  transition: 0.3s;
  color: #ffffff;
}
.sub-item-block{
  display: flex;
  flex-direction: column;
  gap: 1rem 0;
  margin-top: 1rem;
}
.sub-item-block .sub-item-link{
  font-size: 1.5rem;
}
.ft-sitemap-small{
  display: contents;
  gap: 4rem 5.5%;
}
.ft-sitemap-small-block{
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.sitemap-small__item a{
  font-size: 1.3rem;
  letter-spacing: 0.15em;
  color: #ffffff;
  transition: 0.3s;
  opacity: 0.7;
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
  gap: 0 0.5rem;
}
.sitemap-small__item a[target=_blank]::after {
  content: "";
  display: block;
  background: url(/assets/images/icon/blank-icon.svg) no-repeat center;
  background-size: cover;
  width: 1.2rem;
  height: 1.2rem;
}
.ft-yado{
  width: 8rem;
  margin: 0 auto 3rem;
  transition: .3s;
}
@media (any-hover: hover) {
  .sitemap-small__item a:hover {
    opacity: 1;
  }
  .ft-sitemap-item a:hover{
    opacity: 0.7;
  }
  .ft-yado:hover{
    opacity: 0.7;
  }
}
@media screen and (max-width: 1000px){
  .ft-sitemap{
    justify-content: left;
    max-width: 40rem;
    margin: 0 auto 4rem;
    gap: 3rem 0;
  }
  .ft-sitemap-item{
    min-width: 20rem;
  }
  .ft-sitemap-block{
    gap: 1rem 0;
  }
  .ft-tabpc-wrap{
    display: flex;
    width: 100%;
    gap: 5.5%;
  }
  .-ft-tabpc{
    display: flex!important;
  }
  .ft-sitemap-small{
    width: 100%;
    display: flex;
  }
  .sitemap-small__item{
    min-width: 20rem;
  }
}
@media screen and (max-width: 768px){
  .ft-sitemap-item a{
    font-size: 1.8rem;
  }
  .sub-item-block .sub-item-link{
    font-size: 1.4rem;
  }
  .ft-sitemap-item{
    min-width: 16rem;
  }
  .sitemap-small__item{
    min-width: 16rem;
  }
  .ft-yado{
    margin-bottom: 2.5rem;
  }
}
/*# sourceMappingURL=main.css.map */

/* 確認画面 */
.confirmBlock .contact-table tr{
  background-image: linear-gradient(to left, rgba(28, 31, 30, 0.6) 1px, transparent 1px);
  background-size: 5px 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
  }
  .confirmBlock .contact-table-td{
  padding: 2rem 0;
  }
  .confirmBlock .contact-table tr{
  padding-bottom: 1rem;
  }
  .errWrap{
  margin-top: 3rem;
  }
  @media screen and (max-width: 1000px){
  .confirmBlock .contact-table-td{
  margin-top: 0;
  padding-top: 0;
  }
  .confirmBlock .contact-table tr{
  padding-bottom: 0;
  }
}




/* ＝＝＝＝＝＝＝＝＝＝＝＝
多言語　追記
＝＝＝＝＝＝＝＝＝＝＝＝*/
.english .c-title-block, 
.french .c-title-block{
  letter-spacing: unset;
}
.english .reserve-button__text, 
.french .reserve-button__text{
  letter-spacing: unset;
}
.english .hamburger-menu__large-link, 
.french .hamburger-menu__large-link{
  letter-spacing: unset;
}
.english .hamburger-menu__upper,
.french .hamburger-menu__upper{
  max-width: 1200px;
}
.english .hamburger-menu__large-link span,
.french .hamburger-menu__large-link span{
  font-size: 1.5rem;	
}

.english .hamburger-menu__medium-unit,
.french .hamburger-menu__medium-unit{
  flex-basis: 70rem;
  padding: 0;
}
.english .hamburger-menu__medium-link:hover,
.french .hamburger-menu__medium-link:hover {	
  opacity: 0.5;
}

.english .hamburger-menu__small-list.-lang-menu,
.french .hamburger-menu__small-list.-lang-menu{	
  padding-top: 4rem;	
  display: flex;	
  flex-wrap: wrap;	
  gap: 0 2rem;	
}


@media screen and (max-width: 768px) {
  .english .hamburger-menu__medium-unit,
  .french .hamburger-menu__medium-unit{
    flex-wrap: wrap;
    padding-bottom: 0;
  }
  .english .hamburger-menu__medium-unit .hamburger-menu__medium-list:nth-child(1),
  .french .hamburger-menu__medium-unit .hamburger-menu__medium-list:nth-child(1){
    margin-bottom: 2rem;
  }
  .english .hamburger-menu__medium-list,
  .french .hamburger-menu__medium-list{
    width: 100%;
  }
  .english .hamburger-menu__large-link span,
  .french .hamburger-menu__large-link span{
    display: block;	
    margin-top: -1rem;
  }
}

.english .booking-calendar .ui-datepicker-calendar th.ui-datepicker-week-end:first-child::before,
.french .booking-calendar .ui-datepicker-calendar th.ui-datepicker-week-end:first-child::before{
  width: 3.5rem;
  height: 3.5rem;
}
.english .booking-calendar .ui-datepicker-calendar th.ui-datepicker-week-end:last-child::before,
.french .booking-calendar .ui-datepicker-calendar th.ui-datepicker-week-end:last-child::before{
  width: 3rem;
  height: 3rem;
}
.english .ly-kv-contents__catch,
.french .ly-kv-contents__catch{
  letter-spacing: unset;
}
.english .c-access-root__title,
.french .c-access-root__title{
  letter-spacing: unset;
}
.english .ly-cuisine .detail-sec__item,
.french .ly-cuisine .detail-sec__item{
  text-indent: 0;
  padding-left: 0;
}
.english .c-access-root-box__title02,
.french .c-access-root-box__title02{
  letter-spacing: unset;
}
.english .c-table-td span,
.french .c-table-td span{
  text-indent: 0;
  padding-left: 0;
}
.english .cookie-list__title,
.french .cookie-list__title{
  letter-spacing: unset;
}

.english .sitemap-small__item a,
.french .sitemap-small__item a{
  letter-spacing: unset;
}

/* トップ　アクセス */	
.lang-access{	
  background: url(/assets/images/common/noise-bg.png);	
  background-size: 1280px;	
}	
.lang-access-bg{	
  background: url(/assets/images/en/top-access-map-pc.png);	
  background-size: 100%;	
  background-position: bottom;	
  aspect-ratio: 1280/730;	
  background-repeat: no-repeat;	
}	
.french .lang-access-bg{	
  background: url(/assets/images/fr/top-access-map-pc.png);	
  background-size: 100%;	
  background-position: bottom;	
  aspect-ratio: 1280/730;	
  background-repeat: no-repeat;	
}	
.lang-access__right{	
  padding-top: 6vw;	
  max-width: 52%;	
  padding-bottom: 7vw;	
}	
@media screen and (max-width: 1280px){	
  .lang-access-bg{	
    background-size: 1280px;	
  }	
  .english .hamburger-menu__small-item:nth-child(1),
  .french .hamburger-menu__small-item:nth-child(1){
    order: 1;
  }
  .english .hamburger-menu__small-item:nth-child(2),
  .french .hamburger-menu__small-item:nth-child(2){
    order: 3;
  }
  .english .hamburger-menu__small-item:nth-child(3),
  .french .hamburger-menu__small-item:nth-child(3){
    order: 5;
  }
  .english .hamburger-menu__small-item:nth-child(4),
  .french .hamburger-menu__small-item:nth-child(4){
    order: 2;
  }
  .english .hamburger-menu__small-item:nth-child(5),
  .french .hamburger-menu__small-item:nth-child(5){
    order: 4;
  }
}	
@media screen and (max-width: 1000px){	
  .lang-access{	
    padding: 8rem 0 3rem;	
  }	
  .lang-access-bg,
  .french .lang-access-bg{	
    background: none;	
    aspect-ratio: none;	
  }	
  .lang-access__right{	
    max-width: 100%;	
    padding: 0;	
  }	
  .lang-access-map{	
    width: 100%;	
  }	
  .english .c-table.wid20 th{
    width: 28% !important;
  }
  .french .c-table.wid20 th{
    width: 45% !important;
  }
  .english .c-table.wid22 th{
    width: 28% !important;
  }
  .french .c-table.wid22 th{
    width: 40% !important;
  }
  .french .hamburger-menu__medium-item .hamburger-menu__small-item{
    width: 100%!important;
  }
  .french .ft-sitemap-small .ft-sitemap-small-block:nth-child(1){
    width: 30%;
  }

  .french .hamburger-menu__small-item:nth-child(4),
  .french .hamburger-menu__small-item:nth-child(5){
    width: 60%;
  }
  .french .hamburger-menu__small-item:nth-child(1),
  .french .hamburger-menu__small-item:nth-child(2),
  .french .hamburger-menu__small-item:nth-child(3){
    width: 30%;
  }
}

@media screen and (max-width: 768px){
  .english .c-table.wid30 th{
    width: 45%!important;
  }
  .english .c-table.wid25 th{
    width: 32%!important;
  }

  .french .c-table.wid30 th{
    width: 50%!important;
  }
  .french .c-table.wid25 th{
    width: 44%!important;
  }
}

.english .booking-menu__booking-area-wrapper,
.french .booking-menu__booking-area-wrapper{
  max-width: 90rem;
}

.english .hamburger-menu__small-link,
.french  .hamburger-menu__small-link{
  letter-spacing: unset;
}
.french .booking-search__select-unit{
  width: 30%;
}
.english .esthe-list .esthe-box .esthe-box__details,
.french .esthe-list .esthe-box .esthe-box__details{
  text-indent: 0;
  padding-left: 0;
}
