@charset "utf-8";

/*
  共通
*/
:root {
  --header-height: 140px;
  --window-half-width: 50vw;
  --margin-top: 0px;
  --margin-bottom: 0px;
  --leading-trim: ((1em - 1lh) / 2);
  --color-white: 255, 255, 255;
  --color-gold: 135, 126, 102;
  --color-gray: 102, 102, 102;
  --color-lightgray: 153, 153, 153;
  --color-palegray: 204, 204, 204;
  --color-purple: 76, 75, 117;
}
@supports not (top: 1lh) {
  :root {
    --leading-trim: 0px;
  }
}
html {
  color: #000;
  font-size: 14px;
  font-family: "Yu Mincho", Yumincho, serif;
  font-feature-settings: "palt";
  letter-spacing: 0;
  line-height: 1;
  /* padding-top: var(--header-height); */
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  scrollbar-gutter: stable;
}
abbr, address, article, aside, audio, b, blockquote, canvas, caption, cite, code, dd, del, details, dfn, div, dl, dt, em, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, p, pre, q, samp, section, small, span, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, ul, var, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}
h1, h2, h3, h4, h5, h6, th { font-weight: normal; margin: 0; }
em { font-style: normal; }
sub { vertical-align: sub; bottom: 0; }
sup { vertical-align: super; top: 0; }
img { width: 100%; max-width: 100%; height: auto; vertical-align: bottom; backface-visibility: hidden; }
svg { width: 100%; max-width: 100%; height: auto; vertical-align: bottom; fill: currentColor; }
table { border-collapse: collapse; border-spacing: 0; }
td, th { padding: 0; }
li { list-style: none; }
button, [type="button"], [type="reset"], [type="submit"] { padding: 0; border: none; border-radius: 0; background: none; outline: none; -webkit-appearance: initial; appearance: none; cursor: pointer; -webkit-user-select: none; user-select: none; -webkit-touch-callout: none; touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; }
.sp-bl, .sp-il, .tablet-bl { display: none !important; }
.tablet .tablet-bl { display: block !important; }
.opa { transition: 0.3s ease-in-out; }
.w100 { width: 100% !important; }
.none { display: none !important }
.visuallyhidden { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }
.tc { text-align: center; }
.tl { text-align: left; }
.tr { text-align: right; }
.tj { text-align: justify; }
.cf:before,.cf:after { content: ""; display: table; }
.cf:after { clear: both; }
.cf { zoom: 1; }
.fl { float: left; }
.fr { float: right; }
.outer {
  position: relative;
  max-width: 1920px;
  margin-inline: auto;
}
.inner {
  position: relative;
  width: 95%;
  max-width: 1600px;
  margin-inline: auto;
}

/* フォント */
h2, h3, h4, h5, h6, p {
  margin-block: calc(var(--margin-top) + var(--leading-trim)) calc(var(--margin-bottom) + var(--leading-trim));
}
.wf-zenoldmincho-n4-active {
  font-family: "Zen Old Mincho", serif;
}
.wf-cinzel-n4-active .cinzel {
  font-family: "Cinzel", serif;
  line-height: 1cap;
  --leading-trim: calc((1cap - 1lh) / 2);
}
.wf-notoserifjp-n4-active .notoserif {
  font-family: "Noto Serif JP", serif;
}
.helvetica {
  font-family: sans-serif;
}
.wf-opensans-n3-active .helvetica {
  font-family: "Helvetica Neue", "Open Sans", sans-serif;
}
.bold, b {
  font-weight: bold;
}
.medium {
  font-weight: 500;
}
.light {
  font-weight: 300;
}

/* カラー */
.white { color: #fff; }
.gold { color: rgb(var(--color-gold)); }
.gray { color: rgb(var(--color-gray)); }
.lightgray { color: rgb(var(--color-lightgray)); }
.palegray { color: rgb(var(--color-palegray)); }
.purple { color: rgb(var(--color-purple)); }

/* トラッキング */
.ls0 { letter-spacing: 0; }
.ls50 { letter-spacing: .05em; }
.ls100 { letter-spacing: .1em; }
.ls150 { letter-spacing: .15em; }
.ls200 { letter-spacing: .2em; }

.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.grid {
  display: grid;
}
.flex.column { flex-direction: column; }
.flex.nowrap { flex-wrap: nowrap; }
.flex.reverse { flex-direction: row-reverse; }
.flex.jc-s { justify-content: flex-start; }
.flex.jc-e { justify-content: flex-end; }
.flex.ai-e { align-items: flex-end; }
.flex.ai-st { align-items: stretch; }
.grid.jc-s { justify-content: start; }
.grid.jc-e { justify-content: end; }
.grid.ai-s { align-items: start; }
.grid.ai-e { align-items: end; }
.grid.ai-st { align-items: stretch; }
.jc-c { justify-content: center; }
.ai-c { align-items: center; }

.fit-right { margin-right: calc(50% - var(--window-half-width)); }
.fit-left { margin-left: calc(50% - var(--window-half-width)); }

@media (any-hover: hover) {
  .opa:hover { opacity: 0.7 !important; }
}

@media screen and (max-width: 767px) {
  .pc { display: none !important; }
  .sp-bl { display: block !important; }
  .sp-il { display: inline !important; }
  .inner { width: calc(320 / 380 * 100%); max-width: 560px; }
}



/*
  ヘッダー
*/
/* .header {
} */
.header__content {
  position: absolute;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(0, auto));
  justify-content: start;
  align-items: start;
  gap: 30px;
  box-sizing: border-box;
  padding: calc((50 / 1920) * (var(--window-half-width) * 2));
  pointer-events: none;
}
.header__content__logo {
  width: clamp(77px, calc(117 / 1200 * 100vw), 117px);
  opacity: .6;
  pointer-events: auto;
}
.header__content__menutrigger {
  position: fixed;
  z-index: 2;
  top: 20px;
  right: 20px;
  width: 80px;
  height: 80px;
  grid-template-columns: minmax(0, 1fr);
  place-content: center;
  place-items: center;
  gap: 10px 0;
  background: rgb(var(--color-gold));
  pointer-events: auto;
  transition: translate .4s;
  translate: 0 calc(-100% + -20px);
}
.header__content__menutrigger--active {
  translate: 0 0;
}
.header__content__menutrigger__line {
  width: calc(31 / 80 * 100%);
  height: 2px;
  border-radius: 1px;
  background: #fff;
}
.header__content__global {
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100lvh;
  display: grid;
  grid-template-columns: 2.5% minmax(0, 1fr) 2.5%;
  grid-template-rows: 120px auto 120px;
  justify-items: center;
  align-items: start;
  background: rgba(var(--color-white), .9);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  overflow: auto;
  overscroll-behavior-y: none;
  clip-path: inset(0% 0% 100%);
  pointer-events: none;
  transition: clip-path .5s ease-out;
}
.header__content__global--expanded {
  clip-path: inset(0% 0% 0%);
  pointer-events: auto;
}
.header__content__global__content {
  grid-column: 2;
  grid-row: 2;
  align-self: center;
}
.header__content__global__content__logo {
  max-width: clamp(472px, calc(672 / 1200 * 100vw), 672px);
  margin-inline: auto;
}
.header__content__global__content__list {
  max-width: 1450px;
  margin-top: clamp(80px, calc(120 / 1200 * 100vw), 120px);
  grid-template-columns: repeat(5, minmax(0, 1fr));
  justify-content: center;
  align-items: start;
  gap: 50px calc(50 / 1450 * 100%);
}
/* .header__content__global__content__list__item {
} */
.header__content__global__content__list__item__link {
  grid-template-columns: 100%;
  align-items: start;
  gap: 25px 0;
}
.header__content__global__content__list__item__link__photo {
  overflow: hidden;
}
.header__content__global__content__list__item__link__photo img {
  height: 100%;
  object-fit: cover;
}
.header__content__global__content__list__item--top .header__content__global__content__list__item__link__photo img {
  object-position: top center;
}
.header__content__global__content__list__item--access .header__content__global__content__list__item__link__photo img {
  object-position: bottom center;
}
.header__content__global__content__list__item__link__name {
  max-width: fit-content;
  margin-inline: auto;
  grid-template-columns: auto minmax(0, auto);
  justify-content: center;
  align-items: center;
  gap: 0 calc(14 / 20 * 1em);
  font-size: clamp(14px, calc(20 / 1200 * 100vw), 20px);
}
.header__content__global__content__list__item__link__name::before {
  content: "";
  display: block;
  width: calc(12 / 20 * 1em);
  height: calc(8 / 20 * 1em);
  background: currentColor;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="8" viewBox="0 0 12 8"><path d="M11.91,4.27s0-.01.01-.02c0,0,0-.01.01-.02,0,0,0-.01,0-.02,0,0,0-.01.01-.02,0,0,0-.01,0-.02,0,0,0-.01,0-.02,0,0,0-.01,0-.02,0,0,0-.01,0-.02,0,0,0-.01,0-.02,0,0,0-.02,0-.03,0,0,0-.01,0-.02,0-.03,0-.06,0-.09,0,0,0-.01,0-.02,0,0,0-.02,0-.03,0,0,0-.01,0-.02,0,0,0-.01,0-.02,0,0,0-.01,0-.02,0,0,0-.01,0-.02,0,0,0-.01,0-.02,0,0,0-.01-.01-.02,0,0,0-.01,0-.02,0,0,0-.01-.01-.02,0,0,0-.01-.01-.02,0,0,0-.01-.01-.02,0,0-.02-.02-.02-.03,0,0,0,0,0,0L8.32.13c-.18-.18-.46-.18-.64,0-.18.18-.18.46,0,.64l2.78,2.78H.45c-.25,0-.45.2-.45.45s.2.45.45.45h10.01l-2.78,2.78c-.18.18-.18.46,0,.64.09.09.2.13.32.13s.23-.04.32-.13l3.55-3.55s0,0,0,0c0,0,.02-.02.02-.03,0,0,0-.01.01-.02Z"/></svg>') no-repeat center/100% auto;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="8" viewBox="0 0 12 8"><path d="M11.91,4.27s0-.01.01-.02c0,0,0-.01.01-.02,0,0,0-.01,0-.02,0,0,0-.01.01-.02,0,0,0-.01,0-.02,0,0,0-.01,0-.02,0,0,0-.01,0-.02,0,0,0-.01,0-.02,0,0,0-.01,0-.02,0,0,0-.02,0-.03,0,0,0-.01,0-.02,0-.03,0-.06,0-.09,0,0,0-.01,0-.02,0,0,0-.02,0-.03,0,0,0-.01,0-.02,0,0,0-.01,0-.02,0,0,0-.01,0-.02,0,0,0-.01,0-.02,0,0,0-.01,0-.02,0,0,0-.01-.01-.02,0,0,0-.01,0-.02,0,0,0-.01-.01-.02,0,0,0-.01-.01-.02,0,0,0-.01-.01-.02,0,0-.02-.02-.02-.03,0,0,0,0,0,0L8.32.13c-.18-.18-.46-.18-.64,0-.18.18-.18.46,0,.64l2.78,2.78H.45c-.25,0-.45.2-.45.45s.2.45.45.45h10.01l-2.78,2.78c-.18.18-.18.46,0,.64.09.09.2.13.32.13s.23-.04.32-.13l3.55-3.55s0,0,0,0c0,0,.02-.02.02-.03,0,0,0-.01.01-.02Z"/></svg>') no-repeat center/100% auto;
}
.header__content__global__content__list__item--soon .header__content__global__content__list__item__link {
  pointer-events: none;
}
.header__content__global__content__list__item--soon .header__content__global__content__list__item__link__photo img {
  opacity: .2;
  filter: grayscale(1);
}
.header__content__global__content__list__item--soon .header__content__global__content__list__item__link__photo::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="128.92" height="10.61" viewBox="0 0 128.92 10.61"><path d="M7.55,1c.69.67,1.08,1.43,1.16,2.28h-1.33c-.15-.65-.44-1.16-.88-1.54-.44-.38-1.06-.57-1.86-.57-.97,0-1.75.35-2.35,1.04-.6.7-.9,1.76-.9,3.2,0,1.18.27,2.13.81,2.86.54.73,1.34,1.1,2.41,1.1.98,0,1.73-.39,2.25-1.16.27-.41.48-.94.61-1.6h1.33c-.12,1.06-.5,1.94-1.16,2.66-.79.86-1.85,1.29-3.19,1.29-1.15,0-2.12-.35-2.91-1.06-1.03-.94-1.55-2.38-1.55-4.33,0-1.48.39-2.7,1.16-3.65.84-1.03,1.99-1.55,3.46-1.55,1.26,0,2.23.33,2.93,1Z" fill="%23666"/><path d="M21.63,1.71c.67.89,1,2.03,1,3.41,0,1.5-.38,2.75-1.14,3.74-.89,1.17-2.17,1.75-3.82,1.75-1.54,0-2.76-.51-3.64-1.53-.79-.98-1.18-2.23-1.18-3.73,0-1.36.34-2.52,1.01-3.49.87-1.24,2.15-1.86,3.84-1.86s3.08.57,3.94,1.71ZM20.43,8.11c.54-.86.8-1.85.8-2.97,0-1.18-.31-2.13-.93-2.85s-1.46-1.08-2.53-1.08-1.89.36-2.54,1.07-.98,1.77-.98,3.16c0,1.11.28,2.05.84,2.82.56.76,1.48,1.15,2.74,1.15s2.06-.43,2.6-1.29Z" fill="%23666"/><path d="M27.02.27h1.95l2.89,8.49L34.72.27h1.93v10.04h-1.3v-5.93c0-.21,0-.54.01-1.02s.01-.98.01-1.52l-2.87,8.47h-1.35l-2.89-8.47v.31c0,.25,0,.62.02,1.12s.02.87.02,1.11v5.93h-1.3V.27Z" fill="%23666"/><path d="M41.82.27h1.37v10.04h-1.37V.27Z" fill="%23666"/><path d="M48.2.27h1.6l5.01,8.11V.27h1.3v10.04h-1.53l-5.08-8.1v8.1h-1.3V.27Z" fill="%23666"/><path d="M67.8.56c.98.52,1.59,1.44,1.81,2.75h-1.35c-.16-.73-.49-1.27-1-1.6s-1.14-.5-1.91-.5c-.91,0-1.68.35-2.3,1.05-.62.7-.93,1.74-.93,3.12,0,1.19.26,2.17.77,2.92s1.35,1.12,2.51,1.12c.89,0,1.62-.26,2.21-.79.58-.53.88-1.38.89-2.55h-3.14v-1.13h4.41v5.37h-.88l-.33-1.29c-.45.51-.85.86-1.2,1.05-.59.34-1.33.51-2.24.51-1.17,0-2.18-.39-3.02-1.16-.92-.97-1.38-2.29-1.38-3.98s.45-3.02,1.35-4.01c.85-.95,1.96-1.42,3.31-1.42.93,0,1.73.18,2.41.55Z" fill="%23666"/><path d="M82.38,7.08c.03.57.16,1.03.39,1.39.43.67,1.2,1,2.3,1,.49,0,.94-.07,1.34-.22.78-.28,1.17-.79,1.17-1.52,0-.55-.17-.94-.5-1.17-.33-.23-.86-.43-1.58-.59l-1.32-.31c-.86-.2-1.47-.42-1.83-.66-.62-.42-.93-1.05-.93-1.88,0-.9.3-1.64.91-2.22.61-.58,1.47-.87,2.58-.87,1.02,0,1.89.25,2.61.76s1.07,1.32,1.07,2.44h-1.28c-.07-.54-.21-.95-.42-1.24-.4-.52-1.07-.79-2.03-.79-.77,0-1.32.17-1.66.51-.34.34-.5.73-.5,1.18,0,.49.2.85.6,1.08.26.15.85.33,1.77.55l1.37.32c.66.15,1.17.37,1.52.64.62.47.93,1.15.93,2.04,0,1.11-.39,1.91-1.18,2.39-.79.48-1.71.72-2.75.72-1.22,0-2.17-.32-2.86-.96-.69-.63-1.03-1.49-1.01-2.58h1.28Z" fill="%23666"/><path d="M101.9,1.71c.67.89,1,2.03,1,3.41,0,1.5-.38,2.75-1.14,3.74-.89,1.17-2.17,1.75-3.82,1.75-1.54,0-2.76-.51-3.64-1.53-.79-.98-1.18-2.23-1.18-3.73,0-1.36.34-2.52,1.01-3.49.87-1.24,2.15-1.86,3.84-1.86s3.08.57,3.94,1.71ZM100.7,8.11c.54-.86.8-1.85.8-2.97,0-1.18-.31-2.13-.93-2.85-.62-.72-1.46-1.08-2.53-1.08s-1.89.36-2.54,1.07-.98,1.77-.98,3.16c0,1.11.28,2.05.84,2.82.56.76,1.47,1.15,2.74,1.15s2.07-.43,2.6-1.29Z" fill="%23666"/><path d="M115.59,1.71c.67.89,1,2.03,1,3.41,0,1.5-.38,2.75-1.14,3.74-.89,1.17-2.17,1.75-3.82,1.75-1.54,0-2.76-.51-3.64-1.53-.79-.98-1.18-2.23-1.18-3.73,0-1.36.34-2.52,1.01-3.49.87-1.24,2.15-1.86,3.84-1.86s3.08.57,3.94,1.71ZM114.39,8.11c.54-.86.8-1.85.8-2.97,0-1.18-.31-2.13-.93-2.85s-1.46-1.08-2.53-1.08-1.89.36-2.54,1.07-.98,1.77-.98,3.16c0,1.11.28,2.05.84,2.82.56.76,1.48,1.15,2.74,1.15s2.06-.43,2.6-1.29Z" fill="%23666"/><path d="M121.01.27h1.6l5.01,8.11V.27h1.3v10.04h-1.53l-5.08-8.1v8.1h-1.3V.27Z" fill="%23666"/></svg>') no-repeat center/calc(129 / 250 * 100%) auto;
}
.header__content__global__content__list__item--soon .header__content__global__content__list__item__link__photo .p-caption {
  z-index: 2;
  color: rgb(var(--color-gray));
  background: none;
}
@keyframes chevron {
  0% {
    translate: 0%;
    clip-path: inset(0% 0% 0% 0%);
  }
  50% {
    translate: 100%;
    clip-path: inset(0% 100% 0% 0%);
  }
  51% {
    translate: -100%;
    clip-path: inset(0% 0% 0% 100%);
  }
  100% {
    translate: 0%;
    clip-path: inset(0% 0% 0% 0%);
  }
}
.header__content__global__btn {
  max-width: 560px;
  margin-top: clamp(60px, calc(100 / 1200 * 100vw), 100px);
  margin-inline: auto;
}
/* .header__content__global__btn__item {
} */
.header__content__global__btn__item--calendar.btn a {
  justify-items: center;
  text-align: center;
  border-color: rgb(var(--color-gold));
  color: #fff;
  background: rgb(var(--color-gold));
}
@media (any-hover: hover) {
  .header__content__global__content__list__item__link__photo img {
    transition: scale .5s ease-out;
  }
  .header__content__global__content__list__item__link:hover .header__content__global__content__list__item__link__photo img {
    scale: 1.1;
  }
  .header__content__global__content__list__item__link:hover .header__content__global__content__list__item__link__name::before {
    animation: chevron .5s linear;
  }
  .header__content__global__btn__item--calendar.btn a {
    transition: filter .5s;
  }
  .header__content__global__btn__item--calendar.btn a:hover {
    background: rgb(var(--color-gold));
    filter: brightness(.9);
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .header__content__global__content__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media screen and (max-width: 767px) {
  .header__content {
    gap: 20px;
    padding: calc((30 / 380) * (var(--window-half-width) * 2));
  }
  .header__content__logo {
    width: 113px;
  }
  .header__content__menutrigger {
    top: 10px;
    right: 10px;
    width: 60px;
    height: 60px;
    gap: 7px 0;
    translate: 0 calc(-200% + -10px);
  }
  .header__content__menutrigger--active {
    translate: 0 0;
  }
  .header__content__menutrigger__line {
    width: calc(24 / 60 * 100%);
  }
  .header__content__global {
    grid-template-columns: minmax(0, 1fr) calc(320 / 380 * 100%) minmax(0, 1fr);
    grid-template-rows: 110px auto calc(55px + (100lvh - 100svh));
  }
  .header__content__global__content {
    align-self: start;
  }
  .header__content__global__content__logo {
    max-width: 280px;
  }
  .header__content__global__content__list {
    max-width: fit-content;
    margin-top: 40px;
    grid-template-columns: auto;
    gap: 16px 0;
    margin-inline: auto;
  }
  .header__content__global__content__list__item__link {
    grid-template-columns: 115px auto;
    align-items: center;
    gap: 0 20px;
  }
  .header__content__global__content__list__item__link__photo {
    aspect-ratio: 115 / 70;
  }
  .header__content__global__content__list__item__link__name {
    margin-inline: 0;
    justify-content: start;
    gap: 0 calc(10 / 16 * 1em);
    font-size: 16px;
  }
  .header__content__global__content__list__item__link__name::before {
    width: calc(10 / 16 * 1em);
    height: calc(7 / 16 * 1em);
  }
  .header__content__global__content__list__item--soon .header__content__global__content__list__item__link__photo::before {
    background-size: calc(82 / 115 * 100%) auto;
  }
  .header__content__global__content__list__item--soon .header__content__global__content__list__item__link__name {
    opacity: .3;
  }
  .header__content__global__btn {
    max-width: 240px;
    margin-top: 40px;
  }
}



/*
  メイン
*/

/* キャプション */
.photo, .figure {
  position: relative;
}
.p-caption, .f-caption {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  font-size: 10px;
  line-height: 1.5;
  text-align: right;
  padding: 0 4px;
  margin-block: 0;
}
.p-caption.white, .f-caption.white {
  opacity: .5;
}
.p-caption.w, .f-caption.w {
  color: rgba(255, 255, 255, .6);
  background: rgba(0, 0, 0, .3);
}
.p-caption.b, .f-caption.b {
  color: rgba(0, 0, 0, .6);
  background: rgba(255, 255, 255, .3);
}
.p-caption.l, .f-caption.l {
  left: 0;
  right: auto;
  text-align: left;
}
.p-caption.t, .f-caption.t {
  top: 0;
  bottom: auto;
}
.p-caption.r, .f-caption.r {
  position: relative;
  padding: 0;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .p-caption,.f-caption{
    font-size: 8px;
  }
}

/* 注釈 */
.common-cap {
  position: relative;
  z-index: 1;
  margin-top: -1px;
  padding-block: 50px 100px;
  background: #333;
}
.common-cap__list__item {
  color: rgb(var(--color-palegray));
  font-size: clamp(10px, calc(11 / 1200 * 100vw), 11px);
  line-height: 1.818181818;
  word-break: break-all;
  text-indent: -1em;
  box-sizing: border-box;
  padding-left: 1em;
}
@media screen and (max-width: 767px) {
  .common-cap {
    padding-block: 30px 60px;
  }
  .common-cap__list__item {
    line-height: 1.8;
  }
}

/* ボタン */
.btn a,
.btn button {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  justify-content: start;
  align-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: calc(56 / 16 * 1em);
  box-sizing: border-box;
  border: 1px solid rgb(var(--color-lightgray));
  padding: .5em calc(25 / 16 * 1em);
  color: #333;
  background: rgba(var(--color-lightgray), 0);
  font-size: clamp(11px, calc(16 / 1200 * 100vw), 16px);
  line-height: 1.4;
  text-align: left;
  overflow: hidden;
}
.btn a.cinzel,
.btn button.cinzel {
  line-height: 1.4;
}
.btn a::after,
.btn button::after {
  content: "";
  display: block;
  width: calc(9 / 16 * 1em);
  height: calc(6 / 16 * 1em);
  background: currentColor;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="9" height="6" viewBox="0 0 9 6"><path d="M8.93,3.2s0,0,0-.01c0,0,0-.01,0-.02,0,0,0,0,0-.01,0,0,0-.01,0-.02,0,0,0,0,0-.01,0,0,0-.01,0-.02,0,0,0-.01,0-.02,0,0,0-.01,0-.02,0,0,0-.01,0-.02,0,0,0-.01,0-.02,0,0,0,0,0-.01,0-.02,0-.04,0-.07,0,0,0,0,0-.01,0,0,0-.01,0-.02,0,0,0-.01,0-.02,0,0,0-.01,0-.02,0,0,0-.01,0-.02,0,0,0-.01,0-.02,0,0,0,0,0-.01,0,0,0-.01,0-.02,0,0,0,0,0-.01,0,0,0-.01,0-.02,0,0,0,0,0-.01,0,0,0,0-.01-.01,0,0-.01-.01-.02-.02,0,0,0,0,0,0L6.24.1c-.13-.13-.35-.13-.48,0-.13.13-.13.35,0,.48l2.09,2.09H.34c-.19,0-.34.15-.34.34s.15.34.34.34h7.51l-2.09,2.09c-.13.13-.13.35,0,.48.07.07.15.1.24.1s.17-.03.24-.1l2.66-2.66s0,0,0,0c0,0,.01-.01.02-.02,0,0,0,0,.01-.01Z"/></svg>') no-repeat center/100% auto;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="9" height="6" viewBox="0 0 9 6"><path d="M8.93,3.2s0,0,0-.01c0,0,0-.01,0-.02,0,0,0,0,0-.01,0,0,0-.01,0-.02,0,0,0,0,0-.01,0,0,0-.01,0-.02,0,0,0-.01,0-.02,0,0,0-.01,0-.02,0,0,0-.01,0-.02,0,0,0-.01,0-.02,0,0,0,0,0-.01,0-.02,0-.04,0-.07,0,0,0,0,0-.01,0,0,0-.01,0-.02,0,0,0-.01,0-.02,0,0,0-.01,0-.02,0,0,0-.01,0-.02,0,0,0-.01,0-.02,0,0,0,0,0-.01,0,0,0-.01,0-.02,0,0,0,0,0-.01,0,0,0-.01,0-.02,0,0,0,0,0-.01,0,0,0,0-.01-.01,0,0-.01-.01-.02-.02,0,0,0,0,0,0L6.24.1c-.13-.13-.35-.13-.48,0-.13.13-.13.35,0,.48l2.09,2.09H.34c-.19,0-.34.15-.34.34s.15.34.34.34h7.51l-2.09,2.09c-.13.13-.13.35,0,.48.07.07.15.1.24.1s.17-.03.24-.1l2.66-2.66s0,0,0,0c0,0,.01-.01.02-.02,0,0,0,0,.01-.01Z"/></svg>') no-repeat center/100% auto;
}
@media (any-hover: hover) {
  .btn a,
  .btn button {
    transition: background .5s;
  }
  .btn a:hover,
  .btn button:hover {
    background: rgba(var(--color-lightgray), .1);
  }
  .btn a:hover::after,
  .btn button:hover::after {
    animation: chevron .5s linear;
  }
}
@media screen and (max-width: 767px) {
  .btn a,
  .btn button {
    min-height: calc(50 / 14 * 1em);
    padding: .5em calc(25 / 14 * 1em);
    font-size: 14px;
  }
  .btn a::after,
  .btn button::after {
    width: calc(6 / 14 * 1em);
    height: calc(4 / 14 * 1em);
  }
}

/* タブ */
[role="tab"],
[role="tab"]:focus,
[role="tab"]:hover {
  outline: none;
  cursor: pointer;
  touch-action: manipulation;
}
/* [role="tab"][aria-selected="true"] {
}
[role="tab"][aria-selected="false"] {
} */
[role="tab"]:focus-visible {
  outline: auto -webkit-focus-ring-color;
}
[role="tabpanel"] {
  animation: tabpanelFadein 1s;
}
[role="tabpanel"].is-hidden {
  display: none;
}
@keyframes tabpanelFadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* スライド */
.swiper-button-next, .swiper-button-prev {
  width: 60px;
  --swiper-navigation-size: 100px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="13.33" viewBox="0 0 20 13.33"><path d="M.15,7.11s-.01-.02-.02-.03c0-.01-.01-.02-.02-.04,0,0-.01-.02-.02-.03,0-.01-.01-.02-.02-.04,0-.01,0-.02-.01-.03,0-.01,0-.02-.01-.04,0-.01,0-.02-.01-.03,0-.01,0-.02,0-.04,0-.01,0-.02,0-.04,0-.01,0-.03,0-.04,0-.01,0-.02,0-.03,0-.05,0-.1,0-.15,0-.01,0-.02,0-.03,0-.01,0-.03,0-.04,0-.01,0-.02,0-.04,0-.01,0-.02,0-.04,0-.01,0-.02.01-.03,0-.01,0-.02.01-.04,0-.01,0-.02.01-.03,0-.01.01-.02.02-.04,0,0,.01-.02.02-.03,0-.01.01-.02.02-.04,0,0,.01-.02.02-.03,0-.01.01-.02.02-.03.01-.02.03-.03.04-.04,0,0,0,0,0-.01L6.14.22c.29-.29.77-.29,1.06,0,.29.29.29.77,0,1.06L2.56,5.92h16.69c.41,0,.75.34.75.75s-.34.75-.75.75H2.56s4.63,4.63,4.63,4.63c.29.29.29.77,0,1.06-.15.15-.34.22-.53.22s-.38-.07-.53-.22L.22,7.2s0,0,0-.01c-.01-.01-.03-.03-.04-.04,0,0-.02-.02-.02-.03Z" fill="%23fff"/></svg>') no-repeat center/calc(20 / 60 * 100%) auto rgb(var(--color-gold));
}
.swiper-button-prev {
  left: 0;
}
.swiper-button-next {
  right: 0;
  transform: rotate(180deg);
}
.swiper-button-next:after,
.swiper-button-prev:after {
  content: none;
}
.swiper[data-mode="freeswipe"] {
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="128" height="128" viewBox="0 0 128 128"><rect class="c" x="0" y="0" width="128" height="128" rx="64" ry="64" fill="%23000" opacity="0.7"/><path d="M77.46,94.59c.07-.07,6.74-7.22,6.74-19.4,0-5.09-.09-7.37-.36-11.61-.15-2.37-.71-3.9-1.7-4.69-.78-.62-1.89-.84-3.37-.68.01.26.02.53.02.79v8.55c0,.4-.32.72-.72.72s-.72-.32-.72-.72v-8.55c0-3.75-.95-5.29-3.4-5.53-1.11-.11-1.95.03-2.53.21-.33.1-.55.43-.49.78.1.66.15,1.4.15,2.23v7.93c0,.4-.32.72-.72.72s-.72-.32-.72-.72v-7.93c0-1.08-.1-1.96-.25-2.69-.11-.16-.16-.34-.13-.52-.84-2.92-2.83-2.94-3.6-2.94-1.6,0-2.75.22-3.47.42-.31.09-.53.37-.53.69v12.08c0,.4-.32.72-.72.72s-.72-.32-.72-.72v-23.79c0-2.49-1.27-3.65-3.99-3.65s-3.99,1.16-3.99,3.65v35.25c0,.4-.32.72-.72.72s-.72-.32-.72-.72v-13.47c0-.36-.26-.67-.62-.71-.59-.07-1.38-.13-2.05-.13-2.06,0-3.47,1.71-3.78,4.57,0,.05-.47,3.5-.54,7.95-.1,5.77.9,8.21,3.17,11.49,3.12,4.51,9.7,9.75,9.77,9.8.2.16.3.4.27.65l-.67,5.39c-.04.3.11.58.37.72,1.43.78,4.94,2.26,11.04,2.26,5.05,0,8.66-1.47,10.23-2.27.29-.14.44-.47.38-.78l-1.08-5.43c-.05-.23.02-.47.19-.64h0Z" fill="%23fff"/><path d="M74.41,24.21l-3.69-3.69c-.28-.28-.74-.28-1.02,0-.28.28-.28.74,0,1.02l2.46,2.46h-16.32l2.46-2.46c.28-.28.28-.74,0-1.02s-.74-.28-1.02,0l-3.69,3.69c-.28.28-.28.74,0,1.02l3.69,3.69c.14.14.32.21.51.21s.37-.07.51-.21c.28-.28.28-.74,0-1.02l-2.46-2.46h16.32l-2.46,2.46c-.28.28-.28.74,0,1.02.14.14.32.21.51.21s.37-.07.51-.21l3.69-3.69c.28-.28.28-.74,0-1.02h0Z" fill="%23fff"/></svg>') 64 64, grab !important;
}
@media screen and (max-width: 767px) {
  .swiper-button-next, .swiper-button-prev {
    /* width: 40px;
    --swiper-navigation-size: 67px; */
    width: 48px;
    --swiper-navigation-size: 48px;
  }
}

/* モーダル */
.modal {
  display: none;
}
.modal.is-open {
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(2.5%, 1fr) minmax(0, 1200px) minmax(2.5%, 1fr);
  grid-template-rows: 70px auto 70px;
  place-items: center;
  background: rgba(0, 0, 0, .8);
  overflow-y: scroll;
  overscroll-behavior-y: contain;
}
.modal[aria-hidden="true"] {
  animation: closeModal .3s ease-out;
}
.modal[aria-hidden="false"] {
  animation: openModal .3s ease-out;
}
@keyframes openModal {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes closeModal {
  0% { opacity: 1; }
  100% { opacity: 0; }
}
.modal-overlay {
  grid-column: 1 / 4;
  grid-row: 1 / 4;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.modal-container {
  grid-column: 2;
  grid-row: 2;
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 100%;
}
.modal-close {
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
  position: -webkit-sticky;
  position: sticky;
  z-index: 2;
  top: 70px;
  right: 65px;
  display: block;
  width: 69px;
  height: 105px;
  margin-left: auto;
  background: #333;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="69.94" height="105.07" viewBox="0 0 69.94 105.07"><polygon points="65.19 .71 64.48 0 34.83 29.65 5.19 0 4.48 .71 34.13 30.35 4.48 60 5.19 60.71 34.83 31.06 64.48 60.71 65.19 60 35.54 30.35 65.19 .71"/><path d="M9.48,94.53c-.25-.39-.55-.72-.9-.98-.35-.26-.74-.46-1.17-.6-.43-.14-.87-.21-1.34-.21-.85,0-1.58.16-2.2.49-.61.32-1.11.75-1.5,1.29s-.68,1.14-.86,1.81c-.19.67-.28,1.36-.28,2.07s.09,1.38.28,2.06c.19.68.47,1.28.86,1.82s.89.96,1.5,1.29c.61.32,1.34.49,2.2.49.6,0,1.14-.11,1.62-.32.48-.22.89-.51,1.24-.88.35-.37.63-.81.85-1.31.22-.5.35-1.03.41-1.61h1.22c-.08.79-.27,1.51-.56,2.14-.29.64-.66,1.18-1.12,1.62-.46.44-.99.79-1.61,1.03-.62.24-1.3.36-2.06.36-1.01,0-1.89-.18-2.66-.55s-1.39-.85-1.9-1.47-.88-1.32-1.13-2.12c-.25-.8-.38-1.65-.38-2.54s.13-1.73.38-2.54c.25-.8.63-1.51,1.13-2.13s1.14-1.11,1.9-1.48c.76-.37,1.65-.55,2.66-.55.61,0,1.21.09,1.79.27.58.18,1.11.45,1.58.8.47.35.87.79,1.19,1.3.32.52.52,1.11.6,1.78h-1.22c-.11-.49-.29-.93-.53-1.32Z"/><path d="M17.97,91.97v11.81h7.2v1.04h-8.42v-12.85h1.22Z"/><path d="M29.03,95.86c.25-.8.63-1.51,1.13-2.13s1.14-1.11,1.9-1.48c.76-.37,1.65-.55,2.65-.55s1.89.18,2.65.55c.76.37,1.39.86,1.89,1.48s.88,1.33,1.13,2.13c.25.8.38,1.65.38,2.54s-.13,1.73-.38,2.54-.63,1.51-1.13,2.12-1.13,1.1-1.89,1.47-1.64.55-2.65.55-1.89-.18-2.65-.55c-.76-.37-1.4-.85-1.9-1.47s-.88-1.32-1.13-2.12-.38-1.65-.38-2.54.13-1.73.38-2.54ZM30.16,100.46c.19.68.47,1.28.86,1.82.39.53.89.96,1.5,1.29.61.32,1.34.49,2.2.49s1.58-.16,2.19-.49c.61-.32,1.1-.75,1.49-1.29.39-.53.68-1.14.86-1.82.19-.68.28-1.36.28-2.06s-.09-1.4-.28-2.07c-.19-.67-.47-1.27-.86-1.81-.39-.53-.89-.96-1.49-1.29-.61-.32-1.33-.49-2.19-.49s-1.58.16-2.2.49c-.61.32-1.11.75-1.5,1.29-.39.53-.68,1.14-.86,1.81-.19.67-.28,1.36-.28,2.07s.09,1.38.28,2.06Z"/><path d="M47.01,102.25c.22.44.51.8.89,1.06s.82.45,1.34.57c.52.11,1.07.17,1.66.17.33,0,.7-.05,1.1-.14.4-.1.76-.25,1.11-.46.34-.21.63-.48.85-.81.23-.33.34-.73.34-1.2,0-.36-.08-.67-.24-.94-.16-.26-.37-.49-.63-.67-.26-.18-.54-.33-.85-.44-.31-.11-.62-.21-.92-.28l-2.86-.7c-.37-.1-.74-.22-1.09-.36-.35-.14-.66-.34-.93-.58-.26-.24-.48-.53-.64-.88s-.24-.77-.24-1.28c0-.31.06-.68.18-1.1.12-.42.34-.82.67-1.19.33-.37.78-.69,1.36-.94.58-.26,1.31-.39,2.21-.39.64,0,1.24.08,1.82.25.58.17,1.08.42,1.51.76.43.34.78.75,1.04,1.25.26.5.39,1.08.39,1.74h-1.22c-.02-.49-.13-.92-.33-1.29-.2-.37-.46-.67-.77-.92-.32-.25-.68-.43-1.1-.56-.41-.13-.85-.19-1.31-.19-.42,0-.83.04-1.21.14-.39.09-.73.23-1.03.43s-.53.46-.71.78c-.18.32-.27.73-.27,1.21,0,.3.05.56.15.78.1.22.24.41.42.57.18.16.39.28.62.38.23.1.48.17.75.23l3.13.77c.46.12.88.27,1.29.44.4.17.76.39,1.06.65.31.26.55.57.72.94s.26.82.26,1.35c0,.14-.02.34-.04.58-.03.24-.1.5-.22.77-.11.27-.28.54-.49.82-.21.28-.5.53-.86.75-.37.22-.82.4-1.36.54s-1.19.21-1.94.21-1.46-.09-2.11-.26c-.65-.17-1.2-.44-1.66-.8-.46-.36-.81-.82-1.05-1.39-.25-.56-.35-1.24-.31-2.03h1.22c-.01.66.09,1.21.31,1.66Z"/><path d="M69.85,91.97v1.04h-7.65v4.64h7.16v1.04h-7.16v5.08h7.74v1.04h-8.96v-12.85h8.87Z"/></svg>') no-repeat center/100% auto;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="69.94" height="105.07" viewBox="0 0 69.94 105.07"><polygon points="65.19 .71 64.48 0 34.83 29.65 5.19 0 4.48 .71 34.13 30.35 4.48 60 5.19 60.71 34.83 31.06 64.48 60.71 65.19 60 35.54 30.35 65.19 .71"/><path d="M9.48,94.53c-.25-.39-.55-.72-.9-.98-.35-.26-.74-.46-1.17-.6-.43-.14-.87-.21-1.34-.21-.85,0-1.58.16-2.2.49-.61.32-1.11.75-1.5,1.29s-.68,1.14-.86,1.81c-.19.67-.28,1.36-.28,2.07s.09,1.38.28,2.06c.19.68.47,1.28.86,1.82s.89.96,1.5,1.29c.61.32,1.34.49,2.2.49.6,0,1.14-.11,1.62-.32.48-.22.89-.51,1.24-.88.35-.37.63-.81.85-1.31.22-.5.35-1.03.41-1.61h1.22c-.08.79-.27,1.51-.56,2.14-.29.64-.66,1.18-1.12,1.62-.46.44-.99.79-1.61,1.03-.62.24-1.3.36-2.06.36-1.01,0-1.89-.18-2.66-.55s-1.39-.85-1.9-1.47-.88-1.32-1.13-2.12c-.25-.8-.38-1.65-.38-2.54s.13-1.73.38-2.54c.25-.8.63-1.51,1.13-2.13s1.14-1.11,1.9-1.48c.76-.37,1.65-.55,2.66-.55.61,0,1.21.09,1.79.27.58.18,1.11.45,1.58.8.47.35.87.79,1.19,1.3.32.52.52,1.11.6,1.78h-1.22c-.11-.49-.29-.93-.53-1.32Z"/><path d="M17.97,91.97v11.81h7.2v1.04h-8.42v-12.85h1.22Z"/><path d="M29.03,95.86c.25-.8.63-1.51,1.13-2.13s1.14-1.11,1.9-1.48c.76-.37,1.65-.55,2.65-.55s1.89.18,2.65.55c.76.37,1.39.86,1.89,1.48s.88,1.33,1.13,2.13c.25.8.38,1.65.38,2.54s-.13,1.73-.38,2.54-.63,1.51-1.13,2.12-1.13,1.1-1.89,1.47-1.64.55-2.65.55-1.89-.18-2.65-.55c-.76-.37-1.4-.85-1.9-1.47s-.88-1.32-1.13-2.12-.38-1.65-.38-2.54.13-1.73.38-2.54ZM30.16,100.46c.19.68.47,1.28.86,1.82.39.53.89.96,1.5,1.29.61.32,1.34.49,2.2.49s1.58-.16,2.19-.49c.61-.32,1.1-.75,1.49-1.29.39-.53.68-1.14.86-1.82.19-.68.28-1.36.28-2.06s-.09-1.4-.28-2.07c-.19-.67-.47-1.27-.86-1.81-.39-.53-.89-.96-1.49-1.29-.61-.32-1.33-.49-2.19-.49s-1.58.16-2.2.49c-.61.32-1.11.75-1.5,1.29-.39.53-.68,1.14-.86,1.81-.19.67-.28,1.36-.28,2.07s.09,1.38.28,2.06Z"/><path d="M47.01,102.25c.22.44.51.8.89,1.06s.82.45,1.34.57c.52.11,1.07.17,1.66.17.33,0,.7-.05,1.1-.14.4-.1.76-.25,1.11-.46.34-.21.63-.48.85-.81.23-.33.34-.73.34-1.2,0-.36-.08-.67-.24-.94-.16-.26-.37-.49-.63-.67-.26-.18-.54-.33-.85-.44-.31-.11-.62-.21-.92-.28l-2.86-.7c-.37-.1-.74-.22-1.09-.36-.35-.14-.66-.34-.93-.58-.26-.24-.48-.53-.64-.88s-.24-.77-.24-1.28c0-.31.06-.68.18-1.1.12-.42.34-.82.67-1.19.33-.37.78-.69,1.36-.94.58-.26,1.31-.39,2.21-.39.64,0,1.24.08,1.82.25.58.17,1.08.42,1.51.76.43.34.78.75,1.04,1.25.26.5.39,1.08.39,1.74h-1.22c-.02-.49-.13-.92-.33-1.29-.2-.37-.46-.67-.77-.92-.32-.25-.68-.43-1.1-.56-.41-.13-.85-.19-1.31-.19-.42,0-.83.04-1.21.14-.39.09-.73.23-1.03.43s-.53.46-.71.78c-.18.32-.27.73-.27,1.21,0,.3.05.56.15.78.1.22.24.41.42.57.18.16.39.28.62.38.23.1.48.17.75.23l3.13.77c.46.12.88.27,1.29.44.4.17.76.39,1.06.65.31.26.55.57.72.94s.26.82.26,1.35c0,.14-.02.34-.04.58-.03.24-.1.5-.22.77-.11.27-.28.54-.49.82-.21.28-.5.53-.86.75-.37.22-.82.4-1.36.54s-1.19.21-1.94.21-1.46-.09-2.11-.26c-.65-.17-1.2-.44-1.66-.8-.46-.36-.81-.82-1.05-1.39-.25-.56-.35-1.24-.31-2.03h1.22c-.01.66.09,1.21.31,1.66Z"/><path d="M69.85,91.97v1.04h-7.65v4.64h7.16v1.04h-7.16v5.08h7.74v1.04h-8.96v-12.85h8.87Z"/></svg>') no-repeat center/100% auto;
  cursor: pointer;
}
.modal-content {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  z-index: 1;
  width: 100%;
  background: #fff;
}
[data-micromodal-trigger],
[data-open-modal] {
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .modal.is-open {
    grid-template-columns: minmax(calc(30 / 380 * 100%), 1fr) minmax(0, 560px) minmax(calc(30 / 380 * 100%), 1fr);
  }
  .modal-close {
    top: 20px;
    right: 14px;
    width: 39px;
    height: 48px;
    -webkit-mask-size: contain;
    mask-size: contain;
  }
}

/* スワイプ可能アイコン */
.scroll-hint-icon {
  all: initial;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: url(../img/common/pc/icon_scrollCaution.svg) no-repeat center/202px auto rgba(51,51,51,.7); */
  opacity: 0;
  transition: opacity .3s;
}
.scroll-hint-icon-wrap.is-active .scroll-hint-icon {
  opacity: 1;
}
.scroll-hint-icon:before,
.scroll-hint-icon:after,
.scroll-hint-text {
  display: none;
}

/* 画像拡大モーダル */
.pswp__img {
  object-fit: contain;
  background: #fff;
}
.pswp__button,
.pswp__button:hover,
.pswp__button:active,
.pswp__button:focus {
  width: 60px;
  opacity: 1;
  box-sizing: border-box;
  border: 1px solid #fff;
}
.pswp__button--zoom,
.pswp__button--zoom:hover,
.pswp__button--zoom:active,
.pswp__button--zoom:focus {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 14 14"><polygon points="14 6.5 7.5 6.5 7.5 0 6.5 0 6.5 6.5 0 6.5 0 7.5 6.5 7.5 6.5 14 7.5 14 7.5 7.5 14 7.5 14 6.5" fill="%23fff"/></svg>') no-repeat center/40% auto rgba(0, 0, 0, .3);
}
.pswp__button--zoom {
  margin-right: -1px;
}
.pswp__button--close,
.pswp__button--close:hover,
.pswp__button--close:active,
.pswp__button--close:focus {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="10.61" height="10.61" viewBox="0 0 10.61 10.61"><polygon points="9.9 0 5.3 4.6 .71 0 0 .71 4.6 5.3 0 9.9 .71 10.61 5.3 6.01 9.9 10.61 10.61 9.9 6.01 5.3 10.61 .71 9.9 0" fill="%23fff"/></svg>') no-repeat center/40% auto rgba(0, 0, 0, .3);
}
.pswp__button--close {
  margin-right: 0;
}
.pswp__button svg {
  visibility: hidden;
}
.expand {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .expand {
    position: relative;
    z-index: 1;
    display: block;
    pointer-events: auto;
  }
  .expand::before {
    content: "";
    position: absolute;
    z-index: 100;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 14 14"><polygon points="14 6.5 7.5 6.5 7.5 0 6.5 0 6.5 6.5 0 6.5 0 7.5 6.5 7.5 6.5 14 7.5 14 7.5 7.5 14 7.5 14 6.5" fill="%23fff"/></svg>') no-repeat center/50% auto rgb(var(--color-gold));
  }
}

/* 見出し、コピー、注釈 */
.enheading {
  font-size: clamp(26px, calc(36 / 1200 * 100vw), 36px);
  letter-spacing: .4em;
  line-height: 1.5 !important;
  line-height: 1.5cap !important;
}
.copy {
  font-size: clamp(12px, calc(16 / 1200 * 100vw), 16px);
  line-height: 2.5;
}
.copy2 {
  font-size: clamp(11px, calc(14 / 1200 * 100vw), 14px);
  line-height: 2.285714286;
}
.caution {
  font-size: clamp(10px, calc(12 / 1200 * 100vw), 12px);
  line-height: 2;
}
ul.caution {
  margin-block: calc(var(--margin-top) + var(--leading-trim)) calc(var(--margin-bottom) + var(--leading-trim));
}
.caution-item {
  box-sizing: border-box;
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (max-width: 767px) {
  .enheading {
    font-size: 20px;
  }
  .copy {
    font-size: 14px;
    line-height: 2.428571429;
  }
  .copy2 {
    font-size: 12px;
    line-height: 2.333333333;
  }
  .caution {
    font-size: 10px;
  }
}

/* LINE UP */
.lineup {
  padding-block: 200px;
}
/* .lineup__heading {
} */
.lineup__list {
  margin-block: 120px -126px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: start;
  align-items: start;
  gap: 0 calc(80 / 1600 * 100%);
}
.lineup__list__item {
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: subgrid;
  grid-row: span 6;
  align-items: start;
  gap: 0;
  margin-bottom: 126px;
}
.lineup__list__item__slide {
  width: 100%;
  overflow: clip visible;
}
/* .lineup__list__item__slide__list {
}
.lineup__list__item__slide__list__item {
} */
.lineup__list__item__slide__pagination {
  top: calc(100% + 30px);
  bottom: auto !important;
  display: flex;
  justify-content: flex-end;
  align-items: start;
  gap: 12px;
}
.lineup__list__item__slide__pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0 !important;
  background: linear-gradient(0deg, rgba(var(--color-gold), .3), rgba(var(--color-gold), .3)) no-repeat center/100% 100% #fff;
  opacity: 1;
}
.lineup__list__item__slide__pagination .swiper-pagination-bullet-active {
  background: rgb(var(--color-gold));
}
.lineup__list__item__heading {
  font-size: clamp(16px, calc(24 / 1200 * 100vw), 24px);
  line-height: 1.666666667;
  --margin-top: 40px;
}
.lineup__list__item__desc {
  margin-top: 30px;
}
.lineup__list__item__desc__copy {
  font-size: clamp(12px, calc(16 / 1200 * 100vw), 16px);
  line-height: 2.125;
}
.lineup__list__item__desc__copy sup {
  font-size: max(8px, 58.3%);
}
.lineup__list__item__info {
  margin-top: 30px;
  grid-template-columns: minmax(30%, auto) minmax(0, 1fr);
  align-items: stretch;
}
.lineup__list__item__info__item {
  grid-template-columns: subgrid;
  grid-column: span 2;
}
.lineup__list__item__info__item + .lineup__list__item__info__item {
  border-top: 1px solid rgb(var(--color-palegray));
}
.lineup__list__item__info__item__head {
  box-sizing: border-box;
  border-right: 1px solid rgb(var(--color-palegray));
  padding: calc((18 / 14 * 1em) + var(--leading-trim)) calc(25 / 14 * 1em);
  font-size: clamp(11px, calc(14 / 1200 * 100vw), 14px);
  line-height: 1.714285714;
  background: linear-gradient(0deg, rgba(var(--color-gold), .2), rgba(var(--color-gold), .2)) no-repeat center/100% 100% #fff;
}
.lineup__list__item__info__item__body {
  box-sizing: border-box;
  padding: calc((18 / 14 * 1em) + var(--leading-trim)) .25em calc((18 / 14 * 1em) + var(--leading-trim)) calc(25 / 14 * 1em);
  font-size: clamp(11px, calc(14 / 1200 * 100vw), 14px);
  line-height: 1.714285714;
}
.lineup__list__item__info__item__body small {
  font-size: calc(12 / 14 * 100%);
}
.lineup__list__item__access {
  margin-top: 30px;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 20px calc(25 / 14 * 1em);
  font-size: clamp(11px, calc(14 / 1200 * 100vw), 14px);
  line-height: 1.714285714;
}
.lineup__list__item__access__heading {
  font-size: 100%;
}
.lineup__list__item__access__copy {
  font-size: 100%;
  margin-right: -1em;
}
.lineup__list__item__cv {
  margin-top: 30px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 132px), 1fr));
  justify-content: start;
  align-items: stretch;
  gap: 12px;
}
.lineup__list__item__cv__item {
  width: 100%;
  min-height: calc(46 / 16 * 1em);
  place-items: center;
  box-sizing: border-box;
  padding: .5em;
  font-size: clamp(12px, calc(16 / 1200 * 100vw), 16px);
  line-height: 1.25;
}
.lineup__list__item__cv__item--entry {
  background: rgb(var(--color-gray));
}
.lineup__list__item__cv__item--reserve {
  background: rgb(var(--color-gold));
}
.lineup__list__item__cv__item--site {
  background: rgb(var(--color-purple));
}
@media screen and (min-width: 768px) and (max-width: 1500px) {
  .lineup__list__item__cv {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lineup__list__item__cv__item--site {
    grid-column: span 2;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .lineup__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 767px) {
  .lineup {
    padding-block: 100px;
  }
  .lineup__list {
    margin-block: 60px -60px;
    grid-template-columns: 100%;
    gap: 0;
  }
  .lineup__list__item {
    grid-template-rows: auto;
    grid-row: initial;
    margin-bottom: 60px;
  }
  .lineup__list__item__slide__pagination {
    top: calc(100% + 34px);
    gap: 8px;
  }
  .lineup__list__item__slide__pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
  .lineup__list__item__heading {
    font-size: 16px;
    --margin-top: 30px;
  }
  .lineup__list__item__desc {
    margin-top: 20px;
  }
  .lineup__list__item__desc__copy {
    font-size: 12px;
    line-height: 2;
  }
  .lineup__list__item__info {
    margin-top: 25px;
  }
  .lineup__list__item__info__item__head {
    padding: calc((10 / 10 * 1em) + var(--leading-trim)) calc(8 / 10 * 1em);
    font-size: 10px;
  }
  .lineup__list__item__info__item__body {
    padding: calc((10 / 10 * 1em) + var(--leading-trim)) .25em calc((10 / 10 * 1em) + var(--leading-trim)) calc(10 / 10 * 1em);
    font-size: 10px;
  }
  .lineup__list__item__info__item__body small {
    font-size: calc(8 / 10 * 100%);
  }
  .lineup__list__item__access {
    margin-top: 20px;
    gap: 10px;
    font-size: 10px;
    line-height: 1.8;
  }
  .lineup__list__item__cv {
    margin-top: 20px;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 90px), 1fr));
    gap: 10px;
  }
  .lineup__list__item__cv__item {
    min-height: calc(40 / 11 * 1em);
    padding: .25em;
    font-size: 11px;
  }
}

/* 下層誘導 */
.common-suggest {
  padding-block: 200px 100px;
  background: #333;
}
.common-suggest__heading {
  font-size: clamp(30px, calc(60 / 1200 * 100vw), 60px);
  letter-spacing: .4em;
}
.common-suggest__content {
  margin-top: 100px;
}
.common-suggest__content__list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  justify-content: start;
  align-items: stretch;
  gap: 40px calc(40 / 1600 * 100%);
}
.common-suggest__content__list__item {
  width: 100%;
}
.common-suggest__content__list__item__link {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 370 / 544;
  grid-template-columns: calc(32 / 370 * 100%) minmax(0, 1fr) calc(32 / 370 * 100%);
  /* grid-template-rows: 36px 1fr 22px; */
  grid-template-rows: 36px 1fr 40px;
  align-items: start;
}
.common-suggest__content__list__item__link__photo {
  position: absolute;
  z-index: -1;
  inset: 0;
  overflow: hidden;
}
.common-suggest__content__list__item__link__photo::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: #000;
  opacity: .3;
}
.common-suggest__content__list__item__link__photo img {
  height: 100%;
  object-fit: cover;
}
.common-suggest__content__list__item__link__photo .p-caption {
  z-index: 2;
}
.common-suggest__content__list__item__link__catch {
  grid-column: 2;
  grid-row: 2;
  font-size: clamp(12px, calc(18 / 1200 * 100vw), 18px);
  writing-mode: vertical-lr;
  opacity: .6;
}
.common-suggest__content__list__item__link__desc {
  grid-column: 2;
  grid-row: 2;
  justify-self: end;
  align-self: end;
}
.common-suggest__content__list__item__link__desc__heading {
  grid-template-columns: auto minmax(0, auto);
  justify-content: end;
  align-items: center;
  gap: 0 calc(16 / 24 * 1em);
  font-size: clamp(16px, calc(24 / 1200 * 100vw), 24px);
  translate: .2em;
}
.common-suggest__content__list__item__link__desc__heading::before {
  content: "";
  display: block;
  width: calc(15 / 24 * 1em);
  height: calc(10 / 24 * 1em);
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="8" viewBox="0 0 12 8"><path d="M11.91,4.27s0-.01.01-.02c0,0,0-.01.01-.02,0,0,0-.01,0-.02,0,0,0-.01.01-.02,0,0,0-.01,0-.02,0,0,0-.01,0-.02,0,0,0-.01,0-.02,0,0,0-.01,0-.02,0,0,0-.01,0-.02,0,0,0-.02,0-.03,0,0,0-.01,0-.02,0-.03,0-.06,0-.09,0,0,0-.01,0-.02,0,0,0-.02,0-.03,0,0,0-.01,0-.02,0,0,0-.01,0-.02,0,0,0-.01,0-.02,0,0,0-.01,0-.02,0,0,0-.01,0-.02,0,0,0-.01-.01-.02,0,0,0-.01,0-.02,0,0,0-.01-.01-.02,0,0,0-.01-.01-.02,0,0,0-.01-.01-.02,0,0-.02-.02-.02-.03,0,0,0,0,0,0L8.32.13c-.18-.18-.46-.18-.64,0-.18.18-.18.46,0,.64l2.78,2.78H.45c-.25,0-.45.2-.45.45s.2.45.45.45h10.01l-2.78,2.78c-.18.18-.18.46,0,.64.09.09.2.13.32.13s.23-.04.32-.13l3.55-3.55s0,0,0,0c0,0,.02-.02.02-.03,0,0,0-.01.01-.02Z" fill="%23fff"/></svg>') no-repeat center/100% auto;
}
.common-suggest__content__list__item--soon .common-suggest__content__list__item__link {
  pointer-events: none;
}
.common-suggest__content__list__item--soon .common-suggest__content__list__item__link__photo::before {
  opacity: 0;
}
.common-suggest__content__list__item--soon .common-suggest__content__list__item__link__photo img {
  opacity: .1;
  filter: grayscale(1);
}
.common-suggest__content__list__item--soon .common-suggest__content__list__item__link__desc::before {
  content: "";
  display: block;
  width: calc(109px, calc(149 / 1200 * 100vw), 149px);
  aspect-ratio: 149 / 21;
  margin-bottom: 22px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="147.34" height="12.12" viewBox="0 0 147.34 12.12"><path d="M8.63,1.15c.79.77,1.23,1.64,1.32,2.61h-1.52c-.17-.74-.5-1.33-1.01-1.76s-1.21-.65-2.12-.65c-1.11,0-2.01.4-2.69,1.19s-1.02,2.01-1.02,3.66c0,1.34.31,2.44.92,3.27s1.54,1.25,2.76,1.25c1.13,0,1.98-.44,2.57-1.32.31-.46.54-1.07.7-1.83h1.52c-.13,1.21-.58,2.22-1.33,3.04-.9.98-2.12,1.48-3.65,1.48-1.32,0-2.42-.4-3.32-1.21-1.18-1.07-1.77-2.72-1.77-4.95,0-1.69.44-3.08,1.33-4.17.96-1.18,2.28-1.77,3.96-1.77,1.44,0,2.55.38,3.34,1.15Z" fill="%23fff"/><path d="M24.72,1.95c.76,1.02,1.14,2.32,1.14,3.9,0,1.71-.43,3.14-1.3,4.27-1.02,1.33-2.48,2-4.37,2-1.77,0-3.15-.58-4.16-1.75-.9-1.12-1.35-2.55-1.35-4.27,0-1.55.39-2.88,1.16-3.98.99-1.42,2.45-2.12,4.39-2.12s3.53.65,4.5,1.95ZM23.35,9.27c.61-.98.92-2.11.92-3.39,0-1.35-.35-2.44-1.06-3.26s-1.67-1.24-2.89-1.24-2.16.41-2.91,1.22-1.12,2.02-1.12,3.61c0,1.27.32,2.34.96,3.22s1.69,1.31,3.13,1.31,2.36-.49,2.97-1.47Z" fill="%23fff"/><path d="M30.88.31h2.23l3.3,9.7L39.68.31h2.21v11.48h-1.48v-6.77c0-.23,0-.62.02-1.16,0-.54.02-1.12.02-1.74l-3.28,9.68h-1.54l-3.31-9.68v.35c0,.28,0,.71.02,1.29s.02,1,.02,1.27v6.77h-1.48V.31Z" fill="%23fff"/><path d="M47.79.31h1.57v11.48h-1.57V.31Z" fill="%23fff"/><path d="M55.09.31h1.83l5.72,9.27V.31h1.48v11.48h-1.75l-5.81-9.26v9.26h-1.48V.31Z" fill="%23fff"/><path d="M77.48.64c1.12.6,1.81,1.65,2.06,3.15h-1.54c-.18-.84-.56-1.45-1.14-1.83-.58-.38-1.3-.57-2.18-.57-1.04,0-1.92.4-2.63,1.2s-1.07,1.98-1.07,3.56c0,1.36.29,2.48.88,3.33.59.86,1.54,1.29,2.87,1.29,1.02,0,1.86-.3,2.52-.9s1.01-1.57,1.02-2.92h-3.59v-1.29h5.04v6.14h-1l-.38-1.48c-.52.58-.98.98-1.38,1.2-.67.38-1.53.58-2.56.58-1.34,0-2.49-.44-3.45-1.32-1.05-1.1-1.58-2.62-1.58-4.55s.51-3.45,1.54-4.59c.98-1.08,2.24-1.62,3.79-1.62,1.06,0,1.98.21,2.76.62Z" fill="%23fff"/><path d="M94.15,8.09c.04.65.18,1.18.44,1.59.5.76,1.37,1.14,2.63,1.14.56,0,1.07-.08,1.54-.25.89-.32,1.34-.9,1.34-1.73,0-.62-.19-1.07-.57-1.34-.38-.26-.98-.49-1.8-.68l-1.51-.35c-.98-.23-1.68-.48-2.09-.76-.71-.48-1.06-1.2-1.06-2.15,0-1.03.35-1.88,1.04-2.54s1.68-.99,2.95-.99c1.17,0,2.17.29,2.98.87s1.23,1.51,1.23,2.79h-1.46c-.08-.61-.24-1.09-.48-1.41-.45-.6-1.22-.9-2.31-.9-.88,0-1.51.19-1.89.58s-.58.83-.58,1.34c0,.56.23.97.68,1.23.3.17.97.38,2.02.62l1.56.37c.75.18,1.33.42,1.74.73.71.54,1.06,1.32,1.06,2.34,0,1.27-.45,2.18-1.35,2.73-.9.55-1.95.82-3.14.82-1.39,0-2.48-.36-3.27-1.09-.79-.72-1.17-1.71-1.16-2.95h1.46Z" fill="%23fff"/><path d="M116.46,1.95c.76,1.02,1.14,2.32,1.14,3.9,0,1.71-.43,3.14-1.3,4.27-1.02,1.33-2.48,2-4.37,2-1.77,0-3.15-.58-4.16-1.75-.9-1.12-1.35-2.55-1.35-4.27,0-1.55.39-2.88,1.16-3.98.99-1.42,2.45-2.12,4.39-2.12s3.53.65,4.5,1.95ZM115.09,9.27c.61-.98.92-2.11.92-3.39,0-1.35-.35-2.44-1.06-3.26-.71-.82-1.67-1.24-2.89-1.24s-2.16.41-2.91,1.22-1.12,2.02-1.12,3.61c0,1.27.32,2.34.96,3.22.64.87,1.69,1.31,3.13,1.31s2.36-.49,2.97-1.47Z" fill="%23fff"/><path d="M132.1,1.95c.76,1.02,1.14,2.32,1.14,3.9,0,1.71-.43,3.14-1.3,4.27-1.02,1.33-2.48,2-4.37,2-1.77,0-3.15-.58-4.16-1.75-.9-1.12-1.35-2.55-1.35-4.27,0-1.55.39-2.88,1.16-3.98.99-1.42,2.45-2.12,4.39-2.12s3.53.65,4.5,1.95ZM130.73,9.27c.61-.98.92-2.11.92-3.39,0-1.35-.35-2.44-1.06-3.26s-1.67-1.24-2.89-1.24-2.16.41-2.91,1.22-1.12,2.02-1.12,3.61c0,1.27.32,2.34.96,3.22s1.69,1.31,3.13,1.31,2.36-.49,2.97-1.47Z" fill="%23fff"/><path d="M138.3.31h1.83l5.72,9.27V.31h1.48v11.48h-1.75l-5.81-9.26v9.26h-1.48V.31Z" fill="%23fff"/></svg>') no-repeat center/100% auto;
}
@media (any-hover: hover) {
  .common-suggest__content__list__item__link__photo img {
    transition: scale .5s ease-out;
  }
  .common-suggest__content__list__item__link:hover .common-suggest__content__list__item__link__photo img {
    scale: 1.1;
  }
  .common-suggest__content__list__item__link:hover .common-suggest__content__list__item__link__desc__heading::before {
    animation: chevron .5s linear;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .common-suggest__content__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .common-suggest__content__list__item__link {
    aspect-ratio: 1 / 1;
  }
}
@media screen and (max-width: 767px) {
  .common-suggest {
    padding-block: 100px 60px;
  }
  .common-suggest__heading {
    font-size: 26px;
  }
  .common-suggest__content {
    margin-top: 60px;
    margin-inline: calc(50% - var(--window-half-width));
    width: calc(var(--window-half-width) * 2);
    max-width: none;
    display: grid;
    grid-template-columns: calc(30 / 380 * 100%) auto calc(30 / 380 * 100%);
    align-items: stretch;
    overflow: auto;
    scroll-snap-type: x mandatory;
  }
  .common-suggest__content__list {
    grid-column: 2;
    display: flex;
    gap: 20px;
  }
  .common-suggest__content__list__item {
    width: calc((222 / 380) * (var(--window-half-width) * 2));
    scroll-snap-align: center;
  }
  .common-suggest__content__list__item__link {
    aspect-ratio: 222 / 326;
    grid-template-columns: calc(20 / 222 * 100%) minmax(0, 1fr) calc(20 / 222 * 100%);
    /* grid-template-rows: 22px 1fr 18px; */
    grid-template-rows: 22px 1fr 32px;
  }
  .common-suggest__content__list__item__link__catch {
    font-size: 11px;
  }
  .common-suggest__content__list__item__link__desc__heading {
    gap: 0 calc(12 / 14 * 1em);
    font-size: 14px;
  }
  .common-suggest__content__list__item__link__desc__heading::before {
    width: calc(9 / 14 * 1em);
    height: calc(6 / 14 * 1em);
  }
  .common-suggest__content__list__item--soon .common-suggest__content__list__item__link__desc::before {
    width: 90px;
    margin-bottom: 14px;
  }
}

/* 下層ページのKV */
.kv {
  position: relative;
  z-index: -1;
  background: #333;
}
.kv::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 100%;
  left: 0;
  width: 100%;
  height: calc(100% + 1px);
  background: #fff;
}
.kv__content {
  position: relative;
  z-index: 1;
  opacity: 0;
}
.kv__content__photo {
  position: relative;
  z-index: 1;
}
.kv__content__desc {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  margin-bottom: clamp(50px, calc(150 / 1920 * 100%), 150px);
  margin-left: clamp(60px, calc(160 / 1920 * 100%), 160px);
}
.kv__content__desc__heading {
  font-size: clamp(58px, calc(88 / 1200 * 100vw), 88px);
  letter-spacing: .5em;
}
.kv__content__desc__copy {
  --margin-top: calc(40 / 18 * 1em);
  grid-template-columns: auto minmax(0, auto);
  justify-content: start;
  align-items: center;
  gap: 0 calc(30 / 18 * 1em);
  font-size: clamp(14px, calc(18 / 1200 * 100vw), 18px);
}
.kv__content__desc__copy::before {
  content: "";
  display: block;
  width: calc(58 / 18 * 1em);
  height: 1px;
  background: rgba(var(--color-white), .6);
}
@media screen and (max-width: 767px) {
  .kv__content__desc {
    margin-bottom: calc(40 / 380 * 100%);
    margin-left: calc(40 / 380 * 100%);
  }
  .kv__content__desc__heading {
    font-size: 36px;
  }
  .kv__content__desc__copy {
    --margin-top: calc(20 / 12 * 1em);
    gap: 0 calc(15 / 12 * 1em);
    font-size: 12px;
  }
  .kv__content__desc__copy::before {
    width: calc(30 / 12 * 1em);
  }
}



/*
  フッター
*/
/* .footer {
} */
.footer__content {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}
.footer__content__kv {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
}
.footer__content__kv img {
  height: 100%;
  object-fit: cover;
}
.footer__content__desc {
  grid-template-columns: minmax(0, auto);
  justify-content: center;
  align-content: center;
  align-items: center;
  box-sizing: border-box;
  padding: 150px 40px;
  background: #EFEFEF;
}
.footer__content__desc__heading {
  max-width: 673px;
}
.footer__content__desc__info {
  margin-top: 80px;
  grid-template-columns: minmax(0, auto) minmax(0, auto);
  justify-content: start;
  align-items: start;
  gap: 0 75px;
}
.footer__content__desc__info__item:nth-of-type(3) {
  grid-column: 1 / 3;
}
.footer__content__desc__info__item__heading {
  grid-template-columns: auto auto;
  justify-content: start;
  align-items: center;
  gap: 0 calc(20 / 14 * 1em);
  font-size: clamp(11px, calc(14 / 1200 * 100vw), 14px);
}
.footer__content__desc__info__item__heading::before {
  content: "";
  display: block;
  width: calc(20 / 14 * 1em);
  height: 1px;
  background: currentColor;
  opacity: .5;
}
.footer__content__desc__info__item__copy {
  --margin-top: 40px;
  font-size: clamp(11px, calc(14 / 1200 * 100vw), 14px);
  line-height: 1.714285714;
}
.footer__content__desc__info__item__caution {
  --margin-top: 25px;
  font-size: clamp(10px, calc(11 / 1200 * 100vw), 11px);
  line-height: 1.818181818;
}
.footer__content__desc__info__item__caution + .footer__content__desc__info__item__caution {
  --margin-top: 10px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .footer__content__desc__info {
    grid-template-columns: 100%;
    gap: 40px 0;
  }
  .footer__content__desc__info__item:nth-of-type(3) {
    grid-column: 1 / 2;
  }
  .footer__content__desc__info__item__caution br {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .footer__content {
    grid-template-columns: 100%;
    align-items: start;
  }
  .footer__content__kv img {
    height: auto;
  }
  .footer__content__desc {
    align-content: start;
    align-items: start;
    padding: 60px 30px;
  }
  .footer__content__desc__heading {
    max-width: 280px;
  }
  .footer__content__desc__info {
    margin-top: 30px;
    grid-template-columns: minmax(0, auto);
    justify-content: center;
    justify-items: start;
    gap: 30px 0;
  }
  .footer__content__desc__info__item:nth-of-type(3) {
    grid-column: auto;
  }
  .footer__content__desc__info__item__heading {
    gap: 0 calc(15 / 12 * 1em);
    font-size: 12px;
  }
  .footer__content__desc__info__item__heading::before {
    width: calc(20 / 12 * 1em);
  }
  .footer__content__desc__info__item__copy {
    --margin-top: 20px;
    font-size: 12px;
    line-height: 1.833333333;
  }
  .footer__content__desc__info__item__caution {
    --margin-top: 0px;
    font-size: 10px;
    line-height: 1.8;
    box-sizing: border-box;
    padding-left: 1em;
    text-indent: -1em;
  }
  .footer__content__desc__info__item__caution + .footer__content__desc__info__item__caution {
    --margin-top: 1.25em;
  }
}



/*
  フェードインアニメーション
*/
.fi-u, .fi-d, .fi, .fi-r, .fi-l { visibility: hidden; }

/* fade in */
@keyframes fadeIn { from{ opacity: 0; } to{ opacity: 1; } }
.fi.faded { animation-name: fadeIn; animation-fill-mode: both; animation-duration: 1s; visibility: visible !important; opacity: 0; }

/* fade in up */
@keyframes fadeInUp { from{ opacity: 0; transform: translate3d(0, 20px, 0); } to{ opacity: 1; transform: none; } }
.fi-u.faded { animation-name: fadeInUp; animation-fill-mode: both; animation-duration: 1.5s; visibility: visible !important; opacity: 0; }

/* fade in down */
@keyframes fadeInDown { from{ opacity: 0; transform: translate3d(0, -20px, 0); } to{ opacity: 1; transform: none; } }
.fi-d.faded { animation-name: fadeInDown; animation-fill-mode: both; animation-duration: 1.5s; visibility: visible !important; opacity: 0; }

/* fade in right */
@keyframes fadeInRight { from{ opacity: 0; transform: translate(30px,0); } to{ opacity: 1; transform: none; } }
.fi-r.faded { animation-name: fadeInRight; animation-fill-mode: both; animation-duration: 1.5s; visibility: visible !important; opacity: 0; }

/* fade in left */
@keyframes fadeInLeft { from{ opacity: 0; transform: translate(-30px,0); } to{ opacity: 1; transform: none; } }
.fi-l.faded { animation-name: fadeInLeft; animation-fill-mode: both; animation-duration: 1.5s; visibility: visible !important; opacity: 0; }



/*
  印刷用
*/
@media print {
  body, html {
    zoom: .8 !important;
  }
}