@charset "UTF-8";
/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

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

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

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

/* 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,
picture {
  display: block;
  max-width: 100%;
}

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

/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  font-size: 16px;
}

body {
  background-color: #f7f7f7;
  color: #333;
  display: flex;
  flex-direction: column;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  min-height: 100svh;
}

body > main {
  flex: 1 1 auto;
}

body.is-drawerOpen {
  overflow: hidden;
}

#__bs_notify__ {
  display: none !important;
}

.u-visuallyHidden {
  height: 1px;
  height: 0.0625rem;
  margin-bottom: -1px;
  margin-bottom: -0.0625rem;
  margin-top: -1px;
  margin-top: -0.0625rem;
  overflow: hidden;
  padding-bottom: 0px;
  padding-bottom: 0rem;
  padding-left: 0px;
  padding-left: 0rem;
  padding-right: 0px;
  padding-right: 0rem;
  padding-top: 0px;
  padding-top: 0rem;
  position: absolute;
  width: 1px;
  width: 0.0625rem;
  clip: rect(0 0 0 0);
  border: 0;
  white-space: nowrap;
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
    transform: translateY(var(--fade-in-up-offset, 10px));
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUpWithTranslateX {
  from {
    opacity: 0;
    transform: translateX(0) translateY(10px);
    transform: translateX(var(--fade-in-translate-x, 0)) translateY(var(--fade-in-up-offset, 10px));
  }
  to {
    opacity: 1;
    transform: translateX(0) translateY(0);
    transform: translateX(var(--fade-in-translate-x, 0)) translateY(0);
  }
}
.u-fade-in {
  animation: fadeIn 2s cubic-bezier(0.4, 0, 0.2, 1) 0s forwards;
  animation: fadeIn var(--fade-in-duration, 2s) var(--fade-in-easing, cubic-bezier(0.4, 0, 0.2, 1)) var(--fade-in-delay, 0s) forwards;
  animation-play-state: paused;
  opacity: 0;
}
.u-fade-in.is-visible {
  animation-play-state: running;
}

.u-fade-in-up {
  animation: fadeInUp 1.6s cubic-bezier(0.4, 0, 0.2, 1) 0.25s forwards;
  animation: fadeInUp var(--fade-in-duration, 1.6s) var(--fade-in-easing, cubic-bezier(0.4, 0, 0.2, 1)) var(--fade-in-delay, 0.25s) forwards;
  animation-play-state: paused;
  opacity: 0;
}
.u-fade-in-up.is-visible {
  animation-play-state: running;
}

.u-fade-in-up-with-translate-x {
  animation: fadeInUpWithTranslateX 1.6s cubic-bezier(0.4, 0, 0.2, 1) 0.25s forwards;
  animation: fadeInUpWithTranslateX var(--fade-in-duration, 1.6s) var(--fade-in-easing, cubic-bezier(0.4, 0, 0.2, 1)) var(--fade-in-delay, 0.25s) forwards;
  animation-play-state: paused;
  opacity: 0;
}
.u-fade-in-up-with-translate-x.is-visible {
  animation-play-state: running;
}

.u-fade-in-delay-1 {
  --fade-in-delay: 0.25s;
}

.u-fade-in-delay-2 {
  --fade-in-delay: 0.45s;
}

.u-fade-in-delay-3 {
  --fade-in-delay: 0.65s;
}
.l-footer {
  background-color: #444;
  color: #fff;
}

.l-footer__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
  max-width: 75rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
  padding-top: 60px;
  padding-top: 3.75rem;
  text-align: center;
}

.l-footer__logo {
  display: block;
  filter: brightness(0) invert(1);
  height: 47px;
  height: 2.9375rem;
  margin-left: auto;
  margin-right: auto;
  width: 180px;
  width: 11.25rem;
}

.l-footer__logo img {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.l-footer__body {
  margin-top: 48px;
  margin-top: 3rem;
}

.l-footer__navList {
  align-items: center;
  display: grid;
  grid-template-columns: repeat(3, max-content);
  justify-content: center;
  justify-items: center;
  grid-gap: 20px 40px;
  gap: 20px 40px;
  gap: 1.25rem 2.5rem;
  list-style: none;
  margin-bottom: 0;
  margin-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
}

.l-footer__navLink {
  display: inline-block;
  font-family: "EB Garamond", serif;
  font-size: 15px;
  font-size: 0.9375rem;
  letter-spacing: 0.08em;
  line-height: 1.2;
  position: relative;
}

.l-footer__instagram {
  align-items: center;
  display: inline-grid;
  height: 38px;
  height: 2.375rem;
  justify-items: center;
  margin-left: auto;
  margin-right: auto;
  place-items: center;
  width: 38px;
  width: 2.375rem;
}

.l-footer__instagram img {
  display: block;
  height: 30px;
  height: 1.875rem;
  width: 30px;
  width: 1.875rem;
}

.l-footer__sub {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin-top: 52px;
  margin-top: 3.25rem;
}

.l-footer__copy {
  color: #999;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  line-height: 1.6;
  margin-bottom: 0;
  margin-top: 0;
}

.l-footer__copyLink {
  color: inherit;
}

.l-footer__privacy {
  color: #999;
  display: inline-block;
  font-family: "EB Garamond", serif;
  font-size: 13px;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  line-height: 1.4;
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
  order: -1;
  position: relative;
}

.l-footer__privacy::before {
  display: none;
}
.l-header {
  left: 0;
  opacity: 1;
  position: absolute;
  right: 0;
  top: 0;
  transform: none;
  transition: top 0.35s ease, opacity 0.3s, visibility 0.3s, transform 0.3s;
  visibility: visible;
  z-index: 900;
}

.l-header.is-dark {
  top: 0px;
  top: 0rem;
}

.l-header__inner {
  align-items: center;
  background: transparent;
  box-sizing: border-box;
  display: flex;
  height: 98px;
  height: 6.125rem;
  justify-content: flex-start;
  padding-bottom: 0;
  padding-left: 15px;
  padding-left: 0.9375rem;
  padding-right: 14px;
  padding-right: 0.875rem;
  padding-top: 0;
  position: relative;
  width: 100%;
}

.l-header--top .l-header__inner::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
  bottom: 0px;
  bottom: 0rem;
  content: "";
  left: 0px;
  left: 0rem;
  pointer-events: none;
  position: absolute;
  right: 0px;
  right: 0rem;
  top: 0px;
  top: 0rem;
  z-index: 0;
}

.l-header.is-dark .l-header__inner {
  background-color: #f7f7f7;
  color: #333;
}

.l-header__logo {
  display: block;
  height: 32px;
  height: 2rem;
  margin-bottom: 0;
  margin-top: 0;
  position: relative;
  width: 129px;
  width: 8.0625rem;
  z-index: 1;
}

.l-header--top .l-header__logo {
  animation: fadeIn 2s cubic-bezier(0.4, 0, 0.2, 1) 0s forwards;
  animation: fadeIn var(--fade-in-duration, 2s) var(--fade-in-easing, cubic-bezier(0.4, 0, 0.2, 1)) var(--fade-in-delay, 0s) forwards;
  animation-play-state: paused;
  opacity: 0;
}
.l-header--top .l-header__logo.is-visible {
  animation-play-state: running;
}

.l-header__logo a {
  display: block;
  height: 100%;
  width: 100%;
}

.l-header__logo img {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left center;
     object-position: left center;
  transition: filter 0.6s ease;
}

.l-header.is-dark .l-header__logo img {
  filter: brightness(0) saturate(100%) invert(20%);
}

.c-btn {
  color: inherit;
}

.c-btn--viewMore {
  align-items: center;
  display: inline-flex;
  font-family: "EB Garamond", serif;
  font-size: 14px;
  font-size: 0.875rem;
  justify-content: space-between;
  letter-spacing: 0.08em;
  line-height: 1.2;
  padding-bottom: 12px;
  padding-bottom: 0.75rem;
  padding-top: 12px;
  padding-top: 0.75rem;
  position: relative;
  text-transform: uppercase;
  width: 186px;
  width: 11.625rem;
}

.c-btn--viewMore::after {
  background-color: currentcolor;
  bottom: 0;
  content: "";
  height: 1px;
  height: 0.0625rem;
  left: 0;
  position: absolute;
  right: auto;
  transform: scaleX(1);
  transform-origin: left;
  width: 100%;
}

.c-btn__text {
  display: inline-block;
  white-space: nowrap;
}

.c-btn__arrow {
  background: url("../images/common/arrow02.svg") center/100% 100% no-repeat;
  display: inline-block;
  height: 13px;
  height: 0.8125rem;
  overflow: hidden;
  width: 20px;
  width: 1.25rem;
}
@keyframes view-more-line {
  0% {
    transform: scaleX(1);
    transform-origin: right;
  }
  36% {
    transform: scaleX(0);
    transform-origin: right;
  }
  37% {
    transform: scaleX(0);
    transform-origin: left;
  }
  100% {
    transform: scaleX(1);
    transform-origin: left;
  }
}
@keyframes arrow-loop {
  0% {
    transform: translateX(0);
  }
  45% {
    transform: translateX(1.75rem);
  }
  46% {
    transform: translateX(-1.75rem);
  }
  100% {
    transform: translateX(0);
  }
}
.p-about {
  padding-bottom: 86px;
  padding-bottom: 5.375rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
  padding-top: 54px;
  padding-top: 3.375rem;
}

.p-about__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1080px;
  max-width: 67.5rem;
}

.p-about__message {
  display: block;
}

.p-about__messageBody {
  display: flow-root;
  min-width: 0;
}

.p-about__sectionTitle {
  animation: fadeInUp 1.6s cubic-bezier(0.4, 0, 0.2, 1) 0.25s forwards;
  animation: fadeInUp var(--fade-in-duration, 1.6s) var(--fade-in-easing, cubic-bezier(0.4, 0, 0.2, 1)) var(--fade-in-delay, 0.25s) forwards;
  animation-play-state: paused;
  font-family: "EB Garamond", serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.4;
  margin-bottom: 0;
  margin-top: 0;
  opacity: 0;
  text-align: center;
}
.p-about__sectionTitle.is-visible {
  animation-play-state: running;
}

.p-about__messageJa,
.p-about__messageEn {
  animation: fadeInUp 1.6s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
  animation: fadeInUp var(--fade-in-duration, 1.6s) var(--fade-in-easing, cubic-bezier(0.4, 0, 0.2, 1)) var(--fade-in-delay, 0.5s) forwards;
  animation-play-state: paused;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  line-height: 2.05;
  margin-bottom: 0;
  margin-top: 30px;
  margin-top: 1.875rem;
  opacity: 0;
}
.p-about__messageJa.is-visible,
.p-about__messageEn.is-visible {
  animation-play-state: running;
}

.p-about__messageEn {
  font-size: 15px;
  font-size: 0.9375rem;
  --fade-in-delay: 0.6s;
}

.p-about__hero {
  animation: fadeInUp 1.6s cubic-bezier(0.4, 0, 0.2, 1) 0.25s forwards;
  animation: fadeInUp var(--fade-in-duration, 1.6s) var(--fade-in-easing, cubic-bezier(0.4, 0, 0.2, 1)) var(--fade-in-delay, 0.25s) forwards;
  animation-play-state: paused;
  background-color: #eee;
  float: right;
  height: 173px;
  height: 10.8125rem;
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
  margin-left: 20px;
  margin-left: 1.25rem;
  margin-right: 0;
  margin-top: 30px;
  margin-top: 1.875rem;
  opacity: 0;
  width: 137px;
  width: 8.5625rem;
}
.p-about__hero.is-visible {
  animation-play-state: running;
}

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

.p-about__exhibition {
  border-top: 1px solid #ddd;
  border-top: 0.0625rem solid #ddd;
  margin-top: 74px;
  margin-top: 4.625rem;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 58px;
  padding-top: 3.625rem;
}

.p-about__exhibitionYear {
  animation: fadeInUp 1.6s cubic-bezier(0.4, 0, 0.2, 1) 0.45s forwards;
  animation: fadeInUp var(--fade-in-duration, 1.6s) var(--fade-in-easing, cubic-bezier(0.4, 0, 0.2, 1)) var(--fade-in-delay, 0.45s) forwards;
  animation-play-state: paused;
  font-family: "EB Garamond", serif;
  font-size: 24px;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
  margin-bottom: 0;
  margin-top: 28px;
  margin-top: 1.75rem;
  opacity: 0;
}
.p-about__exhibitionYear.is-visible {
  animation-play-state: running;
}

.p-about__exhibitionList + .p-about__exhibitionYear {
  margin-top: 56px;
  margin-top: 3.5rem;
}

.p-about__exhibitionList {
  display: grid;
  grid-gap: 10px;
  gap: 10px;
  gap: 0.625rem;
  list-style: none;
  margin-bottom: 0;
  margin-top: 24px;
  margin-top: 1.5rem;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
}

.p-about__exhibitionItem {
  animation: fadeInUp 1.6s cubic-bezier(0.4, 0, 0.2, 1) 0.55s forwards;
  animation: fadeInUp var(--fade-in-duration, 1.6s) var(--fade-in-easing, cubic-bezier(0.4, 0, 0.2, 1)) var(--fade-in-delay, 0.55s) forwards;
  animation-play-state: paused;
  font-size: 15px;
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
  line-height: 1.8;
  opacity: 0;
}
.p-about__exhibitionItem.is-visible {
  animation-play-state: running;
}

.p-contact {
  padding-bottom: 86px;
  padding-bottom: 5.375rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
  padding-top: 56px;
  padding-top: 3.5rem;
}

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

.p-contact__introText,
.p-contact__infoText,
.p-contact__noticeText,
.p-contact__labelNote,
.p-contact__checkLabel,
.p-contact__photoLabel,
.p-contact__photoNote {
  color: #333;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 2;
  margin-bottom: 0;
  margin-top: 0;
  word-wrap: anywhere;
}

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

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

.p-contact__infoTitle {
  color: #333;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2;
  margin-bottom: 0;
  margin-top: 0;
}

.p-contact__infoText {
  margin-top: 2px;
  margin-top: 0.125rem;
}

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

.p-contact__noticeLink {
  color: #333;
  -webkit-text-decoration: underline;
  text-decoration: underline;
  text-decoration-color: #cccccc;
  text-decoration-thickness: 1px;
  text-decoration-thickness: 0.0625rem;
  text-underline-offset: 1px;
  text-underline-offset: 0.0625rem;
  transition: opacity 0.3s;
}

.p-contact__noticeRequired,
.p-contact__required {
  color: #cc3300;
}

.p-contact__form {
  border-top: 1px solid #d9d9d9;
  border-top: 0.0625rem solid #d9d9d9;
  margin-top: 34px;
  margin-top: 2.125rem;
}

.p-contact__row {
  display: grid;
  grid-gap: 14px;
  border-bottom: 1px solid #dadada;
  border-bottom: 0.0625rem solid #dadada;
  border-top: 1px solid #f1f1f1;
  border-top: 0.0625rem solid #f1f1f1;
  gap: 14px;
  gap: 0.875rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  padding-left: 0;
  padding-right: 0;
  padding-top: 20px;
  padding-top: 1.25rem;
}

.p-contact__rowHead {
  min-width: 0;
}

.p-contact__label {
  color: #333;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.8;
}

.p-contact__labelNote {
  display: block;
  margin-top: 16px;
  margin-top: 1rem;
}

.p-contact__rowBody {
  min-width: 0;
}

.p-contact__checkList {
  list-style: none;
  margin-bottom: 0;
  margin-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
}

.p-contact__checkItem {
  align-items: center;
  display: flex;
  gap: 12px;
  gap: 0.75rem;
}

.p-contact__checkItem + .p-contact__checkItem {
  margin-top: 8px;
  margin-top: 0.5rem;
}

.p-contact__agree {
  align-items: center;
  display: flex;
  gap: 12px;
  gap: 0.75rem;
}

.p-contact__checkbox {
  flex: 0 0 auto;
  height: 20px;
  height: 1.25rem;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  width: 20px;
  width: 1.25rem;
  -webkit-appearance: none;
     -moz-appearance: none;
  accent-color: #cccccc;
          appearance: none;
  background-color: #fff;
  border: 1px solid #cccccc;
  border: 0.0625rem solid #cccccc;
  border-radius: 0.125rem;
}

.p-contact__checkbox:checked {
  background-color: #cccccc;
  background-image: linear-gradient(45deg, transparent 58%, #333 58%,#333 70%, transparent 70%), linear-gradient(-45deg, transparent 50%, #333 50%,#333 62%, transparent 62%);
  background-image: linear-gradient(45deg, transparent 58%, #333 58% 70%, transparent 70%), linear-gradient(-45deg, transparent 50%, #333 50% 62%, transparent 62%);
  background-position: 2px 8px, 7px 7px;
  background-position: 0.125rem 0.5rem, 0.4375rem 0.4375rem;
  background-repeat: no-repeat;
  background-size: 0.4375rem 0.3125rem, 0.6875rem 0.375rem;
}

.p-contact__nameGroup {
  display: grid;
  grid-gap: 12px;
  gap: 12px;
  gap: 0.75rem;
}

.p-contact__fieldLabel {
  height: 1px;
  height: 0.0625rem;
  margin-bottom: -1px;
  margin-bottom: -0.0625rem;
  margin-top: -1px;
  margin-top: -0.0625rem;
  overflow: hidden;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  position: absolute;
  width: 1px;
  width: 0.0625rem;
  clip: rect(0 0 0 0);
  border: 0;
  white-space: nowrap;
}

.p-contact__input,
.p-contact__select,
.p-contact__file,
.p-contact__textarea {
  background-color: #ececec;
  border: 2px solid #e9e9e9;
  border: 0.125rem solid #e9e9e9;
  border-radius: 0;
  color: #333;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.7;
  min-height: 46px;
  min-height: 2.875rem;
  padding-bottom: 8px;
  padding-bottom: 0.5rem;
  padding-left: 14px;
  padding-left: 0.875rem;
  padding-right: 14px;
  padding-right: 0.875rem;
  padding-top: 8px;
  padding-top: 0.5rem;
  width: 100%;
}

.p-contact__input::-moz-placeholder {
  color: #999;
  opacity: 1;
}

.p-contact__input::placeholder {
  color: #999;
  opacity: 1;
}

.p-contact__input:focus,
.p-contact__select:focus,
.p-contact__file:focus,
.p-contact__textarea:focus,
.p-contact__checkbox:focus-visible,
.p-contact__submitBtn:focus-visible {
  outline: 2px solid #333;
  outline: 0.125rem solid #333;
  outline-offset: 3px;
  outline-offset: 0.1875rem;
}

.p-contact__textarea {
  min-height: 160px;
  min-height: 10rem;
  resize: vertical;
}

.p-contact__photoGroup {
  max-width: 490px;
  max-width: 30.625rem;
}

.p-contact__photoRow {
  align-items: center;
  display: grid;
  grid-template-columns: 3.5rem minmax(0, 1fr);
  grid-gap: 14px;
  gap: 14px;
  gap: 0.875rem;
}

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

.p-contact__selectWrap {
  position: relative;
}

.p-contact__selectWrap::after {
  border-left: 8px solid transparent;
  border-left: 0.5rem solid transparent;
  border-right: 8px solid transparent;
  border-right: 0.5rem solid transparent;
  border-top: 10px solid #333;
  border-top: 0.625rem solid #333;
  content: "";
  height: 0;
  pointer-events: none;
  position: absolute;
  right: 14px;
  right: 0.875rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
}

.p-contact__select {
  padding-left: 14px;
  padding-left: 0.875rem;
  padding-right: 46px;
  padding-right: 2.875rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #e1e1e1;
  border-color: #e8e8e8;
}

.p-contact__fileControl {
  min-height: 46px;
  min-height: 2.875rem;
  position: relative;
  width: 100%;
}

.p-contact__file {
  height: 1px;
  height: 0.0625rem;
  margin-bottom: -1px;
  margin-bottom: -0.0625rem;
  margin-top: -1px;
  margin-top: -0.0625rem;
  overflow: hidden;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  position: absolute;
  width: 1px;
  width: 0.0625rem;
  clip: rect(0 0 0 0);
  border: 0;
  white-space: nowrap;
}

.p-contact__fileButton {
  align-items: center;
  background-color: #777;
  border: 1px solid #777;
  border: 0.0625rem solid #777;
  border-radius: 62.4375rem;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
  justify-content: center;
  letter-spacing: 0.05em;
  line-height: 1.7;
  min-height: 46px;
  min-height: 2.875rem;
  padding-bottom: 8px;
  padding-bottom: 0.5rem;
  padding-left: 28px;
  padding-left: 1.75rem;
  padding-right: 28px;
  padding-right: 1.75rem;
  padding-top: 8px;
  padding-top: 0.5rem;
  position: relative;
  transition: background-color 0.3s, border-color 0.3s;
  width: min(100%, 260px);
  width: min(100%, 16.25rem);
}

.p-contact__fileName {
  color: inherit;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: inherit;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: inherit;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.p-contact__file:focus + .p-contact__fileButton {
  outline: 2px solid #333;
  outline: 0.125rem solid #333;
  outline-offset: 3px;
  outline-offset: 0.1875rem;
}
.p-contact__photoNote {
  margin-top: 18px;
  margin-top: 1.125rem;
}

.p-contact__captcha {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.cf-turnstile {
  min-height: 64px;
  min-height: 4rem;
  min-width: 260px;
  min-width: 16.25rem;
}

.p-contact__submit {
  margin-top: 34px;
  margin-top: 2.125rem;
  text-align: center;
}

.p-contact__submitBtn {
  background-color: transparent;
  border: 1px solid #333;
  border: 0.0625rem solid #333;
  border-radius: 2.25rem;
  color: #333;
  cursor: pointer;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.4;
  max-width: 380px;
  max-width: 23.75rem;
  min-height: 72px;
  min-height: 4.5rem;
  padding-bottom: 18px;
  padding-bottom: 1.125rem;
  padding-left: 40px;
  padding-left: 2.5rem;
  padding-right: 40px;
  padding-right: 2.5rem;
  padding-top: 18px;
  padding-top: 1.125rem;
  transition: color 0.6s, background-color 0.6s;
  width: 100%;
}
.p-news {
  padding-bottom: 90px;
  padding-bottom: 5.625rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
  padding-top: 60px;
  padding-top: 3.75rem;
}

.p-news__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1080px;
  max-width: 67.5rem;
}

.p-news__list {
  list-style: none;
  margin-bottom: 0;
  margin-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
}

.p-news__item {
  animation: fadeInUp 1.6s cubic-bezier(0.4, 0, 0.2, 1) 0.25s forwards;
  animation: fadeInUp var(--fade-in-duration, 1.6s) var(--fade-in-easing, cubic-bezier(0.4, 0, 0.2, 1)) var(--fade-in-delay, 0.25s) forwards;
  animation-play-state: paused;
  border-bottom: 1px solid #ddd;
  border-bottom: 0.0625rem solid #ddd;
  opacity: 0;
}
.p-news__item.is-visible {
  animation-play-state: running;
}

.p-news__item:first-child {
  border-top: 1px solid #ddd;
  border-top: 0.0625rem solid #ddd;
}

.p-news__item:nth-child(1) {
  --fade-in-delay: 0.32s;
}

.p-news__item:nth-child(2) {
  --fade-in-delay: 0.39s;
}

.p-news__item:nth-child(3) {
  --fade-in-delay: 0.46s;
}

.p-news__item:nth-child(4) {
  --fade-in-delay: 0.53s;
}

.p-news__item:nth-child(5) {
  --fade-in-delay: 0.6s;
}

.p-news__item:nth-child(6) {
  --fade-in-delay: 0.67s;
}

.p-news__item:nth-child(7) {
  --fade-in-delay: 0.74s;
}

.p-news__item:nth-child(8) {
  --fade-in-delay: 0.81s;
}

.p-news__item:nth-child(9) {
  --fade-in-delay: 0.88s;
}

.p-news__item:nth-child(10) {
  --fade-in-delay: 0.95s;
}

.p-news__link {
  display: block;
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
  padding-left: 0;
  padding-right: 74px;
  padding-right: 4.625rem;
  padding-top: 24px;
  padding-top: 1.5rem;
  position: relative;
}

.p-news__date {
  display: block;
  font-family: "EB Garamond", serif;
  font-size: 13px;
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  min-width: 0;
}

.p-news__title {
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.8;
  margin-top: 6px;
  margin-top: 0.375rem;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  word-wrap: anywhere;
  word-break: break-all;
}

.p-news__title::after {
  content: "";
  content: none;
}

.p-news__arrow {
  align-items: center;
  background-image: url("../images/common/arrow02.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: grid;
  height: 12px;
  height: 0.75rem;
  justify-items: center;
  overflow: hidden;
  place-items: center;
  position: absolute;
  right: 20px;
  right: 1.25rem;
  top: 66px;
  top: 4.125rem;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
  width: 17px;
  width: 1.0625rem;
  z-index: 1;
}

.p-news__pagination {
  animation: fadeInUp 1.6s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
  animation: fadeInUp var(--fade-in-duration, 1.6s) var(--fade-in-easing, cubic-bezier(0.4, 0, 0.2, 1)) var(--fade-in-delay, 0.5s) forwards;
  animation-play-state: paused;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 60px;
  margin-top: 3.75rem;
  opacity: 0;
}
.p-news__pagination.is-visible {
  animation-play-state: running;
}

.p-news__paginationItem {
  align-items: center;
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  border: 0.0625rem solid #aaa;
  border-radius: 0.25rem;
  color: #333;
  display: grid;
  font-family: "EB Garamond", serif;
  font-size: 16px;
  font-size: 1rem;
  height: 40px;
  height: 2.5rem;
  justify-items: center;
  place-items: center;
  transition: color 0.6s ease, background-color 0.6s ease, border-color 0.6s ease;
  width: 40px;
  width: 2.5rem;
}

.p-news__paginationItem--arrow {
  font-size: 13px;
  font-size: 0.8125rem;
}

.p-news__paginationArrowText {
  display: inline-block;
  transform: scaleY(1.18);
}

.p-news__paginationItem--last .p-news__paginationArrowText {
  transform: scaleX(0.82) scaleY(1.18);
}

.p-news__paginationItem--isCurrent {
  background-color: #333;
  border-color: #333;
  color: #fff;
}
.p-newsSingle {
  padding-bottom: 92px;
  padding-bottom: 5.75rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
  padding-top: 66px;
  padding-top: 4.125rem;
}

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

.p-newsSingle__header {
  animation: fadeInUp 1.6s cubic-bezier(0.4, 0, 0.2, 1) 0.25s forwards;
  animation: fadeInUp var(--fade-in-duration, 1.6s) var(--fade-in-easing, cubic-bezier(0.4, 0, 0.2, 1)) var(--fade-in-delay, 0.25s) forwards;
  animation-play-state: paused;
  border-bottom: 1px solid #ddd;
  border-bottom: 0.0625rem solid #ddd;
  opacity: 0;
  padding-bottom: 28px;
  padding-bottom: 1.75rem;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
}
.p-newsSingle__header.is-visible {
  animation-play-state: running;
}

.p-newsSingle__date {
  display: block;
  font-family: "EB Garamond", serif;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

.p-newsSingle__heading {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.8;
  margin-bottom: 0;
  margin-top: 12px;
  margin-top: 0.75rem;
}

.p-newsSingle__body {
  margin-top: 42px;
  margin-top: 2.625rem;
}

.p-newsSingle__body > * {
  animation: fadeInUp 1.6s cubic-bezier(0.4, 0, 0.2, 1) 0.35s forwards;
  animation: fadeInUp var(--fade-in-duration, 1.6s) var(--fade-in-easing, cubic-bezier(0.4, 0, 0.2, 1)) var(--fade-in-delay, 0.35s) forwards;
  animation-play-state: paused;
  opacity: 0;
}
.p-newsSingle__body > *.is-visible {
  animation-play-state: running;
}

.p-newsSingle__body > *:nth-child(1) {
  --fade-in-delay: 0.32s;
}

.p-newsSingle__body > *:nth-child(2) {
  --fade-in-delay: 0.39s;
}

.p-newsSingle__body > *:nth-child(3) {
  --fade-in-delay: 0.46s;
}

.p-newsSingle__body > *:nth-child(4) {
  --fade-in-delay: 0.53s;
}

.p-newsSingle__body > *:nth-child(5) {
  --fade-in-delay: 0.6s;
}

.p-newsSingle__body > *:nth-child(6) {
  --fade-in-delay: 0.67s;
}

.p-newsSingle__body > *:nth-child(7) {
  --fade-in-delay: 0.74s;
}

.p-newsSingle__body > *:nth-child(8) {
  --fade-in-delay: 0.81s;
}

.p-newsSingle__body > *:nth-child(9) {
  --fade-in-delay: 0.88s;
}

.p-newsSingle__body > *:nth-child(10) {
  --fade-in-delay: 0.95s;
}

.p-newsSingle__body > *:nth-child(11) {
  --fade-in-delay: 1.02s;
}

.p-newsSingle__body > *:nth-child(12) {
  --fade-in-delay: 1.09s;
}

.p-newsSingle__subHeading,
.p-newsSingle__body h2,
.p-newsSingle__body .wp-block-heading {
  font-size: 19px;
  font-size: 1.1875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.8;
  margin-bottom: 0;
  margin-top: 0;
}

.p-newsSingle__paragraph,
.p-newsSingle__body p:not(:has(img)) {
  font-size: 15px;
  font-size: 0.9375rem;
  letter-spacing: 0.04em;
  line-height: 2;
  margin-bottom: 0;
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-newsSingle__mainImg,
.p-newsSingle__bodyImg,
.p-newsSingle__body > img,
.p-newsSingle__body p > img {
  display: block;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.p-newsSingle__body .wp-block-image {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.p-newsSingle__body .wp-block-image img {
  display: block;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.p-newsSingle__mainImg {
  margin-top: 42px;
  margin-top: 2.625rem;
}

.p-newsSingle__bodyImg,
.p-newsSingle__body .wp-block-image,
.p-newsSingle__body > img,
.p-newsSingle__body p:has(> img) {
  margin-bottom: 72px;
  margin-bottom: 4.5rem;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-newsSingle__body figcaption,
.p-newsSingle__body .wp-block-image figcaption {
  font-synthesis: none;
  font-weight: 400;
  margin-top: 12px;
  margin-top: 0.75rem;
  -webkit-font-smoothing: antialiased;
  text-align: center;
}

.p-newsSingle__bodyLink {
  -webkit-text-decoration: underline;
  text-decoration: underline;
  text-decoration-color: #d6d6d6;
  text-underline-offset: 4px;
  text-underline-offset: 0.25rem;
}

.p-newsSingle__body p:not(:has(img)) a {
  -webkit-text-decoration: underline;
  text-decoration: underline;
  text-decoration-color: #d6d6d6;
  text-underline-offset: 4px;
  text-underline-offset: 0.25rem;
}

.p-newsSingle__nav {
  animation: fadeInUp 1.6s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
  animation: fadeInUp var(--fade-in-duration, 1.6s) var(--fade-in-easing, cubic-bezier(0.4, 0, 0.2, 1)) var(--fade-in-delay, 0.5s) forwards;
  animation-play-state: paused;
  display: flex;
  gap: 42px;
  gap: 2.625rem;
  justify-content: center;
  margin-top: 74px;
  margin-top: 4.625rem;
  opacity: 0;
}
.p-newsSingle__nav.is-visible {
  animation-play-state: running;
}

.p-newsSingle__navItem {
  align-items: center;
  display: inline-flex;
  font-family: "EB Garamond", serif;
  font-size: 22px;
  font-size: 1.375rem;
  gap: 10px;
  gap: 0.625rem;
  line-height: 1.3;
  position: relative;
}

.p-newsSingle__navArrow {
  display: inline-block;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  transform: translateY(-0.125rem) scaleY(1.7);
}

.p-newsSingle__navItem::after {
  background-color: currentcolor;
  bottom: -5px;
  bottom: -0.3125rem;
  content: "";
  height: 1px;
  height: 0.0625rem;
  left: auto;
  position: absolute;
  right: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
  width: 100%;
}
.p-pageTitle {
  animation: fadeInUp 1.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
  animation: fadeInUp var(--fade-in-duration, 1.6s) var(--fade-in-easing, cubic-bezier(0.4, 0, 0.2, 1)) var(--fade-in-delay, 0.2s) forwards;
  animation-play-state: paused;
  color: #333;
  font-family: "EB Garamond", serif;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.35;
  margin-bottom: 0;
  margin-top: 0;
  opacity: 0;
  padding-bottom: 0;
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
  padding-top: 126px;
  padding-top: 7.875rem;
  text-align: center;
}
.p-pageTitle.is-visible {
  animation-play-state: running;
}

.p-pageTitle--static {
  animation: none;
  opacity: 1;
}

.p-privacy {
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
  max-width: 62.5rem;
  padding-bottom: 88px;
  padding-bottom: 5.5rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
  padding-top: 54px;
  padding-top: 3.375rem;
}

.p-privacy__intro,
.p-privacy__text,
.p-privacy__listItem,
.p-privacy__contact {
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  line-height: 2;
  margin-bottom: 0;
  margin-top: 0;
}

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

.p-privacy__heading {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.8;
  margin-bottom: 0;
  margin-top: 0;
}

.p-privacy__text,
.p-privacy__list {
  margin-top: 10px;
  margin-top: 0.625rem;
}

.p-privacy__list {
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
}

.p-privacy__contact {
  margin-top: 36px;
  margin-top: 2.25rem;
}

.p-privacy__contactLink {
  -webkit-text-decoration: underline;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-underline-offset: 0.25rem;
}
.p-thanks {
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
  max-width: 62.5rem;
  min-height: 500px;
  min-height: 31.25rem;
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
  padding-top: 80px;
  padding-top: 5rem;
  text-align: center;
}

.p-thanks__lead {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 2;
  margin-bottom: 0;
  margin-top: 0;
}

.p-thanks__text {
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  line-height: 2.1;
  margin-bottom: 0;
  margin-top: 48px;
  margin-top: 3rem;
  text-align: left;
}

.p-thanks__btnGroup {
  margin-top: 70px;
  margin-top: 4.375rem;
}

.p-thanks__btn {
  align-items: center;
  background-color: transparent;
  border: 1px solid #333;
  border: 0.0625rem solid #333;
  border-radius: 2.25rem;
  color: #333;
  display: inline-flex;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
  justify-content: center;
  letter-spacing: 0.05em;
  line-height: 1.4;
  max-width: 380px;
  max-width: 23.75rem;
  min-height: 72px;
  min-height: 4.5rem;
  padding-bottom: 18px;
  padding-bottom: 1.125rem;
  padding-left: 40px;
  padding-left: 2.5rem;
  padding-right: 40px;
  padding-right: 2.5rem;
  padding-top: 18px;
  padding-top: 1.125rem;
  transition: color 0.6s, background-color 0.6s;
  width: 100%;
}

.p-thanks__btn:focus-visible {
  outline: 2px solid #333;
  outline: 0.125rem solid #333;
  outline-offset: 3px;
  outline-offset: 0.1875rem;
}

.p-thanks__btnText {
  display: inline-block;
}
.p-drawer {
  background-color: #444;
  color: #fff;
  height: 100dvh;
  padding-bottom: 0px;
  padding-bottom: 0rem;
  padding-left: 0px;
  padding-left: 0rem;
  padding-right: 0px;
  padding-right: 0rem;
  padding-top: 70px;
  padding-top: 4.375rem;
  position: fixed;
  right: 0;
  text-align: center;
  top: 0;
  transform: translate3d(100%, 0, 0);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 53vw;
  z-index: 910;
}

.p-drawer.is-open {
  transform: translate3d(0, 0, 0);
}

.p-drawer__close {
  align-items: center;
  background-color: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  display: grid;
  height: 31px;
  height: 1.9375rem;
  justify-items: center;
  line-height: 1;
  padding-bottom: 8px;
  padding-bottom: 0.5rem;
  padding-left: 0px;
  padding-left: 0rem;
  padding-right: 0px;
  padding-right: 0rem;
  padding-top: 8px;
  padding-top: 0.5rem;
  place-items: center;
  position: absolute;
  right: 23px;
  right: 1.4375rem;
  top: 28px;
  top: 1.75rem;
  width: 31px;
  width: 1.9375rem;
}

.p-drawer__close::before,
.p-drawer__close::after {
  background-color: currentcolor;
  content: "";
  height: 1px;
  height: 0.0625rem;
  position: absolute;
  width: 31px;
  width: 1.9375rem;
}

.p-drawer__close::before {
  transform: rotate(45deg);
}

.p-drawer__close::after {
  transform: rotate(-45deg);
}

.p-drawer__nav {
  margin-top: 0px;
  margin-top: 0rem;
}

.p-drawer__list {
  display: grid;
  grid-gap: 40px;
  gap: 40px;
  gap: 2.5rem;
  list-style: none;
  margin-bottom: 0px;
  margin-bottom: 0rem;
  margin-top: 0px;
  margin-top: 0rem;
  padding-bottom: 0;
  padding-left: 0px;
  padding-left: 0rem;
  padding-right: 0px;
  padding-right: 0rem;
  padding-top: 0;
}

.p-drawer__link {
  display: inline-block;
  font-family: "EB Garamond", serif;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.2;
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
  position: relative;
}

.p-drawer__instagram {
  align-items: center;
  border-radius: 50%;
  display: grid;
  height: 34px;
  height: 2.125rem;
  justify-items: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 32px;
  margin-top: 2rem;
  opacity: 1;
  overflow: hidden;
  place-items: center;
  position: relative;
  visibility: visible;
  width: 34px;
  width: 2.125rem;
  z-index: 1;
}

.p-drawer__instagram img {
  display: block;
  height: 34px;
  height: 2.125rem;
  width: 34px;
  width: 2.125rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-gallery {
  background-color: #f7f7f7;
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
  padding-left: 17px;
  padding-left: 1.0625rem;
  padding-right: 17px;
  padding-right: 1.0625rem;
  padding-top: 60px;
  padding-top: 3.75rem;
}

.p-gallery__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1100px;
  max-width: 68.75rem;
}

.p-gallery__title {
  --fade-in-delay: 0.15s;
  --fade-in-up-offset: 32px;
  animation: fadeInUp 1.6s cubic-bezier(0.4, 0, 0.2, 1) 0.15s forwards;
  animation: fadeInUp var(--fade-in-duration, 1.6s) var(--fade-in-easing, cubic-bezier(0.4, 0, 0.2, 1)) var(--fade-in-delay, 0.15s) forwards;
  animation-play-state: paused;
  font-family: "EB Garamond", serif;
  font-size: 19px;
  font-size: 1.1875rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.2;
  margin-bottom: 0;
  margin-top: 0;
  opacity: 0;
  text-align: center;
}
.p-gallery__title.is-visible {
  animation-play-state: running;
}

.p-gallery__list {
  display: grid;
  grid-template-columns: repeat(2, 10.3125rem);
  justify-content: center;
  grid-gap: 25px 11px;
  gap: 25px 11px;
  gap: 1.5625rem 0.6875rem;
  list-style: none;
  margin-bottom: 0;
  margin-top: 0;
  margin-top: 34px;
  margin-top: 2.125rem;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
}

.p-gallery__link {
  --fade-in-up-offset: 28px;
  animation: fadeInUp 1.6s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
  animation: fadeInUp var(--fade-in-duration, 1.6s) var(--fade-in-easing, cubic-bezier(0.4, 0, 0.2, 1)) var(--fade-in-delay, 0.4s) forwards;
  animation-play-state: paused;
  display: block;
  opacity: 0;
  pointer-events: none;
}
.p-gallery__link.is-visible {
  animation-play-state: running;
}

.p-gallery__link.is-fade-complete {
  pointer-events: auto;
}

.p-gallery__item:nth-of-type(1) .p-gallery__link {
  --fade-in-delay: 0.3s;
}

.p-gallery__item:nth-of-type(2) .p-gallery__link {
  --fade-in-delay: 0.3s;
}

.p-gallery__item:nth-of-type(3) .p-gallery__link {
  --fade-in-delay: 0.42s;
}

.p-gallery__item:nth-of-type(4) .p-gallery__link {
  --fade-in-delay: 0.42s;
}

.p-gallery__item:nth-of-type(5) .p-gallery__link {
  --fade-in-delay: 0.54s;
}

.p-gallery__item:nth-of-type(6) .p-gallery__link {
  --fade-in-delay: 0.54s;
}

.p-gallery__item:nth-of-type(7) .p-gallery__link {
  --fade-in-delay: 0.66s;
}

.p-gallery__item:nth-of-type(8) .p-gallery__link {
  --fade-in-delay: 0.66s;
}

.p-gallery__item:nth-of-type(9) .p-gallery__link {
  --fade-in-delay: 0.78s;
}

.p-gallery__item:nth-of-type(10) .p-gallery__link {
  --fade-in-delay: 0.78s;
}

.p-gallery__item:nth-of-type(11) .p-gallery__link {
  --fade-in-delay: 0.9s;
}

.p-gallery__item:nth-of-type(12) .p-gallery__link {
  --fade-in-delay: 0.9s;
}

.p-gallery__item:nth-of-type(13) .p-gallery__link {
  --fade-in-delay: 1.02s;
}

.p-gallery__item:nth-of-type(14) .p-gallery__link {
  --fade-in-delay: 1.02s;
}

.p-gallery__item:nth-of-type(15) .p-gallery__link {
  --fade-in-delay: 1.14s;
}

.p-gallery__item:nth-of-type(16) .p-gallery__link {
  --fade-in-delay: 1.14s;
}

.p-gallery__item:nth-of-type(17) .p-gallery__link {
  --fade-in-delay: 1.26s;
}

.p-gallery__item:nth-of-type(18) .p-gallery__link {
  --fade-in-delay: 1.26s;
}

.p-gallery__item:nth-of-type(19) .p-gallery__link {
  --fade-in-delay: 1.38s;
}

.p-gallery__item:nth-of-type(20) .p-gallery__link {
  --fade-in-delay: 1.38s;
}

.p-gallery__img {
  aspect-ratio: 1/1;
  background-color: #fff;
  display: block;
  height: 165px;
  height: 10.3125rem;
  overflow: visible;
  width: 165px;
  width: 10.3125rem;
}

.p-gallery__img img {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s;
}

.p-gallery__name {
  font-family: "EB Garamond", serif;
  font-size: 15px;
  font-size: 0.9375rem;
  letter-spacing: 0.04em;
  line-height: 1.4;
  margin-bottom: 0;
  margin-top: 0;
  margin-top: 8px;
  margin-top: 0.5rem;
  text-align: center;
}

.p-gallery__button {
  --fade-in-up-offset: 24px;
  animation: fadeInUp 1.6s cubic-bezier(0.4, 0, 0.2, 1) 0.25s forwards;
  animation: fadeInUp var(--fade-in-duration, 1.6s) var(--fade-in-easing, cubic-bezier(0.4, 0, 0.2, 1)) var(--fade-in-delay, 0.25s) forwards;
  animation-play-state: paused;
  margin-top: 50px;
  margin-top: 3.125rem;
  opacity: 0;
  text-align: center;
}
.p-gallery__button.is-visible {
  animation-play-state: running;
}

.p-gallery__pagination {
  --fade-in-delay: 0.35s;
  --fade-in-up-offset: 24px;
  animation: fadeInUp 1.6s cubic-bezier(0.4, 0, 0.2, 1) 0.35s forwards;
  animation: fadeInUp var(--fade-in-duration, 1.6s) var(--fade-in-easing, cubic-bezier(0.4, 0, 0.2, 1)) var(--fade-in-delay, 0.35s) forwards;
  animation-play-state: paused;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  gap: 0.625rem;
  justify-content: center;
  margin-top: 64px;
  margin-top: 4rem;
  opacity: 0;
}
.p-gallery__pagination.is-visible {
  animation-play-state: running;
}

.p-gallery__paginationItem {
  align-items: center;
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  border: 0.0625rem solid #aaa;
  border-radius: 0.25rem;
  color: #333;
  display: grid;
  font-family: "EB Garamond", serif;
  font-size: 16px;
  font-size: 1rem;
  height: 48px;
  height: 3rem;
  justify-items: center;
  letter-spacing: 0.04em;
  line-height: 1;
  place-items: center;
  transition: color 0.6s ease, background-color 0.6s ease, border-color 0.6s ease;
  width: 48px;
  width: 3rem;
}

.p-gallery__paginationItem--isCurrent {
  background-color: #333;
  border-color: #333;
  color: #fff;
}
body.is-galleryModalOpen {
  overflow: hidden;
}

.p-galleryModal {
  align-items: start;
  background-color: #fafafa;
  bottom: 0;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  left: 0;
  opacity: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-bottom: 56px;
  padding-bottom: 3.5rem;
  padding-left: 24px;
  padding-left: 1.5rem;
  padding-right: 24px;
  padding-right: 1.5rem;
  padding-top: 70px;
  padding-top: 4.375rem;
  place-items: start center;
  position: fixed;
  right: 0;
  top: 0;
  transition: opacity 0.3s, visibility 0.3s;
  visibility: hidden;
  z-index: 1000;
}

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

.p-galleryModal__body {
  grid-area: 1/1;
  width: min(100%, 281px);
  width: min(100%, 17.5625rem);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-touch-callout: none;
}

.p-galleryModal__figure {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
}

.p-galleryModal__img {
  aspect-ratio: 1/1;
  background-color: #fff;
  display: block;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
}

.p-galleryModal__name {
  color: #222;
  font-family: "EB Garamond", serif;
  font-size: 17px;
  font-size: 1.0625rem;
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin-top: 25px;
  margin-top: 1.5625rem;
  text-align: center;
}

.p-galleryModal__close,
.p-galleryModal__arrow {
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border: 0;
  cursor: pointer;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  position: fixed;
  touch-action: manipulation;
  z-index: 2;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.p-galleryModal__close {
  background-image: url("../images/common/close-black.svg");
  height: 25px;
  height: 1.5625rem;
  right: calc(50% - 10.03125rem);
  top: 3.0667%;
  width: 25px;
  width: 1.5625rem;
}

.p-galleryModal__arrow {
  align-items: center;
  background-image: none;
  display: grid;
  grid-area: 1/1;
  height: 72px;
  height: 4.5rem;
  justify-items: center;
  place-items: center;
  top: 350px;
  top: 21.875rem;
  transform: none;
  width: 72px;
  width: 4.5rem;
}

.p-galleryModal__arrow::before {
  background: url("../images/common/arrow.svg") center/100% 100% no-repeat;
  content: "";
  display: block;
  height: 36.5px;
  width: 21px;
}

.p-galleryModal__arrow--prev {
  left: calc(50% - 9.9375rem);
  transform: rotate(180deg);
}

.p-galleryModal__arrow--next {
  right: calc(50% - 9.9375rem);
}

.p-gnav {
  display: none;
}

.p-gnav__list {
  align-items: center;
  display: flex;
  gap: 50px;
  gap: 3.125rem;
  height: 100%;
  list-style: none;
  margin-bottom: 0;
  margin-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
}

.p-gnav__item {
  align-items: center;
  display: flex;
}

.p-gnav__link {
  align-items: center;
  color: #fff;
  display: inline-flex;
  font-family: "EB Garamond", serif;
  font-size: 17px;
  font-size: 1.0625rem;
  letter-spacing: 0.1em;
  line-height: 1;
  min-height: 44px;
  min-height: 2.75rem;
  position: relative;
  transition: color 0.6s ease, opacity 0.6s ease;
}

.p-gnav__instagram {
  align-items: center;
  display: inline-grid;
  height: 44px;
  height: 2.75rem;
  justify-items: center;
  place-items: center;
  transition: opacity 0.6s ease;
  width: 44px;
  width: 2.75rem;
}

.p-gnav__instagram img {
  display: block;
  height: 41px;
  height: 2.5625rem;
  transition: opacity 0.6s ease;
  width: 41px;
  width: 2.5625rem;
}

.l-header.is-dark .p-gnav__link {
  color: #333;
}
.p-hamburger {
  align-items: center;
  background-color: transparent;
  border: 0;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: grid;
  height: 42px;
  height: 2.625rem;
  justify-items: center;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  place-items: center;
  position: fixed;
  right: 14px;
  right: 0.875rem;
  top: 28px;
  top: 1.75rem;
  width: 42px;
  width: 2.625rem;
  z-index: 920;
}

.p-hamburger img {
  display: block;
  height: 100%;
  width: 100%;
}

.p-hamburger span {
  background-color: currentcolor;
  display: block;
  grid-area: 1/1;
  height: 1px;
  height: 0.0625rem;
  transition: transform 0.3s;
  width: 11px;
  width: 0.6875rem;
}

.l-header.is-dark .p-hamburger {
  background-color: #333;
  color: #fff;
}

.l-header--top .p-hamburger {
  animation: fadeIn 2s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
  animation: fadeIn var(--fade-in-duration, 2s) var(--fade-in-easing, cubic-bezier(0.4, 0, 0.2, 1)) var(--fade-in-delay, 0.2s) forwards;
  animation-play-state: paused;
  opacity: 0;
}
.l-header--top .p-hamburger.is-visible {
  animation-play-state: running;
}

.p-hamburger--isHidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, visibility 0.3s;
  visibility: hidden;
}

.p-hamburger.is-open {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.p-hamburger.js-drawer-open {
  display: grid;
}

.p-hamburger span:first-child {
  transform: translateY(-0.25rem);
}

.p-hamburger span:last-child {
  transform: translateY(0.25rem);
}

.p-hamburger.is-open span:first-child {
  transform: rotate(25deg);
}

.p-hamburger.is-open span:last-child {
  transform: rotate(-25deg);
}

.p-hero {
  aspect-ratio: 375/400;
  background-color: #333;
  color: #fff;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.p-hero__swiper {
  animation: fadeIn 2s cubic-bezier(0.4, 0, 0.2, 1) 0s forwards;
  animation: fadeIn var(--fade-in-duration, 2s) var(--fade-in-easing, cubic-bezier(0.4, 0, 0.2, 1)) var(--fade-in-delay, 0s) forwards;
  animation-play-state: paused;
  height: 100%;
  opacity: 0;
  width: 100%;
}
.p-hero__swiper.is-visible {
  animation-play-state: running;
}

.p-hero__slide {
  height: 100%;
  position: relative;
  width: 100%;
}

.p-hero__slide--hasOverlay::after {
  background-color: rgba(0, 0, 0, 0.08);
  bottom: 0px;
  bottom: 0rem;
  content: "";
  left: 0px;
  left: 0rem;
  pointer-events: none;
  position: absolute;
  right: 0px;
  right: 0rem;
  top: 0px;
  top: 0rem;
  z-index: 1;
}

.p-hero__slideImg {
  display: block;
  height: 100%;
  width: 100%;
}

.p-hero__slideImg img {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.p-hero__content {
  animation: fadeInUp 1.6s cubic-bezier(0.4, 0, 0.2, 1) 0.25s forwards;
  animation: fadeInUp var(--fade-in-duration, 1.6s) var(--fade-in-easing, cubic-bezier(0.4, 0, 0.2, 1)) var(--fade-in-delay, 0.25s) forwards;
  animation-play-state: paused;
  left: 5.8667%;
  opacity: 0;
  position: absolute;
  text-align: center;
  top: 66.75%;
  transform: none;
  width: 190px;
  width: 11.875rem;
  z-index: 2;
}
.p-hero__content.is-visible {
  animation-play-state: running;
}

.p-hero__copy {
  display: block;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.p-hero__copyImg {
  display: none;
}

.p-hero__copySvg {
  display: block;
  overflow: visible;
  width: 190px;
  width: 11.875rem;
}

.p-hero__copySvgEn {
  fill: #fff;
  font-family: "EB Garamond", serif;
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.p-hero__copySvgJa {
  fill: #fff;
  font-family: "Shippori Mincho B1", serif;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}

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

@media screen and (min-width: 768px){
  html {
    font-size: 1.3333333333vw;
  }
  a:hover {
    opacity: 0.8;
  }
  .l-footer__inner {
    align-items: start;
    display: grid;
    grid-template-columns: 15.9375rem 1fr;
    min-height: 240px;
    min-height: 15rem;
    padding-bottom: 50px;
    padding-bottom: 3.125rem;
    padding-left: 50px;
    padding-left: 3.125rem;
    padding-right: 50px;
    padding-right: 3.125rem;
    padding-top: 60px;
    padding-top: 3.75rem;
    text-align: left;
  }
  .l-footer__logo {
    margin-left: 0;
    margin-right: 0;
    width: 225px;
    width: 14.0625rem;
  }
  .l-footer__body {
    margin-top: 0;
  }
  .l-footer__navList {
    display: flex;
    flex-wrap: wrap;
    gap: 44px;
    gap: 2.75rem;
    justify-content: flex-end;
  }
  .l-footer__navLink {
    font-size: 17px;
    font-size: 1.0625rem;
  }
  .l-footer__instagram {
    height: 40px;
    height: 2.5rem;
    width: 40px;
    width: 2.5rem;
  }
  .l-footer__instagram img {
    height: 40px;
    height: 2.5rem;
    width: 40px;
    width: 2.5rem;
  }
  .l-footer__sub {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px;
    gap: 2rem;
    justify-content: flex-end;
    margin-top: 30px;
    margin-top: 1.875rem;
  }
  .l-footer__copy {
    font-size: 16px;
    font-size: 1rem;
  }
  .l-footer__privacy {
    font-size: 16px;
    font-size: 1rem;
    margin-bottom: 0;
    order: 0;
  }
  .l-footer__privacy::before {
    content: "|";
    display: block;
    position: absolute;
    right: calc(100% + 1rem);
  }
  .l-header__inner {
    height: 98px;
    padding-left: 15px;
    padding-right: 14px;
  }
  .l-header__logo {
    height: 32px;
    width: 129px;
  }
  .c-btn--viewMore {
    font-size: 18px;
    font-size: 1.125rem;
    width: 210px;
    width: 13.125rem;
  }
  .c-btn--viewMore::after {
    transform: scaleX(1);
  }
  .p-about {
    padding-bottom: 120px;
    padding-bottom: 7.5rem;
    padding-top: 108px;
    padding-top: 6.75rem;
  }
  .p-about__messageBody {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 15.625rem;
    grid-column-gap: 3.125rem;
    -moz-column-gap: 3.125rem;
    align-items: start;
         column-gap: 3.125rem;
  }
  .p-about__sectionTitle {
    grid-column: 1;
    text-align: left;
  }
  .p-about__messageJa,
  .p-about__messageEn {
    font-size: 17px;
    font-size: 1.0625rem;
    grid-column: 1;
    line-height: 2.1;
  }
  .p-about__messageEn {
    font-size: 15px;
    font-size: 0.9375rem;
    grid-column: 1;
    line-height: 2;
  }
  .p-about__hero {
    aspect-ratio: 250/320;
    float: none;
    grid-column: 2;
    grid-row: 1/span 3;
    height: auto;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    margin-top: 4px;
    margin-top: 0.25rem;
    width: 250px;
    width: 15.625rem;
  }
  .p-about__exhibition {
    margin-top: 76px;
    margin-top: 4.75rem;
    padding-bottom: 0;
    padding-top: 76px;
    padding-top: 4.75rem;
  }
  .p-about__exhibitionItem {
    font-size: 17px;
    font-size: 1.0625rem;
  }
  .p-contact {
    padding-bottom: 124px;
    padding-bottom: 7.75rem;
    padding-top: 100px;
    padding-top: 6.25rem;
  }
  .p-contact__introText,
  .p-contact__infoText,
  .p-contact__noticeText,
  .p-contact__labelNote,
  .p-contact__checkLabel,
  .p-contact__photoLabel,
  .p-contact__photoNote {
    font-size: 17px;
    font-size: 1.0625rem;
  }
  .p-contact__info {
    margin-top: 38px;
    margin-top: 2.375rem;
  }
  .p-contact__infoTitle {
    font-size: 17px;
    font-size: 1.0625rem;
  }
  .p-contact__form {
    margin-top: 38px;
    margin-top: 2.375rem;
  }
  .p-contact__row {
    align-items: start;
    gap: 0;
    grid-template-columns: 17.5rem minmax(0, 45rem);
    padding-bottom: 22px;
    padding-bottom: 1.375rem;
    padding-top: 22px;
    padding-top: 1.375rem;
  }
  .p-contact__label {
    font-size: 17px;
    font-size: 1.0625rem;
  }
  .p-contact__nameGroup {
    gap: 20px;
    gap: 1.25rem;
    grid-template-columns: minmax(0, 21.875rem) minmax(0, 21.875rem);
  }
  .p-contact__input,
  .p-contact__select,
  .p-contact__file,
  .p-contact__textarea {
    font-size: 17px;
    font-size: 1.0625rem;
  }
  .p-contact__fileButton {
    font-size: 17px;
    font-size: 1.0625rem;
    min-height: 47px;
    min-height: 2.9375rem;
  }
  .p-contact__photoNote {
    margin-left: 70px;
    margin-left: 4.375rem;
  }
  .p-contact__captcha {
    margin-top: 50px;
    margin-top: 3.125rem;
  }
  .p-contact__submitBtn {
    font-size: 17px;
    font-size: 1.0625rem;
  }
  .p-news {
    padding-bottom: 120px;
    padding-bottom: 7.5rem;
    padding-top: 110px;
    padding-top: 6.875rem;
  }
  .p-news__link {
    padding-bottom: 40px;
    padding-bottom: 2.5rem;
    padding-left: 0;
    padding-right: 40px;
    padding-right: 2.5rem;
    padding-top: 40px;
    padding-top: 2.5rem;
  }
  .p-news__date {
    font-size: 14px;
    font-size: 0.875rem;
  }
  .p-news__title {
    font-size: 17px;
    font-size: 1.0625rem;
  }
  .p-news__arrow {
    height: 12px;
    height: 0.75rem;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 17px;
    width: 1.0625rem;
  }
  .p-news__paginationItem {
    height: 48px;
    height: 3rem;
    width: 48px;
    width: 3rem;
  }
  .p-newsSingle {
    padding-bottom: 130px;
    padding-bottom: 8.125rem;
    padding-top: 108px;
    padding-top: 6.75rem;
  }
  .p-newsSingle__subHeading,
  .p-newsSingle__body h2,
  .p-newsSingle__body .wp-block-heading {
    font-size: 20px;
    font-size: 1.25rem;
  }
  .p-newsSingle__paragraph,
  .p-newsSingle__body p:not(:has(img)) {
    font-size: 17px;
    font-size: 1.0625rem;
  }
  .p-newsSingle__mainImg,
  .p-newsSingle__bodyImg,
  .p-newsSingle__body > img,
  .p-newsSingle__body p > img {
    width: 75%;
  }
  .p-newsSingle__body .wp-block-image {
    width: 75%;
  }
  .p-newsSingle__nav {
    gap: 78px;
    gap: 4.875rem;
  }
  .p-pageTitle {
    font-size: 28px;
    font-size: 1.75rem;
    padding-bottom: 0;
    padding-top: 210px;
    padding-top: 13.125rem;
  }
  .p-privacy {
    padding-bottom: 120px;
    padding-bottom: 7.5rem;
    padding-top: 90px;
    padding-top: 5.625rem;
  }
  .p-privacy__intro,
  .p-privacy__text,
  .p-privacy__listItem,
  .p-privacy__contact {
    font-size: 16px;
    font-size: 1rem;
    line-height: 2.125;
  }
  .p-thanks {
    min-height: 596px;
    min-height: 37.25rem;
    padding-bottom: 120px;
    padding-bottom: 7.5rem;
    padding-top: 108px;
    padding-top: 6.75rem;
  }
  .p-thanks__lead {
    font-size: 20px;
    font-size: 1.25rem;
  }
  .p-thanks__text {
    font-size: 16px;
    font-size: 1rem;
  }
  .p-thanks__btn {
    font-size: 17px;
    font-size: 1.0625rem;
  }
  .p-drawer {
    width: 300px;
  }
  .p-drawer__list {
    gap: 30px;
  }
  .p-drawer__link {
    font-size: 16px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .p-drawer__instagram {
    height: 40px;
    width: 40px;
  }
  .p-drawer__instagram img {
    height: 40px;
    width: 40px;
  }
  .p-gallery {
    padding-bottom: 110px;
    padding-bottom: 6.875rem;
    padding-left: 50px;
    padding-left: 3.125rem;
    padding-right: 50px;
    padding-right: 3.125rem;
    padding-top: 105px;
    padding-top: 6.5625rem;
  }
  .p-gallery__title {
    font-size: 30px;
    font-size: 1.875rem;
  }
  .p-gallery__list {
    gap: 54px 27px;
    gap: 3.375rem 1.6875rem;
    grid-template-columns: repeat(4, 15.625rem);
    margin-top: 56px;
    margin-top: 3.5rem;
  }
  .p-gallery__item:nth-of-type(1) .p-gallery__link {
    --fade-in-delay: 0.3s;
  }
  .p-gallery__item:nth-of-type(2) .p-gallery__link {
    --fade-in-delay: 0.3s;
  }
  .p-gallery__item:nth-of-type(3) .p-gallery__link {
    --fade-in-delay: 0.3s;
  }
  .p-gallery__item:nth-of-type(4) .p-gallery__link {
    --fade-in-delay: 0.3s;
  }
  .p-gallery__item:nth-of-type(5) .p-gallery__link {
    --fade-in-delay: 0.42s;
  }
  .p-gallery__item:nth-of-type(6) .p-gallery__link {
    --fade-in-delay: 0.42s;
  }
  .p-gallery__item:nth-of-type(7) .p-gallery__link {
    --fade-in-delay: 0.42s;
  }
  .p-gallery__item:nth-of-type(8) .p-gallery__link {
    --fade-in-delay: 0.42s;
  }
  .p-gallery__item:nth-of-type(9) .p-gallery__link {
    --fade-in-delay: 0.54s;
  }
  .p-gallery__item:nth-of-type(10) .p-gallery__link {
    --fade-in-delay: 0.54s;
  }
  .p-gallery__item:nth-of-type(11) .p-gallery__link {
    --fade-in-delay: 0.54s;
  }
  .p-gallery__item:nth-of-type(12) .p-gallery__link {
    --fade-in-delay: 0.54s;
  }
  .p-gallery__item:nth-of-type(13) .p-gallery__link {
    --fade-in-delay: 0.66s;
  }
  .p-gallery__item:nth-of-type(14) .p-gallery__link {
    --fade-in-delay: 0.66s;
  }
  .p-gallery__item:nth-of-type(15) .p-gallery__link {
    --fade-in-delay: 0.66s;
  }
  .p-gallery__item:nth-of-type(16) .p-gallery__link {
    --fade-in-delay: 0.66s;
  }
  .p-gallery__item:nth-of-type(17) .p-gallery__link {
    --fade-in-delay: 0.78s;
  }
  .p-gallery__item:nth-of-type(18) .p-gallery__link {
    --fade-in-delay: 0.78s;
  }
  .p-gallery__item:nth-of-type(19) .p-gallery__link {
    --fade-in-delay: 0.78s;
  }
  .p-gallery__item:nth-of-type(20) .p-gallery__link {
    --fade-in-delay: 0.78s;
  }
  .p-gallery__img {
    height: 250px;
    height: 15.625rem;
    width: 250px;
    width: 15.625rem;
  }
  .p-gallery__name {
    font-size: 14px;
    font-size: 0.875rem;
  }
  .p-gallery__button {
    margin-top: 66px;
    margin-top: 4.125rem;
  }
  .p-galleryModal {
    padding-bottom: 80px;
    padding-bottom: 5rem;
    padding-left: 80px;
    padding-left: 5rem;
    padding-right: 80px;
    padding-right: 5rem;
    padding-top: 180px;
    padding-top: 11.25rem;
  }
  .p-galleryModal__body {
    width: 600px;
    width: 37.5rem;
  }
  .p-galleryModal__img {
    height: 600px;
    height: 37.5rem;
    margin-left: auto;
    margin-right: auto;
    width: 600px;
    width: 37.5rem;
  }
  .p-galleryModal__name {
    font-size: 34px;
    font-size: 2.125rem;
    margin-top: 52px;
    margin-top: 3.25rem;
  }
  .p-galleryModal__close {
    height: 54px;
    height: 3.375rem;
    right: 3%;
    top: 88px;
    top: 5.5rem;
    width: 47px;
    width: 2.9375rem;
  }
  .p-galleryModal__arrow {
    height: 75px;
    height: 4.6875rem;
    justify-self: center;
    position: fixed;
    top: 480px;
    top: 30rem;
    transform: translateY(-50%);
    width: 95px;
    width: 5.9375rem;
  }
  .p-galleryModal__arrow--prev {
    left: calc(50% - 25rem);
    margin-right: 0;
    transform: translateY(-50%) rotate(180deg);
  }
  .p-galleryModal__arrow--next {
    margin-left: 0;
    right: calc(50% - 25rem);
  }
  .p-hamburger {
    height: 42px;
    right: 14px;
    top: 28px;
    width: 42px;
  }
  .p-hamburger span {
    height: 1px;
    width: 11px;
  }
  .p-hamburger span:first-child {
    transform: translateY(-4px);
  }
  .p-hamburger span:last-child {
    transform: translateY(4px);
  }
  .p-hero {
    aspect-ratio: auto;
    height: max(833px, 57.8472222222vw);
    height: max(52.0625rem, 57.8472222222vw);
  }
  .p-hero__slideImg img {
    -o-object-position: center;
       object-position: center;
  }
  .p-hero__content {
    left: 10.2%;
    text-align: left;
    top: 62.8%;
    transform: none;
    width: auto;
  }
  .p-hero__copy {
    margin-left: 0;
    margin-right: 0;
  }
  .p-hero__copyImg {
    display: block;
    height: max(83px, min(4.8vw, 94px));
    height: max(5.1875rem, min(4.8vw, 5.875rem));
    width: max(282px, min(16vw, 320px));
    width: max(17.625rem, min(16vw, 20rem));
  }
  .p-hero__copySvg {
    display: none;
  }
  .p-hero__slide::after {
    background-color: rgba(0, 0, 0, 0.08);
    bottom: 0px;
    bottom: 0rem;
    content: "";
    left: 0px;
    left: 0rem;
    pointer-events: none;
    position: absolute;
    right: 0px;
    right: 0rem;
    top: 0px;
    top: 0rem;
    z-index: 1;
  }
  .p-hero__slide--hasOverlay::after {
    background-color: rgba(0, 0, 0, 0.08);
  }
}

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

@media (prefers-reduced-motion: reduce){
  .u-fade-in {
    animation: none;
    opacity: 1;
  }
  .u-fade-in-up {
    animation: none;
    opacity: 1;
  }
  .u-fade-in-up-with-translate-x {
    animation: none;
    opacity: 1;
  }
  .u-fade-in,
  .u-fade-in-up,
  .u-fade-in-up-with-translate-x {
    animation: none;
    opacity: 1;
  }
  .l-header--top .l-header__logo {
    animation: none;
    opacity: 1;
  }
  .p-about__sectionTitle {
    animation: none;
    opacity: 1;
  }
  .p-about__messageJa,
  .p-about__messageEn {
    animation: none;
    opacity: 1;
  }
  .p-about__hero {
    animation: none;
    opacity: 1;
  }
  .p-about__exhibitionYear {
    animation: none;
    opacity: 1;
  }
  .p-about__exhibitionItem {
    animation: none;
    opacity: 1;
  }
  .p-news__item {
    animation: none;
    opacity: 1;
  }
  .p-news__pagination {
    animation: none;
    opacity: 1;
  }
  .p-newsSingle__header {
    animation: none;
    opacity: 1;
  }
  .p-newsSingle__body > * {
    animation: none;
    opacity: 1;
  }
  .p-newsSingle__nav {
    animation: none;
    opacity: 1;
  }
  .p-pageTitle {
    animation: none;
    opacity: 1;
  }
  .p-gallery__title {
    animation: none;
    opacity: 1;
  }
  .p-gallery__link {
    animation: none;
    opacity: 1;
  }
  .p-gallery__button {
    animation: none;
    opacity: 1;
  }
  .p-gallery__pagination {
    animation: none;
    opacity: 1;
  }
  .l-header--top .p-hamburger {
    animation: none;
    opacity: 1;
  }
  .p-hero__swiper {
    animation: none;
    opacity: 1;
  }
  .p-hero__content {
    animation: none;
    opacity: 1;
  }
}

@media screen and (min-width: 1300px){
  .l-footer__inner {
    padding-left: 0;
    padding-right: 0;
  }
  .p-gallery {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (any-hover: hover){
  .l-footer__navLink::after,
  .l-footer__privacy::after {
    background-color: currentcolor;
    bottom: -5px;
    bottom: -0.3125rem;
    content: "";
    height: 1px;
    height: 0.0625rem;
    left: auto;
    position: absolute;
    right: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
    width: 100%;
  }
  .l-footer__navLink:hover::after,
  .l-footer__privacy:hover::after {
    transform: scaleX(1);
  }
  .c-btn--viewMore:hover .c-btn__arrow {
    animation: arrow-loop 0.6s;
  }
  .p-contact__fileButton:hover {
    background-color: #666;
    border-color: #666;
  }
  .p-contact__noticeLink:hover {
    opacity: 0.65;
  }
  .p-contact__submitBtn:hover {
    background-color: #333;
    color: #fff;
  }
  .p-news__paginationItem:hover {
    background-color: #aaa;
    border-color: #aaa;
    color: #fff;
  }
  .p-newsSingle__navItem:hover::after {
    transform: scaleX(1);
  }
  .p-privacy__contactLink:hover {
    text-decoration-color: transparent;
  }
  .p-thanks__btn:hover {
    background-color: #333;
    color: #fff;
  }
  .p-gallery__link.is-fade-complete:hover .p-gallery__img img {
    transform: scale(1.04);
  }
  .p-gallery__paginationItem:hover {
    background-color: #aaa;
    border-color: #aaa;
    color: #fff;
  }
  .p-gnav__link::after {
    background-color: currentcolor;
    bottom: 3px;
    bottom: 0.1875rem;
    content: "";
    height: 1px;
    height: 0.0625rem;
    left: auto;
    position: absolute;
    right: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
    width: 100%;
  }
  .p-gnav__link:hover::after {
    transform: scaleX(1);
  }
}

@media screen and (min-width: 1024px){
  .l-header {
    position: fixed;
    top: 40px;
    top: 2.5rem;
    transform: translateY(0);
  }
  .l-header.is-fixed {
    top: 0px;
    top: 0rem;
  }
  .l-header.is-hidden {
    opacity: 0;
    transform: translateY(-100%);
    visibility: hidden;
  }
  .l-header.is-dark {
    background-color: #f7f7f7;
    box-shadow: 0 -2.5rem 0 2.5rem #f7f7f7;
  }
  .l-header__inner {
    background: transparent;
    height: 70px;
    height: 4.375rem;
    justify-content: space-between;
    padding-bottom: 0;
    padding-left: 60px;
    padding-left: 3.75rem;
    padding-right: 60px;
    padding-right: 3.75rem;
    padding-top: 0;
  }
  .l-header--top .l-header__inner::before {
    content: none;
  }
  .l-header.is-dark .l-header__inner {
    height: auto;
    justify-content: space-between;
    padding-bottom: 20px;
    padding-bottom: 1.25rem;
    padding-top: 30px;
    padding-top: 1.875rem;
  }
  .l-header__logo {
    height: 57px;
    height: 3.5625rem;
    width: 210px;
    width: 13.125rem;
  }
  .l-header.is-dark .l-header__logo {
    display: block;
    height: 47px;
    height: 2.9375rem;
    width: 190px;
    width: 11.875rem;
  }
  .p-drawer {
    display: none;
  }
  .p-galleryModal__arrow::before {
    height: 72px;
    width: 32px;
  }
  .p-gnav {
    display: block;
    height: 100%;
  }
  .l-header--top .p-gnav {
    animation: fadeIn 2s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
    animation: fadeIn var(--fade-in-duration, 2s) var(--fade-in-easing, cubic-bezier(0.4, 0, 0.2, 1)) var(--fade-in-delay, 0.2s) forwards;
    animation-play-state: paused;
    opacity: 0;
  }
  .l-header--top .p-gnav.is-visible {
    animation-play-state: running;
  }
  .p-hamburger {
    display: none;
    position: static;
  }
  .l-header.is-dark .p-hamburger {
    background-color: transparent;
    color: #333;
  }
  .p-hamburger.js-drawer-open {
    display: none;
  }
}

@media screen and (any-hover: hover) and (min-width: 768px){
  .c-btn--viewMore:hover::after {
    animation: view-more-line 0.9s ease forwards;
  }
  .p-news__link:hover .p-news__arrow {
    transform: translateY(-50%) translateX(0.5rem);
  }
}

@media screen and (min-width: 1024px) and (prefers-reduced-motion: reduce){
  .l-header--top .p-gnav {
    animation: none;
    opacity: 1;
  }
}
/*# sourceMappingURL=style.css.map */
