@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Shippori+Mincho+B1:wght@400;500;600;700;800&display=swap");
:root {
  --font-family-basic: "A1 Mincho", serif;
  --font-family-en: "EB Garamond", "A1 Mincho", serif;
  --color-main: #002439;
  --color-sub: #B6B8B9;
  --color-bg: #0B1315;
  --color-light-gray: #B6B8B9;
  --color-gray: #575757;
  --color-gold: #C9AB81;
  --color-brown: #663300;
  --color-orange: #fb8239;
  --color-light-green: #EFF4E5;
  --color-blue: #0089b6;
  --color-red: #EB5757;
}

html, body {
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--color-bg) url("../images/common/bg_image.png");
}

html {
  font-size: 62.5%;
}

body {
  font-family: var(--font-family-en);
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--color-light-gray);
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 991px) {
  body {
    font-size: 1.4rem;
  }
}
a {
  color: var(--color-light-gray);
  text-decoration: none;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
a:hover {
  color: white;
}

p {
  line-height: 1.8;
}

img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: optimizequality;
  max-width: 100%;
  height: auto;
}

@media only screen and (min-width: 991px) {
  .sp {
    display: none !important;
  }
}

@media only screen and (max-width: 768px) {
  .pc-s {
    display: none !important;
  }
}

@media only screen and (min-width: 991px) {
  .pc {
    display: block;
  }
}
@media only screen and (max-width: 991px) {
  .pc {
    display: none !important;
  }
}

.tablet {
  display: none !important;
}
@media only screen and (max-width: 768px) {
  .tablet {
    display: block !important;
  }
}

.l-container {
  width: 100%;
  max-width: 1248px;
  margin-inline: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.l-wrapper {
  position: relative;
  margin-top: 100dh;
  margin-top: 100dvh;
  padding-top: 24px;
  padding-bottom: 100px;
  background: var(--color-bg) url("../images/common/bg_image.png");
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .l-wrapper {
    margin-top: 60vh;
    margin-top: 60svh;
    padding-bottom: 60px;
  }
}

.single-post .l-wrapper, .error404 .l-wrapper {
  margin-top: 120px;
}
@media only screen and (max-width: 991px) {
  .single-post .l-wrapper, .error404 .l-wrapper {
    margin-top: 60px;
  }
}

.l-steam {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 144/81;
  opacity: 0.1;
}
.l-steam video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.breadcrumbs {
  font-size: 12px;
  font-weight: 100;
  letter-spacing: 0.1em;
  padding: 0 40px;
  margin-bottom: 100px;
}
@media only screen and (max-width: 991px) {
  .breadcrumbs {
    margin-bottom: 60px;
  }
}
@media only screen and (max-width: 768px) {
  .breadcrumbs {
    padding: 0 25px;
    margin-bottom: 40px;
  }
}

.blog .breadcrumbs {
  margin-bottom: 0;
}

.l-global-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: url("../images/common/bg_image.png");
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  z-index: 90;
}
.l-global-menu.is-open {
  opacity: 1;
  visibility: visible;
}
.l-global-menu-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
  height: 100dvh;
  min-height: 780px;
  width: 100%;
  max-width: 360px;
  margin: auto;
}
@media only screen and (max-width: 768px) {
  .l-global-menu-content {
    padding: 0 25px;
  }
}
.l-global-menu-logo {
  margin-bottom: 64px;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 991px) {
  .l-global-menu-logo {
    justify-content: center;
  }
}
@media only screen and (max-width: 768px) {
  .l-global-menu-logo {
    order: 2;
  }
}
.l-global-menu-logo img.logo {
  display: block;
  width: 194px;
}
@media only screen and (max-width: 991px) {
  .l-global-menu-logo img.logo {
    display: none;
  }
}
.l-global-menu nav {
  margin-bottom: 64px;
}
@media only screen and (max-width: 991px) {
  .l-global-menu nav {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .l-global-menu nav {
    order: 1;
    margin-bottom: 30px;
  }
}
.l-global-menu-navi {
  padding: 0;
  margin: 0;
  list-style: none;
}
.l-global-menu-navi li {
  padding: 14px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.l-global-menu-navi li.global-is-hidden {
  display: none;
}
.l-global-menu-navi li a {
  display: block;
}
.l-global-menu-navi li a:hover {
  color: var(--color-gold);
}
.l-global-menu-contact {
  display: flex;
  gap: 42px;
  margin-bottom: 62px;
}
@media only screen and (max-width: 768px) {
  .l-global-menu-contact {
    gap: 12px;
    order: 3;
  }
}
.l-global-menu-contact-header {
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  text-align: center;
  border: 1px solid var(--color-light-gray);
  width: 104px;
  height: 100px;
}
@media only screen and (max-width: 768px) {
  .l-global-menu-contact-header {
    font-size: 1.35rem;
    width: 96px;
    height: 92px;
  }
}
.l-global-menu-contact-body {
  display: grid;
  place-content: center;
  gap: 8px;
}
@media only screen and (max-width: 768px) {
  .l-global-menu-contact-body {
    gap: 3px;
  }
}
.l-global-menu-contact-body p {
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 0;
}
.l-global-menu-contact-row {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  font-size: 2.8rem;
  line-height: 1;
  color: white;
  white-space: nowrap;
}
@media only screen and (max-width: 991px) {
  .l-global-menu-contact-row {
    font-size: 2.4rem;
  }
}
.l-global-menu-contact-row span {
  font-size: 1.4rem;
  padding-bottom: 3px;
}
.l-global-menu-contact-row a {
  color: white;
}
.l-global-menu-sns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding-bottom: 5px;
}
.l-global-menu-sns a img {
  opacity: 0.7;
}
.l-global-menu-sns a:hover img {
  opacity: 1;
}
.l-global-menu-privacy {
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .l-global-menu-privacy {
    order: 4;
  }
}
.l-global-menu-privacy a:hover {
  color: var(--color-gold);
}

/* スクロールロック */
html.is-scroll-lock {
  overflow: hidden;
  height: 100%;
}

/* ========================================
   FadeIn Utilities
   ======================================== */
/* 共通設定 */
.u-fadein-blur {
  opacity: 0;
  filter: blur(8px);
  will-change: opacity, transform, filter;
  transition: none;
}

/* 方向別 */
.u-fadein-up {
  transform: translateY(30px);
}

.u-fadein-down {
  transform: translateY(-30px);
}

.u-fadein-left {
  transform: translateX(-30px);
}

.u-fadein-right {
  transform: translateX(30px);
}

.js-fadein {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.3s, transform 0.3s;
}

.js-slide-in {
  opacity: 0;
}

.js-grid-fade {
  opacity: 0;
  transform: translateY(20px);
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
  z-index: 100;
}
@media only screen and (max-width: 768px) {
  .l-header {
    background: var(--color-bg);
  }
}
.l-header-logo {
  width: 194px;
  opacity: 0;
  visibility: hidden;
}
@media only screen and (max-width: 991px) {
  .l-header-logo {
    opacity: 1;
    visibility: visible;
  }
}
@media only screen and (max-width: 768px) {
  .l-header-logo {
    width: 142px;
  }
}
.l-header-navi {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 120px;
  padding: 0 45px;
}
@media only screen and (max-width: 768px) {
  .l-header-navi {
    height: 60px;
    padding: 0 20px;
  }
}
.l-header-navi-content {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media only screen and (max-width: 768px) {
  .l-header-navi-content {
    gap: 16px;
  }
}
@media only screen and (max-width: 768px) {
  .l-header-navi-content .c-button-reservation {
    display: none;
  }
}

.home .l-header-logo {
  display: block;
  opacity: 1;
  visibility: visible;
  width: 64px;
}
@media only screen and (max-width: 768px) {
  .home .l-header-logo {
    width: 48px;
  }
}
@media only screen and (max-width: 768px) {
  .home .l-header-logo {
    width: 34px;
  }
}

.single-post .l-header-logo, .error404 .l-header-logo {
  display: block;
  opacity: 1;
  visibility: visible;
}

.l-page-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
}
@media only screen and (max-width: 991px) {
  .l-page-header {
    height: 60vh;
    height: 60svh;
  }
}
.l-page-header-container {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  transform: translateY(0);
  will-change: transform;
}
@media only screen and (max-width: 768px) {
  .l-page-header-container {
    padding-top: 60px;
  }
}
.l-page-header-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .l-page-header-image {
    height: 60vh;
    height: 60svh;
  }
}
.l-page-header-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.l-page-header-logo {
  position: absolute;
  top: 42px;
  left: 50px;
}
@media only screen and (max-width: 991px) {
  .l-page-header-logo {
    display: none;
  }
}
.l-page-header-logo img {
  width: 80px;
}
.l-page-header-title {
  position: relative;
  font-weight: normal;
  text-align: center;
  margin-bottom: 0;
}
.l-page-header-title--sub {
  display: block;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
}
@media only screen and (max-width: 768px) {
  .l-page-header-title--sub {
    font-size: 1.2rem;
  }
}
.l-page-header-title h1 {
  display: block;
  font-size: 3.4rem;
  color: white;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 991px) {
  .l-page-header-title h1 {
    font-size: 2.8rem;
  }
}
@media only screen and (max-width: 768px) {
  .l-page-header-title h1 {
    font-size: 2rem;
  }
}

.admin-bar .l-header {
  top: 32px;
}

.privacy-policy .l-page-header {
  height: 320px;
}
@media only screen and (max-width: 768px) {
  .privacy-policy .l-page-header {
    height: 220px;
  }
}
.privacy-policy .l-wrapper {
  margin-top: 320px;
}
@media only screen and (max-width: 991px) {
  .privacy-policy .l-wrapper {
    margin-top: 200px;
  }
}
.privacy-policy .l-page-header-image {
  display: none;
}
.privacy-policy .l-page-header-container {
  transform: translateY(0) !important;
}

.l-footer {
  position: relative;
  background: url("../images/common/bg_image.png");
  padding-top: 100px;
}
@media only screen and (max-width: 991px) {
  .l-footer {
    padding-top: 64px;
    padding-bottom: 100px;
  }
}
.l-footer-steam {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}
.l-footer-steam video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.l-footer-container {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #322921;
  padding-top: 75px;
  padding-bottom: 40px;
}
@media only screen and (max-width: 991px) {
  .l-footer-container {
    flex-direction: column;
    align-items: center;
    padding-top: 48px;
  }
}
.l-footer-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 92px;
}
@media only screen and (max-width: 991px) {
  .l-footer-info {
    margin-bottom: 45px;
  }
}
.l-footer-logo {
  padding-right: 18px;
}
.l-footer-logo img {
  width: 95px;
}
@media only screen and (max-width: 991px) {
  .l-footer-logo img {
    width: 62px;
  }
}
.l-footer-copyright {
  font-size: 1.2rem;
  letter-spacing: 0.15em;
}
@media only screen and (max-width: 991px) {
  .l-footer-copyright {
    display: none;
  }
}
.l-footer-content {
  display: flex;
}
@media only screen and (max-width: 991px) {
  .l-footer-content {
    flex-direction: column;
    align-items: center;
  }
}
.l-footer-content-copyright {
  display: none;
}
@media only screen and (max-width: 991px) {
  .l-footer-content-copyright {
    display: grid;
    place-items: center;
  }
}
.l-footer-menu {
  width: 400px;
  max-width: 100%;
}
@media only screen and (max-width: 991px) {
  .l-footer-menu {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 768px) {
  .l-footer-menu {
    width: auto;
  }
}
.l-footer-menu-navi {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 0;
  list-style: none;
  font-size: 1.5rem;
  margin: 0 0 40px;
  padding: 0;
}
@media only screen and (max-width: 991px) {
  .l-footer-menu-navi {
    display: none;
  }
}
.l-footer-menu-navi li a {
  color: white;
}
.l-footer-menu-navi li a:hover {
  color: var(--color-gold);
}
.l-footer-menu-sns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 400px;
}
@media only screen and (max-width: 991px) {
  .l-footer-menu-sns {
    width: 220px;
    margin: auto;
  }
}
.l-footer-menu-sns a {
  display: flex;
  align-items: center;
  gap: 6px;
}
.l-footer-menu-sns a:hover {
  color: var(--color-gold);
}
.l-footer-menu-sns a .icon {
  width: 40px;
  height: 40px;
}
@media only screen and (max-width: 991px) {
  .l-footer-menu-sns a .icon {
    width: 30px;
    height: 30px;
  }
}
@media only screen and (max-width: 991px) {
  .l-footer-contact {
    display: none;
  }
}

.l-footer-fixed {
  display: none;
}
@media only screen and (max-width: 768px) {
  .l-footer-fixed {
    display: grid;
    place-content: center;
    width: 100%;
    height: 100px;
    position: fixed;
    left: 0;
    bottom: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease, background 0.4s ease;
    z-index: 90;
  }
  .l-footer-fixed::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--color-bg) url("../images/common/bg_image.png");
    opacity: 1;
    transition: opacity 0.4s ease;
    z-index: -1;
  }
  .l-footer-fixed.is-show {
    opacity: 1;
    transform: translateY(0);
  }
  .l-footer-fixed.is-transparent::before {
    opacity: 0;
  }
}

.c-footer-subsidy-note {
  position: absolute;
  bottom: 14px;
  right: 40px;
  font-size: 1.3rem;
}
@media only screen and (max-width: 991px) {
  .c-footer-subsidy-note {
    font-size: 1.2rem;
    text-align: center;
  }
}
@media only screen and (max-width: 768px) {
  .c-footer-subsidy-note {
    bottom: 100px;
    right: 20px;
  }
}

.c-btn-hamburger {
  background: none;
  border: none;
  font-size: 0;
  cursor: pointer;
  padding: 0;
}
.c-btn-hamburger-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  place-items: center;
  gap: 6px;
  width: 58px;
  height: 26px;
}
@media only screen and (max-width: 768px) {
  .c-btn-hamburger-inner {
    width: 30px;
  }
}
.c-btn-hamburger-inner::before, .c-btn-hamburger-inner::after {
  content: "";
  display: block;
  width: 26px;
  height: 8px;
  border-style: solid;
  border-color: white;
  border-width: 1px 0 1px 0;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 768px) {
  .c-btn-hamburger-inner::before, .c-btn-hamburger-inner::after {
    border-bottom: none;
    width: 30px;
    height: 1px;
    position: absolute;
    left: 0;
  }
}
@media only screen and (max-width: 768px) {
  .c-btn-hamburger-inner::before {
    top: 8px;
  }
}
@media only screen and (max-width: 768px) {
  .c-btn-hamburger-inner::after {
    top: 16px;
  }
}
.c-btn-hamburger:hover .c-btn-hamburger-inner::before {
  width: 58px;
}
@media only screen and (max-width: 768px) {
  .c-btn-hamburger:hover .c-btn-hamburger-inner::before {
    width: 30px;
  }
}
.c-btn-hamburger:hover .c-btn-hamburger-inner::after {
  width: 0;
}
@media only screen and (max-width: 768px) {
  .c-btn-hamburger:hover .c-btn-hamburger-inner::after {
    width: 30px;
  }
}
.c-btn-hamburger.is-open .c-btn-hamburger-inner::before, .c-btn-hamburger.is-open .c-btn-hamburger-inner::after {
  width: 40px;
  height: 1px;
  border-bottom: none;
  position: absolute;
}
@media only screen and (max-width: 768px) {
  .c-btn-hamburger.is-open .c-btn-hamburger-inner::before, .c-btn-hamburger.is-open .c-btn-hamburger-inner::after {
    width: 30px;
  }
}
.c-btn-hamburger.is-open .c-btn-hamburger-inner::before {
  transform: rotate(30deg);
}
@media only screen and (max-width: 768px) {
  .c-btn-hamburger.is-open .c-btn-hamburger-inner::before {
    top: 13px;
  }
}
.c-btn-hamburger.is-open .c-btn-hamburger-inner::after {
  transform: rotate(-30deg);
}
@media only screen and (max-width: 768px) {
  .c-btn-hamburger.is-open .c-btn-hamburger-inner::after {
    top: 13px;
  }
}

.c-button-reservation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.16em;
  width: 160px;
  height: 35px;
  font-size: 14px;
  color: white;
  border: 1px solid white;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .c-button-reservation {
    width: 100px;
    height: 30px;
    font-size: 12px;
  }
}
.c-button-reservation::before {
  content: "";
  width: 28px;
  height: 1px;
  background: white;
  position: absolute;
  left: -14px;
  top: 17px;
  transform: translateY(-50%) scaleX(1);
  transform-origin: left center;
  transition: transform 0.3s ease;
}
@media only screen and (max-width: 768px) {
  .c-button-reservation::before {
    width: 20px;
    top: 14px;
    left: -10px;
  }
}
.c-button-reservation:hover {
  background: var(--color-sub);
  color: black;
}
.c-button-reservation:hover::before {
  animation: line-flash 0.6s ease forwards;
  background: black;
}
@media only screen and (max-width: 768px) {
  .c-button-reservation span {
    display: none;
  }
}

.c-button {
  display: grid;
  place-items: center;
  width: 260px;
  height: 46px;
  font-size: 1.5rem;
  border: 1px solid var(--color-sub);
  position: relative;
}
@media only screen and (max-width: 991px) {
  .c-button {
    width: 220px;
    height: 40px;
    font-size: 1.4rem;
  }
}
.c-button::before {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--color-sub);
  position: absolute;
  left: -20px;
  top: 23px;
  transform: translateY(-50%) scaleX(1);
  transform-origin: left center;
  transition: transform 0.3s ease;
}
@media only screen and (max-width: 991px) {
  .c-button::before {
    top: 20px;
    width: 32px;
    left: -16px;
  }
}
.c-button:hover {
  background: var(--color-sub);
  color: black;
}
.c-button:hover::before {
  animation: line-flash 0.6s ease forwards;
  background: black;
}

@keyframes line-flash {
  0% {
    opacity: 1;
    transform: translateY(-50%) scaleX(1);
  }
  25% {
    opacity: 0;
    transform: translateY(-50%) scaleX(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-50%) scaleX(0);
  }
  100% {
    opacity: 1;
    transform: translateY(-50%) scaleX(1);
  }
}
.p-info-list {
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
}
@media only screen and (max-width: 991px) {
  .p-info-list {
    max-width: 640px;
  }
}
.p-info-row {
  font-family: var(--font-family-en);
  display: flex;
  flex-wrap: wrap;
  padding: 2.25em 0;
  opacity: 0;
  filter: blur(8px);
}
@media only screen and (max-width: 991px) {
  .p-info-row {
    padding: 1.5em 0;
  }
}
.p-info-row:first-child {
  padding-top: 0;
}
@media only screen and (max-width: 991px) {
  .p-info-row:first-child {
    padding-top: 1.5em;
  }
}
.p-info-row:not(:last-child) {
  border-bottom: 1px solid #666666;
}
.p-info-row dt {
  width: 134px;
}
@media only screen and (max-width: 991px) {
  .p-info-row dt {
    width: 80px;
  }
}
.p-info-row dd {
  flex: 1;
  margin: 0;
}
.p-info-row dd p {
  margin: 0 0 0.3em;
}
.p-info-row dd a {
  color: var(--color-gold);
}
@media only screen and (max-width: 991px) {
  .p-info-row dd a {
    text-decoration: none;
  }
}
.p-info-row .p-info-in-list {
  display: grid;
  gap: 16px;
}
.p-info-row .p-info-in-list-row {
  display: flex;
}
@media only screen and (max-width: 991px) {
  .p-info-row .p-info-in-list-row {
    flex-direction: column;
  }
}
@media only screen and (max-width: 991px) {
  .p-info-row .p-info-in-list-row dt {
    width: auto;
    margin-bottom: 0.8em;
  }
}
.p-info-row .p-info-in-list-row dd {
  flex: 1;
  margin: 0;
}
.p-info-row .p-info-in-list ul {
  list-style: none;
  padding: 16px 0;
}
.p-info-row .p-info-in-list ul li {
  position: relative;
  padding-left: 14px;
}
.p-info-row .p-info-in-list ul li::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border: 1px solid var(--color-sub);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 9px;
}
.p-info-map {
  padding: 40px 0;
}
@media only screen and (max-width: 991px) {
  .p-info-map {
    padding: 20px 0;
  }
}
@media only screen and (max-width: 768px) {
  .p-info-map {
    position: relative;
    left: -80px;
    width: calc(100% + 80px);
    padding: 20px;
  }
}

.p-front-kv {
  position: relative;
  overflow: hidden;
}
.p-front-kv-overlay {
  position: absolute;
  inset: 0;
  background: var(--color-bg);
  opacity: 1;
  pointer-events: none;
  transition: opacity 2.4s ease-in-out;
}
.p-front-kv-overlay.is-hide {
  opacity: 0.2;
}
.p-front-kv-movie-container {
  width: 100%;
  height: 100vh;
  height: 100svh;
  z-index: 2;
}
@media only screen and (max-width: 991px) {
  .p-front-kv-movie-container {
    height: auto;
    aspect-ratio: 1;
  }
}
@media only screen and (max-width: 768px) {
  .p-front-kv-movie-container {
    height: 88vh;
    height: 88svh;
    aspect-ratio: auto;
  }
}
.p-front-kv-movie-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-front-kv-title {
  position: absolute;
  left: calc(50% - 12px);
  top: 42%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 991px) {
  .p-front-kv-title {
    left: calc(50% - 10px);
  }
}
@media only screen and (max-width: 768px) {
  .p-front-kv-title {
    left: calc(50% - 8px);
  }
}
.p-front-kv-title img {
  width: 137px;
}
@media only screen and (max-width: 991px) {
  .p-front-kv-title img {
    width: 86px;
  }
}
@media only screen and (max-width: 768px) {
  .p-front-kv-title img {
    width: 74px;
  }
}
.p-front-kv-gibier_icons {
  position: absolute;
  left: 50%;
  bottom: 12vh;
  transform: translateX(-50%);
}
@media only screen and (max-width: 768px) {
  .p-front-kv-gibier_icons {
    bottom: 18vh;
  }
}
.p-front-kv-gibier_icons img {
  width: 180px;
}
@media only screen and (max-width: 768px) {
  .p-front-kv-gibier_icons img {
    width: 128px;
  }
}
.p-front-kv-scroll {
  height: 100px;
  position: absolute;
  right: 30px;
  bottom: 30px;
  font-size: 1.6rem;
  color: white;
  display: flex;
  align-items: center;
  padding-right: 10px;
  overflow-y: hidden;
}
@media only screen and (max-width: 768px) {
  .p-front-kv-scroll {
    height: 60px;
    right: 16px;
    bottom: 80px;
    font-size: 1.3rem;
  }
}
.p-front-kv-scroll::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.4);
  width: 2px;
  height: 100%;
}
@media only screen and (max-width: 768px) {
  .p-front-kv-scroll::before {
    width: 1px;
  }
}
.p-front-kv-scroll::after {
  content: "";
  background: white;
  width: 2px;
  height: 20px;
  position: absolute;
  right: 0;
  top: -20px;
  animation: scroll-line 5s ease-in-out infinite;
}
@media only screen and (max-width: 768px) {
  .p-front-kv-scroll::after {
    width: 1px;
  }
}
.p-front-kv-news {
  position: absolute;
  left: 30px;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 12px 28px;
  background: var(--color-bg) url("../images/common/bg_image.png");
  font-size: 1.6rem;
  line-height: 1;
  padding: 14px 24px;
}
@media only screen and (max-width: 991px) {
  .p-front-kv-news {
    font-size: 1.4rem;
    padding: 14px 16px;
  }
}
@media only screen and (max-width: 768px) {
  .p-front-kv-news {
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    left: 0;
    bottom: 0;
    background: var(--color-bg);
  }
}
.p-front-kv-news:hover {
  background: var(--color-bg);
}
.p-front-kv-news-content {
  display: flex;
  align-items: center;
  gap: 10px;
}
.p-front-kv-news-title {
  font-size: 1.6rem;
}
@media only screen and (max-width: 991px) {
  .p-front-kv-news-title {
    font-size: 1.3rem;
  }
}

.p-front-kv-title,
.p-front-kv-gibier_icons,
.p-front-kv-scroll {
  opacity: 0;
  transition: opacity 1.8s ease-out, transform 1.6s ease-out;
  z-index: 3;
}

.p-front-kv-title.is-show,
.p-front-kv-gibier_icons.is-show,
.p-front-kv-scroll.is-show {
  opacity: 1;
}

@keyframes scroll-line {
  0% {
    top: -20px;
  }
  100% {
    top: 100px;
  }
}
.p-front-wrapper {
  padding-top: 172px;
  background-image: url("../images/common/voilla_logo_bg.png");
  background-position: center top;
  background-repeat: repeat-y;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .p-front-wrapper {
    padding-top: 88px;
    background-size: 120%;
  }
}
@media only screen and (max-width: 768px) {
  .p-front-wrapper {
    padding-top: 64px;
  }
}

.p-front-intro {
  margin-bottom: 120px;
}
@media only screen and (max-width: 991px) {
  .p-front-intro {
    margin-bottom: 60px;
  }
}
.p-front-intro-header {
  text-align: center;
  position: relative;
  padding-bottom: 36px;
}
@media only screen and (max-width: 991px) {
  .p-front-intro-header {
    padding-bottom: 18px;
  }
}
.p-front-intro-header::after {
  content: "";
  display: block;
  width: 200px;
  height: 1px;
  background: #322921;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.p-front-intro-title {
  font-size: 4rem;
  margin-bottom: 36px;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .p-front-intro-title {
    font-size: 2.6rem;
    margin-bottom: 18px;
    line-height: 1.5;
  }
}
.p-front-intro-title__sub {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  color: var(--color-gold);
}
@media only screen and (max-width: 991px) {
  .p-front-intro-title__sub {
    font-size: 1.3rem;
  }
}

.p-front-content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-content: center;
  gap: 56px;
  margin-bottom: 120px;
}
@media only screen and (max-width: 991px) {
  .p-front-content-block {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
  }
}
.p-front-content-block-main {
  display: grid;
  place-items: center;
  width: 100%;
  padding-left: 40px;
}
@media only screen and (max-width: 991px) {
  .p-front-content-block-main {
    padding-right: 30px;
    padding-left: 30px;
    order: 2;
  }
}
.p-front-content-block-main-inner {
  max-width: 620px;
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .p-front-content-block-main-inner {
    max-width: none;
  }
}
.p-front-content-block-image {
  width: 100%;
  height: 620px;
}
@media only screen and (max-width: 991px) {
  .p-front-content-block-image {
    order: 1;
    height: 380px;
  }
}
.p-front-content-block-image picture {
  width: 100%;
  height: 100%;
}
.p-front-content-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-front-content-block-image__multi {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.p-front-content-block-image__multi picture {
  width: 100%;
  height: 310px;
}
@media only screen and (max-width: 991px) {
  .p-front-content-block-image__multi picture {
    height: 190px;
  }
}
.p-front-content-block-image__multi picture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-front-content-block-title {
  font-size: 3.4rem;
  letter-spacing: 0.05em;
  margin-bottom: 1em;
}
@media only screen and (max-width: 991px) {
  .p-front-content-block-title {
    font-size: 2.4rem;
  }
}
@media only screen and (max-width: 768px) {
  .p-front-content-block-title {
    font-size: 2.2rem;
  }
}
.p-front-content-block-title__sub {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.4;
  color: var(--color-gold);
  margin-bottom: 10px;
}
@media only screen and (max-width: 991px) {
  .p-front-content-block-title__sub {
    font-size: 1.3rem;
    margin-bottom: 2px;
  }
}
@media only screen and (max-width: 768px) {
  .p-front-content-block-title__sub {
    font-size: 1.2rem;
  }
}
.p-front-content-block-text {
  font-size: 1.7rem;
  line-height: 2;
  margin-bottom: 2em;
}
@media only screen and (max-width: 991px) {
  .p-front-content-block-text {
    font-size: 1.4rem;
  }
}
.p-front-content-block-en {
  font-size: 1.4rem;
  line-height: 1.4;
  color: var(--color-gold);
  margin-bottom: 60px;
}
@media only screen and (max-width: 991px) {
  .p-front-content-block-en {
    font-size: 1.3rem;
    margin-bottom: 40px;
  }
}
.p-front-content-block-more .c-button {
  border-color: var(--color-gold);
  color: var(--color-gold);
}
@media only screen and (max-width: 991px) {
  .p-front-content-block-more .c-button {
    margin: auto;
  }
}
.p-front-content-block-more .c-button::before {
  background: var(--color-gold);
}
.p-front-content-block-more .c-button:hover {
  color: black;
}
.p-front-content-block:nth-child(3) .p-front-content-block-main {
  order: 2;
  justify-self: flex-start;
  padding-left: 0;
  padding-right: 40px;
}
@media only screen and (max-width: 991px) {
  .p-front-content-block:nth-child(3) .p-front-content-block-main {
    padding-right: 30px;
    padding-left: 30px;
  }
}
.p-front-content-block:nth-child(3) .p-front-content-block-image {
  order: 1;
}
.p-front-access {
  position: relative;
  background: url("../images/front/bg_front_access.png");
  background-size: cover;
  padding-top: 120px;
  padding-bottom: 80px;
}
@media only screen and (max-width: 991px) {
  .p-front-access {
    padding-top: 60px;
    padding-bottom: 40px;
  }
}
.p-front-access::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/common/bg_image.png");
  opacity: 0.3;
}
.p-front-access-photo {
  width: 100%;
  max-width: 768px;
  margin: 0 auto 60px;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 991px) {
  .p-front-access-photo {
    margin-bottom: 20px;
  }
}
.p-front-access-photo picture {
  flex: 1;
}
.p-front-access .p-page-header {
  position: relative;
  z-index: 1;
}
.p-front-access .p-info {
  position: relative;
  z-index: 1;
}
.p-front-access .p-info-list {
  margin-bottom: 80px;
}
@media only screen and (max-width: 991px) {
  .p-front-access .p-info-list {
    margin-bottom: 40px;
  }
}
.p-front-access .p-info .c-button {
  color: white;
  text-decoration: none;
}
.p-front-access .p-info-more .c-button {
  margin: auto;
}
.p-front-access .p-info-row:last-child {
  border-bottom: 1px solid #666666;
  padding-bottom: 0;
}

.p-front-map {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .p-front-map {
    height: 400px;
  }
}
@media only screen and (max-width: 768px) {
  .p-front-map {
    height: auto;
    aspect-ratio: 1;
  }
}
.p-front-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
}

.p-front-meal {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  margin-bottom: 120px;
}
@media only screen and (max-width: 991px) {
  .p-front-meal {
    height: 400px;
    margin-bottom: 60px;
  }
}
.p-front-meal picture {
  width: 100%;
  height: 100%;
}
.p-front-meal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-front-information {
  margin-bottom: 120px;
}
@media only screen and (max-width: 991px) {
  .p-front-information {
    margin-bottom: 40px;
  }
}
.p-front-information__inner {
  max-width: 1100px;
  display: flex;
  justify-content: space-between;
  gap: 60px;
}
@media only screen and (max-width: 991px) {
  .p-front-information__inner {
    flex-direction: column;
    gap: 40px;
  }
}
.p-front-information-header {
  width: 280px;
  flex-shrink: 0;
}
@media only screen and (max-width: 991px) {
  .p-front-information-header {
    width: 100%;
    display: grid;
    place-items: center;
  }
}
@media only screen and (max-width: 991px) {
  .p-front-information-header .c-button {
    display: none;
  }
}
.p-front-information-content {
  flex: 1;
  border-top: 1px solid #666666;
}
.p-front-information-title {
  font-size: 3.4rem;
  letter-spacing: 0.05em;
  margin-bottom: 1em;
}
@media only screen and (max-width: 991px) {
  .p-front-information-title {
    font-size: 2.1rem;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 768px) {
  .p-front-information-title {
    font-size: 1.9rem;
  }
}
.p-front-information-title__sub {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.4;
  color: var(--color-gold);
  margin-bottom: 10px;
}
@media only screen and (max-width: 991px) {
  .p-front-information-title__sub {
    font-size: 1.3rem;
    margin-bottom: 2px;
  }
}
@media only screen and (max-width: 768px) {
  .p-front-information-title__sub {
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 991px) {
  .p-front-information-list {
    margin-bottom: 40px;
  }
}
.p-front-information-row {
  display: flex;
  line-height: 1.2;
  padding: 30px 16px;
  border-bottom: 1px solid #666666;
  color: white;
}
@media only screen and (max-width: 991px) {
  .p-front-information-row {
    padding: 20px 10px;
  }
}
@media only screen and (max-width: 768px) {
  .p-front-information-row {
    flex-direction: column;
    gap: 6px;
    padding: 12px 6px;
  }
}
.p-front-information-row:hover {
  background: var(--color-bg);
}
.p-front-information-row-date {
  width: 116px;
  font-size: 1.5rem;
}
.p-front-information-row-title {
  font-size: 1.6rem;
}
@media only screen and (max-width: 991px) {
  .p-front-information-row-title {
    font-size: 1.4rem;
  }
}
.p-front-information .c-button {
  width: 180px;
  height: 36px;
}
.p-front-information .c-button::before {
  top: 17px;
  background: white;
}
.p-front-information .c-button:hover {
  color: black;
}
.p-front-information-more {
  display: none;
}
@media only screen and (max-width: 991px) {
  .p-front-information-more {
    display: grid;
    place-items: center;
  }
}
.p-page-header {
  margin-bottom: 80px;
}
@media only screen and (max-width: 991px) {
  .p-page-header {
    margin-bottom: 48px;
  }
}
.p-page-header-title {
  text-align: center;
  position: relative;
  padding-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  .p-page-header-title {
    padding-bottom: 16px;
  }
}
.p-page-header-title::after {
  content: "";
  display: block;
  width: 200px;
  height: 1px;
  background: #322921;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.p-page-header-title--sub {
  display: block;
  font-family: var(--font-family-en);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.4;
  color: var(--color-gold);
  margin-bottom: 10px;
}
@media only screen and (max-width: 991px) {
  .p-page-header-title--sub {
    font-size: 1.3rem;
    margin-bottom: 2px;
  }
}
@media only screen and (max-width: 768px) {
  .p-page-header-title--sub {
    font-size: 1.2rem;
  }
}
.p-page-header-title--main {
  display: block;
  font-size: 3.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 991px) {
  .p-page-header-title--main {
    font-size: 2.1rem;
  }
}
@media only screen and (max-width: 768px) {
  .p-page-header-title--main {
    font-size: 1.9rem;
  }
}
.p-page-header-lead {
  font-size: 1.7rem;
  line-height: 2.2;
  text-align: center;
  color: var(--color-light-gray);
  padding-top: 60px;
}
@media only screen and (max-width: 991px) {
  .p-page-header-lead {
    font-size: 1.5rem;
    padding-top: 40px;
  }
}
@media only screen and (max-width: 768px) {
  .p-page-header-lead {
    text-align: left;
  }
}
.p-page-header-lead__english {
  font-size: 1.5rem;
  color: var(--color-gold);
  padding-top: 48px;
}
@media only screen and (max-width: 991px) {
  .p-page-header-lead__english {
    font-size: 1.4rem;
    padding-top: 24px;
  }
}

.p-page-intro-header {
  text-align: center;
  margin-bottom: 112px;
}
@media only screen and (max-width: 991px) {
  .p-page-intro-header {
    margin-bottom: 60px;
  }
}
.p-page-intro-title {
  font-size: 3.8rem;
  margin-bottom: 0.42em;
}
@media only screen and (max-width: 991px) {
  .p-page-intro-title {
    font-size: 2.4rem;
  }
}
.p-page-intro-description {
  font-size: 2rem;
}
@media only screen and (max-width: 991px) {
  .p-page-intro-description {
    font-size: 1.3rem;
  }
}

.page.about .l-wrapper {
  padding-bottom: 0;
}

.p-page-about-images {
  margin-bottom: 120px;
}
@media only screen and (max-width: 991px) {
  .p-page-about-images {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 768px) {
  .p-page-about-images {
    margin-bottom: 20px;
  }
}
.p-page-about-images-top {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.p-page-about-images-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.p-page-about-images img {
  display: block;
  width: 100%;
  height: auto;
}

.p-about-info {
  margin-bottom: 44px;
}
@media only screen and (max-width: 991px) {
  .p-about-info {
    margin-bottom: 20px;
  }
}

.p-about-map {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .p-about-map {
    height: 400px;
  }
}
@media only screen and (max-width: 768px) {
  .p-about-map {
    height: auto;
    aspect-ratio: 1;
  }
}
.p-about-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
}

.p-news-container {
  width: 984px;
  max-width: 100%;
  margin-inline: auto;
}
.p-news-date__year {
  font-size: 1.5rem;
}
@media only screen and (max-width: 991px) {
  .p-news-date__year {
    font-size: 1.3rem;
  }
}
.p-news-date__day {
  font-size: 3rem;
}
@media only screen and (max-width: 991px) {
  .p-news-date__day {
    font-size: 2rem;
  }
}
.p-news-row {
  display: flex;
  padding: 48px 0;
  border-bottom: 1px solid #575757;
}
@media only screen and (max-width: 991px) {
  .p-news-row {
    padding: 32px 0;
  }
}
@media only screen and (max-width: 991px) {
  .p-news-row:first-child {
    padding-top: 16px;
  }
}
.p-news-row-header {
  width: 154px;
  flex-shrink: 0;
}
@media only screen and (max-width: 991px) {
  .p-news-row-header {
    width: 76px;
  }
}
.p-news-row-body {
  flex: 1;
}
.p-news-row-title {
  display: inline-block;
  font-size: 2.4rem;
  font-weight: bold;
  color: white;
  line-height: 1.2;
  margin-top: 1.4em;
  margin-bottom: 1em;
}
@media only screen and (max-width: 991px) {
  .p-news-row-title {
    font-size: 1.9rem;
    margin-top: 1.34em;
  }
}
@media only screen and (max-width: 768px) {
  .p-news-row-title {
    margin-top: 1.26em;
  }
}
.p-news-row-exc {
  font-size: 1.5rem;
  color: var(--color-light-gray);
}
@media only screen and (max-width: 991px) {
  .p-news-row-exc {
    font-size: 1.26rem;
  }
}

.p-news-pagination {
  width: 984px;
  max-width: 100%;
  margin: 80px auto 0;
}
@media only screen and (max-width: 991px) {
  .p-news-pagination {
    margin-top: 60px;
  }
}
.p-news-pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.p-news-pagination .nav-links .page-numbers {
  font-size: 1.8rem;
  color: var(--color-light-gray);
  width: 1.5em;
  height: 2em;
  display: grid;
  place-content: center;
  line-height: 1;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .p-news-pagination .nav-links .page-numbers {
    font-size: 1.6rem;
  }
}
.p-news-pagination .nav-links .page-numbers:not(.next):not(.prev)::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: white;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}
.p-news-pagination .nav-links .page-numbers:not(.next):not(.prev):hover {
  color: var(--color-gold);
}
.p-news-pagination .nav-links .page-numbers:not(.next):not(.prev):hover::after {
  background: var(--color-gold);
  transform: scaleX(1);
}
.p-news-pagination .nav-links .page-numbers.current {
  color: var(--color-gold);
}
.p-news-pagination .nav-links .page-numbers.current::after {
  background: var(--color-gold) !important;
  transform: scaleX(1) !important;
}
.p-news-pagination .nav-links .page-numbers.prev:hover, .p-news-pagination .nav-links .page-numbers.next:hover {
  color: var(--color-gold);
}

.p-single-container {
  width: 800px;
  max-width: 100%;
  margin: 0 auto 100px;
  font-size: 1.6rem;
  line-height: 2.2;
}
@media only screen and (max-width: 991px) {
  .p-single-container {
    font-size: 1.4rem;
    margin-bottom: 40px;
  }
}
.p-single-container .wp-block-heading {
  margin-bottom: 1.3em;
  line-height: 1.3;
}
.p-single-container p {
  margin-bottom: 2em;
  line-height: 2.2;
}
.p-single-container .wp-block-image {
  padding: 0 0 2.4em;
}
.p-single-header {
  max-width: 922px;
  display: flex;
  align-items: center;
  gap: 60px;
  border-bottom: 1px solid #575757;
  padding-bottom: 30px;
  margin-inline: auto;
  margin-bottom: 72px;
}
@media only screen and (max-width: 991px) {
  .p-single-header {
    gap: 30px;
    padding-bottom: 16px;
    margin-bottom: 40px;
  }
}

.p-single-date {
  line-height: 1;
}
.p-single-date__year {
  font-size: 1.7rem;
}
@media only screen and (max-width: 991px) {
  .p-single-date__year {
    font-size: 1.4rem;
  }
}
.p-single-date__day {
  font-size: 3.4rem;
}
@media only screen and (max-width: 991px) {
  .p-single-date__day {
    font-size: 2.2rem;
  }
}

.p-single-title {
  font-size: 3rem;
  line-height: 1.3;
  top: 0.35em;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .p-single-title {
    font-size: 1.9rem;
  }
}

.p-single-back .c-button {
  margin: auto;
}

.p-contact {
  color: var(--color-light-gray);
  text-align: center;
}
@media only screen and (max-width: 480px) {
  .p-contact {
    text-align: left;
  }
}
.p-contact-lead {
  font-size: 1.8rem;
  line-height: 2.4;
}
@media only screen and (max-width: 991px) {
  .p-contact-lead {
    font-size: 1.4rem;
  }
}
.p-contact-lead-english {
  font-size: 1.7rem;
  color: var(--color-gold);
  padding: 60px 0;
}
@media only screen and (max-width: 991px) {
  .p-contact-lead-english {
    font-size: 1.3rem;
    padding: 40px 0 0;
  }
}
@media only screen and (max-width: 768px) {
  .p-contact-lead__center {
    text-align: center;
  }
}
.p-contact-dm-list {
  display: grid;
  place-content: center;
  font-size: 1.8rem;
  text-align: left;
  padding: 1em 0;
}
@media only screen and (max-width: 991px) {
  .p-contact-dm-list {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 480px) {
  .p-contact-dm-list {
    place-content: flex-start;
  }
}
.p-contact-image img {
  display: block;
  margin: 80px auto;
}
@media only screen and (max-width: 991px) {
  .p-contact-image img {
    margin: 40px auto;
    width: 400px;
  }
}

.p-contact-button-block {
  width: 540px;
  max-width: 100%;
  background: #0B1315;
  margin: 0 auto 48px;
  padding: 40px 24px;
}
@media only screen and (max-width: 991px) {
  .p-contact-button-block {
    margin-bottom: 40px;
  }
}
.p-contact-button-block .c-button {
  margin: auto;
}

.p-contact-tel-block {
  width: 540px;
  max-width: 100%;
  background: #0B1315;
  margin: 0 auto 100px;
  padding: 40px 24px 10px;
  color: var(--color-light-gray);
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .p-contact-tel-block {
    text-align: center;
    margin-bottom: 60px;
  }
}
.p-contact-tel-block-title {
  display: inline-block;
  font-size: 1.8rem;
  border-bottom: 1px solid #322921;
  padding-bottom: 14px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 991px) {
  .p-contact-tel-block-title {
    font-size: 1.6rem;
    margin-bottom: 16px;
  }
}
.p-contact-tel-block-row {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
  font-size: 5rem;
  line-height: 1;
  margin-bottom: 30px;
}
@media only screen and (max-width: 991px) {
  .p-contact-tel-block-row {
    font-size: 3.2rem;
    margin-bottom: 16px;
  }
}
.p-contact-tel-block-row span {
  font-size: 1.8rem;
  padding-bottom: 6px;
}
@media only screen and (max-width: 991px) {
  .p-contact-tel-block-row span {
    font-size: 1.2rem;
  }
}
.p-contact-tel-block-row a {
  display: contents;
}
.p-contact-tel-block p {
  margin-bottom: 22px;
  line-height: 1;
}
@media only screen and (max-width: 991px) {
  .p-contact-tel-block p {
    margin-bottom: 16px;
  }
}
.p-contact-tel-block + .p-page-header {
  margin-bottom: 60px;
}
@media only screen and (max-width: 991px) {
  .p-contact-tel-block + .p-page-header {
    margin-bottom: 40px;
  }
}

.page.menu .l-footer {
  margin-top: 0;
}
.page.menu .l-wrapper {
  padding-bottom: 0;
}

.p-menu-header {
  margin-bottom: 60px;
}

.p-menu-courses {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  width: 1000px;
  max-width: 100%;
  margin: 0 auto 72px;
}
@media only screen and (max-width: 991px) {
  .p-menu-courses {
    grid-template-columns: 1fr;
    place-items: center;
    gap: 40px;
    margin-bottom: 36px;
  }
}
.p-menu-courses__sub {
  grid-template-columns: 1fr;
  margin-bottom: 132px;
}
@media only screen and (max-width: 991px) {
  .p-menu-courses__sub {
    gap: 0;
    margin-bottom: 60px;
  }
}
.p-menu-courses__sub .p-menu-course {
  padding-left: 50px;
  padding-right: 50px;
}
.p-menu-courses__sub .p-menu-course:nth-child(2) {
  border-top: none;
}

.p-menu-course {
  padding-left: 40px;
  padding-right: 40px;
}
@media only screen and (max-width: 991px) {
  .p-menu-course {
    padding-left: 0;
    padding-right: 0;
    max-width: 320px;
  }
}
.p-menu-course:nth-child(n+2) {
  border-left: 1px solid rgba(201, 171, 129, 0.4);
}
@media only screen and (max-width: 991px) {
  .p-menu-course:nth-child(n+2) {
    border-top: 1px solid rgba(201, 171, 129, 0.4);
    border-left: none;
    padding-top: 40px;
  }
}
.p-menu-course-image {
  margin-bottom: 28px;
}
.p-menu-course-image img {
  display: block;
}
@media only screen and (max-width: 991px) {
  .p-menu-course-image img {
    width: 100%;
  }
}
.p-menu-course-header {
  margin-bottom: 24px;
}
@media only screen and (max-width: 991px) {
  .p-menu-course-header {
    margin-bottom: 24px;
  }
}
.p-menu-course-title {
  display: flex;
  flex-direction: column;
  gap: 0.2em;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 0.5em;
}
@media only screen and (max-width: 991px) {
  .p-menu-course-title {
    font-size: 2rem;
  }
}
.p-menu-course-title__en {
  font-size: 1.5rem;
  font-weight: normal;
  color: var(--color-gold);
  letter-spacing: 0.1em;
  display: block;
}
@media only screen and (max-width: 991px) {
  .p-menu-course-title__en {
    font-size: 1.4rem;
  }
}
.p-menu-course-price {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: var(--font-family-basic);
  font-size: 2.1rem;
}
@media only screen and (max-width: 991px) {
  .p-menu-course-price {
    font-size: 1.8rem;
  }
}
.p-menu-course-price .notice {
  font-size: 1.5rem;
}
@media only screen and (max-width: 991px) {
  .p-menu-course-price .notice {
    font-size: 1.3rem;
  }
}
.p-menu-course-price .tax {
  font-size: 1.5rem;
}
@media only screen and (max-width: 991px) {
  .p-menu-course-price .tax {
    font-size: 1.3rem;
  }
}
.p-menu-course-items {
  display: grid;
  gap: 44px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 991px) {
  .p-menu-course-items {
    gap: 24px;
  }
}
.p-menu-course-item {
  font-size: 1.7rem;
  opacity: 0;
  transform: translateY(20px);
  filter: blur(6px);
}
@media only screen and (max-width: 991px) {
  .p-menu-course-item {
    font-size: 1.55rem;
  }
}
.p-menu-course-item .eng {
  display: block;
  font-size: 1.5rem;
  color: var(--color-gold);
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 991px) {
  .p-menu-course-item .eng {
    font-size: 1.2rem;
  }
}
.p-menu-course-desc {
  font-size: 1.5rem;
  color: var(--color-light-gray);
  line-height: 1.7;
  padding-top: 1em;
}
@media only screen and (max-width: 991px) {
  .p-menu-course-desc {
    font-size: 1.3rem;
  }
}

.p-menu-description {
  font-size: 1.8rem;
  line-height: 1.6;
  text-align: center;
  letter-spacing: 0.15em;
  margin-bottom: 72px;
}
@media only screen and (max-width: 991px) {
  .p-menu-description {
    font-size: 1.4rem;
    margin-bottom: 36px;
  }
}
@media only screen and (max-width: 480px) {
  .p-menu-description {
    text-align: left;
  }
}
.p-menu-description a {
  color: var(--color-gold);
  text-decoration: underline;
}

.p-menu-fig {
  margin-bottom: 72px;
}
.p-menu-fig img {
  display: block;
  margin: auto;
}

.p-menu-sub-items {
  display: grid;
  gap: 48px;
}

.p-menu-sub-item-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 2.6rem;
  letter-spacing: 0.05em;
  margin-bottom: 30px;
}
@media only screen and (max-width: 991px) {
  .p-menu-sub-item-title {
    font-size: 1.7rem;
    margin-bottom: 16px;
  }
}
.p-menu-sub-item-title .eng {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-gold);
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 991px) {
  .p-menu-sub-item-title .eng {
    font-size: 1.3rem;
  }
}
.p-menu-sub-item .c-button {
  margin: auto;
  width: 180px;
  height: 36px;
  font-size: 14px;
  border: 1px solid var(--color-gray);
}
@media only screen and (max-width: 991px) {
  .p-menu-sub-item .c-button {
    height: 30px;
  }
}
.p-menu-sub-item .c-button::before {
  background: var(--color-gray);
  top: 17px;
  left: -18px;
  width: 32px;
}
@media only screen and (max-width: 991px) {
  .p-menu-sub-item .c-button::before {
    top: 15px;
  }
}

.p-menu-infinite-slider {
  width: 100%;
  overflow: hidden;
}
.p-menu-infinite-slider .p-menu-infinite-slider-inner {
  display: flex;
  gap: 20px;
  opacity: 0;
  filter: blur(8px);
  transform: translateY(10px);
  will-change: transform, opacity;
}
.p-menu-infinite-slider .slide {
  flex: 0 0 auto;
  width: 300px;
}
@media only screen and (max-width: 991px) {
  .p-menu-infinite-slider .slide {
    width: 150px;
  }
}
.p-menu-infinite-slider img {
  width: 100%;
  height: auto;
  display: block;
}

.meat-quality .l-wrapper {
  padding-bottom: 0;
}

.p-quality-container {
  padding-left: 24px;
  padding-right: 24px;
  margin-inline: auto;
  width: 100%;
  max-width: 1390px;
}

.p-quality-commit {
  padding-bottom: 100px;
}
@media only screen and (max-width: 991px) {
  .p-quality-commit {
    max-width: 640px;
    padding-bottom: 60px;
    margin-inline: auto;
  }
}
.p-quality-commit__block {
  display: flex;
  gap: 40px;
}
@media only screen and (max-width: 991px) {
  .p-quality-commit__block {
    flex-direction: column;
  }
}
.p-quality-commit__heading {
  font-size: 3.4rem;
  line-height: 1.3;
  margin-bottom: 46px;
}
@media only screen and (max-width: 991px) {
  .p-quality-commit__heading {
    font-size: 2.1rem;
    margin-bottom: 24px;
  }
}
@media only screen and (max-width: 768px) {
  .p-quality-commit__heading {
    font-size: 1.9rem;
  }
}
.p-quality-commit__heading--sub {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--color-gold);
  display: block;
  margin-bottom: 1em;
}
@media only screen and (max-width: 991px) {
  .p-quality-commit__heading--sub {
    font-size: 1.3rem;
  }
}
@media only screen and (max-width: 768px) {
  .p-quality-commit__heading--sub {
    font-size: 1.2rem;
  }
}
.p-quality-commit__image {
  flex: 1;
}
@media only screen and (max-width: 991px) {
  .p-quality-commit__image {
    order: 2;
  }
}
@media only screen and (max-width: 768px) {
  .p-quality-commit__image {
    padding: 0 20px;
  }
}
.p-quality-commit__image img {
  margin-inline: auto;
}
.p-quality-commit__content {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (max-width: 991px) {
  .p-quality-commit__content {
    order: 1;
  }
}
.p-quality-commit__content--back {
  position: absolute;
  top: 0;
  left: 0;
}
.p-quality-commit__desc {
  font-size: 1.8rem;
  line-height: 2;
  margin-bottom: 1em;
}
@media only screen and (max-width: 991px) {
  .p-quality-commit__desc {
    font-size: 1.4rem;
  }
}
.p-quality-commit__desc--en {
  font-size: 1.4rem;
  color: var(--color-gold);
  line-height: 1.4;
}
@media only screen and (max-width: 991px) {
  .p-quality-commit__desc--en {
    font-size: 1.3rem;
  }
}

.p-quality-item {
  margin-bottom: 100px;
}
@media only screen and (max-width: 991px) {
  .p-quality-item {
    margin-bottom: 60px;
  }
}
.p-quality-item__label {
  display: block;
  position: relative;
  font-size: 3.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
  padding-bottom: 30px;
  margin-bottom: 80px;
}
@media only screen and (max-width: 991px) {
  .p-quality-item__label {
    font-size: 2.1rem;
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 768px) {
  .p-quality-item__label {
    padding-bottom: 16px;
  }
}
.p-quality-item__label::after {
  content: "";
  display: block;
  width: 200px;
  height: 1px;
  background: #322921;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.p-quality-item__label--sub {
  display: block;
  font-family: var(--font-family-en);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.4;
  color: var(--color-gold);
  margin-bottom: 10px;
}
@media only screen and (max-width: 991px) {
  .p-quality-item__label--sub {
    font-size: 1.3rem;
    margin-bottom: 2px;
  }
}
.p-quality-item__label--main {
  display: block;
  font-size: 3.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 991px) {
  .p-quality-item__label--main {
    font-size: 2.1rem;
  }
}
@media only screen and (max-width: 768px) {
  .p-quality-item__label--main {
    font-size: 1.9rem;
  }
}
.p-quality-item__wrap {
  display: flex;
}
@media only screen and (max-width: 991px) {
  .p-quality-item__wrap {
    flex-direction: column;
    gap: 40px;
    max-width: 640px;
    margin-inline: auto;
  }
}
.p-quality-item__image, .p-quality-item__movie {
  flex: 1;
}
@media only screen and (max-width: 768px) {
  .p-quality-item__image, .p-quality-item__movie {
    padding: 0 20px;
  }
}
.p-quality-item__content {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 5;
}
.p-quality-item__title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 20px;
  font-size: 2.6rem;
  margin-bottom: 2.2em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  color: white;
}
@media only screen and (max-width: 991px) {
  .p-quality-item__title {
    font-size: 2rem;
    margin-bottom: 1.8rem;
    color: var(--color-light-gray);
  }
}
.p-quality-item__title--sub {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--color-gold);
}
@media only screen and (max-width: 991px) {
  .p-quality-item__title--sub {
    font-size: 1.3rem;
  }
}
.p-quality-item__text {
  font-size: 1.7rem;
  line-height: 2;
  margin-bottom: 1em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4), 0 6px 12px rgba(0, 0, 0, 0.2);
  color: white;
}
@media only screen and (max-width: 991px) {
  .p-quality-item__text {
    font-size: 1.4rem;
    color: var(--color-light-gray);
  }
}
.p-quality-item__en {
  font-size: 1.4rem;
  color: var(--color-gold);
  text-shadow: 0 0 3px rgb(0, 0, 0);
}
@media only screen and (max-width: 991px) {
  .p-quality-item__en {
    font-size: 1.3rem;
  }
}
.p-quality-item:nth-child(1) .p-quality-item__image {
  order: 2;
}
@media only screen and (max-width: 991px) {
  .p-quality-item:nth-child(1) .p-quality-item__image {
    order: 1;
  }
}
.p-quality-item:nth-child(1) .p-quality-item__content {
  order: 1;
  right: -24px;
}
@media only screen and (max-width: 991px) {
  .p-quality-item:nth-child(1) .p-quality-item__content {
    order: 2;
    right: auto;
  }
}
.p-quality-item:nth-child(2) .p-quality-item__content {
  left: -24px;
}
@media only screen and (max-width: 991px) {
  .p-quality-item:nth-child(2) .p-quality-item__content {
    left: auto;
  }
}
@media only screen and (max-width: 991px) {
  .p-quality-item:nth-child(2) .p-quality-item__content .p-quality-item__image {
    order: 2;
  }
}
@media only screen and (max-width: 991px) {
  .p-quality-item:nth-child(2) .p-quality-item__content .p-quality-item__content {
    order: 1;
  }
}
.p-quality-item:nth-child(3) .p-quality-item__content {
  right: -24px;
}
@media only screen and (max-width: 991px) {
  .p-quality-item:nth-child(3) .p-quality-item__content {
    right: auto;
  }
}
.p-quality-item__beef .p-quality-item__content--back, .p-quality-item__deer .p-quality-item__content--back {
  position: absolute;
  top: 0;
  left: 0;
}
.p-quality-item__movie {
  width: 100%;
  aspect-ratio: 3/2;
}
@media only screen and (max-width: 768px) {
  .p-quality-item__movie {
    padding: 0 20px;
  }
}
.p-quality-item__movie video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-quality-facility__title {
  display: block;
  position: relative;
  font-size: 3.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
  padding-bottom: 30px;
  margin-bottom: 80px;
}
@media only screen and (max-width: 991px) {
  .p-quality-facility__title {
    font-size: 2.1rem;
  }
}
@media only screen and (max-width: 768px) {
  .p-quality-facility__title {
    font-size: 1.9rem;
  }
}
@media only screen and (max-width: 768px) {
  .p-quality-facility__title {
    padding-bottom: 16px;
  }
}
.p-quality-facility__title::after {
  content: "";
  display: block;
  width: 200px;
  height: 1px;
  background: #322921;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.p-quality-facility__title--sub {
  display: block;
  font-family: var(--font-family-en);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.4;
  color: var(--color-gold);
  margin-bottom: 10px;
}
@media only screen and (max-width: 991px) {
  .p-quality-facility__title--sub {
    font-size: 1.3rem;
    margin-bottom: 2px;
  }
}
@media only screen and (max-width: 768px) {
  .p-quality-facility__title--sub {
    font-size: 1.2rem;
  }
}
.p-quality-facility__title--main {
  display: block;
  font-size: 3.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 991px) {
  .p-quality-facility__title--main {
    font-size: 2.1rem;
  }
}
@media only screen and (max-width: 768px) {
  .p-quality-facility__title--main {
    font-size: 1.9rem;
  }
}
.p-quality-facility__text {
  text-align: center;
  margin-top: -40px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 768px) {
  .p-quality-facility__text {
    text-align: left;
  }
}
.p-quality-facility__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media only screen and (max-width: 768px) {
  .p-quality-facility__gallery {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.p-404-container {
  display: grid;
  place-content: center;
  text-align: center;
}
.p-404-title {
  font-size: 8rem;
  font-weight: normal;
}
@media only screen and (max-width: 991px) {
  .p-404-title {
    font-size: 6rem;
  }
}
.p-404-back {
  padding-top: 64px;
}
.p-404-back .c-button {
  margin: auto;
}

/*# sourceMappingURL=style.css.map */
