@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Zen Old Mincho", sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: #0b0b0b;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

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

ul,
ol {
  list-style: none;
}

button {
  appearance: none;
  background: transparent;
  border: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

address {
  font-style: normal;
}

iframe {
  border: 0;
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-weight: 600;
  line-height: 1.4;
}

p {
  line-height: 1.75;
}

time {
  font-variant-numeric: tabular-nums;
}

:focus-visible {
  outline: 2px solid #052D50;
  outline-offset: 2px;
}

.l-wrapper {
  display: flex;
  min-height: 100dvh;
}

.l-inner {
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 15px;
}
@media (min-width: 1024px) {
  .l-inner {
    padding-inline: 80px;
  }
}

.l-sidebar {
  display: none;
}
@media (min-width: 1024px) {
  .l-sidebar {
    display: block;
    width: 200px;
    flex-shrink: 0;
    position: sticky;
    top: 0;
    height: 100dvh;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 0 0 10px rgba(217, 217, 217, 0.5);
    z-index: 100;
  }
}

.l-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.l-main__body {
  flex: 1;
}
@media (max-width: 1023px) {
  .l-main__body {
    display: flex;
    flex-direction: column;
  }
}

.l-header {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 200;
}
@media (min-width: 1024px) {
  .l-header {
    display: none;
  }
}
.l-header__inner {
  display: grid;
  grid-template-columns: 60px 1fr 60px;
  align-items: center;
  height: 60px;
}
.l-header__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  justify-self: center;
  text-decoration: none;
}
.l-header__logo img {
  height: 40px;
  width: auto;
}
.l-header__label {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 8px;
  color: #ffffff;
  background-color: #052D50;
  padding: 1px 15px;
  border-radius: 2px;
  white-space: nowrap;
}
.l-header__cta-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  height: 60px;
  background-color: #052D50;
  text-decoration: none;
}
.l-header__cta-btn svg {
  flex-shrink: 0;
}
.l-header__cta-btn span {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 12px;
  color: #ffffff;
  white-space: nowrap;
}
.l-header__menu-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 60px;
  height: 60px;
  padding: 0;
}
.l-header__menu-toggle[aria-expanded=true] .l-header__menu-bar:first-child {
  transform: translateY(7px) rotate(45deg);
}
.l-header__menu-toggle[aria-expanded=true] .l-header__menu-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.l-header__menu-toggle[aria-expanded=true] .l-header__menu-bar:last-child {
  transform: translateY(-7px) rotate(-45deg);
}
.l-header__menu-bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #052D50;
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.l-header__nav {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  background-color: #ffffff;
  z-index: 199;
}
.l-header__nav[hidden] {
  display: none;
}
.l-header__nav-cta {
  display: flex;
  gap: 10px;
  padding: 15px 20px;
}
.l-header__nav-cta-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 0;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 16px;
  text-decoration: none;
}
.l-header__nav-cta-btn svg {
  flex-shrink: 0;
}
.l-header__nav-cta-btn--cream {
  background-color: #DCB84D;
  color: #ffffff;
}
.l-header__nav-cta-btn--brand {
  background-color: #052D50;
  color: #ffffff;
}
.l-header__nav-body {
  padding: 0 20px 50px;
}
.l-header__nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid #CFCFB6;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 16px;
  color: #052D50;
  text-decoration: none;
}
.l-header__nav-item::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
  flex-shrink: 0;
}
.l-header__accordion {
  border-bottom: 1px solid #CFCFB6;
  overflow: hidden;
}
.l-header__accordion-ttl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 16px;
  color: #052D50;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.l-header__accordion-ttl[aria-expanded=true] .l-header__accordion-icon::before {
  opacity: 0;
}
.l-header__accordion-icon {
  position: relative;
  width: 15px;
  height: 1.5px;
  background-color: #052D50;
  flex-shrink: 0;
}
.l-header__accordion-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.5px;
  height: 15px;
  background-color: #052D50;
  transform: translate(-50%, -50%);
  transition: opacity 0.25s;
}
.l-header__accordion-body {
  background-color: #f7f7ee;
  padding: 0 15px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.l-header__accordion-body.is-open {
  max-height: 600px;
}
.l-header__accordion-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid #cfcfb6;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 16px;
  color: #052D50;
  text-decoration: none;
}
.l-header__accordion-item:last-child {
  border-bottom: none;
}
.l-header__accordion-item::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
  flex-shrink: 0;
}

.l-footer {
  background-color: #ffffff;
}
.l-footer__map {
  height: 250px;
  width: 100%;
}
@media (min-width: 1024px) {
  .l-footer__map {
    height: 456px;
  }
}
.l-footer__map iframe {
  width: 100%;
  height: 100%;
  display: block;
}
.l-footer__body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
@media (min-width: 1024px) {
  .l-footer__body {
    flex-direction: row;
  }
}
.l-footer__brand {
  flex: 0 0 auto;
  background-color: #ffffff;
  padding: 32px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
@media (min-width: 1024px) {
  .l-footer__brand {
    background-color: #f7f7f7;
    padding: 40px 50px;
    gap: 30px;
  }
}
.l-footer__logo-link {
  display: inline-block;
  width: 140px;
}
.l-footer__address {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 14px;
  font-weight: 500;
  color: #052D50;
  text-align: center;
  line-height: 1.8;
  font-style: normal;
  white-space: nowrap;
}
.l-footer__sns {
  display: flex;
  gap: 20px;
  align-items: center;
}
.l-footer__sns-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #F5F5F5;
  transition: opacity 0.2s;
}
@media (min-width: 1024px) {
  .l-footer__sns-link {
    gap: 50px;
    background-color: #ffffff;
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-footer__sns-link:hover {
    opacity: 0.8;
  }
}
.l-footer__right {
  flex: 1;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 32px 15px 0;
}
@media (min-width: 1024px) {
  .l-footer__right {
    gap: 50px;
    padding: 80px 80px 30px;
  }
}
.l-footer__nav {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}
@media (min-width: 1024px) {
  .l-footer__nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 60px;
    align-items: start;
  }
}
@media (min-width: 1580px) {
  .l-footer__nav {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.l-footer__nav-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-block: 20px;
  border-bottom: 1px solid #CFCFB6;
}
.l-footer__nav-col:first-child {
  border-top: 1px solid #CFCFB6;
}
@media (max-width: 1023px) {
  .l-footer__nav-col {
    padding-block: 0;
    gap: 0;
  }
}
@media (min-width: 1024px) {
  .l-footer__nav-col {
    gap: 20px;
    padding-block: 0;
    border: none;
  }
  .l-footer__nav-col:first-child {
    border-top: none;
  }
}
.l-footer__nav-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 16px;
  font-weight: 600;
  color: #0b0b0b;
  white-space: nowrap;
  background: none;
  border: none;
  padding: 0;
  text-align: left;
}
@media (max-width: 1023px) {
  .l-footer__nav-heading {
    width: 100%;
    padding: 20px 0;
    justify-content: space-between;
    cursor: pointer;
    color: #052D50;
    font-weight: normal;
  }
}
@media (min-width: 1024px) {
  .l-footer__nav-heading {
    text-decoration: none;
    cursor: pointer;
  }
}
@media (min-width: 1024px) and (hover: hover) and (pointer: fine) {
  .l-footer__nav-heading:hover {
    color: #052D50;
  }
}
@media (min-width: 1024px) {
  .l-footer__nav-heading .l-footer__accordion-icon {
    display: none;
  }
}
.l-footer__nav-heading[aria-expanded=true] .l-footer__accordion-icon::before {
  opacity: 0;
}
.l-footer__nav-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #052D50;
  flex-shrink: 0;
}
@media (max-width: 1023px) {
  .l-footer__nav-dot {
    display: none;
  }
}
.l-footer__nav-sub {
  border-left: 1px solid #eeeedd;
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  opacity: 0.8;
  list-style: none;
  margin: 0;
}
.l-footer__nav-sub a {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 16px;
  font-weight: 500;
  color: #0b0b0b;
  text-decoration: none;
  white-space: nowrap;
}
@media (max-width: 1023px) {
  .l-footer__nav-sub a {
    font-size: 14px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-footer__nav-sub a:hover {
    color: #052D50;
  }
}
@media (max-width: 1023px) {
  .l-footer__nav-sub {
    border-left: none;
    padding: 0;
    gap: 0;
    opacity: 1;
  }
  .l-footer__nav-sub li {
    border-bottom: 1px solid #cfcfb6;
  }
  .l-footer__nav-sub li:last-child {
    border-bottom: none;
  }
  .l-footer__nav-sub a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    font-size: 16px;
    color: #052D50;
  }
  .l-footer__nav-sub a::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-top: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;
    transform: rotate(45deg);
    flex-shrink: 0;
  }
}
@media (max-width: 1023px) {
  .l-footer__accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    background-color: #f7f7ee;
    padding: 0 15px;
  }
  .l-footer__accordion-body.is-open {
    max-height: 600px;
  }
}
.l-footer__accordion-icon {
  position: relative;
  width: 15px;
  height: 1.5px;
  background-color: #052D50;
  flex-shrink: 0;
}
.l-footer__accordion-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.5px;
  height: 15px;
  background-color: #052D50;
  transform: translate(-50%, -50%);
  transition: opacity 0.25s;
}
.l-footer__nav-items {
  display: flex;
  flex-direction: column;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.l-footer__nav-items a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 16px;
  font-weight: 600;
  color: #0b0b0b;
  text-decoration: none;
  white-space: nowrap;
}
@media (hover: hover) and (pointer: fine) {
  .l-footer__nav-items a:hover {
    color: #052D50;
  }
}
@media (max-width: 1023px) {
  .l-footer__nav-items {
    gap: 0;
  }
  .l-footer__nav-items li {
    border-bottom: 1px solid #CFCFB6;
  }
  .l-footer__nav-items li:last-child {
    border-bottom: none;
  }
  .l-footer__nav-items a {
    justify-content: space-between;
    gap: 0;
    padding: 20px 0;
    font-weight: normal;
    color: #052D50;
  }
  .l-footer__nav-items a::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-top: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;
    transform: rotate(45deg);
    flex-shrink: 0;
  }
}
.l-footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
}
@media (max-width: 1023px) {
  .l-footer__bottom {
    background-color: #3c3c3c;
    margin-inline: -15px;
    padding: 40px 15px;
    gap: 40px;
    margin-top: 10px;
  }
}
@media (min-width: 1024px) {
  .l-footer__bottom {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 0;
  }
}
.l-footer__group-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
@media (min-width: 1024px) {
  .l-footer__group-links {
    flex-direction: row;
    width: auto;
  }
}
.l-footer__group-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 59px;
  padding: 0 20px;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  background-color: #ffffff;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 14px;
  font-weight: 500;
  color: #0b0b0b;
  text-decoration: none;
  white-space: nowrap;
}
@media (hover: hover) and (pointer: fine) {
  .l-footer__group-btn:hover {
    opacity: 0.75;
  }
}
.l-footer__copyright {
  font-size: 12px;
  color: #939393;
  white-space: nowrap;
  text-align: center;
}
@media (max-width: 1023px) {
  .l-footer__copyright {
    color: #ffffff;
  }
}

.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 16px;
  line-height: 1;
  padding: 18px 24px;
  border-radius: 4px;
  border: 1px solid currentColor;
  transition: background-color 0.2s, color 0.2s;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  max-width: 272px;
  width: 100%;
}
.c-button__arrow-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.c-button--filled, .c-button--white {
  border-radius: 100px;
  justify-content: center;
}
.c-button--outline {
  color: #052D50;
  border-color: #052D50;
  background-color: #ffffff;
}
@media (hover: hover) and (pointer: fine) {
  .c-button--outline:hover {
    background-color: #052D50;
    color: #ffffff;
    border-color: #052D50;
  }
}
.c-button--light {
  color: #ffffff;
  border-color: #ffffff;
  background-color: transparent;
}
@media (hover: hover) and (pointer: fine) {
  .c-button--light:hover {
    background-color: rgba(255, 255, 255, 0.15);
  }
}
.c-button--filled {
  background-color: #052D50;
  color: #ffffff;
  border-color: #052D50;
}
@media (hover: hover) and (pointer: fine) {
  .c-button--filled:hover {
    background-color: #eeeedd;
    border-color: #eeeedd;
    color: #052D50;
  }
}
.c-button--arrow {
  padding: 0;
  border: none;
  background: none;
  color: #052D50;
  gap: 8px;
  max-width: none;
  width: auto;
}
@media (hover: hover) and (pointer: fine) {
  .c-button--arrow:hover {
    color: #052D50;
  }
}
.c-button--white {
  background-color: #ffffff;
  color: #052D50;
  border: none;
  gap: 10px;
}
@media (hover: hover) and (pointer: fine) {
  .c-button--white:hover {
    background-color: #052D50;
    color: #ffffff;
  }
}

.c-section-title {
  text-align: center;
}
.c-section-title__en {
  display: block;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #DCB84D;
  margin-bottom: 5px;
}
.c-section-title__ja {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 24px;
  font-weight: 500;
  color: #052D50;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
@media (min-width: 1024px) {
  .c-section-title__ja {
    font-size: 30px;
  }
}
.c-section-title--left {
  text-align: left;
}
.c-section-title--light .c-section-title__en {
  color: #ffffff;
}
.c-section-title--light .c-section-title__ja {
  color: #ffffff;
}

.c-room-btn {
  display: block;
  filter: drop-shadow(0 0px 10px rgba(0, 0, 0, 0.1));
  transition: filter 0.2s;
}
.c-room-btn svg {
  display: block;
  width: 100%;
  height: auto;
}
.c-room-btn .c-room-btn__bg {
  transition: fill 0.2s, stroke 0.2s;
}
@media (hover: hover) and (pointer: fine) {
  .c-room-btn:hover {
    filter: drop-shadow(0 0px 10px rgba(0, 0, 0, 0.1));
  }
  .c-room-btn:hover .c-room-btn__bg {
    fill: #F7F7EE;
    stroke: #CFCFB6;
  }
}

.p-page-header {
  position: relative;
  overflow: hidden;
  background-color: #052D50;
}
.p-page-header__bg {
  position: absolute;
  inset: 0;
  background-color: #d0d0d0;
}
.p-page-header__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.p-page-header__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.p-page-header__title {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  height: 175px;
  padding: 50px 20px;
  color: #ffffff;
  text-align: center;
  align-items: flex-start;
}
@media (min-width: 1024px) {
  .p-page-header__title {
    height: 240px;
    padding: 60px 80px;
  }
}
.p-page-header__en {
  display: block;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.1em;
}
@media (min-width: 1024px) {
  .p-page-header__en {
    font-size: 26px;
  }
}
.p-page-header__ja {
  display: block;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 25px;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin: 0;
}
@media (min-width: 1024px) {
  .p-page-header__ja {
    font-size: 38px;
  }
}
.p-page-header__breadcrumb {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 14px;
  color: #ffffff;
}
@media (min-width: 1024px) {
  .p-page-header__breadcrumb {
    padding: 12px 80px;
  }
}
.p-page-header__breadcrumb-link {
  color: #ffffff;
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .p-page-header__breadcrumb-link:hover {
    text-decoration: underline;
  }
}
.p-page-header__breadcrumb-dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #ffffff;
  flex-shrink: 0;
}
.p-page-header__breadcrumb-current {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.p-404 {
  display: flex;
  justify-content: center;
  padding: 80px 15px;
}
@media (min-width: 1024px) {
  .p-404 {
    padding: 120px 80px;
  }
}
.p-404__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 560px;
  width: 100%;
  text-align: center;
}
.p-404__number {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 120px;
  font-weight: 500;
  line-height: 1;
  color: #052D50;
  letter-spacing: 0.05em;
  opacity: 0.15;
  margin: 0;
  pointer-events: none;
  user-select: none;
}
@media (min-width: 1024px) {
  .p-404__number {
    font-size: 180px;
  }
}
.p-404__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: -60px;
}
@media (min-width: 1024px) {
  .p-404__body {
    margin-top: -90px;
  }
}
.p-404__lead {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 18px;
  font-weight: 500;
  color: #052D50;
  margin: 0;
}
@media (min-width: 1024px) {
  .p-404__lead {
    font-size: 22px;
  }
}
.p-404__text {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 16px;
  line-height: 1.9;
  margin: 0;
}
.p-404__btn {
  margin-top: 8px;
}

.p-page-content {
  background-color: #ffffff;
}
.p-page-content__inner {
  max-width: 800px;
  margin-inline: auto;
  padding: 40px 15px 60px;
}
@media (min-width: 1024px) {
  .p-page-content__inner {
    padding: 80px 80px;
  }
}
.p-page-content h2 {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 22px;
  font-weight: 500;
  color: #052D50;
  border-left: 4px solid #052D50;
  padding-left: 14px;
  margin-block: 40px 20px;
}
@media (min-width: 1024px) {
  .p-page-content h2 {
    font-size: 26px;
  }
}
.p-page-content h3 {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 18px;
  font-weight: 500;
  color: #0b0b0b;
  margin-block: 32px 14px;
}
.p-page-content p {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 16px;
  line-height: 1.9;
  color: #0b0b0b;
  margin-bottom: 1.5em;
}
.p-page-content ul,
.p-page-content ol {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 16px;
  line-height: 1.9;
  color: #0b0b0b;
  padding-left: 1.5em;
  margin-bottom: 1.5em;
}
.p-page-content ul li + li,
.p-page-content ol li + li {
  margin-top: 0.5em;
}
.p-page-content a {
  color: #052D50;
  text-decoration: underline;
}
@media (hover: hover) and (pointer: fine) {
  .p-page-content a:hover {
    opacity: 0.75;
  }
}
.p-page-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-block: 1.5em;
}
.p-page-content table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 14px;
  margin-bottom: 1.5em;
}
.p-page-content table th,
.p-page-content table td {
  border: 1px solid #e0e0e0;
  padding: 10px 14px;
  text-align: left;
  vertical-align: top;
}
.p-page-content table th {
  background-color: #ede9e0;
  font-weight: 500;
  color: #0b0b0b;
  white-space: nowrap;
}
.p-page-content hr {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin-block: 40px;
}

.p-register {
  background-color: #ffffff;
}
.p-register__inner {
  max-width: 800px;
  margin-inline: auto;
  padding: 30px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
@media (min-width: 1024px) {
  .p-register__inner {
    padding: 60px 80px;
    gap: 40px;
  }
}
.p-register__intro {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 16px;
  font-weight: 500;
  color: #0b0b0b;
  text-align: center;
  line-height: 1.8;
  width: 100%;
}
.p-register__notice {
  border: 1px solid #052D50;
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.p-register__notice-title {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 16px;
  font-weight: 500;
  color: #052D50;
  text-align: center;
}
.p-register__notice-btns {
  display: flex;
  gap: 10px;
}
.p-register__notice-btn {
  flex: 1;
  background-color: #052D50;
  color: #ffffff;
  text-decoration: none;
  padding: 15px;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  line-height: 1.6;
  transition: background-color 0.2s;
}
@media (hover: hover) and (pointer: fine) {
  .p-register__notice-btn:hover {
    background-color: #052D50;
  }
}
.p-register__download {
  background-color: #f5f5f5;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.p-register__download-title {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 20px;
  font-weight: 500;
  color: #052D50;
  text-align: center;
}
.p-register__download-card {
  background-color: #ffffff;
  border-radius: 5px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.p-register__download-card-title {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 18px;
  font-weight: 500;
  color: #0b0b0b;
}
.p-register__download-btns {
  display: flex;
  gap: 20px;
  width: 100%;
}
.p-register__download-btn {
  flex: 1;
  background-color: #f5f5f5;
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  transition: opacity 0.2s;
}
@media (hover: hover) and (pointer: fine) {
  .p-register__download-btn:hover {
    opacity: 0.75;
  }
}
.p-register__download-icon {
  width: 50px;
  height: 50px;
  border-radius: 50px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.p-register__download-label {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 14px;
  font-weight: 500;
  color: #0b0b0b;
  text-align: center;
  line-height: 1.6;
}
.p-register__form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}
.p-register__field {
  display: flex;
  flex-direction: column;
  gap: 11px;
  width: 100%;
}
.p-register__label-row {
  display: flex;
  align-items: center;
  gap: 6px;
}
.p-register__label {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 16px;
  font-weight: 500;
  color: #0b0b0b;
}
.p-register__required {
  background-color: #052D50;
  color: #ffffff;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 12px;
  font-weight: 500;
  padding: 2px 10px 3px;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}
.p-register__input {
  width: 100%;
  border: 1px solid #cfcfb6;
  background-color: #ffffff;
  padding: 15px;
  font-size: 16px;
  color: #939393;
  appearance: none;
}
.p-register__input::placeholder {
  color: #939393;
}
.p-register__input:focus {
  outline: 2px solid #052D50;
  outline-offset: -1px;
}
.p-register__file-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.p-register__file-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: #f6f6f6;
  border: 1px solid #939393;
  border-radius: 4px;
  padding: 7px 15px;
  font-size: 16px;
  color: #0b0b0b;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s;
}
@media (hover: hover) and (pointer: fine) {
  .p-register__file-label:hover {
    background-color: rgb(233.25, 233.25, 233.25);
  }
}
.p-register__file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.p-register__file-name {
  font-size: 14px;
  color: #939393;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.p-register__agree {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  width: 100%;
  justify-content: center;
}
.p-register__agree-checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.p-register__agree-icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #052D50;
  background-color: transparent;
  flex-shrink: 0;
  transition: background-color 0.15s;
}
.p-register__agree-checkbox:checked ~ .p-register__agree-icon {
  background-color: #052D50;
}
.p-register__agree-text {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 16px;
  font-weight: 500;
  color: #0b0b0b;
}
.p-register__agree-text a {
  color: #0b0b0b;
  text-decoration: underline;
}
@media (hover: hover) and (pointer: fine) {
  .p-register__agree-text a:hover {
    color: #052D50;
  }
}
.p-register__submit {
  min-width: 272px;
}
.p-register .wpcf7 {
  width: 100%;
}
.p-register .wpcf7-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}
.p-register .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.p-register .wpcf7-text,
.p-register .wpcf7-tel,
.p-register .wpcf7-email {
  width: 100%;
  border: 1px solid #cfcfb6;
  background-color: #ffffff;
  padding: 15px;
  font-size: 16px;
  color: #0b0b0b;
  appearance: none;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
}
.p-register .wpcf7-text::placeholder,
.p-register .wpcf7-tel::placeholder,
.p-register .wpcf7-email::placeholder {
  color: #939393;
}
.p-register .wpcf7-text:focus,
.p-register .wpcf7-tel:focus,
.p-register .wpcf7-email:focus {
  outline: 2px solid #052D50;
  outline-offset: -1px;
}
.p-register .wpcf7-file {
  display: block;
  width: 100%;
  /* padding: 10px 12px;
  border: 1px solid $color-dot-inactive; */
  background-color: #ffffff;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 14px;
  color: #0b0b0b;
  cursor: pointer;
}
.p-register .wpcf7-file:focus {
  outline: 2px solid #052D50;
  outline-offset: -1px;
}
.p-register .wpcf7-acceptance {
  width: 100%;
  display: flex;
  justify-content: center;
}
.p-register .wpcf7-acceptance .wpcf7-list-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}
.p-register .wpcf7-acceptance input[type=checkbox] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: #052D50;
  cursor: pointer;
}
.p-register .wpcf7-acceptance .wpcf7-list-item-label {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 16px;
  font-weight: 500;
  color: #0b0b0b;
  cursor: pointer;
}
.p-register .wpcf7-acceptance .wpcf7-list-item-label a {
  color: #0b0b0b;
  text-decoration: underline;
}
@media (hover: hover) and (pointer: fine) {
  .p-register .wpcf7-acceptance .wpcf7-list-item-label a:hover {
    color: #052D50;
  }
}
.p-register input.wpcf7-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 272px;
  padding: 15px 40px;
  background-color: #052D50;
  color: #ffffff;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 16px;
  font-weight: 500;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: background-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
@media (hover: hover) and (pointer: fine) {
  .p-register input.wpcf7-submit:hover {
    background-color: #052D50;
  }
}
.p-register input.wpcf7-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.p-register .wpcf7-not-valid-tip {
  display: block;
  margin-top: 4px;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 13px;
  color: #e53e3e;
}
.p-register .wpcf7-response-output {
  width: 100%;
  padding: 14px 16px;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 14px;
  border-radius: 4px;
  margin: 0;
  text-align: center;
}
.p-register .wpcf7-mail-sent-ok {
  border: 1px solid #052D50;
  color: #052D50;
  background-color: #fff8f8;
}
.p-register .wpcf7-mail-sent-ng,
.p-register .wpcf7-aborted,
.p-register .wpcf7-validation-errors,
.p-register .wpcf7-spam-blocked {
  border: 1px solid #e53e3e;
  color: #e53e3e;
  background-color: #fff0f0;
}
.p-register__success {
  width: 100%;
  border: 1px solid #052D50;
  padding: 24px 20px;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 16px;
  color: #052D50;
  text-align: center;
  line-height: 1.8;
}
.p-register__error {
  width: 100%;
  background-color: #fff0f0;
  border: 1px solid #e53e3e;
  padding: 12px 16px;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 14px;
  color: #e53e3e;
  border-radius: 4px;
}

.p-contact {
  background-color: #ffffff;
}
.p-contact__inner {
  max-width: 800px;
  margin-inline: auto;
  padding: 30px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
@media (min-width: 1024px) {
  .p-contact__inner {
    padding: 60px 80px;
    gap: 40px;
  }
}
.p-contact__intro {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 16px;
  font-weight: 500;
  color: #0b0b0b;
  text-align: center;
  line-height: 1.8;
  width: 100%;
}
.p-contact__field {
  display: flex;
  flex-direction: column;
  gap: 11px;
  width: 100%;
}
.p-contact__label-row {
  display: flex;
  align-items: center;
  gap: 6px;
}
.p-contact__label {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 16px;
  font-weight: 500;
  color: #0b0b0b;
}
.p-contact__required {
  background-color: #052D50;
  color: #ffffff;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 12px;
  font-weight: 500;
  padding: 2px 10px 3px;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}
.p-contact__input {
  width: 100%;
  border: 1px solid #cfcfb6;
  background-color: #ffffff;
  padding: 15px;
  font-size: 16px;
  color: #0b0b0b;
  appearance: none;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
}
.p-contact__input::placeholder {
  color: #939393;
}
.p-contact__input:focus {
  outline: 2px solid #052D50;
  outline-offset: -1px;
}
.p-contact__textarea {
  width: 100%;
  height: 158px;
  border: 1px solid #cfcfb6;
  background-color: #ffffff;
  padding: 15px;
  font-size: 16px;
  color: #0b0b0b;
  resize: vertical;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
}
.p-contact__textarea::placeholder {
  color: #939393;
}
.p-contact__textarea:focus {
  outline: 2px solid #052D50;
  outline-offset: -1px;
}
.p-contact__submit {
  min-width: 272px;
}
.p-contact__error {
  width: 100%;
  background-color: #fff0f0;
  border: 1px solid #e53e3e;
  padding: 12px 16px;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 14px;
  color: #e53e3e;
  border-radius: 4px;
}
.p-contact .wpcf7 {
  width: 100%;
}
.p-contact .wpcf7-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}
.p-contact .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.p-contact .wpcf7-text,
.p-contact .wpcf7-tel,
.p-contact .wpcf7-email {
  width: 100%;
  border: 1px solid #cfcfb6;
  background-color: #ffffff;
  padding: 15px;
  font-size: 16px;
  color: #0b0b0b;
  appearance: none;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
}
.p-contact .wpcf7-text::placeholder,
.p-contact .wpcf7-tel::placeholder,
.p-contact .wpcf7-email::placeholder {
  color: #939393;
}
.p-contact .wpcf7-text:focus,
.p-contact .wpcf7-tel:focus,
.p-contact .wpcf7-email:focus {
  outline: 2px solid #052D50;
  outline-offset: -1px;
}
.p-contact .wpcf7-textarea {
  width: 100%;
  height: 158px;
  border: 1px solid #cfcfb6;
  background-color: #ffffff;
  padding: 15px;
  font-size: 16px;
  color: #0b0b0b;
  resize: vertical;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
}
.p-contact .wpcf7-textarea::placeholder {
  color: #939393;
}
.p-contact .wpcf7-textarea:focus {
  outline: 2px solid #052D50;
  outline-offset: -1px;
}
.p-contact .wpcf7-radio {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.p-contact .wpcf7-radio .wpcf7-list-item {
  display: inline-flex;
  align-items: center;
  margin: 0;
}
.p-contact .wpcf7-radio .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.p-contact .wpcf7-radio .wpcf7-list-item-label {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 16px;
  font-weight: 500;
  color: #0b0b0b;
}
.p-contact .wpcf7-radio input[type=radio] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #052D50;
  background-color: transparent;
  flex-shrink: 0;
  cursor: pointer;
  transition: background-color 0.15s;
}
.p-contact .wpcf7-radio input[type=radio]:checked {
  background-color: #052D50;
}
.p-contact .wpcf7-radio input[type=radio]:focus {
  outline: 2px solid #052D50;
  outline-offset: 2px;
}
.p-contact .wpcf7-acceptance {
  width: 100%;
  display: flex;
  justify-content: center;
}
.p-contact .wpcf7-acceptance .wpcf7-list-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}
.p-contact .wpcf7-acceptance input[type=checkbox] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: #052D50;
  cursor: pointer;
}
.p-contact .wpcf7-acceptance .wpcf7-list-item-label {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 16px;
  font-weight: 500;
  color: #0b0b0b;
  cursor: pointer;
}
.p-contact .wpcf7-acceptance .wpcf7-list-item-label a {
  color: #0b0b0b;
  text-decoration: underline;
}
@media (hover: hover) and (pointer: fine) {
  .p-contact .wpcf7-acceptance .wpcf7-list-item-label a:hover {
    color: #052D50;
  }
}
.p-contact input.wpcf7-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 272px;
  padding: 15px 40px;
  background-color: #052D50;
  color: #ffffff;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 16px;
  font-weight: 500;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: opacity 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
@media (hover: hover) and (pointer: fine) {
  .p-contact input.wpcf7-submit:hover {
    opacity: 0.85;
  }
}
.p-contact input.wpcf7-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.p-contact .wpcf7-not-valid-tip {
  display: block;
  margin-top: 4px;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 13px;
  color: #e53e3e;
}
.p-contact .wpcf7-response-output {
  width: 100%;
  padding: 14px 16px;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 14px;
  border-radius: 4px;
  margin: 0;
  text-align: center;
}
.p-contact .wpcf7-mail-sent-ok {
  border: 1px solid #052D50;
  color: #052D50;
  background-color: #f8fff8;
}
.p-contact .wpcf7-mail-sent-ng,
.p-contact .wpcf7-aborted,
.p-contact .wpcf7-validation-errors,
.p-contact .wpcf7-spam-blocked {
  border: 1px solid #e53e3e;
  color: #e53e3e;
  background-color: #fff0f0;
}

.p-access {
  background-color: #ffffff;
}
.p-access__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 30px 0 60px;
}
.p-access__map-block {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-inline: 20px;
}
@media (min-width: 1024px) {
  .p-access__map-block {
    padding-inline: 80px;
  }
}
.p-access__map-cols {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (min-width: 1024px) {
  .p-access__map-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
  }
}
.p-access__map-right {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.p-access__map {
  width: 100%;
  aspect-ratio: 353/204;
}
@media (min-width: 1024px) {
  .p-access__map {
    aspect-ratio: unset;
    height: 100%;
    min-height: 260px;
  }
}
.p-access__map iframe {
  width: 100%;
  height: 100%;
  display: block;
}
.p-access__info {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 3px;
}
.p-access__info th,
.p-access__info td {
  padding: 10px;
  vertical-align: middle;
  line-height: 1.6;
}
.p-access__info th {
  background-color: #052D50;
  color: #ffffff;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  width: 94px;
}
.p-access__info td {
  background-color: #f7f7ee;
  color: #0b0b0b;
  font-size: 16px;
}
.p-access__map-btn {
  min-width: 272px;
  justify-content: center;
  white-space: nowrap;
}
@media (max-width: 1023px) {
  .p-access__map-btn {
    align-self: center;
  }
}
.p-access__guide-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  width: 100%;
  max-width: 400px;
  padding: 10px 20px;
  background-color: #f5f5f5;
  text-decoration: none;
  transition: opacity 0.2s;
}
@media (hover: hover) and (pointer: fine) {
  .p-access__guide-btn:hover {
    opacity: 0.75;
  }
}
.p-access__guide-btn-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.p-access__guide-btn-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  background-color: #ffffff;
}
.p-access__guide-btn-icon-wrap img {
  display: block;
}
.p-access__guide-btn-label {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 18px;
  font-weight: 500;
  color: #052D50;
  white-space: nowrap;
}
.p-access__guide-btn-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-access__methods {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-inline: 20px;
}
@media (min-width: 1024px) {
  .p-access__methods {
    padding-inline: 80px;
  }
}
.p-access__section-heading {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 24px;
  font-weight: 500;
  color: #052D50;
  border-left: 2px solid #052D50;
  padding: 0 0 3px 15px;
  margin: 0;
  line-height: 1;
}
.p-access__method {
  background-color: #f7f7ee;
  display: flex;
  flex-direction: column;
}
.p-access__method-label {
  background-color: #052D50;
  color: #ffffff;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 16px;
  font-weight: 500;
  padding: 6px 10px;
  align-self: flex-start;
}
.p-access__method-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
}
.p-access__method-desc {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 16px;
  font-weight: 500;
  color: #0b0b0b;
  margin: 0;
}
.p-access__route-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (min-width: 1024px) {
  .p-access__route-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.p-access__route-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.p-access__route-icon {
  display: block;
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #052D50;
  margin-top: 6px;
}
.p-access__route-text {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.p-access__route-line {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 18px;
  font-weight: 500;
  color: #052D50;
  line-height: 1.4;
}
.p-access__route-detail {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 16px;
  font-weight: 500;
  color: #0b0b0b;
  line-height: 1.6;
}
.p-access__note {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 14px;
  color: rgba(11, 11, 11, 0.5);
  line-height: 1.5;
  margin: 0;
}
.p-access__notice {
  background-color: #ffffff;
  border: 1px solid #052D50;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.p-access__notice-label {
  background-color: #eeeedd;
  color: #052D50;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 13px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  align-self: flex-start;
  white-space: nowrap;
}
@media (min-width: 1024px) {
  .p-access__notice-label {
    font-size: 16px;
  }
}
.p-access__notice-label svg {
  flex-shrink: 0;
}
.p-access__notice-text {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 14px;
  color: #0b0b0b;
  line-height: 1.5;
  margin: 0;
}
@media (min-width: 1024px) {
  .p-access__notice-text {
    font-size: 16px;
  }
}
.p-access__airport-flow {
  display: flex;
  gap: 15px;
  align-items: stretch;
  justify-content: center;
}
.p-access__airport-node {
  flex: 1;
  border: 1px solid #cfcfb6;
  background-color: #ffffff;
  border-radius: 100px;
  padding: 20px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
}
@media (min-width: 1024px) {
  .p-access__airport-node {
    border-radius: 10px;
  }
}
.p-access__airport-node span {
  writing-mode: vertical-rl;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 16px;
  font-weight: 500;
  color: #052D50;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
@media (min-width: 1024px) {
  .p-access__airport-node span {
    writing-mode: horizontal-tb;
  }
}
.p-access__airport-node--dest {
  background-color: #EBF1F6;
  border-color: #052D50;
  min-height: 100px;
}
@media (min-width: 1024px) {
  .p-access__airport-node--dest {
    min-height: 70px;
  }
}
.p-access__airport-arrow {
  flex-shrink: 0;
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-access__airport-arrow::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 25px solid transparent;
  border-bottom: 25px solid transparent;
  border-left: 15px solid #052D50;
}

.p-faq-page {
  background-color: #ffffff;
}
.p-faq-page__inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 30px 20px 60px;
}
@media (min-width: 1024px) {
  .p-faq-page__inner {
    gap: 80px;
    max-width: 1280px;
    margin-inline: auto;
    padding: 60px 80px 80px;
  }
}
.p-faq-page__anchors {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: center;
}
.p-faq-page__anchor-btn {
  position: relative; /* 
flex: 1; */
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 20px 5px 15px;
  background-color: #eeeedd;
  color: #0b0b0b;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  line-height: 1;
  transition: background-color 0.2s;
  width: calc(50% - 5px);
  text-align: center;
}
@media (min-width: 1024px) {
  .p-faq-page__anchor-btn {
    height: 60px;
    font-size: 18px;
    width: calc(33.3333333333% - 3.5px);
  }
}
.p-faq-page__anchor-btn svg {
  position: absolute;
  right: 6px;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .p-faq-page__anchor-btn svg {
    right: 15px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-faq-page__anchor-btn:hover {
    background-color: rgb(224.4, 224.4, 193.8);
  }
}
.p-faq-page__section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  scroll-margin-top: 80px;
}
.p-faq-page__section-title {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 24px;
  font-weight: 500;
  color: #052D50;
  border-left: 2px solid #052D50;
  padding: 0 0 3px 15px;
  margin: 0;
  line-height: 1;
}
.p-faq-page__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 1024px) {
  .p-faq-page__list {
    gap: 20px;
  }
}
.p-faq-page__item {
  border: 1px solid #cfcfb6;
  overflow: hidden;
}
.p-faq-page__question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 10px 15px 15px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.p-faq-page__question[aria-expanded=true] .p-faq-page__chevron {
  transform: rotate(180deg);
}
.p-faq-page__q-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #eeeedd;
  color: #052D50;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 16px;
  font-weight: 500;
  flex-shrink: 0;
}
.p-faq-page__q-text {
  flex: 1;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 16px;
  font-weight: 500;
  color: #052D50;
  line-height: 1.5;
}
@media (min-width: 1024px) {
  .p-faq-page__q-text {
    font-size: 18px;
  }
}
.p-faq-page__chevron {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 23px;
  height: 23px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.p-faq-page__chevron::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #052D50;
  border-bottom: 2px solid #052D50;
  transform: rotate(45deg) translate(-2px, -2px);
}
.p-faq-page__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.p-faq-page__answer.is-open {
  max-height: 800px;
}
.p-faq-page__a-inner {
  background-color: #EBF1F6;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 15px;
}
.p-faq-page__a-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #052D50;
  color: #ffffff;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 16px;
  font-weight: 500;
  flex-shrink: 0;
}
.p-faq-page__a-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.p-faq-page__a-body p {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 16px;
  font-weight: 500;
  color: #0b0b0b;
  line-height: 1.7;
  margin: 0;
}
.p-faq-page__a-body a {
  color: #0b0b0b;
  text-decoration: underline;
}
@media (hover: hover) and (pointer: fine) {
  .p-faq-page__a-body a:hover {
    color: #052D50;
  }
}
.p-faq-page__note {
  font-size: 14px !important;
  color: rgba(11, 11, 11, 0.8) !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
}
.p-faq-page__note a {
  color: rgba(11, 11, 11, 0.8) !important;
}

.p-sitemap {
  background-color: #ffffff;
}
.p-sitemap__inner {
  max-width: 1040px;
  margin-inline: auto;
  padding: 48px 15px 80px;
}
@media (min-width: 1024px) {
  .p-sitemap__inner {
    padding: 80px 80px;
  }
}
.p-sitemap__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 768px) {
  .p-sitemap__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 56px;
  }
}
@media (min-width: 1024px) {
  .p-sitemap__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 56px 80px;
  }
}
.p-sitemap__heading {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 20px;
  font-weight: 500;
  color: #052D50;
  border-left: 4px solid #052D50;
  padding-left: 14px;
  margin: 0 0 16px;
  line-height: 1.5;
}
.p-sitemap__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.p-sitemap__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 18px;
  font-weight: 500;
  color: #0b0b0b;
  text-decoration: none;
  border-bottom: 1px solid #e0e0e0;
}
.p-sitemap__link::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 1.5px solid #052D50;
  border-right: 1.5px solid #052D50;
  transform: rotate(45deg);
  flex-shrink: 0;
}
@media (hover: hover) and (pointer: fine) {
  .p-sitemap__link:hover {
    color: #052D50;
  }
}
.p-sitemap__sublink {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0 8px 18px;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 16px;
  text-decoration: none;
  border-bottom: 1px solid #e0e0e0;
}
.p-sitemap__sublink::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 1px;
  background-color: #e0e0e0;
  flex-shrink: 0;
}
@media (hover: hover) and (pointer: fine) {
  .p-sitemap__sublink:hover {
    color: #052D50;
  }
}

.p-banquet {
  background-color: #ffffff;
}
.p-banquet__img-slide {
  overflow: hidden;
  padding-block: 30px;
}
@media (min-width: 1024px) {
  .p-banquet__img-slide {
    padding-block: 80px;
  }
}
.p-banquet__img-slide-inner {
  display: flex;
  gap: 8px;
  width: max-content;
  animation: banquet-marquee 36s linear infinite;
  will-change: transform;
}
@media (min-width: 1024px) {
  .p-banquet__img-slide-inner {
    gap: 20px;
    animation-duration: 52s;
  }
}
@media (prefers-reduced-motion: reduce) {
  .p-banquet__img-slide-inner {
    animation: none;
  }
}
@keyframes banquet-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.p-banquet__slide-item {
  aspect-ratio: 4/3;
  width: 200px;
  flex-shrink: 0;
  overflow: hidden;
  background-color: #d0d0d0;
}
@media (min-width: 1024px) {
  .p-banquet__slide-item {
    width: 400px;
  }
}
.p-banquet__slide-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.p-banquet__contents {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding-bottom: 60px;
}
@media (min-width: 1024px) {
  .p-banquet__contents {
    max-width: 1280px;
    margin-inline: auto;
    padding-bottom: 80px;
  }
}
.p-banquet__section-heading {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 24px;
  font-weight: 500;
  color: #052D50;
  border-left: 2px solid #052D50;
  padding: 0 0 3px 15px;
  line-height: 1;
}
.p-banquet__about {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 1024px) {
  .p-banquet__about {
    padding: 0 80px;
  }
}
.p-banquet__about-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.p-banquet__about-desc {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 16px;
  font-weight: 500;
  color: #0b0b0b;
  line-height: 1.6;
  margin: 0;
}
.p-banquet__about-notes {
  display: flex;
  flex-direction: column;
  gap: 0;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 14px;
  color: #939393;
  line-height: 1.5;
}
.p-banquet__about-notes p {
  margin: 0;
}
.p-banquet__guide {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 1024px) {
  .p-banquet__guide {
    padding: 0 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 24px;
    align-items: start;
  }
  .p-banquet__guide > .p-banquet__section-heading,
  .p-banquet__guide > .p-banquet__cap-section {
    grid-column: 1/-1;
  }
}
.p-banquet__room-card {
  background-color: #ffffff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.p-banquet__room-img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  flex-shrink: 0;
}
.p-banquet__room-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.p-banquet__room-name-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 10px;
}
.p-banquet__room-name {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 20px;
  font-weight: 500;
  color: #052D50;
  line-height: 1;
}
.p-banquet__room-cap {
  background-color: #eeeedd;
  color: #052D50;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 12px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 3px;
  line-height: 1.4;
  white-space: nowrap;
  flex-shrink: 0;
}
.p-banquet__layout-btn {
  width: 100%;
  background-color: #DCB84D;
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 9px 9px 9px 37px;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 15px;
  font-weight: 500;
}
.p-banquet__layout-btn span:first-child {
  flex: 1;
  text-align: center;
}
@media (hover: hover) and (pointer: fine) {
  .p-banquet__layout-btn:hover {
    opacity: 0.85;
  }
}
.p-banquet__layout-btn-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 21px;
  height: 21px;
  flex-shrink: 0;
}
.p-banquet__room-card--lobby {
  padding-bottom: 12px;
}
.p-banquet__room-name-center {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 20px;
  font-weight: 500;
  color: #052D50;
  text-align: center;
  line-height: 1;
  width: 100%;
}
.p-banquet__acc-wrap {
  border: 1px solid #cfcfb6;
  overflow: hidden;
  margin: 0 20px;
}
@media (min-width: 1024px) {
  .p-banquet__acc-wrap {
    margin: 0 80px;
  }
}
.p-banquet__acc-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 10px 15px 15px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
@media (min-width: 1024px) {
  .p-banquet__acc-btn {
    padding: 20px 15px 20px 20px;
  }
}
.p-banquet__acc-btn[aria-expanded=true] .p-banquet__acc-chevron {
  transform: rotate(180deg);
}
.p-banquet__acc-title {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 20px;
  font-weight: 500;
  color: #052D50;
  line-height: 1;
}
@media (min-width: 1024px) {
  .p-banquet__acc-title {
    font-size: 22px;
  }
}
.p-banquet__acc-chevron {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 23px;
  height: 23px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.p-banquet__acc-chevron::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #052D50;
  border-bottom: 2px solid #052D50;
  transform: rotate(45deg) translate(-2px, -2px);
}
.p-banquet__acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.p-banquet__acc-body.is-open {
  max-height: 5000px;
}
.p-banquet__acc-inner {
  background-color: #f7f7ee;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.p-banquet__table-wrap {
  position: relative;
}
.p-banquet__table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.p-banquet__scroll-hint {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  background: rgba(85, 85, 85, 0.9);
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  padding: 12px 14px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
@media (min-width: 1024px) {
  .p-banquet__scroll-hint {
    display: none;
  }
}
.p-banquet__scroll-hint.is-hidden {
  opacity: 0;
}
.p-banquet__scroll-hint-icon {
  display: block;
  flex-shrink: 0;
}
.p-banquet__scroll-hint-text {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  white-space: nowrap;
  line-height: 1.5;
  margin: 0;
}
.p-banquet__cap-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 3px;
}
.p-banquet__cap-table thead tr:first-child th {
  background-color: #052D50;
  color: #ffffff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 7px;
  text-align: center;
  line-height: 1.3;
}
@media (min-width: 1024px) {
  .p-banquet__cap-table thead tr:first-child th {
    font-size: 18px;
  }
}
.p-banquet__cap-table .p-banquet__cap-subhead th {
  background-color: #7b94a9;
  color: #ffffff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 12px;
  font-weight: 500;
  padding: 7px 4px;
  text-align: center;
  line-height: 1.3;
  width: 50%;
}
@media (min-width: 1024px) {
  .p-banquet__cap-table .p-banquet__cap-subhead th {
    font-size: 16px;
  }
}
.p-banquet__cap-table tbody tr td {
  background-color: #f7f7ee;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #0b0b0b;
  padding: 8px 2px;
  text-align: center;
  vertical-align: middle;
  line-height: 1.4;
}
@media (min-width: 1024px) {
  .p-banquet__cap-table tbody tr td {
    font-size: 18px;
  }
}
.p-banquet__cap-table tbody tr td small {
  font-size: 11px;
  font-weight: 400;
}
@media (min-width: 1024px) {
  .p-banquet__cap-table tbody tr td small {
    font-size: 14px;
  }
}
.p-banquet__cap-th--name {
  min-width: 85px;
}
@media (min-width: 1024px) {
  .p-banquet__cap-th--name {
    min-width: 200px;
  }
}
.p-banquet__cap-th--size {
  min-width: 54px;
}
@media (min-width: 1024px) {
  .p-banquet__cap-th--size {
    min-width: 100px;
  }
}
.p-banquet__cap-name {
  background-color: #eeeedd !important;
  font-weight: 500;
}
.p-banquet__food-cta {
  margin: 0 20px;
  background-color: #052D50;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  position: relative;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .p-banquet__food-cta {
    margin: 0 80px;
  }
}
.p-banquet__food-img-wrap {
  width: 110px;
  flex-shrink: 0;
  padding: 10px 0 10px 10px;
}
.p-banquet__food-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}
.p-banquet__food-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 14px 10px;
  min-width: 0;
}
.p-banquet__food-title {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.2;
  margin: 0;
}
.p-banquet__food-desc {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.5;
  margin: 0;
  opacity: 0.9;
}
.p-banquet__food-arrow {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 26px;
  height: 26px;
  background-color: #eeeedd;
  border-radius: 5px 0 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-banquet__food-arrow svg {
  color: #052D50;
}
.p-banquet__price-block {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.p-banquet__price-subtitle {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 22px;
  font-weight: 500;
  color: #052D50;
  border-left: 2px solid #052D50;
  padding: 0 0 3px 15px;
  line-height: 1;
}
.p-banquet__price-table {
  width: 420px;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 3px;
}
@media (min-width: 1024px) {
  .p-banquet__price-table {
    width: 100%;
  }
}
.p-banquet__price-table thead tr th {
  background-color: #052D50;
  color: #ffffff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  padding: 7px 4px;
  white-space: nowrap;
}
@media (min-width: 1024px) {
  .p-banquet__price-table thead tr th {
    font-size: 18px;
    white-space: normal;
  }
}
.p-banquet__price-table tbody tr td {
  background-color: #ffffff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  color: #0b0b0b;
  padding: 8px 10px;
  text-align: center;
  vertical-align: middle;
  line-height: 1.5;
  white-space: nowrap;
}
@media (min-width: 1024px) {
  .p-banquet__price-table tbody tr td {
    font-size: 20px;
    white-space: normal;
  }
}
.p-banquet__price-table tbody tr td small {
  font-size: 11px;
  font-weight: 400;
}
@media (min-width: 1024px) {
  .p-banquet__price-table tbody tr td small {
    font-size: 14px;
  }
}
.p-banquet__price-th--time {
  width: 90px;
}
@media (min-width: 1024px) {
  .p-banquet__price-th--time {
    width: 30%;
  }
}
.p-banquet__price-time {
  background-color: #eeeedd !important;
  text-align: center;
  font-size: 13px !important;
  line-height: 1.5 !important;
  font-weight: 500;
}
@media (min-width: 1024px) {
  .p-banquet__price-time {
    font-size: 18px !important;
  }
}
.p-banquet__price-time b {
  font-size: 14px;
}
.p-banquet__price-time small {
  color: #939393;
  font-size: 12px !important;
}
@media (min-width: 1024px) {
  .p-banquet__price-time small {
    font-size: 14px !important;
  }
}
.p-banquet__price-note {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 14px;
  color: #0b0b0b;
  line-height: 1.5;
  margin: 0;
}
.p-banquet__equip-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.p-banquet__equip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 16px;
  font-weight: 500;
  color: #0b0b0b;
}
.p-banquet__equip-dot {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #052D50;
  flex-shrink: 0;
}
.p-banquet__equip-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 3px;
}
.p-banquet__equip-table thead tr th {
  background-color: #052D50;
  color: #ffffff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 7px 10px;
  line-height: 1.3;
  text-align: center;
}
@media (min-width: 1024px) {
  .p-banquet__equip-table thead tr th {
    font-size: 18px;
  }
}
.p-banquet__equip-table tbody tr td:first-child {
  background-color: #eeeedd;
  text-align: left;
}
.p-banquet__equip-table tbody tr td {
  background-color: #ffffff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #0b0b0b;
  padding: 8px 10px;
  text-align: center;
  vertical-align: middle;
  line-height: 1.4;
}
@media (min-width: 1024px) {
  .p-banquet__equip-table tbody tr td {
    font-size: 16px;
  }
}
.p-banquet__guide-subsection {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.p-banquet__guide-items {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.p-banquet__guide-num-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 16px;
  font-weight: 500;
  color: #0b0b0b;
  line-height: 1.6;
}
.p-banquet__guide-num-item p {
  flex: 1;
  margin: 0;
  min-width: 0;
}
.p-banquet__guide-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #ffffff;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 14px;
  font-weight: 500;
  color: #052D50;
  flex-shrink: 0;
  line-height: 1;
}
.p-banquet__guide-notes {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.p-banquet__guide-note {
  display: flex;
  align-items: flex-start;
  gap: 0;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 14px;
  font-weight: 400;
  color: #939393;
  line-height: 1.5;
  padding-left: 35px;
}
.p-banquet__guide-note span {
  flex-shrink: 0;
}
.p-banquet__guide-note p {
  flex: 1;
  margin: 0;
  min-width: 0;
}
.p-banquet__guide-intro {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 16px;
  font-weight: 500;
  color: #0b0b0b;
  margin: 0;
  line-height: 1.6;
}
.p-banquet__banquet-title {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 18px;
  font-weight: 500;
  color: #052D50;
  margin: 0;
  line-height: 1.4;
}
.p-banquet__banquet-list {
  list-style: disc;
  margin: 0;
  padding-left: 1.5em;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.p-banquet__banquet-list li {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 16px;
  font-weight: 500;
  color: #0b0b0b;
  line-height: 1.6;
}
.p-banquet__modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.p-banquet__modal[hidden] {
  display: none;
}
.p-banquet__modal-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
.p-banquet__modal-box {
  position: relative;
  background-color: #ffffff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 640px;
  max-height: 90vh;
}
.p-banquet__modal-img-wrap {
  width: 100%;
}
.p-banquet__modal-img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 60vh;
  object-fit: contain;
}
@media (min-width: 1024px) {
  .p-banquet__modal-img {
    max-height: 70vh;
  }
}
.p-banquet__modal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 12px;
}
.p-banquet__modal-name {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 16px;
  font-weight: 500;
  color: #052D50;
  margin: 0;
  line-height: 1.4;
  text-align: center;
  flex: 1;
}
@media (min-width: 1024px) {
  .p-banquet__modal-name {
    font-size: 18px;
  }
}
.p-banquet__modal-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  background: none;
  border: none;
  color: #052D50;
  cursor: pointer;
  transition: opacity 0.2s;
}
.p-banquet__modal-arrow:disabled {
  opacity: 0.25;
  cursor: default;
}
@media (hover: hover) and (pointer: fine) {
  .p-banquet__modal-arrow:hover:not(:disabled) {
    opacity: 0.6;
  }
}
.p-banquet__modal-divider {
  display: block;
  width: 1px;
  height: 16px;
  background-color: #052D50;
  flex-shrink: 0;
  margin: 0 10px;
}
.p-banquet__modal-close {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #b3b397;
  color: #ffffff;
  border: none;
  cursor: pointer;
  padding: 7px 14px;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}
@media (hover: hover) and (pointer: fine) {
  .p-banquet__modal-close:hover {
    background-color: rgb(161.7733333333, 161.7733333333, 127.4266666667);
  }
}
.p-banquet__section {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 1024px) {
  .p-banquet__section {
    padding: 0 80px;
  }
}
.p-banquet__scene-card {
  background-color: #f7f7ee;
  border: 1px solid #7b94a9;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.p-banquet__scene-divider {
  border: none;
  border-top: 1px solid #7b94a9;
  margin: 0;
}
.p-banquet__scene-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.p-banquet__scene-head {
  display: flex;
  align-items: center;
  gap: 10px;
}
.p-banquet__scene-dot {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #052D50;
  flex-shrink: 0;
}
.p-banquet__scene-title {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 18px;
  font-weight: 500;
  color: #052D50;
  margin: 0;
  line-height: normal;
}
.p-banquet__scene-desc {
  font-size: 16px;
  color: #0b0b0b;
  margin: 0;
  line-height: normal;
}
.p-banquet__cuisine-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 1024px) {
  .p-banquet__cuisine-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}
.p-banquet__cuisine-card {
  background-color: #ffffff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 10px;
}
.p-banquet__cuisine-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.p-banquet__cuisine-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.p-banquet__cuisine-name {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 20px;
  font-weight: 500;
  color: #052D50;
  text-align: center;
  margin: 0;
  line-height: normal;
}
.p-banquet__food-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 3px;
}
.p-banquet__food-table thead tr th {
  background-color: #052D50;
  color: #ffffff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 7px 10px;
  text-align: center;
  white-space: nowrap;
}
@media (min-width: 1024px) {
  .p-banquet__food-table thead tr th {
    font-size: 18px;
    white-space: normal;
  }
}
.p-banquet__food-table tbody tr td:first-child {
  background-color: #eeeedd;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #0b0b0b;
  padding: 8px 10px;
  text-align: left;
  vertical-align: middle;
}
@media (min-width: 1024px) {
  .p-banquet__food-table tbody tr td:first-child {
    font-size: 18px;
  }
}
.p-banquet__food-table tbody tr td:first-child small {
  color: #939393;
  font-size: 12px;
}
@media (min-width: 1024px) {
  .p-banquet__food-table tbody tr td:first-child small {
    font-size: 14px;
  }
}
.p-banquet__food-table tbody tr td:last-child {
  background-color: #ffffff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  color: #0b0b0b;
  padding: 8px;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}
@media (min-width: 1024px) {
  .p-banquet__food-table tbody tr td:last-child {
    font-size: 20px;
    white-space: normal;
  }
}
.p-banquet__food-table tbody tr td:last-child p {
  margin: 0;
  line-height: normal;
}
.p-banquet__food-table tbody tr td:last-child p small {
  font-size: 13px;
}
@media (min-width: 1024px) {
  .p-banquet__food-table tbody tr td:last-child p small {
    font-size: 14px;
  }
}
.p-banquet__detail-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background-color: #ffffff;
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .p-banquet__detail-btn:hover {
    opacity: 0.75;
  }
}
.p-banquet__detail-btn-text {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 18px;
  font-weight: 500;
  color: #052D50;
  line-height: normal;
}
.p-banquet__detail-btn-arrow {
  width: 29px;
  height: 29px;
  border-radius: 50%;
  border: 1px solid #052D50;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.p-banquet__detail-btn-arrow::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-top: 1.5px solid #052D50;
  border-right: 1.5px solid #052D50;
  transform: rotate(45deg) translate(-1px, 1px);
}
.p-banquet__cap-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.p-banquet__plan-intro {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 16px;
  font-weight: 500;
  color: #0b0b0b;
  margin: 0;
  line-height: 1.6;
}
.p-banquet__plan-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 1024px) {
  .p-banquet__plan-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}
.p-banquet__plan-card {
  background-color: #f7f7ee;
  border: 1px solid #CFCFB6;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.p-banquet__plan-img {
  height: 193px;
  overflow: hidden;
  background-color: #c4c4c4;
}
.p-banquet__plan-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.p-banquet__plan-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.p-banquet__plan-title {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 24px;
  font-weight: 500;
  color: #052D50;
  margin: 0;
  line-height: normal;
}
.p-banquet__plan-desc {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 16px;
  font-weight: 500;
  color: #0b0b0b;
  margin: 0;
  line-height: normal;
}
.p-banquet__plan-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 3px;
}
.p-banquet__plan-table tbody tr th {
  background-color: #052D50;
  color: #ffffff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  padding: 8px 10px;
  text-align: left;
  vertical-align: middle;
  width: 60%;
}
.p-banquet__plan-table tbody tr td {
  background-color: #ffffff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  color: #0b0b0b;
  padding: 8px;
  text-align: center;
  vertical-align: middle;
}
.p-banquet__plan-price-name {
  font-size: 14px;
  display: block;
  line-height: normal;
}
.p-banquet__plan-table small {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  display: block;
  line-height: normal;
}

.p-meeting {
  background-color: #ffffff;
}
.p-meeting__img-slide {
  overflow: hidden;
  padding-block: 30px;
}
@media (min-width: 1024px) {
  .p-meeting__img-slide {
    padding-block: 80px;
  }
}
.p-meeting__img-slide-inner {
  display: flex;
  gap: 8px;
  width: max-content;
  animation: meeting-marquee 36s linear infinite;
  will-change: transform;
}
@media (min-width: 1024px) {
  .p-meeting__img-slide-inner {
    gap: 20px;
    animation-duration: 52s;
  }
}
@media (prefers-reduced-motion: reduce) {
  .p-meeting__img-slide-inner {
    animation: none;
  }
}
@keyframes meeting-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.p-meeting__slide-item {
  aspect-ratio: 4/3;
  width: 200px;
  flex-shrink: 0;
  overflow: hidden;
  background-color: #d0d0d0;
}
@media (min-width: 1024px) {
  .p-meeting__slide-item {
    width: 400px;
  }
}
.p-meeting__slide-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.p-meeting__contents {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding-bottom: 60px;
}
@media (min-width: 1024px) {
  .p-meeting__contents {
    max-width: 1280px;
    margin-inline: auto;
    padding-bottom: 80px;
  }
}
.p-meeting__section {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 1024px) {
  .p-meeting__section {
    padding: 0 80px;
  }
}
.p-meeting__section-heading {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 24px;
  font-weight: 500;
  color: #052D50;
  border-left: 2px solid #052D50;
  padding: 0 0 3px 15px;
  line-height: 1;
}
.p-meeting__scene-card {
  background-color: #f7f7ee;
  border: 1px solid #7b94a9;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.p-meeting__scene-divider {
  border: none;
  border-top: 1px solid #7b94a9;
  margin: 0;
}
.p-meeting__scene-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.p-meeting__scene-head {
  display: flex;
  align-items: center;
  gap: 10px;
}
.p-meeting__scene-dot {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #052D50;
  flex-shrink: 0;
}
.p-meeting__scene-title {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 18px;
  font-weight: 500;
  color: #052D50;
  margin: 0;
  line-height: normal;
}
.p-meeting__scene-desc {
  font-size: 16px;
  color: #0b0b0b;
  margin: 0;
  line-height: normal;
}
.p-meeting__acc-wrap {
  border: 1px solid #cfcfb6;
  overflow: hidden;
  margin: 0 20px;
}
@media (min-width: 1024px) {
  .p-meeting__acc-wrap {
    margin: 0 80px;
  }
}
.p-meeting__acc-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 10px 15px 15px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
@media (min-width: 1024px) {
  .p-meeting__acc-btn {
    padding: 20px 15px 20px 20px;
  }
}
.p-meeting__acc-btn[aria-expanded=true] .p-meeting__acc-chevron {
  transform: rotate(180deg);
}
.p-meeting__acc-title {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 20px;
  font-weight: 500;
  color: #052D50;
  line-height: 1;
}
@media (min-width: 1024px) {
  .p-meeting__acc-title {
    font-size: 22px;
  }
}
.p-meeting__acc-chevron {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 23px;
  height: 23px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.p-meeting__acc-chevron::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #052D50;
  border-bottom: 2px solid #052D50;
  transform: rotate(45deg) translate(-2px, -2px);
}
.p-meeting__acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.p-meeting__acc-body.is-open {
  max-height: 5000px;
}
.p-meeting__acc-inner {
  background-color: #f7f7ee;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.p-meeting__price-block {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.p-meeting__price-subtitle {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 22px;
  font-weight: 500;
  color: #052D50;
  border-left: 2px solid #052D50;
  padding: 0 0 3px 15px;
  line-height: 1;
}
.p-meeting__price-note {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 14px;
  color: #0b0b0b;
  line-height: 1.5;
  margin: 0;
}
.p-meeting__price-note--body {
  font-size: 16px;
}
.p-meeting__table-wrap {
  position: relative;
}
.p-meeting__table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.p-meeting__scroll-hint {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  background: rgba(85, 85, 85, 0.9);
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  padding: 12px 14px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
@media (min-width: 1024px) {
  .p-meeting__scroll-hint {
    display: none;
  }
}
.p-meeting__scroll-hint.is-hidden {
  opacity: 0;
}
.p-meeting__scroll-hint-icon {
  display: block;
  flex-shrink: 0;
}
.p-meeting__scroll-hint-text {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  white-space: nowrap;
  line-height: 1.5;
  margin: 0;
}
.p-meeting__usage-table {
  min-width: 520px;
  width: 100%;
  border-collapse: separate;
  border-spacing: 3px;
}
@media (min-width: 1024px) {
  .p-meeting__usage-table {
    min-width: 0;
  }
}
.p-meeting__usage-table thead tr th {
  background-color: #052D50;
  color: #ffffff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  padding: 7px 4px;
  white-space: nowrap;
}
@media (min-width: 1024px) {
  .p-meeting__usage-table thead tr th {
    font-size: 18px;
    white-space: normal;
  }
}
.p-meeting__usage-table tbody tr td {
  background-color: #ffffff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  color: #0b0b0b;
  padding: 8px 10px;
  text-align: center;
  vertical-align: middle;
  line-height: 1.5;
  white-space: nowrap;
}
@media (min-width: 1024px) {
  .p-meeting__usage-table tbody tr td {
    font-size: 20px;
    white-space: normal;
  }
}
.p-meeting__usage-table tbody tr td small {
  font-size: 11px;
}
@media (min-width: 1024px) {
  .p-meeting__usage-table tbody tr td small {
    font-size: 14px;
  }
}
.p-meeting__usage-th--label {
  width: 100px;
}
@media (min-width: 1024px) {
  .p-meeting__usage-th--label {
    width: 24%;
  }
}
.p-meeting__usage-time {
  background-color: #eeeedd !important;
  text-align: center !important;
  padding: 10px 8px !important;
  vertical-align: middle;
  line-height: 1.4 !important;
  white-space: normal !important;
}
.p-meeting__usage-label {
  font-size: 14px !important;
  font-weight: 500;
  color: #052D50;
  margin: 0 0 2px;
  line-height: 1.2;
}
@media (min-width: 1024px) {
  .p-meeting__usage-label {
    font-size: 18px !important;
  }
}
.p-meeting__usage-range {
  font-size: 13px !important;
  margin: 0;
  line-height: 1.3;
}
@media (min-width: 1024px) {
  .p-meeting__usage-range {
    font-size: 18px !important;
  }
}
.p-meeting__usage-duration {
  font-size: 11px !important;
  color: #939393;
  margin: 0;
  line-height: 1.3;
}
@media (min-width: 1024px) {
  .p-meeting__usage-duration {
    font-size: 12px !important;
  }
}
.p-meeting__usage-price {
  font-weight: 500;
}
.p-meeting__equip-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 3px;
}
.p-meeting__equip-table thead tr th {
  background-color: #052D50;
  color: #ffffff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 7px 10px;
  line-height: 1.3;
  text-align: center;
}
@media (min-width: 1024px) {
  .p-meeting__equip-table thead tr th {
    font-size: 18px;
    white-space: normal;
  }
}
.p-meeting__equip-th--unit {
  width: 55px;
}
@media (min-width: 1024px) {
  .p-meeting__equip-th--unit {
    width: 200px;
  }
}
.p-meeting__equip-th--fee {
  width: 90px;
}
@media (min-width: 1024px) {
  .p-meeting__equip-th--fee {
    width: 200px;
  }
}
.p-meeting__price-td-name {
  background-color: #eeeedd;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #0b0b0b;
  padding: 8px 10px;
  text-align: left;
  vertical-align: middle;
  line-height: 1.4;
}
@media (min-width: 1024px) {
  .p-meeting__price-td-name {
    font-size: 18px;
  }
}
.p-meeting__price-td-unit {
  background-color: #ffffff;
  text-align: center;
  padding: 8px 4px;
  vertical-align: middle;
  white-space: nowrap;
}
@media (min-width: 1024px) {
  .p-meeting__price-td-unit {
    padding: 8px 8px;
  }
}
.p-meeting__price-qty {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #0b0b0b;
}
@media (min-width: 1024px) {
  .p-meeting__price-qty {
    font-size: 20px;
  }
}
.p-meeting__price-qty-prefix {
  font-size: 13px;
}
@media (min-width: 1024px) {
  .p-meeting__price-qty-prefix {
    font-size: 14px;
  }
}
.p-meeting__price-qty-unit {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #0b0b0b;
}
@media (min-width: 1024px) {
  .p-meeting__price-qty-unit {
    font-size: 14px;
  }
}
.p-meeting__price-td-fee {
  background-color: #ffffff;
  text-align: center;
  padding: 8px 4px;
  vertical-align: middle;
  white-space: nowrap;
}
@media (min-width: 1024px) {
  .p-meeting__price-td-fee {
    padding: 8px 8px;
  }
}
.p-meeting__price-num {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #0b0b0b;
}
@media (min-width: 1024px) {
  .p-meeting__price-num {
    font-size: 20px;
  }
}
.p-meeting__price-unit {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #0b0b0b;
}
@media (min-width: 1024px) {
  .p-meeting__price-unit {
    font-size: 14px;
  }
}
.p-meeting__fee-sub {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.p-meeting__fee-sub-title {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 18px;
  font-weight: 500;
  color: #052D50;
  margin: 0;
  line-height: 1;
}
.p-meeting__detail-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background-color: #ffffff;
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .p-meeting__detail-btn:hover {
    opacity: 0.75;
  }
}
.p-meeting__detail-btn-text {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 18px;
  font-weight: 500;
  color: #052D50;
  line-height: normal;
}
.p-meeting__detail-btn-arrow {
  width: 29px;
  height: 29px;
  border-radius: 50%;
  border: 1px solid #052D50;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.p-meeting__detail-btn-arrow::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-top: 1.5px solid #052D50;
  border-right: 1.5px solid #052D50;
  transform: rotate(45deg) translate(-1px, 1px);
}
.p-meeting__guide {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 1024px) {
  .p-meeting__guide {
    padding: 0 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 24px;
    align-items: start;
  }
  .p-meeting__guide > .p-meeting__section-heading,
  .p-meeting__guide > .p-meeting__cap-section {
    grid-column: 1/-1;
  }
}
.p-meeting__room-card {
  background-color: #ffffff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.p-meeting__room-img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  flex-shrink: 0;
}
.p-meeting__room-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.p-meeting__room-name-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 10px;
}
.p-meeting__room-name {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 20px;
  font-weight: 500;
  color: #052D50;
  line-height: 1;
}
.p-meeting__room-cap {
  background-color: #eeeedd;
  color: #052D50;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 12px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 3px;
  line-height: 1.4;
  white-space: nowrap;
  flex-shrink: 0;
}
.p-meeting__layout-btn {
  width: 100%;
  background-color: #DCB84D;
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 9px 9px 9px 37px;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 15px;
  font-weight: 500;
}
.p-meeting__layout-btn span:first-child {
  flex: 1;
  text-align: center;
}
@media (hover: hover) and (pointer: fine) {
  .p-meeting__layout-btn:hover {
    opacity: 0.85;
  }
}
.p-meeting__layout-btn-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 21px;
  height: 21px;
  flex-shrink: 0;
}
.p-meeting__room-card--lobby {
  padding-bottom: 12px;
}
.p-meeting__room-name-center {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 20px;
  font-weight: 500;
  color: #052D50;
  text-align: center;
  line-height: 1;
  width: 100%;
}
.p-meeting__cap-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.p-meeting__cap-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 3px;
}
@media (min-width: 1024px) {
  .p-meeting__cap-table {
    min-width: 0;
  }
}
.p-meeting__cap-table thead tr:first-child th {
  background-color: #052D50;
  color: #ffffff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 7px;
  text-align: center;
  line-height: 1.3;
}
@media (min-width: 1024px) {
  .p-meeting__cap-table thead tr:first-child th {
    font-size: 18px;
  }
}
.p-meeting__cap-table .p-meeting__cap-subhead th {
  background-color: #7b94a9;
  color: #ffffff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 12px;
  font-weight: 500;
  padding: 7px 4px;
  text-align: center;
  line-height: 1.3;
  width: 33.333%;
}
@media (min-width: 1024px) {
  .p-meeting__cap-table .p-meeting__cap-subhead th {
    font-size: 16px;
  }
}
.p-meeting__cap-table tbody tr td {
  background-color: #f7f7ee;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #0b0b0b;
  padding: 8px 2px;
  text-align: center;
  vertical-align: middle;
  line-height: 1.4;
}
@media (min-width: 1024px) {
  .p-meeting__cap-table tbody tr td {
    font-size: 18px;
  }
}
.p-meeting__cap-table tbody tr td small {
  font-size: 11px;
  font-weight: 400;
}
@media (min-width: 1024px) {
  .p-meeting__cap-table tbody tr td small {
    font-size: 14px;
  }
}
.p-meeting__cap-th--name {
  min-width: 85px;
}
@media (min-width: 1024px) {
  .p-meeting__cap-th--name {
    min-width: 200px;
  }
}
.p-meeting__cap-th--size {
  min-width: 54px;
}
@media (min-width: 1024px) {
  .p-meeting__cap-th--size {
    min-width: 100px;
  }
}
.p-meeting__cap-th--cap {
  min-width: 160px;
}
.p-meeting__cap-name {
  background-color: #eeeedd !important;
  font-weight: 500;
}
.p-meeting__plan-intro {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 16px;
  font-weight: 500;
  color: #0b0b0b;
  margin: 0;
  line-height: 1.6;
}
.p-meeting__plan-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 1024px) {
  .p-meeting__plan-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}
.p-meeting__plan-card {
  background-color: #f7f7ee;
  border: 1px solid #CFCFB6;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.p-meeting__plan-img {
  height: 193px;
  overflow: hidden;
  background-color: #c4c4c4;
}
.p-meeting__plan-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.p-meeting__plan-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.p-meeting__plan-title {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 24px;
  font-weight: 500;
  color: #052D50;
  margin: 0;
  line-height: normal;
}
.p-meeting__plan-desc {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 16px;
  font-weight: 500;
  color: #0b0b0b;
  margin: 0;
  line-height: normal;
}
.p-meeting__plan-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 3px;
}
.p-meeting__plan-table tbody tr th {
  background-color: #052D50;
  color: #ffffff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  padding: 8px 10px;
  text-align: left;
  vertical-align: middle;
  width: 60%;
}
.p-meeting__plan-table tbody tr td {
  background-color: #ffffff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  color: #0b0b0b;
  padding: 8px;
  text-align: center;
  vertical-align: middle;
}
.p-meeting__plan-price-name {
  font-size: 14px;
  display: block;
  line-height: normal;
}
.p-meeting__plan-table small {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  display: block;
  line-height: normal;
}

.p-equipment {
  background-color: #ffffff;
}
.p-equipment__contents {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 40px 20px 60px;
}
@media (min-width: 1024px) {
  .p-equipment__contents {
    max-width: 1280px;
    margin-inline: auto;
    padding: 60px 80px 80px;
  }
}
.p-equipment__section-heading {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 24px;
  font-weight: 500;
  color: #052D50;
  border-left: 2px solid #052D50;
  padding: 0 0 3px 15px;
  line-height: 1;
}
.p-equipment__price-block {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.p-equipment__price-note {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 14px;
  color: #0b0b0b;
  line-height: 1.5;
  margin: 0;
}
.p-equipment__price-note--body {
  font-size: 16px;
}
.p-equipment__table-wrap {
  position: relative;
}
.p-equipment__table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.p-equipment__equip-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 3px;
}
.p-equipment__equip-table thead tr th {
  background-color: #052D50;
  color: #ffffff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 7px 10px;
  line-height: 1.3;
  text-align: center;
}
@media (min-width: 1024px) {
  .p-equipment__equip-table thead tr th {
    font-size: 18px;
    white-space: normal;
  }
}
.p-equipment__equip-th--unit {
  width: 55px;
}
@media (min-width: 1024px) {
  .p-equipment__equip-th--unit {
    width: 200px;
  }
}
.p-equipment__equip-th--fee {
  width: 90px;
}
@media (min-width: 1024px) {
  .p-equipment__equip-th--fee {
    width: 200px;
  }
}
.p-equipment__price-td-name {
  background-color: #eeeedd;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #0b0b0b;
  padding: 8px 10px;
  text-align: left;
  vertical-align: middle;
  line-height: 1.4;
}
@media (min-width: 1024px) {
  .p-equipment__price-td-name {
    font-size: 18px;
  }
}
.p-equipment__price-td-unit {
  background-color: #F7F7EE;
  text-align: center;
  padding: 8px 4px;
  vertical-align: middle;
  white-space: nowrap;
}
@media (min-width: 1024px) {
  .p-equipment__price-td-unit {
    padding: 8px 8px;
  }
}
.p-equipment__price-qty {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #0b0b0b;
}
@media (min-width: 1024px) {
  .p-equipment__price-qty {
    font-size: 20px;
  }
}
.p-equipment__price-qty-prefix {
  font-size: 13px;
}
@media (min-width: 1024px) {
  .p-equipment__price-qty-prefix {
    font-size: 14px;
  }
}
.p-equipment__price-qty-unit {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #0b0b0b;
}
@media (min-width: 1024px) {
  .p-equipment__price-qty-unit {
    font-size: 14px;
  }
}
.p-equipment__price-td-fee {
  background-color: #F7F7EE;
  text-align: center;
  padding: 8px 4px;
  vertical-align: middle;
  white-space: nowrap;
}
@media (min-width: 1024px) {
  .p-equipment__price-td-fee {
    padding: 8px 8px;
  }
}
.p-equipment__price-num {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #0b0b0b;
}
@media (min-width: 1024px) {
  .p-equipment__price-num {
    font-size: 20px;
  }
}
.p-equipment__price-unit {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #0b0b0b;
}
@media (min-width: 1024px) {
  .p-equipment__price-unit {
    font-size: 14px;
  }
}
.p-equipment__fee-sub {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.p-equipment__fee-sub-title {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 18px;
  font-weight: 500;
  color: #052D50;
  margin: 0;
  line-height: 1;
}

.p-hall {
  background-color: #ffffff;
}
.p-hall__img-slide {
  overflow: hidden;
  padding-block: 30px;
}
@media (min-width: 1024px) {
  .p-hall__img-slide {
    padding-block: 80px;
  }
}
.p-hall__img-slide-inner {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: hall-marquee 36s linear infinite;
  will-change: transform;
}
@media (min-width: 1024px) {
  .p-hall__img-slide-inner {
    gap: 20px;
    animation-duration: 52s;
  }
}
@media (prefers-reduced-motion: reduce) {
  .p-hall__img-slide-inner {
    animation: none;
  }
}
@keyframes hall-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.p-hall__slide-item {
  aspect-ratio: 4/3;
  width: 200px;
  flex-shrink: 0;
  overflow: hidden;
  background-color: #d0d0d0;
}
@media (min-width: 1024px) {
  .p-hall__slide-item {
    width: 400px;
  }
}
.p-hall__slide-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.p-hall__contents {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding-bottom: 60px;
}
@media (min-width: 1024px) {
  .p-hall__contents {
    max-width: 1280px;
    margin-inline: auto;
    padding-bottom: 80px;
  }
}
.p-hall__section-heading {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 24px;
  font-weight: 500;
  color: #052D50;
  border-left: 2px solid #052D50;
  padding: 0 0 3px 15px;
  line-height: 1;
}
.p-hall__about {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 1024px) {
  .p-hall__about {
    padding: 0 80px;
  }
}
.p-hall__about-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 1024px) {
  .p-hall__about-body {
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
  }
}
.p-hall__about-desc {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 16px;
  font-weight: 500;
  color: #0b0b0b;
  line-height: 1.8;
  margin: 0;
}
@media (min-width: 1024px) {
  .p-hall__about-desc {
    flex: 1;
  }
}
.p-hall__about-img-wrap {
  width: 100%;
  overflow: hidden;
  background-color: #d0d0d0;
}
@media (min-width: 1024px) {
  .p-hall__about-img-wrap {
    width: 45%;
    flex-shrink: 0;
  }
}
.p-hall__about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.p-hall__guide {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 1024px) {
  .p-hall__guide {
    padding: 0 80px;
  }
}
.p-hall__guide-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 1024px) {
  .p-hall__guide-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 24px;
  }
}
.p-hall__guide-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.p-hall__guide-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background-color: #d0d0d0;
}
.p-hall__guide-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.p-hall__guide-caption {
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-align: center;
}
.p-hall__guide-name-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.p-hall__guide-name {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 20px;
  font-weight: 500;
  color: #052D50;
  margin: 0;
  line-height: 1.2;
}
.p-hall__guide-badge {
  display: inline-flex;
  align-items: center;
  background-color: #eeeedd;
  color: #052D50;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 12px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 3px;
  line-height: 1.4;
  flex-shrink: 0;
}
.p-hall__guide-desc {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 14px;
  font-weight: 500;
  color: #0b0b0b;
  margin: 0;
  line-height: 1.6;
}
@media (min-width: 1024px) {
  .p-hall__guide-desc {
    font-size: 16px;
  }
}
.p-hall__guide-note {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 11px;
  color: #939393;
  margin: 0;
  line-height: 1.4;
}
@media (min-width: 1024px) {
  .p-hall__guide-note {
    font-size: 14px;
  }
}
.p-hall__seat {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 1024px) {
  .p-hall__seat {
    padding: 0 80px;
  }
}
.p-hall__seat-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 1024px) {
  .p-hall__seat-body {
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
  }
}
.p-hall__seat-map-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 1024px) {
  .p-hall__seat-map-col {
    flex: 3;
  }
}
.p-hall__seat-info-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 1024px) {
  .p-hall__seat-info-col {
    flex: 2;
  }
}
.p-hall__seat-hint {
  background-color: #eeeedd;
  border-radius: 100px;
  padding: 7px 20px;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 14px;
  font-weight: 500;
  color: #052D50;
  text-align: center;
  line-height: 1.6;
}
@media (min-width: 1024px) {
  .p-hall__seat-hint {
    font-size: 16px;
  }
}
.p-hall__seat-map-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1520/2084;
}
.p-hall__seat-map-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.p-hall__seat-pin {
  position: absolute;
  width: 2.62%;
  aspect-ratio: 9.22876/12.6895;
}
@media (min-width: 1024px) {
  .p-hall__seat-pin {
    width: 3.5%;
  }
}
.p-hall__seat-pin {
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  transform: translateX(-50%);
  transition: opacity 0.2s;
}
.p-hall__seat-pin img {
  width: 100%;
  height: 100%;
  display: block;
}
@media (hover: hover) and (pointer: fine) {
  .p-hall__seat-pin:hover {
    opacity: 0.7;
  }
}
.p-hall__cap-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 3px;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.p-hall__cap-th {
  background-color: #052D50;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  padding: 7px;
}
@media (min-width: 1024px) {
  .p-hall__cap-th {
    font-size: 18px;
  }
}
.p-hall__cap-td {
  background-color: #f7f7ee;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  padding: 8px;
}
@media (min-width: 1024px) {
  .p-hall__cap-td {
    font-size: 18px;
  }
}
.p-hall__cap-td--label {
  background-color: #eeeedd;
  color: #0b0b0b;
}
.p-hall__cap-td--total-label {
  background-color: #EBF1F6;
  color: #052D50;
}
.p-hall__cap-td--total {
  background-color: #EBF1F6;
  color: #052D50;
}
.p-hall__cap-num {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 400;
}
@media (min-width: 1024px) {
  .p-hall__cap-num {
    font-size: 20px;
  }
}
.p-hall__cap-unit {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 13px;
  font-weight: 400;
}
.p-hall__print-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background-color: #f7f7f7;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
@media (hover: hover) and (pointer: fine) {
  .p-hall__print-btn:hover {
    opacity: 0.7;
  }
}
.p-hall__print-btn-text {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 18px;
  font-weight: 500;
  color: #052D50;
}
.p-hall__print-icon {
  width: 29px;
  height: 29px;
  object-fit: contain;
}
.p-hall__seat-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.p-hall__seat-modal[hidden] {
  display: none;
}
.p-hall__seat-modal-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
.p-hall__seat-modal-box {
  position: relative;
  background-color: #ffffff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 640px;
  max-height: 90vh;
  overflow-y: auto;
}
.p-hall__seat-modal-img-wrap {
  width: 100%;
}
.p-hall__seat-modal-img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4096/2731;
  object-fit: cover;
  max-height: 55vh;
}
@media (min-width: 1024px) {
  .p-hall__seat-modal-img {
    max-height: 65vh;
  }
}
.p-hall__seat-modal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 8px;
}
.p-hall__seat-modal-title {
  flex: 1;
  text-align: center;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-weight: 500;
  color: #052D50;
}
.p-hall__seat-modal-title p {
  margin: 0;
  line-height: 1.4;
}
.p-hall__seat-modal-title p:first-child {
  font-size: 16px;
}
.p-hall__seat-modal-title p:last-child {
  font-size: 14px;
}
.p-hall__seat-modal-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  background: none;
  border: none;
  color: #052D50;
  cursor: pointer;
  transition: opacity 0.2s;
}
.p-hall__seat-modal-arrow:disabled {
  opacity: 0.25;
  cursor: default;
}
@media (hover: hover) and (pointer: fine) {
  .p-hall__seat-modal-arrow:hover:not(:disabled) {
    opacity: 0.6;
  }
}
.p-hall__seat-modal-divider {
  display: block;
  width: 1px;
  height: 16px;
  background-color: #052D50;
  flex-shrink: 0;
}
.p-hall__seat-modal-close {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #b3b397;
  color: #ffffff;
  border: none;
  cursor: pointer;
  padding: 7px 14px;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  transition: background-color 0.2s;
}
@media (hover: hover) and (pointer: fine) {
  .p-hall__seat-modal-close:hover {
    background-color: rgb(161.7733333333, 161.7733333333, 127.4266666667);
  }
}
.p-hall__equipment {
  padding: 0 20px;
}
@media (min-width: 1024px) {
  .p-hall__equipment {
    padding: 0 80px;
  }
}
.p-hall__equip-item {
  border: 1px solid #cfcfb6;
  overflow: hidden;
}
.p-hall__equip-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 10px 15px 15px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
@media (min-width: 1024px) {
  .p-hall__equip-trigger {
    padding: 20px 15px 20px 20px;
  }
}
.p-hall__equip-trigger[aria-expanded=true] .p-hall__equip-chevron {
  transform: rotate(180deg);
}
.p-hall__equip-title {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 24px;
  font-weight: 500;
  color: #052D50;
  line-height: 1;
}
.p-hall__equip-chevron {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 23px;
  height: 23px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.p-hall__equip-chevron::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #052D50;
  border-bottom: 2px solid #052D50;
  transform: rotate(45deg) translate(-2px, -2px);
}
.p-hall__equip-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}
.p-hall__equip-body.is-open {
  max-height: 6000px;
}
.p-hall__equip-inner {
  background-color: #f7f7ee;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 20px;
}
.p-hall__equip-sub {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.p-hall__equip-sub-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 1024px) {
  .p-hall__equip-sub-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.p-hall__equip-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background-color: #ffffff;
  text-decoration: none;
  overflow: hidden;
  transition: opacity 0.2s;
}
@media (hover: hover) and (pointer: fine) {
  .p-hall__equip-link:hover {
    opacity: 0.7;
  }
}
.p-hall__equip-link-text {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 18px;
  font-weight: 500;
  color: #052D50;
  line-height: 1;
}
.p-hall__equip-link-icon {
  flex-shrink: 0;
  width: 29px;
  height: 29px;
}
.p-hall__equip-note {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 14px;
  font-weight: 400;
  color: #0b0b0b;
  line-height: 1.5;
  margin: 0;
}
@media (min-width: 1024px) {
  .p-hall__equip-note {
    font-size: 16px;
  }
}
.p-hall__equip-text {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 14px;
  font-weight: 400;
  color: #0b0b0b;
  line-height: 1.5;
  margin: 0;
}
@media (min-width: 1024px) {
  .p-hall__equip-text {
    font-size: 16px;
  }
}
.p-hall__usage-inner {
  gap: 20px;
}
.p-hall__usage-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.p-hall__usage-heading {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 22px;
  font-weight: 500;
  color: #052D50;
  line-height: 1;
  border-left: 2px solid #052D50;
  padding-left: 15px;
  padding-bottom: 3px;
  margin: 0;
}
.p-hall__usage-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-hall__usage-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.p-hall__usage-num {
  width: 25px;
  height: 25px;
  border-radius: 30px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 14px;
  font-weight: 500;
  color: #052D50;
  line-height: 1;
}
.p-hall__usage-text {
  flex: 1;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 16px;
  font-weight: 500;
  color: #0b0b0b;
  line-height: 1.6;
}
.p-hall__usage-para {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 16px;
  font-weight: 500;
  color: #0b0b0b;
  line-height: 1.6;
  margin: 0;
}
.p-hall__usage-notes {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 14px;
  font-weight: 400;
  color: #939393;
  line-height: 1.5;
}
.p-hall__usage-note-row {
  display: flex;
  align-items: flex-start;
}
.p-hall__usage-note-mark {
  flex-shrink: 0;
  white-space: nowrap;
}
.p-hall__usage-note-text {
  flex: 1;
}
.p-hall__usage-restriction {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.p-hall__usage-bullets {
  list-style: disc;
  padding-left: 24px;
  margin: 0;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 16px;
  font-weight: 500;
  color: #0b0b0b;
  line-height: 1.6;
}
.p-hall__usage-bullets li + li {
  margin-top: 0;
}
.p-hall__fee-table-wrap {
  width: 100%;
  overflow-x: auto;
}
.p-hall__fee-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 3px;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.p-hall__fee-th {
  background-color: #052D50;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  padding: 7px 5px;
  white-space: nowrap;
}
@media (min-width: 1024px) {
  .p-hall__fee-th {
    font-size: 18px;
    white-space: normal;
  }
}
.p-hall__fee-th--slot {
  width: 30%;
}
.p-hall__fee-td-slot {
  background-color: #eeeedd;
  text-align: center;
  padding: 8px 6px;
  vertical-align: middle;
  width: 30%;
}
.p-hall__fee-slot-name {
  font-size: 14px;
  font-weight: 500;
  color: #0b0b0b;
  margin: 0 0 2px;
  line-height: 1.4;
}
@media (min-width: 1024px) {
  .p-hall__fee-slot-name {
    font-size: 16px;
  }
}
.p-hall__fee-slot-time {
  font-size: 14px;
  font-weight: 500;
  color: #0b0b0b;
  margin: 0 0 2px;
  line-height: 1.4;
}
@media (min-width: 1024px) {
  .p-hall__fee-slot-time {
    font-size: 18px;
  }
}
.p-hall__fee-slot-dur {
  font-size: 12px;
  font-weight: 400;
  color: #939393;
  margin: 0;
  line-height: 1.4;
}
@media (min-width: 1024px) {
  .p-hall__fee-slot-dur {
    font-size: 14px;
  }
}
.p-hall__fee-td-price {
  background-color: #ffffff;
  text-align: center;
  padding: 8px 4px;
  vertical-align: middle;
  white-space: nowrap;
}
.p-hall__fee-num {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #0b0b0b;
}
@media (min-width: 1024px) {
  .p-hall__fee-num {
    font-size: 20px;
  }
}
.p-hall__fee-unit {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #0b0b0b;
}
@media (min-width: 1024px) {
  .p-hall__fee-unit {
    font-size: 14px;
  }
}
.p-hall__surcharge-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 1024px) {
  .p-hall__surcharge-wrap {
    flex-direction: row;
    gap: 20px;
  }
}
.p-hall__surcharge-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 3px;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media (min-width: 1024px) {
  .p-hall__surcharge-table {
    flex: 1;
  }
}
.p-hall__surcharge-cond {
  background-color: #eeeedd;
  font-size: 14px;
  font-weight: 500;
  color: #0b0b0b;
  text-align: center;
  padding: 10px 15px;
  line-height: 1.5;
}
@media (min-width: 1024px) {
  .p-hall__surcharge-cond {
    font-size: 18px;
  }
}
.p-hall__surcharge-result {
  background-color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  color: #0b0b0b;
  text-align: center;
  padding: 10px 15px;
  line-height: 1.4;
}
@media (min-width: 1024px) {
  .p-hall__surcharge-result {
    font-size: 18px;
  }
}
.p-hall__fee-sub {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.p-hall__fee-sub-title {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 18px;
  font-weight: 500;
  color: #052D50;
  margin: 0;
  line-height: 1;
}
.p-hall__fee-bullet-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 16px;
  font-weight: 500;
  color: #0b0b0b;
  margin-top: 5px;
}
.p-hall__fee-bullet {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #052D50;
  flex-shrink: 0;
}
.p-hall__price-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 3px;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.p-hall__price-table thead tr th {
  background-color: #052D50;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  padding: 7px 4px;
  white-space: nowrap;
}
@media (min-width: 1024px) {
  .p-hall__price-table thead tr th {
    font-size: 18px;
    white-space: normal;
  }
}
.p-hall__price-th--unit {
  width: 55px;
}
@media (min-width: 1024px) {
  .p-hall__price-th--unit {
    width: 200px;
  }
}
.p-hall__price-th--fee {
  width: 90px;
}
@media (min-width: 1024px) {
  .p-hall__price-th--fee {
    width: 200px;
  }
}
.p-hall__price-td-name {
  background-color: #eeeedd;
  font-size: 14px;
  font-weight: 500;
  color: #0b0b0b;
  padding: 8px 10px;
  text-align: left;
  vertical-align: middle;
  line-height: 1.4;
}
@media (min-width: 1024px) {
  .p-hall__price-td-name {
    font-size: 18px;
  }
  .p-hall__price-td-name br {
    display: none;
  }
}
.p-hall__price-td-name small {
  font-size: 12px;
  font-weight: 400;
  color: #939393;
}
@media (min-width: 1024px) {
  .p-hall__price-td-name small {
    font-size: 14px;
  }
}
.p-hall__price-td-unit {
  background-color: #ffffff;
  text-align: center;
  padding: 8px 4px;
  vertical-align: middle;
  white-space: nowrap;
}
@media (min-width: 1024px) {
  .p-hall__price-td-unit {
    padding: 8px 8px;
  }
}
.p-hall__price-td-unit--multi {
  white-space: normal;
}
.p-hall__price-td-unit--multi p {
  margin: 0;
  line-height: 1.5;
}
.p-hall__price-td-fee {
  background-color: #ffffff;
  text-align: center;
  padding: 8px 4px;
  vertical-align: middle;
  white-space: nowrap;
}
@media (min-width: 1024px) {
  .p-hall__price-td-fee {
    padding: 8px 8px;
  }
}
.p-hall__price-td-fee--multi {
  white-space: normal;
}
.p-hall__price-td-fee--multi p {
  margin: 0;
  line-height: 1.5;
}
.p-hall__price-qty {
  font-size: 16px;
  font-weight: 400;
  color: #0b0b0b;
}
@media (min-width: 1024px) {
  .p-hall__price-qty {
    font-size: 20px;
  }
}
.p-hall__price-qty-unit {
  font-size: 13px;
  font-weight: 400;
  color: #0b0b0b;
}
@media (min-width: 1024px) {
  .p-hall__price-qty-unit {
    font-size: 14px;
  }
}
.p-hall__price-num {
  font-size: 16px;
  font-weight: 400;
  color: #0b0b0b;
}
@media (min-width: 1024px) {
  .p-hall__price-num {
    font-size: 20px;
  }
}
.p-hall__price-unit {
  font-size: 13px;
  font-weight: 400;
  color: #0b0b0b;
}
@media (min-width: 1024px) {
  .p-hall__price-unit {
    font-size: 14px;
  }
}
.p-hall__stage-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background-color: #ffffff;
  border: 1px solid #052D50;
  width: 100%;
}
@media (min-width: 1024px) {
  .p-hall__stage-card {
    grid-column: 1/-1;
  }
}
.p-hall__stage-card-title {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 18px;
  font-weight: 500;
  color: #052D50;
  margin: 0;
  line-height: 1;
}
.p-hall__stage-card-dims {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
}
.p-hall__stage-dim {
  display: flex;
  align-items: center;
  gap: 10px;
}
.p-hall__stage-dim-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5;
  color: #052D50;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 14px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 3px;
  line-height: 1.4;
}
.p-hall__stage-dim-value {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 16px;
  font-weight: 500;
  color: #0b0b0b;
  white-space: nowrap;
}
.p-hall__floating-btn {
  position: fixed;
  bottom: 30px;
  right: 0;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 10px;
  background-color: #eeeedd;
  border-radius: 10px 0 0 10px;
  text-decoration: none;
  filter: drop-shadow(0px 0px 5px rgba(141, 141, 141, 0.3));
  z-index: 100;
  transition: opacity 0.3s, visibility 0.3s;
}
.p-hall__floating-btn.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.p-hall__floating-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  flex-shrink: 0;
}
.p-hall__floating-btn-text {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 16px;
  font-weight: 500;
  color: #052D50;
  white-space: nowrap;
  line-height: 1.1;
}

.p-news-archive {
  background-color: #ffffff;
}
.p-news-archive__inner {
  max-width: 1240px;
  margin-inline: auto;
  padding: 30px 15px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 1024px) {
  .p-news-archive__inner {
    padding: 60px 80px;
    gap: 40px;
  }
}
.p-news-archive__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.p-news-archive__item {
  border-bottom: 1px solid #CFCFB6;
}
.p-news-archive__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  text-decoration: none;
  transition: opacity 0.2s;
}
@media (min-width: 1024px) {
  .p-news-archive__link {
    padding: 15px 0;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-news-archive__link:hover {
    opacity: 0.7;
  }
}
.p-news-archive__item-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
  min-width: 0;
}
.p-news-archive__item-meta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.p-news-archive__item-date {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 14px;
  color: #939393;
  white-space: nowrap;
  flex-shrink: 0;
}
.p-news-archive__item-badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid #052D50;
  border-radius: 2px;
  padding: 3px 8px;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 11px;
  color: #052D50;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1;
}
.p-news-archive__item-title {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 16px;
  color: #0b0b0b;
  line-height: 1.5;
}
@media (min-width: 1024px) {
  .p-news-archive__item-title {
    font-size: 18px;
  }
}
.p-news-archive__item-arrow {
  flex-shrink: 0;
  color: #052D50;
  display: flex;
  align-items: center;
}
.p-news-archive__pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.p-news-archive__pagination-numbers {
  display: flex;
  align-items: center;
  gap: 20px;
}
.p-news-archive__pagination-numbers .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 14px;
  color: #0b0b0b;
  background-color: #eeeedd;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
}
.p-news-archive__pagination-numbers .page-numbers.current {
  background-color: #052D50;
  color: #ffffff;
}
.p-news-archive__pagination-numbers .page-numbers.dots {
  background: none;
  width: auto;
  cursor: default;
}
@media (hover: hover) and (pointer: fine) {
  .p-news-archive__pagination-numbers .page-numbers:hover:not(.dots) {
    background-color: #052D50;
    color: #ffffff;
  }
}
.p-news-archive__empty {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 16px;
  color: #939393;
  text-align: center;
  padding: 40px 0;
}

.p-news-single {
  background-color: #ffffff;
}
.p-news-single__breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  border-bottom: 1px solid #efefef;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 14px;
}
@media (min-width: 1024px) {
  .p-news-single__breadcrumb {
    padding: 12px 80px;
  }
}
.p-news-single__breadcrumb-link {
  color: #0b0b0b;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
@media (hover: hover) and (pointer: fine) {
  .p-news-single__breadcrumb-link:hover {
    text-decoration: underline;
  }
}
.p-news-single__breadcrumb-dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #0b0b0b;
  flex-shrink: 0;
}
.p-news-single__breadcrumb-current {
  color: #939393;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.p-news-single__inner {
  max-width: 1240px;
  margin-inline: auto;
  padding: 30px 15px 50px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 1024px) {
  .p-news-single__inner {
    padding: 60px 80px 80px;
    gap: 40px;
  }
}
.p-news-single__header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #CFCFB6;
  width: 100%;
}
.p-news-single__meta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.p-news-single__date {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 14px;
  color: #939393;
  white-space: nowrap;
  flex-shrink: 0;
}
.p-news-single__badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid #052D50;
  border-radius: 2px;
  padding: 3px 8px;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 11px;
  color: #052D50;
  white-space: nowrap;
  text-decoration: none;
  flex-shrink: 0;
  line-height: 1;
  transition: background-color 0.2s;
}
@media (hover: hover) and (pointer: fine) {
  .p-news-single__badge:hover {
    background-color: #EBF1F6;
  }
}
.p-news-single__title {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 24px;
  font-weight: 500;
  color: #052D50;
  line-height: 1.5;
  margin: 0;
  width: 100%;
}
@media (min-width: 1024px) {
  .p-news-single__title {
    font-size: 28px;
  }
}
.p-news-single__content {
  width: 100%;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 16px;
  font-weight: 500;
  color: #0b0b0b;
  line-height: 1.9;
}
.p-news-single__content p {
  margin-bottom: 1.5em;
}
.p-news-single__content p:last-child {
  margin-bottom: 0;
}
.p-news-single__content h2 {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 22px;
  font-weight: 500;
  color: #0b0b0b;
  background-color: #EBF1F6;
  border-left: 2px solid #052D50;
  padding: 10px 15px;
  margin-bottom: 1.2em;
  line-height: 1.4;
}
.p-news-single__content h3 {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 20px;
  font-weight: 500;
  color: #052D50;
  margin-bottom: 1em;
  line-height: 1.4;
}
.p-news-single__content h4 {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 18px;
  font-weight: 500;
  color: #0b0b0b;
  margin-bottom: 0.8em;
  line-height: 1.4;
}
.p-news-single__content a {
  color: #052D50;
  text-decoration: underline;
}
@media (hover: hover) and (pointer: fine) {
  .p-news-single__content a:hover {
    opacity: 0.75;
  }
}
.p-news-single__content ul,
.p-news-single__content ol {
  padding-left: 1.5em;
  margin-bottom: 1.5em;
}
.p-news-single__content ul li,
.p-news-single__content ol li {
  margin-bottom: 0.4em;
  line-height: 1.7;
}
.p-news-single__content img {
  max-width: 100%;
  height: auto;
  display: block;
}
.p-news-single__content figure {
  margin: 0 0 1.5em;
}
.p-news-single__content figcaption {
  font-size: 14px;
  color: #939393;
  text-align: center;
  margin-top: 6px;
}
.p-news-single__content blockquote {
  border-left: 3px solid #CFCFB6;
  padding: 10px 15px;
  color: #939393;
  margin: 0 0 1.5em;
  font-style: italic;
}
.p-news-single__content > * + * {
  margin-top: 0;
}

.p-event-archive {
  background-color: #ffffff;
}
.p-event-archive__inner {
  max-width: 1240px;
  margin-inline: auto;
  padding: 30px 15px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 1024px) {
  .p-event-archive__inner {
    padding: 60px 80px;
    gap: 40px;
  }
}
.p-event-archive__banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background-color: #f7f7f7;
  padding: 20px;
  text-decoration: none;
  transition: opacity 0.2s;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}
@media (hover: hover) and (pointer: fine) {
  .p-event-archive__banner:hover {
    opacity: 0.8;
  }
}
.p-event-archive__banner-text {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 18px;
  font-weight: 600;
  color: #052D50;
  line-height: 1.6;
}
@media (min-width: 1024px) {
  .p-event-archive__banner-text br {
    display: none;
  }
}
.p-event-archive__banner-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-event-archive__info {
  border: 1px solid #052D50;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}
.p-event-archive__info-row {
  display: flex;
  align-items: center;
  gap: 20px;
}
.p-event-archive__info-badge {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #eeeedd;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 11px;
  font-weight: 600;
  color: #052D50;
  white-space: nowrap;
}
.p-event-archive__info-text {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 14px;
  color: #052D50;
  line-height: 1.7;
  flex: 1;
  min-width: 0;
}
@media (min-width: 1024px) {
  .p-event-archive__info-text {
    font-size: 15px;
  }
}
.p-event-archive__info-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #052D50;
  color: #ffffff;
  text-decoration: none;
  padding: 12px 20px;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 18px;
  font-weight: 500;
  transition: background-color 0.2s;
}
@media (hover: hover) and (pointer: fine) {
  .p-event-archive__info-phone:hover {
    background-color: #052D50;
  }
}
.p-event-archive__tabs {
  display: flex;
  gap: 5px;
  height: 40px;
  overflow-x: auto;
  scrollbar-width: none;
}
.p-event-archive__tabs::-webkit-scrollbar {
  display: none;
}
@media (min-width: 1024px) {
  .p-event-archive__tabs {
    height: 50px;
  }
}
.p-event-archive__tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-decoration: none;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-weight: 600;
  background-color: #eeeedd;
  color: #0b0b0b;
  flex: 1;
  min-width: 36px;
  line-height: 1;
  transition: background-color 0.2s, color 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.p-event-archive__tab--all {
  font-size: 15px;
}
@media (min-width: 1024px) {
  .p-event-archive__tab--all {
    font-size: 18px;
  }
}
.p-event-archive__tab--active, .p-event-archive__tab:focus-visible {
  background-color: #052D50;
  color: #ffffff;
  outline: none;
}
@media (hover: hover) and (pointer: fine) {
  .p-event-archive__tab:hover {
    background-color: #052D50;
    color: #ffffff;
  }
}
.p-event-archive__tab-inner {
  display: inline-flex;
  align-items: flex-end;
}
.p-event-archive__tab-num {
  font-size: 15px;
}
@media (min-width: 1024px) {
  .p-event-archive__tab-num {
    font-size: 18px;
  }
}
.p-event-archive__tab-unit {
  font-size: 10px;
}
@media (min-width: 1024px) {
  .p-event-archive__tab-unit {
    font-size: 13px;
  }
}
.p-event-archive__list {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
}
.p-event-archive__item {
  border-bottom: 1px solid #CFCFB6;
}
.p-event-archive__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  text-decoration: none;
  gap: 10px;
  transition: color 0.2s;
}
@media (min-width: 1024px) {
  .p-event-archive__link {
    padding: 15px 0;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-event-archive__link:hover {
    color: #052D50;
  }
  .p-event-archive__link:hover .p-event-archive__item-title {
    color: #052D50;
  }
}
.p-event-archive__item-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
  min-width: 0;
}
.p-event-archive__item-date {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 14px;
  color: #939393;
}
.p-event-archive__item-title {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 16px;
  color: #0b0b0b;
  transition: color 0.2s;
}
@media (min-width: 1024px) {
  .p-event-archive__item-title {
    font-size: 18px;
  }
}
.p-event-archive__item-arrow {
  flex-shrink: 0;
  color: #052D50;
  display: flex;
  align-items: center;
}
.p-event-archive__pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.p-event-archive__pagination-arrow {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #052D50;
}
@media (min-width: 1024px) {
  .p-event-archive__pagination-arrow {
    gap: 15px;
  }
}
.p-event-archive__pagination-arrow--prev::after {
  content: "";
  display: block;
  width: 1px;
  height: 16px;
  background-color: #052D50;
  flex-shrink: 0;
}
.p-event-archive__pagination-arrow--next::before {
  content: "";
  display: block;
  width: 1px;
  height: 16px;
  background-color: #052D50;
  flex-shrink: 0;
}
.p-event-archive__pagination-arrow .page-numbers {
  display: flex;
  align-items: center;
  color: #052D50;
  text-decoration: none;
  transition: opacity 0.2s;
}
.p-event-archive__pagination-arrow .page-numbers.disabled {
  opacity: 0.2;
  pointer-events: none;
}
@media (hover: hover) and (pointer: fine) {
  .p-event-archive__pagination-arrow .page-numbers:hover {
    opacity: 0.6;
  }
}
.p-event-archive__pagination-numbers {
  display: flex;
  align-items: center;
  gap: 20px;
}
.p-event-archive__pagination-numbers .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 14px;
  font-weight: 400;
  color: #0b0b0b;
  background-color: #eeeedd;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
}
.p-event-archive__pagination-numbers .page-numbers.current {
  background-color: #052D50;
  color: #ffffff;
}
.p-event-archive__pagination-numbers .page-numbers.dots {
  background: none;
  width: auto;
  cursor: default;
}
@media (hover: hover) and (pointer: fine) {
  .p-event-archive__pagination-numbers .page-numbers:hover:not(.dots) {
    background-color: #052D50;
    color: #ffffff;
  }
}
.p-event-archive__empty {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 16px;
  color: #939393;
  text-align: center;
  padding: 40px 0;
}

.p-event-single {
  background-color: #ffffff;
}
.p-event-single__breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  border-bottom: 1px solid #efefef;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 14px;
}
@media (min-width: 1024px) {
  .p-event-single__breadcrumb {
    padding: 12px 80px;
  }
}
.p-event-single__breadcrumb-link {
  color: #0b0b0b;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
@media (hover: hover) and (pointer: fine) {
  .p-event-single__breadcrumb-link:hover {
    text-decoration: underline;
  }
}
.p-event-single__breadcrumb-dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #0b0b0b;
  flex-shrink: 0;
}
.p-event-single__breadcrumb-current {
  color: #939393;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.p-event-single__inner {
  max-width: 800px;
  margin-inline: auto;
  padding: 30px 15px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
@media (min-width: 1024px) {
  .p-event-single__inner {
    padding: 60px 80px 80px;
    gap: 40px;
  }
}
.p-event-single__main {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media (min-width: 1024px) {
  .p-event-single__main {
    gap: 30px;
  }
}
.p-event-single__header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.p-event-single__title {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 24px;
  font-weight: 500;
  color: #052D50;
  text-align: center;
  line-height: 1.6;
  margin: 0;
  width: 100%;
}
@media (min-width: 1024px) {
  .p-event-single__title {
    font-size: 28px;
  }
}
.p-event-single__category {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  background-color: #052D50;
  padding: 3px 14px;
  border-radius: 100px;
  margin: 0;
  line-height: 1.6;
}
.p-event-single__body {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media (min-width: 1024px) {
  .p-event-single__body {
    gap: 40px;
  }
}
.p-event-single__image {
  flex-shrink: 0;
  width: 80%;
  max-width: 100%;
}
@media (min-width: 1024px) {
  .p-event-single__image {
    width: 400px;
  }
}
.p-event-single__image img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid #CFCFB6;
}
.p-event-single__table {
  width: 100%;
  margin: 0;
  padding: 0;
  border: 1px solid #CFCFB6;
  border-radius: 4px;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .p-event-single__table {
    flex: 1;
    min-width: 0;
  }
}
.p-event-single__table-row:not(:first-child) {
  border-top: 1px solid #CFCFB6;
}
.p-event-single__table-label {
  display: block;
  margin: 0;
  padding: 10px 12px;
  background-color: #EBF1F6;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 16px;
  font-weight: 500;
  color: #052D50;
  line-height: 1.4;
}
.p-event-single__table-value {
  display: block;
  margin: 0;
  padding: 10px 12px;
  min-height: 44px;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 16px;
  font-weight: 500;
  color: #0b0b0b;
  line-height: 1.7;
}
.p-event-single__content {
  width: 100%;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 16px;
  line-height: 1.9;
  color: #0b0b0b;
}
.p-event-single__content p {
  margin-bottom: 1.5em;
}
.p-event-single__content a {
  color: #052D50;
  text-decoration: underline;
}
.p-event-single__flyer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 272px;
  padding: 15px 24px;
  background-color: #052D50;
  color: #ffffff;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
}
.p-event-single__flyer-btn svg {
  flex-shrink: 0;
}
@media (hover: hover) and (pointer: fine) {
  .p-event-single__flyer-btn:hover {
    background-color: #052D50;
  }
}
.p-event-single__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media (min-width: 1024px) {
  .p-event-single__nav {
    margin-top: 40px;
  }
}
.p-event-single__nav-prev, .p-event-single__nav-next {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (min-width: 1024px) {
  .p-event-single__nav-prev, .p-event-single__nav-next {
    gap: 15px;
  }
}
.p-event-single__nav-prev::after {
  content: "";
  display: block;
  width: 1px;
  height: 16px;
  background-color: #052D50;
  flex-shrink: 0;
}
.p-event-single__nav-next::before {
  content: "";
  display: block;
  width: 1px;
  height: 16px;
  background-color: #052D50;
  flex-shrink: 0;
}
.p-event-single__nav-arrow {
  display: flex;
  align-items: center;
  color: #052D50;
  text-decoration: none;
  transition: opacity 0.2s;
}
@media (hover: hover) and (pointer: fine) {
  .p-event-single__nav-arrow:hover {
    opacity: 0.6;
  }
}
.p-event-single__nav-arrow--disabled {
  opacity: 0.2;
  pointer-events: none;
}
.p-event-single__nav-list-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 30px;
  border: 1px solid #CFCFB6;
  border-radius: 100px;
  background-color: #ffffff;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: #052D50;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s;
}
@media (hover: hover) and (pointer: fine) {
  .p-event-single__nav-list-btn:hover {
    background-color: #EBF1F6;
  }
}

.p-feat-archive {
  background-color: #ffffff;
}
.p-feat-archive__inner {
  max-width: 1240px;
  margin-inline: auto;
  padding: 30px 15px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 1024px) {
  .p-feat-archive__inner {
    padding: 60px 80px;
    gap: 40px;
  }
}
.p-feat-archive__past-header {
  text-align: center;
}
.p-feat-archive__mode-label {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 16px;
  font-weight: 600;
  color: #052D50;
}
@media (min-width: 1024px) {
  .p-feat-archive__mode-label {
    font-size: 24px;
  }
}
.p-feat-archive__back-link {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 14px;
  color: #052D50;
  text-decoration: none;
  transition: opacity 0.2s;
}
@media (hover: hover) and (pointer: fine) {
  .p-feat-archive__back-link:hover {
    opacity: 0.7;
  }
}
.p-feat-archive__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 1024px) {
  .p-feat-archive__list {
    gap: 40px;
  }
}
.p-feat-archive__card {
  display: flex;
  text-decoration: none;
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  transition: opacity 0.2s, transform 0.25s ease, box-shadow 0.25s ease;
}
@media (hover: hover) and (pointer: fine) {
  .p-feat-archive__card:hover {
    opacity: 0.8;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1), 0 0 0 1px #052D50;
    transform: translateY(-3px);
  }
}
.p-feat-archive__card-thumb {
  width: 112px;
  aspect-ratio: 702/992;
  flex-shrink: 0;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .p-feat-archive__card-thumb {
    width: 220px;
  }
}
.p-feat-archive__card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
@media (hover: hover) and (pointer: fine) {
  .p-feat-archive:hover__card-thumb img {
    transform: scale(1.04);
  }
}
.p-feat-archive__card-body {
  flex: 1;
  min-width: 0;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  justify-content: center;
}
@media (min-width: 1024px) {
  .p-feat-archive__card-body {
    padding: 24px 30px;
    gap: 16px;
  }
}
.p-feat-archive__card-date {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 12px;
  color: #0b0b0b;
  line-height: 1.4;
}
@media (min-width: 1024px) {
  .p-feat-archive__card-date {
    font-size: 14px;
  }
}
.p-feat-archive__card-title {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 14px;
  color: #052D50;
  line-height: 1.5;
  font-weight: 400;
}
@media (min-width: 1024px) {
  .p-feat-archive__card-title {
    font-size: 20px;
  }
}
.p-feat-archive__card-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
@media (min-width: 1024px) {
  .p-feat-archive__card-meta {
    gap: 10px;
  }
}
.p-feat-archive__card-meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.p-feat-archive__card-badge {
  flex-shrink: 0;
  border: 1px solid #052D50;
  border-radius: 100px;
  padding: 1px 6px;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 10px;
  color: #052D50;
  white-space: nowrap;
  line-height: 1.6;
}
@media (min-width: 1024px) {
  .p-feat-archive__card-badge {
    font-size: 12px;
    padding: 2px 8px;
  }
}
.p-feat-archive__card-meta-val {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 12px;
  color: #0b0b0b;
  line-height: 1.4;
}
@media (min-width: 1024px) {
  .p-feat-archive__card-meta-val {
    font-size: 16px;
  }
}
.p-feat-archive__pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.p-feat-archive__pagination-arrow {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #052D50;
}
@media (min-width: 1024px) {
  .p-feat-archive__pagination-arrow {
    gap: 15px;
  }
}
.p-feat-archive__pagination-arrow--prev::after {
  content: "";
  display: block;
  width: 1px;
  height: 16px;
  background-color: #052D50;
  flex-shrink: 0;
}
.p-feat-archive__pagination-arrow--next::before {
  content: "";
  display: block;
  width: 1px;
  height: 16px;
  background-color: #052D50;
  flex-shrink: 0;
}
.p-feat-archive__pagination-arrow .page-numbers {
  display: flex;
  align-items: center;
  color: #052D50;
  text-decoration: none;
  transition: opacity 0.2s;
}
.p-feat-archive__pagination-arrow .page-numbers.disabled {
  opacity: 0.2;
  pointer-events: none;
}
@media (hover: hover) and (pointer: fine) {
  .p-feat-archive__pagination-arrow .page-numbers:hover {
    opacity: 0.6;
  }
}
.p-feat-archive__pagination-numbers {
  display: flex;
  align-items: center;
  gap: 20px;
}
.p-feat-archive__pagination-numbers .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 14px;
  font-weight: 400;
  color: #0b0b0b;
  background-color: #eeeedd;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
}
.p-feat-archive__pagination-numbers .page-numbers.current {
  background-color: #052D50;
  color: #ffffff;
}
.p-feat-archive__pagination-numbers .page-numbers.dots {
  background: none;
  width: auto;
  cursor: default;
}
@media (hover: hover) and (pointer: fine) {
  .p-feat-archive__pagination-numbers .page-numbers:hover:not(.dots) {
    background-color: #052D50;
    color: #ffffff;
  }
}
.p-feat-archive__past-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background-color: #f7f7f7;
  padding: 20px;
  text-decoration: none;
  transition: opacity 0.2s;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}
@media (hover: hover) and (pointer: fine) {
  .p-feat-archive__past-btn:hover {
    opacity: 0.8;
  }
}
.p-feat-archive__past-btn-text {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 18px;
  font-weight: 600;
  color: #052D50;
  line-height: 1.6;
}
.p-feat-archive__past-btn-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-feat-archive__empty {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 16px;
  color: #939393;
  text-align: center;
  padding: 40px 0;
}

.p-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding-top: 30px;
  min-height: 100%;
  background-color: #eeeedd;
}
.p-sidebar__logo-link {
  display: block;
  line-height: 0;
}
.p-sidebar__logo {
  width: 115px;
  height: auto;
}
.p-sidebar__rooms {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.p-sidebar__nav {
  flex: 1;
  width: 100%;
  padding-inline: 16px;
}
.p-sidebar__nav-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}
.p-sidebar__nav-list li a {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 16px;
  font-weight: 600;
  color: #052D50;
  white-space: nowrap;
  transition: color 0.2s;
}
@media (hover: hover) and (pointer: fine) {
  .p-sidebar__nav-list li a:hover {
    color: #052D50;
  }
}
.p-sidebar__actions {
  position: sticky;
  bottom: 0;
  width: 100%;
  display: flex;
  height: 100px;
}
.p-sidebar__action {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 16px;
  transition: opacity 0.2s;
  text-align: center;
  line-height: 1.1em;
}
@media (hover: hover) and (pointer: fine) {
  .p-sidebar__action:hover {
    opacity: 0.85;
  }
}
.p-sidebar__action--contact {
  background-color: #DCB84D;
  color: #ffffff;
}
.p-sidebar__action--register {
  background-color: #052D50;
  color: #ffffff;
}

.p-about {
  background-color: #ffffff;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .p-about {
    padding: 30px 0 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}
@media (min-width: 1024px) {
  .p-about {
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
  }
}
.p-about__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-weight: 500;
  color: #052D50;
  text-align: center;
  padding: 0 20px;
}
@media (min-width: 1024px) {
  .p-about__text {
    padding: 0;
    max-width: 720px;
  }
}
.p-about__heading {
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  line-height: 1.5em;
}
@media (min-width: 1024px) {
  .p-about__heading {
    font-size: 30px;
  }
}
.p-about__body {
  font-size: 16px;
  line-height: 1.5;
}
@media (min-width: 1024px) {
  .p-about__body {
    font-size: 18px;
    line-height: 2;
  }
}
.p-about__imgbox {
  width: 100%;
}
.p-about__imgbox img {
  display: block;
  width: 100%;
  height: auto;
}

.p-service {
  background-color: #f5f5f5;
}
@media (max-width: 1023px) {
  .p-service {
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 50px;
  }
}
@media (min-width: 1024px) {
  .p-service {
    padding: 150px 0;
    display: flex;
    flex-direction: column;
    gap: 150px;
  }
}
.p-service__block {
  overflow: hidden;
  width: 100%;
}
@media (max-width: 1023px) {
  .p-service__block--banquet .p-service__img-wrap {
    margin-left: -20px;
    width: 100%;
  }
  .p-service__block--banquet .p-service__content {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 1024px) {
  .p-service__block--banquet {
    padding-right: 100px;
  }
  .p-service__block--banquet .p-service__box {
    flex-direction: row;
    align-items: stretch;
  }
  .p-service__block--banquet .p-service__img-wrap {
    order: -1;
  }
}
@media (max-width: 1023px) {
  .p-service__block--meeting .p-service__img-wrap {
    margin-left: 20px;
    width: 110%;
  }
  .p-service__block--meeting .p-service__content {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 1024px) {
  .p-service__block--meeting {
    padding-left: 100px;
  }
  .p-service__block--meeting .p-service__box {
    flex-direction: row;
  }
  .p-service__block--meeting .p-service__img-wrap {
    order: 1;
  }
}
.p-service__box {
  display: flex;
}
@media (max-width: 1023px) {
  .p-service__box {
    flex-direction: column;
    gap: 20px;
  }
}
@media (min-width: 1024px) {
  .p-service__box {
    gap: 80px;
  }
}
.p-service__img-wrap {
  flex-shrink: 0;
}
@media (max-width: 1023px) {
  .p-service__img-wrap {
    width: 100%;
  }
}
@media (min-width: 1024px) {
  .p-service__img-wrap {
    width: 44%;
  }
}
.p-service__img {
  display: block;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
}
@media (min-width: 1024px) {
  .p-service__img {
    aspect-ratio: unset;
    height: 100%;
  }
}
.p-service__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 1023px) {
  .p-service__content {
    width: 100%;
  }
}
@media (min-width: 1024px) {
  .p-service__content {
    flex: 1;
    min-width: 0;
  }
}
.p-service__top {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 1024px) {
  .p-service__top {
    gap: 30px;
  }
}
.p-service__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.p-service__title {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
}
.p-service__title-ja {
  font-size: 24px;
  font-weight: 500;
  color: #052D50;
}
@media (min-width: 1024px) {
  .p-service__title-ja {
    font-size: 30px;
  }
}
.p-service__title-en {
  font-size: 12px;
  color: #7b94a9;
  margin-bottom: 4px;
}
@media (min-width: 1024px) {
  .p-service__title-en {
    font-size: 16px;
  }
}
.p-service__subtitle {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-weight: 500;
  font-size: 20px;
  color: #052D50;
  line-height: 1.5;
}
@media (min-width: 1024px) {
  .p-service__subtitle {
    font-size: 22px;
    line-height: 2;
    white-space: nowrap;
  }
}
.p-service__links {
  display: flex;
  flex-direction: column;
}
.p-service__link {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px 0;
  text-decoration: none;
  border-top: 1px solid #7b94a9;
}
.p-service__link:first-child {
  border-top: none;
}
@media (min-width: 1024px) {
  .p-service__link {
    padding: 20px 0;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-service__link:hover {
    opacity: 0.75;
  }
}
.p-service__link-thumb {
  width: 90px;
  height: 72px;
  border-radius: 5px;
  overflow: hidden;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .p-service__link-thumb {
    width: 110px;
    height: 88px;
  }
}
.p-service__link-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-service__link-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-weight: 500;
  color: #052D50;
}
.p-service__link-en {
  font-size: 12px;
}
@media (min-width: 1024px) {
  .p-service__link-en {
    font-size: 16px;
  }
}
.p-service__link-ja {
  font-size: 18px;
}
@media (min-width: 1024px) {
  .p-service__link-ja {
    font-size: 22px;
  }
}
.p-service__link-arrow {
  width: 29px;
  height: 29px;
  border-radius: 50%;
  /* border: 1px solid $color-brand; */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.p-service__link-arrow::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-top: 1.5px solid #052D50;
  border-right: 1.5px solid #052D50;
  transform: rotate(45deg) translate(-1px, 1px);
}
.p-service__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 24px;
  background-color: #DCB84D;
  border-radius: 100px;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-weight: 500;
  font-size: 16px;
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
  min-width: 170px;
  position: relative;
  transition: background-color 0.3s ease;
  max-width: 272px;
}
@media (max-width: 1023px) {
  .p-service__btn {
    margin: auto;
    width: 100%;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-service__btn:hover {
    background: #052D50;
  }
}
.p-service__btn::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 1.5px solid #ffffff;
  border-right: 1.5px solid #ffffff;
  transform: rotate(45deg) translate(-1px, 1px);
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .p-service__btn::after {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }
}

.p-hero {
  position: relative;
  overflow: hidden;
}
.p-hero__slider {
  position: relative;
  width: 100%;
  aspect-ratio: 393/556;
}
@media (min-width: 1024px) {
  .p-hero__slider {
    aspect-ratio: 16/9;
    height: auto;
  }
}
.p-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.p-hero__slide.is-active {
  opacity: 1;
}
.p-hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.p-hero__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 245px;
  background: linear-gradient(to bottom, rgba(5, 45, 80, 0) 0%, #052D50 40%, #052D50 100%);
  box-shadow: 0 0 15px 0 rgba(5, 45, 80, 0.15);
  pointer-events: none;
}
@media (min-width: 1024px) {
  .p-hero__overlay {
    top: 0;
    height: auto;
    box-shadow: none;
    background: linear-gradient(to bottom, transparent 0%, transparent 35%, rgba(5, 45, 80, 0.55) 68%, #052D50 100%);
  }
}
.p-hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 0 20px 20px;
  pointer-events: none;
}
@media (min-width: 1024px) {
  .p-hero__content {
    padding: 80px 80px 100px 75px;
  }
}
.p-hero__heading-svg {
  margin: 0;
}
.p-hero__heading-svg img {
  display: block;
  width: 100%;
  max-width: 297px;
  height: auto;
}
@media (min-width: 1024px) {
  .p-hero__heading-svg img {
    max-width: 948px;
  }
}

.p-news-ticker {
  background-color: #ffffff;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}
@media (max-width: 1023px) {
  .p-news-ticker {
    order: -1;
  }
}
.p-news-ticker__link {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 1240px;
  margin-inline: auto;
  padding: 10px 20px;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 13px;
}
@media (min-width: 1024px) {
  .p-news-ticker__link {
    padding: 14px 100px;
    font-size: 16px;
    gap: 16px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-news-ticker__link:hover {
    color: #052D50;
  }
}
.p-news-ticker__date {
  color: #939393;
  white-space: nowrap;
  flex-shrink: 0;
  font-size: 12px;
}
@media (min-width: 1024px) {
  .p-news-ticker__date {
    font-size: 16px;
  }
}
.p-news-ticker__category {
  flex-shrink: 0;
  font-size: 8px;
  padding: 2px 6px;
  border: 1px solid #052D50;
  border-radius: 1px;
  color: #052D50;
  white-space: nowrap;
}
@media (min-width: 1024px) {
  .p-news-ticker__category {
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 2px;
  }
}
.p-news-ticker__title {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #0b0b0b;
  font-size: 13px;
}
@media (min-width: 1024px) {
  .p-news-ticker__title {
    font-size: 16px;
  }
}
.p-news-ticker__arrow {
  flex-shrink: 0;
  margin-left: auto;
  color: #052D50;
}
.p-news-ticker__arrow path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.p-featured-events {
  background-color: #f7f7ee;
  padding-top: 0;
  padding-bottom: 30px;
}
@media (min-width: 1024px) {
  .p-featured-events {
    padding-top: 70px;
    padding-bottom: 80px;
  }
}
.p-featured-events__venues {
  display: flex;
  gap: 12px;
  padding-inline: 15px;
  max-width: 1240px;
  margin-inline: auto;
}
@media (max-width: 1023px) {
  .p-featured-events__venues {
    gap: 10px;
    padding-inline: 40px;
    position: relative;
    z-index: 1;
    margin-top: -50px;
  }
}
@media (min-width: 1024px) {
  .p-featured-events__venues {
    gap: 30px;
    padding-inline: 80px;
  }
}
.p-featured-events__venue-card {
  flex: 1;
  min-width: 0;
  height: 110px;
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
  background-color: #ffffff;
  clip-path: polygon(13% 0%, 100% 0%, 100% 80%, 87% 100%, 0% 100%, 0% 20%);
}
@media (min-width: 1024px) {
  .p-featured-events__venue-card {
    height: 315px;
    background-color: #052D50;
    clip-path: none;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-featured-events__venue-card:hover .p-featured-events__venue-img img {
    transform: scale(1.05);
  }
}
.p-featured-events__venue-img {
  position: absolute;
  inset: 0;
}
@media (max-width: 1023px) {
  .p-featured-events__venue-img {
    display: none;
  }
}
.p-featured-events__venue-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.p-featured-events__venue-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
@media (max-width: 1023px) {
  .p-featured-events__venue-overlay {
    display: none;
  }
}
.p-featured-events__venue-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: #052D50;
  text-align: center;
}
@media (min-width: 1024px) {
  .p-featured-events__venue-content {
    gap: 38px;
    color: #ffffff;
  }
}
.p-featured-events__venue-icon {
  display: block;
  width: 32px;
  height: auto;
}
@media (min-width: 1024px) {
  .p-featured-events__venue-icon {
    display: none;
  }
}
.p-featured-events__venue-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
}
@media (min-width: 1024px) {
  .p-featured-events__venue-text {
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  }
}
.p-featured-events__venue-ja {
  font-size: 20px;
  display: block;
  line-height: 1.2;
}
@media (min-width: 1024px) {
  .p-featured-events__venue-ja {
    font-size: 35px;
  }
}
.p-featured-events__venue-en {
  font-size: 14px;
  font-weight: 500;
  display: none;
}
@media (min-width: 1024px) {
  .p-featured-events__venue-en {
    display: block;
    font-size: 20px;
  }
}
.p-featured-events__venue-btn {
  width: 53px;
  height: 53px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: background-color 0.2s;
}
@media (min-width: 1024px) {
  .p-featured-events__venue-btn {
    display: flex;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-featured-events__venue-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
  }
}
.p-featured-events__inner {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
@media (min-width: 1024px) {
  .p-featured-events__inner {
    margin-top: 100px;
    gap: 50px;
  }
}
.p-featured-events__slider-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
}
.p-featured-events__split {
  display: flex;
  width: 100%;
  overflow: hidden;
}
.p-featured-events__body-slider {
  flex: 1;
  min-width: 0;
}
.p-featured-events__body {
  width: 80%;
  background: #ffffff;
  padding-top: 0;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  transform: scale(0.9) !important;
  transform-origin: center center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 0;
}
.p-featured-events__body.swiper-slide-active {
  transform: scale(1) !important;
  z-index: 1;
}
@media (min-width: 1024px) {
  .p-featured-events__body {
    flex-direction: row;
    width: min(900px, 100% - 100px);
    height: 427px;
    overflow: hidden;
    transform: scale(0.9) !important;
    transition: transform 0.4s ease;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.08);
    z-index: 0;
  }
  .p-featured-events__body.swiper-slide-active {
    transform: scale(1) !important;
    z-index: 1;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.04);
  }
}
.p-featured-events__item-thumb {
  display: none;
}
@media (min-width: 1024px) {
  .p-featured-events__item-thumb {
    display: block;
    width: 36.3%;
    flex-shrink: 0;
    height: 427px;
    overflow: hidden;
  }
  .p-featured-events__item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
}
.p-featured-events__item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}
@media (min-width: 1024px) {
  .p-featured-events__item-content {
    height: 427px;
    padding-top: 50px;
    background: #ffffff;
  }
}
.p-featured-events__body-img {
  display: block;
  position: relative;
  aspect-ratio: 307/165;
  overflow: hidden;
  margin-bottom: 14px;
  background: #fff;
}
@media (min-width: 1024px) {
  .p-featured-events__body-img {
    display: none;
  }
}
.p-featured-events__body-img-bg {
  position: absolute;
  inset: -4px;
  background-size: cover;
  background-position: center;
  filter: blur(14px);
  transform: scale(1.04);
}
.p-featured-events__body-img img {
  position: absolute;
  top: 0;
  left: 30px;
  right: 30px;
  width: calc(100% - 60px);
  height: auto;
  display: block;
  z-index: 1;
}
.p-featured-events__body-top {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 16px;
}
@media (min-width: 1024px) {
  .p-featured-events__body-top {
    gap: 30px;
    padding: 0 35px;
  }
}
.p-featured-events__event-date {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 11px;
  color: #939393;
  line-height: 1;
}
@media (min-width: 1024px) {
  .p-featured-events__event-date {
    font-size: 16px;
  }
}
.p-featured-events__title {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 13px;
  color: #052D50;
  line-height: 1.4;
}
@media (min-width: 1024px) {
  .p-featured-events__title {
    font-size: 24px;
  }
}
.p-featured-events__title a {
  color: inherit;
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .p-featured-events__title a:hover {
    opacity: 0.8;
  }
}
.p-featured-events__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media (min-width: 1024px) {
  .p-featured-events__meta {
    padding: 20px;
    gap: 14px;
    border: 1px solid #CFCFB6;
    border-radius: 4px;
  }
}
.p-featured-events__meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (min-width: 1024px) {
  .p-featured-events__meta-row {
    gap: 20px;
  }
}
.p-featured-events__meta-label {
  flex-shrink: 0;
  border: 1px solid #052D50;
  border-radius: 100px;
  padding: 1px 6px;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 9px;
  color: #052D50;
  white-space: nowrap;
  line-height: 1.6;
}
@media (min-width: 1024px) {
  .p-featured-events__meta-label {
    font-size: 14px;
    padding: 2px 10px;
  }
}
.p-featured-events__meta-value {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  color: #0b0b0b;
  line-height: 1.3;
  font-size: 10px;
}
@media (min-width: 1024px) {
  .p-featured-events__meta-value {
    font-size: 16px;
  }
}
.p-featured-events__more-btn {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 10px 16px;
  background-color: #052D50;
  color: #ffffff;
  text-decoration: none;
  align-self: stretch;
  justify-content: center;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 13px;
  line-height: 1;
  margin-top: 14px;
  transition: background-color 0.2s;
  position: relative;
}
@media (min-width: 1024px) {
  .p-featured-events__more-btn {
    padding: 10px 20px 10px 30px;
    align-self: flex-end;
    justify-content: flex-start;
    margin-top: 0;
    font-size: 16px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-featured-events__more-btn:hover {
    background-color: #052D50;
  }
}
.p-featured-events__more-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
}
@media (min-width: 1024px) {
  .p-featured-events__more-icon {
    width: 39px;
    height: 39px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    position: relative;
    transform: none;
    top: unset;
    right: unset;
  }
}
.p-featured-events__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 4px;
  width: 100%;
  padding-inline: 15px;
}
@media (min-width: 1024px) {
  .p-featured-events__controls {
    padding-inline: 0;
    justify-content: center;
    gap: 100px;
  }
}
.p-featured-events__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  color: #052D50;
  background: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
  gap: 8px;
}
@media (hover: hover) and (pointer: fine) {
  .p-featured-events__arrow:hover {
    opacity: 0.6;
  }
}
.p-featured-events__arrow::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  flex-shrink: 0;
}
.p-featured-events__arrow--prev::after {
  transform: rotate(-135deg);
}
.p-featured-events__arrow--prev::before {
  content: "";
  display: block;
  width: 1px;
  height: 16px;
  background-color: #052D50;
  flex-shrink: 0;
  order: 1;
}
.p-featured-events__arrow--next::after {
  transform: rotate(45deg);
}
.p-featured-events__arrow--next::before {
  content: "";
  display: block;
  width: 1px;
  height: 16px;
  background-color: #052D50;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .p-featured-events__arrow {
    padding: 0;
    width: 92px;
  }
  .p-featured-events__arrow::after {
    width: 12px;
    height: 12px;
  }
}
.p-featured-events__dots {
  display: flex;
  gap: 4px;
  align-items: center;
}
.p-featured-events__dot {
  width: 19px;
  height: 2px;
  border-radius: 100px;
  background-color: #cfcfb6;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.3s;
}
.p-featured-events__dot--active {
  background-color: #052D50;
}

.p-event-list {
  padding-block: 30px;
  background-color: #ffffff;
}
@media (min-width: 1024px) {
  .p-event-list {
    padding-block: 100px;
  }
}
.p-event-list .l-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 1024px) {
  .p-event-list .l-inner {
    flex-direction: row;
    align-items: stretch;
    gap: 150px;
  }
}
.p-event-list__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
  justify-content: space-between;
}
@media (max-width: 1023px) {
  .p-event-list__header {
    gap: 24px;
  }
  .p-event-list__header .c-button {
    display: none;
  }
}
@media (min-width: 1024px) {
  .p-event-list__header {
    width: 206px;
    flex-shrink: 0;
  }
}
.p-event-list__btn-sp {
  display: none;
}
@media (max-width: 1023px) {
  .p-event-list__btn-sp {
    display: inline-flex;
    justify-content: center;
    margin: auto;
  }
}
.p-event-list__list {
  flex: 1;
  min-width: 0;
}
.p-event-list__item {
  border-bottom: 1px solid #CFCFB6;
}
.p-event-list__link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
  transition: color 0.2s;
}
@media (min-width: 1024px) {
  .p-event-list__link {
    padding: 22px 20px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-event-list__link:hover {
    color: #052D50;
  }
}
.p-event-list__info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
  min-width: 0;
}
@media (min-width: 1024px) {
  .p-event-list__info {
    gap: 14px;
  }
}
.p-event-list__date {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 14px;
  color: #939393;
  flex-shrink: 0;
  white-space: nowrap;
  line-height: 1;
}
.p-event-list__title {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 16px;
  color: #0b0b0b;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1;
}
.p-event-list__arrow {
  flex-shrink: 0;
  margin-left: auto;
  color: #052D50;
  display: block;
  width: 10px;
  height: 10px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
}

.p-venue-guide {
  padding-block: 30px 80px;
}
@media (min-width: 1024px) {
  .p-venue-guide {
    padding-block: 80px 180px;
  }
}
.p-venue-guide .c-section-title__en {
  color: #DCB84D;
}
.p-venue-guide__inner {
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
@media (min-width: 1024px) {
  .p-venue-guide__inner {
    padding-inline: 80px;
  }
}
.p-venue-guide__btns {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
}
@media (min-width: 1024px) {
  .p-venue-guide__btns {
    flex-direction: row;
    gap: 50px;
  }
}
.p-venue-guide__btn {
  background-color: #052D50;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: row;
  gap: 20px;
  padding: 15px;
  text-decoration: none;
  transition: background-color 0.2s;
  width: 275px;
}
@media (min-width: 1024px) {
  .p-venue-guide__btn {
    flex: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px 20px;
    width: 100%;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-venue-guide__btn:hover {
    background-color: #DCB84D;
  }
}
.p-venue-guide__btn-label {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 18px;
  color: #ffffff;
  white-space: nowrap;
}
@media (min-width: 1024px) {
  .p-venue-guide__btn-label {
    font-size: 22px;
  }
}
.p-venue-guide__btn-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 29px;
  height: 29px;
  flex-shrink: 0;
}

.p-plan-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 1024px) {
  .p-plan-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}
.p-plan-cards__empty {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 15px;
  color: #939393;
  text-align: center;
  padding: 40px 0;
}

.p-plan-card {
  background-color: #f7f7ee;
  border: 1px solid #CFCFB6;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-decoration: none;
  transition: opacity 0.2s;
}
@media (hover: hover) and (pointer: fine) {
  .p-plan-card:hover {
    opacity: 0.85;
  }
}
.p-plan-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background-color: #c4c4c4;
  flex-shrink: 0;
}
.p-plan-card__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-plan-card__text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.p-plan-card__title {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 24px;
  font-weight: 500;
  color: #052D50;
  margin: 0;
  line-height: normal;
}
.p-plan-card__desc {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 16px;
  font-weight: 500;
  color: #0b0b0b;
  margin: 0;
  line-height: normal;
}
.p-plan-card__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 3px;
}
.p-plan-card__table tr th {
  background-color: #052D50;
  color: #ffffff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 10px;
  text-align: left;
  vertical-align: middle;
  width: 55%;
  line-height: 1.4;
}
.p-plan-card__table tr td {
  background-color: #ffffff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  color: #0b0b0b;
  padding: 8px;
  text-align: center;
  vertical-align: middle;
}

.p-reservation {
  position: relative;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
}
@media (min-width: 1024px) {
  .p-reservation {
    min-height: 500px;
  }
}
@media (max-width: 1023px) {
  .p-reservation {
    flex-direction: column-reverse;
  }
}
.p-reservation__content {
  padding: 60px 15px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 1024px) {
  .p-reservation__content {
    width: 45%;
    padding: 80px 80px;
  }
}
.p-reservation__content .c-section-title__en {
  color: #DCB84D;
}
.p-reservation__desc {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 16px;
  color: #052D50;
  line-height: 1.8;
  font-weight: 500;
}
.p-reservation__btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 14px 24px 14px 48px;
  background-color: #DCB84D;
  border-radius: 100px;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  align-self: flex-start;
  transition: background-color 0.2s;
}
.p-reservation__btn svg {
  flex-shrink: 0;
}
@media (hover: hover) and (pointer: fine) {
  .p-reservation__btn:hover {
    background-color: #052D50;
  }
}
.p-reservation__imgs {
  display: block;
}
@media (max-width: 1023px) {
  .p-reservation__imgs {
    margin-top: -50px;
  }
}
@media (min-width: 1024px) {
  .p-reservation__imgs {
    position: absolute;
    top: -75px;
    right: 0;
    width: 55%;
    height: 100%;
  }
}
.p-reservation__img-top {
  width: 80%;
  margin: 0 0 0 auto;
}
@media (max-width: 1023px) {
  .p-reservation__img-top img {
    display: block;
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
  }
}
@media (min-width: 1024px) {
  .p-reservation__img-top {
    position: absolute;
    top: 0;
    right: 0;
  }
  .p-reservation__img-top img {
    display: block;
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
  }
}
.p-reservation__img-bottom {
  width: 55%;
}
@media (max-width: 1023px) {
  .p-reservation__img-bottom {
    margin-top: -10%;
  }
  .p-reservation__img-bottom img {
    display: block;
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
  }
}
@media (min-width: 1024px) {
  .p-reservation__img-bottom {
    position: absolute;
    bottom: auto;
    top: 50%;
    left: 0;
    width: 40%;
  }
  .p-reservation__img-bottom img {
    display: block;
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
  }
}

.p-venue-overlay {
  display: none;
}
@media (min-width: 1024px) {
  .p-venue-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 90;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    cursor: pointer;
  }
  .p-venue-overlay.is-active {
    opacity: 1;
    pointer-events: auto;
  }
}

.p-venue-menu {
  display: none;
}
@media (min-width: 1024px) {
  .p-venue-menu {
    display: block;
    position: fixed;
    top: 0;
    left: 200px;
    width: 644px;
    height: 100dvh;
    overflow-y: auto;
    background-color: #ffffff;
    z-index: 95;
    transform: translateX(calc(-100% - 200px));
    transition: transform 0.35s ease;
  }
  .p-venue-menu.is-open {
    transform: translateX(0);
  }
}
.p-venue-menu__close {
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  top: 50px;
  right: 30px;
  background-color: #eeeedd;
  border: none;
  cursor: pointer;
  padding: 10px 16px;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 15px;
  color: #0b0b0b;
  transition: background-color 0.2s;
  white-space: nowrap;
}
@media (hover: hover) and (pointer: fine) {
  .p-venue-menu__close:hover {
    background-color: #cfcfb6;
  }
}
.p-venue-menu__close-x {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.p-venue-menu__panel {
  padding: 123px 30px 60px;
}
.p-venue-menu__img {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 40px;
}
.p-venue-menu__img img {
  width: 100%;
  aspect-ratio: 584/331;
  object-fit: cover;
  display: block;
}
.p-venue-menu__heading {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid #CFCFB6;
  margin-bottom: 20px;
}
.p-venue-menu__heading-ja {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 24px;
  font-weight: 600;
  color: #052D50;
}
.p-venue-menu__heading-en {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 14px;
  color: #939393;
}
.p-venue-menu__nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-venue-menu__nav-full {
  grid-column: 1/-1;
}
.p-venue-menu__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 53px;
  background-color: #eeeedd;
  color: #052D50;
  text-decoration: none;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 16px;
  transition: background-color 0.2s;
  font-weight: 600;
}
@media (hover: hover) and (pointer: fine) {
  .p-venue-menu__link:hover {
    background-color: rgb(231.2, 231.2, 207.4);
  }
}
.p-venue-menu__link-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-venue-menu__link-arrow::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-top: 1.5px solid #052D50;
  border-right: 1.5px solid #052D50;
  transform: rotate(45deg) translate(-1px, 1px);
}

.p-faq {
  display: none;
  padding-block: 30px;
  background-color: #eeeedd;
}
@media (min-width: 1024px) {
  .p-faq {
    padding-block: 80px;
  }
}
.p-faq .l-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media (min-width: 1024px) {
  .p-faq .l-inner {
    gap: 48px;
  }
}
.p-faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  width: 100%;
}
@media (min-width: 1024px) {
  .p-faq__list {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }
}
.p-faq__item {
  display: flex;
  justify-content: center;
}
@media (min-width: 1024px) {
  .p-faq__item {
    clip-path: polygon(13% 0%, 100% 0%, 100% 80%, 87% 100%, 0% 100%, 0% 20%);
    filter: drop-shadow(0 0 22px rgba(0, 0, 0, 0.05));
  }
}
.p-faq__link {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: row;
  width: 275px;
  padding: 15px;
  overflow: hidden;
  position: relative;
  background-color: #ffffff;
  text-decoration: none;
  color: #052D50;
  transition: color 0.2s;
}
@media (hover: hover) and (pointer: fine) {
  .p-faq__link:hover {
    color: #ffffff;
    background-color: #052D50;
  }
  .p-faq__link:hover .p-faq__shape {
    background-color: #052D50 !important;
  }
}
@media (min-width: 1024px) {
  .p-faq__link {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    width: 279px;
    height: 146px;
    padding: 0;
    background-color: transparent;
    clip-path: polygon(13% 0%, 100% 0%, 100% 80%, 87% 100%, 0% 100%, 0% 20%);
  }
}
.p-faq__shape {
  display: none;
  position: absolute;
  inset: 0;
  background-color: #ffffff;
  clip-path: polygon(13% 0%, 100% 0%, 100% 80%, 87% 100%, 0% 100%, 0% 20%);
  transition: background-color 0.2s;
}
@media (min-width: 1024px) {
  .p-faq__shape {
    display: block;
  }
}
.p-faq__label {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 22px;
  font-weight: 500;
  color: inherit;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media (min-width: 1024px) {
  .p-faq__label {
    position: relative;
    z-index: 1;
    font-size: 20px;
  }
}
.p-faq__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 29px;
  height: 29px;
  border: 1px solid currentColor;
  border-radius: 50%;
  transition: background-color 0.2s;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .p-faq__arrow {
    position: relative;
    z-index: 1;
  }
}
.p-faq__arrow::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
  flex-shrink: 0;
  margin-right: 3px;
}
.p-faq__arrow path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

@keyframes gallery-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-25%);
  }
}
.p-gallery {
  overflow: hidden;
}
.p-gallery__list {
  display: flex;
  width: max-content;
  animation: gallery-scroll 18s linear infinite;
}
@media (min-width: 1024px) {
  .p-gallery__list {
    animation-duration: 26s;
  }
}
.p-gallery__item {
  width: 280px;
  flex-shrink: 0;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .p-gallery__item {
    width: 400px;
  }
}
.p-gallery__item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.p-cta {
  background-color: #052D50;
}
.p-cta__inner {
  max-width: 840px;
  margin-inline: auto;
  padding-inline: 15px;
  padding-block: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 1024px) {
  .p-cta__inner {
    padding-block: 40px;
    gap: 30px;
  }
}
.p-cta__header {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 6px;
  color: #ffffff;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
}
@media (min-width: 1024px) {
  .p-cta__header {
    flex-direction: row;
    align-items: flex-end;
    gap: 20px;
    white-space: nowrap;
  }
}
.p-cta__en {
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
}
@media (min-width: 1024px) {
  .p-cta__en {
    font-size: 40px;
  }
}
.p-cta__ja {
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  margin: 0;
}
@media (min-width: 1024px) {
  .p-cta__ja {
    font-size: 20px;
  }
}
.p-cta__blocks {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.p-cta__tel-box {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
@media (min-width: 1024px) {
  .p-cta__tel-box {
    padding: 30px 40px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.p-cta__tel-label {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  white-space: nowrap;
}
@media (min-width: 1024px) {
  .p-cta__tel-label {
    font-size: 20px;
  }
}
.p-cta__tel-right {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
@media (min-width: 1024px) {
  .p-cta__tel-right {
    flex-direction: row;
    gap: 20px;
    width: auto;
  }
}
.p-cta__tel-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.2s;
}
@media (min-width: 1024px) {
  .p-cta__tel-link {
    gap: 11px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-cta__tel-link:hover {
    opacity: 0.85;
  }
}
.p-cta__tel-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.p-cta__tel-number {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}
@media (min-width: 1024px) {
  .p-cta__tel-number {
    font-size: 44px;
  }
}
.p-cta__tel-hours {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
@media (min-width: 1024px) {
  .p-cta__tel-hours {
    flex-direction: column;
    align-items: flex-start;
  }
}
.p-cta__tel-badge {
  display: block;
  background-color: #ffffff;
  color: #052D50;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 12px;
  font-weight: 600;
  padding: 1px 8px 2px;
  white-space: nowrap;
  text-align: center;
  width: 100%;
}
.p-cta__tel-time {
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 12px;
  font-weight: 500;
  color: #ffffff;
  white-space: nowrap;
  line-height: 1;
}
@media (min-width: 1024px) {
  .p-cta__tel-time {
    font-size: 14px;
  }
}
.p-cta__buttons {
  display: flex;
  flex-direction: row;
  gap: 10px;
  height: auto;
}
@media (min-width: 1024px) {
  .p-cta__buttons {
    height: 105px;
  }
}
.p-cta__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  padding: 18px 20px;
  color: #ffffff;
  text-decoration: none;
  font-family: "Zen Old Mincho", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 16px;
  font-weight: 500;
  transition: background-color 0.2s;
  line-height: 1.5em;
}
@media (min-width: 1024px) {
  .p-cta__btn {
    padding: 20px 40px;
    font-size: 20px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-cta__btn:hover {
    background-color: rgba(0, 0, 0, 0.35);
  }
}
.p-cta__btn-arrow {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

@media (max-width: 1023px) {
  .u-pc-only {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .u-sp-only {
    display: none !important;
  }
}

.u-text-center {
  text-align: center;
}

.u-text-left {
  text-align: left;
}

.u-text-right {
  text-align: right;
}

.u-mt-sm {
  margin-top: 16px;
}

.u-mt-md {
  margin-top: 24px;
}

.u-mt-lg {
  margin-top: 48px;
}

.u-mt-xl {
  margin-top: 80px;
}

.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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