@charset "UTF-8";

/* ====================================================
【色設定】
==================================================== */
:root {
  --color_base: #050505;
  --color_text: #989898;
  --color_link: #fff;
  --color_border: #e9e9e9;
  --color_primary: #4a8eff;
  --color_secondary: #FFB236;
  --color_white: #fff;
  --color_black: #333;
  --color_gray: #989898;
  --color_gray_light: #F6F6F6;
  --color_gray_dark: #777;
}

/* ====================================================
【アニメーション】
==================================================== */
:root {
  --ease: cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* ====================================================
【サイト全体の設定】
==================================================== */
@font-face {
  font-family: "Local Noto Sans JP";
  src: local("Noto Sans JP"), local("Noto Sans CJK JP Regular");
}

:root {
  --font_base:
    "Roboto",
    "Local Noto Sans JP",
    "Noto Sans JP",
    "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    sans-serif;
  --font_jp: "Noto Sans JP", serif;
  --font_en: "Roboto", serif;
  --font_weight: normal;
  --font_size: 0.875rem;
  --line_height: calc(26 / 14);
  --letter_spacing: .05em;
}

@media (max-width: 800px) {
  :root {
    --font_size: 0.875rem;
    --line_height: 1.6;
  }
}

/*-----------------------------------------------------------
Reset
-----------------------------------------------------------*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: none;
  -moz-tab-size: 2;
  -o-tab-size: 2;
  tab-size: 2;
}

body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeSpeed;
  min-block-size: 100%;
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "palt";
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

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

:where(button) {
  all: unset;
  box-sizing: border-box;
}

:where(a, input, button, textarea, select) {
  touch-action: manipulation;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}

textarea {
  resize: block;
}

:where(button, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:focus-visible) {
  outline: 2px solid #2e2c29;
  outline-offset: 2px;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(ul, ol, li) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg, video) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(em, dfn) {
  font-style: inherit;
}

sup {
  vertical-align: text-top;
  line-height: 1;
}

sub {
  vertical-align: text-bottom;
  line-height: 1;
}

hr {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

::-moz-selection {
  background: #d4dcd6;
}

::selection {
  background: #d4dcd6;
}

mark {
  background: transparent;
  font-style: normal;
}

/*-----------------------------------------------------------
Bace
-----------------------------------------------------------*/
body {
  padding-top: 150px;
  background-color: var(--color_base);
  color: var(--color_text);
  font-family: var(--font_base);
  font-size: var(--font_size);
  font-weight: var(--font_weight);
  letter-spacing: var(--letter_spacing);
  line-height: var(--line_height);
}

@media (max-width: 800px) {
  body {
    padding-top: 80px;
  }

  :has(.hero) body {
    padding-top: 60px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  letter-spacing: 0.05em;
}

[lang=en] {
  font-family: var(--font_en);
  font-weight: 400;
}

.link {
  display: inline-block;
  text-decoration: underline;
  word-break: break-all;
  position: relative;
  text-wrap: pretty;
}

.link[target=_blank]::after {
  content: "";
  display: inline-block;
  background: url(../images/share/icon_out.svg) no-repeat center/contain;
  width: 12px;
  height: 10px;
  margin-left: 5px;
}

.link:is(:hover, :focus) {
  text-decoration: none;
}

.no-link {
  pointer-events: none;
}

a[href^=tel] {
  cursor: default;
}

:target {
  scroll-margin-top: 50px;
}

@media (max-width: 800px) {
  :target {
    scroll-margin-top: 50px;
  }
}

.container {
  margin: 0 auto;
  max-width: 1024px;
  width: 90%;
}

.container.wide {
  max-width: 1200px;
}

.container.ultra-wide {
  max-width: 1540px;
}

.container.narrow {
  max-width: 900px;
}

/*ボタン*/
.btn-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color_gray);
  font-size: 0.8125rem;
  text-align: center;
  line-height: 1;
  padding: 10px 25px;
  min-height: 45px;
  min-width: 240px;
  transition: border-color 0.2s, color 0.2s;
}

@media (any-hover: hover) {
  .btn-more:hover {
    border-color: var(--color_white);
    color: var(--color_white);
  }
}

.btn-pdf {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  border: 1px solid var(--color_gray);
  font-size: 0.8125rem;
  text-align: center;
  line-height: 1;
  padding: 10px 25px;
  min-height: 45px;
  min-width: 240px;
  transition: border-color 0.2s, color 0.2s;
}

.btn-pdf::before {
  content: "";
  background-color: var(--color_gray);
  -webkit-mask: url(../images/share/icon_pdf.svg) no-repeat center/contain;
  mask: url(../images/share/icon_pdf.svg) no-repeat center/contain;
  width: 15px;
  height: 18px;
  display: inline-block;
  transition: background-color 0.2s;
}

@media (any-hover: hover) {
  .btn-pdf:hover {
    border-color: var(--color_white);
    color: var(--color_white);
  }

  .btn-pdf:hover::before {
    background-color: var(--color_white);
  }
}

.btn-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.btn-wrap.center {
  justify-content: center;
}

/*-----------------------------------------------------------
Header
-----------------------------------------------------------*/
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 15px 2.5%;
  background: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.h-utility {
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 800px) {
  .header-inner {
    gap: 15px;
    padding: 10px 2.5%;
    min-height: 60px;
  }

  .h-logo {
    max-width: 35px;
  }

  .h-utility {
    gap: 15px;
  }
}

/*------------
Gnavi
--------------*/
.gnavi {
  display: flex;
  align-items: center;
  gap: 30px;
}

.gnavi-links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 45px;
  line-height: 1;
}

.gnavi-links a {
  display: inline-block;
  color: var(--color_white);
  background-image: linear-gradient(currentcolor, currentcolor);
  background-position: 100% 100%;
  background-size: 0% 1px;
  background-repeat: no-repeat;
  transition: background-size 0.5s ease;
  padding-bottom: 0.02rem;
}

@media (any-hover: hover) {
  .gnavi-links a:hover {
    background-position: 0 100%;
    background-size: 100% 1px;
  }
}

@media (max-width: 800px) {
  .gnavi-links {
    display: none;
  }
}

/*------------
Gnavi Drawer
--------------*/
.gnavi-menu-btn,
.gnavi-drawer {
  display: none;
}

@media (max-width: 800px) {
  html.is-open {
    height: 100%;
    overflow: hidden;
  }

  .gnavi-menu-btn {
    cursor: pointer;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 110;
  }

  .gnavi-menu-btn-line {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 15px;
  }

  .gnavi-menu-btn-line span {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--color_white);
    border-radius: 1px;
    transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
  }

  .gnavi-menu-btn-line span:nth-child(1) {
    top: 0;
  }

  .gnavi-menu-btn-line span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }

  .gnavi-menu-btn-line span:nth-child(3) {
    top: auto;
    bottom: 0;
  }

  .gnavi-menu-btn.is-open .gnavi-menu-btn-line span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(35deg);
  }

  .gnavi-menu-btn.is-open .gnavi-menu-btn-line span:nth-child(2) {
    opacity: 0;
    transform: translateY(-50%) scaleX(0);
  }

  .gnavi-menu-btn.is-open .gnavi-menu-btn-line span:nth-child(3) {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%) rotate(-35deg);
  }

  .gnavi-drawer {
    display: block;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    pointer-events: none;
    position: fixed;
    inset: 0;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.5s;
    will-change: opacity;
    z-index: 50;
  }

  .gnavi-drawer.is-open {
    opacity: 1;
    pointer-events: all;
  }

  .gnavi-drawer-container {
    background-color: #000;
    display: grid;
    align-items: start;
    gap: 5%;
    padding: 150px 2.5%;
    width: 100%;
    height: 100%;
    text-align: center;
    overflow-y: auto;
  }

  .drawer-links {
    display: grid;
    gap: 45px;
    font-size: 0.9375rem;
    font-family: var(--font_en);
    color: var(--color_white);
    line-height: 1;
  }

  .drawer-links a {
    display: inline-block;
  }
}

/*-----------------------------------------------------------
Footer
-----------------------------------------------------------*/
.footer {
  margin-top: auto;
  padding: 100px 0;
}

@media (max-width: 800px) {
  .footer {
    padding: 50px 0;
  }
}

.copyright {
  color: var(--color_gray);
  font-size: 0.8125rem;
  text-align: center;
}

.pagetop {
  position: absolute;
  top: 25px;
  right: 20px;
}

#bg-canvas {
  position: fixed;
  inset: 0;
  filter: blur(100px);
  opacity: 0.85;
  transition: opacity 2s ease;
  pointer-events: none;
  z-index: -1;
}

/*-----------------------------------------------------------
Hero
-----------------------------------------------------------*/
.hero {
  position: relative;
  margin: 0 auto 60px;
}

.hero .splide__slide img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.hero .splide__pagination {
  display: none;
}

.hero.is-about .splide__pagination {
  display: flex;
  margin-top: 20px;
}

@media (max-width: 800px) {
  .hero {
    margin-bottom: 30px;
  }

  .hero .splide__slide img {
    aspect-ratio: 1/1;
  }

  .hero .container {
    width: 100%;
  }
}

/*------------
Components
--------------*/
.top-schedule {
  margin-bottom: 80px;
}

@media (max-width: 800px) {
  .top-schedule {
    margin-bottom: 40px;
  }
}

.top-schedule-title {
  color: var(--color_gray);
  font-size: 2rem;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 50px;
}

@media (max-width: 800px) {
  .top-schedule-title {
    font-size: 1.625rem;
    margin-bottom: 20px;
  }
}

.schedule-list-pc {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}

.schedule-list-pc a {
  background-color: #1C1D1D;
  color: var(--color_white);
  display: block;
  height: 100%;
  position: relative;
}

.schedule-list-pc .list-img {
  display: grid;
  place-content: center;
  position: relative;
  aspect-ratio: 330/412;
}

.schedule-list-pc .front {
  position: relative;
  z-index: 1;
}

.schedule-list-pc .back {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.schedule-list-pc .back img {
  filter: blur(3px);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.schedule-list-pc .list-desc {
  padding: 20px 20px 50px;
}

.schedule-list-pc .list-date {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font_en);
  line-height: 1;
  margin-bottom: 10px;
}

.schedule-list-pc .date {
  font-size: 1.5rem;
  font-weight: bold;
}

.schedule-list-pc .day {
  color: var(--color_gray);
  font-size: 0.8125rem;
}

.schedule-list-pc .day.is-sun,
.schedule-list-pc .day.is-sat {
  color: #ED5EA1;
}

.schedule-list-pc .list-title {
  font-size: 0.9375rem;
  line-height: 1.5;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.schedule-list-pc .event-info {
  color: var(--color_gray);
  font-size: 0.75rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.schedule-list-pc .event-info .item {
  display: grid;
  grid-template-columns: 90px 1fr;
}

.schedule-list-pc .artist-info {
  line-height: 1.5;
  position: relative;
  max-height: 180px;
  overflow: hidden;
}

.schedule-list-pc .artist-info.is-truncated {
  padding-bottom: 25px;
}

.schedule-list-pc .artist-info.is-truncated::after {
  content: "+ more…";
  position: absolute;
  left: 0;
  bottom: 0;
  color: var(--color_gray);
  font-size: 0.75rem;
  line-height: 1;
  background-color: #1C1D1D;
  padding-top: 5px;
  width: 100%;
}

.schedule-list-pc .artist-info h2 {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--color_gray);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 15px 0 5px;
}

.schedule-list-pc .artist-info h2::before {
  content: "-";
}

.schedule-list-pc .artist-info p {
  font-size: 1.125rem;
  line-height: 1.5;
}

.schedule-list-pc .artist-info .small {
  font-size: 0.8125rem;
}

.schedule-list-pc .more {
  text-align: right;
  font-size: 0.75rem;
  color: var(--color_gray);
  line-height: 1;
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-image: linear-gradient(currentcolor, currentcolor);
  background-position: 100% 100%;
  background-size: 0% 1px;
  background-repeat: no-repeat;
  transition: background-size 0.5s ease;
  padding-bottom: 0.02rem;
}

@media (any-hover: hover) {
  .schedule-list-pc a:hover .more {
    background-position: 0 100%;
    background-size: 100% 1px;
  }
}

@media (max-width: 800px) {
  .schedule-list-pc {
    display: none;
  }
}

.schedule-list-sp {
  display: none;
}

@media (max-width: 800px) {
  .schedule-list-sp {
    display: grid;
    gap: 20px;
    margin-right: -5vw;
  }

  .schedule-list-sp a {
    display: grid;
    grid-template-columns: 45px 1fr;
    color: var(--color_white);
  }

  .schedule-list-sp .date {
    font-size: 1rem;
    line-height: 1.2;
    margin-bottom: 5px;
  }

  .schedule-list-sp .date span {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
  }

  .schedule-list-sp .day {
    color: var(--color_gray);
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1;
  }

  .schedule-list-sp .day.is-sun,
  .schedule-list-sp .day.is-sat {
    color: #ED5EA1;
  }

  .schedule-list-sp .night {
    text-align: center;
    margin: 5px 0 0 5px;
  }

  .schedule-list-sp .list-img img {
    aspect-ratio: 370/220;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
  }

  .schedule-list-sp .list-body {
    position: relative;
  }

  .schedule-list-sp .list-desc {
    background-color: oklch(from #000 l c h/0.7);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 15px;
    line-height: 1.5;
  }

  .schedule-list-sp .list-title {
    font-size: 0.9375rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
  }

  .schedule-list-sp .artist-info,
  .schedule-list-sp .event-info {
    font-size: 0.8125rem;
    color: var(--color_gray);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    line-height: 1.2;
    overflow: hidden;
  }
}

.top-about-title {
  color: var(--color_gray);
  font-size: 2rem;
  line-height: 1.5;
  margin-bottom: 30px;
}

@media (max-width: 800px) {
  .top-about-title {
    font-size: 1.625rem;
    margin-bottom: 20px;
  }
}

/*-----------------------------------------------------------
下層レイアウト
-----------------------------------------------------------*/
.u-h1 {
  font-size: 2rem;
  line-height: 1.5;
  margin-bottom: 30px;
}

.u-h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.375rem;
  line-height: 1.5;
  margin-bottom: 30px;
}

.u-h2::before {
  content: "";
  background-color: var(--color_gray);
  width: 15px;
  height: 1px;
}

.u-h3 {
  font-size: 1.18rem;
  padding: 0 0 6px 0;
  border-bottom: 1px solid var(--color_gray_dark);
  margin-bottom: 20px;
}

.u-h4 {
  display: flex;
  font-weight: bold;
}

.u-h4::before {
  content: "・";
  width: 18px;
  padding-left: 3px;
}

@media (max-width: 800px) {
  .u-h1 {
    font-size: 1.75rem;
    margin-bottom: 15px;
  }

  .u-h2 {
    font-size: 1.25rem;
    margin-bottom: 20px;
  }

  .u-h3 {
    margin-bottom: 15px;
  }
}

.tall+.tall {
  margin-top: 120px;
}

.short+.short {
  margin-top: 60px;
}

.x-short+.x-short {
  margin-top: 30px;
}

.hidden {
  overflow: hidden;
}

@media (max-width: 800px) {
  .tall+.tall {
    margin-top: 60px;
  }

  .short+.short {
    margin-top: 30px;
  }

  .x-short+.x-short {
    margin-top: 15px;
  }
}

/*------------
Add
--------------*/
.schedule-month-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 50px;
  font-family: var(--font_en);
  font-weight: 500;
  color: var(--color_gray);
  line-height: 1;
  margin-bottom: 40px;
}

.schedule-month-nav .month-link {
  position: relative;
  font-size: 0.75rem;
  max-width: 110px;
  transition: opacity 0.3s;
}

.schedule-month-nav .month-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 111px;
  height: 12px;
  left: 0;
}

@media (any-hover: hover) {
  .schedule-month-nav .month-link:hover {
    opacity: 0.5;
  }
}

.schedule-month-nav .month-link.prev {
  padding: 0 0 5px 25px;
  margin-left: auto;
}

.schedule-month-nav .month-link.prev::after {
  background: url(../images/share/arrow_prev.svg) no-repeat center/contain;
}

.schedule-month-nav .month-link.next {
  padding: 0 25px 5px 0;
}

.schedule-month-nav .month-link.next::after {
  background: url(../images/share/arrow_next.svg) no-repeat center/contain;
}

.schedule-month-nav .current-month {
  display: grid;
  grid-column: 2;
  text-align: center;
  gap: 10px;
  line-height: 1;
}

.schedule-month-nav .num {
  font-size: 3.4375rem;
  color: var(--color_white);
}

.schedule-month-nav .name {
  font-size: 0.75rem;
}

@media (max-width: 800px) {
  .schedule-month-nav {
    gap: 40px;
    margin-bottom: 20px;
  }

  .schedule-month-nav .month-link {
    font-size: 0.6875rem;
  }

  .schedule-month-nav .month-link::after {
    width: 104px;
    height: 12px;
  }

  .schedule-month-nav .month-link.prev {
    padding: 0 0 5px 25px;
  }

  .schedule-month-nav .month-link.next {
    padding: 0 25px 5px 0;
  }

  .schedule-month-nav .current-month {
    gap: 5px;
  }

  .schedule-month-nav .num {
    font-size: 2rem;
  }

  .schedule-month-nav .name {
    font-size: 0.625rem;
  }
}

.btn-back {
  display: inline-block;
  padding: 0 0 5px 25px;
  margin-bottom: 60px;
  position: relative;
  font-size: 0.75rem;
  line-height: 1;
  transition: opacity 0.3s;
}

.btn-back::after {
  content: "";
  background: url(../images/share/arrow_back.svg) no-repeat center;
  position: absolute;
  bottom: 0;
  width: 65px;
  height: 12px;
  left: 0;
}

@media (any-hover: hover) {
  .btn-back:hover {
    opacity: 0.5;
  }
}

@media (max-width: 800px) {
  .btn-back {
    margin-bottom: 15px;
  }
}

.single-event-intro {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  color: var(--color_white);
}

.single-event-intro .event-desc {
  padding: 50px 0 0 75px;
}

.single-event-intro .event-title {
  color: var(--color_white);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 20px;
}

.single-event-intro .event-date {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: var(--font_en);
  line-height: 1;
  margin-bottom: 40px;
}

.single-event-intro .event-date .date {
  font-size: 1.625rem;
  font-weight: bold;
}

.single-event-intro .event-date .day {
  color: var(--color_gray);
  font-size: 0.875rem;
}

.single-event-intro .event-date .day.is-sun,
.single-event-intro .event-date .day.is-sat {
  color: #ED5EA1;
}

.single-event-intro .event-info {
  display: grid;
  gap: 5px;
  line-height: 1.5;
  margin-bottom: 40px;
}

.single-event-intro .event-info .item {
  display: grid;
  grid-template-columns: 150px 1fr;
}

.single-event-intro .artist-info {
  line-height: 1.5;
}

.single-event-intro .artist-info h2 {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--color_gray);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 15px 0 5px;
}

.single-event-intro .artist-info h2::before {
  content: "-";
}

.single-event-intro .artist-info p {
  font-size: 1.125rem;
  line-height: 1.5;
}

.single-event-intro .artist-info .small {
  font-size: 0.8125rem;
}

@media (max-width: 800px) {
  .single-event-intro {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .single-event-intro .event-desc {
    padding: 0;
  }

  .single-event-intro .event-title {
    font-size: 1.375rem;
    margin-bottom: 10px;
  }

  .single-event-intro .event-date {
    margin-bottom: 20px;
  }

  .single-event-intro .event-date .date {
    font-size: 1.375rem;
  }

  .single-event-intro .event-date .day {
    font-size: 0.8125rem;
  }

  .single-event-intro .event-info {
    font-size: 0.8125rem;
    margin-bottom: 20px;
  }

  .single-event-intro .event-info .item {
    grid-template-columns: 100px 1fr;
  }

  .single-event-intro .artist-info {
    gap: 15px;
  }

  .single-event-intro .artist-info p {
    font-size: 1rem;
  }
}

.event-slider {
  text-align: center;
}

.event-slider img {
  margin-inline: auto;
}

.event-slider .splide__pagination {
  margin-top: 20px;
}

.event-slider.is-single-slide .splide__pagination {
  display: none;
}

.event-share {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 40px;
  margin-top: 30px;
}

.event-share .share-title {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
}

.event-share .share-list {
  display: flex;
  gap: 20px;
}

@media (max-width: 800px) {
  .event-share {
    gap: 20px;
    margin-top: 20px;
  }
}

.post-box {
  border-top: 1px solid #323636;
  padding-top: 35px;
  margin-top: 35px;
}

.post-box .image-center {
  margin: auto;
}

.post-box h2 {
  font-size: 2rem;
  line-height: 1.5;
  margin: 30px 0;
}

.post-box h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.375rem;
  line-height: 1.5;
  margin: 30px 0;
}

.post-box h3::before {
  content: "";
  background-color: var(--color_gray);
  width: 15px;
  height: 1px;
}

.post-box p {
  margin: 30px 0;
}

.post-box a {
  text-decoration: underline;
  word-break: break-all;
  position: relative;
  text-wrap: pretty;
}

@media (any-hover: hover) {
  .post-box a:hover {
    text-decoration: none;
  }
}

@media (max-width: 800px) {
  .post-box {
    padding-top: 20px;
    margin-top: 20px;
  }

  .post-box h2 {
    font-size: 1.75rem;
    line-height: 1.5;
    margin: 20px 0;
  }

  .post-box h3 {
    font-size: 1.25rem;
    margin: 20px 0;
  }

  .post-box p {
    margin: 20px 0;
  }
}

.u-map iframe {
  width: 100%;
  height: 540px;
  filter: grayscale(100%);
}

@media (max-width: 800px) {
  .u-map {
    margin: 0 -5vw;
  }

  .u-map iframe {
    height: 400px;
    width: 100vw;
  }
}

.contact-form .item {
  display: grid;
  grid-template-columns: 300px 1fr;
  margin-bottom: 20px;
  align-items: center;
}

.contact-form .item.start {
  align-items: flex-start;
}

.contact-form .item.start .input-label {
  margin-top: 10px;
}

.input-label {
  display: flex;
  align-items: center;
  line-height: 1;
}

.input-label [lang=en] {
  font-size: 0.8125rem;
  margin: 0 5px 0 10px;
}

@media (max-width: 800px) {
  .contact-form .item {
    grid-template-columns: 1fr;
    margin-bottom: 25px;
  }

  .input-label {
    margin-bottom: 10px;
  }
}

.radio-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
}

.contact-form input[type=text],
.contact-form input[type=email],
.contact-form input[type=tel],
.contact-form input[type=number],
.contact-form input[type=date],
.contact-form select,
.contact-form textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: oklch(from #000 l c h / 0.6);
  border: none;
  border-radius: 2px;
  color: #fff;
  font-size: 16px;
  padding: 8px 10px;
  margin: 0;
  width: 100%;
  min-height: 40px;
}

.contact-form input[type=text]:focus,
.contact-form input[type=email]:focus,
.contact-form input[type=tel]:focus,
.contact-form input[type=number]:focus,
.contact-form input[type=file]:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 1px solid #419caf;
}

.contact-form textarea {
  height: 200px;
  resize: vertical;
}

.contact-form fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.checkbox-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 40px 0;
}

@media (max-width: 800px) {
  .checkbox-privacy {
    margin: 25px 0;
  }
}

/*送信ボタン*/
.contact-form .submit-btn {
  display: flex;
  justify-content: center;
}

.contact-form .submit-btn [type=submit] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color_gray);
  font-size: 0.8125rem;
  text-align: center;
  line-height: 1;
  padding: 10px 25px;
  min-height: 45px;
  min-width: 240px;
  transition: border-color 0.2s, color 0.2s;
}

@media (any-hover: hover) {
  .contact-form .submit-btn [type=submit]:hover {
    border-color: var(--color_white);
    color: var(--color_white);
  }
}

.js-fadein {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.js-fadein.is-show {
  opacity: 1;
  transform: translateY(0);
}

.dl-privacy {
  display: grid;
  gap: 30px;
  text-align: justify;
}

.dl-privacy dt {
  font-size: 1.125rem;
  margin-bottom: 15px;
}

@media (max-width: 800px) {
  .dl-privacy {
    gap: 15px;
  }

  .dl-privacy dt {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  .dl-privacy dd {
    font-size: 0.8125rem;
  }
}

/*-----------------------------------------------------------
Common
-----------------------------------------------------------*/
.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

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

.hidden {
  overflow: hidden;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

hr {
  max-width: 1024px;
  margin: 50px auto;
}

.fade {
  transition: opacity 0.5s;
}

@media (any-hover: hover) {
  .fade:hover {
    opacity: 0.5;
  }
}

.fs11 {
  font-size: 0.6875rem;
}

.fs12 {
  font-size: 0.75rem;
}

.fs13 {
  font-size: 0.8125rem;
}

.fs14 {
  font-size: 0.875rem;
}

.bold,
.strong {
  font-weight: bold;
}

.c-red {
  color: #F44336;
}

.marker {
  background: linear-gradient(transparent 50%, #80FF00 50%);
}

.notice {
  font-size: 0.8125rem;
  text-indent: -1em;
  padding-left: 1em;
}

.mb0 {
  margin-bottom: 0;
}

.mbXS {
  margin-bottom: 8px;
}

.mbS {
  margin-bottom: 16px;
}

.mbM {
  margin-bottom: 32px;
}

.mbXM {
  margin-bottom: 48px;
}

.mbL {
  margin-bottom: 64px;
}

.mbXL {
  margin-bottom: 96px;
}

.mt0 {
  margin-top: 0;
}

.pb0 {
  padding-bottom: 0;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

.grid {
  display: grid;
}

.col2 {
  grid-template-columns: repeat(2, 1fr);
}

.col3 {
  grid-template-columns: repeat(3, 1fr);
}

.col4 {
  grid-template-columns: repeat(4, 1fr);
}

.gapXS {
  grid-gap: 8px;
}

.gapS {
  grid-gap: 16px;
}

.gapM {
  grid-gap: 32px;
}

.gapXM {
  grid-gap: 48px;
}

.gapL {
  grid-gap: 64px;
}

.gapXL {
  grid-gap: 96px;
}

@media (max-width: 800px) {
  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }

  .sp-tac {
    text-align: center;
  }

  .sp-tar {
    text-align: right;
  }

  .sp-tal {
    text-align: left;
  }

  .mbXS {
    margin-bottom: 4px;
  }

  .mbS {
    margin-bottom: 8px;
  }

  .mbM {
    margin-bottom: 16px;
  }

  .mbXM {
    margin-bottom: 32px;
  }

  .mbL {
    margin-bottom: 48px;
  }

  .mbXL {
    margin-bottom: 64px;
  }

  .sp-col1 {
    grid-template-columns: 1fr;
  }

  .sp-col2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .sp-col3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .sp-col4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .gapXS {
    grid-gap: 4px;
  }

  .gapS {
    grid-gap: 8px;
  }

  .gapM {
    grid-gap: 16px;
  }

  .gapXM {
    grid-gap: 32px;
  }

  .gapL {
    grid-gap: 48px;
  }

  .gapXL {
    grid-gap: 64px;
  }
}

/*------------
splide
-------------*/
.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  backface-visibility: hidden;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: flex;
  align-items: center;
  line-height: 1;
  list-style-type: none;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized,
.splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle.is-active .splide__toggle__play,
.splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }

  to {
    transform: rotate(1turn);
  }
}

.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.splide__track--fade>.splide__list>.splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade>.splide__list>.splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb>.splide__list {
  display: block;
}

.splide__arrow--prev,
.splide__arrow--next {
  display: block;
  width: 30px;
  height: 30px;
}

.splide__arrow--prev {
  background: url(../images/share/splide_prev.svg) no-repeat center/auto 15px;
}

.splide__arrow--next {
  background: url(../images/share/splide_next.svg) no-repeat center/auto 15px;
}

.splide__arrow:hover:not(:disabled) {
  opacity: 0.9;
}

.splide__arrow:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__arrow--prev {
  left: 1em;
}

.splide__arrow--prev svg {
  transform: scaleX(-1);
}

.splide__arrow--next {
  right: 1em;
}

.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
  margin-top: 6rem;
}

@media (max-width: 800px) {
  .splide__controls {
    margin-top: 3rem;
  }
}

.splide__pagination {
  gap: 15px;
}

.splide__pagination__page {
  background: #323636;
  border-radius: 100px;
  display: inline-block;
  transition: transform 0.2s linear;
  height: 10px;
  width: 10px;
}

.splide__pagination__page.is-active {
  background: #989898;
  z-index: 1;
}

.splide__pagination__page:hover {
  cursor: pointer;
}

.splide__pagination__page:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__progress__bar {
  background: #ccc;
  height: 3px;
}

.splide__slide {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.splide__slide:focus {
  outline: 0;
}

@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}

@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }
}

@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}

@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }

  .splide.is-focus-in .splide__track>.splide__list>.splide__slide:focus {
    border-color: #0bf;
  }
}

.splide__toggle {
  cursor: pointer;
}

.splide__toggle:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__track--nav>.splide__list>.splide__slide {
  border: 3px solid transparent;
  cursor: pointer;
}

.splide__track--nav>.splide__list>.splide__slide.is-active {
  border: 3px solid #000;
}

.splide__arrows--rtl .splide__arrow--prev {
  left: auto;
  right: 1em;
}

.splide__arrows--rtl .splide__arrow--prev svg {
  transform: scaleX(1);
}

.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto;
}

.splide__arrows--rtl .splide__arrow--next svg {
  transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
  left: 50%;
  transform: translate(-50%);
}

.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
  transform: rotate(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
  bottom: 1em;
  top: auto;
}

.splide__arrows--ttb .splide__arrow--next svg {
  transform: rotate(90deg);
}

.splide__pagination--ttb {
  bottom: 0;
  display: flex;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}

.splide__toggle {
  cursor: pointer;
  background: #ccc;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.2s ease;
  height: 20px;
  width: 20px;
}

.splide__toggle:hover {
  background: #D3D3D3;
}

.splide__toggle svg {
  fill: #fff;
  transition: fill 0.2s ease;
  width: 12px;
  height: auto;
}

.splide__toggle:focus-visible {
  outline: 3px solid var(--splide-focus-color);
  outline-offset: 3px;
}



.equipment-list li {
  display: flex;
  line-height: 1.5;
  margin: 0 0 5px 5px;
}

.equipment-list li::before {
  content: "・";
  width: 18px;
}
