@charset "UTF-8";
/* ==========================================
Root
========================================== */
:root {
  --color_base: #000;
  --color_accent: #f00;
  --font-feature-settings: normal;
  --font_base: "Kaisei Opti", serif;
  --letter_spacing: 0.05em;
  --font_weight_base: 700;
  --font_weight_normal: 400;
  --font_weight_bold: 700;
  --focus_border: #4d90fe;
  --input_bg: #fff;
  --placeholder_color: #e0dada;
}

/* ==========================================
Additional Reset
========================================== */
:where(*, *::before, *::after) {
  font-feature-settings: var(--font-feature-settings);
  letter-spacing: var(--letter_spacing);
}

:where(a:focus, button:focus, input:focus, select:focus, textarea:focus, summary:focus) {
  outline: revert;
}

:where(a) {
  color: inherit;
  text-decoration: none;
  text-underline-offset: 0.2ex;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg, video) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(h1, h2, h3, h4, h5, h6) {
  font-weight: var(--font_weight_base);
}

:where(ul, ol) {
  list-style: none;
}

:where(button) {
  box-sizing: border-box;
}

:where(table) {
  border-collapse: collapse;
  border-spacing: 0;
}

:where(th) {
  font-weight: inherit;
}

:where(address) {
  font-style: normal;
}

:where(iframe) {
  border-width: 0;
}

:where(summary) {
  display: block;
  cursor: pointer;
  list-style: none;
}

:where(fieldset) {
  border: none;
}

:where(select) {
  color: var(--base_color);
  border-radius: 0;
}

summary::-webkit-details-marker {
  display: none;
}

[hidden]:not([hidden=until-found]) {
  display: none !important;
}

/* ==========================================
Font Settings
========================================== */
/* Kaisei Opti 700 ------------ */
.kaisei-opti-bold {
  font-family: "Kaisei Opti", serif;
  font-weight: 700;
  font-style: normal;
}

/* Noto Sans JP 400 ------------ */
.notosans {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
}

/* ==========================================
bese
========================================== */
:root {
  --header_height: 70px;
  --scrollbar-width: 15px;
}

@media screen and (max-width: 768px) {
  :root {
    --header_height: 0px;
    --scrollbar-width: 0px;
  }
}
html {
  overflow-y: scroll;
}

body {
  font-family: var(--font_base);
  font-weight: var(--font_weight_base);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color_base);
  background-color: #fff;
  font-optical-sizing: auto;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
  -webkit-font-smoothing: antialiased;
}

/* SP調整 ---------------------------- */
@media screen and (max-width: 768px) {
  body {
    font-size: 0.875rem;
  }
  img {
    display: block;
    width: 100%;
    height: auto;
  }
}
/* ==========================================
mousedeive / touchdevice
========================================== */
/* hoverデバイス ----------- */
@media (any-hover: hover) {
  a:hover {
    opacity: 0.7;
  }
  a[href^="tel:"] {
    cursor: default;
    pointer-events: none;
  }
}
/* ==========================================
layout
========================================== */
.ly_wrapper {
  min-width: 1200px;
  min-height: 100dvh;
}

/* SP調整 ---------------------------- */
@media screen and (max-width: 768.999px) {
  .ly_wrapper {
    min-width: 320px;
  }
}
/* ==========================================
header
========================================== */
.ly_header {
  position: sticky;
  top: 0;
  width: 100%;
  min-width: 1200px;
  background: #000;
  min-height: 70px;
  z-index: 100;
}

/* SP調整 ---------------------------- */
@media screen and (max-width: 768.999px) {
  .ly_header {
    position: static;
    min-width: 320px;
    min-height: initial;
    background-color: transparent;
  }
}
/* ==========================================
hamburger
========================================== */
.hamburger {
  display: none;
}

/* SP調整 ---------------------------- */
@media screen and (max-width: 768.999px) {
  .hamburger {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    border: none;
    background: #000;
    cursor: pointer;
    z-index: 1001;
    outline-offset: -2px;
  }
  .hamburger_line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 30px;
    height: 2px;
    margin: auto;
    background-color: #fff;
    transition: all 0.6s;
  }
  .hamburger_line:nth-of-type(1) {
    transform: translateY(-6px);
  }
  .hamburger_line:nth-of-type(2) {
    transform: translateY(6px);
  }
  .hamburger.is_active .hamburger_line {
    background-color: #fff;
    transform-origin: center center;
  }
  .hamburger.is_active .hamburger_line:nth-of-type(1) {
    transform: translateY(0px) rotate(45deg);
  }
  .hamburger.is_active .hamburger_line:nth-of-type(2) {
    transform: translateY(0px) rotate(-45deg);
  }
}
/* =========================================
nav_overlay
========================================= */
/* PC調整 ---------------------------- */
@media (min-width: 769px), print {
  .menu_lists {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    position: relative;
    color: #fff;
    margin-left: -78px;
  }
  .menu_lists a {
    display: grid;
    place-items: center;
    min-height: 70px;
    padding: 0 20px;
    letter-spacing: 0;
    transition: opacity 0.15s;
  }
  .menu_list.__staff {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #fff;
    color: #fff;
  }
  .menu_list.__staff a {
    width: 120px;
    height: 70px;
    background: linear-gradient(to bottom, #e50012 0%, #9a0000 100%);
    padding: 0;
    text-align: center;
    font-size: 1.03125rem;
    letter-spacing: -0.15em;
    line-height: 1.1;
    text-shadow: #000 1px 1px 2px;
  }
  .menu_list.__staff a span {
    display: block;
    padding-left: 0.7em;
    margin-top: -0.7em;
    font-size: 1.09375rem;
    line-height: 1;
  }
  .menu_list.__logo {
    order: 4;
    margin: 0 3px 0 7px;
  }
  .menu_list.__logo img {
    position: relative;
    top: -1px;
  }
  .menu_list.__about {
    order: 1;
  }
  .menu_list.__event {
    order: 2;
  }
  .menu_list.__food {
    order: 3;
  }
  .menu_list.__sale {
    order: 5;
  }
  .menu_list.__ticket {
    order: 6;
  }
  .menu_list.__faq {
    order: 7;
  }
  .menu_list.__staff {
    order: 8;
  }
}
/* SP調整 ---------------------------- */
@media screen and (max-width: 768.999px) {
  body.is_fixed {
    overflow: hidden;
    height: 100svh;
    padding-right: var(--scrollbar-width, 0px);
  }
  .nav_menu {
    position: fixed;
    inset: 0;
    background-color: #f08c00;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease, transform 0.6s ease;
    z-index: 1000;
    will-change: opacity;
    overflow: hidden;
    visibility: hidden;
  }
  .nav_menu.is_active,
  .nav_menu.is_hiding {
    pointer-events: auto;
    padding: 0 15px 80px;
    overflow: auto;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  .nav_menu.is_active {
    opacity: 1;
    visibility: visible;
  }
  .nav_menu.is_hiding {
    opacity: 0;
    visibility: visible;
  }
  .nav_menu .menu_lists {
    padding: 37px 0;
  }
  .nav_menu .menu_list {
    opacity: 0;
    transform: translateY(20px) translateZ(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
    will-change: opacity, transform;
  }
  .nav_menu .menu_list.no-transition {
    transition: none !important;
  }
  .nav_menu .menu_list a {
    display: block;
    padding: 15px;
    text-align: center;
    font-size: 1rem;
    letter-spacing: 0;
  }
  .nav_menu .menu_list.__logo a {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 25px;
  }
  .nav_menu .menu_list.__logo img {
    display: block;
    width: 109px;
  }
  .nav_menu.is_active .menu_list {
    opacity: 1;
    transform: translateY(0);
  }
  .menu_list.__staff {
    max-width: 300px;
    height: 45px;
    margin: 25px auto 0;
    padding-top: 5px;
    background: linear-gradient(to bottom, #e50012 0%, #9a0000 100%);
    color: #fff;
    text-align: center;
  }
  .menu_list.__staff a {
    display: block;
    padding: 0;
    text-align: center;
    font-size: 1.28125rem;
    letter-spacing: -0.15em;
    text-shadow: #000 1px 1px 2px;
  }
  .menu_list.__staff a span {
    padding-left: 0.1em;
    font-size: 1.21875rem;
  }
  .nav_menu.is_active .menu_list:nth-of-type(1) {
    transition-delay: 0.075s;
  }
  .nav_menu.is_active .menu_list:nth-of-type(2) {
    transition-delay: 0.15s;
  }
  .nav_menu.is_active .menu_list:nth-of-type(3) {
    transition-delay: 0.225s;
  }
  .nav_menu.is_active .menu_list:nth-of-type(4) {
    transition-delay: 0.3s;
  }
  .nav_menu.is_active .menu_list:nth-of-type(5) {
    transition-delay: 0.375s;
  }
  .nav_menu.is_active .menu_list:nth-of-type(6) {
    transition-delay: 0.45s;
  }
  .nav_menu.is_active .menu_list:nth-of-type(7) {
    transition-delay: 0.525s;
  }
  .nav_menu.is_active .menu_list:nth-of-type(8) {
    transition-delay: 0.6s;
  }
}
/* =========================================
ly_footer
========================================= */
.ly_footer {
  position: relative;
  background-color: #000;
  color: #fff;
  z-index: 2;
}

.footer_item {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 0 16px;
}

.footer_item_inner {
  display: flex;
  align-items: center;
}

.footer_logo {
  width: 205px;
  margin-right: 64px;
}

.footer_lists {
  display: flex;
  margin-top: -12px;
}

.footer_lists li + li {
  margin-left: 20px;
}

.footer_lists a {
  display: block;
  padding: 10px;
  font-size: 0.9375rem;
  letter-spacing: 0;
  transition: opacity 0.15s;
}

.footer_privacy {
  position: absolute;
  bottom: 20px;
  left: 270px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 3px 8px 4px;
  background-color: #b36741;
  color: #fff;
  font-size: 0.875rem;
  border-radius: 4px;
  letter-spacing: 0;
  transition: background-color 0.15s;
}

.footer_text {
  position: absolute;
  bottom: 14px;
  right: 0;
}

.footer_end {
  position: relative;
  padding: 8px;
  background-color: #aaa;
  color: #000;
  text-align: center;
}

.footer_copy {
  margin: auto 0;
}
.footer_copy small {
  font-size: 0.6875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}

.footer_pagetop a {
  display: block;
  position: fixed;
  left: calc(50% + 490px);
  bottom: calc(38px + env(safe-area-inset-bottom));
  width: 72px;
  height: 72px;
  border: 2px solid #fff;
  border-radius: 50%;
  aspect-ratio: 1;
  background: url(../../img/common/btn_pagetop.svg) no-repeat 0 0/contain;
  transition: opacity 0.2s;
  z-index: 100;
  overflow: hidden;
  transition: background-color 0.15s;
}
.footer_pagetop a span {
  display: block;
  width: 1px;
  height: 1px;
  text-indent: 200%;
  white-space: nowrap;
  overflow: hidden;
}

/* hoverデバイス ----------- */
@media (any-hover: hover) {
  .footer_privacy:hover {
    opacity: 1;
    background-color: #ca947a;
  }
  .footer_pagetop a:hover {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.3);
    filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.3));
  }
}
/* SP調整 ---------------------------- */
@media screen and (max-width: 768.999px) {
  .ly_footer {
    margin-bottom: 50px;
  }
  .footer_item {
    padding: 20px 15px 13px;
  }
  .footer_item_inner {
    display: block;
  }
  .footer_logo {
    width: 164px;
    margin: 0 auto 17px;
  }
  .footer_lists {
    display: none;
  }
  .footer_privacy {
    position: static;
    margin: 0 auto 15px;
    padding: 2px 10px 3px;
    font-size: 0.75rem;
  }
  .footer_text {
    position: static;
    width: 280px;
    margin: 0 auto;
  }
  .footer_end {
    padding: 8px;
  }
  .footer_end_text {
    font-size: 0.75rem;
  }
  .footer_copy {
    position: static;
    height: auto;
    margin: auto 0;
  }
  .footer_pagetop a {
    display: block;
    position: fixed;
    left: auto;
    right: 10px;
    bottom: calc(65px + env(safe-area-inset-bottom));
    width: 51px;
    height: 51px;
    border: 1px solid #fff;
  }
}
/* ==========================================
Module / Block
========================================== */
/* =========================================
md_hidden
========================================= */
.md_hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* =========================================
data-details / data-accordion
========================================= */
[data-details-body] {
  overflow: hidden;
  will-change: height, opacity;
}

[data-accordion-body] {
  overflow: hidden;
}

/* =========================================
md_title
========================================= */
.md_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 200px;
  margin: 0 auto;
  font-size: 2.25rem;
  color: #b36741;
}
.md_title::before {
  content: "";
  display: block;
  position: relative;
  top: 4px;
  width: 20px;
  height: 40px;
  margin-right: calc(8px + 0.05em);
  background: url(../../img/common/dec_title.svg) no-repeat 0 0/contain;
}
.md_title::after {
  content: "";
  display: block;
  position: relative;
  top: 4px;
  width: 20px;
  height: 40px;
  margin-left: 8px;
  background: url(../../img/common/dec_title.svg) no-repeat 0 0/contain;
  transform: scale(-1, 1);
}

.md_title.__white {
  color: #fff;
}
.md_title.__white::before, .md_title.__white::after {
  background: url(../../img/common/dec_title_white.svg);
}

/* SP調整 ---------------------------- */
@media screen and (max-width: 768.999px) {
  .md_title {
    min-width: 130px;
    font-size: 1.625rem;
  }
  .md_title::before {
    top: 3px;
    width: 14px;
    height: 29px;
    margin-right: calc(6px + 0.05em);
  }
  .md_title::after {
    top: 3px;
    width: 14px;
    height: 29px;
    margin-left: 6px;
  }
}
/* =========================================
md_sns_wrap_sp
========================================= */
.md_sns_wrap_sp {
  display: none;
}

/* SP調整 ---------------------------- */
@media screen and (max-width: 768.999px) {
  .md_sns_wrap_sp {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    overflow: hidden;
  }
  .md_sns_lists_sp {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 -1px;
    background-color: #c4bb9c;
  }
  .md_sns_lists_sp li {
    margin: 0 1px;
    width: 33%;
    padding-bottom: env(safe-area-inset-bottom);
    background-color: #fff;
  }
  .md_sns_lists_sp a {
    display: grid;
    place-items: center;
    width: 100%;
    height: 50px;
    text-align: center;
    background-color: #fff;
    outline-offset: -2px;
  }
  .md_sns_lists_sp a:hover {
    opacity: 1;
  }
  .md_sns_lists_sp a:hover img {
    opacity: 0.7;
  }
  .md_sns_lists_sp img {
    display: block;
    width: 32px;
    margin: 0 auto;
  }
}
/* =========================================
Animation
========================================= */
/* fade */
.md_view.__fadeUp {
  opacity: 0;
  transform: translateY(60px);
}

.md_view.__fadeDown {
  opacity: 0;
  transform: translateY(-60px);
}

.md_view.__fadeLeft {
  opacity: 0;
  transform: translateX(-60px);
}

.md_view.__fadeRight {
  opacity: 0;
  transform: translateX(60px);
}

.md_view.is_view {
  opacity: 1;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transform: translate(0, 0);
  will-change: opacity, transform;
}

/* SP調整 ---------------------------- */
@media screen and (max-width: 768.999px) {
  .md_view.__fadeUp {
    transform: translateY(30px);
  }
  .md_view.__fadeDown {
    transform: translateY(-30px);
  }
  .md_view.__fadeLeft {
    transform: translateX(-30px);
  }
  .md_view.__fadeRight {
    transform: translateX(30px);
  }
  .md_view.is_view {
    transform: translate(0, 0);
  }
}
/* zoom */
.md_view.__zoomIn {
  opacity: 1;
  transform: scale(0.6);
}

.md_view.is_view.__zoomIn {
  animation-name: zoomInAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  transition: none;
}

@keyframes zoomInAnime {
  from {
    transform: scale(0.6);
  }
  to {
    transform: scale(1);
  }
}
/* ==========================================
helper
========================================== */
/* PC調整 ---------------------------- */
@media (min-width: 769px), print {
  .sp_br,
  .sp_only {
    display: none !important;
  }
}
/* SP調整 ---------------------------- */
@media screen and (max-width: 768.999px) {
  .pc_br,
  .pc_only {
    display: none !important;
  }
  .sp_noSpace {
    display: none;
  }
  .sp_brNoSpace {
    display: block;
    text-indent: -1em;
  }
  .sp_nowrap {
    white-space: nowrap;
  }
}
/* ==========================================
print
========================================== */
@page {
  size: A4 portrait;
  margin: 10mm;
}
@media print {
  body {
    position: relative;
    width: 1280px !important;
    page-break-after: always;
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
    zoom: 0.617;
  }
  .ly_wrapper {
    display: block;
    min-width: initial;
    min-height: initial;
  }
  .ly_header {
    position: static !important;
  }
  .md_modal_contents {
    top: 0;
    min-height: 100%;
    z-index: 10;
  }
  .footer_pagetop {
    display: none !important;
  }
}