/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
共通設定
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

@media (max-width: 989px) {
  .pc {
    display: none !important;
  }

  .sp {
    display: block !important;
  }
}

:root {
  --col-main: #000000;
  --col-gray: #808080;
  --col-accent: #b84747;
}

html {
  font-size: 62.5%;
}

html[lang="ja"] {
  font-family: "Yu Mincho", "YuMincho", "游明朝", "Hiragino Mincho ProN", serif;
}

html[lang="en"] {
  font-family: "Times New Roman", Georgia, serif;
}

html[lang="zh-hans"] {
  font-family: "SimSun", "NSimSun", "Songti SC", "Source Han Serif SC", "STSong", "SimSun", "Times New Roman", serif;
}

html[lang="zh-hant"] {
  font-family: "Songti TC", "Source Han Serif TC", "STSong", "PMingLiU", "Times New Roman", serif;
}

.text-wrap {
  max-width: 100%;
}

h2 {
  font-size: 2.8rem;
}

@media (max-width: 989px) {
  h2 {
    font-size: 2.4rem;
  }
}

p {
  font-size: 1.6rem;
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1),
    transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 989px) {
  .fade-up {
    transform: translateY(20px);
  }
}

.fade-up.is-show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 989px) {
  img {
    width: 100%;
    height: auto;
  }

  .container {
    display: block;
  }
}

@media (min-width: 990px) {
  a,
  button {
    transition: 0.6s ease;
  }

  .site-header__select,
  .site-header__language-modal-select {
    position: relative;
    text-decoration: none;
  }

  .site-header__select::after,
  .site-header__language-modal-select::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 1px;
    background-color: currentColor;

    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
  }

  .site-header__language-modal-select {
    width: fit-content;
  }

  .site-header__language-modal-select::after {
    bottom: 0;
  }

  .site-header__select:hover::after,
  .site-header__language-modal-select:hover::after {
    transform: scaleX(1);
  }

  .link-item:hover {
    background-color: #000;
    color: #fff;
    opacity: 1;
  }

  .link-item:hover svg path {
    fill: white;
    transition: 0.6s ease;
  }

  .link-item:hover::before {
    right: -28px;
    width: 40px;
    background-color: #000;
  }
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
スクロール
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.scroll-indicator {
  position: absolute;
  right: 60px;
  bottom: 40px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20x;
  color: #fff;

  opacity: 0;
  transform: translateY(16px);
  animation: scroll-bar 1.2s ease forwards;
  animation-delay: 2s;
}

@media (max-width: 989px) {
  .scroll-indicator {
    right: 8.53vw;
    bottom: 7.46vw;
  }
}

@keyframes scroll-bar {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll文字 */
.scroll-indicator__text {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  padding-bottom: 20px;
}

@media (max-width: 989px) {
  .scroll-indicator__text {
    padding-bottom: 16px;
  }
}

/* ライン */
.scroll-indicator__line {
  position: relative;
  width: 1px;
  height: 60px;
  background-color: #808080;
  overflow: hidden;
}

@media (max-width: 989px) {
  .scroll-indicator__line {
    height: 40px;
  }
}

/* 動く線 */
.scroll-indicator__line::before {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  animation: scrollLine 2.8s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    top: -100%;
  }

  50% {
    top: 0%;
  }

  100% {
    top: 100%;
  }
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
header（共通）
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 40;

  opacity: 0;
  transform: translateY(24px);
  animation: HeaderIn 1.2s ease forwards;
  animation-delay: 1.2s;
}

/* header 初期表示アニメ */
@keyframes HeaderIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== top navigation 共通 ===== */
.site-header__top-nav {
  display: flex;
  font-weight: 600;
  font-size: 1.6rem;
  color: #fff;
}

.site-header__top-nav a,
.site-header__top-nav button {
  color: inherit;
  font: inherit;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: color 0.6s ease;
}

.site-header__top-nav svg path {
  fill: currentColor;
}

/* ===== 言語モーダル ===== */

.site-header__select.language-select-pc {
  display: flex;
  gap: 5px;
  position: relative;
  align-items: center;
  color: inherit;
}

.site-header__select.language-select-sp {
  display: none;
}

.language-select svg {
  width: 9px;
  height: 6px;
  transition: 0.6s ease;
  vertical-align: middle;
}

.language-select.is-active svg {
  transform: rotate(-180deg);
}

@media (max-width: 989px) {
  .language-select-pc {
    display: none !important;
  }

  .site-header__select.language-select-sp {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
    margin: 30px 0 0;
  }

  .site-header__select.language-select-sp.is-dark {
    color: #808080;
  }

  .site-header__select.language-select-sp svg path {
    fill: white;
  }

  .site-header__select.language-select-sp.is-dark svg path {
    fill: #808080;
  }

  .language-select svg {
    width: 1em;
    height: 0.4em;
    transition: opacity 0.6s ease;
    vertical-align: middle;
  }
}

.site-header__language-modal {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
  margin-top: 12px;
  color: #fff;
}

.site-header__language-modal.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.6s ease;
}

.site-header__language-modal.is-dark {
  color: #808080;
}

.site-header.is-open .site-header__language-modal,
.site-header.is-open .site-header__select.language-select-sp.is-dark,
.site-header.is-open .site-header__select.language-select-sp.is-dark svg path {
  fill: #fff;
  color: #fff;
}

.site-header__language-modal-select {
  padding: 4px 0 1px;
  font-size: 14px;
  position: relative;
  margin-left: 16px;
}

.site-header__language-modal-select::before {
  content: "-";
  position: absolute;
  width: 20px;
  left: -10px;
}

.language-select-wrap {
  display: none;
}

@media (max-width: 989px) {
  .site-header__nav-sp .site-header__language-modal {
    display: flex;
  }

  .site-header__nav-sp .site-header__language-modal-select {
    padding: 0;
    font-size: 14px;
    position: relative;
    margin: 0;
  }

  .site-header__nav-sp .site-header__language-modal-select::before {
    content: none;
  }

  .site-header__language-modal-select + .site-header__language-modal-select::before {
    content: "/";
    position: static;
    color: inherit;
    padding: 0 4px;
  }

  .language-select-wrap {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    margin: 0 10px;
  }
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
PC（990px〜）
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
@media (min-width: 990px) {
  .site-header {
    margin: 10px 0 30px;
    padding: 20px 0;
  }

  .site-header__top-nav {
    padding: 20px 60px;
    justify-content: flex-end;
    align-items: flex-start;
    gap: clamp(2%, 40px, 40px);
  }

  /* ナビ色切り替え */
  .site-header__top-nav.is-dark {
    color: #808080;
  }

  .hamburger-wrap {
    display: none;
  }
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
SP（〜989px）
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
@media (max-width: 989px) {
  /* ===== 背景レイヤー ===== */
  .site-header::before {
    content: "";
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100svh;
    background-color: #808080;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s ease;
    z-index: -1;
  }

  .site-header.is-open::before {
    opacity: 1;
    pointer-events: auto;
  }

  /* ===== header 操作制御 ===== */

  /* 初期状態：メニューは触れない */
  .site-header__nav {
    pointer-events: none;
  }

  /* OPEN時だけ有効 */
  .site-header.is-open .site-header__nav {
    pointer-events: auto;
  }

  /* ===== nav（メニュー本体） ===== */
  .site-header__nav-sp {
    display: flex;
    height: 74px;
    justify-content: right;
    position: relative;
    z-index: 50;
  }

  .site-header__select.language-select-sp {
    position: relative;
    z-index: 60;
  }

  .site-header__nav {
    position: fixed;
    inset: 0;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition:
      transform 0.8s ease,
      opacity 0.8s ease;
  }

  .site-header.is-open .site-header__nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-header__top-nav {
    position: relative;
    z-index: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;

    padding-top: 90px;
    gap: 0;
    pointer-events: none;
    opacity: 0;
    transform: translateY(24px);
    transition:
      opacity 0.8s ease,
      transform 0.8s ease;
  }

  .site-header__top-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-header__top-nav li {
    width: 100%;
  }

  .site-header__top-nav .site-header__select {
    display: flex;
    padding: 20px 0;
    justify-content: center;
  }
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
ハンバーガー
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
@media (max-width: 989px) {
  .hamburger-wrap {
    display: none;
  }

  .hamburger-wrap.is-active {
    display: block;
    /* position: absolute; */
    margin-top: 18px;
    margin-right: 13px;
    padding: 8px 8px 3px;
    z-index: 5000;
    pointer-events: auto;
  }

  .hamburger {
    width: 32px;
    height: 27px;
    position: relative;
    cursor: pointer;
    z-index: 1001;
  }

  .hamburger span {
    position: absolute;
    width: 100%;
    transition: 0.6s;
  }

  .hamburger span:nth-child(1) {
    top: 0;
    height: 1px;
    background: #808080;
  }

  .hamburger span:nth-child(2) {
    top: 8px;
    height: 1px;
    background: #808080;
  }

  .hamburger span:nth-child(3) {
    top: 16px;
    text-align: center;
    letter-spacing: 0.12em;
    color: #808080;
  }

  /* ===== メニューオープン ===== */
  .hamburger.is-open {
    height: 38px;
  }

  .hamburger.is-open span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
    background: #fff;
  }

  .hamburger.is-open span:nth-child(2) {
    transform: translateY(-10px) rotate(-45deg);
    top: 20px;
    background: #fff;
  }

  .hamburger.is-open span:nth-child(3) {
    padding-top: 10px;
    color: #fff;
  }
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
KV
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

.kv-section {
  width: 100%;
  height: 100svh;
  position: relative;
  overflow: hidden;
  color: #fff;
  background-color: #000;
  margin-bottom: 326px;
}

@media (max-width: 989px) {
  .kv-section {
    padding-bottom: 40px;
    margin-bottom: 0;
  }
}

/* 背景（ブラー → クリア） */
.kv-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../img/kv-pc.png) no-repeat center / cover;

  z-index: 0;
  pointer-events: none;

  /* 初期状態 */
  filter: blur(18px);
  opacity: 0;
  transform: scale(1.08);

  /* ゆっくり */
  animation: kvBlurIn 2.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@media (max-width: 989px) {
  .kv-section::before {
    content: "";
    background: url(../img/kv_sp.png) no-repeat center / cover;
  }
}

.kv__container {
  position: static;
}

/* 背景アニメーション */
@keyframes kvBlurIn {
  to {
    filter: blur(0);
    opacity: 1;
    transform: scale(1);
  }
}

.site-header__logo {
  position: absolute;
  top: 48px;
  left: 60px;
  z-index: 20;

  opacity: 0;
  transform: translateY(16px);
  animation: LogoIn 1.2s ease forwards;
  animation-delay: 0.8s;
}

@media (max-width: 989px) {
  .site-header__logo {
    top: 40px;
    left: 32px;
  }

  .site-header__logo img {
    width: 80px;
    height: 179px;
  }
}

@keyframes LogoIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.kv__text-area {
  position: absolute;
  bottom: 80px;
  left: 60px;
  z-index: 20;

  opacity: 0;
  transform: translateY(16px);
  animation: kvTextIn 1.2s ease forwards;
  animation-delay: 0.9s;
}

@media (max-width: 989px) {
  .kv__text-area {
    bottom: auto;
    top: 43%;
    left: 8.53vw;
  }
}

/* テキスト表示 */
@keyframes kvTextIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.kv__text-main {
  font-size: 4rem;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.01em;
}

@media (max-width: 989px) {
  .kv__text-main {
    font-size: 2.4rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: 120%;
  }
}

.kv__text-sub {
  display: block;
  font-size: 2rem;
  line-height: 140%;
  padding-top: 9px;
  letter-spacing: 0.01em;
}

@media (max-width: 989px) {
  .kv__text-sub {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 140%;
    /* 19.6px */
    letter-spacing: 0.01em;
  }
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
About
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

.about {
  position: relative;
}

@media (max-width: 989px) {
  .about {
    padding-top: 80px;
  }
}

.about__container {
  display: flex;
  justify-content: center;
  gap: 2%;
  background: url(../img/bg_texture.png) repeat center / contain;
  background-size: 60%;
}

@media (max-width: 989px) {
  .about__container {
    display: block;
    background: none;
    position: relative;
  }

  .about__container::before {
    content: "";
    background: url(../img/bg_texture.png) repeat center / contain;
    background-size: 150%;
    width: 100%;
    height: 133vw;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
  }
}

@media (max-width: 989px) {
  .about__container {
    display: block;
  }
}

.about__text-wrap {
  padding: 100px 0 160px clamp(40px, 8vw, 120px);
  max-width: 50%;
}

@media (max-width: 989px) {
  .about__text-wrap {
    max-width: none;
    padding: 0px 11% 21px;
  }
}

.about__title {
  margin-bottom: 60px;
  font-weight: 600;
}

@media (max-width: 989px) {
  .about__title {
    margin-bottom: 40px;
  }
}

.about__photo-wrap {
  max-width: 50%;
  padding-bottom: 120px;
}

@media (max-width: 989px) {
  .about__photo-wrap {
    max-width: none;
  }
}

.about__photo-wrap picture {
  display: block;
  max-width: 720px;
  margin-top: -126px;
}

@media (max-width: 989px) {
  .about__photo-wrap picture {
    max-width: none;
    margin-top: 0;
    width: 89%;
    margin-left: auto;
  }
}

.about__photo-wrap picture img {
  width: 100%;
  height: auto;
  display: block;
}

.about__text-list > p {
  padding-bottom: 24px;
  line-height: 1.5;
}

@media (max-width: 989px) {
  .about__text-list > p {
    padding-bottom: 19px;
  }
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
News-headline
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

.news-headline {
  position: relative;
  margin-bottom: 237px;

  &::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    /* ← 上半分だけ */
    background: url(../img/bg_texture.png) repeat center / contain;
    z-index: -1;
    background-size: 60%;
    background-position: 310px 750px;
  }
}

@media (max-width: 989px) {
  .news-headline {
    content: none;
    margin-bottom: 0;

    &:before {
      content: none;
    }
  }
}

.news-headline__container {
  margin: 0 auto;
}

.news-headline__text-wrap {
  display: flex;
  flex-direction: row-reverse;
  padding: 80px 80px 0 clamp(40px, 8vw, 120px);
  background-color: #fff;
  width: 80%;
  margin-left: 0;
  gap: 4%;
}

@media (max-width: 989px) {
  .news-headline__text-wrap {
    display: block;
    padding: 80px 11% 120px;
    width: 100%;
    margin: auto;
  }
}

.news-headline__article-list {
  width: 100%;
  max-width: 1380px;
}

.news-headline__title {
  writing-mode: vertical-rl;
  letter-spacing: 0.1em;
  font-weight: 600;
}

@media (max-width: 989px) {
  .news-headline__title {
    writing-mode: horizontal-tb;
    padding-bottom: 32px;
  }
}

.news-headline__article {
  display: flex;
  padding: 30px 20px;
  gap: 3%;
  align-self: stretch;
  border-bottom: 1px solid #bababa;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.01em;
  width: 100%;
  background-color: #fff;
}

@media (max-width: 989px) {
  .news-headline__article {
    display: block;
    padding: 30px 0;
  }
}

.news-headline__time {
  color: #808080;
  flex-shrink: 0;
}

@media (max-width: 989px) {
  .news-headline__item {
    padding: 16px 0 0;
  }
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
Shop-info
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

.shop-info {
  position: relative;
}

@media (max-width: 989px) {
  .shop-info {
    padding-bottom: 32px;
  }
}

.shop-info__container {
  display: flex;
  justify-content: center;
  gap: 8%;
  background: url(../img/bg_texture.png) repeat center / cover;
  background-size: 100%;
  padding-bottom: 170px;
}

@media (max-width: 989px) {
  .shop-info__container {
    display: block;
    background: none;
    padding-bottom: 0;
  }
}

.shop-info__text-wrap {
  padding: 160px clamp(40px, 8vw, 120px) 0 0;
  max-width: 50%;
}

@media (max-width: 989px) {
  .shop-info__text-wrap {
    padding: 80px 11% 0;
    max-width: none;
    margin-top: -32px;
    position: relative;
  }

  .shop-info__text-wrap::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: url(../img/bg_texture.png) repeat center / cover;
    background-size: 150%;
    background-position: 0 -10px;
    z-index: -1;
    top: 32px;
    left: 0;
  }
}

.shop-info__title {
  margin-bottom: 60px;
  font-weight: 600;
}

@media (max-width: 989px) {
  .shop-info__title {
    margin-bottom: 48px;
  }
}

.shop-info__photo-wrap {
  max-width: 50%;
}

@media (max-width: 989px) {
  .shop-info__photo-wrap {
    max-width: none;
    position: relative;
  }

  .shop-info__photo-wrap::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 101vw;
    background: url(../img/bg_texture.png) repeat center / contain;
    background-size: 150%;
    bottom: 0;
    z-index: -1;
  }
}

.shop-info__photo-wrap picture {
  display: block;
  max-width: 720px;
  margin-top: -77px;
}

@media (max-width: 989px) {
  .shop-info__photo-wrap picture {
    margin-top: 0;
    max-width: none;
    width: 89%;
    margin-right: auto;
  }
}

.shop-info__photo-wrap picture img {
  width: 100%;
  height: auto;
  display: block;
}

.shop-info__list {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  line-height: 150%;
  letter-spacing: 0.01em;
  padding-bottom: 30px;
}

@media (max-width: 989px) {
  .shop-info__list {
    display: block;
  }

  .shop-info__list:last-of-type {
    padding-bottom: 8px;
  }
}

.shop-info__inner {
  display: flex;
  align-items: center;
}

@media (max-width: 989px) {
  .shop-info__inner {
    margin-bottom: 20px;
  }
}

.shop-info__label {
  font-weight: 800;
  width: 6em;
  flex-shrink: 0;
}

@media (max-width: 989px) {
  .shop-info__label {
    width: auto;
    padding-right: 1.5em;
  }
}

.shop-info__line {
  width: 40px;
  border-bottom: 1px solid #000;
  flex-shrink: 0;
  margin: 0 20px;
}

@media (max-width: 989px) {
  .shop-info__line {
    width: 100%;
    flex-shrink: 1;
    margin: 0;
  }
}

.shop-info__value {
  flex: 1;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
Reserve
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

.reserve {
  position: relative;
}

.reserve__container {
  background: url(../img/bg_texture.png) repeat center / cover;
  background-size: 100%;
  padding-bottom: 200px;
}

@media (max-width: 989px) {
  .reserve__container {
    padding: 80px 0 40px;
    background: url(../img/bg_texture.png) repeat center / cover;
    background-size: 150%;
  }
}

.reserve__title {
  margin-bottom: 50px;
  font-weight: 600;
  text-align: center;
}

@media (max-width: 989px) {
  .reserve__title {
    margin-bottom: 48px;
  }
}

.reserve__title-text {
  text-align: center;
  padding-bottom: 48px;
  line-height: 1.5;
}

.reserve__text-wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 989px) {
  .reserve__text-wrap {
    padding: 0 11%;
  }
}

.reserve__link-wrap {
  display: flex;
  justify-content: space-between;
  gap: 48px;
}

@media (max-width: 989px) {
  .reserve__link-wrap {
    display: block;
    padding: 0 6.4%;
  }
}

.reserve__link-list {
  border: 1px solid #000;
  width: 33.3%;
}

@media (max-width: 989px) {
  .reserve__link-list {
    width: 100%;
    margin-bottom: 24px;
  }
}

.link-item {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  gap: 8px;
  width: 100%;
  padding: 16.5px 0;
  position: relative;
}

@media (max-width: 989px) {
  .link-item {
    font-size: 1.8rem;
    padding: 17px 0;
  }
}

.link-item svg {
  display: block;
  transform: translateY(-1px);
}

.link-item:before {
  content: "";
  position: absolute;
  width: 32px;
  height: 1px;
  background: #000;
  right: -16px;
  top: 50%;
  transform: translate(0, -50%);
  transition:
    right 0.4s ease,
    width 0.4s ease;
}

.reserve__info-wrap {
  background: #fff;
  padding: 40px 40px 0;
  margin-top: 60px;
}

@media (max-width: 989px) {
  .reserve__info-wrap {
    padding: 32px 6.4% 3px;
  }

  .reserve__cancel-wrap {
    margin-top: 60px;
  }
}

.reserve__title2 {
  margin-bottom: 40px;
  font-weight: 600;
  text-align: center;
  font-size: 2.4rem;
}

@media (max-width: 989px) {
  .reserve__title2 {
    font-size: 2rem;
    margin-bottom: 32px;
  }
}

.reserve__info-list-content {
  padding-bottom: 29px;
}

.reserve__list-title {
  font-size: 1.8rem;
  line-height: 1.8;
  letter-spacing: 0.01em;
  font-weight: 600;
  padding-left: 16px;
  position: relative;
}

.reserve__list-title::before {
  content: "";
  width: 10px;
  height: 1px;
  background: #000;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}

.reserve__list-text {
  padding-top: 11px;
  line-height: 1.8;
  font-size: 1.4rem;
  padding-left: 16px;
}

.reserve__list-content-ac {
  color: #bb453f;
  font-weight: 600;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
Access
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

.access__container {
  padding: 0 0 200px;
  background: url(../img/bg_texture.png) repeat center / contain;
  background-size: 100%;
}

@media (max-width: 989px) {
  .access__container {
    padding: 80px 0;
    background-size: 150%;
  }
}

.access__text-wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 989px) {
  .access__text-wrap {
    padding: 0 11%;
  }
}

.access__title {
  margin-bottom: 50px;
  font-weight: 600;
  text-align: center;
}

.access__title-text {
  text-align: center;
  padding-bottom: 50px;
  line-height: 1.5;
}

@media (max-width: 989px) {
  .access__title-text {
    padding-bottom: 48px;
  }
}

.access__photo-wrap {
  padding-bottom: 50px;
}

.access__photo-item img {
  display: block;
  margin: 0 auto;
}

.access__link-list {
  border: 1px solid #000;
  width: 280px;
  margin: 0 auto;
}

.access__link-list .link-item {
  gap: 6px;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
footer
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

.footer {
  background: #f7f7f7;
}

.footer__img {
  width: 100%;
  height: 360px;
  background: url(../img/footer-img.png) no-repeat center / cover;
}

@media (max-width: 989px) {
  .footer__img {
    background: url(../img/footer-img_sp@2x.png) no-repeat center / cover;
  }
}

.footer__content {
  padding: 40px 40px 32px;
  display: flex;
  align-items: center;
  gap: 50px;
}

@media (max-width: 989px) {
  .footer__content {
    padding: 40px 11%;
    gap: 40px;
  }
}

@media (max-width: 989px) {
  .footer__logo {
    min-width: 65px;
    height: auto;
  }
}

.footer__address {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: 0.01em;
  padding-bottom: 20px;
}

@media (max-width: 989px) {
  .footer__address {
    padding-bottom: 14px;
    letter-spacing: 0;
  }
}

.footer__tel a {
  font-size: 2rem;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.01em;
}

.copyright {
  display: block;
  padding: 32px 40px 40px;
  text-align: right;
  font-size: 1.4rem;
  letter-spacing: 0.01em;
}

@media (max-width: 989px) {
  .copyright {
    padding: 0 0 32px;
  }
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
Global
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
body.global .about__photo-wrap {
  padding-bottom: 32px;
}

body.global .reserve__link-wrap {
  justify-content: center;
}

@media (max-width: 989px) {
  body.global .about__photo-wrap {
    padding-bottom: 32px;
  }

  body.global .about__container::before {
    height: 110vw;
  }

  body.global .shop-info {
    padding-bottom: 0;
  }

  body.global .shop-info__info-wrap {
    padding-bottom: 40px;
  }

  body.global .site-header__select.language-select-sp {
    font-size: 15px;
  }
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
Global = en
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

body.global .site-header__top-nav {
  font-weight: 500;
  font-size: 1.7rem;
}

body.global h2 {
  font-size: 3.2rem;
}

body.global .about__title,
body.global .shop-info__title,
body.global .reserve__title,
body.global .access__title,
body.global .footer__address {
  font-weight: 500;
}

body.global.en .reserve__list-text {
  font-size: 1.5rem;
}

body.global.en .reserve__title2 {
  font-size: 2.8rem;
  font-weight: 500;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
Global = cn
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

body.global.cn .en-font {
  font-family: "Times New Roman", Georgia, serif;
}
