@charset "UTF-8";
:root {
  --notosans: "Noto Sans jP", sans-serif;
  --zengothic: "Zen Kaku Gothic New", sans-serif;
  --bizgothic: "BIZ UDGothic", sans-serif;
  --notoserif: "Noto Serif JP", serif;
  --zenold: "Zen Old Mincho", serif;
  --sawarabi: "Sawarabi Mincho", serif;
  --sippori: "Shippori Mincho", serif;
  --kiwi: "Kiwi Maru", "Zen Maru Gothic", "Kosugi Maru", serif;
  --zenmaru: "Zen Maru Gothic", serif;
  --kosugimaru: "Kosugi Maru", serif;
}

/* Universal box-sizing reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
}

/* Set default styles for html */
html {
  box-sizing: border-box;
  font-size: 100%;
}

/* Reset margin for common block-level elements */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  word-break: auto-phrase;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  background-color: var(--base);
}

html,
body {
  font-weight: normal;
  font-style: normal;
  font-optical-sizing: auto;
  line-height: 1.5;
  font-style: normal;
  letter-spacing: 0.06em;
  max-width: 100vw;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.4;
}

strong {
  line-height: 1;
  font-weight: 600;
}

/* Reset default link styles */
a {
  text-decoration: none; /* Remove underlines from all links */
  color: inherit; /* Make sure the link color inherits the surrounding text color */
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Reset styles for form elements */
input,
button,
textarea,
select {
  font: inherit;
  border: none; /* Remove borders on form elements */
  background: transparent; /* Make background transparent */
}

/* Remove animations and transitions for users with reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
*::before,
*::after {
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
a {
  text-decoration: none;
  outline: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--orange);
  transition: all 0.3s ease;
  text-decoration: none;
}

li {
  list-style-type: none;
}

input[type=text],
input[type=tel],
input[type=email],
input[type=submit],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  justify-content: center;
}

body {
  position: relative;
  z-index: -1;
  color: var(--base);
  font-family: var(--sippori);
  font-size: clamp(0.875rem, 0.754rem + 0.53vw, 1.25rem);
  line-height: 1.5;
}
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  inset: 0;
  background: url(../images/bg.jpg) center/cover repeat;
}

:root {
  --toppan: "toppan-bunkyu-midashi-min-st", serif;
  --base: #3b2607;
  --accent: #9a8725;
  --gold: linear-gradient(
    90deg,
    #ede29d 0%,
    #c8a800 23.56%,
    #ede29d 45.74%,
    #b59916 62.02%,
    #9a8725 78.37%,
    #ede29d 89.18%,
    #cfbc4d 100%
  );
}

.gold-bg {
  background: linear-gradient(90deg, #ede29d 0%, #c8a800 24%, #ede29d 46%, #b59916 62%, #9a8725 78%, #ede29d 89%, #cfbc4d 100%);
}

.gold-text {
  background: linear-gradient(90deg, #ede29d 0%, #c8a800 24%, #ede29d 46%, #b59916 62%, #9a8725 78%, #ede29d 89%, #cfbc4d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* Safari対策 */
}

.brown {
  color: var(--base);
}

.brown-bg {
  background-color: var(--base);
}

.ocher {
  color: var(--accent);
}

.ocher-bg {
  background-color: var(--accent);
}

.wh {
  color: #ffffff;
}

.wh-bg {
  background-color: #ffffff;
}

.shippori {
  font-family: var(--sippori);
}

.toppan {
  font-family: var(--toppan);
}

.text {
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .text {
    font-size: 1rem;
  }
}

.js-typein {
  visibility: hidden; /* 初期は非表示 */
}

.js-typein[data-typein-ready="1"] {
  visibility: visible; /* wrapChars 実行後に表示 */
}

.typein-char {
  opacity: 0;
  transform: translateY(0.3em);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.typein-char.is-show {
  opacity: 1;
  transform: translateY(0);
}

.scroll-mask,
.js-scroll-mask {
  position: relative;
  aspect-ratio: 4/3;
  width: 100%;
  overflow: hidden;
}

.scroll-mask img,
.js-scroll-mask img {
  -o-object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition-duration: 0.8s;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -webkit-mask-image: url(../images/mask.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: auto 200%;
  -webkit-mask-position: center bottom;
  z-index: 0;
  mask-image: url(../images/mask.svg);
  mask-mode: alpha;
  mask-position: center bottom;
  mask-repeat: no-repeat;
  mask-size: auto 200%;
  opacity: 0;
}

/* :visibleクラスがついたときにマスクアニメーション発火 */
.scroll-mask.\:visible img,
.js-scroll-mask.\:visible img {
  -webkit-animation: 2.3s mask-animation cubic-bezier(0.115, 0.405, 0.24, 1) 0s forwards;
  animation: 2.3s mask-animation cubic-bezier(0.115, 0.405, 0.24, 1) 0s forwards;
}

/* キーフレーム（そのまま） */
@-webkit-keyframes mask-animation {
  0% {
    -webkit-mask-position: center bottom;
    mask-position: center bottom;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  to {
    -webkit-mask-position: center 0%;
    -webkit-mask-size: auto 500%;
    mask-position: center 0%;
    mask-size: auto 500%;
    opacity: 1;
  }
}
@keyframes mask-animation {
  0% {
    -webkit-mask-position: center bottom;
    mask-position: center bottom;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  to {
    -webkit-mask-position: center 0%;
    -webkit-mask-size: auto 500%;
    mask-position: center 0%;
    mask-size: auto 500%;
    opacity: 1;
  }
}
.container {
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 1400px) {
  .container {
    max-width: 1240px;
  }
}

.btn-wrap__link {
  position: relative;
  font-weight: 500;
  background-color: var(--base);
  color: white;
  display: inline-block;
  min-width: 200px;
  padding: 10px 38px 10px 17px;
}
@media (min-width: 768px) {
  .btn-wrap__link {
    min-width: 306px;
    padding: 15px 65px 15px 25px;
  }
}
.btn-wrap__link::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -25px;
  width: 50px;
  height: 3px;
  background: var(--gold);
  display: block;
}
@media (min-width: 768px) {
  .btn-wrap__link::after {
    width: 92px;
    right: -39px;
  }
}

iframe {
  border: none;
}

.l-header {
  position: fixed;
  z-index: 999;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
}
.l-header__inner {
  background-color: var(--base);
  padding: 15px 20px;
}
@media (min-width: 768px) {
  .l-header__inner {
    padding: 19px 43px;
  }
}
.l-header__logo {
  width: 100px;
}
@media (min-width: 768px) {
  .l-header__logo {
    width: 124px;
  }
}
.l-header__nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
  background-color: #3b2607;
  height: 100%;
  width: 100%;
  padding: 150px 0;
  overflow-y: auto;
  transform: translateX(100%);
  transition: all 0.5s ease;
}
@media (min-width: 576px) {
  .l-header__nav {
    width: 800px;
  }
}
@media (min-width: 1400px) {
  .l-header__nav {
    position: static;
    flex-direction: row;
    justify-content: flex-end;
    gap: 2.2vw;
    margin-left: auto;
    background-color: transparent;
    width: 100%;
    height: auto;
    padding: 0;
    overflow: visible;
    transform: none;
  }
}
.l-header__nav.open {
  transform: translateX(0);
}
.l-header__nav--item {
  opacity: 0;
  transform: translateX(24px);
  transition: transform 0.6s ease, opacity 0.6s ease;
  will-change: transform, opacity;
}
.l-header__nav--item.is-in {
  opacity: 1;
  transform: none;
}
.l-header__nav--item__link {
  color: white;
  font-size: clamp(1rem, 0.919rem + 0.35vw, 1.25rem);
}
@media (min-width: 1400px) {
  .l-header__nav--item__link {
    font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
  }
}
@media (min-width: 1400px) {
  .l-header__nav .nav-reservation {
    display: none;
  }
}
.l-header__nav .nav-reservation__link {
  position: relative;
  display: block;
  padding: 17px 40px;
  border: 2px solid;
  -o-border-image: var(--gold) 1;
     border-image: var(--gold) 1;
  font-size: clamp(1rem, 0.919rem + 0.35vw, 1.25rem);
}
.l-header__nav .nav-reservation__link::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -25px;
  width: 50px;
  height: 2px;
  background: var(--gold);
}
.l-header .hamburger-menu {
  position: fixed;
  z-index: 9999;
  display: block;
}
@media (min-width: 1400px) {
  .l-header .hamburger-menu {
    display: none;
  }
}
.l-header .back-shadow {
  position: fixed;
  inset: 0;
  z-index: 997;
  width: 100%;
  height: 100dvh;
  background-color: rgba(0, 0, 0, 0.7);
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s ease-out;
}

.js_action_nav .back-shadow {
  visibility: visible;
  opacity: 1;
}

.hamburger-menu {
  display: flex;
  right: 20px;
  top: 24px;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}
@media (min-width: 768px) {
  .hamburger-menu {
    right: 20px;
    top: 27px;
  }
}
@media (min-width: 1400px) {
  .hamburger-menu {
    display: none;
  }
}

.btn-trigger {
  position: relative;
  z-index: 9999;
  cursor: pointer;
  display: inline-block;
  transition: all 0.5s;
  box-sizing: border-box;
  width: 40px;
  height: 30px;
}
@media (min-width: 576px) {
  .btn-trigger {
    width: 50px;
    height: 34px;
  }
}
.btn-trigger p {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #fff;
  border-radius: 4px;
  display: inline-block;
  transition: all 0.5s;
  box-sizing: border-box;
}
.btn-trigger p:nth-of-type(1) {
  top: 0;
}
.btn-trigger p:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}
.btn-trigger p:nth-of-type(3) {
  bottom: 0;
}

#hum-btn .btn-trigger.is-show p:nth-of-type(1) {
  transform: translateY(13.5px) rotate(-45deg);
}
@media (min-width: 576px) {
  #hum-btn .btn-trigger.is-show p:nth-of-type(1) {
    transform: translateY(15px) rotate(-45deg);
  }
}
#hum-btn .btn-trigger.is-show p:nth-of-type(2) {
  left: 50%;
  opacity: 0;
  -webkit-animation: active-btn05-bar02 0.8s forwards;
          animation: active-btn05-bar02 0.8s forwards;
}
#hum-btn .btn-trigger.is-show p:nth-of-type(3) {
  transform: translateY(-13.5px) rotate(45deg);
}
@media (min-width: 576px) {
  #hum-btn .btn-trigger.is-show p:nth-of-type(3) {
    transform: translateY(-15px) rotate(45deg);
  }
}

@-webkit-keyframes active-btn05-bar02 {
  100% {
    height: 0;
  }
}

@keyframes active-btn05-bar02 {
  100% {
    height: 0;
  }
}
#mask {
  display: none;
  transition: all 0.5s;
  justify-content: center;
}
#mask.open {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.8;
  z-index: 2;
  cursor: pointer;
}

.pop-info {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 99;
  writing-mode: vertical-lr;
}
.pop-info > a {
  display: inline-block;
  position: relative;
  padding: 37px 15px 17px 15px;
  line-height: 1.1;
  color: white;
  background: rgba(154, 135, 37, 0.8);
}
@media (min-width: 768px) {
  .pop-info > a {
    padding: 43px 20px 17px 20px;
  }
}
.pop-info > a:hover {
  background: rgb(154, 135, 37);
}
.pop-info > a::before {
  content: "";
  display: block;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 55px;
  background: linear-gradient(120deg, #ede29d 0%, #c8a800 24%, #ede29d 46%, #b59916 62%, #9a8725 78%, #ede29d 89%, #cfbc4d 100%);
}
@media (min-width: 768px) {
  .pop-info > a::before {
    height: 75px;
    top: -45px;
  }
}

.l-footer {
  position: relative;
  z-index: 1;
  background-color: var(--base);
  color: white;
  padding: 60px 0 30px;
  overflow: hidden;
}
.l-footer__logo {
  margin-bottom: 65px;
}
.l-footer__logo > a > img {
  max-width: 265px;
  width: clamp(11.25rem, 9.529rem + 7.44vw, 16.563rem);
}
.l-footer__inner {
  width: 100%;
  margin: 0 auto 45px;
  display: flex;
  justify-content: space-between;
  gap: 80px;
  flex-direction: column;
}
@media (min-width: 768px) {
  .l-footer__inner {
    max-width: 550px;
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .l-footer__inner {
    max-width: 700px;
  }
}
.l-footer .box .list-dl:not(:last-child) {
  margin-bottom: 40px;
}
.l-footer .box .list-dt {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-bottom: 5px;
}
@media (min-width: 768px) {
  .l-footer .box .list-dt {
    justify-content: flex-start;
  }
}
.l-footer .box .list-dt::before {
  content: "";
  width: clamp(0.938rem, 0.836rem + 0.44vw, 1.25rem);
  height: clamp(0.938rem, 0.836rem + 0.44vw, 1.25rem);
  display: block;
  border-radius: 999px;
  background-color: var(--accent);
  margin-top: 3px;
}
@media (min-width: 576px) {
  .l-footer .box .list-dt::before {
    margin-top: 5px;
  }
}
.l-footer .box .list-dd {
  text-align: center;
}
@media (min-width: 768px) {
  .l-footer .box .list-dd {
    text-align: left;
  }
}
.l-footer .box-right .list-dl {
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .l-footer .box-right .list-dl {
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.l-footer .box-right .list-dt {
  display: none;
}
@media (min-width: 768px) {
  .l-footer .box-right .list-dt {
    display: block;
  }
}
.l-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.l-footer__bottom {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.l-footer .insta-link {
  max-width: 32px;
  margin: 0 auto 18px;
  display: inline-block;
}
.l-footer .footer-back {
  position: absolute;
  z-index: -1;
  width: clamp(25rem, 8.497rem + 71.37vw, 75.938rem);
  right: -55px;
  bottom: 45px;
}

.top-fv-area {
  overflow: hidden;
  height: 100vh;
  position: relative;
  z-index: 1;
  padding-top: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) {
  .top-fv-area {
    padding-top: 90px;
  }
}
@media (max-height: 700px), (orientation: landscape) and (hover: none) and (pointer: coarse) {
  .top-fv-area {
    min-height: 800px;
  }
}
.top-fv-area::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
}
.top-fv-area__text {
  position: relative;
  z-index: 1;
  writing-mode: vertical-rl;
  color: white;
  text-shadow: 1px 4px 3px rgba(0, 0, 0, 0.4);
  font-size: clamp(1.563rem, 1.259rem + 1.31vw, 2.5rem);
  display: flex;
  flex-direction: column;
  height: 45%;
  min-height: 415px;
  gap: 15px;
}
@media (min-width: 576px) {
  .top-fv-area__text {
    height: 58%;
  }
}
@media (min-width: 992px) {
  .top-fv-area__text {
    height: 78%;
  }
}
.top-fv-area__text > p:nth-child(2) {
  margin-top: auto;
}

.fade-slider .swiper-wrapper {
  display: flex;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.fade-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 5s ease-in-out;
  display: block;
}
.fade-slider .swiper-slide-active img {
  transform: scale(1);
}

.page-top__sec01 {
  display: flex;
  flex-direction: column;
  padding: 140px 0 100px;
  overflow: clip;
}
@media (min-width: 992px) {
  .page-top__sec01 {
    padding: 200px 0 120px;
  }
}
.page-top__sec01 .container {
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .page-top__sec01 .container {
    gap: 40px;
    flex-direction: row;
  }
}
@media (min-width: 1200px) {
  .page-top__sec01 .container {
    gap: 75px;
  }
}
.page-top__sec01 .box {
  display: contents;
}
@media (min-width: 992px) {
  .page-top__sec01 .box {
    display: block;
    width: calc(50% - 20px);
  }
}
@media (min-width: 1200px) {
  .page-top__sec01 .box {
    width: calc(50% - 37.5px);
  }
}
.page-top__sec01 .box-image {
  margin: 0 auto;
  width: 70%;
  position: relative;
  z-index: 1;
  aspect-ratio: 522/696;
}
@media (min-width: 992px) {
  .page-top__sec01 .box-image {
    width: 100%;
  }
}
.page-top__sec01 .box-image img {
  aspect-ratio: 522/696;
}
.page-top__sec01 .box-image.scroll-mask img, .page-top__sec01 .box-image.js-scroll-mask img {
  -webkit-mask-image: url(../images/mask-vertical.svg);
  mask-image: url(../images/mask-vertical.svg);
}
.page-top__sec01 .box-title {
  position: relative;
  z-index: 1;
  order: 1;
  margin-bottom: 80px;
}
@media (min-width: 992px) {
  .page-top__sec01 .box-title {
    order: 0;
    margin-bottom: 100px;
  }
}
.page-top__sec01 .box-title > h1 {
  align-items: baseline;
  font-size: clamp(1.75rem, 1.345rem + 1.75vw, 3rem);
  text-align: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .page-top__sec01 .box-title > h1 {
    text-align: left;
    justify-content: flex-start;
  }
}
.page-top__sec01 .box-title > h1 > span:nth-child(1) {
  font-size: clamp(2.125rem, 1.518rem + 2.63vw, 4rem);
}
.page-top__sec01 .box-title > h1 > span:nth-child(3) {
  width: 100%;
}
@media (min-width: 992px) {
  .page-top__sec01 .box-title > h1 > span:nth-child(3) {
    text-align: right;
  }
}
.page-top__sec01 .box-title > img {
  position: absolute;
  z-index: -1;
  width: clamp(15.625rem, 10.684rem + 21.37vw, 30.875rem);
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 992px) {
  .page-top__sec01 .box-title > img {
    top: -112px;
    right: -48px;
    transform: none;
  }
}
.page-top__sec01 .box .thoughts-img_01 {
  order: 2;
  margin-bottom: 50px;
}
@media (min-width: 992px) {
  .page-top__sec01 .box .thoughts-img_01 {
    order: 0;
    margin-bottom: 65px;
  }
}
.page-top__sec01 .box-text {
  order: 3;
  margin-bottom: 35px;
}
@media (min-width: 992px) {
  .page-top__sec01 .box-text {
    order: 0;
  }
}
.page-top__sec01 .box .btn-wrap {
  order: 4;
  margin-bottom: 60px;
}
@media (min-width: 992px) {
  .page-top__sec01 .box .btn-wrap {
    order: 0;
    margin-bottom: 0;
  }
}
.page-top__sec01 .box .thoughts-img_02 {
  order: 5;
}
@media (min-width: 992px) {
  .page-top__sec01 .box .thoughts-img_02 {
    order: 0;
  }
}
.page-top__sec02 {
  position: relative;
  z-index: 1;
  overflow: visible;
}
.page-top__sec02--top {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) {
  .page-top__sec02--top {
    align-items: flex-start;
    writing-mode: vertical-lr;
    padding: 150px 0;
  }
}
@media (max-height: 700px), (orientation: landscape) and (hover: none) and (pointer: coarse) {
  .page-top__sec02--top {
    min-height: 520px;
    padding: 90px 0;
  }
}
.page-top__sec02--top h2 {
  font-size: clamp(1.875rem, 1.511rem + 1.58vw, 3rem);
  letter-spacing: 0.08em;
  text-align: center;
}
@media (min-width: 768px) {
  .page-top__sec02--top h2 {
    text-align: left;
    padding-left: 17vw;
  }
}
@media (max-height: 700px), (orientation: landscape) and (hover: none) and (pointer: coarse) {
  .page-top__sec02--top h2 {
    font-size: 2rem;
  }
}
.page-top__sec02--bottom {
  margin-left: auto;
  width: 100%;
  padding-bottom: 100px;
}
@media (min-width: 768px) {
  .page-top__sec02--bottom {
    width: 70%;
    padding-bottom: 150px;
  }
}
.page-top__sec02--bottom .container {
  max-width: 830px;
}
.page-top__sec02--text {
  max-width: 720px;
  margin-left: auto;
  margin-bottom: 120px;
  line-height: 1.8;
}
.page-top__sec02--text .btn-wrap {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  .page-top__sec02--text .btn-wrap {
    display: block;
  }
}
.page-top__sec02--img {
  min-height: 1100px;
  display: flex;
  flex-direction: column;
  /* --- 配置と動き --- */
}
@media (min-width: 768px) {
  .page-top__sec02--img {
    min-height: 1600px;
  }
}
.page-top__sec02--img .box {
  will-change: transform, opacity;
}
.page-top__sec02--img .box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 12px 12px 8px 4px rgba(0, 0, 0, 0.15);
  display: block;
}
.page-top__sec02--img .box-01 {
  width: clamp(17.5rem, 10.858rem + 28.72vw, 38rem);
  aspect-ratio: 4/3.2;
  margin-left: auto;
  -webkit-animation: fade-down ease forwards;
          animation: fade-down ease forwards;
  animation-timeline: view();
  animation-range: cover 0% cover 100%;
}
.page-top__sec02--img .box-02 {
  width: clamp(12.5rem, 8.248rem + 18.39vw, 25.625rem);
  aspect-ratio: 4/3;
  z-index: 1;
  margin-top: 90px;
  position: relative;
  z-index: 1;
  transform: translateY(100px);
  -webkit-animation: fade-up ease forwards;
          animation: fade-up ease forwards;
  animation-timeline: view();
  animation-range: cover 0% cover 100%;
}
.page-top__sec02--img .box-03 {
  width: clamp(15rem, 10.221rem + 20.67vw, 29.75rem);
  aspect-ratio: 2.8/4;
  margin-left: auto;
  margin-right: 90px;
}
.page-top__sec03 {
  position: relative;
  z-index: 1;
  padding: 100px 0;
  overflow-x: clip;
}
@media (min-width: 768px) {
  .page-top__sec03 {
    padding: 240px 0 140px;
  }
}
.page-top__sec03 .back-deco {
  position: absolute;
  z-index: -1;
}
.page-top__sec03 .back-deco__01 {
  width: clamp(21.875rem, 12.013rem + 42.64vw, 52.313rem);
  top: 30px;
  left: 0px;
}
@media (min-width: 992px) {
  .page-top__sec03 .back-deco__01 {
    top: 90px;
    left: -30px;
  }
}
.page-top__sec03 .back-deco__02 {
  width: clamp(17.5rem, 12.863rem + 20.05vw, 31.813rem);
  top: 42%;
  right: -87px;
}
@media (min-width: 992px) {
  .page-top__sec03 .back-deco__02 {
    right: -127px;
  }
}
.page-top__sec03 .back-deco__03 {
  bottom: 30px;
  left: 0;
  display: flex;
  align-items: flex-end;
}
@media (min-width: 992px) {
  .page-top__sec03 .back-deco__03 {
    bottom: 150px;
  }
}
.page-top__sec03 .back-deco__03 .deco-box:nth-child(1) {
  width: clamp(3.75rem, 2.414rem + 5.78vw, 7.875rem);
}
.page-top__sec03 .back-deco__03 .deco-box:nth-child(2) {
  width: clamp(3.438rem, 0.38rem + 13.22vw, 12.875rem);
  transform: translate(-20px, 10px);
}
@media (min-width: 768px) {
  .page-top__sec03 .back-deco__03 .deco-box:nth-child(2) {
    transform: translate(-20px, 80px);
  }
}
.page-top__sec03 .container .box {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .page-top__sec03 .container .box {
    display: block;
    padding-bottom: 200px;
  }
}
.page-top__sec03 .container .box:not(:last-child) {
  margin-bottom: 120px;
}
@media (min-width: 768px) {
  .page-top__sec03 .container .box:not(:last-child) {
    margin-bottom: 200px;
  }
}
.page-top__sec03 .container .box-text {
  bottom: 0;
  color: white;
  background-color: rgba(59, 38, 7, 0.95);
  width: 100%;
  padding: 30px 20px;
}
@media (min-width: 576px) {
  .page-top__sec03 .container .box-text {
    padding: 40px 50px;
  }
}
@media (min-width: 992px) {
  .page-top__sec03 .container .box-text {
    padding: 90px;
  }
}
@media (min-width: 992px) {
  .page-top__sec03 .container .box-text {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    position: absolute;
  }
}
.page-top__sec03 .container .box-text__title {
  margin-bottom: 27px;
}
.page-top__sec03 .container .box-text__title > img {
  display: block;
  margin: 0 auto 30px;
  max-width: 125px;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-top__sec03 .container .box-text__title > h2 {
  font-size: clamp(1.5rem, 1.338rem + 0.7vw, 2rem);
  font-weight: 500;
}
.page-top__sec03 .container .box-text > p {
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .page-top__sec03 .container .box-text > p {
    margin-bottom: 57px;
  }
}
.page-top__sec03 .container .box-text .btn-wrap {
  display: flex;
  justify-content: center;
  min-width: 250px;
}
@media (min-width: 992px) {
  .page-top__sec03 .container .box-text .btn-wrap {
    justify-content: flex-start;
  }
}
.page-top__sec03 .container .box-text .btn-wrap__link {
  border: solid 1px white;
}
.page-top__sec03 .container .box-img {
  position: relative;
  z-index: -1;
  width: 100%;
}
@media (min-width: 992px) {
  .page-top__sec03 .container .box-img {
    width: 72%;
  }
}
.page-top__sec03 .container .box-img img {
  aspect-ratio: 16/9;
}
@media (min-width: 992px) {
  .page-top__sec03 .container .box-img img {
    aspect-ratio: 837/629;
  }
}
@media (min-width: 992px) {
  .page-top__sec03 .container .box:nth-child(odd) .box-img {
    margin-left: auto;
  }
}
@media (min-width: 992px) {
  .page-top__sec03 .container .box:nth-child(even) .box-text {
    right: 0;
  }
}
.page-top__sec04 {
  padding: 100px 0;
}
@media (min-width: 768px) {
  .page-top__sec04 {
    padding: 180px 0;
  }
}
.page-top__sec04 .link-box {
  position: relative;
  z-index: 1;
  color: white;
  padding: 35px 20px;
  overflow: clip;
  filter: drop-shadow(-16px 16px 0px #9a8725);
}
@media (min-width: 576px) {
  .page-top__sec04 .link-box {
    padding: 50px 40px;
  }
}
@media (min-width: 992px) {
  .page-top__sec04 .link-box {
    padding: 72px 48px;
  }
}
.page-top__sec04 .link-box:not(:last-child) {
  margin-bottom: 55px;
}
@media (min-width: 576px) {
  .page-top__sec04 .link-box:not(:last-child) {
    margin-bottom: 80px;
  }
}
@media (min-width: 768px) {
  .page-top__sec04 .link-box:not(:last-child) {
    margin-bottom: 130px;
  }
}
.page-top__sec04 .link-box::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 105%;
  height: 105%;
  display: block;
  background: linear-gradient(270deg, rgba(59, 38, 7, 0) 0%, rgba(59, 38, 7, 0.8) 100%);
  filter: blur(5px);
}
@media (min-width: 768px) {
  .page-top__sec04 .link-box:nth-child(even) {
    filter: drop-shadow(16px 16px 0px #9a8725);
  }
}
@media (min-width: 768px) {
  .page-top__sec04 .link-box:nth-child(even)::before {
    background: linear-gradient(270deg, rgba(59, 38, 7, 0.8) 0%, rgba(59, 38, 7, 0) 100%);
  }
}
@media (min-width: 768px) {
  .page-top__sec04 .link-box:nth-child(even) .link-box__inner {
    margin-left: auto;
  }
}
.page-top__sec04 .link-box__inner {
  max-width: 430px;
}
.page-top__sec04 .link-box__inner .title > img {
  max-width: 84px;
  margin-bottom: 9px;
}
.page-top__sec04 .link-box__inner .title > h2 {
  font-size: clamp(1.375rem, 1.011rem + 1.58vw, 2.5rem);
  font-weight: 500;
}
.page-top__sec04 .link-box__inner .text {
  margin: 20px 0 45px;
  font-size: clamp(0.938rem, 0.836rem + 0.44vw, 1.25rem);
}
.page-top__sec04 .link-box__inner .btn-wrap__link {
  background-color: transparent;
  border: solid 1px white;
  min-width: 253px;
}

@-webkit-keyframes fade-down {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(50px);
  }
}

@keyframes fade-down {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(50px);
  }
}
@-webkit-keyframes fade-up {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-80px);
  }
}
@keyframes fade-up {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-80px);
  }
}
@media (min-width: 768px) {
  @-webkit-keyframes fade-up {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(-200px);
    }
  }
  @keyframes fade-up {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(-200px);
    }
  }
}
.page-fv {
  position: relative;
  z-index: 1;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-fv::before {
  content: "";
  position: absolute;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}

.fv-title {
  position: relative;
  z-index: 1;
  width: 100%;
}
.fv-title > h1 {
  font-size: clamp(2.188rem, 1.6rem + 2.54vw, 4rem);
  font-weight: 500;
  color: white;
}
.fv-title > img {
  position: absolute;
  z-index: -1;
  width: clamp(12.5rem, 9.584rem + 12.61vw, 21.5rem);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.section-title {
  padding: 80px 0 60px;
}
@media (min-width: 576px) {
  .section-title {
    padding: 100px 0 80px;
  }
}
@media (min-width: 768px) {
  .section-title {
    padding: 140px 0 120px;
  }
}
.section-title > img {
  max-width: clamp(5rem, 3.562rem + 6.22vw, 9.438rem);
  margin: 0 auto 20px;
  width: 100%;
}
.section-title > h2 {
  font-size: clamp(1.375rem, 0.93rem + 1.93vw, 2.75rem);
}

.page-thoughts__sec01 {
  position: relative;
  z-index: 1;
  overflow-x: clip;
}
.page-thoughts__sec01--inner {
  gap: 50px;
  display: flex;
  flex-direction: column;
  padding-bottom: 80px;
}
@media (min-width: 576px) {
  .page-thoughts__sec01--inner {
    padding: 100px;
  }
}
@media (min-width: 768px) {
  .page-thoughts__sec01--inner {
    padding-bottom: 120px;
  }
}
@media (min-width: 992px) {
  .page-thoughts__sec01--inner {
    gap: 85px;
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .page-thoughts__sec01--inner .box {
    width: calc(50% - 42.5px);
  }
}
.page-thoughts__sec01--inner .box > img {
  aspect-ratio: 534/711;
  display: block;
  margin: 0 auto;
  width: 70%;
}
@media (min-width: 992px) {
  .page-thoughts__sec01--inner .box > img {
    width: 100%;
  }
}
.page-thoughts__sec01--inner .box > p:last-child {
  margin-top: 80px;
}
.page-thoughts__sec01 > img {
  position: absolute;
  z-index: -1;
  bottom: -5vw;
  right: -11vw;
  max-width: clamp(21.875rem, 14.018rem + 33.98vw, 46.125rem);
}
.page-thoughts__sec02 {
  position: relative;
  z-index: 1;
}
.page-thoughts__sec02 .section-title {
  padding: 80px 0 100px;
}
@media (min-width: 576px) {
  .page-thoughts__sec02 .section-title {
    padding: 100px 0 130px;
  }
}
@media (min-width: 768px) {
  .page-thoughts__sec02 .section-title {
    padding: 145px 0 170px;
  }
}
.page-thoughts__sec02 .section-title > h2 {
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .page-thoughts__sec02 .section-title > h2 {
    margin-bottom: 77px;
  }
}
.page-thoughts__sec02--inner {
  position: relative;
}
.page-thoughts__sec02--inner .box {
  top: 0;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .page-thoughts__sec02--inner .box {
    position: -webkit-sticky;
    position: sticky;
    flex-direction: row;
    height: 110vh;
    min-height: 700px;
  }
}
@media (min-width: 768px) {
  .page-thoughts__sec02--inner .box:nth-child(even) {
    flex-direction: row-reverse;
  }
}
@media (min-width: 768px) {
  .page-thoughts__sec02--inner .box-left, .page-thoughts__sec02--inner .box-right {
    width: 50%;
  }
}
.page-thoughts__sec02--inner .box-left {
  padding: 80px 20px;
  background: url(../images/bg-white.jpg) center top/contain repeat;
}
@media (min-width: 768px) {
  .page-thoughts__sec02--inner .box-left {
    padding: 130px 40px;
  }
}
@media (min-width: 1200px) {
  .page-thoughts__sec02--inner .box-left {
    padding: 120px 100px;
  }
}
.page-thoughts__sec02--inner .box-left > h2 {
  font-size: clamp(1.875rem, 1.187rem + 2.98vw, 4rem);
  writing-mode: vertical-lr;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .page-thoughts__sec02--inner .box-left > h2 {
    margin-bottom: 117px;
  }
}
.page-thoughts__sec02--inner .box-left > p {
  line-height: 2;
}
.page-thoughts__sec02--inner .box-right {
  aspect-ratio: 16/9;
  overflow: hidden;
}
@media (min-width: 768px) {
  .page-thoughts__sec02--inner .box-right {
    aspect-ratio: unset;
  }
}
.page-thoughts__sec02--inner .box-right > img {
  height: 100%;
  -o-object-position: center;
     object-position: center;
}

.page-concept__sec {
  position: relative;
  z-index: 1;
  --window-h: 55vh;
}
.page-concept__sec .section-title {
  margin-bottom: var(--window-h);
}
.page-concept__sec .section-title, .page-concept__sec--inner {
  background: url(../images/bg.jpg) center/cover repeat;
}
.page-concept__sec--inner {
  position: relative;
  z-index: 2;
  padding: 95px 0;
}
.page-concept__sec--inner .container {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 50px;
}
@media (min-width: 992px) {
  .page-concept__sec--inner .container {
    flex-direction: row;
    gap: 72px;
  }
}
.page-concept__sec--inner .box-left,
.page-concept__sec--inner .box-right {
  width: 100%;
}
@media (min-width: 992px) {
  .page-concept__sec--inner .box-left,
.page-concept__sec--inner .box-right {
    width: calc(50% - 36px);
  }
}
.page-concept__sec--inner .box-left {
  line-height: 2;
}
@media (min-width: 992px) {
  .page-concept__sec--inner .box-left {
    line-height: 3;
  }
}
.page-concept__sec--inner .box-right {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
@media (min-width: 992px) {
  .page-concept__sec--inner .box-right {
    gap: 58px;
  }
}
.page-concept__sec--inner .box-img {
  max-width: 414px;
  overflow: clip;
  aspect-ratio: 3/2;
  width: 80%;
}
@media (min-width: 768px) {
  .page-concept__sec--inner .box-img {
    width: 100%;
  }
}
.page-concept__sec--inner .box-img > img {
  height: 100%;
}
.page-concept__sec--inner .box-img:nth-child(1) {
  margin-left: auto;
}
.page-concept__sec--inner .box-img:nth-child(2) {
  margin-right: auto;
}
.page-concept__sec .back-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
}
.page-concept__sec .back-img.is-fixed {
  position: fixed;
  top: 0;
}
.page-concept__sec .back-img.is-bottom {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  width: 100%;
}
.page-concept__sec .back-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.menu-box {
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .menu-box {
    margin-bottom: 88px;
  }
}
.menu-box .contents-title {
  position: relative;
  z-index: 1;
  background-color: var(--base);
  overflow: clip;
  padding: 8px 15px;
}
@media (min-width: 576px) {
  .menu-box .contents-title {
    padding: 10px 20px;
  }
}
@media (min-width: 768px) {
  .menu-box .contents-title {
    padding: 20px 40px;
  }
}
.menu-box .contents-title > h3 {
  font-size: clamp(1.063rem, 0.759rem + 1.31vw, 2rem);
  font-weight: 600;
  color: white;
  line-height: 1.1;
}
.menu-box .contents-title > img {
  max-width: clamp(5rem, 2.671rem + 10.07vw, 12.188rem);
  width: 100%;
  position: absolute;
  z-index: -1;
  right: 1.35vw;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 768px) {
  .menu-box .contents-title > img {
    top: 72%;
  }
}
.menu-box .list-wrap {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
@media (min-width: 992px) {
  .menu-box .list-wrap {
    gap: 40px;
    flex-direction: row;
  }
}
@media (min-width: 1200px) {
  .menu-box .list-wrap {
    gap: 80px;
  }
}
.menu-box .list-wrap .menu-list {
  width: 100%;
}
@media (min-width: 992px) {
  .menu-box .list-wrap .menu-list {
    width: calc(50% - 20px);
  }
}
@media (min-width: 1200px) {
  .menu-box .list-wrap .menu-list {
    width: calc(50% - 40px);
  }
}
.menu-box .list-wrap .menu-list .list-dl {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  .menu-box .list-wrap .menu-list .list-dl {
    flex-direction: row;
    gap: 10px;
  }
}
.menu-box .list-wrap .menu-list .list-dt {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.menu-box .list-wrap .menu-list .list-dd {
  width: 100%;
  text-align: right;
}
@media (min-width: 992px) {
  .menu-box .list-wrap .menu-list .list-dd {
    width: 160px;
  }
}
.menu-box .list-wrap .menu-list .list-dt,
.menu-box .list-wrap .menu-list .list-dd {
  font-size: clamp(0.938rem, 0.836rem + 0.44vw, 1.25rem);
  font-weight: 500;
}

.page-menu .contents-title {
  margin-bottom: 32px;
}
.page-menu__sec01, .page-menu__sec02, .page-menu__sec03 {
  padding-bottom: 80px;
}
@media (min-width: 576px) {
  .page-menu__sec01, .page-menu__sec02, .page-menu__sec03 {
    padding-bottom: 100px;
  }
}
@media (min-width: 768px) {
  .page-menu__sec01, .page-menu__sec02, .page-menu__sec03 {
    padding-bottom: 140px;
  }
}
.page-menu__sec01 .container > .menu-box:last-child, .page-menu__sec02 .container > .menu-box:last-child, .page-menu__sec03 .container > .menu-box:last-child {
  margin-bottom: 0;
}
.page-menu__sec--top {
  min-height: 340px;
}
@media (min-width: 576px) {
  .page-menu__sec--top {
    min-height: 400px;
  }
}
@media (min-width: 768px) {
  .page-menu__sec--top {
    min-height: 595px;
  }
}
.page-menu__sec--bottom {
  margin-top: 60px;
}
@media (min-width: 576px) {
  .page-menu__sec--bottom {
    margin-top: 90px;
  }
}
@media (min-width: 768px) {
  .page-menu__sec--bottom {
    margin-top: 120px;
  }
}
.page-menu__sec--bottom .container {
  background-color: rgba(181, 152, 22, 0.6);
  padding: 40px 20px;
  max-width: 900px;
}
@media (min-width: 576px) {
  .page-menu__sec--bottom .container {
    padding: 50px 40px;
  }
}
@media (min-width: 768px) {
  .page-menu__sec--bottom .container {
    padding: 70px 40px;
  }
}
.page-menu__sec--bottom .container > img {
  display: block;
  max-width: 458px;
  margin: 0 auto 35px;
}
@media (min-width: 768px) {
  .page-menu__sec--bottom .container > img {
    margin: 0 auto 55px;
  }
}
.page-menu__sec--bottom .container h3,
.page-menu__sec--bottom .container p {
  font-weight: 500;
}
.page-menu__sec--bottom .container > h3 {
  font-size: clamp(1.125rem, 0.761rem + 1.58vw, 2.25rem);
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .page-menu__sec--bottom .container > h3 {
    margin-bottom: 40px;
  }
}
.page-menu__sec--bottom .container > p {
  max-width: 660px;
  margin: 0 auto;
  font-size: clamp(0.875rem, 0.836rem + 0.44vw, 1.25rem);
}
.page-menu__sec01--inner {
  display: flex;
  flex-direction: column;
  max-width: 752px;
  margin: 0 auto;
  gap: 60px;
}
@media (min-width: 768px) {
  .page-menu__sec01--inner {
    gap: 90px;
  }
}
@media (min-width: 992px) {
  .page-menu__sec01--inner {
    gap: 130px;
  }
}
.page-menu__sec01 .course-box > img {
  aspect-ratio: 4/3;
  display: block;
  margin: 0 auto 25px;
}
.page-menu__sec01 .course-box__inner > h2 {
  font-size: clamp(1.5rem, 1.176rem + 1.4vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 10px;
}
.page-menu__sec01 .course-box__inner p {
  font-size: clamp(1rem, 0.838rem + 0.7vw, 1.5rem);
  font-weight: 500;
}
.page-menu__sec01 .course-box__inner--price {
  font-weight: 600;
  padding-bottom: 18px;
  border-bottom: solid 1px var(--base);
  display: flex;
  align-items: baseline;
  gap: 15px;
}
.page-menu__sec01 .course-box__inner--price .price {
  font-size: clamp(1.5rem, 1.176rem + 1.4vw, 2.5rem);
}
.page-menu__sec01 .course-box__text {
  margin-top: 20px;
}

.page-lunch__top {
  position: relative;
  z-index: 1;
  overflow: clip;
  padding: 100px 0 60px;
}
@media (min-width: 576px) {
  .page-lunch__top {
    padding: 120px 0 80px;
  }
}
@media (min-width: 768px) {
  .page-lunch__top {
    padding: 150px 0 100px;
  }
}
@media (min-width: 992px) {
  .page-lunch__top {
    padding: 190px 0 120px;
  }
}
@media (min-width: 1200px) {
  .page-lunch__top {
    padding: 245px 0 150px;
  }
}
.page-lunch__top .back-deco {
  position: absolute;
  z-index: -1;
  top: -30px;
  left: -85px;
  display: block;
  width: clamp(20rem, 15.14rem + 21.02vw, 35rem);
  opacity: 0.7;
}
@media (min-width: 992px) {
  .page-lunch__top .back-deco {
    opacity: 1;
  }
}
.page-lunch__top--inner {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 50px;
}
@media (min-width: 992px) {
  .page-lunch__top--inner {
    flex-direction: row;
    gap: 56px;
  }
}
.page-lunch__top .box-img {
  width: 75%;
}
@media (min-width: 992px) {
  .page-lunch__top .box-img {
    width: calc(60% - 28px);
  }
}
.page-lunch__top .box-text {
  width: 100%;
}
@media (min-width: 992px) {
  .page-lunch__top .box-text {
    width: calc(40% - 28px);
  }
}
.page-lunch__top .box-text > h2 {
  font-size: clamp(1.438rem, 1.093rem + 1.49vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .page-lunch__sec .page-menu__sec01--inner {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .page-lunch__sec .page-menu__sec01--inner {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .page-lunch__sec .page-menu__sec01--inner {
    max-width: 1240px;
  }
}
@media (min-width: 992px) {
  .page-lunch__sec .course-box {
    gap: 42px;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
  }
}
.page-lunch__sec .course-box > img {
  box-shadow: -10px 10px 0px #b59916;
  width: 75%;
}
@media (min-width: 992px) {
  .page-lunch__sec .course-box > img {
    margin-bottom: 0;
    width: calc(50% - 21px);
  }
}
@media (min-width: 992px) {
  .page-lunch__sec .course-box > .course-box__inner {
    width: calc(50% - 21px);
  }
}
@media (min-width: 992px) {
  .page-lunch__sec .course-box > .course-box__inner > h2, .page-lunch__sec .course-box > .course-box__inner > .course-box__text {
    text-align: left !important;
  }
}
.page-lunch__sec .course-box > .course-box__inner > .course-box__text {
  font-size: clamp(0.938rem, 0.836rem + 0.44vw, 1.25rem);
}
.page-lunch__sec .course-box > .course-box__inner .course-box__inner--price {
  padding-bottom: 0;
  border-bottom: none;
}
@media (min-width: 992px) {
  .page-lunch__sec .course-box > .course-box__inner .course-box__inner--price {
    justify-content: flex-start !important;
  }
}

.page-ramen__sec01 {
  position: relative;
  z-index: 1;
  padding: 100px 0 80px;
}
@media (min-width: 576px) {
  .page-ramen__sec01 {
    padding: 130px 0 100px;
  }
}
@media (min-width: 768px) {
  .page-ramen__sec01 {
    padding: 160px 0 120px;
  }
}
@media (min-width: 992px) {
  .page-ramen__sec01 {
    padding: 200px 0 150px;
  }
}
.page-ramen__sec01--top {
  display: flex;
  flex-direction: column;
  gap: 64px;
  margin-bottom: 80px;
}
@media (min-width: 1200px) {
  .page-ramen__sec01--top {
    flex-direction: row;
  }
}
.page-ramen__sec01--top .box-text {
  width: 100%;
}
@media (min-width: 1200px) {
  .page-ramen__sec01--top .box-text {
    width: calc(50% - 32px);
  }
}
.page-ramen__sec01--top .box-text > h2 {
  font-size: clamp(1.375rem, 1.011rem + 1.58vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 45px;
}
.page-ramen__sec01--top .box-text > p {
  font-size: clamp(0.938rem, 0.836rem + 0.44vw, 1.25rem);
  font-weight: 500;
}
.page-ramen__sec01--top .box-img {
  margin: 0 auto;
  width: 75%;
}
@media (min-width: 1200px) {
  .page-ramen__sec01--top .box-img {
    width: calc(50% - 32px);
  }
}
.page-ramen__sec01--bottom {
  display: flex;
  gap: 20px;
  padding: 0 20px;
}
@media (min-width: 576px) {
  .page-ramen__sec01--bottom {
    gap: 30px;
  }
}
@media (min-width: 768px) {
  .page-ramen__sec01--bottom {
    gap: 66px;
  }
}
.page-ramen__sec01--bottom .box:nth-child(1) {
  width: clamp(20rem, 15.241rem + 20.58vw, 34.688rem);
  margin-bottom: 13vw;
}
.page-ramen__sec01--bottom .box:nth-child(2) {
  width: clamp(17.5rem, 14.321rem + 13.75vw, 27.313rem);
  margin-top: 19vw;
}
.page-ramen__sec01 .back-deco01,
.page-ramen__sec01 .back-deco02 {
  position: absolute;
  z-index: -1;
}
.page-ramen__sec01 .back-deco01 {
  bottom: 28vw;
  right: -130px;
  width: clamp(17.5rem, 11.243rem + 27.06vw, 36.813rem);
  transform: scale(-1, -1);
}
@media (min-width: 768px) {
  .page-ramen__sec01 .back-deco01 {
    right: -22px;
  }
}
.page-ramen__sec01 .back-deco02 {
  bottom: 6vw;
  left: -70px;
  width: clamp(18.75rem, 9.698rem + 39.14vw, 46.688rem);
}
.page-ramen__sec02 .ramen-box {
  padding: 40px 0 60px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 576px) {
  .page-ramen__sec02 .ramen-box {
    padding: 60px 0 100px;
  }
}
@media (min-width: 768px) {
  .page-ramen__sec02 .ramen-box {
    padding: 80px 0 120px;
  }
}
@media (min-width: 992px) {
  .page-ramen__sec02 .ramen-box {
    flex-direction: row;
    padding: 100px 0 150px;
  }
}
.page-ramen__sec02 .ramen-box .box-img {
  position: relative;
  z-index: 1;
  width: 65%;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .page-ramen__sec02 .ramen-box .box-img {
    width: calc(48% - 20px);
  }
}
.page-ramen__sec02 .ramen-box .box-img > p {
  position: absolute;
  z-index: -1;
  left: -17px;
  top: -7vw;
  font-size: clamp(5rem, 2.57rem + 10.51vw, 12.5rem);
  font-weight: 900;
  font-family: var(--toppan);
  color: #b59916;
  opacity: 0.4;
  line-height: 1;
}
@media (min-width: 992px) {
  .page-ramen__sec02 .ramen-box:nth-child(even) {
    flex-direction: row-reverse;
  }
}
.page-ramen__sec02 .ramen-box:nth-child(even) .box-img > p {
  left: auto;
  right: -17px;
}
.page-ramen__sec02 .ramen-box .box-text {
  width: 100%;
}
@media (min-width: 992px) {
  .page-ramen__sec02 .ramen-box .box-text {
    width: calc(52% - 20px);
  }
}
.page-ramen__sec02 .ramen-box .box-text > h2 {
  font-size: clamp(1.5rem, 1.014rem + 2.1vw, 3rem);
}
.page-ramen__sec02 .ramen-box .box-text .list-wrap .menu-list {
  width: 100%;
}
.page-ramen__sec02 .ramen-box .box-text .list-wrap .list-dl {
  border-bottom: solid 1px var(--accent);
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 768px) {
  .page-ramen__sec02 .ramen-box .box-text .list-wrap .list-dl {
    flex-direction: row;
  }
}
.page-ramen__sec02 .ramen-box .box-text .list-wrap .list-dl:first-child {
  border-top: solid 1px var(--accent);
}
.page-ramen__sec02 .ramen-box .box-text .list-wrap .list-dt,
.page-ramen__sec02 .ramen-box .box-text .list-wrap .list-dd {
  font-size: clamp(0.938rem, 0.755rem + 0.79vw, 1.5rem);
}
.page-ramen__sec02 .ramen-box .box-text .list-wrap .list-dt {
  flex: 1;
  width: 100%;
}
.page-ramen__sec02 .ramen-box .box-text .list-wrap .list-dd {
  width: 100%;
  text-align: right;
}
@media (min-width: 768px) {
  .page-ramen__sec02 .ramen-box .box-text .list-wrap .list-dd {
    width: 100px;
  }
}
.page-ramen__sec02 .page-ramen__sec--bottom {
  padding: 0 20px;
}
.page-ramen__sec02 .page-ramen__sec--bottom .container {
  background-color: rgba(181, 152, 22, 0.6);
  padding: 40px 20px;
}
@media (min-width: 768px) {
  .page-ramen__sec02 .page-ramen__sec--bottom .container {
    padding: 50px 40px;
  }
}
@media (min-width: 992px) {
  .page-ramen__sec02 .page-ramen__sec--bottom .container {
    padding: 5vw 11vw;
  }
}
.page-ramen__sec02 .page-ramen__sec--bottom h3 {
  padding-bottom: 5px;
  border-bottom: solid 1px #3b2607;
  font-size: clamp(1.25rem, 1.007rem + 1.05vw, 2rem);
  margin-bottom: 17px;
}
.page-ramen__sec02 .page-ramen__sec--bottom .list-wrap {
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .page-ramen__sec02 .page-ramen__sec--bottom .list-wrap {
    gap: 60px;
    flex-direction: row;
  }
}
@media (min-width: 1200px) {
  .page-ramen__sec02 .page-ramen__sec--bottom .list-wrap {
    gap: 120px;
  }
}
.page-ramen__sec02 .page-ramen__sec--bottom .list-wrap .menu-list {
  width: 100%;
}
@media (min-width: 992px) {
  .page-ramen__sec02 .page-ramen__sec--bottom .list-wrap .menu-list {
    width: calc(50% - 30px);
  }
}
@media (min-width: 1200px) {
  .page-ramen__sec02 .page-ramen__sec--bottom .list-wrap .menu-list {
    width: calc(50% - 60px);
  }
}
.page-ramen__sec02 .page-ramen__sec--bottom .list-wrap .list-dl {
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
@media (min-width: 768px) {
  .page-ramen__sec02 .page-ramen__sec--bottom .list-wrap .list-dl {
    flex-direction: row;
    gap: 10px;
  }
}
.page-ramen__sec02 .page-ramen__sec--bottom .list-wrap .list-dt {
  flex: 1;
  width: 100%;
}
.page-ramen__sec02 .page-ramen__sec--bottom .list-wrap .list-dd {
  width: 100%;
  text-align: right;
}
@media (min-width: 768px) {
  .page-ramen__sec02 .page-ramen__sec--bottom .list-wrap .list-dd {
    width: 100px;
  }
}
.page-ramen__sec03 .address-list {
  max-width: 670px;
  margin: 0 auto;
}
.page-ramen__sec03 .address-list .list-dl {
  padding: 10px 0;
  border-bottom: solid 1px var(--base);
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .page-ramen__sec03 .address-list .list-dl {
    flex-direction: row;
  }
}
.page-ramen__sec03 .address-list .list-dl:first-child {
  padding-top: 0;
}
.page-ramen__sec03 .address-list .list-dt {
  width: 100%;
}
@media (min-width: 768px) {
  .page-ramen__sec03 .address-list .list-dt {
    width: 200px;
  }
}
.page-ramen__sec03 .address-list .list-dd {
  flex: 1;
}
.page-ramen__sec03 .map {
  height: 350px;
}
@media (min-width: 576px) {
  .page-ramen__sec03 .map {
    height: 500px;
  }
}
@media (min-width: 768px) {
  .page-ramen__sec03 .map {
    height: 740px;
  }
}
.page-ramen__sec03 .map iframe {
  height: 100% !important;
}

.page-scene {
  overflow-x: clip;
}
.page-scene__sec {
  padding-bottom: 100px;
}
@media (min-width: 576px) {
  .page-scene__sec {
    padding-bottom: 140px;
  }
}
@media (min-width: 768px) {
  .page-scene__sec {
    padding-bottom: 190px;
  }
}
.page-scene__sec--wrap .scene-box {
  padding-top: 100px;
  position: relative;
  z-index: 1;
}
@media (min-width: 576px) {
  .page-scene__sec--wrap .scene-box {
    padding-top: 150px;
  }
}
@media (min-width: 768px) {
  .page-scene__sec--wrap .scene-box {
    padding-top: 200px;
  }
}
@media (min-width: 992px) {
  .page-scene__sec--wrap .scene-box {
    padding-top: 290px;
  }
}
.page-scene__sec--wrap .scene-box:first-child {
  padding-top: 0;
}
.page-scene__sec--wrap .scene-box .container {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media (min-width: 992px) {
  .page-scene__sec--wrap .scene-box .container {
    flex-direction: row;
    gap: 68px;
  }
}
.page-scene__sec--wrap .scene-box .box-text {
  width: 100%;
}
@media (min-width: 992px) {
  .page-scene__sec--wrap .scene-box .box-text {
    width: calc(50% - 39px);
  }
}
.page-scene__sec--wrap .scene-box__title > h2 {
  font-size: clamp(1.438rem, 1.093rem + 1.49vw, 2.5rem);
  font-weight: 600;
  border-bottom: solid 1px var(--base);
}
.page-scene__sec--wrap .scene-box .box-img {
  width: 75%;
  margin: 0 auto;
  box-shadow: 15px 15px 0px #b59916;
}
@media (min-width: 992px) {
  .page-scene__sec--wrap .scene-box .box-img {
    width: calc(50% - 39px);
  }
}
.page-scene__sec--wrap .scene-box .box-img img {
  aspect-ratio: 545/727;
}
.page-scene__sec--wrap .scene-box:nth-child(odd) .box-img {
  box-shadow: -15px 15px 0px #b59916;
}
@media (min-width: 992px) {
  .page-scene__sec--wrap .scene-box:nth-child(odd) .container {
    flex-direction: row-reverse;
  }
}
.page-scene__sec--wrap .scene-box .back-deco {
  position: absolute;
  z-index: -1;
  opacity: 0.7;
}
@media (min-width: 992px) {
  .page-scene__sec--wrap .scene-box .back-deco {
    opacity: 1;
  }
}
.page-scene__sec--wrap .scene-box:nth-child(2) .back-deco {
  width: clamp(17.5rem, 11.202rem + 27.23vw, 36.938rem);
  left: -34px;
  top: 20px;
}
@media (min-width: 992px) {
  .page-scene__sec--wrap .scene-box:nth-child(2) .back-deco {
    top: 70px;
  }
}
.page-scene__sec--wrap .scene-box:nth-child(3) .back-deco {
  width: clamp(15.625rem, 7.363rem + 35.73vw, 41.125rem);
  right: 0;
  top: 50px;
}
@media (min-width: 992px) {
  .page-scene__sec--wrap .scene-box:nth-child(3) .back-deco {
    top: 80px;
  }
}
.page-scene__sec--wrap .scene-box:nth-child(4) .back-deco {
  width: clamp(11.25rem, 10.744rem + 2.19vw, 12.813rem);
  transform: rotate(85deg);
  left: 0;
  top: -20px;
}
@media (min-width: 992px) {
  .page-scene__sec--wrap .scene-box:nth-child(4) .back-deco {
    top: 110px;
  }
}
.page-scene__sec--wrap .scene-box:nth-child(5) .back-deco {
  width: clamp(15.625rem, 7.647rem + 34.5vw, 40.25rem);
  right: -16px;
  top: 68px;
  transform: scale(-1, 1);
}
.page-scene__sec--wrap .scene-box:nth-child(6) .back-deco {
  width: clamp(11.25rem, 6.39rem + 21.02vw, 26.25rem);
  top: 45px;
  left: 15px;
}
@media (min-width: 992px) {
  .page-scene__sec--wrap .scene-box:nth-child(6) .back-deco {
    left: 44px;
    top: 95px;
  }
}

.page-faq__sec--wrap .list-dl {
  padding: 25px 15px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border-bottom: solid 1px var(--base);
}
@media (min-width: 768px) {
  .page-faq__sec--wrap .list-dl {
    gap: 20px;
    padding: 50px 15px;
  }
}
.page-faq__sec--wrap .list-dl:first-child {
  padding-top: 0;
}
.page-faq__sec--wrap .list-dt,
.page-faq__sec--wrap .list-dd {
  padding-left: clamp(2.938rem, 2.533rem + 1.75vw, 4.188rem);
  padding-top: 7px;
  padding-bottom: 7px;
  position: relative;
}
@media (min-width: 576px) {
  .page-faq__sec--wrap .list-dt,
.page-faq__sec--wrap .list-dd {
    padding-top: 9px;
    padding-bottom: 9px;
  }
}
.page-faq__sec--wrap .list-dt::before,
.page-faq__sec--wrap .list-dd::before {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 999px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  width: clamp(2.188rem, 1.945rem + 1.05vw, 2.938rem);
  height: clamp(2.188rem, 1.945rem + 1.05vw, 2.938rem);
  font-size: clamp(1.125rem, 1.004rem + 0.53vw, 1.5rem);
  padding-bottom: 4px;
  padding-left: 2px;
}
.page-faq__sec--wrap .list-dt::before {
  content: "Q";
  background-color: var(--accent);
  color: white;
}
.page-faq__sec--wrap .list-dd::before {
  content: "A";
  background-color: white;
  color: var(--accent);
}

.page-news .news-list__link {
  display: inline-block;
  padding: 30px 0;
  border-bottom: solid 1px var(--base);
  width: 100%;
}
.page-news .news-list__date {
  color: var(--accent);
  font-weight: 500;
}
.page-news .news-list__title {
  font-size: clamp(1.125rem, 1.004rem + 0.53vw, 1.5rem);
  font-weight: 500;
}

.page-newsdetail .news-detail__date {
  color: var(--accent);
}
.page-newsdetail .news-detail__title {
  font-size: clamp(1.25rem, 1.007rem + 1.05vw, 2rem);
  margin-bottom: 30px;
}
.page-newsdetail .news-detail__img {
  margin-bottom: 35px;
}
.page-newsdetail .news-detail__img img {
  -o-object-fit: contain;
     object-fit: contain;
}

.webgene-pagination {
  margin-top: 80px;
}
@media (min-width: 768px) {
  .webgene-pagination {
    margin-top: 100px;
  }
}
.webgene-pagination ul {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
@media (min-width: 576px) {
  .webgene-pagination ul {
    gap: 65px;
    flex-direction: row;
  }
}
.webgene-pagination .next a,
.webgene-pagination .prev a {
  position: relative;
  z-index: 1;
  background-color: var(--base);
  color: white;
  display: block;
  width: 180px;
}
@media (min-width: 768px) {
  .webgene-pagination .next a,
.webgene-pagination .prev a {
    width: 220px;
  }
}
@media (min-width: 992px) {
  .webgene-pagination .next a,
.webgene-pagination .prev a {
    width: 300px;
  }
}
.webgene-pagination .next a:hover::after,
.webgene-pagination .prev a:hover::after {
  transition: all 0.3s ease;
}
@media (min-width: 576px) {
  .webgene-pagination .prev {
    margin-right: auto;
  }
}
.webgene-pagination .prev a {
  padding: 15px 25px 15px 60px;
  text-align: right;
}
.webgene-pagination .prev a::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -25px;
  width: 50px;
  height: 3px;
  background: var(--gold);
  display: block;
}
@media (min-width: 768px) {
  .webgene-pagination .prev a::after {
    width: 92px;
    left: -39px;
  }
}
@media (min-width: 576px) {
  .webgene-pagination .next {
    margin-left: auto;
  }
}
.webgene-pagination .next a {
  padding: 15px 60px 15px 25px;
  text-align: left;
}
.webgene-pagination .next a::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -25px;
  width: 50px;
  height: 3px;
  background: var(--gold);
  display: block;
}
@media (min-width: 768px) {
  .webgene-pagination .next a::after {
    width: 92px;
    right: -39px;
  }
}
.webgene-pagination .back {
  width: 100%;
}
.webgene-pagination .back > a {
  text-align: center;
  margin: 0 auto;
  background-color: var(--base);
  color: white;
  display: block;
  width: 180px;
  padding: 15px 25px;
}
@media (min-width: 768px) {
  .webgene-pagination .back > a {
    width: 220px;
  }
}
@media (min-width: 992px) {
  .webgene-pagination .back > a {
    width: 300px;
  }
}

.page-information__reservation--wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 40px;
}
@media (min-width: 992px) {
  .page-information__reservation--wrap {
    gap: 90px;
    flex-direction: row;
  }
}
.page-information__reservation--wrap .box {
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .page-information__reservation--wrap .box {
    width: 75%;
  }
}
@media (min-width: 992px) {
  .page-information__reservation--wrap .box {
    width: calc(50% - 45px);
  }
}
.page-information__reservation--wrap .box > a {
  padding: 40px 20px;
  background-color: rgba(181, 152, 22, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  min-height: 200px;
}
@media (min-width: 768px) {
  .page-information__reservation--wrap .box > a {
    padding: 60px 50px;
  }
}
@media (min-width: 992px) {
  .page-information__reservation--wrap .box > a {
    padding: 60px 70px;
    min-height: 274px;
  }
}
.page-information__reservation--wrap .box > a > h3 {
  font-size: clamp(1.5rem, 1.257rem + 1.05vw, 2.25rem);
  text-align: center;
  width: 100%;
}
.page-information__reservation--wrap .box > a .box-inner {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  width: 80%;
}
@media (min-width: 992px) {
  .page-information__reservation--wrap .box > a .box-inner {
    width: 220px;
  }
}
@media (min-width: 1200px) {
  .page-information__reservation--wrap .box > a .box-inner {
    width: 330px;
  }
}
.page-information__reservation--wrap .box > a .box-inner > img {
  width: 29px;
  -o-object-fit: contain;
     object-fit: contain;
}