@charset "UTF-8";
html {
  font-size: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
@media (max-width: 1074px) {
  html {
    font-size: 1.4897579143vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 100%;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Droid Sans, Helvetica Neue, sans-serif;
  color: #1A1B1F;
  background: #FAF7F1;
  line-height: 1.7;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.02em;
  overflow-x: clip;
}

@media (hover: hover) and (pointer: fine) {
  a,
  button {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  a:hover,
  button:hover {
    cursor: pointer;
  }
}
@media (hover: none) {
  a:hover,
  button:hover,
  .c-btn:hover,
  .p-features__card:hover,
  .p-guidelines__card:hover,
  .p-flow__step-link:hover,
  .p-amenities__service-item:hover,
  .p-amenities__slider-arrow:hover,
  .p-facility__arrow:hover,
  .p-safety__cta-btn:hover {
    -webkit-transform: none !important;
            transform: none !important;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    opacity: 1 !important;
  }
}
/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
li {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  padding: 0;
}

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

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

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

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

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

button {
  border: none;
  padding: 0;
  background-color: transparent;
  background-color: initial;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.l-container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 2rem;
}
@media screen and (max-width: 767px) {
  .l-container {
    padding-inline: 1.25rem;
  }
}

.l-container--narrow {
  max-width: 980px;
}

.l-drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(14, 40, 88, .45);
  opacity: 0;
  z-index: 90;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.l-drawer-overlay.is-open {
  display: block;
  opacity: 1;
}

.l-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(22.5rem, 88vw);
  height: 100vh;
  height: 100dvh;
  background: #FAF7F1;
  z-index: 95;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: visibility 0.35s ease, -webkit-transform 0.35s ease;
  transition: visibility 0.35s ease, -webkit-transform 0.35s ease;
  transition: transform 0.35s ease, visibility 0.35s ease;
  transition: transform 0.35s ease, visibility 0.35s ease, -webkit-transform 0.35s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  -ms-touch-action: pan-y;
      touch-action: pan-y;
  -webkit-box-shadow: -0.625rem 0 2.5rem rgba(14, 40, 88, .12);
          box-shadow: -0.625rem 0 2.5rem rgba(14, 40, 88, .12);
  visibility: hidden;
}

.l-drawer.is-open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  visibility: visible;
}

.l-drawer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  padding: calc(100px + 1.5rem) 1.75rem 2rem;
  min-height: 100vh;
  min-height: 100dvh;
}

.l-drawer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-top: 1px solid #D9D2C5;
}

.l-drawer__nav-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1.125rem 0.25rem;
  font-family: "Noto Serif JP", "Cormorant Garamond", serif;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #1A1B1F;
  border-bottom: 1px solid #D9D2C5;
  text-decoration: none;
  -webkit-transition: color 0.25s, padding-left 0.25s;
  transition: color 0.25s, padding-left 0.25s;
}

.l-drawer__nav-item::after {
  content: "→";
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: 0.875rem;
  color: #14377A;
  -webkit-transition: -webkit-transform 0.25s;
  transition: -webkit-transform 0.25s;
  transition: transform 0.25s;
  transition: transform 0.25s, -webkit-transform 0.25s;
}

.l-drawer__nav-item:hover {
  color: #14377A;
  padding-left: 0.625rem;
}

.l-drawer__nav-item:hover::after {
  -webkit-transform: translateX(0.25rem);
          transform: translateX(0.25rem);
}

.l-drawer__nav-acc {
  border-bottom: 1px solid #D9D2C5;
}

.l-drawer__nav-acc .l-drawer__nav-item {
  border-bottom: none;
}

.l-drawer__nav-item--toggle {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.l-drawer__nav-item--toggle::after {
  content: "+";
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: 1.25rem;
  font-weight: 300;
  color: #14377A;
  line-height: 1;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  width: 1rem;
  text-align: center;
}

.l-drawer__nav-acc.is-open .l-drawer__nav-item--toggle::after {
  content: "−";
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.l-drawer__nav-item--toggle:hover {
  color: #14377A;
}

.l-drawer__nav-sublist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: rgba(217, 210, 197, .25);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.35s ease, opacity 0.25s ease;
  transition: max-height 0.35s ease, opacity 0.25s ease;
}

.l-drawer__nav-acc.is-open .l-drawer__nav-sublist {
  max-height: 25rem;
  opacity: 1;
}

.l-drawer__nav-subitem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.75rem 0.25rem 0.75rem 1.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #1A1B1F;
  text-decoration: none;
  -webkit-transition: color 0.25s, padding-left 0.25s;
  transition: color 0.25s, padding-left 0.25s;
}

.l-drawer__nav-subitem:hover {
  color: #14377A;
  padding-left: 1.875rem;
}

.l-drawer__foot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid #D9D2C5;
}

.l-drawer__lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.375rem;
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  color: #5C5D63;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.l-drawer__foot .c-btn--cta {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

.l-drawer__foot .c-btn--cta--stack {
  max-width: none;
}

body.is-drawer-open {
  overflow: hidden;
  -ms-touch-action: none;
      touch-action: none;
}

.l-footer {
  background: #0E2858;
  color: rgba(255, 255, 255, .85);
  padding-block: 5rem 2.5rem;
}

.l-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.75rem;
}

.l-footer__logo {
  font-family: "Noto Serif JP", "Cormorant Garamond", serif;
  font-size: 1.25rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 1.125rem;
  letter-spacing: 0.06em;
}

.l-footer__logo-en {
  display: block;
  margin-top: 0.25rem;
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, .7);
}

.l-footer__tag {
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, .6);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.l-footer__addr {
  font-size: 0.8125rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, .7);
}

.l-footer__col-title {
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 1.125rem;
  font-weight: 500;
}

.l-footer__list li {
  margin-bottom: 0.75rem;
}

.l-footer__list a {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, .85);
  -webkit-transition: color 0.25s;
  transition: color 0.25s;
  text-decoration: none;
}

.l-footer__list a:hover {
  color: #fff;
}

.l-footer a[target=_blank] {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.375rem;
}

.l-footer a[target=_blank]::after {
  content: "";
  display: inline-block;
  width: 0.85em;
  height: 0.85em;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M15 3h6v6'/><path d='M10 14L21 3'/><path d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6'/></svg>") center/contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M15 3h6v6'/><path d='M10 14L21 3'/><path d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6'/></svg>") center/contain no-repeat;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.l-footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, .5);
  letter-spacing: 0.05em;
}

.l-footer__privacy {
  color: rgba(255, 255, 255, .5);
  text-decoration: none;
  -webkit-transition: color 0.25s;
  transition: color 0.25s;
}

.l-footer__privacy:hover {
  color: #fff;
}

@media screen and (max-width: 767px) {
  .l-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
@media screen and (max-width: 600px) {
  .l-footer__grid {
    grid-template-columns: 1fr;
  }
}
.l-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 100px;
  background: rgba(250, 247, 241, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(20, 55, 122, .08);
  font-family: "Noto Serif JP", "Cormorant Garamond", serif;
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
@media screen and (max-width: 767px) {
  .l-header {
    height: 80px;
  }
}

.l-header.is-scrolled {
  -webkit-box-shadow: 0 0.125rem 1.5rem rgba(20, 55, 122, .06);
          box-shadow: 0 0.125rem 1.5rem rgba(20, 55, 122, .06);
}

.l-header__inner {
  max-width: 92.5rem;
  margin-inline: auto;
  padding-inline: 2rem;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.5rem;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.l-header__logo-heading {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.l-header__logo {
  font-family: "Noto Serif JP", "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 1.6875rem;
  letter-spacing: 0.06em;
  color: #14377A;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: 1.2;
  white-space: nowrap;
  text-decoration: none;
}

.l-header__logo-en {
  display: block;
  margin-top: 0.375rem;
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(20, 55, 122, .7);
}

.l-header__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.625rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .l-header__main {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 1rem;
  }
}

.l-header__nav {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.l-header__utils {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.l-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5625rem;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.l-header__nav a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #1A1B1F;
  position: relative;
  padding: 0.25rem 0;
  white-space: nowrap;
  -webkit-transition: color 0.25s;
  transition: color 0.25s;
  text-decoration: none;
}

.l-header__nav a:hover {
  color: #14377A;
}

.l-header__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.125rem;
  height: 1px;
  background: #14377A;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.l-header__nav a:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.l-header__nav-group {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 1em;
}

.l-header__nav-trigger {
  padding-right: 1.6em;
  margin-right: 0.4em;
}

.l-header__nav-trigger::before {
  content: "";
  position: absolute;
  right: -1em;
  top: 50%;
  width: 0.5em;
  height: 0.5em;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  -webkit-transform: translateY(-65%) rotate(45deg);
          transform: translateY(-65%) rotate(45deg);
  -webkit-transition: -webkit-transform 0.25s;
  transition: -webkit-transform 0.25s;
  transition: transform 0.25s;
  transition: transform 0.25s, -webkit-transform 0.25s;
}

.l-header__nav-group:hover .l-header__nav-trigger::before,
.l-header__nav-group:focus-within .l-header__nav-trigger::before {
  -webkit-transform: translateY(-35%) rotate(225deg);
          transform: translateY(-35%) rotate(225deg);
}

.l-header__nav-submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, 0.5rem);
          transform: translate(-50%, 0.5rem);
  min-width: 13rem;
  background: #fff;
  border: 1px solid #D9D2C5;
  border-radius: 4px;
  -webkit-box-shadow: 0 0.75rem 2rem rgba(20, 55, 122, .12);
          box-shadow: 0 0.75rem 2rem rgba(20, 55, 122, .12);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.2s, visibility 0.2s, -webkit-transform 0.2s;
  transition: opacity 0.2s, visibility 0.2s, -webkit-transform 0.2s;
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s, -webkit-transform 0.2s;
  z-index: 50;
}

.l-header__nav-submenu::before {
  content: "";
  position: absolute;
  top: -0.5rem;
  left: 0;
  right: 0;
  height: 0.5rem;
}

.l-header__nav-group:hover .l-header__nav-submenu,
.l-header__nav-group:focus-within .l-header__nav-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

.l-header__nav-group.is-closing .l-header__nav-submenu,
.l-header__nav-group.is-closing:hover .l-header__nav-submenu,
.l-header__nav-group.is-closing:focus-within .l-header__nav-submenu {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.l-header__nav-submenu a {
  display: block;
  padding: 0.625rem 1.25rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #1A1B1F;
  text-decoration: none;
  white-space: nowrap;
  -webkit-transition: background 0.2s, color 0.2s;
  transition: background 0.2s, color 0.2s;
}

.l-header__nav-submenu a::after {
  display: none;
}

.l-header__nav-submenu a:hover {
  background: #F2EDE3;
  color: #14377A;
}

.l-header__utils {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.l-header__utils .c-btn--cta {
  -ms-flex-item-align: stretch;
      align-self: stretch;
}

.l-header__utils .c-btn--coming {
  padding-top: 0.40625rem;
  padding-bottom: 0.40625rem;
}

.l-header__lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0;
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  color: #5C5D63;
  padding-inline: 0.625rem;
}

.l-header__lang-btn {
  background: none;
  border: none;
  padding: 0.25rem 0.125rem;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  color: #5C5D63;
  letter-spacing: 0.05em;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

.l-header__lang-btn--active {
  color: #14377A;
  font-weight: 600;
}

.l-header__lang-sep {
  color: #D9D2C5;
}

.l-header__hamburger {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.375rem;
  z-index: 110;
}

.l-header__hamburger-line {
  display: block;
  width: 1.5rem;
  height: 2px;
  background: #14377A;
  -webkit-transition: opacity 0.25s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.25s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.25s ease;
  transition: transform 0.3s ease, opacity 0.25s ease, -webkit-transform 0.3s ease;
}

.l-header__hamburger.is-open .l-header__hamburger-line:nth-child(1) {
  -webkit-transform: translateY(0.5rem) rotate(45deg);
          transform: translateY(0.5rem) rotate(45deg);
}

.l-header__hamburger.is-open .l-header__hamburger-line:nth-child(2) {
  opacity: 0;
}

.l-header__hamburger.is-open .l-header__hamburger-line:nth-child(3) {
  -webkit-transform: translateY(-0.5rem) rotate(-45deg);
          transform: translateY(-0.5rem) rotate(-45deg);
}

@media screen and (max-width: 1024px) {
  .l-header__main {
    gap: 1rem;
  }
  .l-header__nav {
    gap: 0.875rem;
  }
  .l-header__nav a {
    font-size: 0.8125rem;
  }
}
@media screen and (max-width: 767px) {
  .l-header__nav {
    display: none;
  }
  .l-header__inner {
    gap: 1rem;
  }
  .l-header__utils .l-header__lang,
  .l-header__utils .c-btn--cta {
    display: none;
  }
  .l-header__hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (max-width: 600px) {
  .l-header__inner {
    padding-inline: 1.25rem;
  }
  .l-header__lang {
    font-size: 0.75rem;
  }
}
.l-inner {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 1074px;
  padding-right: 1.5625rem;
  padding-left: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}

.c-breadcrumb {
  background: #FAF7F1;
  padding: 1.25rem 0;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: #5C5D63;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb {
    padding: 1rem 0;
  }
}

.c-breadcrumb a {
  color: #5C5D63;
  text-decoration: none;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

.c-breadcrumb a:hover {
  color: #14377A;
}

.c-breadcrumb__sep {
  margin: 0 0.5rem;
  color: #D9D2C5;
}

.c-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  border-radius: 2px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
  white-space: nowrap;
}

.c-btn--primary {
  padding: 1.125rem 2.25rem;
  background: #fff;
  color: #14377A;
  font-weight: 600;
}

.c-btn--primary::after {
  content: "→";
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
}

.c-btn--primary:hover {
  background: #14377A;
  color: #fff;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 12px 32px rgba(14, 40, 88, .4);
          box-shadow: 0 12px 32px rgba(14, 40, 88, .4);
}

.c-btn--ghost {
  padding: 1.125rem 2rem;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .5);
}

.c-btn--ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .1);
}

.c-btn.is-disabled,
.c-btn.is-disabled:hover {
  background: #8B8C92;
  color: #fff;
  border-color: #8B8C92;
  pointer-events: none;
  cursor: not-allowed;
  -webkit-transform: none;
          transform: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  opacity: 0.85;
}

.c-btn.is-hidden {
  display: none !important;
}

.c-btn--coming {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.125rem;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  line-height: 1.2;
}

.c-btn--coming::after,
.c-btn--coming.c-btn--cta::after {
  content: none;
}

.c-btn--coming .c-btn__main::after {
  content: "→";
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  margin-left: 0.5rem;
}

.c-btn__soon {
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  opacity: 0.9;
}

.c-btn--cta {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.75rem 1.375rem;
  background: #14377A;
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  -webkit-transition: background 0.25s;
  transition: background 0.25s;
}

.c-btn--cta::after {
  content: "→";
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  -webkit-transition: -webkit-transform 0.25s;
  transition: -webkit-transform 0.25s;
  transition: transform 0.25s;
  transition: transform 0.25s, -webkit-transform 0.25s;
}

.c-btn--cta:hover {
  background: #0E2858;
}

.c-btn--cta:hover::after {
  -webkit-transform: translateX(3px);
          transform: translateX(3px);
}

.c-btn--cta--stack {
  padding: 0.5rem 1rem;
  font-size: 0.6875rem;
  line-height: 1.35;
  white-space: normal;
  text-align: left;
  letter-spacing: 0.02em;
  max-width: 13rem;
}

.c-btn--cta--stack::after {
  -ms-flex-item-align: center;
      align-self: center;
}

@media screen and (max-width: 600px) {
  .c-btn--cta {
    padding: 0.625rem 1rem;
    font-size: 0.75rem;
  }
}
.c-form-embed {
  background: #fff;
  border: 1px solid #D9D2C5;
  padding: 1.5rem;
}
@media screen and (max-width: 767px) {
  .c-form-embed {
    padding: 1rem;
  }
}

.c-form-embed__iframe {
  width: 100%;
  min-height: 56.25rem;
  border: 0;
  display: block;
}
@media screen and (max-width: 767px) {
  .c-form-embed__iframe {
    min-height: 62.5rem;
  }
}

.c-info-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #D9D2C5;
}

.c-info-table th,
.c-info-table td {
  text-align: left;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #D9D2C5;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .c-info-table th,
  .c-info-table td {
    padding: 0.875rem 1rem;
    font-size: 0.8125rem;
  }
}

.c-info-table th {
  font-family: "Noto Serif JP", "Cormorant Garamond", serif;
  font-weight: 600;
  width: 28%;
  color: #14377A;
  letter-spacing: 0.05em;
  background: #FAF7F1;
}
@media screen and (max-width: 767px) {
  .c-info-table th {
    width: 36%;
  }
}

.c-info-table th sup,
.c-info-table td sup {
  font-size: 0.7em;
  vertical-align: bottom;
}

.c-info-table td {
  color: #5C5D63;
  background: #FFFFFF;
}

.c-info-table__note-inline {
  display: inline-block;
  margin-top: 0.125rem;
  font-size: 0.8125rem;
  color: #5C5D63;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .c-info-table__note-inline {
    font-size: 0.75rem;
  }
}

.c-info-table__notes {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  font-size: 0.8125rem;
  color: #5C5D63;
  line-height: 1.85;
}
@media screen and (max-width: 767px) {
  .c-info-table__notes {
    font-size: 0.75rem;
  }
}

.c-info-table__notes li {
  padding-left: 2.5em;
  text-indent: -2.5em;
}

.c-info-table__notes li + li {
  margin-top: 0.25rem;
}

.c-page-title {
  text-align: center;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .c-page-title {
    margin-bottom: 2rem;
  }
}

.c-page-title__text {
  font-family: "Noto Serif JP", "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 1.4;
  letter-spacing: 0.06em;
  color: #1A1B1F;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .c-page-title__text {
    font-size: 1.75rem;
  }
}

.c-section-heading {
  font-family: "Noto Serif JP", "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 2.75rem;
  line-height: 1.55;
  letter-spacing: 0.04em;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .c-section-heading {
    font-size: 1.75rem;
  }
}

.c-section-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: 0.8125rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #14377A;
  margin-bottom: 1.125rem;
  font-weight: 500;
}

.c-section-tabs {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  margin-bottom: 5rem;
  border: 1px solid #D9D2C5;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .c-section-tabs {
    margin-bottom: 3.5rem;
  }
}

.c-section-tabs__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1.25rem 1.5rem;
  font-family: "Noto Serif JP", "Cormorant Garamond", serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #1A1B1F;
  text-decoration: none;
  background: #fff;
  text-align: center;
  position: relative;
  -webkit-transition: background 0.25s, color 0.25s;
  transition: background 0.25s, color 0.25s;
}
@media screen and (max-width: 767px) {
  .c-section-tabs__item {
    padding: 1rem 0.75rem;
    font-size: 0.875rem;
  }
}

.c-section-tabs__item + .c-section-tabs__item {
  border-left: 1px solid #D9D2C5;
}

.c-section-tabs__item:hover {
  background: #F2EDE3;
  color: #14377A;
}

.c-skip-link {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 200;
  padding: 0.75rem 1.25rem;
  background: #14377A;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 2px;
  -webkit-transform: translateY(-200%);
          transform: translateY(-200%);
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}

.c-skip-link:focus {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.p-404 {
  background: #FAF7F1;
  padding: 5rem 0 10rem;
}
@media screen and (max-width: 767px) {
  .p-404 {
    padding: 3rem 0 6rem;
  }
}

.p-404__inner {
  max-width: 45rem;
  margin: 0 auto;
  text-align: center;
}

.p-404__code {
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: 8.75rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #14377A;
  opacity: 0.85;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-404__code {
    font-size: 6rem;
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 600px) {
  .p-404__code {
    font-size: 4.5rem;
  }
}

.p-404__title {
  font-family: "Noto Serif JP", "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: #1A1B1F;
  margin: 0 0 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-404__title {
    font-size: 1.375rem;
    margin-bottom: 1.25rem;
  }
}

.p-404__desc {
  font-size: 0.9375rem;
  line-height: 1.95;
  color: #5C5D63;
  margin: 0 0 3rem;
}
@media screen and (max-width: 767px) {
  .p-404__desc {
    font-size: 0.875rem;
    margin-bottom: 2.25rem;
  }
}

.p-404__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-404__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  padding: 1rem 2.5rem;
  background: #14377A;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  border-radius: 2px;
  text-decoration: none;
  -webkit-transition: background 0.25s;
  transition: background 0.25s;
}

.p-404__btn::after {
  content: "→";
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
}

.p-404__btn:hover {
  background: #0E2858;
}

.p-amenities {
  background: #F2EDE3;
  padding: 8.75rem 0;
  overflow-x: clip;
}
@media screen and (max-width: 767px) {
  .p-amenities {
    padding: 5.625rem 0;
  }
}

.p-amenities__layout {
  display: grid;
  grid-template-columns: 12.5rem minmax(0, 1fr);
  gap: 5rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media screen and (max-width: 1024px) {
  .p-amenities__layout {
    grid-template-columns: 10rem minmax(0, 1fr);
    gap: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-amenities__layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }
}

.p-amenities__nav {
  position: sticky;
  top: 7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-left: 1px solid #D9D2C5;
}
@media screen and (max-width: 767px) {
  .p-amenities__nav {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-left: none;
    border-top: 1px solid #D9D2C5;
    border-left: 1px solid #D9D2C5;
  }
}

.p-amenities__nav-item {
  display: block;
  padding: 0.875rem 1.25rem;
  font-size: 0.8125rem;
  color: #5C5D63;
  letter-spacing: 0.1em;
  font-weight: 500;
  border-left: 2px solid transparent;
  margin-left: -1px;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
@media screen and (max-width: 767px) {
  .p-amenities__nav-item {
    margin-left: 0;
    padding: 0.875rem 1rem;
    border-left: none;
    border-right: 1px solid #D9D2C5;
    border-bottom: 1px solid #D9D2C5;
    text-align: center;
    white-space: nowrap;
  }
}

.p-amenities__nav-item:hover {
  color: #14377A;
}

.p-amenities__nav-item--active {
  color: #14377A;
  border-left-color: #14377A;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .p-amenities__nav-item--active {
    border-left-color: transparent;
  }
}

.p-amenities__content > div {
  padding-bottom: 6.25rem;
  scroll-margin-top: 5rem;
}

.p-amenities__content > div:last-child {
  padding-bottom: 0;
}

.p-amenities__sub-head {
  margin-bottom: 2.25rem;
}

.p-amenities__sub-eyebrow {
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #14377A;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.p-amenities__sub-title {
  font-family: "Noto Serif JP", "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 1.75rem;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-amenities__sub-title {
    font-size: 1.375rem;
  }
}

.p-amenities__sub-title sup {
  font-size: 0.5em;
  vertical-align: bottom;
}

.p-amenities__service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid #D9D2C5;
  border-left: 1px solid #D9D2C5;
}
@media screen and (max-width: 1024px) {
  .p-amenities__service-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .p-amenities__service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-amenities__service-item {
  background: #fff;
  padding: 2rem 0.75rem;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  border-right: 1px solid #D9D2C5;
  border-bottom: 1px solid #D9D2C5;
}
@media screen and (max-width: 767px) {
  .p-amenities__service-item {
    padding: 1.75rem 1rem;
    gap: 1rem;
  }
}

.p-amenities__service-icon {
  width: 3.75rem;
  height: 3.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #14377A;
}
@media screen and (max-width: 767px) {
  .p-amenities__service-icon {
    width: 3.25rem;
    height: 3.25rem;
  }
}

.p-amenities__service-icon img {
  width: 3.25rem;
  height: 3.25rem;
}
@media screen and (max-width: 767px) {
  .p-amenities__service-icon img {
    width: 2.75rem;
    height: 2.75rem;
  }
}

.p-amenities__service-name {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.p-amenities__room-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 3.5rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media screen and (max-width: 767px) {
  .p-amenities__room-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }
}

.p-amenities__room-image {
  position: relative;
  min-width: 0;
  width: 100%;
}

.p-amenities__room-image .p-amenities__slider {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  width: 100%;
}

.p-amenities__room-image .swiper-slide {
  position: relative;
}

.p-amenities__room-note {
  position: absolute;
  right: 0.625rem;
  bottom: 0.625rem;
  z-index: 3;
  font-size: 0.6875rem;
  letter-spacing: 0.04em;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, .55);
  pointer-events: none;
}
@media screen and (max-width: 600px) {
  .p-amenities__room-note {
    font-size: 0.625rem;
    right: 0.5rem;
    bottom: 0.5rem;
  }
}

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

.p-amenities__room-image .swiper-slide--plan img {
  -o-object-fit: contain;
     object-fit: contain;
  background: #fff;
}

.p-amenities__room-image .p-amenities__slider-pagination {
  margin-top: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0.5rem;
}

.p-amenities__room-image .p-amenities__slider-pagination .swiper-pagination-bullet {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #8B8C92;
  opacity: 0.4;
  cursor: pointer;
  -webkit-transition: background 0.25s, -webkit-transform 0.25s;
  transition: background 0.25s, -webkit-transform 0.25s;
  transition: background 0.25s, transform 0.25s;
  transition: background 0.25s, transform 0.25s, -webkit-transform 0.25s;
}

.p-amenities__room-image .p-amenities__slider-pagination .swiper-pagination-bullet-active {
  background: #14377A;
  opacity: 1;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.p-amenities__equipment {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  /* background: #D9D2C5;
  border: 1px solid #D9D2C5; */
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 600px) {
  .p-amenities__equipment {
    grid-template-columns: 1fr;
  }
}

.p-amenities__equipment-item {
  background: #ffffff;
  padding: 1.125rem 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.p-amenities__room-desc {
  font-size: 0.875rem;
  color: #5C5D63;
  line-height: 1.95;
}

.p-amenities__meal-text {
  font-size: 0.9375rem;
  line-height: 2;
  color: #5C5D63;
  max-width: 45rem;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-amenities__meal-text {
    margin-bottom: 1.75rem;
  }
}

.p-amenities__meal-slider {
  position: relative;
  width: 100%;
  min-width: 0;
}

.p-amenities__meal-slider .p-amenities__slider {
  overflow: visible;
  -webkit-clip-path: inset(0 -100vw 0 0);
          clip-path: inset(0 -100vw 0 0);
  margin-bottom: 1.75rem;
  width: 100%;
}

.p-amenities__meal-slider .swiper-slide {
  width: 13.75rem;
  aspect-ratio: 1/1;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-amenities__meal-slider .swiper-slide {
    width: 11.25rem;
  }
}
@media screen and (max-width: 600px) {
  .p-amenities__meal-slider .swiper-slide {
    width: 8.75rem;
  }
}

.p-amenities__meal-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-amenities__slider-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.25rem;
}

.p-amenities__slider-arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.75rem;
}

.p-amenities__slider-arrow {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid #D9D2C5;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: 1rem;
  color: #5C5D63;
  -webkit-transition: background 0.25s, color 0.25s, border-color 0.25s;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.p-amenities__slider-arrow:hover {
  background: #14377A;
  color: #fff;
  border-color: #14377A;
}

.p-amenities__meal-slider .p-amenities__slider-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: auto;
  position: static;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-amenities__meal-slider .p-amenities__slider-pagination .swiper-pagination-bullet {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #fff;
  opacity: 1;
  cursor: pointer;
  -webkit-transition: background 0.25s, -webkit-transform 0.25s;
  transition: background 0.25s, -webkit-transform 0.25s;
  transition: background 0.25s, transform 0.25s;
  transition: background 0.25s, transform 0.25s, -webkit-transform 0.25s;
}

.p-amenities__meal-slider .p-amenities__slider-pagination .swiper-pagination-bullet-active {
  background: #14377A;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.p-amenities__access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .p-amenities__access-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.p-amenities__access-map {
  aspect-ratio: 4/3;
  overflow: hidden;
  border: 1px solid #D9D2C5;
}

.p-amenities__access-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.p-amenities__access-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.75rem;
}

.p-amenities__access-block {
  padding: 1.5rem;
  background: #ffffff;
  border: 1px solid #D9D2C5;
}

.p-amenities__access-block dt {
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: #14377A;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.p-amenities__access-block dd {
  font-size: 0.875rem;
  color: #1A1B1F;
  line-height: 1.85;
}

.p-amenities__access-block dd strong {
  font-family: "Noto Serif JP", "Cormorant Garamond", serif;
  font-size: 1.125rem;
  font-weight: 600;
  display: block;
  margin-bottom: 0.375rem;
}

.p-apply {
  background: #FAF7F1;
  padding: 2.5rem 0 8.75rem;
}
@media screen and (max-width: 767px) {
  .p-apply {
    padding: 1.5rem 0 5rem;
  }
}

.p-apply__section {
  margin-bottom: 6rem;
  scroll-margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .p-apply__section {
    margin-bottom: 4rem;
  }
}

.p-apply__section:last-child {
  margin-bottom: 0;
}

.p-apply__step-note {
  font-size: 0.8125rem;
  color: #5C5D63;
  line-height: 1.7;
  margin-top: 1.25rem;
  margin-bottom: 0.75rem;
}

.p-apply__lead {
  text-align: center;
  font-size: 0.9375rem;
  line-height: 1.95;
  color: #5C5D63;
  max-width: 45rem;
  margin: 0 auto 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-apply__lead {
    font-size: 0.875rem;
    text-align: left;
    margin-bottom: 1.75rem;
  }
}

.p-bottom-cta {
  position: relative;
  padding: 8.75rem 0;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-bottom-cta {
    padding: 5.625rem 0;
  }
}

.p-bottom-cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.p-bottom-cta__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14, 40, 88, .92), rgba(14, 40, 88, .78));
}

.p-bottom-cta__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-inline: auto;
  padding-inline: 2rem;
}
@media screen and (max-width: 767px) {
  .p-bottom-cta__inner {
    padding-inline: 1.25rem;
  }
}

.p-bottom-cta__inner .c-section-label {
  color: rgba(255, 255, 255, .85);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-bottom-cta__inner .c-section-label::before,
.p-bottom-cta__inner .c-section-label::after {
  content: "";
  width: 1.75rem;
  height: 1px;
  background: rgba(255, 255, 255, .6);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-bottom-cta__heading {
  font-family: "Noto Serif JP", "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 2.625rem;
  line-height: 1.6;
  letter-spacing: 0.06em;
  margin-bottom: 1.75rem;
}
@media screen and (max-width: 767px) {
  .p-bottom-cta__heading {
    font-size: 1.625rem;
  }
}

.p-bottom-cta__desc {
  font-size: 0.9375rem;
  line-height: 2;
  color: rgba(255, 255, 255, .88);
  max-width: 40rem;
  margin: 0 auto 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-bottom-cta__desc {
    margin-bottom: 2.5rem;
    font-size: 0.875rem;
  }
}

.p-bottom-cta__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-bottom-cta__actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (max-width: 767px) {
  .p-bottom-cta__actions .c-btn {
    width: 100%;
    max-width: 20rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-comparison {
  background: #F2EDE3;
  padding: 7.5rem 0;
}
@media screen and (max-width: 767px) {
  .p-comparison {
    padding: 5rem 0;
  }
}
@media screen and (max-width: 600px) {
  .p-comparison {
    padding: 4rem 0;
  }
}

.p-comparison__head {
  text-align: center;
  margin-bottom: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-comparison__head {
    margin-bottom: 2.25rem;
  }
}

.p-comparison__head .c-section-heading {
  font-family: "Noto Serif JP", "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 2.25rem;
  line-height: 1.4;
  letter-spacing: 0.04em;
  margin-bottom: 1.125rem;
}
@media screen and (max-width: 767px) {
  .p-comparison__head .c-section-heading {
    font-size: 1.5rem;
  }
}

.p-comparison__lead {
  font-family: "Noto Serif JP", "Cormorant Garamond", serif;
  font-size: 0.875rem;
  line-height: 1.9;
  letter-spacing: 0.08em;
  color: #5C5D63;
  margin: 0;
}
@media screen and (max-width: 600px) {
  .p-comparison__lead {
    font-size: 0.8125rem;
    letter-spacing: 0.05em;
  }
}

.p-comparison__table-wrap {
  max-width: 980px;
  margin: 0 auto;
}

.p-comparison__table {
  width: 100%;
  border-collapse: collapse;
  background: #FFFFFF;
  border: 1px solid #D9D2C5;
  -webkit-box-shadow: 0 0.625rem 2.5rem rgba(20, 55, 122, .06);
          box-shadow: 0 0.625rem 2.5rem rgba(20, 55, 122, .06);
}

.p-comparison__table th,
.p-comparison__table td {
  width: 50%;
  text-align: center;
  padding: 1.25rem 1.75rem;
  border-bottom: 1px solid #D9D2C5;
  font-size: 1rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-comparison__table th,
  .p-comparison__table td {
    padding: 0.875rem 1rem;
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 600px) {
  .p-comparison__table th,
  .p-comparison__table td {
    font-size: 0.8125rem;
    padding: 0.75rem 0.625rem;
  }
}

.p-comparison__table tbody tr:last-child th,
.p-comparison__table tbody tr:last-child td {
  border-bottom: none;
}

.p-comparison__th {
  font-family: "Noto Serif JP", "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 1.0625rem;
  letter-spacing: 0.06em;
  color: #fff;
  padding-top: 1.375rem;
  padding-bottom: 1.375rem;
}
@media screen and (max-width: 767px) {
  .p-comparison__th {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 600px) {
  .p-comparison__th {
    font-size: 0.8125rem;
  }
}

.p-comparison__th--general {
  background: #5C5D63;
}

.p-comparison__th--icm {
  background: #14377A;
}

.p-comparison__table tbody td {
  color: #1A1B1F;
}

.p-comparison__table tbody td:first-child {
  color: #8B8C92;
  background: #FAF7F1;
}

.p-comparison__table tbody td:last-child {
  color: #14377A;
  font-weight: 600;
  background: #E8EDF5;
}

.p-concept {
  background: #FAF7F1;
  padding: 8.75rem 0;
}
@media screen and (max-width: 767px) {
  .p-concept {
    padding: 5.625rem 0;
  }
}

.p-concept__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.4375rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-concept__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.p-concept__text {
  padding-top: 1.25rem;
}

.p-concept__sub {
  font-family: "Noto Serif JP", "Cormorant Garamond", serif;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.7;
  color: #14377A;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-concept__sub {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
}

.p-concept__body {
  font-size: 0.9375rem;
  line-height: 2.05;
  color: #5C5D63;
}

.p-concept__body + .p-concept__body {
  margin-top: 1.5rem;
}

.p-concept__body + .p-concept__sub {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .p-concept__body + .p-concept__sub {
    margin-top: 2.25rem;
  }
}

.p-concept__body + .p-concept__sub--spirit {
  margin-top: 4.75rem;
}
@media screen and (max-width: 767px) {
  .p-concept__body + .p-concept__sub--spirit {
    margin-top: 3.5rem;
  }
}

.p-concept__image-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-concept__image-col {
    gap: 1.25rem;
  }
}

.p-concept__cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .p-concept__cta {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-concept__cta .c-btn--cta {
  min-width: 17.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1rem 1.75rem;
  font-size: 0.875rem;
}
@media screen and (max-width: 600px) {
  .p-concept__cta .c-btn--cta {
    min-width: 0;
    width: 100%;
    max-width: 20rem;
  }
}

.p-concept__cta .c-btn--cta::after {
  content: none;
}

.p-concept__image-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-concept__image-wrap {
    aspect-ratio: 4/3;
  }
}

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

.p-concept__image-tag {
  position: absolute;
  left: -0.75rem;
  bottom: 2rem;
  background: #14377A;
  color: #fff;
  padding: 0.875rem 1.5rem;
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: 0.8125rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.p-concept__anchor-cards {
  margin-top: 6.25rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #D9D2C5;
  border-top: 1px solid #D9D2C5;
  border-bottom: 1px solid #D9D2C5;
}
@media screen and (max-width: 767px) {
  .p-concept__anchor-cards {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 4rem;
  }
}
@media screen and (max-width: 600px) {
  .p-concept__anchor-cards {
    grid-template-columns: 1fr;
  }
}

.p-concept__anchor-card {
  background: #FAF7F1;
  padding: 2.25rem 1.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.75rem;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-concept__anchor-card {
    padding: 1rem 1.75rem;
  }
}

.p-concept__anchor-card:hover {
  background: #E8EDF5;
}

.p-concept__anchor-num {
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: #8B8C92;
  font-weight: 500;
}

.p-concept__anchor-title {
  font-family: "Noto Serif JP", "Cormorant Garamond", serif;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.p-concept__anchor-en {
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: #8B8C92;
  text-transform: uppercase;
  font-style: italic;
}

.p-concept__anchor-arrow {
  position: absolute;
  top: 2.25rem;
  right: 1.75rem;
  width: 1rem;
  height: 1rem;
  color: #8b8c92;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.p-concept__anchor-arrow svg {
  width: 100%;
  height: 100%;
}

.p-concept__anchor-card:hover .p-concept__anchor-arrow {
  -webkit-transform: translate(4px, -4px);
          transform: translate(4px, -4px);
}

.p-concept__marquee {
  margin-top: 6.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-concept__marquee {
    margin-top: 4rem;
    gap: 0.875rem;
  }
}

.p-concept__marquee-row {
  width: 100%;
  overflow: hidden;
}

.p-concept__marquee-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  gap: 1rem;
  will-change: transform;
  -webkit-animation: conceptMarqueeScroll 60s linear infinite;
          animation: conceptMarqueeScroll 60s linear infinite;
}
@media screen and (max-width: 767px) {
  .p-concept__marquee-track {
    gap: 0.75rem;
    -webkit-animation-duration: 50s;
            animation-duration: 50s;
  }
}
@media screen and (max-width: 600px) {
  .p-concept__marquee-track {
    -webkit-animation-duration: 40s;
            animation-duration: 40s;
  }
}

.p-concept__marquee-row--rtl .p-concept__marquee-track {
  animation-direction: reverse;
}

@-webkit-keyframes conceptMarqueeScroll {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(-50%, 0, 0);
            transform: translate3d(-50%, 0, 0);
  }
}

@keyframes conceptMarqueeScroll {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(-50%, 0, 0);
            transform: translate3d(-50%, 0, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .p-concept__marquee-track {
    -webkit-animation: none;
            animation: none;
  }
}
.p-concept__marquee-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 22.5rem;
  aspect-ratio: 4/3;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-concept__marquee-slide {
    width: 16.25rem;
  }
}
@media screen and (max-width: 600px) {
  .p-concept__marquee-slide {
    width: 12.5rem;
  }
}

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

.p-contact {
  background: #FAF7F1;
  padding: 2.5rem 0 8.75rem;
}
@media screen and (max-width: 767px) {
  .p-contact {
    padding: 1.5rem 0 5rem;
  }
}

.p-contact__section {
  scroll-margin-top: 100px;
}

.p-contact__lead {
  text-align: center;
  font-size: 0.9375rem;
  line-height: 1.95;
  color: #5C5D63;
  max-width: 45rem;
  margin: 0 auto 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-contact__lead {
    font-size: 0.875rem;
    text-align: left;
    margin-bottom: 1.75rem;
  }
}

.p-day {
  background: #F2EDE3;
  padding: 4.5rem 0 5rem;
}
@media screen and (max-width: 767px) {
  .p-day {
    padding: 3rem 0 3.5rem;
  }
}
@media screen and (max-width: 600px) {
  .p-day {
    padding: 2.5rem 0 3rem;
  }
}

.p-day__head {
  text-align: center;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-day__head {
    margin-bottom: 1.125rem;
  }
}
@media screen and (max-width: 600px) {
  .p-day__head {
    margin-bottom: 0.875rem;
  }
}

.p-day__head .c-section-heading {
  font-family: "Noto Serif JP", "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 2.25rem;
  line-height: 1.4;
  letter-spacing: 0.04em;
  margin-bottom: 1.125rem;
}
@media screen and (max-width: 767px) {
  .p-day__head .c-section-heading {
    font-size: 1.5rem;
  }
}

.p-day__sub {
  font-family: "Noto Serif JP", "Cormorant Garamond", serif;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  color: #5C5D63;
  margin-top: 0;
}
@media screen and (max-width: 600px) {
  .p-day__sub {
    font-size: 0.8125rem;
    letter-spacing: 0.05em;
  }
}

.p-day__timeline {
  position: relative;
  max-width: 60rem;
  margin-inline: auto;
}

.p-day__item {
  position: relative;
  display: grid;
  grid-template-columns: 3.5rem minmax(0, 1fr) 20rem;
  gap: 2rem;
  padding: 0.75rem 0 1.25rem;
}
@media screen and (max-width: 1024px) {
  .p-day__item {
    grid-template-columns: 3.5rem minmax(0, 1fr) 16.25rem;
    gap: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-day__item {
    grid-template-columns: 2.5rem minmax(0, 1fr);
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 1rem;
    padding: 0.5rem 0 1.25rem;
  }
}
@media screen and (max-width: 600px) {
  .p-day__item {
    gap: 0.75rem;
    padding: 0.5rem 0 1rem;
  }
}

.p-day__item:last-child {
  padding-bottom: 0;
}

.p-day__item::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1.75rem;
  width: 1px;
  background: #D9D2C5;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-day__item::before {
    left: 1.25rem;
  }
}

.p-day__item:first-child::before {
  top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-day__item:first-child::before {
    top: 1.75rem;
  }
}

.p-day__item:last-child::before {
  bottom: calc(100% - 2.5rem);
}
@media screen and (max-width: 767px) {
  .p-day__item:last-child::before {
    bottom: calc(100% - 1.75rem);
  }
}

.p-day__marker {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid #D9D2C5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #14377A;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-day__marker {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.p-day__marker svg {
  width: 1.5rem;
  height: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-day__marker svg {
    width: 1.125rem;
    height: 1.125rem;
  }
}

.p-day__text {
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .p-day__text {
    padding-top: 0.25rem;
  }
}

.p-day__time {
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: #14377A;
  margin-bottom: 0.625rem;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-day__time {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
}
@media screen and (max-width: 600px) {
  .p-day__time {
    font-size: 0.9375rem;
  }
}

.p-day__time span {
  font-family: "Noto Serif JP", "Cormorant Garamond", serif;
  font-size: 0.8125rem;
  color: #5C5D63;
  margin-left: 0.375rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 600px) {
  .p-day__time span {
    display: block;
    margin-left: 0;
    margin-top: 0.125rem;
    font-size: 0.75rem;
  }
}

.p-day__desc {
  font-size: 0.875rem;
  line-height: 1.95;
  color: #5C5D63;
}
@media screen and (max-width: 600px) {
  .p-day__desc {
    font-size: 0.8125rem;
    line-height: 1.85;
  }
}

.p-day__image {
  position: relative;
  min-width: 0;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .p-day__image {
    grid-column: 2/-1;
    margin-top: 1rem;
  }
}
@media screen and (max-width: 600px) {
  .p-day__image {
    margin-top: 0.75rem;
  }
}

.p-day__image > img {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  background: #D9D2C5;
}

.p-facility {
  background: #FAF7F1;
  padding: 8.75rem 0 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-facility {
    padding: 5.625rem 0 3.75rem;
  }
}

.p-facility__head {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 3.75rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-facility__head {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }
}

.p-facility__desc {
  padding-top: 2.50625rem;
}
@media screen and (max-width: 767px) {
  .p-facility__desc {
    padding-top: 0;
  }
}

.p-facility__head-title .c-section-heading {
  margin: 0;
}

.p-facility__desc {
  font-size: 0.9375rem;
  line-height: 2;
  color: #5C5D63;
  max-width: 38.75rem;
  justify-self: end;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-facility__desc {
    justify-self: start;
    max-width: 100%;
  }
}

.p-facility__swiper {
  position: relative;
}

.p-facility__swiper .swiper-slide {
  width: 58%;
  max-width: 47.5rem;
}
@media screen and (max-width: 767px) {
  .p-facility__swiper .swiper-slide {
    width: 64%;
  }
}

.p-facility__slide {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  margin: 0;
}

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

.p-facility__slide figcaption {
  position: absolute;
  left: 0;
  top: 0;
  background: #14377A;
  color: #fff;
  padding: 0.5625rem 1.125rem;
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
@media screen and (max-width: 600px) {
  .p-facility__slide figcaption {
    padding: 0.5rem 0.875rem;
    font-size: 0.625rem;
    letter-spacing: 0.18em;
  }
}

.p-facility__credit {
  position: absolute;
  right: 0.75rem;
  bottom: 0.625rem;
  z-index: 2;
  font-size: 0.6875rem;
  letter-spacing: 0.04em;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, .55);
  pointer-events: none;
}
@media screen and (max-width: 600px) {
  .p-facility__credit {
    font-size: 0.625rem;
    right: 0.5rem;
    bottom: 0.5rem;
  }
}

.p-facility__controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 2.25rem;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-inline: 2rem;
}
@media screen and (max-width: 767px) {
  .p-facility__controls {
    padding-inline: 1.25rem;
  }
}

.p-facility__counter {
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: 0.8125rem;
  letter-spacing: 0.2em;
  color: #5C5D63;
  white-space: nowrap;
}

.p-facility__counter b {
  color: #14377A;
  font-weight: 600;
}

.p-facility__progress {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 1px;
  background: #D9D2C5;
  margin: 0 2.5rem;
  position: relative;
}

.p-facility__progress span {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #14377A;
  -webkit-transition: width 0.5s;
  transition: width 0.5s;
}

.p-facility__arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
}

.p-facility__arrow {
  width: 3rem;
  height: 3rem;
  border: 1px solid #D9D2C5;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: 1.125rem;
  color: #14377A;
}

.p-facility__arrow:hover {
  background: #14377A;
  color: #fff;
  border-color: #14377A;
}

.p-faq {
  background: #F2EDE3;
  padding: 8.75rem 0;
}
@media screen and (max-width: 767px) {
  .p-faq {
    padding: 5.625rem 0;
  }
}

.p-faq__head {
  text-align: center;
  margin-bottom: 3.75rem;
}

.p-faq__head .c-section-label {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-faq__sub {
  font-size: 0.875rem;
  color: #5C5D63;
  margin-top: 0.5rem;
  letter-spacing: 0.05em;
}

.p-faq__list {
  max-width: 55rem;
  margin-inline: auto;
}

.p-faq__category {
  margin-bottom: 0.375rem;
}

.p-faq__category-head {
  list-style: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  padding: 1.375rem 1.75rem;
  background: #14377A;
  color: #fff;
  font-family: "Noto Serif JP", "Cormorant Garamond", serif;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  -webkit-transition: background 0.25s;
  transition: background 0.25s;
}
@media screen and (max-width: 767px) {
  .p-faq__category-head {
    font-size: 0.9375rem;
    padding: 1.125rem 1.25rem;
    letter-spacing: 0.04em;
  }
}

.p-faq__category-head::-webkit-details-marker {
  display: none;
}

.p-faq__category-title {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  color: inherit;
}

.p-faq__category-head:hover {
  background: #0E2858;
}

.p-faq__category-head::after {
  content: "";
  margin-left: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 0.5625rem;
  height: 0.5625rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  -webkit-transform: translateY(-2px) rotate(45deg);
          transform: translateY(-2px) rotate(45deg);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.p-faq__category[open] .p-faq__category-head::after {
  -webkit-transform: translateY(2px) rotate(-135deg);
          transform: translateY(2px) rotate(-135deg);
}

.p-faq__category-body {
  background: #fff;
  border: 1px solid #D9D2C5;
  border-top: none;
}

.p-faq__item {
  border-bottom: 1px solid #D9D2C5;
}

.p-faq__category-body .p-faq__item:last-child {
  border-bottom: none;
}

.p-faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 0.75rem 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  font-family: "Noto Serif JP", "Cormorant Garamond", serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  -webkit-transition: color 0.25s;
  transition: color 0.25s;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-faq__item summary {
    font-size: 0.8125rem;
    padding: 0.625rem 1rem;
    gap: 1rem;
  }
}

.p-faq__item summary::-webkit-details-marker {
  display: none;
}

.p-faq__item summary::before {
  content: "Q";
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: 1.125rem;
  color: #14377A;
  font-weight: 500;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-faq__item summary::after {
  content: "+";
  margin-left: auto;
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: 1.5rem;
  color: #14377A;
  font-weight: 300;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.p-faq__item[open] summary::after {
  content: "−";
}

.p-faq__item summary:hover {
  color: #14377A;
}

.p-faq__answer {
  padding: 0 1.5rem 1.5rem 3.75rem;
  font-size: 0.875rem;
  line-height: 1.95;
  color: #5C5D63;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-faq__answer {
    padding: 0 1rem 1.25rem 2.5rem;
    gap: 1rem;
    font-size: 0.8125rem;
  }
}

.p-faq__answer::before {
  content: "A";
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: 1.125rem;
  color: #B86B53;
  line-height: 1.4;
  font-weight: 500;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: -2.25rem;
}
@media screen and (max-width: 767px) {
  .p-faq__answer::before {
    margin-left: -1.5rem;
  }
}

.p-features {
  background: #F2EDE3;
  position: relative;
  overflow: hidden;
  padding: 8.75rem 0;
}
@media screen and (max-width: 767px) {
  .p-features {
    padding: 5.625rem 0;
  }
}

.p-features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(#D9D2C5), to(transparent));
  background: linear-gradient(to right, transparent, #D9D2C5, transparent);
}

.p-features__head {
  text-align: center;
  margin-bottom: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-features__head {
    margin-bottom: 4rem;
  }
}

.p-features__head .c-section-label {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-features__sub {
  font-family: "Noto Serif JP", "Cormorant Garamond", serif;
  font-size: 0.9375rem;
  letter-spacing: 0.15em;
  color: #5C5D63;
  margin-top: 0.75rem;
}

.p-features__lead {
  max-width: 47.5rem;
  margin: 2rem auto 0;
  text-align: left;
  font-size: 0.9375rem;
  line-height: 2;
  color: #5C5D63;
}
.p-features__lead p + p {
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-features__lead {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    line-height: 1.9;
  }
}

.p-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto auto auto;
  -webkit-column-gap: 3.5rem;
     -moz-column-gap: 3.5rem;
          column-gap: 3.5rem;
  row-gap: 0;
}
@media screen and (max-width: 767px) {
  .p-features__grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    row-gap: 4rem;
  }
}

.p-features__card {
  display: grid;
  grid-row: span 4;
  grid-template-rows: subgrid;
  row-gap: 0;
}
@media screen and (max-width: 767px) {
  .p-features__card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    grid-row: auto;
  }
}

.p-features__card > .p-features__image {
  grid-row: 1;
}

.p-features__card > .p-features__eyebrow {
  grid-row: 2;
}

.p-features__card > .p-features__title {
  grid-row: 3;
}

.p-features__card > .p-features__desc {
  grid-row: 4;
}

@media screen and (max-width: 767px) {
  .p-features__card > .p-features__image,
  .p-features__card > .p-features__eyebrow,
  .p-features__card > .p-features__title,
  .p-features__card > .p-features__desc {
    grid-row: auto;
  }
}
.p-features__image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-bottom: 2.25rem;
}

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

.p-features__image-note {
  position: absolute;
  right: 0.625rem;
  bottom: 0.625rem;
  z-index: 3;
  font-size: 0.6875rem;
  letter-spacing: 0.04em;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, .55);
  pointer-events: none;
}

.p-features__num {
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: 3.75rem;
  font-weight: 300;
  color: #fff;
  line-height: 1;
  text-shadow: 0 2px 24px rgba(0, 0, 0, .2);
  letter-spacing: -0.02em;
}

.p-features__num small {
  display: block;
  font-size: 0.6875rem;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, .85);
  font-weight: 500;
  margin-top: 0.375rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .3);
}

.p-features__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: #14377A;
  font-weight: 500;
  margin-bottom: 0.875rem;
  display: block;
}

.p-features__title {
  font-family: "Noto Serif JP", "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 1.625rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
  position: relative;
  padding-bottom: 1.25rem;
}

.p-features__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2rem;
  height: 1px;
  background: #B86B53;
}

.p-features__desc {
  font-size: 0.875rem;
  line-height: 1.95;
  color: #5C5D63;
}

.p-features__ra {
  margin-top: 4.5rem;
  max-width: 56.25rem;
  margin-inline: auto;
  padding: 1.125rem 1.75rem 1.25rem;
  background: #fff;
  border: 1px solid #D9D2C5;
  border-radius: 2px;
}
@media screen and (max-width: 767px) {
  .p-features__ra {
    margin-top: 3.5rem;
    padding: 1rem 1.25rem 1.125rem;
  }
}

.p-features__ra-title {
  margin-bottom: 0.5rem;
  font-family: "Noto Serif JP", "Cormorant Garamond", serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #14377A;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-features__ra-title {
    font-size: 0.875rem;
  }
}

.p-features__ra-desc {
  font-size: 0.875rem;
  line-height: 1.85;
  color: #5C5D63;
}
@media screen and (max-width: 767px) {
  .p-features__ra-desc {
    font-size: 0.75rem;
    line-height: 1.8;
  }
}

.p-features__decorative {
  position: absolute;
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: 17.5rem;
  font-weight: 300;
  color: #14377A;
  opacity: 0.025;
  line-height: 1;
  letter-spacing: -0.05em;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media screen and (max-width: 767px) {
  .p-features__decorative {
    font-size: 10rem;
  }
}

.p-features__decorative--left {
  top: 5rem;
  left: -2.5rem;
}

.p-flow__head {
  text-align: center;
  margin-bottom: 3.75rem;
}

.p-flow__heading {
  font-family: "Noto Serif JP", "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 2.25rem;
  line-height: 1.55;
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .p-flow__heading {
    font-size: 1.5rem;
  }
}

.p-flow__heading span {
  display: inline-block;
}

.p-flow__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-flow__grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
}

.p-flow__step {
  background: #FFFFFF;
  padding: 2.25rem 1.75rem;
  position: relative;
  text-align: center;
  border: 1px solid #D9D2C5;
}

.p-flow__step-num {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: #14377A;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: 1.375rem;
  font-weight: 500;
  margin: -4rem auto 1.5rem;
  -webkit-box-shadow: 0 0 0 8px #FAF7F1;
          box-shadow: 0 0 0 8px #FAF7F1;
  position: relative;
  z-index: 1;
}

.p-flow__step-title {
  font-family: "Noto Serif JP", "Cormorant Garamond", serif;
  font-size: 1.1875rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

.p-flow__step-desc {
  font-size: 0.8125rem;
  color: #5C5D63;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.p-flow__step-link {
  display: inline-block;
  padding: 0.625rem 1.125rem;
  background: #14377A;
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  border-radius: 2px;
  font-weight: 500;
  -webkit-transition: background 0.25s;
  transition: background 0.25s;
}

.p-flow__step-link:hover {
  background: #0E2858;
}

.p-flow__step-link.is-disabled,
.p-flow__step-link.is-disabled:hover {
  background: #8B8C92;
  color: #fff;
  pointer-events: none;
  cursor: not-allowed;
  opacity: 0.85;
}

.p-guidelines {
  background: #FAF7F1;
  padding: 8.75rem 0;
}
@media screen and (max-width: 767px) {
  .p-guidelines {
    padding: 5.625rem 0;
  }
}

.p-guidelines__head {
  text-align: center;
  margin-bottom: 3.75rem;
}

.p-guidelines__head .c-section-label {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-guidelines__desc {
  font-size: 0.875rem;
  color: #5C5D63;
  margin-top: 1rem;
  max-width: 40rem;
  margin-inline: auto;
  line-height: 1.95;
}

.p-guidelines__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 45rem;
  margin: 0 auto 5rem;
}
@media screen and (max-width: 600px) {
  .p-guidelines__grid {
    grid-template-columns: 1fr;
  }
}

.p-guidelines__schedule {
  max-width: 60rem;
  margin: 0 auto 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-guidelines__schedule {
    margin-bottom: 3rem;
  }
}

.p-guidelines__schedule-title {
  font-family: "Noto Serif JP", "Cormorant Garamond", serif;
  font-size: 1.375rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
  margin-bottom: 1.5rem;
  color: #1A1B1F;
}
@media screen and (max-width: 767px) {
  .p-guidelines__schedule-title {
    font-size: 1.25rem;
    margin-bottom: 1.125rem;
  }
}

@media screen and (max-width: 767px) {
  .p-guidelines__schedule-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.75rem;
  }
}

.p-guidelines__schedule-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.75rem;
}

.p-guidelines__schedule-scroll .scroll-hint-icon-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-guidelines__schedule-scroll .scroll-hint-icon {
  position: static;
  margin: 0;
  -webkit-transform: none;
          transform: none;
}

.p-guidelines__schedule-table {
  display: inline-table;
  width: auto;
  min-width: 92rem;
  table-layout: auto;
  border-collapse: collapse;
  background: #FFFFFF;
  border: 1px solid #D9D2C5;
  font-size: 0.875rem;
}
@media screen and (max-width: 1199px) {
  .p-guidelines__schedule-table {
    min-width: 80rem;
  }
}
@media screen and (max-width: 1023px) {
  .p-guidelines__schedule-table {
    min-width: 72rem;
  }
}
@media screen and (max-width: 767px) {
  .p-guidelines__schedule-table {
    min-width: 40rem;
    font-size: 0.8125rem;
  }
}

.p-guidelines__schedule-table th,
.p-guidelines__schedule-table td {
  white-space: nowrap;
  word-break: keep-all;
  padding: 0.875rem 1.125rem;
  border: 1px solid #D9D2C5;
  text-align: left;
  vertical-align: middle;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .p-guidelines__schedule-table th,
  .p-guidelines__schedule-table td {
    padding: 0.75rem 0.875rem;
  }
}

.p-guidelines__schedule-table thead th {
  background: #E8EDF5;
  color: #14377A;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
}

.p-guidelines__schedule-table tbody td {
  color: #1A1B1F;
  background: #FFFFFF;
}

.p-guidelines__schedule-table tbody td:first-child {
  font-weight: 600;
}

.p-guidelines__schedule-amount {
  display: block;
  font-weight: 400;
}

.p-guidelines__schedule-note {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.8125rem;
  font-weight: 400;
  color: #5C5D63;
}
.p-guidelines__schedule-note:first-of-type {
  margin-top: 0.5rem;
}

.p-guidelines__card {
  background: #FFFFFF;
  padding: 2.25rem 1.75rem;
  border: 1px solid #D9D2C5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

.p-guidelines__card--disabled {
  cursor: default;
  pointer-events: none;
}

.p-guidelines__card--disabled:hover {
  border-color: #D9D2C5;
  -webkit-transform: none;
          transform: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.p-guidelines__card-en {
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: #8B8C92;
  text-transform: uppercase;
  font-weight: 500;
}

.p-guidelines__card-title {
  font-family: "Noto Serif JP", "Cormorant Garamond", serif;
  font-size: 1.375rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.p-guidelines__card-desc {
  font-size: 0.8125rem;
  color: #5C5D63;
  line-height: 1.85;
  /* -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1; */
}

.p-guidelines__pdf-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.p-guidelines__pdf-item,
.p-guidelines__pdf-item--disabled {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.625rem 1.125rem;
  background: #14377A;
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  border-radius: 2px;
  font-weight: 500;
  transition: background 0.25s;
  text-decoration: none;
}

.p-guidelines__pdf-item:hover {
  background: #0E2858;
}

.p-guidelines__pdf-item--disabled,
.p-guidelines__pdf-item--disabled:hover {
  background: #8B8C92;
  color: #fff;
  pointer-events: none;
  cursor: not-allowed;
  opacity: 0.85;
}

.p-guidelines__pdf-item-text {
  display: inline-block;
}

.p-guidelines__pdf-item-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.2rem;
  padding: 0.2rem 0.4rem;
  border: 1px solid #FFF;
  color: #FFF;
  font-size: 0.75rem;
}

.p-guidelines__pdf-item--disabled .p-guidelines__pdf-item-badge {
  padding: 0.2rem 0;
  border: none;
}

.p-hero {
  position: relative;
  min-height: calc(100vh - 5rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  padding: 5rem 0 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-hero {
    padding: 3.75rem 0 6.25rem;
    min-height: 90vh;
  }
}

.p-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.p-hero__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="0.65" /><feFuncG type="linear" slope="0.65" /><feFuncB type="linear" slope="0.65" /></feComponentTransfer><feColorMatrix type="matrix" color-interpolation-filters="sRGB" values="0.9213 0.07150000000000001 0.007199999999999998 0 0 0.021299999999999986 0.9804999999999999 0.007199999999999998 0 0 0.021299999999999986 0.07150000000000001 0.9072 0 0 0 0 0 1 0" /></filter></svg>#filter');
  -webkit-filter: brightness(0.65) saturate(0.9);
          filter: brightness(0.65) saturate(0.9);
}

.p-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(14, 40, 88, .55) 0%, rgba(14, 40, 88, .25) 50%, rgba(14, 40, 88, .45) 100%);
}

.p-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  width: 100%;
  margin-inline: auto;
  padding-inline: 2rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-hero__inner {
    padding-inline: 1.25rem;
    padding-bottom: 5rem;
  }
}

.p-hero__eyebrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.875rem;
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: 1.125rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .85);
  margin-bottom: 2rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-hero__eyebrow {
    font-size: 0.6875rem;
  }
}

.p-hero__eyebrow::before {
  content: "";
  width: 2.5rem;
  height: 1px;
  background: rgba(255, 255, 255, .6);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-hero__title {
  font-family: "Noto Serif JP", "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 4rem;
  line-height: 1.35;
  letter-spacing: 0.04em;
  margin-bottom: 1.75rem;
  text-shadow: 0 2px 30px rgba(0, 0, 0, .2);
}
@media screen and (max-width: 767px) {
  .p-hero__title {
    font-size: 1.875rem;
  }
}

.p-hero__title-accent {
  display: inline-block;
  color: #fff;
}

.p-hero__sub {
  max-width: 42rem;
  font-size: 0.9375rem;
  line-height: 1.95;
  color: #fff;
  margin-bottom: 3.5rem;
  font-weight: 400;
}

.p-hero__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-hero__actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}

.p-hero__actions .c-btn {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-hero__actions .c-btn {
    max-width: 20rem;
    width: 100%;
  }
}

.p-hero__scroll {
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: 0.6875rem;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, .7);
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-hero__scroll {
    bottom: 1.25rem;
    gap: 0.5rem;
  }
}

.p-hero__credit {
  position: absolute;
  bottom: 1rem;
  right: 1.5rem;
  z-index: 1;
  font-size: 0.6875rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, .78);
  text-align: right;
  letter-spacing: 0.02em;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-hero__credit {
    bottom: 0.75rem;
    right: 1rem;
    font-size: 0.625rem;
    line-height: 1.6;
  }
}

.p-hero__scroll::after {
  content: "";
  width: 1px;
  height: 3.125rem;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, .7)), to(transparent));
  background: linear-gradient(to bottom, rgba(255, 255, 255, .7), transparent);
  -webkit-animation: heroScrollLine 2.2s ease-in-out infinite;
          animation: heroScrollLine 2.2s ease-in-out infinite;
}
@media screen and (max-width: 767px) {
  .p-hero__scroll::after {
    height: 2rem;
  }
}

@-webkit-keyframes heroScrollLine {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  50% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  51% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
  100% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
}

@keyframes heroScrollLine {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  50% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  51% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
  100% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
}
.p-insta {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .p-insta {
    margin-top: 2rem;
  }
}

.p-insta__inner {
  position: relative;
  background: #F2EDE3;
  border-radius: 0;
  padding: 1.75rem 2.5rem 2rem;
}
@media screen and (max-width: 767px) {
  .p-insta__inner {
    padding: 1.25rem 1rem 1.5rem;
  }
}

.p-insta__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-insta__head {
    margin-bottom: 1rem;
  }
}

.p-insta__brand {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  color: #14377A;
  text-decoration: none;
}

.p-insta__icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 2px;
  color: #fff;
  background: linear-gradient(45deg, #f9ce34 0%, #ee2a7b 45%, #6228d7 100%);
}
@media screen and (max-width: 767px) {
  .p-insta__icon {
    width: 2.125rem;
    height: 2.125rem;
  }
}

.p-insta__brand-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: 1.3;
}

.p-insta__account {
  font-family: "Noto Serif JP", "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 0.9375rem;
  color: #1A1B1F;
  letter-spacing: 0.02em;
}

.p-insta__brand-sub {
  font-family: "Noto Serif JP", "Cormorant Garamond", serif;
  font-size: 0.75rem;
  color: #8B8C92;
}

.p-insta__follow {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.5rem 1.125rem;
  border-radius: 2px;
  background: #14377A;
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
}
.p-insta__follow:hover {
  background: #0E2858;
}
@media screen and (max-width: 767px) {
  .p-insta__follow {
    padding: 0.4375rem 0.875rem;
    font-size: 0.75rem;
  }
}

.p-insta__slider {
  overflow: hidden;
}

.p-insta__card {
  width: 27.5rem;
  max-width: 86%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-insta__card {
    width: 18.75rem;
    max-width: 88%;
  }
}

.p-insta__card-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 0;
  overflow: hidden;
  text-decoration: none;
  -webkit-box-shadow: 0 0.125rem 0.875rem rgba(20, 55, 122, .06);
          box-shadow: 0 0.125rem 0.875rem rgba(20, 55, 122, .06);
  -webkit-transition: -webkit-box-shadow 0.25s ease, -webkit-transform 0.25s ease;
  transition: -webkit-box-shadow 0.25s ease, -webkit-transform 0.25s ease;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  transition: box-shadow 0.25s ease, transform 0.25s ease, -webkit-box-shadow 0.25s ease, -webkit-transform 0.25s ease;
}
.p-insta__card-link:hover {
  -webkit-box-shadow: 0 0.5rem 1.375rem rgba(20, 55, 122, .12);
          box-shadow: 0 0.5rem 1.375rem rgba(20, 55, 122, .12);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
@media screen and (max-width: 767px) {
  .p-insta__card-link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-insta__media {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 45%;
  aspect-ratio: 1/1;
  background: #F2EDE3;
}
.p-insta__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-insta__media {
    width: 100%;
    aspect-ratio: 4/3;
  }
}

.p-insta__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 1rem 1.125rem;
}
@media screen and (max-width: 767px) {
  .p-insta__body {
    padding: 0.875rem 1rem 1rem;
  }
}

.p-insta__meta {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.375rem;
  font-family: "Noto Serif JP", "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 0.8125rem;
  color: #1A1B1F;
  margin-bottom: 0.5rem;
}

.p-insta__meta-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: #14377A;
}

.p-insta__text {
  font-size: 0.84375rem;
  line-height: 1.75;
  color: #5C5D63;
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
.p-insta__text b {
  font-family: "Noto Serif JP", "Cormorant Garamond", serif;
  color: #1A1B1F;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-insta__text {
    font-size: 0.8125rem;
    -webkit-line-clamp: 3;
  }
}

.p-insta__date {
  margin-top: auto;
  padding-top: 0.75rem;
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: #8B8C92;
}

.p-insta__arrow {
  position: absolute;
  top: calc(50% + 1.125rem);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1px solid #D9D2C5;
  background: #faf7f1;
  color: #14377A;
  cursor: pointer;
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: 1.125rem;
  line-height: 1;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.p-insta__arrow:hover {
  background: #14377A;
  color: #fff;
  border-color: #14377A;
}
.p-insta__arrow.swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
}
.p-insta__arrow--prev {
  left: -0.625rem;
}
.p-insta__arrow--next {
  right: -0.625rem;
}
@media screen and (max-width: 767px) {
  .p-insta__arrow {
    width: 2.25rem;
    height: 2.25rem;
  }
  .p-insta__arrow--prev {
    left: -0.375rem;
  }
  .p-insta__arrow--next {
    right: -0.375rem;
  }
}

.p-news {
  margin: 4rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-news {
    margin-top: 2.5rem;
  }
}

.p-news__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.75rem;
  max-width: 47.5rem;
  margin-inline: auto;
  padding: 1.25rem 2.25rem;
  border: 1px solid #D9D2C5;
  border-radius: 2px;
  background: #fff;
  color: inherit;
}
@media screen and (max-width: 767px) {
  .p-news__inner {
    gap: 1rem;
    padding: 1rem 1.25rem;
  }
}

.p-news__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}

.p-news__label {
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  color: #14377A;
  padding-top: 0.125rem;
  white-space: nowrap;
}

.p-news__date {
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #5C5D63;
  padding-top: 0.125rem;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-news__date {
    padding-top: 0;
  }
}

.p-news__title {
  font-family: "Noto Serif JP", "Cormorant Garamond", serif;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.5;
  color: #5c5d63;
  margin: 0;
}

.p-news__text {
  font-size: 0.8125rem;
  line-height: 1.75;
  color: #5C5D63;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-news__text {
    font-size: 0.75rem;
  }
}

.p-news__text a {
  color: #14377A;
  text-decoration: underline;
  text-underline-offset: 2px;
  -webkit-transition: opacity 0.25s;
  transition: opacity 0.25s;
}

.p-news__text a:hover {
  opacity: 0.7;
}

.p-procedure {
  background: #FAF7F1;
  padding: 2.5rem 0 8.75rem;
}
@media screen and (max-width: 767px) {
  .p-procedure {
    padding: 1.5rem 0 5rem;
  }
}

.p-procedure__section {
  margin-bottom: 6rem;
  scroll-margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .p-procedure__section {
    margin-bottom: 4rem;
  }
}

.p-procedure__section:last-child {
  margin-bottom: 0;
}

.p-procedure--locked {
  padding-bottom: 11.25rem;
}
@media screen and (max-width: 767px) {
  .p-procedure--locked {
    padding-bottom: 7.5rem;
  }
}

.p-procedure__lock {
  max-width: 45rem;
  margin: 2.5rem auto 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-procedure__lock {
    margin-top: 1.5rem;
  }
}

.p-procedure__lock-text {
  font-size: 0.9375rem;
  line-height: 1.95;
  color: #1A1B1F;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-procedure__lock-text {
    font-size: 0.875rem;
    margin-bottom: 1.75rem;
  }
}

.p-procedure__lock-form .post-password-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}

.p-procedure__lock-form .post-password-form > p:first-of-type {
  display: none;
}

.p-procedure__lock-form .post-password-form p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  margin: 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-procedure__lock-form .post-password-form label {
  font-size: 0.9375rem;
  color: #1A1B1F;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.p-procedure__lock-form .post-password-form input[type=password] {
  border: 1px solid #D9D2C5;
  background: #fff;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  font-family: inherit;
  min-width: 17.5rem;
  border-radius: 0;
  -webkit-transition: border-color 0.2s;
  transition: border-color 0.2s;
}
@media screen and (max-width: 600px) {
  .p-procedure__lock-form .post-password-form input[type=password] {
    min-width: 13.75rem;
  }
}

.p-procedure__lock-form .post-password-form input[type=password]:focus {
  outline: none;
  border-color: #14377A;
}

.p-procedure__lock-form .post-password-form input[type=submit] {
  background: #1A1B1F;
  color: #fff;
  border: none;
  padding: 0.75rem 2.25rem;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  cursor: pointer;
  border-radius: 0;
  -webkit-transition: background 0.25s;
  transition: background 0.25s;
}

.p-procedure__lock-form .post-password-form input[type=submit]:hover {
  background: #0E2858;
}

.p-procedure__docs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-procedure__docs {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
@media screen and (max-width: 600px) {
  .p-procedure__docs {
    grid-template-columns: 1fr;
  }
}

.p-procedure__doc {
  background: #fff;
  border: 1px solid #D9D2C5;
  padding: 2rem 1.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-procedure__doc {
    padding: 1.5rem 1.25rem;
    gap: 0.75rem;
  }
}

.p-procedure__doc-title {
  font-family: "Noto Serif JP", "Cormorant Garamond", serif;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.p-procedure__doc-desc {
  font-size: 0.8125rem;
  color: #5C5D63;
  line-height: 1.85;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: left;
}

.p-procedure__doc .p-flow__step-link {
  -ms-flex-item-align: center;
      align-self: center;
}

.p-safety {
  background: #F2EDE3;
  padding: 2.5rem 0 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-safety {
    padding: 1.25rem 0 5rem;
  }
}
@media screen and (max-width: 600px) {
  .p-safety {
    padding: 1rem 0 4rem;
  }
}

.p-safety__head {
  text-align: center;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-safety__head {
    margin-bottom: 1.125rem;
  }
}
@media screen and (max-width: 600px) {
  .p-safety__head {
    margin-bottom: 0.875rem;
  }
}

.p-safety__head .c-section-heading {
  font-family: "Noto Serif JP", "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 2.25rem;
  line-height: 1.4;
  letter-spacing: 0.04em;
  margin-bottom: 1.125rem;
}
@media screen and (max-width: 767px) {
  .p-safety__head .c-section-heading {
    font-size: 1.5rem;
  }
}

.p-safety__sub {
  font-family: "Noto Serif JP", "Cormorant Garamond", serif;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  color: #5C5D63;
  margin-top: 0;
}
@media screen and (max-width: 600px) {
  .p-safety__sub {
    font-size: 0.8125rem;
    letter-spacing: 0.05em;
  }
}

.p-safety__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3.5rem;
  max-width: 50rem;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-safety__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
  }
}
@media screen and (max-width: 600px) {
  .p-safety__grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 2rem;
  }
}

.p-safety__card {
  background: #FFFFFF;
  border: 1px solid #D9D2C5;
  padding: 1.75rem 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-safety__card {
    padding: 1.5rem 1rem;
    gap: 0.75rem;
  }
}
@media screen and (max-width: 600px) {
  .p-safety__card {
    padding: 1.25rem 1rem;
    gap: 0.75rem;
  }
}

.p-safety__icon {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background: #E8EDF5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #14377A;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-safety__icon {
    width: 4rem;
    height: 4rem;
  }
}
@media screen and (max-width: 600px) {
  .p-safety__icon {
    width: 3.75rem;
    height: 3.75rem;
  }
}

.p-safety__icon svg,
.p-safety__icon img {
  max-width: 2.5rem;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-safety__icon img[src$=".png"] {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="1" /><feFuncG type="linear" slope="1" /><feFuncB type="linear" slope="1" /></feComponentTransfer><feColorMatrix type="matrix" color-interpolation-filters="sRGB" values="1 0 0 0 0 0 1.01 0 0 0 0 0 1 0 0 0 0 0 1 0" /><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="table" tableValues="0.18 0.8200000000000001" /><feFuncG type="table" tableValues="0.18 0.8200000000000001" /><feFuncB type="table" tableValues="0.18 0.8200000000000001" /></feComponentTransfer><feColorMatrix type="matrix" color-interpolation-filters="sRGB" values="0.42335000000000006 0.73055 0.17955 0 0 0.33154999999999996 0.7017000000000001 0.1596 0 0 0.2584 0.5073 0.17445000000000005 0 0 0 0 0 1 0" /><feColorMatrix type="matrix" color-interpolation-filters="sRGB" values="13.592 -11.44 -1.152 0 0 -3.408 5.7299999999999995 -1.152 0 0 -3.408 -11.44 15.848 0 0 0 0 0 1 0" /><feColorMatrix type="hueRotate" color-interpolation-filters="sRGB" values="212" /><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="0.95" /><feFuncG type="linear" slope="0.95" /><feFuncB type="linear" slope="0.95" /></feComponentTransfer><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="1.02" intercept="-0.010000000000000009" /><feFuncG type="linear" slope="1.02" intercept="-0.010000000000000009" /><feFuncB type="linear" slope="1.02" intercept="-0.010000000000000009" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: brightness(0) saturate(100%) invert(18%) sepia(95%) saturate(1700%) hue-rotate(212deg) brightness(95%) contrast(102%);
          filter: brightness(0) saturate(100%) invert(18%) sepia(95%) saturate(1700%) hue-rotate(212deg) brightness(95%) contrast(102%);
}

.p-safety__card-title {
  font-family: "Noto Serif JP", "Cormorant Garamond", serif;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.5;
  text-align: left;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}
@media screen and (max-width: 767px) {
  .p-safety__card-title {
    font-size: 0.875rem;
  }
}

.p-safety__card-desc {
  font-size: 0.8125rem;
  color: #5C5D63;
  line-height: 1.85;
  text-align: left;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}
@media screen and (max-width: 600px) {
  .p-safety__card-desc {
    font-size: 0.75rem;
    line-height: 1.75;
  }
}

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

.p-safety__cta-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  padding: 1rem 2.5rem;
  background: #14377A;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: background 0.25s;
  transition: background 0.25s;
}
@media screen and (max-width: 600px) {
  .p-safety__cta-btn {
    width: 100%;
    max-width: 20rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0.875rem 1.5rem;
    font-size: 0.8125rem;
  }
}

.p-safety__cta-btn:hover {
  background: #0E2858;
}

.p-safety__modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.25s ease, visibility 0.25s ease;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.p-safety__modal.is-open {
  opacity: 1;
  visibility: visible;
}

.p-safety__modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14, 40, 88, .72);
  cursor: pointer;
}

.p-safety__modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: min(60rem, 100vw - 2.5rem);
  max-height: calc(100vh - 5rem);
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 600px) {
  .p-safety__modal-content {
    width: calc(100vw - 1.5rem);
    max-height: calc(100vh - 2.5rem);
  }
}

.p-safety__modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  background: rgba(0, 0, 0, .55);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 5;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}

.p-safety__modal-close:hover {
  background: rgba(0, 0, 0, .78);
}

.p-safety__modal-swiper {
  width: 100%;
  aspect-ratio: 3/2;
  background: #F2EDE3;
}
@media screen and (max-width: 600px) {
  .p-safety__modal-swiper {
    aspect-ratio: 4/3;
  }
}

.p-safety__modal-swiper .swiper-wrapper,
.p-safety__modal-swiper .swiper-slide {
  width: 100%;
  height: 100%;
}

.p-safety__modal-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.p-safety__modal-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1px solid #D9D2C5;
  background: #fff;
  color: #14377A;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: 1.125rem;
  z-index: 3;
  -webkit-transition: background 0.25s, color 0.25s, border-color 0.25s;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
@media screen and (max-width: 600px) {
  .p-safety__modal-arrow {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1rem;
  }
}

.p-safety__modal-arrow:hover {
  background: #14377A;
  color: #fff;
  border-color: #14377A;
}

.p-safety__modal-arrow--prev {
  left: 1rem;
}

.p-safety__modal-arrow--next {
  right: 1rem;
}

.p-safety__modal-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.25rem;
}

.p-safety__modal-pagination .swiper-pagination-bullet {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #D9D2C5;
  opacity: 1;
  margin: 0;
  cursor: pointer;
  -webkit-transition: background 0.2s, -webkit-transform 0.2s;
  transition: background 0.2s, -webkit-transform 0.2s;
  transition: background 0.2s, transform 0.2s;
  transition: background 0.2s, transform 0.2s, -webkit-transform 0.2s;
}

.p-safety__modal-pagination .swiper-pagination-bullet-active {
  background: #14377A;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

body.is-modal-open {
  overflow: hidden;
  -ms-touch-action: none;
      touch-action: none;
}

.p-safety__note {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: #14377A;
  line-height: 1.7;
}

.p-test {
  color: red;
  font-size: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-test {
    font-size: 1.5625rem;
  }
}

@media screen and (max-width: 767px) {
  .u-desktop {
    display: none;
  }
}

.u-fade-in {
  opacity: 0;
  -webkit-transform: translateY(1.5rem);
          transform: translateY(1.5rem);
  -webkit-transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, transform 1s ease;
  transition: opacity 1s ease, transform 1s ease, -webkit-transform 1s ease;
}

.u-fade-in.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.u-fade-in--delay1 {
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}

.u-fade-in--delay2 {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.u-fade-in--delay3 {
  -webkit-transition-delay: 0.45s;
          transition-delay: 0.45s;
}

.u-fade-in--delay4 {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.u-fade-in--delay5 {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}

.u-mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-mobile {
    display: block;
  }
}

.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
/*# sourceMappingURL=styles.css.map */


.l-header__lang,
.l-drawer__lang {display: none;}