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

/* Remove default padding */
ul,
ol {
  padding: 0;
}

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

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

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

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

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

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

/* Blur images when they have no alt attribute */
img:not([alt]) {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

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

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

/* リキッドレイアウト対応 */
html {
  font-size: 16px;
}

/* pcの電話番号発信対応 */

a {
  -webkit-text-decoration: none;
  -webkit-text-decoration: none;
  color: inherit;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
a:focus-visible {
  opacity: 0.5;
}

html {
  scroll-padding-top: 5.375rem;
}

body {
  color: #333333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.5;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-top: 86px;
  padding-top: 5.375rem;
}

.l-drawer {
  bottom: 0;
  left: 0;
  overflow: auto;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  z-index: 10;
}

.l-drawer[aria-hidden=false] {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.l-header {
  height: 86px;
  height: 5.375rem;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 20;
}

.l-inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 540px;
  max-width: 33.75rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
  width: 100%;
}

/************************************************************************
* modifier
************************************************************************/

/************************************************************************
* c-btn
************************************************************************/
.c-btn {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #333333;
  border: 1px solid #333333;
  border-radius: 0.3125rem;
  color: #ffffff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 600;
  gap: 16px;
  gap: 1rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 15px 32px;
  padding: 0.9375rem 2rem;
  text-align: center;
  -webkit-transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  width: 100%;
}
.c-btn:focus-visible {
  opacity: 1;
}
.c-btn::after {
  aspect-ratio: 1;
  background-image: url("../images/common/icon_button_arrow_white.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  width: 20px;
  width: 1.25rem;
}
.c-btn:focus-visible {
  background-color: #ffffff;
  color: #333333;
}
.c-btn:focus-visible::after {
  background-image: url("../images/common/icon_button_arrow_black.svg");
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}

/************************************************************************
* modifier
************************************************************************/
.c-btn--left {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.c-btn--left::after {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.c-btn--left:focus-visible::after {
  -webkit-transform: scaleX(-1) translateX(4px);
          transform: scaleX(-1) translateX(4px);
}

.c-btn--white {
  background-color: #ffffff;
  color: #333333;
}
.c-btn--white::after {
  background-image: url("../images/common/icon_button_arrow_black.svg");
}
.c-btn--white:focus-visible {
  background-color: #333333;
  color: #ffffff;
}
.c-btn--white:focus-visible::after {
  background-image: url("../images/common/icon_button_arrow.svg");
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}

.c-btn--external::after {
  -webkit-mask-image: url("../images/common/icon_outerlink.svg");
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  background-color: currentColor;
  background-image: none;
  mask-image: url("../images/common/icon_outerlink.svg");
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.c-btn--external:focus-visible::after {
  background-image: none;
  -webkit-transform: none;
          transform: none;
}

/************************************************************************
* c-card
************************************************************************/
.c-card__link {
  display: block;
}

.c-card__thumb {
  aspect-ratio: 3/2;
  border-radius: 0.625rem;
  overflow: hidden;
  width: 100%;
}

.c-card__thumb img {
  -o-object-fit: cover;
  height: 100%;
     object-fit: cover;
}

.c-card__thumb--dummy {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #e9e9e9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-card__thumb--dummy img {
  -o-object-fit: contain;
  height: auto;
     object-fit: contain;
  width: 40%;
}

.c-card__body {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.c-card__meta {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 13px;
  gap: 0.8125rem;
}

.c-card__date {
  color: #999999;
  font-family: "Alata", sans-serif;
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  line-height: 1;
}

.c-card__tag {
  background-color: #f5f5f5;
  border-radius: 0.3125rem;
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  line-height: 1;
  padding: 4px 8px;
  padding: 0.25rem 0.5rem;
}

.c-card__title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 16px;
  margin-top: 1rem;
}

.c-card__excerpt {
  color: #999999;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  margin-top: 16px;
  margin-top: 1rem;
}

/************************************************************************
* modifier
************************************************************************/

.c-card--wide .c-card__title,
.c-card--wide .c-card__excerpt {
  -webkit-box-orient: vertical;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  overflow: hidden;
}

.c-card--box {
  background-color: #f5f5f5;
  border-radius: 1.25rem;
  overflow: hidden;
}

.c-card--box .c-card__thumb {
  border-radius: 0;
}

.c-card--box .c-card__body {
  margin-top: 0;
  padding: 24px;
  padding: 1.5rem;
}

.c-card--box .c-card__tag {
  background-color: #333333;
  color: #f5f5f5;
}

/************************************************************************
* c-event-card
************************************************************************/

.c-event-card__link {
  display: block;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.c-event-card__link:focus-visible .c-event-card__title {
  color: #999999;
}

.c-event-card__thumb {
  aspect-ratio: 373/249;
  border-radius: 0.625rem;
  overflow: hidden;
  width: 100%;
}

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

.c-event-card__thumb--dummy {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #f5f5f5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-event-card__thumb--dummy img {
  -o-object-fit: contain;
  aspect-ratio: 1;
     object-fit: contain;
  width: 120px;
  width: 7.5rem;
}

.c-event-card__body {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.c-event-card__meta {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  gap: 1rem;
}

.c-event-card__date {
  color: #999999;
  font-family: "Alata", sans-serif;
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  line-height: 1;
}

.c-event-card__tag {
  background-color: #f5f5f5;
  border-radius: 0.3125rem;
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  line-height: 1;
  padding: 4px 8px;
  padding: 0.25rem 0.5rem;
}

.c-event-card__texts {
  margin-top: 16px;
  margin-top: 1rem;
}

.c-event-card__title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.c-event-card__excerpt {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  margin-top: 8px;
  margin-top: 0.5rem;
}

/************************************************************************
* c-filter-tab
************************************************************************/
.c-filter-tab__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
  gap: 1rem;
}

.c-filter-tab__link {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #f5f5f5;
  border-radius: 0.3125rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 4px 16px;
  padding: 0.25rem 1rem;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
.c-filter-tab__link:focus-visible {
  opacity: 1;
}
.c-filter-tab__link:focus-visible {
  background-color: #333333;
  color: #ffffff;
}

.c-filter-tab__link.is-current {
  background-color: #333333;
  color: #ffffff;
}

.c-menu-button {
  aspect-ratio: 1/1;
  background-color: transparent;
  height: auto;
  position: relative;
  width: 24px;
}

.c-menu-button span {
  background-color: #333333;
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 18px;
}

.c-menu-button span::before,
.c-menu-button span::after {
  background-color: #333333;
  border-radius: 100vw;
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 100%;
}

.c-menu-button span::before {
  -webkit-transform: translateY(-7px);
          transform: translateY(-7px);
}

.c-menu-button span::after {
  -webkit-transform: translateY(7px);
          transform: translateY(7px);
}

/************************************************************************
* expanded（ドロワー展開時：close icon に切替）
************************************************************************/
.c-menu-button[aria-expanded=true] {
  background-image: url("../images/common/icon_close.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px 24px;
}

.c-menu-button[aria-expanded=true] span {
  display: none;
}

/************************************************************************
* c-section-title
************************************************************************/
.c-section-title__en {
  font-family: "Alata", sans-serif;
  font-size: 64px;
  font-size: 4rem;
  line-height: 1;
}

.c-section-title__ja {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 700;
  gap: 8px;
  gap: 0.5rem;
  margin-top: 16px;
  margin-top: 1rem;
}
.c-section-title__ja::before {
  -webkit-mask-image: url("../images/common/icon_logo.svg");
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  aspect-ratio: 26/20;
  background-color: currentColor;
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  mask-image: url("../images/common/icon_logo.svg");
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  width: 26px;
  width: 1.625rem;
}

/************************************************************************
* modifier
************************************************************************/
.c-section-title--white {
  color: #ffffff;
}

.p-404 {
  padding-bottom: 80px;
  padding-bottom: 5rem;
  padding-top: 150px;
  padding-top: 9.375rem;
}

.p-404__inner {
  text-align: center;
}

.p-404__code {
  font-size: 100px;
  font-size: 6.25rem;
  letter-spacing: 0.05em;
  line-height: 1;
}

.p-404__title {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-404__text {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  letter-spacing: 0;
  line-height: 1.8;
  margin-top: 20px;
  margin-top: 1.25rem;
  text-align: left;
}

.p-404__back {
  margin-top: 90px;
  margin-top: 5.625rem;
}

.p-404__back-link {
  background-color: #ffffff;
  border: 1px solid #333333;
  color: #333333;
  display: inline-block;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  min-width: 220px;
  min-width: 13.75rem;
  padding: 8px 30px;
  padding: 0.5rem 1.875rem;
  text-align: center;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
.p-404__back-link:focus-visible {
  background-color: #333333;
  color: #ffffff;
  opacity: 1;
}

/************************************************************************
* p-archive
************************************************************************/
.p-archive {
  padding-bottom: 90px;
  padding-bottom: 5.625rem;
}

.p-archive__filter {
  padding-top: 24px;
  padding-top: 1.5rem;
}

.p-archive__items {
  grid-gap: 2.625rem;
  display: grid;
  gap: 42px;
  gap: 2.625rem;
  grid-template-columns: 1fr;
  margin-top: 64px;
  margin-top: 4rem;
}

.p-archive__pagination {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-archive__no-post {
  color: #999999;
  margin-top: 40px;
  margin-top: 2.5rem;
  text-align: center;
}

/************************************************************************
* p-breadcrumb
************************************************************************/
.p-breadcrumb {
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
}

.p-breadcrumb__wrapper {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  gap: 22px;
  gap: 1.375rem;
  line-height: 1;
  overflow: hidden;
  white-space: nowrap;
}

.p-breadcrumb__wrapper span[property=itemListElement] {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 22px;
  gap: 1.375rem;
}

.p-breadcrumb__wrapper span[property=itemListElement]:nth-child(n+2)::before {
  -webkit-mask-image: url("../images/common/icon-arrow-right.svg");
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  background-color: #333333;
  content: "";
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 8px;
  height: 0.5rem;
  mask-image: url("../images/common/icon-arrow-right.svg");
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  width: 4px;
  width: 0.25rem;
}

.p-breadcrumb__wrapper span[property=itemListElement]:last-of-type {
  color: #999999;
  min-width: 0;
  overflow: hidden;
}

.p-breadcrumb__wrapper span[property=itemListElement]:last-of-type span[property=name] {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
}

.p-breadcrumb__wrapper meta {
  display: none;
}

/************************************************************************
* p-contact
************************************************************************/
.p-contact {
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
}

.p-contact__inner {
  background-color: #333333;
  border-radius: 1.25rem;
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  max-width: 540px;
  max-width: 33.75rem;
  padding: 24px;
  padding: 1.5rem;
}

.p-contact__lead {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  margin-top: 24px;
  margin-top: 1.5rem;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.p-contact__cta-items {
  margin-top: 40px;
  margin-top: 2.5rem;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.p-contact__cta-item:nth-child(n+2) {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-contact__btn {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid transparent;
  border-radius: 0.3125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: max(20px, 10px);
  font-size: max(1.25rem, 10px);
  font-weight: 600;
  gap: 16px;
  gap: 1rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 18px 32px;
  padding: 1.125rem 2rem;
  -webkit-transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  width: 100%;
}
.p-contact__btn::after {
  -webkit-mask-image: url("../images/common/icon_outerlink.svg");
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  aspect-ratio: 1;
  background-color: currentColor;
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  mask-image: url("../images/common/icon_outerlink.svg");
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  width: 20px;
  width: 1.25rem;
}

/************************************************************************
* modifier
************************************************************************/
.p-contact__btn--primary {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #333333;
}
.p-contact__btn--primary:focus-visible {
  background-color: transparent;
  color: #ffffff;
  opacity: 1;
}

.p-contact__btn--ghost {
  background-color: transparent;
  border-color: #ffffff;
  color: #ffffff;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-contact__btn--ghost::after {
  content: none;
}
.p-contact__btn--ghost:focus-visible {
  background-color: #ffffff;
  color: #333333;
  opacity: 1;
}

/************************************************************************
* p-content
************************************************************************/
.p-content {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  letter-spacing: 0.02em;
  line-height: 1.8;
}
.p-content h2,
.p-content h3,
.p-content h4 {
  line-height: 1.5;
  margin-left: 0;
  margin-right: 0;
}
.p-content ul,
.p-content ol {
  list-style: none;
  padding-left: 0;
}
.p-content h2:nth-of-type(1) {
  margin-top: 92px;
  margin-top: 5.75rem;
}
.p-content h2:nth-of-type(n + 2) {
  margin-top: 64px;
  margin-top: 4rem;
}
.p-content p:nth-child(n+2) {
  margin-top: 24px;
  margin-top: 1.5rem;
}
.p-content h3:nth-child(n+2) {
  margin-top: 40px;
  margin-top: 2.5rem;
}
.p-content h4:nth-child(n+2) {
  margin-top: 32px;
  margin-top: 2rem;
}
.p-content ul:nth-child(n+2),
.p-content ol:nth-child(n+2) {
  margin-top: 40px;
  margin-top: 2.5rem;
}
.p-content figure:nth-child(n+2) {
  margin-top: 40px;
  margin-top: 2.5rem;
}
.p-content h2 {
  border-bottom: 2px solid #333333;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
}
.p-content h3 {
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  font-weight: 700;
  padding-left: 24px;
  padding-left: 1.5rem;
  position: relative;
}
.p-content h3::before {
  background-color: #333333;
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  top: 0;
  width: 5px;
  width: 0.3125rem;
}
.p-content h4 {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 700;
}
.p-content ul > li {
  padding-left: 14px;
  padding-left: 0.875rem;
  position: relative;
}
.p-content ul > li::before {
  background-color: #333333;
  border-radius: 50%;
  content: "";
  height: 6px;
  height: 0.375rem;
  left: 0;
  position: absolute;
  top: 0.65em;
  width: 6px;
  width: 0.375rem;
}
.p-content ol {
  counter-reset: number 0;
}
.p-content ol > li {
  counter-increment: number 1;
  padding-left: 24px;
  padding-left: 1.5rem;
  position: relative;
}
.p-content ol > li::before {
  content: counter(number) ".";
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  font-weight: 700;
  left: 0;
  line-height: 1.6;
  position: absolute;
  top: 0;
}
.p-content ol ol {
  counter-reset: number 0;
}
.p-content ol ol > li {
  counter-increment: number 1;
}
.p-content ol ol > li::before {
  content: counter(number, lower-alpha) ".";
}
.p-content ol ol ol {
  counter-reset: number 0;
}
.p-content ol ol ol > li {
  counter-increment: number 1;
}
.p-content ol ol ol > li::before {
  content: counter(number, lower-roman) ".";
}
.p-content ul ol > li::before {
  content: "(" counter(number) ") ";
}
.p-content img {
  width: auto;
}
.p-content .wp-block-image:has(+ h2) {
  border-radius: 0.625rem;
  overflow: hidden;
}
.p-content figure.aligncenter,
.p-content img.aligncenter {
  margin-left: auto;
  margin-right: auto;
}
.p-content figure.alignright,
.p-content img.alignright {
  float: none;
  margin-left: auto;
}
.p-content a {
  word-wrap: break-word;
  word-wrap: break-word;
  -webkit-text-decoration: underline;
  -webkit-text-decoration: underline;
  color: #142fc6;
  text-decoration: underline;
}
.p-content a[target=_blank]::after {
  -webkit-mask-image: url("../images/common/icon_outerlink.svg");
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  background-color: currentColor;
  content: "";
  display: inline-block;
  height: 1em;
  margin-left: 4px;
  margin-left: 0.25rem;
  mask-image: url("../images/common/icon_outerlink.svg");
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  vertical-align: -0.125em;
  width: 1em;
}
.p-content blockquote,
.p-content .wp-block-quote {
  background-color: #f5f5f5;
  border-radius: 0.625rem;
  margin-top: 40px;
  margin-top: 2.5rem;
  padding: 24px;
  padding: 1.5rem;
}
.p-content blockquote cite,
.p-content .wp-block-quote cite {
  display: block;
  margin-top: 32px;
  margin-top: 2rem;
}
.p-content blockquote cite::before,
.p-content .wp-block-quote cite::before {
  content: "ー";
  margin-right: 4px;
  margin-right: 0.25rem;
}
.p-content cite {
  font-style: normal;
}
.p-content th {
  border: none;
  padding: 8px 16px;
  padding: 0.5rem 1rem;
  text-align: left;
}
.p-content td {
  border: none;
  padding: 8px 16px;
  padding: 0.5rem 1rem;
}
.p-content tr:nth-child(odd) th,
.p-content tr:nth-child(odd) td {
  background-color: #f5f5f5;
}
.p-content tr:nth-child(even) th,
.p-content tr:nth-child(even) td {
  background-color: #e9e9e9;
}
.p-content .wp-block-table thead {
  border-bottom: none;
}
.p-content .wp-block-group:nth-child(n+2) {
  margin-top: 40px;
  margin-top: 2.5rem;
}
.p-content .wp-block-group__inner-container > figure:nth-child(n+2),
.p-content .wp-block-group__inner-container > .wp-block-columns:nth-child(n+2) {
  margin-top: 16px;
  margin-top: 1rem;
}
.p-content .wp-block-group__inner-container > .wp-block-columns {
  margin-bottom: 0;
}
.p-content .wp-block-buttons {
  margin-top: 40px;
  margin-top: 2.5rem;
}
.p-content .wp-block-button {
  text-align: center;
  width: 100%;
}
.p-content .wp-block-button__link {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #333333;
  border: 1px solid #333333;
  border-radius: 0.3125rem;
  color: #ffffff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 600;
  gap: 16px;
  gap: 1rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 15px 32px;
  padding: 0.9375rem 2rem;
  text-align: center;
  -webkit-transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  width: 100%;
}
.p-content .wp-block-button__link:focus-visible {
  opacity: 1;
}
.p-content .wp-block-button__link::after {
  aspect-ratio: 1;
  background-image: url("../images/common/icon_button_arrow_white.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  width: 20px;
  width: 1.25rem;
}
.p-content .wp-block-button__link:focus-visible {
  background-color: #ffffff;
  color: #333333;
}
.p-content .wp-block-button__link:focus-visible::after {
  background-image: url("../images/common/icon_button_arrow_black.svg");
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}
.p-content .wp-block-button__link {
  text-decoration: none;
}
.p-content .wp-block-button__link::after {
  background-image: url("../images/common/icon_button_arrow.svg");
}
.p-content .wp-block-button[class~="--left"] .wp-block-button__link {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.p-content .wp-block-button[class~="--left"] .wp-block-button__link::after {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.p-content .wp-block-button[class~="--left"] .wp-block-button__link:focus-visible::after {
  -webkit-transform: scaleX(-1) translateX(4px);
          transform: scaleX(-1) translateX(4px);
}
.p-content .wp-block-button[class~="--white"] .wp-block-button__link {
  background-color: #ffffff;
  color: #333333;
}
.p-content .wp-block-button[class~="--white"] .wp-block-button__link::after {
  background-image: url("../images/common/icon_button_arrow_black.svg");
}
.p-content .wp-block-button[class~="--white"] .wp-block-button__link:focus-visible {
  background-color: #333333;
  color: #ffffff;
}
.p-content .wp-block-button[class~="--white"] .wp-block-button__link:focus-visible::after {
  background-image: url("../images/common/icon_button_arrow.svg");
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}
.p-content .wp-block-columns {
  gap: 16px;
  gap: 1rem;
  margin-top: 40px;
  margin-top: 2.5rem;
}
.p-content .wp-element-caption,
.p-content figcaption {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 500;
  margin-top: 15px;
  margin-top: 0.9375rem;
  text-align: left;
}

/************************************************************************
* p-drawer
************************************************************************/
.p-drawer {
  background-color: #f5f5f5;
  padding: 114px 40px 40px;
  padding: 7.125rem 2.5rem 2.5rem;
}

.p-drawer__nav-item a {
  display: block;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 600;
  line-height: 1;
  padding: 16px 0;
  padding: 1rem 0;
}

.p-drawer__cta-items {
  margin-top: 14px;
  margin-top: 0.875rem;
}

.p-drawer__cta-item:nth-child(n+2) {
  margin-top: 16px;
  margin-top: 1rem;
}

/************************************************************************
* p-events
* The Events Calendar (TEC) プラグインのフロント表示上書き
************************************************************************/
.tribe-events-sub-nav {
  -moz-column-gap: 0.9375rem;
       -webkit-column-gap: 0.9375rem;
          column-gap: 0.9375rem;
}

.tribe-common .tribe-events-calendar-month__header-column {
  border-bottom: 1px solid #d9d9d9;
  width: 100%;
}

.tribe-common .tribe-events-c-subscribe-dropdown .tribe-common-c-btn-border {
  border-color: #333333;
}

.tribe-common .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button.tribe-events-c-subscribe-dropdown__button {
  color: #333333;
}
.tribe-common .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button.tribe-events-c-subscribe-dropdown__button:hover, .tribe-common .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button.tribe-events-c-subscribe-dropdown__button:focus, .tribe-common .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button.tribe-events-c-subscribe-dropdown__button:focus-within, .tribe-common .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button.tribe-events-c-subscribe-dropdown__button:focus-visible, .tribe-common .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button.tribe-events-c-subscribe-dropdown__button:active, .tribe-common .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button.tribe-events-c-subscribe-dropdown__button.tribe-events-c-subscribe-dropdown__button--active {
  background-color: #f5f5f5;
  color: #333333;
}

/************************************************************************
* p-footer
************************************************************************/
.p-footer {
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
  padding-top: 90px;
  padding-top: 5.625rem;
}

.p-footer__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 540px;
  max-width: 33.75rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
}

.p-footer__logo {
  width: 160px;
  width: 10rem;
}

.p-footer__logo a {
  aspect-ratio: 160/45;
  display: block;
  width: 100%;
}

.p-footer__logo img {
  -o-object-fit: contain;
     object-fit: contain;
}

.p-footer__name {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 600;
  margin-top: 12px;
  margin-top: 0.75rem;
}

.p-footer__address {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-style: normal;
  margin-top: 36px;
  margin-top: 2.25rem;
}

.p-footer__tel {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.p-footer__nav {
  margin-top: 52px;
  margin-top: 3.25rem;
}

.p-footer__nav-item a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 600;
  gap: 16px;
  gap: 1rem;
  padding-bottom: 8px;
  padding-bottom: 0.5rem;
  padding-top: 8px;
  padding-top: 0.5rem;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.p-footer__nav-link--external::after {
  -webkit-mask-image: url("../images/common/icon_outerlink.svg");
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  aspect-ratio: 1/1;
  background-color: #333333;
  content: "";
  mask-image: url("../images/common/icon_outerlink.svg");
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  width: 16px;
  width: 1rem;
}

.p-footer__bottom {
  border-top: 1px solid #333333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 22px;
  gap: 1.375rem;
  margin-top: 27px;
  margin-top: 1.6875rem;
  padding-top: 40px;
  padding-top: 2.5rem;
}

.p-footer__copyright {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.p-footer__copyright small {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
}

.p-footer__sns-items {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 18px;
  gap: 1.125rem;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.p-footer__sns-link {
  aspect-ratio: 1/1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  width: 24px;
  width: 1.5rem;
}

.p-footer__sns-link--instagram {
  background-image: url("../images/common/icon_instagram.svg");
}

.p-footer__sns-link--facebook {
  background-image: url("../images/common/icon_facebook.svg");
}

.p-footer__sns-link--x {
  background-image: url("../images/common/icon_x.svg");
  width: 20px;
  width: 1.25rem;
}

/************************************************************************
* p-header
************************************************************************/
.p-header {
  background-color: #ffffff;
}

body:has(.l-drawer[aria-hidden=false]) .p-header {
  background-color: transparent;
}

.p-header__inner {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  padding: 0 20px;
  padding: 0 1.25rem;
}

.p-header__logo {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 165px;
  width: 10.3125rem;
}

.p-header__logo-link {
  aspect-ratio: 143/40;
  display: block;
  width: 100%;
}

.p-header__logo-link img {
  -o-object-fit: contain;
  height: 100%;
     object-fit: contain;
}

.p-header__menu-button {
  margin-left: auto;
}

.p-header__pc-nav {
  display: none;
}

.p-header__pc-nav-items {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}

.p-header__pc-nav-item a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 600;
  height: 100%;
  padding: 0 12px;
  padding: 0 0.75rem;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.p-header__pc-nav-item a:focus-visible {
  color: #999999;
}

.p-header__pc-cta-items {
  border: 1px solid #333333;
  border-radius: 0.3125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}

.p-header__pc-cta-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-header__cta {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 600;
  gap: 16px;
  gap: 1rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 184px;
  min-width: 11.5rem;
  padding: 15px 32px;
  padding: 0.9375rem 2rem;
  text-align: center;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
  width: 100%;
}
.p-header__cta::after {
  aspect-ratio: 1;
  background-image: url("../images/common/icon_button_arrow_white.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 20px;
  width: 1.25rem;
}
.p-header__cta:focus-visible {
  background-color: #999999;
  color: #ffffff;
  opacity: 1;
}

/************************************************************************
* modifier
************************************************************************/
.p-header.is-fixed {
  -webkit-animation: p-header-slidedown 0.4s ease;
          animation: p-header-slidedown 0.4s ease;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 100;
}

@-webkit-keyframes p-header-slidedown {
  from {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes p-header-slidedown {
  from {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.p-header.p-header--front {
  position: absolute;
}

.p-header.p-header--front.is-fixed {
  position: fixed;
}

.p-header__logo.p-header__logo--text {
  width: auto;
}

.p-header__logo--text .p-header__logo-link {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  aspect-ratio: auto;
  background-color: #ffffff;
  border: 1px solid #333333;
  border-radius: 3.125rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 16px 32px;
  padding: 1rem 2rem;
  width: auto;
}

.p-header__logo-text {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 600;
  line-height: 1;
}

.p-header__cta--primary {
  background-color: #333333;
  color: #ffffff;
}

.p-header__cta--ghost {
  background-color: transparent;
  color: #333333;
}
.p-header__cta--ghost::after {
  background-image: url("../images/common/icon_button_arrow_black.svg");
}
.p-header__cta--ghost:focus-visible::after {
  background-image: url("../images/common/icon_button_arrow.svg");
}

/************************************************************************
* p-page-title
************************************************************************/
.p-page-title {
  padding-top: 45px;
  padding-top: 2.8125rem;
}

.p-page-title__card {
  background-color: #ffffff;
  border: 2px solid #333333;
  border-radius: 1.875rem;
  padding: 30px 10px 28px;
  padding: 1.875rem 0.625rem 1.75rem;
  text-align: center;
}

.p-page-title__en {
  font-family: "Alata", sans-serif;
  font-size: 64px;
  font-size: 4rem;
  line-height: 1;
}

.p-page-title__ja {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 600;
  line-height: 1;
  margin-top: 16px;
  margin-top: 1rem;
}

/************************************************************************
* p-pagination
************************************************************************/
.p-pagination .page-numbers {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  gap: 0.625rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-pagination .page-numbers li {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-pagination .page-numbers li a,
.p-pagination .page-numbers li > span {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #333333;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  height: 25px;
  height: 1.5625rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  letter-spacing: 0.02em;
  line-height: 1;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
  width: 25px;
  width: 1.5625rem;
}

.p-pagination .page-numbers li a:not(.prev):not(.next),
.p-pagination .page-numbers .current {
  font-family: "Alata", sans-serif;
}
.p-pagination .page-numbers li a:focus-visible {
  background-color: #333333;
  color: #ffffff;
}

.p-pagination .page-numbers .current {
  background-color: #333333;
  color: #ffffff;
}

.p-pagination .page-numbers .dots {
  border: none;
}

.p-pagination .page-numbers li a.prev,
.p-pagination .page-numbers li a.next {
  gap: 10px;
  gap: 0.625rem;
  min-width: 67px;
  min-width: 4.1875rem;
  padding: 0 10px;
  padding: 0 0.625rem;
  width: auto;
}

.p-pagination .page-numbers li a.prev::before,
.p-pagination .page-numbers li a.next::after {
  -webkit-mask-image: url("../images/common/icon-arrow-right.svg");
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  background-color: currentColor;
  content: "";
  display: block;
  height: 8px;
  height: 0.5rem;
  mask-image: url("../images/common/icon-arrow-right.svg");
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  width: 4px;
  width: 0.25rem;
}

.p-pagination .page-numbers li a.prev::before {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

/************************************************************************
* p-single
************************************************************************/
.p-single {
  padding-bottom: 68px;
  padding-bottom: 4.25rem;
  padding-top: 70px;
  padding-top: 4.375rem;
}

.p-single__body {
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
  max-width: 62.5rem;
}

.p-single__header {
  text-align: left;
}

.p-single__meta {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  gap: 0.75rem;
  margin-top: 32px;
  margin-top: 2rem;
}

.p-single__date {
  color: #999999;
  font-family: "Alata", sans-serif;
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  line-height: 1;
}

.p-single__category {
  background-color: #333333;
  border-radius: 0.3125rem;
  color: #f5f5f5;
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  line-height: 1;
  padding: 4px 8px;
  padding: 0.25rem 0.5rem;
}

.p-single__title {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
}

.p-single__content {
  margin-top: 32px;
  margin-top: 2rem;
}

.p-single__subscribe {
  margin-top: 40px;
  margin-top: 2.5rem;
  text-align: right;
}

/************************************************************************
* p-top-about
************************************************************************/
.p-top-about {
  overflow: clip;
  padding-bottom: 47px;
  padding-bottom: 2.9375rem;
}

.p-top-about__box {
  background-color: #f5f5f5;
  border-radius: 1.25rem;
  padding: 24px;
  padding: 1.5rem;
}

.p-top-about__title {
  position: relative;
}
.p-top-about__title::after {
  aspect-ratio: 360/206;
  background-image: url("../images/top/icon_about.svg");
  background-position: left center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  position: absolute;
  right: -83px;
  right: -5.1875rem;
  top: -5px;
  top: -0.3125rem;
  width: 193px;
  width: 12.0625rem;
}

.p-top-about__lead {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-top-about__catch {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.5;
}

.p-top-about__catch br {
  display: none;
}

.p-top-about__desc {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  line-height: 1.8;
  margin-top: 22px;
  margin-top: 1.375rem;
}

.p-top-about__desc + .p-top-about__desc {
  margin-top: 28px;
  margin-top: 1.75rem;
}

.p-top-about__movies {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-top-about__movies-heading {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
}

.p-top-about__movies-body {
  margin-top: 32px;
  margin-top: 2rem;
}

.p-top-about__movie-link {
  display: block;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-top-about__movie-link:focus-visible .p-top-about__movie-thumb img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.p-top-about__movie-thumb {
  aspect-ratio: 16/9;
  background-color: #333333;
  border-radius: 0.625rem;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.p-top-about__movie-thumb::after {
  -webkit-mask-image: url("../images/common/icon_play.svg");
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  aspect-ratio: 1/1;
  background-color: #ffffff;
  bottom: 0;
  content: "";
  left: 0;
  margin: auto;
  mask-image: url("../images/common/icon_play.svg");
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  opacity: 0.9;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 48px;
  width: 3rem;
}

.p-top-about__movie-thumb img {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.p-top-about__movie-title {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 600;
  line-height: 1.8;
  margin-top: 16px;
  margin-top: 1rem;
}

.p-top-about__related {
  margin-top: 32px;
  margin-top: 2rem;
}

.p-top-about__related-heading {
  background-color: #333333;
  border-radius: 0.3125rem;
  color: #ffffff;
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  font-weight: 600;
  padding: 10px 16px;
  padding: 0.625rem 1rem;
  text-align: center;
}

.p-top-about__related-list {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-top-about__related-item:nth-child(n+2) {
  border-top: 1px solid #d9d9d9;
  margin-top: 24px;
  margin-top: 1.5rem;
  padding-top: 24px;
  padding-top: 1.5rem;
}

.p-top-about__related-link {
  grid-gap: 1rem;
  display: grid;
  gap: 16px;
  gap: 1rem;
}

.p-top-about__related-thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  width: 100%;
}

.p-top-about__related-thumb--dummy {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #e9e9e9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-top-about__related-thumb--dummy img {
  -o-object-fit: contain;
  height: auto;
     object-fit: contain;
  width: 40%;
}

.p-top-about__related-title {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 600;
  line-height: 1.8;
}

.p-top-about__photos {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 40px;
  margin-top: 2.5rem;
  overflow: hidden;
}

.p-top-about__photo-list {
  -webkit-animation: p-top-about-photo-scroll 24s linear infinite;
          animation: p-top-about-photo-scroll 24s linear infinite;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  gap: 1rem;
  width: -moz-max-content;
  width: -webkit-max-content;
  width: max-content;
}

.p-top-about__photo-item {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 150px;
  width: 9.375rem;
}

.p-top-about__photo {
  aspect-ratio: 1/1;
  border-radius: 0.625rem;
  overflow: hidden;
  width: 100%;
}

@-webkit-keyframes p-top-about-photo-scroll {
  to {
    -webkit-transform: translateX(-41.5rem);
            transform: translateX(-41.5rem);
  }
}

@keyframes p-top-about-photo-scroll {
  to {
    -webkit-transform: translateX(-41.5rem);
            transform: translateX(-41.5rem);
  }
}
@-webkit-keyframes p-top-about-photo-scroll-pc {
  to {
    -webkit-transform: translateX(-120rem);
            transform: translateX(-120rem);
  }
}
@keyframes p-top-about-photo-scroll-pc {
  to {
    -webkit-transform: translateX(-120rem);
            transform: translateX(-120rem);
  }
}
/************************************************************************
* modifier
************************************************************************/
.p-top-about__movies--solo .p-top-about__movie-item:nth-child(n+2) {
  margin-top: 32px;
  margin-top: 2rem;
}

.p-top-about__movies--paired .p-top-about__movie-item:nth-child(n+2) {
  margin-top: 32px;
  margin-top: 2rem;
}

/************************************************************************
* p-top-access
************************************************************************/
.p-top-access {
  overflow: hidden;
  padding-bottom: 45px;
  padding-bottom: 2.8125rem;
  padding-top: 45px;
  padding-top: 2.8125rem;
  position: relative;
}

.p-top-access__box {
  background-color: #f5f5f5;
  border-radius: 0.625rem;
  padding: 24px;
  padding: 1.5rem;
  position: relative;
}
.p-top-access__box::before {
  aspect-ratio: 180/217;
  background-image: url("../images/top/icon_access.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  pointer-events: none;
  position: absolute;
  right: -10px;
  right: -0.625rem;
  top: -10px;
  top: -0.625rem;
  width: 90px;
  width: 5.625rem;
}

.p-top-access__body {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-top-access__map {
  aspect-ratio: 1;
  border-radius: 0.625rem;
  overflow: hidden;
  width: 100%;
}

.p-top-access__map iframe {
  -o-object-fit: cover;
  border: 0;
  display: block;
  height: 100%;
     object-fit: cover;
  width: 100%;
}

.p-top-access__info {
  border-top: 1px solid #999999;
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  margin-top: 26px;
  margin-top: 1.625rem;
}

.p-top-access__key,
.p-top-access__value {
  border-bottom: 1px solid #999999;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
  padding-top: 24px;
  padding-top: 1.5rem;
}

.p-top-access__key {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #999999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-right: 40px;
  padding-right: 2.5rem;
}

.p-top-access__lines li,
.p-top-access__list li {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
}

.p-top-access__lines li:nth-child(n+2),
.p-top-access__list li:nth-child(n+2) {
  margin-top: 4px;
  margin-top: 0.25rem;
}

.p-top-access__list li {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  gap: 0.5rem;
}
.p-top-access__list li::before {
  content: "・";
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-top-access__value a {
  text-decoration: none;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.p-top-access__value a:focus-visible {
  color: #999999;
}

/************************************************************************
* p-top-contact
************************************************************************/
.p-top-contact {
  padding-bottom: 90px;
  padding-bottom: 5.625rem;
  padding-top: 90px;
  padding-top: 5.625rem;
}

.p-top-contact__lead {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-top-contact__form {
  padding-top: 60px;
  padding-top: 3.75rem;
}

/************************************************************************
* p-top-event
************************************************************************/
.p-top-event {
  overflow: hidden;
  padding-top: 47px;
  padding-top: 2.9375rem;
  position: relative;
}

.p-top-event__inner {
  position: relative;
  z-index: 1;
}
.p-top-event__inner::before {
  aspect-ratio: 1/1;
  background-image: url("../images/top/icon_event.svg");
  background-position: right top;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  pointer-events: none;
  position: absolute;
  right: -25px;
  right: -1.5625rem;
  top: 0;
  width: 160px;
  width: 10rem;
  z-index: -1;
}

.p-top-event__lead {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-top-event__list {
  grid-column-gap: 2.5rem;
  -moz-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
       -webkit-column-gap: 2.5rem;
               column-gap: 2.5rem;
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 40px;
  margin-top: 2.5rem;
  row-gap: 40px;
  row-gap: 2.5rem;
}

.p-top-event__empty {
  color: #999999;
  margin-top: 40px;
  margin-top: 2.5rem;
  text-align: center;
}

.p-top-event__calendar {
  border-top: 1px solid #999999;
  margin-top: 40px;
  margin-top: 2.5rem;
  padding-top: 34px;
  padding-top: 2.125rem;
}

.p-top-event__calendar-title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
}

.p-top-event__calendar-lead {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  margin-top: 16px;
  margin-top: 1rem;
}

.p-top-event__calendar-body .tribe-events-c-events-bar,
.p-top-event__calendar-body .tribe-events-header__events-bar,
.p-top-event__calendar-body .tribe-events-c-subscribe-dropdown,
.p-top-event__calendar-body .tribe-events-c-subscribe-dropdown__container,
.p-top-event__calendar-body .tribe-events-c-ical {
  display: none;
}

/************************************************************************
* p-top-facility
************************************************************************/
.p-top-facility {
  overflow: hidden;
  padding-bottom: 45px;
  padding-bottom: 2.8125rem;
  padding-top: 70px;
  padding-top: 4.375rem;
  position: relative;
}

.p-top-facility__inner {
  position: relative;
}
.p-top-facility__inner::before {
  aspect-ratio: 120/112;
  background-image: url("../images/top/icon_facility.svg");
  background-position: right top;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  pointer-events: none;
  position: absolute;
  right: 20px;
  right: 1.25rem;
  top: -20px;
  top: -1.25rem;
  width: 120px;
  width: 7.5rem;
}

.p-top-facility__lead {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  margin-top: 22px;
  margin-top: 1.375rem;
  max-width: 520px;
  max-width: 32.5rem;
}

.p-top-facility__list {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-top-facility__item:nth-child(n+2) {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-top-facility__card {
  background-color: #f5f5f5;
  border-radius: 0.625rem;
  padding: 24px;
  padding: 1.5rem;
}

.p-top-facility__item:nth-child(even) .p-top-facility__card {
  background-color: #333333;
  color: #ffffff;
}

.p-top-facility__thumb {
  aspect-ratio: 3/2;
  border-radius: 0.625rem;
  overflow: hidden;
  width: 100%;
}

.p-top-facility__thumb img {
  -o-object-fit: cover;
  height: 100%;
     object-fit: cover;
}

.p-top-facility__body {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-top-facility__tag {
  border: 1px solid #999999;
  border-radius: 0.3125rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  line-height: 1;
  padding: 8px 16px;
  padding: 0.5rem 1rem;
}

.p-top-facility__item:nth-child(even) .p-top-facility__tag {
  border-color: #f5f5f5;
}

.p-top-facility__name {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 16px;
  margin-top: 1rem;
}

.p-top-facility__desc {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  line-height: 1.8;
  margin-top: 16px;
  margin-top: 1rem;
}

.p-top-facility__specs {
  grid-column-gap: 1rem;
  -moz-column-gap: 1rem;
  grid-row-gap: 0.5rem;
       -webkit-column-gap: 1rem;
               column-gap: 1rem;
  display: grid;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
  margin-top: 16px;
  margin-top: 1rem;
  row-gap: 8px;
  row-gap: 0.5rem;
}

.p-top-facility__spec {
  display: contents;
}

.p-top-facility__spec-label {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: start;
      align-self: flex-start;
  color: #999999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  gap: 6px;
  gap: 0.375rem;
  line-height: 1.5;
}
.p-top-facility__spec-label::before {
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  aspect-ratio: 1/1;
  background-color: #999999;
  content: "";
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  width: 16px;
  width: 1rem;
}

.p-top-facility__spec-label--seat::before {
  -webkit-mask-image: url("../images/top/icon_seat.svg");
  mask-image: url("../images/top/icon_seat.svg");
}

.p-top-facility__spec-label--room::before {
  -webkit-mask-image: url("../images/top/icon_room.svg");
  mask-image: url("../images/top/icon_room.svg");
}

.p-top-facility__spec-label--capacity::before {
  -webkit-mask-image: url("../images/top/icon_capacity.svg");
  mask-image: url("../images/top/icon_capacity.svg");
}

.p-top-facility__spec-label--equipment::before {
  -webkit-mask-image: url("../images/top/icon_equipment.svg");
  mask-image: url("../images/top/icon_equipment.svg");
}

.p-top-facility__spec-value {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  line-height: 1.5;
}

.p-top-facility__spec-keep {
  display: inline-block;
}

.p-top-facility__item:nth-child(even) .p-top-facility__spec-label {
  color: #ffffff;
}
.p-top-facility__item:nth-child(even) .p-top-facility__spec-label::before {
  background-color: #ffffff;
}

/************************************************************************
* p-top-instagram
************************************************************************/
.p-top-instagram {
  padding-top: 45px;
  padding-top: 2.8125rem;
}

.p-top-instagram__follow {
  margin-top: 40px;
  margin-top: 2.5rem;
  width: 300px;
  width: 18.75rem;
}

.p-top-instagram__feed {
  margin-top: 40px;
  margin-top: 2.5rem;
}

/************************************************************************
* p-top-journal
************************************************************************/
.p-top-journal {
  overflow: hidden;
  padding-bottom: 45px;
  padding-bottom: 2.8125rem;
  padding-top: 45px;
  padding-top: 2.8125rem;
  position: relative;
}

.p-top-journal__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  max-width: 540px;
  max-width: 33.75rem;
  position: relative;
}
.p-top-journal__inner::before {
  aspect-ratio: 120/94;
  background-image: url("../images/top/icon_logo.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  pointer-events: none;
  position: absolute;
  right: 20px;
  right: 1.25rem;
  top: 5px;
  top: 0.3125rem;
  width: 120px;
  width: 7.5rem;
}

.p-top-journal__col {
  display: contents;
}

.p-top-journal__aside {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.p-top-journal__lead {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-top-journal__filter {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-top-journal__list {
  grid-gap: 2.5rem;
  display: grid;
  gap: 40px;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  margin-top: 40px;
  margin-top: 2.5rem;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.p-top-journal__empty {
  color: #999999;
  margin-top: 40px;
  margin-top: 2.5rem;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  text-align: center;
}

.p-top-journal__btn {
  margin-top: 40px;
  margin-top: 2.5rem;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

/************************************************************************
* p-top-mv
************************************************************************/
@property --p-top-mv-progress {
  syntax: "<number>";
  initial-value: 0;
  inherits: false;
}
.p-top-mv {
  margin-left: auto;
  margin-right: auto;
  max-width: 540px;
  max-width: 33.75rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
  padding-top: 120px;
  padding-top: 7.5rem;
}

.p-top-mv__visual {
  position: relative;
  width: 100%;
}

.p-top-mv__media {
  position: relative;
}

.p-top-mv__slides {
  aspect-ratio: 362/500;
}

.p-top-mv__slide {
  -webkit-animation: p-top-mv-fade 30s ease-in-out infinite;
          animation: p-top-mv-fade 30s ease-in-out infinite;
  border-radius: 0.625rem;
  height: 100%;
  left: 0;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 100%;
}

.p-top-mv__slide:nth-child(2) {
  -webkit-animation-delay: 6s;
          animation-delay: 6s;
}

.p-top-mv__slide:nth-child(3) {
  -webkit-animation-delay: 12s;
          animation-delay: 12s;
}

.p-top-mv__slide:nth-child(4) {
  -webkit-animation-delay: 18s;
          animation-delay: 18s;
}

.p-top-mv__slide:nth-child(5) {
  -webkit-animation-delay: 24s;
          animation-delay: 24s;
}

.p-top-mv__thumb {
  height: 100%;
  width: 100%;
}

.p-top-mv__thumb img {
  -o-object-fit: cover;
  -webkit-animation: p-top-mv-zoom 30s linear infinite;
          animation: p-top-mv-zoom 30s linear infinite;
  display: block;
  height: 100%;
     object-fit: cover;
  -webkit-transform-origin: center;
          transform-origin: center;
  width: 100%;
}

.p-top-mv__slide:nth-child(2) .p-top-mv__thumb img {
  -webkit-animation-delay: 6s;
          animation-delay: 6s;
}

.p-top-mv__slide:nth-child(3) .p-top-mv__thumb img {
  -webkit-animation-delay: 12s;
          animation-delay: 12s;
}

.p-top-mv__slide:nth-child(4) .p-top-mv__thumb img {
  -webkit-animation-delay: 18s;
          animation-delay: 18s;
}

.p-top-mv__slide:nth-child(5) .p-top-mv__thumb img {
  -webkit-animation-delay: 24s;
          animation-delay: 24s;
}

@-webkit-keyframes p-top-mv-fade {
  0% {
    opacity: 0;
  }
  13.33% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  33.33% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes p-top-mv-fade {
  0% {
    opacity: 0;
  }
  13.33% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  33.33% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes p-top-mv-zoom {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  33.33% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
  100% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}
@keyframes p-top-mv-zoom {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  33.33% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
  100% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}
.p-top-mv__overlay {
  left: 50%;
  position: absolute;
  top: -50px;
  top: -3.125rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
}

.p-top-mv__logo {
  aspect-ratio: 322/90;
  width: 322px;
  width: 20.125rem;
}

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

.p-top-mv__catch {
  aspect-ratio: 223/71;
  margin-left: auto;
  margin-right: auto;
  margin-top: 25px;
  margin-top: 1.5625rem;
  width: 223px;
  width: 13.9375rem;
}

.p-top-mv__catch img {
  -o-object-fit: contain;
  height: 100%;
     object-fit: contain;
}

.p-top-mv__news {
  -webkit-text-decoration: none;
  -webkit-text-decoration: none;
  background-color: #ffffff;
  border-radius: 0.3125rem;
  bottom: 20px;
  bottom: 1.25rem;
  left: 20px;
  left: 1.25rem;
  padding: 16px 24px;
  padding: 1rem 1.5rem;
  position: absolute;
  right: -20px;
  right: -1.25rem;
  text-decoration: none;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  z-index: 2;
}
.p-top-mv__news:focus-visible {
  color: #999999;
  outline: 2px solid #333333;
  outline-offset: 2px;
}

.p-top-mv__news-meta {
  -moz-column-gap: 1.125rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
       -webkit-column-gap: 1.125rem;
               column-gap: 1.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-top-mv__news-label {
  font-family: "Alata", sans-serif;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  line-height: 1;
  padding-right: 25px;
  padding-right: 1.5625rem;
  position: relative;
}
.p-top-mv__news-label::after {
  background-color: #d9d9d9;
  content: "";
  height: 12px;
  height: 0.75rem;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1px;
}

.p-top-mv__news-date {
  color: #999999;
  font-family: "Alata", sans-serif;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  line-height: 1;
}

.p-top-mv__news-tag {
  border: 1px solid #999999;
  border-radius: 0.3125rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  line-height: 1;
  padding: 3px 8px;
  padding: 0.1875rem 0.5rem;
}

.p-top-mv__news-title {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  line-height: 1;
  margin-top: 12px;
  margin-top: 0.75rem;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.p-top-mv__pagination {
  -moz-column-gap: 0.3125rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
       -webkit-column-gap: 0.3125rem;
               column-gap: 0.3125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-top-mv__dot {
  height: 18px;
  height: 1.125rem;
  position: relative;
  width: 18px;
  width: 1.125rem;
}

.p-top-mv__dot-ring {
  -webkit-mask: radial-gradient(circle closest-side, transparent calc(100% - 1px), #ffffff calc(100% - 1px));
  -webkit-animation: p-top-mv-dot-progress 30s linear infinite;
          animation: p-top-mv-dot-progress 30s linear infinite;
  background: conic-gradient(from -90deg, #333333 0deg, #333333 calc(var(--p-top-mv-progress) * 1deg), #999999 calc(var(--p-top-mv-progress) * 1deg), #999999 360deg);
  border-radius: 50%;
  bottom: 0;
  left: 0;
  -webkit-mask: radial-gradient(circle closest-side, transparent calc(100% - 1px), #ffffff calc(100% - 1px));
          mask: radial-gradient(circle closest-side, transparent calc(100% - 1px), #ffffff calc(100% - 1px));
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.p-top-mv__dot-center {
  -webkit-animation: p-top-mv-dot-fill 30s linear infinite;
          animation: p-top-mv-dot-fill 30s linear infinite;
  background-color: #999999;
  border-radius: 50%;
  height: 6px;
  height: 0.375rem;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 6px;
  width: 0.375rem;
}

.p-top-mv__dot:nth-child(2) .p-top-mv__dot-ring,
.p-top-mv__dot:nth-child(2) .p-top-mv__dot-center {
  -webkit-animation-delay: 6s;
          animation-delay: 6s;
}

.p-top-mv__dot:nth-child(3) .p-top-mv__dot-ring,
.p-top-mv__dot:nth-child(3) .p-top-mv__dot-center {
  -webkit-animation-delay: 12s;
          animation-delay: 12s;
}

.p-top-mv__dot:nth-child(4) .p-top-mv__dot-ring,
.p-top-mv__dot:nth-child(4) .p-top-mv__dot-center {
  -webkit-animation-delay: 18s;
          animation-delay: 18s;
}

.p-top-mv__dot:nth-child(5) .p-top-mv__dot-ring,
.p-top-mv__dot:nth-child(5) .p-top-mv__dot-center {
  -webkit-animation-delay: 24s;
          animation-delay: 24s;
}

@-webkit-keyframes p-top-mv-dot-progress {
  0% {
    --p-top-mv-progress: 0;
    opacity: 0;
  }
  4.99% {
    --p-top-mv-progress: 0;
    opacity: 0;
  }
  5% {
    --p-top-mv-progress: 0;
    opacity: 1;
  }
  25% {
    --p-top-mv-progress: 360;
    opacity: 1;
  }
  25.01% {
    opacity: 0;
  }
  100% {
    --p-top-mv-progress: 360;
    opacity: 0;
  }
}

@keyframes p-top-mv-dot-progress {
  0% {
    --p-top-mv-progress: 0;
    opacity: 0;
  }
  4.99% {
    --p-top-mv-progress: 0;
    opacity: 0;
  }
  5% {
    --p-top-mv-progress: 0;
    opacity: 1;
  }
  25% {
    --p-top-mv-progress: 360;
    opacity: 1;
  }
  25.01% {
    opacity: 0;
  }
  100% {
    --p-top-mv-progress: 360;
    opacity: 0;
  }
}
@-webkit-keyframes p-top-mv-dot-fill {
  0% {
    background-color: #999999;
  }
  4.99% {
    background-color: #999999;
  }
  5% {
    background-color: #333333;
  }
  25% {
    background-color: #333333;
  }
  25.01% {
    background-color: #999999;
  }
  100% {
    background-color: #999999;
  }
}
@keyframes p-top-mv-dot-fill {
  0% {
    background-color: #999999;
  }
  4.99% {
    background-color: #999999;
  }
  5% {
    background-color: #333333;
  }
  25% {
    background-color: #333333;
  }
  25.01% {
    background-color: #999999;
  }
  100% {
    background-color: #999999;
  }
}
/************************************************************************
* p-top-service
************************************************************************/
.p-top-service {
  padding-bottom: 45px;
  padding-bottom: 2.8125rem;
  padding-top: 45px;
  padding-top: 2.8125rem;
}

.p-top-service__box {
  background-color: #f5f5f5;
  border-radius: 1.25rem;
  padding: 24px;
  padding: 1.5rem;
}

.p-top-service__lead {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  margin-top: 28px;
  margin-top: 1.75rem;
}

.p-top-service__list {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-top-service__item:nth-child(n+2) {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-top-service__thumb {
  aspect-ratio: 3/2;
  width: 100%;
}
.p-top-service__thumb img {
  -o-object-fit: contain;
  height: 100%;
     object-fit: contain;
  width: 100%;
}

.p-top-service__body {
  background-color: #ffffff;
  border-radius: 1.25rem;
  margin-top: 16px;
  margin-top: 1rem;
  padding: 24px;
  padding: 1.5rem;
}

.p-top-service__name {
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  font-weight: 600;
  line-height: 1;
}

.p-top-service__desc {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  line-height: 1.8;
  margin-top: 16px;
  margin-top: 1rem;
}

.p-top-service__action {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.u-hidden {
  overflow: hidden;
}

.u-pc {
  display: none;
}

.u-text-block {
  display: inline-block;
}

@media (max-width: 402px){
  html {
    font-size: 3.9800995025vw;
  }
}

@media screen and (min-width: 768px){
  html {
    font-size: 1.2698412698vw;
  }
  a[href^="tel:"] {
    pointer-events: none;
  }
  html {
    scroll-padding-top: 7rem;
  }
  main {
    padding-top: 112px;
    padding-top: 7rem;
  }
  .l-drawer {
    display: none;
  }
  .l-header {
    height: 112px;
    height: 7rem;
  }
  .l-inner {
    max-width: 1260px;
    max-width: 78.75rem;
    padding-left: 30px;
    padding-left: 1.875rem;
    padding-right: 30px;
    padding-right: 1.875rem;
  }
  .l-inner--lg {
    max-width: 1440px;
    max-width: 90rem;
    padding-left: 30px;
    padding-left: 1.875rem;
    padding-right: 30px;
    padding-right: 1.875rem;
  }
  .c-btn {
    min-width: 188px;
    min-width: 11.75rem;
    width: auto;
  }
  .c-card--wide .c-card__link {
    grid-gap: 1.5rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: grid;
    gap: 24px;
    gap: 1.5rem;
    grid-template-columns: 17rem 1fr;
  }
  .c-card--wide .c-card__thumb {
    aspect-ratio: 272/181;
  }
  .c-card--wide .c-card__body {
    margin-top: 0;
  }
  .c-card--box {
    grid-row-gap: 0;
    display: grid;
    grid-row: span 4;
    grid-template-rows: subgrid;
    row-gap: 0;
  }
  .c-card--box .c-card__link {
    grid-row-gap: 0;
    display: grid;
    grid-row: span 4;
    grid-template-rows: subgrid;
    row-gap: 0;
  }
  .c-card--box .c-card__body {
    grid-row-gap: 0;
    display: grid;
    grid-row: span 3;
    grid-template-rows: subgrid;
    row-gap: 0;
  }
  .c-event-card {
    display: grid;
    grid-row: span 4;
    grid-template-rows: subgrid;
  }
  .c-event-card__link {
    display: grid;
    grid-row: span 4;
    grid-template-rows: subgrid;
  }
  .c-event-card__body {
    display: grid;
    grid-row: span 3;
    grid-template-rows: subgrid;
  }
  .c-event-card__texts {
    display: grid;
    grid-row: span 2;
    grid-template-rows: subgrid;
  }
  .c-section-title__en {
    font-size: 90px;
    font-size: 5.625rem;
  }
  .c-section-title__ja {
    margin-top: 24px;
    margin-top: 1.5rem;
  }
  .p-404 {
    padding-bottom: 150px;
    padding-bottom: 9.375rem;
    padding-top: 250px;
    padding-top: 15.625rem;
  }
  .p-404__code {
    font-size: 180px;
    font-size: 11.25rem;
  }
  .p-404__title {
    font-size: 36px;
    font-size: 2.25rem;
    margin-top: 30px;
    margin-top: 1.875rem;
  }
  .p-404__text {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 2;
    margin-top: 30px;
    margin-top: 1.875rem;
    text-align: center;
  }
  .p-404__back {
    margin-top: 60px;
    margin-top: 3.75rem;
  }
  .p-404__back-link {
    font-size: 20px;
    font-size: 1.25rem;
    min-width: 264px;
    min-width: 16.5rem;
    padding: 12px 40px;
    padding: 0.75rem 2.5rem;
  }
  .p-archive {
    padding-bottom: 122px;
    padding-bottom: 7.625rem;
  }
  .p-archive__filter {
    padding-top: 32px;
    padding-top: 2rem;
  }
  .p-archive__items {
    gap: 40px 40px;
    gap: 2.5rem 2.5rem;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto auto auto;
    margin-top: 65px;
    margin-top: 4.0625rem;
  }
  .p-archive__item {
    grid-row-gap: 0;
    display: grid;
    grid-row: span 4;
    grid-template-rows: subgrid;
    row-gap: 0;
  }
  .p-archive__pagination {
    margin-top: 65px;
    margin-top: 4.0625rem;
  }
  .p-contact {
    padding-left: 30px;
    padding-left: 1.875rem;
    padding-right: 30px;
    padding-right: 1.875rem;
  }
  .p-contact__inner {
    grid-column-gap: 3.75rem;
    -moz-column-gap: 3.75rem;
    grid-row-gap: 3.25rem;
    border-radius: 2.5rem;
         -webkit-column-gap: 3.75rem;
                 column-gap: 3.75rem;
    display: grid;
    grid-template-columns: 1fr 35.5rem;
    max-width: 1380px;
    max-width: 86.25rem;
    padding: 120px 90px 114px;
    padding: 7.5rem 5.625rem 7.125rem;
    row-gap: 52px;
    row-gap: 3.25rem;
  }
  .p-contact__title {
    grid-column: 1;
    grid-row: 1;
  }
  .p-contact__lead {
    grid-column: 1;
    grid-row: 2;
    margin-top: 0;
    -webkit-box-ordinal-group: initial;
        -ms-flex-order: initial;
            order: initial;
  }
  .p-contact__cta-items {
    align-self: center;
    grid-column: 2;
    grid-row: 1/span 2;
    margin-top: 0;
    -webkit-box-ordinal-group: initial;
        -ms-flex-order: initial;
            order: initial;
  }
  .p-contact__cta-item:nth-child(n+2) {
    margin-top: 32px;
    margin-top: 2rem;
  }
  .p-contact__btn {
    font-size: 24px;
    font-size: 1.5rem;
    padding: 25px 30px;
    padding: 1.5625rem 1.875rem;
  }
  .p-content h2:nth-of-type(1) {
    margin-top: 80px;
    margin-top: 5rem;
  }
  .p-content p:nth-child(n+2) {
    margin-top: 28px;
    margin-top: 1.75rem;
  }
  .p-content h2 {
    font-size: 28px;
    font-size: 1.75rem;
  }
  .p-content h3 {
    font-size: 24px;
    font-size: 1.5rem;
  }
  .p-content h4 {
    font-size: 20px;
    font-size: 1.25rem;
  }
  .p-content blockquote,
  .p-content .wp-block-quote {
    padding: 40px;
    padding: 2.5rem;
  }
  .p-content .wp-block-group:nth-child(n+2) {
    margin-top: 90px;
    margin-top: 5.625rem;
  }
  .p-content .wp-block-group__inner-container > figure:nth-child(n+2),
  .p-content .wp-block-group__inner-container > .wp-block-columns:nth-child(n+2) {
    margin-top: 64px;
    margin-top: 4rem;
  }
  .p-content .wp-block-buttons {
    margin-top: 90px;
    margin-top: 5.625rem;
  }
  .p-content .wp-block-button {
    width: auto;
  }
  .p-content .wp-block-button__link {
    min-width: 188px;
    min-width: 11.75rem;
    width: auto;
  }
  .p-content .wp-block-columns {
    gap: 64px;
    gap: 4rem;
  }
  .p-content .wp-element-caption,
  .p-content figcaption {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
    margin-top: 24px;
    margin-top: 1.5rem;
  }
  .p-footer {
    padding-bottom: 56px;
    padding-bottom: 3.5rem;
    padding-top: 50px;
    padding-top: 3.125rem;
  }
  .p-footer__inner {
    max-width: 1320px;
    max-width: 82.5rem;
    padding-left: 60px;
    padding-left: 3.75rem;
    padding-right: 60px;
    padding-right: 3.75rem;
  }
  .p-footer__body {
    grid-gap: 3.75rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    display: grid;
    gap: 60px;
    gap: 3.75rem;
    grid-template-columns: 1fr auto;
  }
  .p-footer__info {
    padding-top: 14px;
    padding-top: 0.875rem;
  }
  .p-footer__nav {
    grid-column-gap: 7rem;
    -moz-column-gap: 7rem;
         -webkit-column-gap: 7rem;
            column-gap: 7rem;
    display: grid;
    grid-template-columns: auto auto;
    margin-top: 0;
  }
  .p-footer__nav-item a {
    font-size: max(18px, 10px);
    font-size: max(1.125rem, 10px);
  }
  .p-footer__bottom {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 40px;
    gap: 2.5rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 40px;
    margin-top: 2.5rem;
  }
  .p-footer__copyright {
    -webkit-box-ordinal-group: initial;
        -ms-flex-order: initial;
            order: initial;
  }
  .p-footer__sns-items {
    -webkit-box-ordinal-group: initial;
        -ms-flex-order: initial;
            order: initial;
  }
  .p-header__inner {
    padding: 0 30px;
    padding: 0 1.875rem;
  }
  .p-header__logo {
    width: 186px;
    width: 11.625rem;
  }
  .p-header__menu-button {
    display: none;
  }
  .p-header__pc-nav {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12px;
    gap: 0.75rem;
    height: 100%;
    margin-left: auto;
  }
  .p-header__logo--text .p-header__logo-link {
    padding-left: clamp(10px, (100vw - 768px) * 22 / 672 + 10px, 32px);
    padding-right: clamp(10px, (100vw - 768px) * 22 / 672 + 10px, 32px);
  }
  .p-header__logo-text {
    font-size: 16px;
    font-size: 1rem;
  }
  .p-page-title {
    padding-top: 30px;
    padding-top: 1.875rem;
  }
  .p-page-title__card {
    border-radius: 2.5rem;
    padding: 62px 10px;
    padding: 3.875rem 0.625rem;
  }
  .p-page-title__en {
    font-size: 90px;
    font-size: 5.625rem;
  }
  .p-page-title__ja {
    margin-top: 32px;
    margin-top: 2rem;
  }
  .p-single {
    padding-bottom: 92px;
    padding-bottom: 5.75rem;
    padding-top: 90px;
    padding-top: 5.625rem;
  }
  .p-single__title {
    font-size: 36px;
    font-size: 2.25rem;
  }
  .p-top-about {
    padding-bottom: 0;
    padding-top: 0;
  }
  .p-top-about__box {
    padding: 120px 90px;
    padding: 7.5rem 5.625rem;
  }
  .p-top-about__intro {
    -moz-column-gap: 4rem;
         -webkit-column-gap: 4rem;
            column-gap: 4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-right: 32px;
    padding-right: 2rem;
  }
  .p-top-about__title::after {
    aspect-ratio: 420/240;
    margin-left: -60px;
    margin-left: -3.75rem;
    margin-top: 47px;
    margin-top: 2.9375rem;
    position: static;
    right: auto;
    top: auto;
    width: 420px;
    width: 26.25rem;
  }
  .p-top-about__title {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 360px;
    width: 22.5rem;
  }
  .p-top-about__lead {
    margin-top: 0;
    max-width: 568px;
    max-width: 35.5rem;
  }
  .p-top-about__catch {
    font-size: 36px;
    font-size: 2.25rem;
  }
  .p-top-about__catch br {
    display: inline;
  }
  .p-top-about__desc {
    margin-top: 40px;
    margin-top: 2.5rem;
  }
  .p-top-about__movies {
    margin-top: 33px;
    margin-top: 2.0625rem;
  }
  .p-top-about__movie-thumb {
    aspect-ratio: 568/320;
  }
  .p-top-about__movie-thumb::after {
    width: 64px;
    width: 4rem;
  }
  .p-top-about__related {
    margin-top: 0;
  }
  .p-top-about__related-link {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    grid-template-columns: 10.5rem 1fr;
  }
  .p-top-about__related-thumb {
    aspect-ratio: auto;
    height: 100%;
    min-height: 94px;
    min-height: 5.875rem;
  }
  .p-top-about__photos {
    margin-top: 64px;
    margin-top: 4rem;
  }
  .p-top-about__photo-list {
    -webkit-animation: p-top-about-photo-scroll-pc 40s linear infinite;
            animation: p-top-about-photo-scroll-pc 40s linear infinite;
    gap: 30px;
    gap: 1.875rem;
  }
  .p-top-about__photo-item {
    width: 450px;
    width: 28.125rem;
  }
  .p-top-about__movies--solo .p-top-about__movie-item:nth-child(n+2) {
    margin-top: 0;
  }
  .p-top-about__movies--solo .p-top-about__movie-list {
    grid-column-gap: 4rem;
    -moz-column-gap: 4rem;
         -webkit-column-gap: 4rem;
            column-gap: 4rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .p-top-about__movies--paired .p-top-about__movie-item:nth-child(n+2) {
    margin-top: 40px;
    margin-top: 2.5rem;
  }
  .p-top-about__movies--paired .p-top-about__movies-body {
    grid-column-gap: 4rem;
    -moz-column-gap: 4rem;
         -webkit-column-gap: 4rem;
            column-gap: 4rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .p-top-access {
    padding-bottom: 60px;
    padding-bottom: 3.75rem;
    padding-top: 60px;
    padding-top: 3.75rem;
  }
  .p-top-access__box::before {
    right: -15px;
    right: -0.9375rem;
    top: -40px;
    top: -2.5rem;
    width: 180px;
    width: 11.25rem;
  }
  .p-top-access__box {
    padding: 64px;
    padding: 4rem;
  }
  .p-top-access__body {
    grid-column-gap: 4rem;
    -moz-column-gap: 4rem;
         -webkit-column-gap: 4rem;
            column-gap: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 64px;
    margin-top: 4rem;
  }
  .p-top-access__map {
    aspect-ratio: auto;
    height: 100%;
  }
  .p-top-access__info {
    margin-top: 0;
  }
  .p-top-access__key,
  .p-top-access__value {
    padding-bottom: 22px;
    padding-bottom: 1.375rem;
    padding-top: 22px;
    padding-top: 1.375rem;
  }
  .p-top-contact {
    padding-bottom: 120px;
    padding-bottom: 7.5rem;
    padding-top: 120px;
    padding-top: 7.5rem;
  }
  .p-top-contact__lead {
    margin-top: 40px;
    margin-top: 2.5rem;
  }
  .p-top-contact__form {
    padding-top: 100px;
    padding-top: 6.25rem;
  }
  .p-top-event {
    padding-bottom: 0;
    padding-top: 45px;
    padding-top: 2.8125rem;
  }
  .p-top-event__inner::before {
    right: -30px;
    right: -1.875rem;
    top: -40px;
    top: -2.5rem;
    width: 320px;
    width: 20rem;
  }
  .p-top-event__lead {
    margin-top: 28px;
    margin-top: 1.75rem;
  }
  .p-top-event__list {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto auto auto;
    margin-top: 64px;
    margin-top: 4rem;
    row-gap: 0;
  }
  .p-top-event__item {
    display: grid;
    grid-row: span 4;
    grid-template-rows: subgrid;
  }
  .p-top-event__empty {
    margin-top: 64px;
    margin-top: 4rem;
  }
  .p-top-event__calendar {
    margin-top: 64px;
    margin-top: 4rem;
    padding-top: 60px;
    padding-top: 3.75rem;
  }
  .p-top-facility {
    padding-bottom: 60px;
    padding-bottom: 3.75rem;
    padding-top: 118px;
    padding-top: 7.375rem;
    z-index: 1;
  }
  .p-top-facility__inner::before {
    aspect-ratio: 320/297;
    right: -20px;
    right: -1.25rem;
    top: -28px;
    top: -1.75rem;
    width: 320px;
    width: 20rem;
    z-index: -1;
  }
  .p-top-facility__lead {
    margin-top: 28px;
    margin-top: 1.75rem;
    max-width: 850px;
    max-width: 53.125rem;
  }
  .p-top-facility__list {
    margin-top: 64px;
    margin-top: 4rem;
  }
  .p-top-facility__card {
    -moz-column-gap: 4rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
         -webkit-column-gap: 4rem;
                 column-gap: 4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 64px;
    padding: 4rem;
  }
  .p-top-facility__item:nth-child(even) .p-top-facility__card {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .p-top-facility__thumb {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 504px;
    width: 31.5rem;
  }
  .p-top-facility__body {
    margin-top: 0;
    width: 504px;
    width: 31.5rem;
  }
  .p-top-facility__name {
    margin-top: 24px;
    margin-top: 1.5rem;
  }
  .p-top-facility__desc {
    margin-top: 24px;
    margin-top: 1.5rem;
  }
  .p-top-facility__specs {
    margin-top: 24px;
    margin-top: 1.5rem;
  }
  .p-top-instagram {
    padding-top: 60px;
    padding-top: 3.75rem;
  }
  .p-top-instagram__header {
    -moz-column-gap: 4rem;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
         -webkit-column-gap: 4rem;
                 column-gap: 4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .p-top-instagram__follow {
    margin-top: 0;
  }
  .p-top-instagram__feed {
    margin-top: 64px;
    margin-top: 4rem;
  }
  .p-top-journal {
    padding-bottom: 60px;
    padding-bottom: 3.75rem;
    padding-top: 60px;
    padding-top: 3.75rem;
  }
  .p-top-journal__inner::before {
    aspect-ratio: 575/450;
    bottom: 25px;
    bottom: 1.5625rem;
    left: -177px;
    left: -11.0625rem;
    right: auto;
    top: auto;
    width: 575px;
    width: 35.9375rem;
  }
  .p-top-journal__inner {
    -moz-column-gap: 4rem;
         -webkit-column-gap: 4rem;
            column-gap: 4rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    max-width: 1260px;
    max-width: 78.75rem;
  }
  .p-top-journal__col {
    display: block;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 400px;
    width: 25rem;
  }
  .p-top-journal__lead {
    margin-top: 32px;
    margin-top: 2rem;
  }
  .p-top-journal__filter {
    margin-top: 64px;
    margin-top: 4rem;
  }
  .p-top-journal__list {
    margin-top: 0;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: calc(100% - 25rem - 4rem);
  }
  .p-top-journal__btn {
    margin-top: 64px;
    margin-top: 4rem;
    -webkit-box-ordinal-group: initial;
        -ms-flex-order: initial;
            order: initial;
  }
  .p-top-mv {
    max-width: none;
    padding-bottom: 0;
    padding-left: 30px;
    padding-left: 1.875rem;
    padding-right: 30px;
    padding-right: 1.875rem;
    padding-top: 145px;
    padding-top: 9.0625rem;
  }
  .p-top-mv__slides {
    aspect-ratio: 1380/700;
  }
  .p-top-mv__overlay {
    -moz-column-gap: 5rem;
         -webkit-column-gap: 5rem;
            column-gap: 5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    top: -117px;
    top: -7.3125rem;
  }
  .p-top-mv__logo {
    aspect-ratio: 750/209;
    width: 750px;
    width: 46.875rem;
  }
  .p-top-mv__catch {
    aspect-ratio: 301/91;
    margin-left: 0;
    margin-right: 0;
    margin-top: 48px;
    margin-top: 3rem;
    width: 301px;
    width: 18.8125rem;
  }
  .p-top-mv__news {
    -moz-column-gap: 1rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 0.625rem 0 0 0.625rem;
    bottom: 40px;
    bottom: 2.5rem;
         -webkit-column-gap: 1rem;
                 column-gap: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    left: auto;
    max-width: 540px;
    max-width: 33.75rem;
    padding: 16px 30px 16px 24px;
    padding: 1rem 1.875rem 1rem 1.5rem;
    right: -30px;
    right: -1.875rem;
  }
  .p-top-mv__news-meta {
    -moz-column-gap: 1rem;
         -webkit-column-gap: 1rem;
            column-gap: 1rem;
  }
  .p-top-mv__news-label {
    padding-right: 35px;
    padding-right: 2.1875rem;
  }
  .p-top-mv__news-label::after {
    background-color: #333333;
  }
  .p-top-mv__news-date {
    padding-right: 10px;
    padding-right: 0.625rem;
  }
  .p-top-mv__news-title {
    margin-top: 0;
  }
  .p-top-mv__pagination {
    margin-top: 56px;
    margin-top: 3.5rem;
  }
  .p-top-service {
    padding-bottom: 60px;
    padding-bottom: 3.75rem;
    padding-top: 60px;
    padding-top: 3.75rem;
  }
  .p-top-service__box {
    grid-column-gap: 4rem;
    -moz-column-gap: 4rem;
    grid-row-gap: 4rem;
         -webkit-column-gap: 4rem;
                 column-gap: 4rem;
    display: grid;
    grid-template-columns: 1fr auto;
    padding: 120px 90px;
    padding: 7.5rem 5.625rem;
    row-gap: 64px;
    row-gap: 4rem;
  }
  .p-top-service__header {
    grid-column: 1;
    grid-row: 1;
  }
  .p-top-service__list {
    grid-column-gap: 2.5rem;
    -moz-column-gap: 2.5rem;
         -webkit-column-gap: 2.5rem;
            column-gap: 2.5rem;
    display: grid;
    grid-column: 1/-1;
    grid-row: 2;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    margin-top: 0;
  }
  .p-top-service__item:nth-child(n+2) {
    margin-top: 0;
  }
  .p-top-service__item {
    display: grid;
    grid-row: span 2;
    grid-template-rows: subgrid;
  }
  .p-top-service__card {
    display: grid;
    grid-row: span 2;
    grid-template-rows: subgrid;
  }
  .p-top-service__action {
    align-self: end;
    grid-column: 2;
    grid-row: 1;
    margin-top: 0;
  }
  .u-pc {
    display: block;
  }
  .u-sp {
    display: none;
  }
}

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

@media (any-hover: hover){
  a:hover {
    opacity: 0.5;
  }
  .c-btn:hover {
    opacity: 1;
  }
  .c-btn:hover {
    background-color: #ffffff;
    color: #333333;
  }
  .c-btn:hover::after {
    background-image: url("../images/common/icon_button_arrow_black.svg");
    -webkit-transform: translateX(4px);
            transform: translateX(4px);
  }
  .c-btn--left:hover::after {
    -webkit-transform: scaleX(-1) translateX(4px);
            transform: scaleX(-1) translateX(4px);
  }
  .c-btn--white:hover {
    background-color: #333333;
    color: #ffffff;
  }
  .c-btn--white:hover::after {
    background-image: url("../images/common/icon_button_arrow.svg");
    -webkit-transform: translateX(4px);
            transform: translateX(4px);
  }
  .c-btn--external:hover::after {
    background-image: none;
    -webkit-transform: none;
            transform: none;
  }
  .c-event-card__link:hover .c-event-card__title {
    color: #999999;
  }
  .c-filter-tab__link:hover {
    opacity: 1;
  }
  .c-filter-tab__link:hover {
    background-color: #333333;
    color: #ffffff;
  }
  .p-404__back-link:hover {
    background-color: #333333;
    color: #ffffff;
    opacity: 1;
  }
  .p-contact__btn--primary:hover {
    background-color: transparent;
    color: #ffffff;
    opacity: 1;
  }
  .p-contact__btn--ghost:hover {
    background-color: #ffffff;
    color: #333333;
    opacity: 1;
  }
  .p-content .wp-block-button__link:hover {
    opacity: 1;
  }
  .p-content .wp-block-button__link:hover {
    background-color: #ffffff;
    color: #333333;
  }
  .p-content .wp-block-button__link:hover::after {
    background-image: url("../images/common/icon_button_arrow_black.svg");
    -webkit-transform: translateX(4px);
            transform: translateX(4px);
  }
  .p-content .wp-block-button[class~="--left"] .wp-block-button__link:hover::after {
    -webkit-transform: scaleX(-1) translateX(4px);
            transform: scaleX(-1) translateX(4px);
  }
  .p-content .wp-block-button[class~="--white"] .wp-block-button__link:hover {
    background-color: #333333;
    color: #ffffff;
  }
  .p-content .wp-block-button[class~="--white"] .wp-block-button__link:hover::after {
    background-image: url("../images/common/icon_button_arrow.svg");
    -webkit-transform: translateX(4px);
            transform: translateX(4px);
  }
  .p-header__pc-nav-item a:hover {
    color: #999999;
  }
  .p-header__cta:hover {
    background-color: #999999;
    color: #ffffff;
    opacity: 1;
  }
  .p-header__cta--ghost:hover::after {
    background-image: url("../images/common/icon_button_arrow.svg");
  }
  .p-pagination .page-numbers li a:hover {
    background-color: #333333;
    color: #ffffff;
    opacity: 1;
  }
  .p-top-about__movie-link:hover .p-top-about__movie-thumb img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  .p-top-access__value a:hover {
    color: #999999;
  }
  .p-top-mv__news:hover {
    color: #999999;
  }
}