@charset "UTF-8";

/* ============================
/* Color
/* ========================= */

:root {
  --theme-base-bg: #ffffff;
  --theme-base-text: #29251F;
  --theme-main-primary: #E03F17;
  --theme-accent-primary: #2B6E98;
  --theme-button-primary: #E03F17;
  --theme-button-secondary: #2B6E98;
  --theme-bg-primary: #C6D6E0;
  --theme-bg-secondary: #EAD7BB;
  --theme-bg-tertiary: #FFD0B1;
  --theme-bg-quaternary: #FFF7DD;
  --theme-bg-black: #0B010A;
  --theme-border-primary: #EDEAE4;
  --theme-black: #29251F;
  --theme-white: #ffffff;
  --theme-gray: #F8F8F8;
  --theme-button-primary-rgb: 224 63 23;
  --theme-button-secondary-rgb: 42 110 152;
  --theme-black-rgb: 11 1 10;
}

@-webkit-keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }

  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }

  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

/* ============================
/* base
/* ========================= */

html {
  font-size: 16px;
}

body {
  background-color: var(--theme-base-bg);
  font-family: "Noto Serif JP", serif;
  font-size: max(0.875rem, 12px);
  line-height: 2;
  letter-spacing: 0;
  color: var(--theme-base-text);
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll {
  overflow: hidden;
}

body .scroll-hint-icon {
  height: auto;
}

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

a[href^="tel:"] {
  pointer-events: none;
}

/* ============================
/* Reset
/* ========================= */

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */

ul,
ol {
  padding: 0;
}

/* Remove default margin */

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */

/* Set core body defaults */

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

/* Remove list styles on ul, ol elements with a class attribute */

ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

/* Make images easier to work with */

img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */

article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */

input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */

img:not([alt]) {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* form reset */

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

button {
  padding: 0;
}

input[type=checkbox],
input[type=radio] {
  width: 0;
  height: 0;
  padding: 0;
  margin: 0;
  opacity: 0;
  position: absolute;
  vertical-align: middle;
}

input[type=checkbox]:focus-visible + span,
input[type=radio]:focus-visible + span {
  outline: -webkit-focus-ring-color auto 5px;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.l-drawer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100vh;
}

.l-footer {
  width: 100%;
}

.l-header {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
}

.l-inner {
  max-width: 64.375rem;
  width: 100%;
  padding-inline: 25px;
  margin-inline: auto;
}

.l-inner.l-inner--wide {
  max-width: 64.375rem;
}

.c-content-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-content-heading.c-content-heading--reverse .c-content-heading__sub {
  color: var(--theme-white);
}

.c-content-heading.c-content-heading--reverse .c-content-heading__main {
  color: var(--theme-white);
}

.c-content-heading__sub {
  font-weight: 700;
  font-size: max(1.125rem, 16px);
  line-height: 1.4444444444;
  letter-spacing: 0.6em;
  text-align: center;
}

.c-content-heading__main {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: max(1.9375rem, 24px);
  line-height: 1.4516129032;
  text-align: center;
}

.c-gallery-modal {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  inset: 0;
  z-index: 1000;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
}

.c-gallery-modal.is-active {
  opacity: 1;
  visibility: visible;
}

.c-gallery-modal__overlay {
  position: absolute;
  inset: 0;
  background-color: rgb(var(--theme-black-rgb)/0.8);
}

.c-gallery-modal__content {
  position: absolute;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.c-gallery-modal__button {
  position: absolute;
  top: 1.5rem;
  right: 2.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: max(2.5rem, 32px);
  color: var(--theme-white);
}

.c-gallery-modal__slider .swiper-slide-image {
  margin-inline: auto;
  max-width: calc(100% - 8rem);
  aspect-ratio: 980/600;
  max-height: 70vh;
  overflow: hidden;
}

.c-gallery-modal__slider .swiper-slide-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.c-gallery-modal__slider .swiper-button-prev,
.c-gallery-modal__slider .swiper-button-next {
  margin-top: 0;
  position: absolute;
  top: 50%;
  width: 2.5rem;
  height: 2.5rem;
  background-image: url("../img/common/icon-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  color: transparent;
}

.c-gallery-modal__slider .swiper-button-prev {
  left: 0;
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

.c-gallery-modal__slider .swiper-button-next {
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.c-info-gallery {
  position: relative;
}

.c-info-gallery__grid {
  display: grid;
  grid-template-columns: 37.1875rem 1fr;
  grid-template-rows: auto auto;
  grid-template-areas: "gallery-item1 gallery-item2" "gallery-item1 gallery-item3";
}

.c-info-gallery__grid [data-grid-area=gallery-item1] {
  grid-area: gallery-item1;
}

.c-info-gallery__grid [data-grid-area=gallery-item2] {
  grid-area: gallery-item2;
}

.c-info-gallery__grid [data-grid-area=gallery-item3] {
  grid-area: gallery-item3;
}

.c-info-gallery__item-main,
.c-info-gallery__item-sub {
  cursor: pointer;
  -webkit-transition: -webkit-filter 0.3s;
  transition: -webkit-filter 0.3s;
  transition: filter 0.3s;
  transition: filter 0.3s, -webkit-filter 0.3s;
}

.c-info-gallery__item-main:hover,
.c-info-gallery__item-sub:hover {
  -webkit-filter: brightness(0.7);
          filter: brightness(0.7);
}

.c-info-gallery__item-main {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.c-info-gallery__item-main img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-info-gallery__item-sub {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.c-info-gallery__item-sub img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-info-gallery__button {
  position: absolute;
  left: 2.5rem;
  bottom: 0;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}

.c-info-gallery__switch {
  display: block;
  padding: 0.625rem 0.9375rem;
  background-color: rgb(var(--theme-button-primary-rgb)/0.9);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: max(1rem, 14px);
  line-height: 1.5;
  color: var(--theme-white);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.c-info-gallery__switch.c-info-gallery__switch--secondary {
  background-color: rgb(var(--theme-button-secondary-rgb)/0.9);
}

.c-info-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-info-name__image {
  width: calc(var(--pc-width) / 16 * 1rem);
}

.c-info-name__image img {
  width: 100%;
  height: auto;
}

.c-info-name__ja {
  font-weight: 700;
  font-size: max(1rem, 14px);
  line-height: 1.75;
  letter-spacing: 0.6em;
  text-align: center;
}

.c-info-name__en-main {
  margin-top: -0.25rem;
  max-width: 22.375rem;
  font-weight: 700;
  font-size: max(2.5rem, 32px);
  line-height: 1.25;
  text-align: center;
}

.c-info-name__en-sub {
  margin-top: 0.25rem;
  font-weight: 700;
  font-size: max(1.5rem, 20px);
  line-height: 1.25;
  text-align: center;
}

.c-info-name__en-sub.c-info-name__en-sub--fz20 {
  font-size: max(1.25rem, 16px);
  line-height: 1.45;
}

.c-info-name__en-sub.c-info-name__en-sub--fz16 {
  font-size: max(1rem, 14px);
  line-height: 1.25;
}

.c-info-overview__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.75rem;
}

.c-info-overview__item {
  display: grid;
  grid-template-columns: 8.75rem 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 1rem;
}

.c-info-overview__title,
.c-info-overview__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: max(1.25rem, 14px);
  line-height: 1.2;
  word-break: keep-all;
  display: block;
}

.c-info-overview__tags {
  margin-top: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem min(0.5555555556vw, 8px);
  max-width: 30rem;
}

.c-info-overview__tags.c-info-overview__tags--wide {
  max-width: 35rem;
}

.c-info-overview__tag {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 1.25rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: max(0.875rem, 12px);
  line-height: 1.4285714286;
}

.c-info-overview__tag::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.c-info-overview__tag[data-cat=tour-type]::before {
  background-image: url("../img/common/icon-tour-type.svg");
}

.c-info-overview__tag[data-cat=stay]::before {
  background-image: url("../img/common/icon-stay.svg");
}

.c-info-overview__tag[data-cat=expert]::before {
  background-image: url("../img/common/icon-expert.svg");
}

.c-info-overview__tag[data-cat=time]::before {
  background-image: url("../img/common/icon-time.svg");
}

.c-info-overview__tag[data-cat=language]::before {
  background-image: url("../img/common/icon-language.svg");
}

.c-info-overview__tag[data-cat=meal]::before {
  background-image: url("../img/common/icon-meal.svg");
}

.c-info-overview__tag::after {
  content: "｜";
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: center;
  padding-left: min(0.5555555556vw, 8px);
}

.c-info-overview__tag:nth-child(3n)::after {
  display: none;
}

.c-info-overview__tag:last-child::after {
  display: none;
}

.c-info-reserve__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: max(1.25rem, 16px);
  line-height: 1.7;
}

.c-info-reserve__content {
  margin-top: 0.5rem;
}

.c-info-reserve__grid {
  display: grid;
  grid-template-columns: min(16.6666666667vw, 183px) 1fr;
  gap: 0.125rem;
  grid-template-areas: "reserve-price reserve-ja" "reserve-price reserve-en" "reserve-price reserve-cn";
}

.c-info-reserve__grid [data-grid-area=reserve-price] {
  grid-area: reserve-price;
}

.c-info-reserve__grid [data-grid-area=reserve-ja] {
  grid-area: reserve-ja;
}

.c-info-reserve__grid [data-grid-area=reserve-en] {
  grid-area: reserve-en;
}

.c-info-reserve__grid [data-grid-area=reserve-cn] {
  grid-area: reserve-cn;
}

.c-info-reserve__price {
  padding: 1.375rem min(1.5277777778vw, 22px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.25rem;
  background-color: var(--theme-black);
  color: var(--theme-white);
}

.c-info-reserve__price-small-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: max(0.875rem, 12px);
  line-height: 1.4285714286;
}

.c-info-reserve__price-large-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: max(1.75rem, 22px);
  line-height: 100%;
}

.c-info-reserve__booking {
  background-color: var(--theme-button-primary);
  color: var(--theme-white);
}

.c-info-reserve__booking.c-info-reserve__booking--secondary {
  background-color: var(--theme-button-secondary);
}

.c-info-reserve__booking-link {
  padding: 0.625rem 0.625rem 0.625rem 0.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(0.2777777778vw, 4px);
  position: relative;
  z-index: 0;
}

.c-info-reserve__booking-link::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  display: block;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: -webkit-gradient(linear, left top, right top, from(#2b6e98), to(#23526f));
  background: linear-gradient(90deg, #2b6e98 0%, #23526f 100%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
}

.c-info-reserve__booking-link.c-info-reserve__booking-link--blue::before {
  background: -webkit-gradient(linear, left top, right top, from(#E56139), to(#C94500));
  background: linear-gradient(90deg, #E56139 0%, #C94500 100%);
}

.c-info-reserve__booking-title {
  -ms-flex-preferred-size: 9.1875rem;
      flex-basis: 9.1875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: max(0.875rem, 12px);
  line-height: 1.4285714286;
  letter-spacing: 0.1em;
}

.c-info-reserve__booking-text {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: max(1.125rem, 16px);
  line-height: 1.4444444444;
}

.c-information {
  background-color: var(--theme-white);
  overflow: hidden;
}

.c-information__grid {
  display: grid;
  grid-template-columns: min(37.9166666667vw, 434px) 1fr;
  grid-template-rows: auto;
  grid-template-areas: "gallery gallery" "name overview" "name reserve";
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-information__grid [data-grid-area=info-gallery] {
  grid-area: gallery;
}

.c-information__grid [data-grid-area=info-name] {
  grid-area: name;
}

.c-information__grid [data-grid-area=info-overview] {
  grid-area: overview;
}

.c-information__grid [data-grid-area=info-reserve] {
  grid-area: reserve;
}

.c-information__overview {
  margin-top: 2.5rem;
  padding-right: min(1.3888888889vw, 20px);
}

.c-information__reserve {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  padding-right: min(2.7777777778vw, 40px);
}

.c-introduction-card {
  width: 100%;
  max-width: 56.25rem;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 24.6875rem 1fr;
}

.c-introduction-card__image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.c-introduction-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-introduction-card__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 1.875rem 2.5rem 1.5rem;
  background-color: var(--theme-white);
}

.c-introduction-card__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.7142857143;
}

.c-introduction-card__detail {
  margin-top: 1.125rem;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.7142857143;
}

.c-introduction-card__link {
  margin-top: auto;
}

.c-introduction-card__link a {
  display: block;
  position: relative;
  padding-left: 1.25rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: max(0.875rem, 12px);
  line-height: 1.4285714286;
  letter-spacing: 0.1em;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.c-introduction-card__link a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1rem;
  height: 1rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url("../img/common/icon-website.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.c-introduction-card__link a:hover {
  opacity: 0.7;
}

.c-product-content__main {
  margin-top: 3.125rem;
}

.c-product-content__paragraph + .c-product-content__paragraph {
  position: relative;
  margin-top: 1lh;
  padding-top: 1lh;
}

.c-product-content__paragraph + .c-product-content__paragraph::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0.0625rem;
  background-color: var(--theme-white);
}

.c-product-content__paragraph + .c-product-content__paragraph.c-product-content__paragraph--no-line {
  padding-top: 0;
}

.c-product-content__paragraph + .c-product-content__paragraph.c-product-content__paragraph--no-line::before {
  display: none;
}

.c-product-content__heading {
  font-weight: 700;
  font-size: max(1.125rem, 16px);
  line-height: 1.5555555556;
}

.c-text-notice {
  text-align: center;
  font-size: 1rem;
  margin-top: 2.5rem;
}

.p-about {
  padding-top: 4.5rem;
  padding-bottom: 5.5rem;
  background-color: var(--theme-bg-black);
  background-image: url("../img/lp/about-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.p-about__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-about__logo {
  padding-left: 2.5rem;
}

.p-about__logo img {
  margin-inline: auto;
  width: 18.0625rem;
  max-width: 100%;
  height: auto;
  aspect-ratio: 289/195;
}

.p-about__text {
  font-weight: 600;
  color: var(--theme-white);
}

.p-about__text + .p-about__text {
  margin-top: 1lh;
}

.p-back-top {
  width: 100%;
}

.p-back-top__inner {
  position: relative;
}

.c-back-top__button {
  position: absolute;
  right: 1rem;
  top: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.c-back-top__button::before {
  content: "";
  display: block;
  width: 3.625rem;
  height: 3.5rem;
  background-color: var(--theme-button-primary);
  -webkit-mask: url(../img/common/button-frame-main.svg) no-repeat center/contain;
          mask: url(../img/common/button-frame-main.svg) no-repeat center/contain;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.c-back-top__button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
          transform: translate(-50%, -50%) rotate(-90deg);
  display: block;
  width: 0.6875rem;
  height: 1.125rem;
  background-image: url("../img/common/icon-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.c-back-top__button:hover::before {
  background-color: color-mix(in lch, var(--theme-button-primary), #000 15%);
}

.p-castle {
  background: linear-gradient(160deg, #ffe6de 10%, #ffd0b1 90%);
  padding-top: 5.375rem;
  padding-bottom: 8rem;
}

.p-castle__content {
  margin-top: 2.5rem;
}

.p-castle__cuisine {
  margin-top: 5rem;
}

.p-castle__cuisine-gallery {
  margin-top: 2.5rem;
}

.p-castle__cuisine-gallery-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.0625rem;
}

.p-castle__cuisine-gallery-item {
  width: 100%;
  aspect-ratio: 326/218;
  overflow: hidden;
}

.p-castle__cuisine-gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-castle__cuisine-menu {
  margin-top: 2.625rem;
}

.p-castle__cuisine-menu-wrap {
  display: grid;
  grid-template-columns: 1fr min(50vw, 556px);
  gap: 1.5rem;
}

.p-castle__cuisine-menu-body {
  padding: 2.5rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2.5rem;
}

.p-castle__cuisine-menu-title {
  font-weight: 700;
  font-size: max(1.125rem, 16px);
  line-height: 2.2222222222;
}

.p-castle__cuisine-menu-item {
  font-size: max(1rem, 14px);
  line-height: 2.5;
}

.p-castle__cuisine-menu-note {
  font-size: max(1rem, 14px);
  line-height: 2.5;
}

.p-castle__cuisine-menu-gallery {
  position: relative;
  height: 100%;
  min-height: 40.25rem;
}

.p-castle__cuisine-menu-image-01 {
  position: absolute;
  top: 0;
  right: 0;
  width: 25.75rem;
  aspect-ratio: 412/275;
  overflow: hidden;
  z-index: 1;
}

.p-castle__cuisine-menu-image-01 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-castle__cuisine-menu-image-02 {
  position: absolute;
  top: 15.25rem;
  left: 0;
  width: 22.8125rem;
  aspect-ratio: 365/244;
  overflow: hidden;
  z-index: 2;
}

.p-castle__cuisine-menu-image-02 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-castle__cuisine-menu-image-03 {
  position: absolute;
  bottom: 0;
  right: 3.5rem;
  width: 11.3125rem;
  aspect-ratio: 181/234;
  overflow: hidden;
  z-index: 3;
}

.p-castle__cuisine-menu-image-03 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-castle__cuisine-profile {
  margin-top: 5rem;
}

.p-castle__meeting-point {
  margin-top: 4.5rem;
}

.p-castle__meeting-point-card {
  margin-top: 1.75rem;
}

.p-dinner {
  background: linear-gradient(200deg, #d5b88e 50%, #b2662f 100%);
  padding-top: 4.375rem;
  padding-bottom: 5.625rem;
}

.p-dinner__content {
  margin-top: 4.5rem;
}

.p-dinner__cuisine {
  margin-top: 3.75rem;
}

.p-dinner__cuisine-cards {
  margin-top: 2rem;
}

.p-dinner__cuisine-cards-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.p-dinner__cuisine-card {
  background-color: var(--theme-white);
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
}

.p-dinner__cuisine-card-image {
  width: 100%;
  aspect-ratio: 321/214;
  overflow: hidden;
}

.p-dinner__cuisine-card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-dinner__cuisine-card-title {
  padding: 1.5rem 1.25rem 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-dinner__cuisine-card-name {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.4285714286;
}

.p-dinner__cuisine-card-link a {
  display: block;
  position: relative;
  padding-left: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: max(0.75rem, 12px);
  line-height: 1.4166666667;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.p-dinner__cuisine-card-link a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.875rem;
  height: 0.875rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url("../img/common/icon-website.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.p-dinner__cuisine-card-link a:hover {
  opacity: 0.7;
}

.p-dinner__cuisine-card-detail {
  padding: 0 1.25rem 1.875rem;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5714285714;
}

.p-dinner__cuisine-menu {
  margin-top: 6rem;
}

.p-dinner__cuisine-menu-wrap {
  display: grid;
  grid-template-columns: min(50vw, 556px) 1fr;
  gap: 3.125rem;
}

.p-dinner__cuisine-menu-gallery {
  position: relative;
  height: 100%;
  min-height: 43.125rem;
}

.p-dinner__cuisine-menu-image-01 {
  position: absolute;
  top: 0;
  left: 0;
  width: 24.1875rem;
  aspect-ratio: 387/258;
  overflow: hidden;
  z-index: 3;
}

.p-dinner__cuisine-menu-image-01 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-dinner__cuisine-menu-image-02 {
  position: absolute;
  top: 12.5rem;
  right: 0;
  width: 17.75rem;
  aspect-ratio: 284/426;
  overflow: hidden;
  z-index: 2;
}

.p-dinner__cuisine-menu-image-02 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-dinner__cuisine-menu-image-03 {
  position: absolute;
  bottom: 0;
  left: 2.5rem;
  width: 11.25rem;
  aspect-ratio: 180/270;
  overflow: hidden;
  z-index: 1;
}

.p-dinner__cuisine-menu-image-03 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-dinner__cuisine-menu-body {
  padding: 2.5rem 0.75rem;
}

.p-dinner__cuisine-menu-text {
  font-weight: 600;
  line-height: 1.8571428571;
  color: var(--theme-white);
}

.p-dinner__cuisine-menu-list {
  margin-top: 3.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.875rem;
}

.p-dinner__cuisine-menu-item {
  font-weight: 600;
  font-size: max(1.125rem, 16px);
  line-height: 1.4444444444;
  color: var(--theme-white);
}

.p-dinner__meeting-point {
  margin-top: 3.125rem;
}

.p-dinner__meeting-point-card {
  margin-top: 2rem;
}

.p-drawer {
  overflow-x: hidden;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
}

.p-drawer__overlay {
  position: absolute;
  inset: 0;
}

.p-drawer__container {
  width: 100%;
  height: 100%;
  min-height: 29.875rem;
  max-height: 100dvh;
  overflow-y: auto;
  padding-right: 3.875rem;
  background-color: var(--theme-white);
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.p-drawer__inner {
  width: calc(66.875rem + 25px + 25px);
  max-width: 100%;
  height: 100%;
  margin-inline: auto;
  padding-inline: 50px 0;
}

.p-drawer__content {
  width: 100%;
  height: 29.875rem;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  opacity: 0;
  visibility: hidden;
}

.p-drawer__logo {
  width: 21.5rem;
  aspect-ratio: 344/327;
  overflow: hidden;
}

.p-drawer__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-drawer__body {
  width: min(45.3125vw, 404px);
  max-width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-drawer__item.p-drawer__item--main {
  padding-bottom: 0.625rem;
  border-bottom: 0.0625rem solid var(--theme-border-primary);
}

.p-drawer__item.p-drawer__item--main + .p-drawer__item {
  padding-top: 0.625rem;
}

.p-drawer__item-link {
  display: block;
  padding-block: 0.625rem;
  position: relative;
  z-index: 0;
}

.p-drawer__item-link::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  display: block;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: -webkit-gradient(linear, left bottom, left top, from(#E56139), to(#C94500));
  background: linear-gradient(0deg, #E56139 0%, #C94500 100%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
}

.p-drawer__main-item-title {
  position: relative;
  padding-left: 2rem;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.2222222222;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.p-drawer__main-item-title .frame-arrow {
  position: absolute;
  top: 50%;
  left: min(0.4375rem, 7px);
  width: 1rem;
  height: 1rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: var(--theme-button-primary);
  -webkit-mask: url(../img/common/button-frame-main.svg) no-repeat center/contain;
          mask: url(../img/common/button-frame-main.svg) no-repeat center/contain;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.p-drawer__main-item-title .frame-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.25rem;
  height: 0.375rem;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: var(--theme-white);
  -webkit-mask: url(../img/common/icon-arrow.svg) no-repeat center/contain;
          mask: url(../img/common/icon-arrow.svg) no-repeat center/contain;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.p-drawer__main-item-text {
  padding-left: 2rem;
  margin-top: 0.625rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: max(0.75rem, 10px);
  line-height: 1.3333333333;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.p-drawer__item-title {
  position: relative;
  padding-left: 2rem;
  font-weight: 700;
  font-size: max(1rem, 14px);
  line-height: 1.4375;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.p-drawer__item-title::before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 0.375rem;
  width: 0.875rem;
  height: 0.875rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #ac772f;
  -webkit-mask: url(../img/common/icon-simple-arrow.svg) no-repeat center/contain;
          mask: url(../img/common/icon-simple-arrow.svg) no-repeat center/contain;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

/* ===============================================
# MARK: hover
=============================================== */

.p-faq {
  padding-block: 3.375rem;
}

.p-faq__heading {
  font-weight: 700;
  font-size: max(1.875rem, 24px);
  line-height: 1.4666666667;
}

.p-faq__lead {
  margin-top: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: max(0.75rem, 12px);
  line-height: 1.5833333333;
}

.p-faq__list {
  margin-top: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
}

.p-faq__item {
  padding: 1.25rem 1.875rem;
  background-color: var(--theme-bg-quaternary);
  border-radius: 1.875rem;
  cursor: pointer;
}

.p-faq__question {
  position: relative;
  padding-right: 2.5rem;
}

.p-faq__question::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
  display: block;
  width: 0.625rem;
  height: 1.25rem;
  background-color: var(--theme-black);
  -webkit-mask: url(../img/common/icon-arrow.svg) no-repeat center;
          mask: url(../img/common/icon-arrow.svg) no-repeat center;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.p-faq__question.is-open::after {
  -webkit-transform: translateY(-50%) rotate(-90deg);
          transform: translateY(-50%) rotate(-90deg);
}

.p-faq__question-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: max(1.4375rem, 16px);
  line-height: 1.4782608696;
}

.p-faq__answer {
  overflow: hidden;
}

.p-faq__answer-text {
  padding-top: 1.875rem;
  padding-bottom: 0.625rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: max(0.875rem, 12px);
  line-height: 1.7142857143;
}

.p-footer {
  width: 100%;
  padding-top: 3.125rem;
}

.p-footer__sponsors {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2.875rem;
}

.p-footer__sponsor-logo {
  display: block;
  height: 8.3125rem;
  aspect-ratio: 168/133;
  overflow: hidden;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.p-footer__sponsor-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-footer__sponsor-logo.p-footer__sponsor-logo--wide {
  aspect-ratio: 187/133;
}

.p-footer__copy {
  margin-top: 2.9375rem;
  padding-bottom: 1.5rem;
}

.p-footer__copy-text {
  text-align: center;
}

.p-hamburger {
  position: relative;
  z-index: 1000;
  background-color: var(--theme-main-primary);
  padding: 1.3125rem 1rem;
  cursor: pointer;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.p-hamburger:hover {
  background-color: color-mix(in lch, var(--theme-main-primary), #000 15%);
}

.p-hamburger__body {
  position: relative;
  width: 1.875rem;
  height: 1.3125rem;
}

.p-hamburger__line {
  position: absolute;
  left: 0;
  width: 1.875rem;
  height: 0.1875rem;
  border-radius: 100vh;
  background-color: var(--theme-white);
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
  transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
}

.p-hamburger__line:nth-child(1) {
  top: 0;
}

.p-hamburger__line:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-hamburger__line:nth-child(3) {
  bottom: 0;
}

/* 開いているときのstyle */

.p-hamburger.is-active .p-hamburger__line {
  top: 50%;
  left: 50%;
  -webkit-transform-origin: center;
          transform-origin: center;
}

.p-hamburger.is-active .p-hamburger__line:nth-child(1) {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.p-hamburger.is-active .p-hamburger__line:nth-child(2) {
  opacity: 0;
}

.p-hamburger.is-active .p-hamburger__line:nth-child(3) {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.p-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.p-header__nav {
  position: relative;
  background-color: var(--theme-white);
  z-index: 1000;
}

.p-header__nav-list {
  padding-inline: 1.375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-header__nav-item a {
  display: block;
  padding: 1.3125rem 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.4285714286;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.p-header__nav-item a:hover {
  color: var(--theme-main-primary);
}

.p-header__nav-item a.is-active {
  pointer-events: none;
  position: relative;
  z-index: 0;
}

.p-header__nav-item a.is-active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 0.5rem;
  height: auto;
  aspect-ratio: 1/1;
  -webkit-transform: translate(-50%, 1rem);
          transform: translate(-50%, 1rem);
  background-image: url(../img/common/icon-current.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.p-making {
  background-color: var(--theme-bg-tertiary);
  padding-top: 4.375rem;
  padding-bottom: 5.625rem;
}

.p-making__content {
  margin-top: 2.5rem;
}

.p-making__meeting-point {
  margin-top: 5rem;
}

.p-making__meeting-point-card {
  margin-top: 2rem;
}

.p-museum {
  background-color: var(--theme-bg-secondary);
  padding-top: 4.375rem;
  padding-bottom: 5.625rem;
}

.p-museum__content {
  margin-top: 2.5rem;
}

.p-museum__meeting-point {
  margin-top: 5rem;
}

.p-museum__meeting-point-card {
  margin-top: 2rem;
}

.p-mv {
  width: 100%;
}

.p-mv__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.p-mv__body {
  padding-right: 3.5rem;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: min(0.75rem, 12px);
  padding-bottom: 2.75rem;
}

.p-mv__logo {
  margin-top: min(0.75rem, 12px);
  width: min(27.125rem, 434px);
  max-width: 100%;
  aspect-ratio: 434/412;
  overflow: hidden;
}

.p-mv__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-mv__nav {
  width: min(25.25rem, 404px);
  max-width: 100%;
}

.p-mv__item.p-mv__item--main {
  padding-bottom: min(0.625rem, 10px);
  border-bottom: min(0.0625rem, 1px) solid var(--theme-border-primary);
}

.p-mv__item-link {
  display: block;
  padding-block: min(0.625rem, 10px);
  position: relative;
  z-index: 0;
}

.p-mv__item-link::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  display: block;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: -webkit-gradient(linear, left bottom, left top, from(#E56139), to(#C94500));
  background: linear-gradient(0deg, #E56139 0%, #C94500 100%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
}

.p-mv__main-item-title {
  position: relative;
  padding-left: min(2rem, 32px);
  font-weight: 700;
  font-size: clamp(16px, 1.125rem, 18px);
  line-height: 1.2222222222;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.p-mv__main-item-title .frame-arrow {
  position: absolute;
  top: 50%;
  left: min(0.4375rem, 7px);
  width: min(1rem, 16px);
  height: min(1rem, 16px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: var(--theme-button-primary);
  -webkit-mask: url(../img/common/button-frame-main.svg) no-repeat center/contain;
          mask: url(../img/common/button-frame-main.svg) no-repeat center/contain;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.p-mv__main-item-title .frame-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(0.25rem, 4px);
  height: min(0.375rem, 6px);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: var(--theme-white);
  -webkit-mask: url(../img/common/icon-arrow.svg) no-repeat center/contain;
          mask: url(../img/common/icon-arrow.svg) no-repeat center/contain;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.p-mv__main-item-text {
  padding-left: min(2rem, 32px);
  margin-top: min(0.625rem, 10px);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(10px, 0.75rem, 12px);
  line-height: 1.3333333333;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.p-mv__item-title {
  position: relative;
  padding-left: min(2rem, 32px);
  font-weight: 700;
  font-size: clamp(14px, 1rem, 16px);
  line-height: 1.4375;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.p-mv__item-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: min(0.375rem, 6px);
  width: min(0.875rem, 14px);
  height: min(0.875rem, 14px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #ac772f;
  -webkit-mask: url(../img/common/icon-simple-arrow.svg) no-repeat center/contain;
          mask: url(../img/common/icon-simple-arrow.svg) no-repeat center/contain;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.p-mv__slider {
  width: 100%;
  max-width: 40rem;
  height: 100%;
  overflow: hidden;
}

.p-mv__slider .swiper {
  width: 100%;
  height: inherit;
}

.p-mv__slider .swiper .swiper-wrapper {
  position: relative;
  height: inherit;
}

.p-mv__slider .swiper .swiper-mask {
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, right bottom, color-stop(15%, #e8b165), color-stop(85%, #d54d05));
  background: linear-gradient(to right bottom, #e8b165 15%, #d54d05 85%);
  z-index: 2;
}

.p-mv__slider .swiper .swiper-slide {
  height: inherit;
}

.p-mv__slider .swiper .swiper-slide-image {
  height: inherit;
  overflow: hidden;
}

.p-mv__slider .swiper .swiper-slide-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

/* ===============================================
# MARK: hover
=============================================== */

.p-tour {
  padding-top: 2.5rem;
  padding-bottom: 6rem;
  background-color: var(--theme-bg-primary);
  background-image: url("../img/lp/tour-bg.png");
  background-size: contain;
  background-repeat: repeat;
  background-position: center;
}

.p-tour__heading-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-tour__heading-subtitle {
  font-weight: 700;
  font-size: max(1.25rem, 16px);
  line-height: 1.45;
  text-align: center;
}

.p-tour__heading-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: max(1.75rem, 22px);
  line-height: 1.4285714286;
  text-align: center;
}

.p-tour__content-text {
  margin-top: 1.375rem;
  font-weight: 600;
}

.p-tour__content-text .paragraph {
  display: block;
}

.p-tour__content-text .paragraph + .paragraph {
  margin-top: 1lh;
}

.p-tour__gallery {
  margin-top: 2.25rem;
}

.p-tour__gallery-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5625rem;
}

.p-tour__gallery-item {
  width: 19.375rem;
  aspect-ratio: 310/513;
  border-radius: 1.875rem;
  overflow: hidden;
}

.p-tour__gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-tour__timetable {
  margin-top: 3.75rem;
}

.p-tour__timetable-container {
  position: relative;
  margin-top: 1.625rem;
  padding: 3.125rem 5.5rem 8.5rem;
  background-color: var(--theme-gray);
  border-radius: 2.5rem;
}

.p-tour__timetable-hidden {
  overflow: hidden;
  height: 0;
}

.p-tour__timetable-hidden .p-tour__timetable-day {
  margin-top: 2.8125rem;
}

.p-tour__timetable-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: var(--theme-white);
  padding: 0.375rem 1.25rem;
  border-radius: 100vh;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: max(1.125rem, 14px);
  line-height: 1.4444444444;
}

.p-tour__timetable-list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-inline: 1.125rem;
}

.p-tour__timetable-list::before {
  content: "";
  display: block;
  position: absolute;
  top: 1.25rem;
  bottom: 1.25rem;
  left: 2.625rem;
  width: 0.125rem;
  height: calc(100% - 2.5rem);
  z-index: 1;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#000), color-stop(0.3125rem, #000), color-stop(0.3125rem, transparent), to(transparent));
  background-image: linear-gradient(to bottom, #000, #000 0.3125rem, transparent 0.3125rem, transparent);
  background-size: 0.125rem 0.4375rem;
  background-repeat: repeat-y;
  background-position: left top;
}

.p-tour__timetable-item {
  position: relative;
  display: grid;
  grid-template-columns: 5rem 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  z-index: 2;
}

.p-tour__timetable-time {
  margin-top: 0.75rem;
  padding-block: 0.5rem;
  background-color: var(--theme-gray);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: max(1.25rem, 16px);
  line-height: 1.45;
}

.p-tour__timetable-body {
  padding-block: 1.25rem;
  border-bottom: 0.0625rem solid var(--theme-black);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: max(1.25rem, 16px);
  line-height: 1.45;
}

.p-tour__timetable-switch {
  position: absolute;
  left: 0;
  bottom: 2.5rem;
  width: 100%;
  padding-top: 25rem;
  text-align: center;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(248, 248, 248, 0)), color-stop(85%, rgb(248, 248, 248)));
  background: linear-gradient(180deg, rgba(248, 248, 248, 0) 0%, rgb(248, 248, 248) 85%);
  z-index: 2;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}

.p-tour__timetable-switch.is-active {
  background: none;
}

.p-tour__timetable-switch.is-active::before {
  background-image: url("../img/common/icon-minus.svg");
}

.p-tour__timetable-switch-button {
  position: relative;
  width: 2.75rem;
  height: 2.6875rem;
  background-color: var(--theme-black);
  -webkit-mask: url(../img/common/button-frame-black.svg) no-repeat center/contain;
          mask: url(../img/common/button-frame-black.svg) no-repeat center/contain;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.p-tour__timetable-switch-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.875rem;
  height: 0.875rem;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-image: url("../img/common/icon-plus.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: background-image 0.3s;
  transition: background-image 0.3s;
}

.p-tour__timetable-switch-button.is-active::before {
  background-image: url("../img/common/icon-minus.svg");
}

.p-tour__information {
  margin-top: 2.75rem;
}

.p-tour__information-wrap {
  padding-inline: 2.75rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 0 6.5rem;
  grid-template-areas: "item1-title item2-title" "item1-image item2-image" "item1-body item2-body";
}

.p-tour__information-wrap [data-grid-area=item1-title] {
  grid-area: item1-title;
}

.p-tour__information-wrap [data-grid-area=item1-image] {
  grid-area: item1-image;
}

.p-tour__information-wrap [data-grid-area=item2-title] {
  grid-area: item2-title;
}

.p-tour__information-wrap [data-grid-area=item2-image] {
  grid-area: item2-image;
}

.p-tour__information-item {
  display: contents;
}

.p-tour__information-title {
  margin-bottom: 0.625rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: max(1.875rem, 22px);
  line-height: 1.4666666667;
  letter-spacing: 0.1em;
  text-align: center;
}

.p-tour__card {
  display: contents;
}

.p-tour__card-image {
  width: 100%;
  aspect-ratio: 395/263;
  border-radius: 1.25rem 1.25rem 0 0;
  overflow: hidden;
}

.p-tour__card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-tour__card-body {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  background-color: var(--theme-white);
  padding: 1rem 1.25rem;
}

.p-tour__card-name {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: max(1.25rem, 16px);
  line-height: 1.2;
}

.p-tour__card-detail {
  margin-top: 0.625rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: max(0.875rem, 12px);
  line-height: 1.7142857143;
}

.p-tour__card-link {
  margin-top: 1.75rem;
}

.p-tour__card-link a {
  display: block;
  position: relative;
  padding-left: 1.25rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: max(0.875rem, 12px);
  line-height: 1.4285714286;
  letter-spacing: 0.1em;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.p-tour__card-link a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1rem;
  height: 1rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url("../img/common/icon-website.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.p-tour__card-link a:hover {
  opacity: 0.7;
}

.p-tour__reserve {
  margin-top: 4.125rem;
}

.u-sp {
  display: none;
}

.u-sp-flex {
  display: none;
}

.u-alternative {
  position: fixed !important;
  inset-block-start: 0 !important;
  inset-inline-start: 0 !important;
  display: block !important;
  inline-size: 4px !important;
  block-size: 4px !important;
  contain: strict !important;
  pointer-events: none !important;
  opacity: 0 !important;
}

.u-mt-0 {
  margin-top: 0;
}

.u-mr-0 {
  margin-right: 0;
}

.u-mb-0 {
  margin-bottom: 0;
}

.u-ml-0 {
  margin-left: 0;
}

.u-ttu {
  text-transform: uppercase;
}

.u-ttc {
  text-transform: capitalize;
}

.u-ttl {
  text-transform: lowercase;
}

@media screen and (min-width: 1280px) {
  html {
    font-size: 16px;
  }

  .p-mv__slider {
    max-width: initial;
  }
}

@media screen and (max-width: 1029px) {
  html {
    font-size: 1.5533980583vw;
  }
}

@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }

  a[href^="tel:"] {
    pointer-events: auto;
  }

  .l-inner {
    max-width: 33.25rem;
    padding-inline: 16px;
  }

  .l-inner.l-inner--wide {
    max-width: 33.25rem;
  }

  .c-content-heading__sub {
    font-size: 1rem;
  }

  .c-content-heading__sub.c-content-heading__sub--sp-fz15 {
    font-size: 0.9375rem;
    line-height: 1.4;
  }

  .c-content-heading__sub.c-content-heading__sub--sp-fz13 {
    font-size: 0.8125rem;
    line-height: 1.4615384615;
  }

  .c-gallery-modal__button {
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
  }

  .c-gallery-modal__slider .swiper-slide-image {
    max-width: calc(100% - 5rem);
    aspect-ratio: 980/600;
    max-height: 70vh;
  }

  .c-gallery-modal__slider .swiper-button-prev,
  .c-gallery-modal__slider .swiper-button-next {
    width: 1.5rem;
    height: 1.5rem;
  }

  .c-info-gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    grid-template-areas: "gallery-item1 gallery-item1" "gallery-item2 gallery-item3";
  }

  .c-info-gallery__button {
    left: 0;
  }

  .c-info-gallery__switch {
    padding: 0.5rem 0.875rem;
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }

  .c-info-name__image {
    width: calc(var(--sp-width) / 16 * 1rem);
  }

  .c-info-name__ja {
    font-size: 1rem;
  }

  .c-info-name__en-main {
    font-size: 2.375rem;
    line-height: 1.3157894737;
  }

  .c-info-name__en-sub {
    font-size: 1.25rem;
    line-height: 1.3;
  }

  .c-info-name__en-sub.c-info-name__en-sub--fz20 {
    font-size: 1.25rem;
  }

  .c-info-name__en-sub.c-info-name__en-sub--fz16 {
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }

  .c-info-overview {
    padding-inline: 1rem;
    width: 100%;
    margin-inline: auto;
  }

  .c-info-overview__item {
    grid-template-columns: 8.25rem 1fr;
    gap: 0.5rem;
  }

  .c-info-overview__title,
  .c-info-overview__text {
    font-size: 1.125rem;
  }

  .c-info-overview__title.c-info-overview__title--sp-small,
  .c-info-overview__text.c-info-overview__text--sp-small {
    font-size: 0.875rem;
    line-height: 1.4285714286;
    -webkit-margin-before: 0.0625rem;
            margin-block-start: 0.0625rem;
  }

  .c-info-overview__tags {
    margin-top: 1rem;
    gap: 0.625rem 0.5rem;
    max-width: 21.875rem;
  }

  .c-info-overview__tags.c-info-overview__tags--wide {
    max-width: 21.875rem;
  }

  .c-info-overview__tag {
    font-size: 0.8125rem;
    line-height: 1.4615384615;
  }

  .c-info-overview__tag::after {
    padding-left: 0.5rem;
  }

  .c-info-overview__tag:nth-child(2n)::after {
    display: none;
  }

  .c-info-overview__tag:nth-child(3n)::after {
    display: block;
  }

  .c-info-reserve__title {
    font-size: 1.25rem;
    text-align: center;
  }

  .c-info-reserve__content {
    padding-inline: 1rem;
  }

  .c-info-reserve__grid {
    width: 100%;
    margin-inline: auto;
    grid-template-columns: 1fr;
    grid-template-areas: "reserve-price" "reserve-ja" "reserve-en" "reserve-cn";
  }

  .c-info-reserve__price {
    padding: 0.375rem 0.875rem;
  }

  .c-info-reserve__price-small-text {
    font-size: 0.875rem;
  }

  .c-info-reserve__price-large-text {
    font-size: 1.75rem;
  }

  .c-info-reserve__booking-title {
    -ms-flex-preferred-size: 8.75rem;
        flex-basis: 8.75rem;
    font-size: 0.875rem;
  }

  .c-info-reserve__booking-text {
    font-size: 1.125rem;
  }

  .c-information__grid {
    grid-template-columns: 1fr;
    grid-template-areas: "name" "gallery" "overview" "reserve";
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }

  .c-information__name {
    margin-block: 1.5rem;
  }

  .c-information__overview {
    padding-right: 0;
  }

  .c-information__reserve {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    padding-right: 0;
  }

  .c-introduction-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .c-introduction-card__image {
    aspect-ratio: 358/239;
  }

  .c-introduction-card__body {
    padding: 1rem 1.5rem 1.5rem;
  }

  .c-introduction-card__detail {
    margin-top: 1rem;
  }

  .c-introduction-card__link {
    margin-top: 1.5rem;
  }

  .c-introduction-card__link a {
    font-size: 0.875rem;
  }

  .c-product-content__main {
    margin-top: 2.625rem;
  }

  .c-product-content__heading {
    font-size: 1.125rem;
  }

  .p-about {
    padding-top: 2.75rem;
    padding-bottom: 10rem;
    background-position: center bottom;
    background-image: url("../img/lp/about-bg-sp.jpg");
  }

  .p-about__container {
    display: block;
  }

  .p-about__body {
    padding-inline: 1.1875rem;
  }

  .p-about__text {
    font-size: 0.75rem;
    line-height: 2.1666666667;
  }

  .c-back-top__button {
    right: 1.875rem;
  }

  .p-castle {
    padding-top: 1.5625rem;
    padding-bottom: 4.125rem;
  }

  .p-castle__content {
    margin-top: 1.5625rem;
  }

  .p-castle__cuisine {
    margin-top: 2.5rem;
  }

  .p-castle__cuisine-gallery {
    margin-top: 2rem;
    margin-inline: calc(50% - 50vw);
    overflow: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .p-castle__cuisine-gallery::-webkit-scrollbar {
    display: none;
  }

  .p-castle__cuisine-gallery-wrap {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .p-castle__cuisine-gallery-items {
    grid-template-columns: repeat(3, 20.375rem);
  }

  .p-castle__cuisine-menu {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  .p-castle__cuisine-menu-wrap {
    max-width: 31.25rem;
    margin-inline: auto;
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .p-castle__cuisine-menu-body {
    padding: 0 16px;
  }

  .p-castle__cuisine-menu-title {
    font-size: 1.125rem;
  }

  .p-castle__cuisine-menu-item {
    font-size: 1rem;
  }

  .p-castle__cuisine-menu-note {
    font-size: 1rem;
  }

  .p-castle__cuisine-menu-gallery {
    height: auto;
    min-height: initial;
  }

  .p-castle__cuisine-menu-image-01 {
    position: static;
    width: 100%;
  }

  .p-castle__cuisine-menu-image-02 {
    top: min(63.8461538462vw, 19.875rem);
    left: 1.5rem;
    width: min(64.8717948718vw, 20.1875rem);
    z-index: 3;
  }

  .p-castle__cuisine-menu-image-03 {
    margin-top: min(27.6923076923vw, 8.25rem);
    margin-left: auto;
    margin-right: 1.5rem;
    position: relative;
    right: initial;
    bottom: initial;
    width: min(46.4102564103vw, 14.4375rem);
  }

  .p-castle__cuisine-profile {
    margin-top: 2.75rem;
    max-width: 31.25rem;
    margin-inline: auto;
    padding-inline: 16px;
  }

  .p-castle__meeting-point {
    margin-top: 3.875rem;
  }

  .p-castle__meeting-point-card {
    margin-top: 2.625rem;
  }

  .p-dinner {
    padding-top: 1.5625rem;
    padding-bottom: 2.1875rem;
  }

  .p-dinner__content {
    margin-top: 1.5625rem;
  }

  .p-dinner__cuisine {
    margin-top: 2.125rem;
  }

  .p-dinner__cuisine-cards {
    margin-top: 1rem;
    margin-inline: calc(50% - 50vw);
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .p-dinner__cuisine-cards::-webkit-scrollbar {
    display: none;
  }

  .p-dinner__cuisine-cards-wrap {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    grid-template-columns: repeat(3, 20.0625rem);
    gap: 0.75rem;
    padding-inline: 16px;
  }

  .p-dinner__cuisine-card-link a {
    font-size: 0.75rem;
  }

  .p-dinner__cuisine-menu {
    margin-top: 2.5rem;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  .p-dinner__cuisine-menu-wrap {
    max-width: 31.25rem;
    margin-inline: auto;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .p-dinner__cuisine-menu-gallery {
    height: auto;
    min-height: initial;
  }

  .p-dinner__cuisine-menu-image-01 {
    position: static;
    width: 100%;
  }

  .p-dinner__cuisine-menu-image-02 {
    top: 14.75rem;
    right: 1.5rem;
    width: min(46.1538461538vw, 14.5rem);
    z-index: 3;
  }

  .p-dinner__cuisine-menu-image-03 {
    margin-top: 5.375rem;
    margin-left: 1.5rem;
    position: static;
    width: min(37.1794871795vw, 11.625rem);
  }

  .p-dinner__cuisine-menu-body {
    padding: 0 2rem;
  }

  .p-dinner__cuisine-menu-list {
    margin-top: 2rem;
    gap: 0.625rem;
  }

  .p-dinner__cuisine-menu-item {
    font-size: 1.125rem;
  }

  .p-dinner__meeting-point {
    margin-top: 5rem;
  }

  .p-dinner__meeting-point-card {
    margin-top: 1rem;
  }

  .p-drawer__container {
    padding-right: 0;
    padding-block: 4.5rem;
  }

  .p-drawer__inner {
    height: auto;
    padding-inline: 32px;
  }

  .p-drawer__content {
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .p-drawer__logo {
    width: 15.9375rem;
    aspect-ratio: 255/242;
  }

  .p-drawer__body {
    width: 100%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }

  .p-drawer__item.p-drawer__item--main + .p-drawer__item {
    padding-top: 1.125rem;
  }

  .p-drawer__item-link {
    padding-block: 0.75rem;
  }

  .p-drawer__main-item-text {
    line-height: 1.5;
  }

  .p-faq {
    padding-block: 2.5rem;
  }

  .p-faq__heading {
    font-size: 1.5rem;
    line-height: 1.4583333333;
  }

  .p-faq__lead {
    margin-top: 0.4375rem;
    font-size: 0.75rem;
  }

  .p-faq__list {
    margin-top: 1.25rem;
    gap: 1rem;
  }

  .p-faq__item {
    padding: 1rem 1.125rem;
    border-radius: 1.25rem;
  }

  .p-faq__question-text {
    font-size: 1rem;
    line-height: 1.5;
  }

  .p-faq__answer-text {
    padding-top: 0.75rem;
    padding-bottom: 0.625rem;
    font-size: 0.875rem;
  }

  .p-footer {
    padding-top: 2.5rem;
  }

  .p-footer__sponsors {
    gap: 0.5rem;
  }

  .p-footer__sponsor-logo {
    height: 4.625rem;
  }

  .p-footer__copy {
    margin-top: 1.375rem;
    padding-bottom: 2.1875rem;
  }

  .p-footer__copy-text {
    font-size: 0.75rem;
    line-height: 1.6666666667;
  }

  .p-hamburger {
    padding: 1rem 0.8125rem;
  }

  .p-hamburger__body {
    width: 1.5625rem;
    height: 1.125rem;
  }

  .p-hamburger__line {
    width: 1.5625rem;
  }

  .p-hamburger.is-active {
    height: auto;
  }

  .p-header__nav-list {
    padding-inline: 0.875rem;
  }

  .p-header__nav-item a {
    padding: 1.0625rem 0.75rem;
    font-size: 0.75rem;
    line-height: 1.4166666667;
  }

  .p-header__nav-item a.is-active::before {
    -webkit-transform: translate(-50%, 0.75rem);
            transform: translate(-50%, 0.75rem);
  }

  .p-making {
    padding-top: 1.5625rem;
    padding-bottom: 2.1875rem;
  }

  .p-making__content {
    margin-top: 1.5625rem;
  }

  .p-making__meeting-point {
    margin-top: 2.5rem;
  }

  .p-making__meeting-point-card {
    margin-top: 1rem;
  }

  .p-museum {
    padding-top: 1.5625rem;
    padding-bottom: 2.1875rem;
  }

  .p-museum__content {
    margin-top: 1.5625rem;
  }

  .p-museum__meeting-point {
    margin-top: 2.5rem;
  }

  .p-museum__meeting-point-card {
    margin-top: 1rem;
  }

  .p-mv {
    position: relative;
    height: min(100vh, 50rem);
  }

  .p-mv__wrapper {
    display: block;
  }

  .p-mv__sp-logo {
    position: absolute;
    top: 9.75rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 19.5625rem;
    aspect-ratio: 313/297;
    z-index: 5;
    overflow: hidden;
  }

  .p-mv__sp-logo img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }

  .p-mv__sp-arrow {
    position: absolute;
    bottom: 3.125rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 2.0625rem;
    height: 2rem;
    z-index: 5;
    background-color: var(--theme-button-primary);
    -webkit-mask: url(../img/common/button-frame-main.svg) no-repeat center/contain;
            mask: url(../img/common/button-frame-main.svg) no-repeat center/contain;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
  }

  .p-mv__sp-arrow::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.5rem;
    height: 0.625rem;
    -webkit-transform: translate(-55%, -50%) rotate(90deg);
            transform: translate(-55%, -50%) rotate(90deg);
    background-color: var(--theme-white);
    -webkit-mask: url(../img/common/icon-arrow.svg) no-repeat center/contain;
            mask: url(../img/common/icon-arrow.svg) no-repeat center/contain;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
  }

  .p-mv__item-link {
    padding-block: 0.75rem;
  }

  .p-mv__main-item-text {
    line-height: 1.5;
  }

  .p-mv__slider {
    max-width: initial;
    height: min(100vh, 50rem);
    margin-left: 0;
  }

  .p-tour {
    padding-top: 2rem;
    padding-bottom: 2rem;
    background-image: url("../img/lp/tour-bg-sp.png");
  }

  .p-tour__heading-subtitle {
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.4375;
  }

  .p-tour__heading-title {
    font-size: 1.375rem;
    line-height: 1.4545454545;
  }

  .p-tour__content-text {
    margin-top: 2rem;
  }

  .p-tour__gallery {
    margin-top: 1.25rem;
    margin-inline: calc(50% - 50vw);
    overflow: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .p-tour__gallery::-webkit-scrollbar {
    display: none;
  }

  .p-tour__gallery-wrap {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .p-tour__gallery-items {
    padding-inline: 1rem;
    gap: 1rem;
  }

  .p-tour__gallery-item {
    width: min(50vw, 240px);
    border-radius: 1.25rem;
  }

  .p-tour__timetable {
    margin-top: 2.25rem;
  }

  .p-tour__timetable-container {
    margin-top: 2.5rem;
    padding: 1.625rem 1rem 7.1875rem;
    border-radius: 1.25rem;
  }

  .p-tour__timetable-hidden .p-tour__timetable-day {
    margin-top: 2.5rem;
  }

  .p-tour__timetable-title {
    margin-inline: auto;
    font-size: 1.125rem;
  }

  .p-tour__timetable-list {
    margin-top: 0.5rem;
    padding-inline: 0;
  }

  .p-tour__timetable-list::before {
    left: 1rem;
  }

  .p-tour__timetable-item {
    grid-template-columns: 2.6875rem 1fr;
  }

  .p-tour__timetable-time {
    margin-top: 0.375rem;
    padding-block: 0.375rem;
    font-size: 0.75rem;
    line-height: 1.4166666667;
  }

  .p-tour__timetable-body {
    padding-block: 0.75rem;
    font-size: 1rem;
    line-height: 1.25;
  }

  .p-tour__timetable-switch {
    bottom: 1.5rem;
  }

  .p-tour__information {
    margin-top: 2rem;
  }

  .p-tour__information-wrap {
    padding-inline: 0;
    display: block;
  }

  .p-tour__information-item {
    display: block;
  }

  .p-tour__information-item + .p-tour__information-item {
    margin-top: 2rem;
  }

  .p-tour__information-title {
    margin-bottom: 0.5rem;
    font-size: 1.375rem;
    line-height: 1.4545454545;
  }

  .p-tour__card {
    display: block;
  }

  .p-tour__card-body {
    display: block;
    padding: 0.75rem 1.125rem 1rem;
  }

  .p-tour__card-name {
    min-height: 2lh;
    font-size: 1.25rem;
  }

  .p-tour__card-detail {
    min-height: 5lh;
    font-size: 0.875rem;
  }

  .p-tour__card-link {
    margin-top: 1.25rem;
  }

  .p-tour__card-link a {
    font-size: 0.875rem;
  }

  .p-tour__reserve {
    margin-top: 2.5rem;
  }

  .u-sp {
    display: block;
  }

  .u-sp-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .u-pc {
    display: none;
  }
}

@media screen and (max-width: 389px) {
  html {
    font-size: 4.1025641026vw;
  }
}

@media (hover: hover) {
  .c-info-gallery__switch:hover {
    background-color: color-mix(in lch, var(--theme-button-primary), #000 15%);
  }

  .c-info-gallery__switch.c-info-gallery__switch--secondary:hover {
    background-color: color-mix(in lch, var(--theme-button-secondary), #000 15%);
  }

  .c-info-reserve__booking-link:hover::before {
    opacity: 1;
    visibility: visible;
  }

  .p-drawer__item-link:hover::before {
    opacity: 1;
    visibility: visible;
  }

  .p-drawer__item-link:hover .p-drawer__main-item-text {
    color: var(--theme-white);
  }

  .p-drawer__item-link:hover .p-drawer__main-item-title {
    color: var(--theme-white);
  }

  .p-drawer__item-link:hover .p-drawer__main-item-title .frame-arrow {
    background-color: var(--theme-white);
  }

  .p-drawer__item-link:hover .p-drawer__main-item-title .frame-arrow::before {
    background-color: var(--theme-main-primary);
  }

  .p-drawer__item-link:hover .p-drawer__item-title {
    color: var(--theme-white);
  }

  .p-drawer__item-link:hover .p-drawer__item-title::before {
    background-color: var(--theme-white);
  }

  .p-footer__sponsor-logo:hover {
    opacity: 0.7;
  }

  .p-mv__item-link:hover::before {
    opacity: 1;
    visibility: visible;
  }

  .p-mv__item-link:hover .p-mv__main-item-text {
    color: var(--theme-white);
  }

  .p-mv__item-link:hover .p-mv__main-item-title {
    color: var(--theme-white);
  }

  .p-mv__item-link:hover .p-mv__main-item-title .frame-arrow {
    background-color: var(--theme-white);
  }

  .p-mv__item-link:hover .p-mv__main-item-title .frame-arrow::before {
    background-color: var(--theme-main-primary);
  }

  .p-mv__item-link:hover .p-mv__item-title {
    color: var(--theme-white);
  }

  .p-mv__item-link:hover .p-mv__item-title::before {
    background-color: var(--theme-white);
  }

  .p-tour__timetable-switch-button:hover {
    background-color: var(--theme-main-primary);
  }
}
/*# sourceMappingURL=style.css.map */