@charset "UTF-8";
@import url(https://fonts.googleapis.com/icon?family=Material+Icons);

/*--- CSS Variables ---*/
:root {
  /* color */
  --color-primary: #1C1C1C;
  --color-secondary: #C5A059;
  --color-bg: #F9F7F2;
  --color-fg-primary: #2D2D2D;
  --color-fg-secondary: #fff;
  --color-accent: #B22D15;

  /* font */
  --font-family-base: 'Ibarra Real Nova', serif;
  --font-size-base: clamp(14px, calc(14px + (16 - 14) * ((100vw - 320px) / (1280 - 320))), 16px);
  --line-height-base: 2;
  --letter-spacing-base: 0.05em;

  /* margin, size */
  --spacing-xxs: 8px;
  --spacing-xs: 16px;
  --spacing-sm: 32px;
  --spacing-md: clamp(40px, calc(40px + (80 - 40) * ((100vw - 375px) / (1280 - 375))), 80px);
  --spacing-lg: clamp(80px, calc(80px + (120 - 80) * ((100vw - 375px) / (1280 - 375))), 120px);
  --radius-base: 4px;
  --max-width: 1280px;
  --container-width: min(90%, 1100px);

  /* modern property */
  --shadow-elevated: 0 10px 30px rgb(0 0 0 / 0.4);
  --transition-base: 0.6s ease-in-out;
  --blur-base: 12px;

  /* ヘッダーロゴ用 */
  --scroll-y: 0;
}

/*--- base ---*/
html {
  width: 100%;
  scrollbar-gutter: stable;
}
body {
  position: relative;
  width: 100%;
  margin: 0;
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--color-fg-primary);
  letter-spacing: var(--letter-spacing-base);
  background-color: var(--color-bg);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.1'/%3E%3C/svg%3E");
  overflow-x: hidden;
  animation: fadeIn 1s forwards;
}
* {
  box-sizing: border-box;
  overflow-wrap: break-word;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: var(--color-fg-primary);
  transition: opacity var(--transition-base);
}
a:link, a:visited, a:active {
  overflow: hidden;
  outline: none;
}
.pc-only {
  display: none;
}
.sp-only {
  display: inline;
}
/* PC */
@media print, screen and (min-width: 743px) {
  .pc-only {
    display: inline;
  }
  .sp-only {
    display: none;
  }
  a[href^="tel"] {
    display: inline-block;
    pointer-events: none;
    vertical-align: top;
  }
}

/*--- common ---*/
/* section */
.section {
  position: relative;
}
.container {
  width: var(--container-width);
  margin: 0 auto;
  padding: var(--spacing-md) 0;
}
body.lowerpage .container {
  padding-top: var(--spacing-xs);
}
.section-bg {
  background: var(--color-primary);
}
.section-bg-dark {
  background: var(--color-primary);
}
.section-bg-right {
  background: var(--color-bg);
}
.section-bg-blur {
  background: rgb(0 0 0 / 0);
  backdrop-filter: blur(var(--blur-base)) brightness(0.8);
}
.wrapper-animation {
  transition: opacity var(--transition-base);
}
.wrapper-animation.is-active {
  opacity: 1;
}
body.lowerpage main {
  min-height: 100vh;
  min-height: 100svh;
}
body.lowerpage {
  padding-top: 60px;
}
body:has(#header-menu.is-active) main::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    transition: opacity 0.3s;
}
main::after {
    content: "";
    opacity: 0;
}
body:has(#header-menu.is-active) main::after {
    opacity: 1;
}
/* background */
.sticky-wrapper {
  position: relative;
  width: 100%;
}
.sticky-wrapper .bg-sticky {
  position: sticky;
  inset: 0;
  width: 100%;
  height: 100vh;
  height: var(--fixed-vh, 100vh);
  min-height: 105vh;
  z-index: -1;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  will-change: height;
}
.pc-sticky {
  position: relative;
}
.pc-sticky .bg-sticky {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.bg-sticky img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
}
.sticky-wrapper .sticky-inner {
  position: relative;
  z-index: 2;
  margin-top: -100svh;
}
.section-bg-sticky, 
.hero-logo.fixed {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform, top;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.section-bg-sticky::before,
.section-bg-sticky::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.section-bg-sticky::before {
  background: rgb(0 0 0 / 0.6);
}
.section-bg-sticky::after {
  background: var(--color-primary);
  transform: scaleX(1);
  transition: transform 1s var(--transition-base);
  will-change: transform;
  z-index: 1;
}
.section-bg-sticky:nth-of-type(odd)::after {
  transform-origin: right top;
}
.section-bg-sticky:nth-of-type(even)::after {
  transform-origin: left top;
}
.section-bg-sticky.is-active::after {
  transform: scaleX(0);
  transition-delay: 0s;
}
/* title */
.section-title {
  text-align: center;
  margin-bottom: 1.5em;
  letter-spacing: calc(var(--letter-spacing-base) * 12);
  font-size: clamp(32px, calc(32px + (40 - 32) * ((100vw - 320px) / (1280 - 320))), 40px);
}
body.lowerpage .section-title {
  margin-bottom: 1em;
}
.section-title.is-active {
  animation: 0.8s fadeInBlur forwards;
}
.section-title span {
  display: block;
}
.section-bg-dark .section-title {
  color: var(--color-bg);
}
.section-title-main {
  font-weight: 400;
  color: var(--color-secondary);
}
body:not(.lowerpage) .section-title-main {
  filter: brightness(0.6);
}
.section-title-sub {
  font-size: 0.3em;
  font-weight: 400;
}
/* text */
.auto-br {
  white-space: normal;
}
.auto-br span {
  display: inline-block;
  overflow-wrap: break-word;
}
.section-text {
  margin-bottom: 2.5em;
}
body.lowerpage .section-text {
  text-align: center;
}
.section-text.is-active {
  animation: 0.5s fadeIn forwards;
}
.section-text span {
}
/* button */
.btn-container {
  width: var(--container-width);
  margin: calc(var(--spacing-md) / 1.5) auto 0;
}
.btn-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 300px;
  margin: 0 auto;
}
.btn-more {
  font-size: 16px;
  color: var(--color-fg-secondary);
  background: var(--color-secondary);
  padding: 0.25em 2em 0.15em;
  box-shadow: var(--shadow-elevated);
}
.btn-more::after {
  content: "\f46a";
  font-family: 'Material Symbols Outlined';
}
.btn-container .btn-more {
  font-size: 1.2em;
}
/* page-navi */
.pager {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(10px, calc(10px + (16 - 10) * ((100vw - 320px) / (1280 - 320))), 16px);
  gap: 0.5em;
}
.page-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-secondary);
  color: #fff;
  font-weight: 500;
  padding: 0 1em;
  border-radius: 8px;
  height: 40px;
}
.page-btn a::before,
.page-btn a::after {
  font-family: "Material Symbols Outlined";
  font-weight: 900;
}
.page-prev a::before {
  content: "\e314";
  margin-right: 0.5em;
}
.page-next a::after {
  content: "\e315";
  margin-left: 0.5em;
}
.pager li.current,
.pager li:not(.page-btn) a {
  display: block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  border-radius: 16px;
  text-align: center;
  background: var(--color-primary);
  color: #fff;
  letter-spacing: 0;
  font-size: 14px;
}
.pager li.current {
  font-weight: 600;
  pointer-events: none;
}
.pager li:not(.page-btn) a {
  opacity: 0.6;
}
/* breadcrumb */
.breadcrumb {
  overflow-x: auto;
  white-space: nowrap;
}
.breadcrumb-list li {
  display: inline-block;
  font-size: 12px;
}
.breadcrumb-list li a::after {
  content: "\f46a";
  font-family: 'Material Symbols Outlined';
  vertical-align: -0.1em;
  padding-left: 4px;
}
/* form style reset - Accessibility compliant */
select,
button {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  line-height: normal;
  outline: none;
  resize: vertical;
}
select:focus,
button:focus {
  outline: 2px solid var(--color-secondary);
}
button {
  background: none;
  border: none;
  padding: 0.5em 1em;
  cursor: pointer;
  font: inherit;
  color: inherit;
  border-radius: 4px;
}
button:focus {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}
select {
  padding: var(--spacing-xxs);
  font-size: 1rem;
  border: 1px solid var(--color-fg-primary);
  background: var(--color-bg);
}
select {
  font-size: 0.9375rem;
  text-align: center;
  vertical-align: middle;
}
select + label {
  margin: 0 var(--spacing-xxs) 0 4px;
}

/*--- video ---*/
.bg-video-wrapper {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.bg-video-wrapper::after {
  content: '';
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 0.4);
  z-index: 0;
}
.bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*--- header ---*/
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99999;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.header-inner {
  display: flex;
  align-items: center;
}
.header-tel {
  line-height: 1;
  font-size: 24px;
}
.header-tel.pc-only {
  display: none;
}
.header-tel .tel-glbl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2px;
}
.header-tel .tel-glbl::before {
  content: "\e9cd";
  font-family: 'Material Icons';
  color: var(--color-fg-secondary);
}
.header-tel a {
  color: var(--color-fg-secondary);
}
.header-btn-reserve {
  width: 70px;
  height: 44px;
  line-height: 44px;
  margin: 0;
  font-size: 12px;
  background: var(--color-accent);
  color: var(--color-fg-secondary);
  text-align: center;
  border-radius: var(--radius-base);
}
#navi-language {
  height: 44px; 
  line-height: 44px;
  position: relative;
}
.select-language {
  -webkit-appearance: none;
  appearance: none;
  background: none;
  border: none;
  color: var(--color-fg-secondary);
  padding: calc(var(--spacing-xxs) * 0.5) var(--spacing-sm) calc(var(--spacing-xxs) * 0.5) calc(var(--spacing-xxs) * 0.5);
  font-size: 11px;
  background-image: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ffffff"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 20px;
}
.select-language:focus {
  outline: none;
}
.select-language option {
  color: var(--color-fg-primary);
}
.navi-menu-list a {
  padding: 0.25em;
  color: var(--color-fg-secondary);
  position: relative;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: calc(var(--letter-spacing-base) * 5);
}
/* burger btn */
.burger-btn {
  position: relative;
  width: 48px;
  height: 48px;
  display: block;
}
.burger-btn span {
  display: block;
  position: absolute;
  left: 0;
  height: 2px;
  background-color: var(--color-fg-secondary);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: center;
}
.burger-btn span:nth-child(1) {
  top: calc(50% - 14px);
  width: 48px;
}
.burger-btn span:nth-child(2) {
  top: calc(40% + 2px); 
  width: 34px;
  right: 0;
  left: auto;
}
.burger-btn small {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 10px;
  color: var(--color-fg-secondary);
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}
.burger-btn.is-active span {
  width: 40px;
  left: 4px;
}
.burger-btn.is-active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.burger-btn.is-active span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
.burger-btn.is-active small {
  opacity: 0;
  bottom: -5px;
}

/*--- #hero ---*/
#hero {
  height: 100vh;
  height: 100svh;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
#hero.is-scrolled {
  z-index: 9999;
}
#hero-observer-trigger {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 50%;
  pointer-events: none;
  visibility: hidden;
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  z-index: 3;
  color: var(--color-fg-secondary);
  position: relative;
}
.no-transition {
  transition: none !important;
}
.hero-logo {
  width: clamp(72px, calc(72px + (110 - 72) * ((100vw - 320px) / (1280 - 320))), 110px);
  height: clamp(72px, calc(72px + (110 - 72) * ((100vw - 320px) / (1280 - 320))), 110px);
  aspect-ratio: 1 / 1;
  background: rgb(255 255 255 / 1);
  padding: var(--spacing-xxs);
  position: absolute;
  top: 0;
  left: clamp(8px, calc(8px + (16 - 8) * ((100vw - 320px) / (1280 - 320))), 16px);
  z-index: 10001;
  box-shadow: var(--shadow-elevated);
  transform: none;
  /*transition: transform 0.8s ease, top 0.8s ease, left 0.8s ease, width 0.8s ease, background 0.8s ease, opacity 0.5s ease;*/
  transition: top 0.5s ease, left 0.5s ease, background 0.8s ease, opacity 0.8s ease;
  will-change: top, left;
}
body:not(.lowerpage) .hero-logo.is-initial {
  width: auto;
  height: auto;
  background: rgb(255 255 255 / 0.5);
  top: 35vh;
  left: 50%;
  transform: translate(-50%, calc((var(--scroll-y) * -1px) - 50%));
  transition: none;
}
body:not(.lowerpage):not(.is-ready) .hero-logo {
  visibility: hidden;
  opacity: 0;
}
body:not(.lowerpage).is-ready .hero-logo {
  visibility: visible;
  opacity: 1;
  animation: 0.5s fadeIn forwards;
}
.hero-logo-spacer {
  width: 80%;
  max-width: 80%;
  max-height: 45vh;
  max-height: 45dvh;
  margin: 0 auto var(--spacing-sm);
  aspect-ratio: 1;
  pointer-events: none;
  visibility: hidden;
}
.hero-logo a {
  display: block;
  height: 100%;
}
.hero-logo a img {
  image-rendering: -webkit-optimize-contrast;
  transform: translateZ(0);
  backface-visibility: hidden;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hero-text {
  font-size: clamp(14px, calc(14px + (18 - 14) * ((100vw - 320px) / (1280 - 320))), 18px);
  letter-spacing: calc(var(--letter-spacing-base) * 4);
  font-weight: 400;
}
.hero-text > span {
  display: block;
  font-weight: 600;
  font-size: 1.5em;
  margin-bottom: 1em;
  letter-spacing: calc(var(--letter-spacing-base) * 10);
}
.scrolldown {
  position: absolute;
  bottom: var(--spacing-xxs);
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.scrolldown::after {
  content: "";
  width: 1px;
  height: 48px;
  background: var(--color-fg-secondary);
  animation: scrollLine 2.5s cubic-bezier(1, 0, 0, 1) infinite;
  transform-origin: top;
}
.scrolldown span {
  font-size: 12px;
}
@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  30% {
    transform: scaleY(1);
    transform-origin: top;
  }
  31% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  60% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
/*--- TOP ---*/
/* #top-topics */
#top-topics {
  padding: var(--spacing-md) 0 calc(var(--spacing-md) * 1.5);
}
.topics-slider {
  overflow: hidden;
  position: relative;
}
.swiper-wrapper {
  display: flex;
  margin-bottom: calc(var(--spacing-xs) * 1.5);
}
.topics-slider .swiper-slide {
  overflow: hidden;
  height: auto;
  display: flex;
  flex-direction: column;
}
.topic-slide-inner {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  padding: var(--spacing-xs) var(--spacing-xs) calc(var(--spacing-md) * 1.5);
  background: #fff;
  position: relative;
  transform: scale(0.95);
  opacity: 0.4;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1),
  opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.topics-slider .swiper-slide-active .topic-slide-inner {
  transform: scale(1);
  opacity: 1;
}
.topic-image-wrapper {
  width: 100%;
  aspect-ratio: 1.91 / 1;
  overflow: hidden;
  margin-bottom: var(--spacing-sm);
}
.topic-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.topic-title,
.topic-text {
  padding: 0 var(--spacing-xxs);
}
.topic-title {
  font-size: clamp(16px, calc(16px + (18 - 16) * ((100vw - 320px) / (1280 - 320))), 18px);
  margin-bottom: 0.5em;
  line-height: 1.6;
}
.topic-text {
  font-size: clamp(14px, calc(14px + (16 - 14) * ((100vw - 320px) / (1280 - 320))), 16px);
}
.topic-slide-inner .btn-wrapper {
  position: absolute;
  bottom: var(--spacing-xs);
  right: var(--spacing-xs);
}
.swiper-pagination {
  position: static;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #ccc;
  opacity: 1;
  margin: 0 !important;
  border-radius: 4px;
  transition: width 1s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s ease;
}
.swiper-pagination-bullet-active {
  width: 24px;
  background: var(--color-secondary);
  border-radius: 4px;
}
.swiper-button-next svg,
.swiper-button-prev svg {
    display: none;
}
.swiper-button-next,
.swiper-button-prev {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--color-fg-secondary);
    filter: drop-shadow(0 0 5px rgb(0 0 0 / 1));
    transform: scale(0.8);
    top: calc(50% - 16px) !important;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  font-family: 'Material Symbols Outlined';
  font-size: 24px;
  color: var(--color-fg-secondary);
  text-align: center;
}
.swiper-button-next::after {
  content: "\e5e1";
}
.swiper-button-prev::after {
  content: "\e2ea";
}
/* topics-slider - slide under 2 */
.topics-slider.is-disabled {
  width: var(--container-width);
  margin: 0 auto;
}
.topics-slider.is-disabled .swiper-wrapper {
  display: block;
}
.topics-slider.is-disabled .topic-slide-inner {
  transform: none;
  opacity: 1;
}
.topics-slider.is-disabled .swiper-button-next,
.topics-slider.is-disabled .swiper-button-prev,
.topics-slider.is-disabled .swiper-pagination {
    display: none;
}
/* #top-introduction */
#top-introduction {
  color: var(--color-fg-secondary);
  background: rgb(0 0 0 / 0.5);
}
#top-introduction .sticky-inner {
  padding: calc(var(--spacing-lg) + 60px) 0 var(--spacing-lg);
}
#top-introduction .bg-sticky img {
  object-position: right center;
}
.intro-catchcopy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-md);
  gap: var(--spacing-sm);
}
.intro-catchcopy.is-active {
  animation: 0.5s fadeInBlur forwards;
}
.intro-catchcopy-main {
  font-size: clamp(32px, calc(32px + (48 - 32) * ((100vw - 320px) / (1280 - 320))), 48px);
  writing-mode: vertical-rl;
  line-height: 2.5;
  letter-spacing: calc(var(--letter-spacing-base) * 10);
  margin-right: var(--spacing-sm);
}
.intro-catchcopy-main::after {
  content: "";
  display: inline-block;
  vertical-align: 0.1em;
  width: 1px;
  height: 2.5em;
  margin-top: 0.5em;
  background: var(--color-fg-secondary);
}
.intro-catchcopy-main strong {
  font-size: 1.6em;
  line-height: var(--line-height-base);
  position: relative;
  display: inline-block;
  padding: 0.8em 0 0.5em;
  margin-bottom: 0.4em;
}
.intro-catchcopy-main strong span {
  display: inline-block;
  opacity: 0;
  margin-left: 2px;
}
.intro-catchcopy-main strong span.is-active {
  animation: 1s 0.5s fadeInBlur forwards;
}
.intro-catchcopy-main strong::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10px;
  width: 0.5em;
  height: 0.5em;
  border-top: 1px solid var(--color-fg-secondary);
  border-left: 1px solid var(--color-fg-secondary);
}
.intro-catchcopy-main strong::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -2px;
  width: 0.5em;
  height: 0.5em;
  border-bottom: 1px solid var(--color-fg-secondary);
  border-right: 1px solid var(--color-fg-secondary);
}
.intro-catchcopy-sub {
  font-size: clamp(14px, calc(14px + (24 - 14) * ((100vw - 320px) / (1280 - 320))), 24px);
  font-weight: 400;
  letter-spacing: calc(var(--letter-spacing-base) * 15);
}
.intro-contents {
}
.intro-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}
.intro-list-inner {
  opacity: 0;
}
.intro-list.is-active {
  opacity: 1;
}
.intro-list.is-active .intro-list-inner {
  animation: 0.8s fadeInBlurRight forwards;
}
.intro-list.is-active .intro-list-inner:nth-of-type(2) {
  animation-delay: 0.7s;
  margin-left: 2em;
}
.intro-list.is-active .intro-list-inner:nth-of-type(3) {
  animation-delay: 1.4s;
  margin-left: 4em;
}
.intro-list-inner dt {
  font-size: clamp(18px, calc(18px + (32 - 18) * ((100vw - 320px) / (1280 - 320))), 32px);
  font-weight: 600;
  letter-spacing: calc(var(--letter-spacing-base) * 5);
  animation: glow 3s ease-in-out 2 forwards;
}
.intro-list-inner dt::before {
  content: "";
  display: inline-block;
  width: 2em;
  height: 1px;
  background: var(--color-fg-secondary);
  vertical-align: 0.3em;
  margin-right: 0.5em;
}
.intro-list-inner dd {
  margin-left: 1em;
}
/* .top-section-menu - common */
.top-section-menu {
  margin-top: -1px;
}
.top-section-menu .sticky-inner {
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
  position: relative;
  padding-bottom: var(--spacing-lg);
  width: 100%;
}
.top-menu-text .section-text {
  width: var(--container-width);
  margin: 0 auto;
  padding: 2em 2.5em;
  background: rgb(255 255 255 / 0.8);
  backdrop-filter: blur(2px);
  box-shadow: var(--shadow-elevated);
  margin-bottom: var(--spacing-md);
}
.top-menu-images {
  overflow: hidden;
  position: relative;
  margin-bottom: var(--spacing-sm);
  transition: opacity var(--transition-base);
}
.top-menu-images.is-active {
  opacity: 1;
}
.top-menu-images .swiper-slide {
  filter: brightness(0.3);
  transition: filter 1s cubic-bezier(0.25, 1, 0.5, 1);
}
.top-menu-images .swiper-slide.swiper-slide-active {
  filter: brightness(1);
}
.top-menu-images-block {
  display: grid;
}
#top-drink .top-menu-images-block {
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
}
#top-drink .top-menu-images-block div:nth-child(1) {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#top-drink .top-menu-images-block div:nth-child(2),
#top-drink .top-menu-images-block div:nth-child(3) {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#top-space .top-menu-images-block {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
}
.top-menu-images-block div {
  opacity: 0;
  filter: blur(var(--blur-base));
  transform: translateY(-10px);
  transition: all var(--transition-base);
}
.top-menu-images-block.is-active div {
  opacity: 1;
  filter: none;
  transform: translateY(0);
}
.top-menu-images-block.is-active div:nth-child(2) {
  transition-delay: 0.5s;
}
.top-menu-images-block.is-active div:nth-child(3) {
  transition-delay: 1s;
}
body:not(.lowerpage) .top-section-menu .section-title-main {
  filter: none;
}
.top-section-menu .section-title * {
  color: var(--color-fg-secondary);
  text-shadow: 0 0 5px rgb(0 0 0 / 1), 0 0 10px rgb(0 0 0 / 0.5), 0 0 10px rgb(0 0 0 / 0.5);
}
#top-space .bg-sticky img {
  object-position: 40% center;
}
/* #top-blog */
#top-blog {
  position: relative;
}
#top-blog::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgb(0 0 0 / 0.8), transparent);
  position: absolute;
  inset: 0;
  z-index: -1;
}
#top-blog .section-title {
  color: var(--color-fg-secondary);
}
.journal-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: var(--spacing-sm);
  gap: var(--spacing-xxs);
  filter: drop-shadow(var(--shadow-elevated));
}
.journal-wrapper.is-active {
  opacity: 1;
}
.journal-content {
  opacity: 0;
  position: relative;
  transition: opacity 0.5s ease-in-out;
  overflow: hidden;
}
.journal-wrapper.is-active .journal-content {
  opacity: 1;
}
.journal-wrapper.is-active .journal-content:nth-of-type(2) {
  transition-delay: 0.3s;
}
.journal-wrapper.is-active .journal-content:nth-of-type(3) {
  transition-delay: 0.6s;
}
.journal-wrapper.is-active .journal-content:nth-of-type(4) {
  transition-delay: 0.9s;
}
.journal-wrapper.is-active .journal-content:nth-of-type(5) {
  transition-delay: 1.2s;
}
.journal-wrapper.is-active .journal-content:nth-of-type(6) {
  transition-delay: 1.5s;
}
.journal-wrapper.is-active .journal-content:nth-of-type(7) {
  transition-delay: 1.8s;
}
.journal-wrapper.is-active .journal-content:nth-of-type(8) {
  transition-delay: 2.1s;
}
.journal-wrapper.is-active .journal-content:nth-of-type(9) {
  transition-delay: 2.4s;
}
.journal-content .journal-content-inner {
  display: block;
  aspect-ratio: 1;
}
.journal-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 0;
  pointer-events: none;
}
.journal-info {
  font-size: clamp(14px, calc(14px + (16 - 14) * ((100vw - 320px) / (1280 - 320))), 16px);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background: rgb(0 0 0 / 0.8);
  padding: clamp(8px, calc(8px + (16 - 8) * ((100vw - 320px) / (1280 - 320))), 16px) clamp(8px, calc(8px + (16 - 8) * ((100vw - 320px) / (1280 - 320))), 16px) clamp(0px, calc(0px + (8 - 0) * ((100vw - 320px) / (1280 - 320))), 8px);
}
.journal-info * {
  color: var(--color-fg-secondary);
}
.journal-title {
  font-size: clamp(12px, calc(12px + (16 - 12) * ((100vw - 320px) / (1280 - 320))), 16px);
  line-height: 1.6;
  min-height: 3.2em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.journal-date {
  display: block;
  font-size: 0.8em;
}
.btn-journal-category {
  font-size: clamp(12px, calc(12px + (14 - 12) * ((100vw - 320px) / (1280 - 320))), 14px);
  background: #817b77;
  color: var(--color-fg-secondary);
  text-align: center;
  line-height: 1.4;
  padding: 0.3em 0.75em 0.15em;
}
body:not(.article) .btn-journal-category {
  display: block;
  position: absolute;
  top: var(--spacing-xxs);
  left: var(--spacing-xxs);
}
body.lowerpage .journal-content {
  background: var(--color-fg-secondary);
  padding: var(--spacing-xxs);
}
body.lowerpage .journal-info {
  width: calc(100% - calc(var(--spacing-xxs) * 2));
  margin: 0 auto;
  bottom: var(--spacing-xxs);
}
/* cta */
.cta {
  text-align: center;
  padding-bottom: var(--spacing-md);
}
.cta.animation.is-active {
  opacity: 1;
  animation: 0.5s fadeInBlur;
}
.cta .container {
  background: rgb(255 255 255 / 0.8);
  backdrop-filter: blur(var(--blur-base));
  padding: var(--spacing-sm) var(--spacing-xs) var(--spacing-md);
  box-shadow: var(--shadow-elevated);
  overflow: hidden;
}
body.lowerpage .cta .container {
  max-width: 720px;
}
.cta-wrapper {
  width: min(100%, 640px);
  margin: 0 auto;
}
.cta-wrapper + .cta-wrapper {
  margin-top: var(--spacing-sm);
}
.section-title-cta {
    display: block;
    letter-spacing: calc(var(--letter-spacing-base) * 10);
    margin-bottom:  var(--spacing-md);
}
.section-title-cta span:not(.section-title-cta-sub) {
  font-size: clamp(24px, calc(24px + (48 - 24) * ((100vw - 320px) / (1280 - 320))), 48px);
  display: inline-block;
  transform: translateY(-80%);
  opacity: 0;
  transition: 
      transform 1.0s ease,
      opacity 1.0s ease;
  transition-delay: calc(var(--i) * 0.05s);
}
.section-title-cta.is-active span:not(.section-title-cta-sub) {
    transform: translateY(0);
    opacity: 1;
}
span.section-title-cta-sub {
  display: block;
  opacity: 0;
  transition: 0.8s opacity 1s ease;
}
.section-title-cta.is-active span.section-title-cta-sub {
  opacity: 1;
}
span.section-title-cta-sub::before {
  content: "";
  display: block;
  width: 25%;
  height: 1px;
  margin: 0 auto var(--spacing-xxs);
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left top;
  transition: 0.8s transform 1s ease;
}
.section-title-cta.is-active span.section-title-cta-sub::before {
  transform: scaleX(1.0);
}
.cta-reserve {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xs);
}
a.cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: var(--spacing-xs) var(--spacing-xxs);
  color: var(--color-fg-secondary);
  aspect-ratio: 1;
}
.cta-tel {
  background: var(--color-primary);
}
.cta-web {
  background: var(--color-accent);
  position: relative;
  overflow: hidden;
}
.cta-inner h3 {
  width: 100%;
  font-size: clamp(14px, calc(14px + (32 - 14) * ((100vw - 320px) / (1280 - 320))), 32px);
  line-height: 1.6;
}
.cta-inner h3 span {
  display: block;
  width: fit-content;
  margin: var(--spacing-xxs) auto;
  font-size: 0.8em;
  background: var(--color-bg);
  border-radius: 100px;
  line-height: 1.2;
  padding: 4px 1em 2px;
}
.cta-inner.cta-tel h3 span {
  color: var(--color-primary);
}
.cta-inner.cta-web h3 span {
  color: var(--color-accent);
  margin-top: 0;
}
.cta-inner h3::before {
  display: block;
  text-align: center;
  font-family: 'Material Symbols Outlined';
  font-weight: 400;
  font-size: clamp(40px, calc(40px + (48 - 40) * ((100vw - 320px) / (1280 - 320))), 48px);
  margin-bottom: 0;
  line-height: 1;
}
.cta-tel h3::before {
  content: "\e61d";
}
.cta-web h3::before {
  content: "\e614";
}
.cta-note {
  font-size: clamp(12px, calc(12px + (16 - 12) * ((100vw - 320px) / (1280 - 320))), 16px);
}
.cta-link {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}
.cta-link a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xxs);
  padding: var(--spacing-xs) var(--spacing-xxs);
  color: var(--color-fg-secondary);
  font-size: clamp(12px, calc(12px + (16 - 12) * ((100vw - 320px) / (1280 - 320))), 16px);
}
.cta-link a span.material-symbols-outlined {
  font-size: 36px;
}
.cta .cta-link a span.material-symbols-outlined {
  height: 32px;
}
.cta-instagram {
  position: relative;
  z-index: 1;
}
.cta-instagram::before,
.cta-instagram::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.cta-instagram::before{
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
}
.cta-instagram::after {
  background: linear-gradient(15deg, #ffdb2c, rgb(249, 118, 76) 25%, rgba(255, 77, 64, 0) 50%) no-repeat;
}
.cta-instagram img {
  width: 32px;
}
.cta-tabelog {
  background: #ff9600;
}
.cta-hotpepper {
  background: #E73820;
}
.cta-link a.cta-instagram {
  flex-direction: row;
}
.cta-link a.cta-tabelog,
.cta-link a.cta-hotpepper {
  gap: 0;
  line-height: 1.4;
  flex-direction: row;
}
.cta-link-brand {
  font-size: 1.1em;
  font-weight: 600;
}
/* #top-information */
#top-information {
  background-color: var(--color-bg);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.1'/%3E%3C/svg%3E");
}
#top-information .section-title-main {
  filter: none;
}
#top-information .section-title-main {
  letter-spacing: calc(var(--letter-spacing-base) * 6);
}
.infomation-logo {
  text-align: center;
  font-size: clamp(16px, calc(16px + (20 - 16) * ((100vw - 320px) / (1280 - 320))), 20px);
  margin-bottom: var(--spacing-md);
  letter-spacing: calc(var(--letter-spacing-base) * 10);
}
.infomation-logo img {
  width: min(80%, 320px);
  margin: 0 auto var(--spacing-sm);
}
.infomation-logo.is-active {
  animation: 0.8s fadeInBlur forwards;
}
.information-wrapper.is-active {
  animation: 0.8s fadeInUp forwards;
}
.map-container {
  position: relative;
  width: 100%;
  margin: 0 auto var(--spacing-xxs);
  line-height: 0;
}
.map-container::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.5' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.1'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  background-color: rgba(252, 250, 242, 0.1);
}
.map-container iframe {
  width: 100%;
  height: 240px;
  filter: saturate(90%) brightness(110%);
}
.link-map {
  text-align: right;
  font-size: 14px;
  width: min(100%, 640px);
  margin: 0 auto var(--spacing-md);
}
.link-map a {
  color: #1a73e8;
  font-weight: 600;
  text-decoration: underline;
}
.link-map span {
  font-size: 20px;
  margin-right: 0.1em;
  vertical-align: -0.2em;
}
.information-list {
  width: min(100%, 640px);
  margin: 0 auto;
  text-align: center;
}
.information-list dt {
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--spacing-xxs);
}
.information-list dt::after {
  content: "";
  display: block;
  background: var(--color-primary);
  opacity: 0.5;
  width: 1px;
  height: 2em;
  margin: calc(var(--spacing-xxs) * 0.5) auto;
}
.information-list dd {
  margin-bottom: var(--spacing-md);
}
.payment {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xxs);
  margin: var(--spacing-xs) 0;
}
.payment li img {
  height: 32px;
  width: auto;
}
.information-note {
  font-size: 0.9em;
  font-weight: 600;
}

/*--- lowerpage ---*/
/* lower - common */
.title-slider {
  height: 300px;
  overflow: hidden;
  padding-bottom: var(--spacing-sm);
}
.title-slider .swiper-wrapper {
  will-change: transform;
    transition-timing-function: ease-out;
}
.title-slider .swiper-slide {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  width: 80%;
  filter: brightness(0.5);
  transition: filter var(--transition-base);
  position: relative;
}
.title-slider .swiper-slide.swiper-slide-active {
  filter: brightness(1);
}
.title-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0);
}
.title-slider-text {
  writing-mode: vertical-rl;
  height: 100%;
  font-size: clamp(14px, calc(14px + (20 - 14) * ((100vw - 320px) / (1280 - 320))), 20px);
  text-align: left;
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(to bottom, rgb(0 0 0 / 0.9), rgb(0 0 0 / 0.5), rgb(0 0 0 / 0));
  padding: 0.75em 1em;
  color: var(--color-fg-secondary);
  text-shadow: var(--shadow-elevated), var(--shadow-elevated), var(--shadow-elevated);
  will-change: opacity, transform;
  transform: translateZ(0);
  backface-visibility: hidden;
  opacity: 1 !important;
  visibility: visible !important;
}
.title-slider-text span {
  text-combine-upright: all;
  font-size: 1.1em;
  vertical-align: 0.15em;
}
/* lower - menu */
.menu-category {
  text-align: center;
  font-size: clamp(18px, calc(18px + (24 - 18) * ((100vw - 320px) / (1280 - 320))), 24px);
  letter-spacing: calc(var(--letter-spacing-base) * 12);
  margin: calc(var(--spacing-sm) * 1.5) 0;
}
.menu-category::before {
  content: "\e39e";
  font-family: 'Material Symbols Outlined';
  font-weight: 400;
  vertical-align: -0.15em;
}
.menu-category.is-active {
  animation: 1s fadeInBlurRight forwards;
}
.menu-wrapper + .menu-wrapper {
  margin-top: var(--spacing-lg);
}
.menu-inner {
  margin-bottom: var(--spacing-sm);
}
.menu-inner.is-active {
  animation: 1s fadeInUp forwards;
}
.menu-image {
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.menu-info {
  padding: 1em 0;
}
.menu-title {
  font-size: clamp(16px, calc(16px + (20 - 16) * ((100vw - 320px) / (1280 - 320))), 20px);
  margin-bottom: 1em;
  line-height: 1.6;
}
.menu-title::before {
  content: "";
  display: inline-block;
  width: 1.5em;
  height: 1px;
  background: var(--color-primary);
  vertical-align: 0.35em;
  margin-right: 0.35em;
}
.menu-price-wrapper {
  font-size: 20px;
  text-align: right;
  line-height: 1.4;
}
.menu-price {
  display: block;
  font-size: clamp(12px, calc(12px + (14 - 12) * ((100vw - 320px) / (1280 - 320))), 14px);
}
.price-num {
  font-size: 1.4em;
  margin: 0 0.1em 0 0.25em;
}
/* lower - course */
.menu-text-container {
  position: relative;
  max-height: 10.8em;
  overflow: hidden;
  margin-bottom: var(--spacing-sm);
  transition: max-height var(--transition-base);
  -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}
.menu-text-container.is-open {
  max-height: 5000px;
  -webkit-mask-image: none;
  mask-image: none;
}
.btn-menu-more {
  margin: 0 auto;
  background: var(--color-primary);
  font-size: 14px;
}
.btn-menu-more::after {
  display: none;
}
.btn-menu-more::before {
  content: "\e69b";
  font-family: 'Material Symbols Outlined';
  margin-right: 0.5em;
  transition: transform var(--transition-base);
}
.menu-text-container.is-open + .btn-menu-more::before {
 transform: rotate(180deg);
}
/* lower - drink */
#page-drink .menu-category {
  margin-bottom: var(--spacing-xs);
}
#page-drink .menu-inner {
  margin-bottom: var(--spacing-xs);
}
#page-drink .menu-title {
  font-size: clamp(14px, calc(14px + (18 - 14) * ((100vw - 320px) / (1280 - 320))), 18px);
  margin-bottom: 0.5em;
}
#page-drink .menu-text {
  font-size: clamp(12px, calc(12px + (14 - 12) * ((100vw - 320px) / (1280 - 320))), 14px);
}
#page-drink .menu-info {
  padding-bottom: 0;
}
/* lower - space */
.menu-list div {
  display: flex;
  align-items: flex-start;
  gap: 1em;
  line-height: 1.6;
}
.menu-list div + div {
  margin-top: 0.75em;
}
.menu-list dt {
  width: 5em;
  font-weight: 600;
}
.menu-list dd {
  width: calc(100% - 5em);
}
/* lower - blog */
.journal main {
  margin-top: var(--spacing-sm);
}
#page-blog::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
  background-image: url('../images/bg_blog.webp');
  background-repeat: no-repeat;
  background-position: 40% 50%;
  background-size: cover;
  z-index: -1;
}
.journal:not(.article) .section-title {
  margin-bottom: 1.5em;
}
.journal .journal-wrapper {
  margin-bottom: var(--spacing-md);
}
.journal .journal-content {
}
.journal .journal-content:first-child {
    grid-column: 1 / 3;
}
/* common - article */
.article-wrapper {
  margin: var(--spacing-xs) auto var(--spacing-md);
}
.journal.article .section-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, var(--color-secondary), transparent);
  margin: var(--spacing-xxs) 0;
}
.article-wrapper.is-active {
  animation: 0.5s fadeInBlur forwards;
}
body.lowerpage.article .section-title {
  margin-bottom: 0.25em;
}
.article .section-title-main {
  font-size: clamp(18px, calc(18px + (20 - 18) * ((100vw - 320px) / (1280 - 320))), 20px);
  text-align: left;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: calc(var(--letter-spacing-base) * 5);
}
.article .journal-info {
  position: static;
  background: none;
  padding: 0;
  backdrop-filter: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--spacing-xs);
  margin-bottom: var(--spacing-xs);
}
.article .journal-date {
  color: var(--color-fg-primary);
  font-size: 14px;
}
.article .btn-journal-category {
  margin: 0;
}
.article-image {
  margin-bottom: var(--spacing-sm);
  box-shadow: var(--shadow-elevated);
}
.journal .btn-more {
  background: var(--color-primary);
}
/* lower - news */
#page-news::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
  background-image: url('../images/bg_news.webp');
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  z-index: -1;
}
/* lower - sitepolicy */
#page-sitepolicy .section-title {
  letter-spacing: calc(var(--letter-spacing-base) * 5);
}
#page-sitepolicy .container {
  max-width: 800px;
}
.policy-content {
  counter-reset: policy-counter;
}
.policy-content h3 {
  font-size: clamp(16px, calc(16px + (18 - 16) * ((100vw - 320px) / (1280 - 320))), 18px);
  display: flex;
  align-items: baseline;
}
.policy-content h3::before {
  counter-increment: policy-counter;
  content: counter(policy-counter) ". ";
  margin-right: 0.5em;
}
.policy-content p + h3 {
  margin-top: 1.5em;
}
.policy-content p {
  font-size: clamp(14px, calc(14px + (16 - 14) * ((100vw - 320px) / (1280 - 320))), 16px);
  padding-left: 1.5em;
}

/*--- footer ---*/
.footer {
  background: var(--color-primary);
}
.footer .container {
  position: relative;
}
body.lowerpage .footer .container {
  padding-top: var(--spacing-md);
}
.footer-logo a {
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-fg-secondary);
  font-size: clamp(16px, calc(16px + (24 - 16) * ((100vw - 320px) / (1280 - 320))), 24px);
  letter-spacing: calc(var(--letter-spacing-base) * 5);
  gap: var(--spacing-xs);
  margin: 0 auto var(--spacing-md);
  color: var(--color-fg-secondary);
}
.footer-logo a {
}
.footer-logo img {
  width: clamp(36px, calc(36px + (48 - 36) * ((100vw - 320px) / (1280 - 320))), 48px);
}
.footer-cta {
  width: min(80%, 300px);
  display: flex;
  flex-direction: row;
  gap: var(--spacing-xs);
  justify-content: center;
}
.footer .footer-cta.cta-link a {
  width: 72px;
  height: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  text-align: center;
  aspect-ratio: 1;
  padding: var(--spacing-xxs);
  line-height: 1.2;
  border-radius: var(--radius-base);
}
.footer .footer-cta.cta-link a span.material-symbols-outlined {
  margin-bottom: calc(var(--spacing-xxs) / 2);
}
.footer .footer-cta.cta-link a span.material-symbols-outlined,
.footer .footer-cta.cta-link a span.cta-link-brand {
  margin-right: 0;
}
.footer .cta-hotpepper span.material-symbols-outlined {
  font-size: 24px;
}
.footer-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xxs);
  padding: var(--spacing-xs) clamp(16px, calc(16px + (32 - 16) * ((100vw - 320px) / (1280 - 320))), 32px);
}
.footer-info * {
  color: var(--color-fg-secondary);
  font-size: 12px;
  text-align: center;
  line-height: 1;
  padding: calc(var(--spacing-xxs) / 4);
}
.copyright,
.copyright a {
  padding: 0.25em;
}
.link-policy {
  border-left: 1px solid;
  padding-left: var(--spacing-xs);
}
#pagetop {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  bottom: var(--spacing-xs);
  right: var(--spacing-xs);
  z-index: 9998;
  transition: opacity 0.5s cubic-bezier(0.33, 1, 0.68, 1), visibility 0.5s, bottom 0.8s ease;
}
#pagetop.is-visible {
  opacity: 1;
  visibility: visible;
}
#pagetop.is-raised {
    bottom: calc(var(--spacing-xs) + 20px);
}
#pagetop a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--color-secondary);
  box-shadow: var(--shadow-elevated);
}
#pagetop a span {
  color: var(--color-fg-secondary);
  font-size: 56px;
}

/* 横長のviewport用 */
@media (orientation: landscape) {
  body:not(.lowerpage) .hero-logo.is-initial {
    width: auto; 
    height: 41vh;
    height: 41dvh;
    max-width: 80%;
    aspect-ratio: 1 / 1;
    padding: var(--spacing-xs);
  }
  #header-menu.is-active {
    overflow-y: scroll;
  }
}
/* SP */
@media print, screen and (max-width: 742px) {
  /*--- header ---*/
  .header {
    height: 60px;
    gap: var(--spacing-xxs);
    padding: var(--spacing-xxs);
  }
  .header.is-scrolled,
  body.lowerpage .header {
    background: var(--color-primary);
  }
  #header-menu {
    position: fixed;
    inset: 0;
    opacity: 0;
    width: calc(100% - 64px);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgb(0 0 0 / 0.8);
    transform: translateX(-100%);
    box-shadow: var(--shadow-elevated);
    transition: transform 0.5s ease, opacity 0.5s ease;
    z-index: 10002;
    overflow-y: auto;
  }
  #header-menu.is-active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
  }
  .navi-menu-list {
    margin: var(--spacing-md) 0 var(--spacing-sm);
  }
  .navi-menu-list li {
    position: relative;
    display: flex;
    align-items: center;
    gap: calc(var(--spacing-xxs) / 2);
    font-size: 14px;
  }
  .navi-menu-list li + li {
    margin-top: 1em;
  }
  .navi-menu-list li::before {
    content: "";
    width: 0.5em;
    height: 1px;
    background: var(--color-fg-secondary);
  }

}
/* PC */
@media print, screen and (min-width: 743px) {
  /*--- common ---*/
  /* section */
  body.lowerpage {
    padding-top: 80px;
  }
  /* breadcrumb */

  /* background */
  .pc-sticky .bg-sticky {
    display: block;
    position: sticky;
    inset: 0;
    width: 100%;
    height: 100vh;
    height: var(--fixed-vh, 100vh);
    z-index: -1;
    overflow: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    will-change: height;
  }
  .pc-sticky .sticky-inner {
    position: relative;
    z-index: 2;
    margin-top: -100vh;
  }

  /*--- header ---*/
  .header {
    align-items: flex-start;
    padding: var(--spacing-xs);
  }
  body.lowerpage .header::before {
    content: "";
    display: block;
    width: 100%;
    height: 80px;
    background: var(--color-primary);
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
  }
  .header,
  .header-inner {
    gap: var(--spacing-xs);
  }
  .header-tel.pc-only {
    display: flex;
    font-size: clamp(16px, calc(16px + (24 - 16) * ((100vw - 743px) / (1280 - 743))), 24px);
  }
  .header-tel.sp-only {
    display: none;
  }
  .header-btn-reserve {
    width: 100px;
    font-size: 16px;
  }
  .navi-menu-list {
    display: flex;
    flex-direction: row-reverse;
    overflow-x: hidden;
  }
  .navi-menu-list li {
    writing-mode: vertical-rl;
  }
  .navi-menu-list li a::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background-color: var(--color-fg-secondary);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
  }
  body:not(.lowerpage) #header-menu {
    display: flex;
    opacity: 1;
    visibility: visible;
  }
  .header:not(.lowerpage).is-scrolled #header-menu,
  body.lowerpage #header-menu {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .header.is-scrolled #header-menu.is-active,
  body.lowerpage #header-menu.is-active {
    display: flex;
    opacity: 1;
    overflow-y: auto;
  }
  .header.is-scrolled::before {
    content: "";
    display: block;
    width: 100%;
    height: 100px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: -1;
    pointer-events: none;
    background: linear-gradient(to bottom, rgb(28 28 28 / 1), rgb(28 28 28 / 0));
  }

  /* burger btn */
  body:not(.lowerpage) .header:not(.is-scrolled) .burger-btn {
    display: none !important;
  }
 
  .topics-slider .swiper-button-next,
  .topics-slider .swiper-button-prev {
    transform: scale(1);
    transition: background-color var(--transition-base);
    background-color: transparent;
    z-index: 1;
  }
  #top-topics .topics-slider .swiper-button-next {
    right: var(--spacing-xs);
  }
  #top-topics .topics-slider .swiper-button-prev {
    left: var(--spacing-xs);
  }
  /* topics-slider - slide under 3 */
  .topics-slider.is-disabled .swiper-wrapper {
    display: flex;
    justify-content: center;
  }
  .topics-slider.is-disabled .swiper-slide {
    max-width: 320px;
    border-left: 4px solid var(--color-primary);
    border-right: 4px solid var(--color-primary);
  }
  .topics-slider.is-disabled .topic-slide-inner {
  }
  /* #top-introduction */
  #top-introduction {
    background: linear-gradient(to left, rgb(0 0 0 / 0.6), transparent);
  }
  .intro-catchcopy {
    flex-direction: row-reverse;
    justify-content: flex-end;
    filter: drop-shadow(0 0 5px rgb(0 0 0 / 1)) drop-shadow(0 0 10px rgb(0 0 0 / 0.5)) drop-shadow(0 0 10px rgb(0 0 0 / 0.5));
  }
  /* .top-section-menu - common */
  .top-section-menu .sticky-inner {
    align-items: flex-start;
    padding-bottom: 0;
  }
  .top-section-menu:nth-of-type(odd) .sticky-inner {
    flex-direction: row;
  }
  .top-section-menu:nth-of-type(even) .sticky-inner {
    flex-direction: row-reverse;
  }
  .top-section-menu .top-section-inner {
    width: 50%;
    max-width: 600px;
    margin: 0 auto;
  }
  .top-menu-text {
    position: sticky;
    top: 60px;
    width: 55%;
    padding: var(--spacing-lg) var(--spacing-md);
  }
  .top-menu-images {
    width: 45%;
    margin: 0 auto;
    margin-bottom: 0;
  }
  .top-menu-images .swiper-wrapper {
    opacity: 0;
    transition: opacity var(--transition-base);
  }
  .top-menu-images.is-active .swiper-wrapper {
    opacity: 1;
  }
  .top-menu-images .swiper-wrapper .swiper-slide {
    opacity: 0;
    transform: translateY(-30px);
    transition: all var(--transition-base);
  }
  .top-menu-images.is-active .swiper-wrapper .swiper-slide {
    opacity: 1;
    filter: none;
    transform: translateY(0);
  }
  .top-menu-images.is-active .swiper-wrapper .swiper-slide:nth-child(2) {
    transition-delay: 0.5s;
  }
  .top-menu-images.is-active .swiper-wrapper .swiper-slide:nth-child(3) {
    transition-delay: 1s;
  }
  .top-menu-images.is-active .swiper-wrapper .swiper-slide:nth-child(4) {
    transition-delay: 1.5s;
  }
  .top-menu-images .swiper-wrapper {
    display: block;
    margin: 0;
  }
  .top-menu-images .swiper-slide {
    filter: none;
    opacity: 1;
  }
  .top-menu-images .swiper-slide:nth-child(n+5),
  .top-menu-images .swiper-button-prev, 
  .top-menu-images .swiper-button-next,
  .top-menu-images .swiper-pagination {
    display: none;
  }
  .top-menu-images-block {
    display: block;
  }
  /* #top-course */
  /* #top-space */
  #top-space .bg-sticky img {
    object-position: center center;
  }
  #top-space .sticky-inner {
    align-items: stretch;
    min-height: 100vh;
  }
  #top-space .top-menu-images-block > div {
    height: 50%;
  }
  #top-space .top-menu-images-block > div img {
    height: 100%;
    object-fit: cover;
  }
  /* #top-blog */
  .journal-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
  /* cta */
  a.cta-inner {
    aspect-ratio: auto;
  }
  .cta-inner h3 span.sp-only {
    display: none;
  }
  .cta-tel span.pc-only {
    font-size: 2em;
    border-top: 1px solid var(--color-fg-secondary);
    margin-top: var(--spacing-xs);
    padding-top: var(--spacing-xs);
    line-height: 1;
  }
  .cta-link a.cta-tabelog,
  .cta-link a.cta-hotpepper {
    flex-direction: row;
  }
  .cta-link a span.material-symbols-outlined {
    margin-right: 0.25em;
    margin-bottom: 0;
    transform: translateY(-4px);
  }
  .cta-link-brand {
    font-size: 1.3em;
    margin-right: 0.25em;
  }
  /* #top-information */
  .infomation-logo {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .infomation-logo img {
    margin: 0;
  }
  .infomation-logo span {
  }
  .information-wrapper {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-xs);
  }
  .map-wrapper {
    width: 55%;
    position: sticky;
    top: 140px;
  }
  .information-list {
    width: 45%;
    margin-top: var(--spacing-xs);
  }
  .map-container iframe {
    height: 400px;
  }
  .payment li img {
    height: 28px;
  }

  /*--- lowerpage ---*/
  /* lower - common */
  .title-slider {
    width: 100%;
    height: 500px;
  }
  .title-slider .swiper-slide {
    max-width: 1000px;
    height: 100%;
  }
  .title-header {
    width: 100%;
    height: 50vh;
    overflow: hidden;
  }
  .title-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* lower - menu */
  .menu-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-xs);
  }
  .menu-image {
    width: calc(35% - var(--spacing-xs));
  }
  .menu-info {
    width: calc(65% - 300px - var(--spacing-xs));
  }
  .menu-price-wrapper {
    width: 300px;
    padding: 1em 0;
  }
  /* lower - course */
  #page-course .menu-info {
    width: 65%;
  }
  .btn-menu-more {
    display: none;
  }
  .menu-text-container {
    position: static;
    max-height: initial;
    transition: none;
    mask-image: none;
  }
  /* lower - drink */
  #page-drink .menu-inner {
    max-width: 840px;
    margin: 0 auto;
  }
  #page-drink .menu-inner .menu-info,
  #page-drink .menu-inner .menu-price-wrapper {
    width: calc(50% - var(--spacing-xxs));
  }
  /* lower - space */
  #page-space .menu-info {
    width: 65%;
    padding-top: 0.5em;
  }
  /* lower - blog */
  #page-blog::before {
    background-position: 100% 100%;
  }
  .journal .journal-wrapper {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(200px, auto);
  }
  .journal .journal-content:first-child {
      grid-row: span 2;
      grid-column: span 2;
  }
  /* common - article */
  .article-wrapper {
    margin-top: var(--spacing-sm);
  }
  .article-content {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .article-image {
    width: 45%;
    margin-right: 5%;
  }
  .article-text {
    width: 50%;
    margin-top: 1em;
  }

  /*--- footer ---*/
  .footer-inner {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: var(--spacing-md);
  }
  .footer-navi.pc-only {
    display: block;
  }
  .footer-navi-list,
  .footer-cta {
    width: fit-content;
    margin: 0;
  }
  .footer .footer-cta.cta-link a {
    width: 85px;
    height: 85px;
  }
  .footer .footer-cta.cta-link a span.material-symbols-outlined {
    margin-bottom: 0;
  }
  .footer-info {
    flex-wrap: wrap;
  }
  .footer-info::before {
    content: "";
    width: 100%;
    height: 1px;
    margin: 0 auto var(--spacing-xxs);
    background: linear-gradient(to right, transparent, var(--color-fg-secondary), transparent);
  }
}

/* hover style */
@media (hover: hover) {
  /*--- base ---*/
  a:hover {
    overflow: hidden;
    outline: none;
    cursor: pointer;
    opacity: 0.7;
  }

  /*--- common ---*/
  /* page-navi */
  .pager a {
    transition: 0.5s ease-in-out;
  }
  .page-btn a:hover {
    filter: contrast(0.5);
  }
  .pager li:not(.page-btn) a:hover {
    opacity: 1;
  }

  /*--- header ---*/
  #header-menu .header-menu-list li a:hover {
    opacity: 1;
  }
  .navi-menu-list li a:hover::before {
    animation: lineExtend 0.5s ease forwards;
  }
  @keyframes lineExtend {
    0% {
      transform: scaleY(0);
    }
    100% {
      transform: scaleY(1);
    }
  }
  #navi-language select:hover,
  .burger-btn:hover {
    cursor: pointer;
  }

  /*--- top ---*/
  /* #top-topics */
  .topics-slider .swiper-button-next::before,
  .topics-slider .swiper-button-prev::before,
  .top-menu-images .swiper-button-next::before,
  .top-menu-images .swiper-button-prev::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 50%;
    border: 1px solid var(--color-fg-secondary);
    opacity: 0;
    transform: scale(1);
    pointer-events: none;
    z-index: -1;
  }
  .topics-slider .swiper-button-next:hover::before,
  .topics-slider .swiper-button-prev:hover::before,
  .top-menu-images .swiper-button-next:hover::before,
  .top-menu-images .swiper-button-prev:hover::before {
    animation: ripple 0.6s ease-out;
  }
  .topics-slider .swiper-button-next:hover::after,
  .topics-slider .swiper-button-prev:hover::after {
    color: var(--color-fg-secondary);
  }
  /* #top-blog */
  .journal-content-inner:hover {
    opacity: 1;
  }
  .journal-content-inner img {
    transform: scale(1.0);
    transition: transform var(--transition-base);
  }
  .journal-content-inner:hover img {
    transform: scale(1.2);
  }

  /* lower - blog */
  .journal .journal-content:first-child a:hover img {
    transform: scale(1.1);
  }
}

/*--- animation ---*/
.animation {
  opacity: 0;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(1em);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInBlur {
  0% {
    opacity: 0;
    filter: blur(var(--blur-base));
  }
  100% {
    opacity: 1;
    filter: none;
  }
}
@keyframes fadeInBlurScale {
  0% {
    opacity: 0;
    filter: blur(var(--blur-base));
    transform: scale(1.5);
  }
  100% {
    opacity: 1;
    filter: none;
    transform: scale(1);
  }
}
@keyframes fadeInBlurRight {
  0% {
    opacity: 0;
    filter: blur(var(--blur-base));
    transform: translateX(1em);
  }
  100% {
    opacity: 1;
    filter: none;
    transform: translateX(0);
  }
}
@keyframes fadeInBlurLeft {
  0% {
    opacity: 0;
    filter: blur(var(--blur-base));
    transform: translateX(-1em);
  }
  100% {
    opacity: 1;
    filter: none;
    transform: translateX(0);
  }
}
@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}
@keyframes glow {
  0%, 100% {
    text-shadow: 
      0 0 5px rgba(255, 255, 255, 0.5),
      0 0 10px rgba(255, 255, 255, 0.3);
  }
  50% {
    text-shadow: 
      0 0 10px rgba(255, 255, 255, 0.8),
      0 0 20px rgba(255, 255, 255, 0.6),
      0 0 30px rgba(255, 255, 255, 0.4);
  }
}