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

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

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

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

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

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

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

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

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
*::before,
*::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.6vw;
  }
}
@media (min-width: 1000px) {
  html {
    font-size: 16px;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #363636;
}

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

@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

.layout-header {
  position: fixed;
  z-index: 900;
  top: 0;
  right: 0;
  left: 0;
  padding-top: 1.625rem;
}
@media screen and (min-width: 450px) {
  .layout-header {
    padding-top: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .layout-header {
    padding-top: 2rem;
  }
}

.layout-works {
  padding: 6.2125rem 0 3.15rem;
  background-color: #D9EAE8;
}
@media screen and (min-width: 450px) {
  .layout-works {
    padding: 8.875rem 0 4.5rem;
  }
}
@media screen and (min-width: 768px) {
  .layout-works {
    padding: 3.75rem 0 5.25rem;
  }
}

.layout-news {
  padding: 3.03625rem 0 4.046875rem;
  background-image: linear-gradient(124deg, #2893c3 41%, #6abcd0 100%);
}
@media screen and (min-width: 450px) {
  .layout-news {
    padding: 4.3375rem 0 5.78125rem;
  }
}
@media screen and (min-width: 768px) {
  .layout-news {
    padding: 4.96875rem 0 4.65625rem;
  }
}

.layout-concept {
  padding: 3.9375rem 0;
  background-color: #C7E0E2;
}
@media screen and (min-width: 450px) {
  .layout-concept {
    padding: 5.625rem 0;
  }
}
@media screen and (min-width: 768px) {
  .layout-concept {
    padding: 5rem 0;
  }
}

.layout-access {
  padding: 3.71875rem 0 10rem 0;
  background-color: #fff;
}
@media screen and (min-width: 450px) {
  .layout-access {
    padding: 5.3125rem 0 13.75rem 0;
  }
}
@media screen and (min-width: 768px) {
  .layout-access {
    padding: 5.4375rem 0 13.75rem 0;
  }
}

.layout-page-top {
  position: fixed;
  right: 4%;
  bottom: 0;
  z-index: 800;
}

.layout-footer {
  background-color: #ecf1f4;
  position: relative;
  z-index: 1;
}

.layout-mv {
  position: relative;
  padding-top: 5.3375rem;
}
@media screen and (min-width: 450px) {
  .layout-mv {
    padding-top: 7.625rem;
  }
}
@media screen and (min-width: 768px) {
  .layout-mv {
    padding-top: 0rem;
  }
}

.layout-sub-news {
  padding: 4.375rem 0 9.375rem;
  background-image: linear-gradient(to bottom, #d9eae8, #a2ccd6);
}
@media screen and (min-width: 450px) {
  .layout-sub-news {
    padding: 6.25rem 0 14.375rem;
  }
}
@media screen and (min-width: 768px) {
  .layout-sub-news {
    padding: 12.5rem 0 6.25rem;
  }
}

.layout-wrapper {
  position: relative;
  background-color: #d6eaea;
  z-index: 100;
}

.layout-wrapper::before,
.layout-wrapper::after {
  content: "";
  position: fixed;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 1;
  visibility: visible;
  pointer-events: none;
  z-index: 0;
}

.layout-wrapper::before {
  width: 40%;
  aspect-ratio: 252/608;
  top: 0;
  left: 0;
  transform: translateY(0);
  background-image: url("../images/common/bg-logo-left.png");
}
@media screen and (min-width: 768px) {
  .layout-wrapper::before {
    width: 12%;
  }
}

@media screen and (min-width: 768px) {
  .layout-wrapper::after {
    width: 33.3%;
    aspect-ratio: 498/514;
    top: 0;
    right: 0;
    transform: translateY(0);
    background-image: url("../images/common/bg-logo-right.png");
  }
}

.layout-sub-page {
  padding: 4.375rem 0 9.375rem;
  background-image: linear-gradient(to bottom, #d9eae8, #a2ccd6);
}
@media screen and (min-width: 450px) {
  .layout-sub-page {
    padding: 7.5rem 0 14.375rem;
  }
}
@media screen and (min-width: 768px) {
  .layout-sub-page {
    padding: 12.5rem 0 6.25rem;
  }
}

.layout-sub-artists {
  padding: 4.375rem 0 9.375rem;
  background-image: linear-gradient(to bottom, #d9eae8, #a2ccd6);
}
@media screen and (min-width: 450px) {
  .layout-sub-artists {
    padding: 6.25rem 0 14.375rem;
  }
}
@media screen and (min-width: 768px) {
  .layout-sub-artists {
    padding: 12.5rem 0 6.25rem;
  }
}

.page-top {
  padding-top: 0.625rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.0625rem;
  height: 2.0625rem;
  font-size: 0.625rem;
  font-family: "Noto Serif JP", serif;
  line-height: 1;
  text-transform: uppercase;
  background-color: #fff;
  cursor: pointer;
}
@media screen and (min-width: 450px) {
  .page-top {
    padding-top: 0.9375rem;
    width: 3.4375rem;
    height: 3.4375rem;
    font-size: 1.125rem;
  }
}

.page-top::before {
  content: "";
  position: absolute;
  top: 0.4375rem;
  left: 50%;
  width: 0.5rem;
  height: 0.5rem;
  border-top: 0.09375rem solid #363636;
  border-right: 0.09375rem solid #363636;
  transform: translateX(-50%) rotate(-45deg);
}
@media screen and (min-width: 450px) {
  .page-top::before {
    top: 0.625rem;
    width: 0.8125rem;
    height: 0.8125rem;
    border-top: 0.1875rem solid #363636;
    border-right: 0.1875rem solid #363636;
  }
}

.button--stop {
  position: absolute;
}

.ticket-button {
  position: fixed;
  top: 50%;
  left: -20px;
  writing-mode: vertical-rl;
  text-align: center;
  z-index: 100;
  transition: left 0.5s ease;
}

.ticket-button:hover {
  left: 0;
}

.ticket-button__arrow {
  display: block;
  margin-top: 0.625rem;
  font-size: 1.125rem;
  opacity: 0.8;
  color: #fff;
  transition: color 0.3s ease;
}

.ticket-button__link {
  position: relative;
  display: flex;
  align-items: center;
  padding: 1.5rem 1.25rem;
  border-radius: 0 1.25rem 1.25rem 0;
  color: #fff;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  line-height: 1.3;
  background: linear-gradient(135deg, #80e2f4, #31be8c, #00bfff, #4bde91, #80e2f4);
  background-size: 500% 500%;
  -webkit-animation: bgWave 12s ease-in-out infinite;
          animation: bgWave 12s ease-in-out infinite;
  transition: background 0.5s ease, color 0.5s ease, border 0.5s ease;
}
@media screen and (min-width: 450px) {
  .ticket-button__link {
    font-size: 1.25rem;
    padding-top: 3.125rem;
  }
}

@-webkit-keyframes bgWave {
  0% {
    background-position: 0% 50%;
  }
  25% {
    background-position: 50% 100%;
  }
  50% {
    background-position: 100% 50%;
  }
  75% {
    background-position: 50% 0%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes bgWave {
  0% {
    background-position: 0% 50%;
  }
  25% {
    background-position: 50% 100%;
  }
  50% {
    background-position: 100% 50%;
  }
  75% {
    background-position: 50% 0%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.button--stop {
  position: absolute;
}

.access__btn {
  font-family: "Noto Serif JP", serif;
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.4375rem 1rem;
  font-size: 0.9375rem;
  font-weight: 700;
  border: 0.125rem solid #2893C3;
  color: #2893C3;
  background-color: #fff;
  border-radius: 1.875rem;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
  overflow: hidden;
}
@media screen and (min-width: 450px) {
  .access__btn {
    gap: 0.875rem;
    font-size: 1.125rem;
    padding: 0.4375rem 1.25rem;
  }
}
@media screen and (min-width: 600px) {
  .access__btn {
    gap: 1.0625rem;
    padding: 0.4375rem 1.5625rem;
  }
}
@media screen and (min-width: 768px) {
  .access__btn {
    font-size: 0.9375rem;
    gap: 1.0625rem;
    padding: 0.4375rem 2.5rem;
  }
}

.access__btn-icon {
  display: inline-block;
  transition: transform 0.3s ease;
}

.access__btn:hover {
  background-color: #2893C3;
  color: #fff;
}

.access__btn:hover .access__btn-icon {
  transform: translateX(0.625rem);
}

.access__btn:not(:nth-child(1)) {
  margin-top: 1.0625rem;
  margin-left: 0.75rem;
}
@media screen and (min-width: 600px) {
  .access__btn:not(:nth-child(1)) {
    margin-top: 0rem;
    margin-left: 1.0625rem;
  }
}

.pc-br {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc-br {
    display: block;
  }
}

.more-btn__link-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 100;
}

.more-btn__btnwrap {
  text-align: center;
}

.more-btn {
  position: relative;
  display: inline-block;
  padding: 0.75rem 2.5rem;
  font-size: 0.9rem;
  font-family: "Noto Serif JP", serif;
  line-height: 1.7;
  font-weight: 700;
  color: #fff;
  background-image: linear-gradient(to right, #28b7c3 3%, #27aeea 98%);
  border-radius: 1.875rem;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media screen and (min-width: 450px) {
  .more-btn {
    font-size: 1rem;
  }
}
@media screen and (min-width: 600px) {
  .more-btn {
    font-size: 1.375rem;
    padding: 0.75rem 5rem;
  }
}
@media screen and (min-width: 768px) {
  .more-btn {
    padding: 0.9375rem 4.75rem;
    font-size: 1.25rem;
  }
}

.more-btn::before {
  content: "→";
  position: absolute;
  right: 2.5rem;
  width: 0.5rem;
  height: 0.5rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.more-btn:hover::before {
  transform: translate(10px);
}

.header {
  height: 2.5rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
@media screen and (min-width: 768px) {
  .header {
    height: 5rem;
  }
}

.header__inner {
  padding: 0 1.5625rem;
  height: inherit;
  display: flex;
  justify-content: right;
}
@media screen and (min-width: 450px) {
  .header__inner {
    padding: 0 2.5rem;
  }
}
@media screen and (min-width: 768px) {
  .header__inner {
    padding: 0 0.625rem;
  }
}
@media screen and (min-width: 1200px) {
  .header__inner {
    padding: 0 2.5rem;
  }
}

.header__logo {
  max-width: 4.625rem;
  width: 100%;
  height: inherit;
}
@media screen and (min-width: 768px) {
  .header__logo {
    max-width: 6.25rem;
  }
}

.header__nav {
  display: none;
  height: inherit;
}
@media screen and (min-width: 768px) {
  .header__nav {
    display: block;
  }
}

.header__nav--top-page {
  position: relative;
}

.header__nav--top-page::before {
  content: "";
  position: absolute;
  top: -45%;
  right: -10%;
  width: 112%;
  height: 140%;
  border-bottom-left-radius: 1.875rem;
  background-color: #002060;
  z-index: -1;
  opacity: 0.9;
}

.header__nav-list {
  display: flex;
  height: inherit;
}

.header__nav-item {
  height: inherit;
}

.header__nav-item a {
  padding: 0 0.9375rem;
  height: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 0.375rem;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  line-height: 1.5;
  color: #fff;
  text-decoration: none;
  text-shadow: 0 0 4px #273d61, 0 0 8px #273d61;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}
@media screen and (min-width: 450px) {
  .header__nav-item a {
    font-size: 0.625rem;
  }
}
@media screen and (min-width: 768px) {
  .header__nav-item a {
    padding: 0 0.625rem;
  }
}
@media screen and (min-width: 1200px) {
  .header__nav-item a {
    padding: 0 0.9375rem;
  }
}

.header__nav-item a:hover {
  color: #28aeea;
  /*font-weight: 700;*/
  /*text-shadow: 0 0 2px #fff, 0 0 4px #fff, 0 0 8px #fff, 0 0 10px #fff, 0 0 12px #fff;*/
}

.header__nav-item span {
  margin-top: 0.125rem;
  display: block;
  font-size: 0.6rem;
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (min-width: 450px) {
  .header__nav-item span {
    font-size: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .header__nav-item span {
    font-size: 0.75rem;
  }
}
@media screen and (min-width: 1200px) {
  .header__nav-item span {
    font-size: 1rem;
  }
}

.header__hamburger {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  position: relative;
  z-index: 900;
  width: 2.8125rem;
  height: 2.8125rem;
  background-color: #fff;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 50%;
}
@media screen and (min-width: 450px) {
  .header__hamburger {
    width: 3.75rem;
    height: 3.75rem;
  }
}
@media screen and (min-width: 768px) {
  .header__hamburger {
    display: none;
  }
}

.header__hamburger-wrap {
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .header__hamburger-wrap {
    display: none;
  }
}

.header__hamburger span {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 1.625rem;
  height: 1px;
  background-color: #363636;
  transition: 0.5s;
}
@media screen and (min-width: 450px) {
  .header__hamburger span {
    width: 2.25rem;
  }
}

.header__hamburger span:nth-of-type(1) {
  top: -0.3125rem;
}
@media screen and (min-width: 450px) {
  .header__hamburger span:nth-of-type(1) {
    top: -0.375rem;
  }
}

.header__hamburger span:nth-of-type(2) {
  top: 0.0625rem;
}
@media screen and (min-width: 450px) {
  .header__hamburger span:nth-of-type(2) {
    top: 0.125rem;
  }
}

.header__hamburger span:nth-of-type(3) {
  top: 0.4375rem;
}
@media screen and (min-width: 450px) {
  .header__hamburger span:nth-of-type(3) {
    top: 0.625rem;
  }
}

.header__hamburger.is-open span:nth-of-type(1) {
  top: 0;
  transform: translateX(-50%) rotate(45deg);
}

.header__hamburger.is-open span:nth-of-type(2) {
  opacity: 0;
}

.header__hamburger.is-open span:nth-of-type(3) {
  top: -0.125rem;
  transform: translateX(-50%) rotate(-45deg);
}

.header__drawer-nav {
  margin-top: 1.875rem;
}
@media screen and (min-width: 450px) {
  .header__drawer-nav {
    margin-top: 3.5rem;
  }
}

.header__drawer-inner {
  padding-left: 1.5625rem;
}
@media screen and (min-width: 450px) {
  .header__drawer-inner {
    padding-left: 2.5rem;
  }
}

.header__drawer {
  padding: 4.5rem 0;
  display: none;
  position: absolute;
  z-index: 800;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background-color: #178bbf;
  overflow-y: scroll;
  scrollbar-width: none;
}
@media screen and (min-width: 450px) {
  .header__drawer {
    padding: 5.375rem 0;
  }
}

.header__drawer::-webkit-scrollbar {
  display: none;
}

.header__drawer::before,
.header__drawer::after {
  content: "";
  position: fixed;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 1;
}

.header__drawer::before {
  width: 39%;
  aspect-ratio: 252/608;
  top: 0;
  left: 0;
  transform: translateY(0);
  background-image: url("../images/drawer/drawer-logo-left.png");
}
@media screen and (min-width: 768px) {
  .header__drawer::before {
    width: 12%;
  }
}

.header__drawer::after {
  width: 26%;
  aspect-ratio: 173/266;
  top: 0;
  right: 7%;
  transform: translateY(50%);
  background-image: url("../images/drawer/drawer-logo-right.png");
}
@media screen and (min-width: 768px) {
  .header__drawer::after {
    width: 33.3%;
  }
}

.header__drawer-item a {
  padding: 0.875rem 0;
  display: inline-block;
  font-size: 0.675rem;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  line-height: 1.3;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: left;
}
@media screen and (min-width: 450px) {
  .header__drawer-item a {
    padding: 1.375rem 0;
    font-size: 1.125rem;
  }
}

.header__drawer-item span {
  margin-top: 0.625rem;
  display: block;
  font-size: 1.125rem;
  font-family: "Noto Serif JP", serif;
  line-height: 0.8;
  position: relative;
}
@media screen and (min-width: 450px) {
  .header__drawer-item span {
    font-size: 1.875rem;
  }
}

.header__drawer-item span::before {
  content: "";
  position: absolute;
  top: 60%;
  left: 110%;
  width: 1.08125rem;
  height: 1.08125rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s;
}

@media screen and (min-width: 768px) {
  .header__drawer-item span:hover {
    opacity: 1;
  }
}

@media screen and (min-width: 768px) {
  .header__drawer-item span:hover::before {
    right: 0.9375rem;
  }
}

.header__drawer-lang {
  display: flex;
  justify-content: flex-start;
  margin-top: 2.0625rem;
}

.header__drawer-lang-link,
.header__drawer-lang-divider,
.header__drawer-lang-current {
  font-size: 0.9rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  color: #fff;
}
@media screen and (min-width: 450px) {
  .header__drawer-lang-link,
.header__drawer-lang-divider,
.header__drawer-lang-current {
    font-size: 1.5rem;
  }
}

.header__drawer-lang-link {
  border-bottom: 1px solid #fff;
}

.header__drawer-item p {
  color: #fff;
}

.header__drawer-logo {
  width: 65%;
}

.header__drawer-logo img {
  width: 100%;
  aspect-ratio: 387.5/60.3;
  -o-object-fit: cover;
     object-fit: cover;
}

.header__drawer-icon {
  width: 3rem;
  margin-top: 2.5rem;
}
@media screen and (min-width: 450px) {
  .header__drawer-icon {
    width: 3rem;
    margin-top: 5.5625rem;
  }
}

.header__drawer-icon img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}

.header__lang--pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__lang--pc {
    display: flex;
    align-items: center;
    position: absolute;
    top: 24%;
    right: 3.8%;
    font-size: 0.75rem;
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #fff;
    z-index: 1000;
  }
}

.header__lang--sp {
  display: flex;
  align-items: center;
  position: absolute;
  top: 95%;
  right: 25%;
  font-size: 0.9rem;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  color: #363636;
  z-index: 1;
}
@media screen and (min-width: 450px) {
  .header__lang--sp {
    font-size: 1.5rem;
    top: 108%;
  }
}
@media screen and (min-width: 600px) {
  .header__lang--sp {
    right: 19%;
  }
}
@media screen and (min-width: 768px) {
  .header__lang--sp {
    display: none;
  }
}

.header__lang-link {
  color: #AC9B77;
  text-decoration: none;
  transition: opacity 0.3s;
  position: relative;
}
.header__lang-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background-color: #AC9B77;
  transition: transform 0.3s;
  transform: scaleX(1);
  transform-origin: left;
}
.header__lang-link:hover::after {
  transform: scaleX(0);
}
.header__lang-link:hover {
  opacity: 0.7;
}

.header__lang-divider {
  margin: 0 0.3125rem;
  color: #363636;
}
@media screen and (min-width: 768px) {
  .header__lang-divider {
    color: #fff;
  }
}

.header__lang-current {
  color: #363636;
}
@media screen and (min-width: 768px) {
  .header__lang-current {
    color: #fff;
  }
}

.mv_inner {
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-color: #D9EAE8;
}

.mv__movie {
  width: 100%;
  overflow: hidden;
  margin-top: 3.375rem;
  position: relative;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .mv__movie {
    margin-top: 0rem;
  }
}

.mv__movie video {
  width: 100%;
}

.mv__info {
  position: static;
  display: flex;
  width: 100%;
  padding: 0 1.5625rem;
  width: 100%;
}
@media screen and (min-width: 450px) {
  .mv__info {
    padding: 0 2.5rem;
  }
}
@media screen and (min-width: 768px) {
  .mv__info {
    padding: 0;
    max-width: 100%;
    position: absolute;
    width: 32.5%;
    top: 6%;
    left: 4%;
    z-index: 1000;
  }
}

.mv-info__text {
  width: 64%;
}
@media screen and (min-width: 768px) {
  .mv-info__text {
    width: 20.8125rem;
  }
}
@media screen and (min-width: 1000px) {
  .mv-info__text {
    width: 68%;
  }
}

.mv-info__title {
  width: 100%;
}

.mv-info__title img {
  width: 100%;
  aspect-ratio: 333/250;
  -o-object-fit: contain;
     object-fit: contain;
}

.mv-info__date {
  width: 65%;
  margin-top: 5%;
}

.mv-info__date img {
  width: 100%;
  aspect-ratio: 234/21;
  -o-object-fit: contain;
     object-fit: contain;
}

.mv-info__logo {
  width: 32%;
  margin-left: 1.375rem;
}
@media screen and (min-width: 768px) {
  .mv-info__logo {
    width: 7.6875rem;
  }
}
@media screen and (min-width: 1000px) {
  .mv-info__logo {
    width: 25%;
  }
}

.mv-info__logo img {
  width: 100%;
  aspect-ratio: 173/266;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 768px) {
  .mv-info__logo img {
    aspect-ratio: 123/190;
  }
}

.mv__text {
  position: static;
}
@media screen and (min-width: 768px) {
  .mv__text {
    position: absolute;
    bottom: 4%;
    right: 8%;
    z-index: 900;
  }
}

.mv__text p {
  font-size: 0.675rem;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #363636;
  text-align: right;
  line-height: 1.33;
  padding: 0.5625rem 1.5rem;
}
@media screen and (min-width: 450px) {
  .mv__text p {
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 768px) {
  .mv__text p {
    font-size: 0.75rem;
    color: #fff;
    padding: 0.5625rem 1.5rem;
  }
}

.works-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.works-header__icon {
  width: 25%;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .works-header__icon {
    width: 10%;
  }
}

.works-header__title {
  text-align: center;
  font-size: 1.05rem;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  line-height: 1.6;
  margin-top: 1.5rem;
}
@media screen and (min-width: 450px) {
  .works-header__title {
    font-size: 1.75rem;
  }
}
@media screen and (min-width: 768px) {
  .works-header__title {
    font-size: 1.5rem;
    margin-top: 1.5rem;
  }
}

.works-header__textwrap {
  width: 100%;
  margin-top: 1.875rem;
}

.works-header__text {
  font-size: 0.75rem;
  text-align: center;
  line-height: 1.8;
}
@media screen and (min-width: 450px) {
  .works-header__text {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .works-header__text {
    font-size: 1rem;
  }
}

.works__inner {
  margin: auto;
  position: relative;
  z-index: 1;
  padding: 0 1.5625rem;
  width: 100%;
}
@media screen and (min-width: 450px) {
  .works__inner {
    margin: auto;
    padding: 0 2.5rem;
    max-width: 42.5rem;
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .works__inner {
    padding: 0 1.5625rem;
    max-width: 65.625rem;
  }
}

.works-list__top {
  display: grid;
  gap: 1.125rem;
  grid-template-columns: repeat(1, 1fr);
  margin-top: 4.375rem;
  position: relative;
  z-index: 100;
}
@media screen and (min-width: 450px) {
  .works-list__top {
    gap: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .works-list__top {
    gap: 1.8125rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 4.25rem;
  }
}

.works-list__lower {
  display: grid;
  gap: 0.875rem 1.25rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 1.875rem;
  position: relative;
  z-index: 100;
}
@media screen and (min-width: 450px) {
  .works-list__lower {
    gap: 1.5rem 2.375rem;
  }
}
@media screen and (min-width: 768px) {
  .works-list__lower {
    gap: 2rem;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 2.1875rem;
  }
}

.works-list__item a {
  position: relative;
  display: block;
  height: 100%;
  box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, 0.05);
}

.works-list__item-img {
  width: 100%;
}

.works-list__item-img img {
  width: 100%;
  aspect-ratio: 320/340;
  -o-object-fit: cover;
     object-fit: cover;
}

.works-list__item-category {
  padding: 0.3125rem 0.5rem;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 0.525rem;
  line-height: 1;
  color: #fff;
  background-color: #DE8430;
}
@media screen and (min-width: 450px) {
  .works-list__item-category {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 768px) {
  .works-list__item-category {
    font-size: 1rem;
  }
}

.works-list__item-content {
  padding: 1.25rem 1.5625rem 1.5625rem;
}
@media screen and (min-width: 768px) {
  .works-list__item-content {
    padding: 1.5625rem 1.875rem 1.875rem;
  }
}

.works-list__item-title {
  font-size: 0.525rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 450px) {
  .works-list__item-title {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 768px) {
  .works-list__item-title {
    font-size: 1rem;
  }
}

.works-list__item-text {
  margin-top: 0.625rem;
  font-size: 0.45rem;
  line-height: 1.5;
}
@media screen and (min-width: 450px) {
  .works-list__item-text {
    font-size: 0.75rem;
  }
}
@media screen and (min-width: 768px) {
  .works-list__item-text {
    margin-top: 0.9375rem;
    font-size: 0.875rem;
  }
}

.news__titlewrap {
  display: flex;
  flex-direction: column;
  width: 6.5rem;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .news__titlewrap {
    align-items: flex-start;
    width: 5.75rem;
  }
}

.news__icon {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .news__icon {
    width: 85%;
  }
}

.news__icon img {
  width: 100%;
  aspect-ratio: 82.5/23.7;
  -o-object-fit: contain;
     object-fit: contain;
}

.news__title {
  font-size: 1.575rem;
  font-weight: 700;
  color: #fff;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 450px) {
  .news__title {
    font-size: 2.625rem;
  }
}
@media screen and (min-width: 768px) {
  .news__title {
    font-size: 2.125rem;
  }
}

.news__title-jp {
  font-size: 0.75rem;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  color: #fff;
  line-height: 1;
}
@media screen and (min-width: 450px) {
  .news__title-jp {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .news__title-jp {
    font-size: 1rem;
  }
}

.news__contentwrap {
  width: 100%;
  margin-top: 2.5625rem;
}
@media screen and (min-width: 768px) {
  .news__contentwrap {
    width: 77%;
    margin-top: 0rem;
  }
}

.news__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 1.875rem 0;
}
@media screen and (min-width: 768px) {
  .news__content {
    padding: 1.625rem 0;
    flex-direction: row;
  }
}

.news__meta {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0.65625rem;
}
@media screen and (min-width: 450px) {
  .news__meta {
    gap: 0.9375rem;
  }
}
@media screen and (min-width: 768px) {
  .news__meta {
    width: 20%;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}

.news-meta__date {
  font-size: 0.675rem;
  font-weight: 400;
  color: #fff;
}
@media screen and (min-width: 450px) {
  .news-meta__date {
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 768px) {
  .news-meta__date {
    font-size: 0.875rem;
  }
}

.news-meta__tag {
  font-size: 0.6rem;
  font-weight: 400;
  color: #fff;
  border: 1px solid #fff;
  padding: 0.25rem 0.875rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 0rem;
}
@media screen and (min-width: 450px) {
  .news-meta__tag {
    font-size: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .news-meta__tag {
    font-size: 0.75rem;
  }
}

.news__textwrap {
  width: 100%;
  margin-top: 1.3125rem;
}
@media screen and (min-width: 768px) {
  .news__textwrap {
    width: 75%;
    margin-top: 0rem;
  }
}

.news__text {
  font-size: 0.6rem;
  font-weight: 400;
  color: #fff;
  line-height: 2;
}
@media screen and (min-width: 450px) {
  .news__text {
    font-size: 1rem;
  }
}

.news__link-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 100;
}

.news__btnwrap {
  text-align: center;
  margin: 2.5rem 0 1.5625rem;
}
@media screen and (min-width: 450px) {
  .news__btnwrap {
    margin: 4.375rem 0 1.5625rem;
  }
}
@media screen and (min-width: 768px) {
  .news__btnwrap {
    margin: 1.6875rem 0;
  }
}

.btn {
  position: relative;
  display: inline-block;
  padding: 0.75rem 5.625rem;
  font-size: 0.9rem;
  font-family: "Noto Serif JP", serif;
  line-height: 1.7;
  font-weight: 700;
  color: #fff;
  background-image: linear-gradient(to right, #28b7c3 3%, #27aeea 98%);
  border-radius: 1.875rem;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.btn:hover {
  background-color: #fff;
  background-image: none;
  color: #28b7c3;
}
@media screen and (min-width: 450px) {
  .btn {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  .btn {
    padding: 0.9375rem 9.0625rem;
    font-size: 1.25rem;
  }
}

.btn::before {
  content: "→";
  position: absolute;
  right: 2.5rem;
  width: 0.5rem;
  height: 0.5rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.btn:hover::before {
  border-top-color: #28b7c3;
  border-right-color: #28b7c3;
  transform: translate(10px);
}

.news__link {
  font-size: 0.75rem;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 450px) {
  .news__link {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .news__link {
    font-size: 1rem;
  }
}

.news__link-anchor {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  text-decoration: none;
  color: #fff;
  border-bottom: 1px solid #fff;
  transition: border-color 0.3s ease;
}

.news__link-anchor--black {
  color: #363636;
  border-bottom: 1px solid #363636;
}

.news__link-anchor:hover {
  border-color: transparent;
}

.news__link-img {
  width: 1em;
  height: 1em;
  -o-object-fit: contain;
     object-fit: contain;
}

.news__inner {
  position: relative;
  z-index: 1;
  margin: auto;
  padding: 0 1.5625rem;
  width: 100%;
}
@media screen and (min-width: 450px) {
  .news__inner {
    margin: auto;
    padding: 0 2.5rem;
    max-width: 42.5rem;
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .news__inner {
    padding: 0 1.5625rem;
    max-width: 65.625rem;
  }
}

.news__inner-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .news__inner-inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.concept__inner {
  position: relative;
  z-index: 1;
  margin: auto;
  padding: 0 1.5625rem;
  width: 100%;
}
@media screen and (min-width: 450px) {
  .concept__inner {
    margin: auto;
    padding: 0 2.5rem;
    max-width: 42.5rem;
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .concept__inner {
    padding: 0 1.5625rem;
    max-width: 65.625rem;
  }
}

@media screen and (min-width: 768px) {
  .concept-list-item {
    display: flex;
    justify-content: center;
  }
}

.concept-list-item:nth-of-type(even) {
  flex-direction: row-reverse;
}

.concept-list-item__img {
  width: 100%;
  margin: 1.875rem auto 0;
  position: relative;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .concept-list-item__img {
    max-width: 37.5rem;
    width: 50%;
  }
}

.concept-list-item__img--second {
  margin: 2.25rem auto;
}
@media screen and (min-width: 768px) {
  .concept-list-item__img--second {
    margin: 0rem auto;
  }
}

@media screen and (min-width: 768px) {
  .white-border--pc {
    border-bottom: 1px solid #fff;
  }
}

.white-border--sp {
  border-bottom: 1px solid #fff;
}
@media screen and (min-width: 768px) {
  .white-border--sp {
    border-bottom: none;
  }
}

@media screen and (min-width: 768px) {
  .concept-list-item:nth-of-type(even) .concept-list-item__img {
    padding-left: 6%;
  }
}

.concept-list-item__img img {
  width: 100%;
  aspect-ratio: 437/573;
  -o-object-fit: cover;
     object-fit: cover;
}

.concept-list-item__content {
  margin-top: 1.25rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .concept-list-item__content {
    width: 50%;
    max-width: 31.25rem;
    margin-top: 0;
  }
}

.concept-list-item:nth-of-type(even) .concept-list-item__content {
  margin-left: 0;
}
@media screen and (min-width: 768px) {
  .concept-list-item:nth-of-type(even) .concept-list-item__content {
    margin-left: 0;
  }
}

.concept-list-item__title-wrap--sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .concept-list-item__title-wrap--sp {
    display: none;
  }
}

.concept-list-item__title-wrap--sp-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .concept-list-item__title-wrap--sp-center {
    display: none;
  }
}

.concept-list-item:nth-of-type(even) .concept-list-item__title-wrap--pc {
  margin-top: 2.0625rem;
}

.concept-list-item__title-wrap--pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .concept-list-item__title-wrap--pc {
    display: block;
  }
}

.concept-list-item__title-wrap--sp--left {
  display: block;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .concept-list-item__title-wrap--sp--left {
    display: none;
  }
}

.concept-list-item__title-icon {
  width: 6.5rem;
}
@media screen and (min-width: 768px) {
  .concept-list-item__title-icon {
    width: 5.15625rem;
  }
}

.concept-list-item__title-icon--second {
  margin-bottom: 0.89375rem;
}

.concept-list-item__title-icon img {
  width: 100%;
  aspect-ratio: 82.5/23.7;
  -o-object-fit: contain;
     object-fit: contain;
}

.concept-list-item__title-meta {
  font-size: 0.75rem;
  line-height: 2.1;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  margin-top: 1.125rem;
}
@media screen and (min-width: 450px) {
  .concept-list-item__title-meta {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .concept-list-item__title-meta {
    font-size: 1rem;
    line-height: 2.63;
    margin-top: 1.25rem;
  }
}

.concept-list-item__title {
  font-size: 1.25rem;
  line-height: 1.3;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
}
@media screen and (min-width: 450px) {
  .concept-list-item__title {
    font-size: 2.25rem;
  }
}
@media screen and (min-width: 768px) {
  .concept-list-item__title {
    font-size: 1.25rem;
    line-height: 2rem;
  }
}

.concept-list-item__text-wrap {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .concept-list-item__text-wrap {
    margin-top: 2.625rem;
  }
}

.concept-list-item__text-wrap--first {
  margin-top: 1.6875rem;
}
@media screen and (min-width: 768px) {
  .concept-list-item__text-wrap--first {
    margin-top: 1.125rem;
  }
}

.concept-list-item__text-wrap--last {
  margin-bottom: 3.3125rem;
}
@media screen and (min-width: 768px) {
  .concept-list-item__text-wrap--last {
    margin-bottom: 5rem;
  }
}

.concept-list-item__text-wrap-second {
  margin-top: 0rem;
}
@media screen and (min-width: 768px) {
  .concept-list-item__text-wrap-second {
    margin-top: 1.875rem;
  }
}

.concept-list-item__text {
  margin-top: 1.25rem;
  font-size: 0.75rem;
  line-height: 1.8;
}
@media screen and (min-width: 450px) {
  .concept-list-item__text {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .concept-list-item__text {
    margin-top: 1.875rem;
    font-size: 1rem;
    line-height: 2;
  }
}

.concept-list-item__text-title {
  font-size: 1.05rem;
  font-family: "Noto Serif JP", serif;
  position: relative;
  padding-left: 2rem;
}
@media screen and (min-width: 450px) {
  .concept-list-item__text-title {
    font-size: 1.75rem;
  }
}
@media screen and (min-width: 768px) {
  .concept-list-item__text-title {
    font-size: 1.5rem;
  }
}

.concept-list-item__text-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(10%);
  width: 1.25rem;
  height: 1.25rem;
  background: url(../images/mv/icon.png) no-repeat center/contain;
}
@media screen and (min-width: 450px) {
  .concept-list-item__text-title::before {
    width: 1.875rem;
    height: 1.875rem;
    transform: translateY(20%);
  }
}
@media screen and (min-width: 768px) {
  .concept-list-item__text-title::before {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.concept-list-item__sign {
  width: 42%;
  margin-left: auto;
  margin-top: 1.05rem;
}

.concept-list-item__sign img {
  width: 100%;
  aspect-ratio: 239/53;
  -o-object-fit: cover;
     object-fit: cover;
}

.concept-list-item__content .sign{
  margin-top: 2.625rem;
  text-align: right;
  font-size: 2.8vw;
}
@media screen and (min-width: 768px) {
  .concept-list-item__content .sign{
    font-size: 14px;
  }
}

.concept-list-item__circle-wrap {
  position: relative;
  width: 18.75rem;
  height: 21.875rem;
  margin: 2.0625rem auto;
}
@media screen and (min-width: 600px) {
  .concept-list-item__circle-wrap {
    width: 26.25rem;
    height: 30.75rem;
    margin: 6.5625rem auto;
  }
}

.concept-list-item__circle {
  position: absolute;
  width: 11rem;
  height: 11rem;
  border-radius: 50%;
  opacity: 0.7;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  color: #fff;
}
@media screen and (min-width: 600px) {
  .concept-list-item__circle {
    width: 15.375rem;
    height: 15.375rem;
  }
}

.concept-list-item__circle--top {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #2893C3;
}

.concept-list-item__circle--left {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: #9FDD9A;
}

.concept-list-item__circle--right {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-color: #28C3B1;
}

.concept-list-item__circle--bottom {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #73DDE6;
}

.access__inner {
  margin: 0.9375rem auto;
  padding: 0 1.5625rem;
  width: 100%;
}
@media screen and (min-width: 450px) {
  .access__inner {
    margin: 1.875rem auto;
    padding: 0 2.5rem;
    max-width: 42.5rem;
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .access__inner {
    margin: 0.9375rem auto;
    padding: 0 1.5625rem;
    max-width: 65.625rem;
  }
}

.access__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .access__header {
    margin-bottom: 1.25rem;
  }
}

.access__icon {
  width: 40px;
  height: auto;
  margin-bottom: 10px;
}

.access__title {
  font-size: 1.575rem;
  color: #2893C3;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 450px) {
  .access__title {
    font-size: 2.625rem;
  }
}
@media screen and (min-width: 768px) {
  .access__title {
    font-size: 2.125rem;
  }
}

.access__subtitle {
  font-size: 0.75rem;
  color: #2893C3;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 450px) {
  .access__subtitle {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .access__subtitle {
    font-size: 1rem;
  }
}

.access-content__title {
  font-size: 1.05rem;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  line-height: 1.75;
  margin-bottom: 1.125rem;
  position: relative;
  padding-left: 2rem;
}
@media screen and (min-width: 450px) {
  .access-content__title {
    font-size: 1.75rem;
  }
}
@media screen and (min-width: 768px) {
  .access-content__title {
    font-size: 1.5rem;
    margin-bottom: 1.875rem;
  }
}

.access-content__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.45625rem;
  height: 1.95625rem;
  background: url(../images/mv/icon.png) no-repeat center/contain;
}

.access__content--not-first {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .access__content--not-first {
    margin-top: 4.375rem;
  }
}

.access-content__address {
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 400;
  margin-top: 0.875rem;
}
@media screen and (min-width: 450px) {
  .access-content__address {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .access-content__address {
    font-size: 1rem;
    margin-top: 1.875rem;
  }
}

.access-content__schedule {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  font-weight: 400;
  padding: 1.25rem;
  background-color: #ecf1f4;
}
@media screen and (min-width: 450px) {
  .access-content__schedule {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .access-content__schedule {
    font-size: 1rem;
    padding: 3.125rem;
  }
}

.access-content-schedule__item {
  margin-top: 1.5rem;
}

.access-content-schedule__item--margin-zero {
  margin-top: 0;
}

.access-content-schedule__time {
  font-size: 0.75rem;
  line-height: 1.6;
}
@media screen and (min-width: 450px) {
  .access-content-schedule__time {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .access-content-schedule__time {
    line-height: 1.75;
    font-size: 1rem;
  }
}

.access-content-schedule__text {
  padding: 0.25rem 0;
  display: inline-block;
  font-size: 0.75rem;
  line-height: 1.6;
  color: #ac9b77;
  text-decoration: underline;
  -webkit-text-decoration-color: #ac9b77;
          text-decoration-color: #ac9b77;
  text-underline-offset: 0.25rem;
  transition: -webkit-text-decoration-color 0.4s ease;
  transition: text-decoration-color 0.4s ease;
  transition: text-decoration-color 0.4s ease, -webkit-text-decoration-color 0.4s ease;
}
@media screen and (min-width: 450px) {
  .access-content-schedule__text {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .access-content-schedule__text {
    line-height: 1.75;
    font-size: 1rem;
  }
}

@media (any-hover: hover) {
  .access-content-schedule__text:hover {
    -webkit-text-decoration-color: transparent;
            text-decoration-color: transparent;
  }
}
.access__btn-wrap {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .access__btn-wrap {
    margin-top: 1.875rem;
  }
}

.access-content__link {
  padding: 0.25rem 0;
  display: inline-block;
  font-size: 0.75rem;
  line-height: 1.6;
  color: #ac9b77;
  text-decoration: underline;
  -webkit-text-decoration-color: #ac9b77;
          text-decoration-color: #ac9b77;
  text-underline-offset: 0.25rem;
  transition: -webkit-text-decoration-color 0.4s ease;
  transition: text-decoration-color 0.4s ease;
  transition: text-decoration-color 0.4s ease, -webkit-text-decoration-color 0.4s ease;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-all;
}
@media screen and (min-width: 450px) {
  .access-content__link {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .access-content__link {
    line-height: 1.75;
    font-size: 1rem;
  }
}

@media (any-hover: hover) {
  .access-content__link:hover {
    -webkit-text-decoration-color: transparent;
            text-decoration-color: transparent;
  }
}
.footer__nav-area {
  background-color: #178bbf;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
}
@media screen and (min-width: 450px) {
  .footer__nav-area {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  .footer__nav-area {
    font-size: 1rem;
  }
}

.footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.6125rem 3.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 450px) {
  .footer__nav-list {
    gap: 0.875rem 5rem;
  }
}
@media screen and (min-width: 768px) {
  .footer__nav-list {
    justify-content: center;
    gap: 0 3.125rem;
  }
}

.footer__nav-item {
  margin: 0;
}

.footer__nav-item a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -0.9375rem;
  width: 0.5rem;
  height: 0.5rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s;
}

.footer__nav-item a:hover::after {
  transform: translate(5px, -50%) rotate(45deg);
}

.footer__nav-item a {
  position: relative;
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  line-height: 1;
  letter-spacing: 0.05em;
  color: inherit;
  text-decoration: none;
}
@media screen and (min-width: 450px) {
  .footer__nav-item a {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  .footer__nav-item a {
    font-size: 1rem;
    line-height: 1.5;
    padding: 1.25rem 0;
  }
}

.footer__nav-item a::before {
  display: block;
}
@media screen and (min-width: 768px) {
  .footer__nav-item a::before {
    content: "";
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #fff;
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform 0.6s cubic-bezier(0.6, 0, 0, 1);
  }
}

@media (any-hover: hover) {
  .footer__nav-item a:hover::before {
    transform: scale(1, 1);
    transform-origin: left top;
  }
}
.footer__info-area {
  background-color: #2893C3;
  padding: 0rem 0 3rem;
}
@media screen and (min-width: 768px) {
  .footer__info-area {
    padding: 1.25rem 0 3rem;
  }
}

.footer-info__text {
  font-size: 0.675rem;
  font-weight: 500;
  line-height: 2;
  color: #fff;
}
@media screen and (min-width: 450px) {
  .footer-info__text {
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 768px) {
  .footer-info__text {
    font-size: 0.875rem;
    line-height: 2.5;
    color: #fff;
  }
}
.footer-info__sponsor {
 line-height: 1;
 text-align: center;
 background-color: #fff;
 margin-top: 0.625rem;
}
.footer-info__sponsor img{
  width: 100%;
  display: inline;
}
@media screen and (min-width: 768px) {
  .footer-info__sponsor img{
    width: 600px;
  }

}

.footer-info__archivewrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6125rem;
  margin-top: 1.25rem;
  position: relative;
  z-index: 100;
}
@media screen and (min-width: 450px) {
  .footer-info__archivewrap {
    gap: 0.875rem;
  }
}
@media screen and (min-width: 768px) {
  .footer-info__archivewrap {
    margin-top: 2rem;
    gap: 1.375rem;
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-info__archive {
  width: 100%;
}

.footer-info__archive img {
  width: 100%;
  aspect-ratio: 324/58;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer__bottom-area {
  padding-top: 2.34375rem;
  padding-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .footer__bottom-area {
    padding-top: 2.34375rem;
  }
}

.footer__sns {
  display: flex;
  justify-content: center;
  gap: 0.74375rem;
}
@media screen and (min-width: 450px) {
  .footer__sns {
    gap: 1.0625rem;
  }
}

.footer__sns-link img {
  width: 2.25rem;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 450px) {
  .footer__sns-link img {
    width: 3.1875rem;
  }
}
@media screen and (min-width: 768px) {
  .footer__sns-link img {
    width: 1.875rem;
  }
}

.footer__logo {
  width: 12.5rem;
  margin-top: 1.0625rem;
}
@media screen and (min-width: 768px) {
  .footer__logo {
    width: 10.625rem;
    margin-top: 2.375rem;
  }
}

.footer__logo img {
  width: 100%;
  aspect-ratio: 235/43.5;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer__copyright {
  font-size: 0.675rem;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin-top: 0.875rem;
  text-align: center;
}
@media screen and (min-width: 450px) {
  .footer__copyright {
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    font-size: 0.875rem;
  }
}

.footer__inner {
  margin: 0 auto;
  padding: 1.5625rem;
  width: 100%;
}
@media screen and (min-width: 450px) {
  .footer__inner {
    margin: 0 auto;
    padding: 2.5rem 2.5rem 2.6875rem;
    max-width: 42.5rem;
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .footer__inner {
    margin: 0 auto;
    padding: 1.25rem 1.5625rem;
    max-width: 65.625rem;
  }
}

.footer__inner--bottom-area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.header--sub .header {
  height: 2.5rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
}
@media screen and (min-width: 768px) {
  .header--sub .header {
    height: 4.375rem;
  }
}

.header--sub {
  background-color: transparent;
}
@media screen and (min-width: 768px) {
  .header--sub {
    background-color: #fff;
  }
}

.header--sub .header__inner {
  padding: 0 0.625rem 0 0.9375rem;
  height: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
}
@media screen and (min-width: 600px) {
  .header--sub .header__inner {
    padding: 0 0.9375rem;
  }
}
@media screen and (min-width: 768px) {
  .header--sub .header__inner {
    padding: 0 1.25rem 0 5%;
    background-color: #fff;
  }
}

.header__logo--sub {
  max-width: 11.25rem;
  width: 100%;
  height: inherit;
  display: none;
}
@media screen and (min-width: 768px) {
  .header__logo--sub {
    display: inline-block;
    max-width: 16.25rem;
  }
}

.header__logo a {
  height: inherit;
  display: flex;
  align-items: center;
}

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

.header__nav {
  display: none;
  height: inherit;
}
@media screen and (min-width: 768px) {
  .header__nav {
    display: block;
  }
}

.header__nav-list {
  display: flex;
  height: inherit;
}

.header__nav-item {
  height: inherit;
}

.header--sub .header__nav-item a {
  padding: 0 0.9375rem;
  height: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 0.375rem;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  line-height: 1.5;
  color: #363636;
  text-shadow: none;
  transition: all 0.3s ease;
}
@media screen and (min-width: 450px) {
  .header--sub .header__nav-item a {
    font-size: 0.625rem;
  }
}
@media screen and (min-width: 768px) {
  .header--sub .header__nav-item a {
    padding: 0 0.5rem;
  }
}
@media screen and (min-width: 1200px) {
  .header--sub .header__nav-item a {
    padding: 0 0.9375rem;
  }
}

.header--sub .header__nav-item a:hover {
  color: #002060;
  text-shadow: none;
}

.sub-header__lang--sp {
  display: flex;
  align-items: center;
  position: absolute;
  right: 19%;
  font-size: 0.525rem;
  top: 95%;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  color: #363636;
  z-index: 1;
}
@media screen and (min-width: 450px) {
  .sub-header__lang--sp {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 600px) {
  .sub-header__lang--sp {
    font-size: 1.5rem;
    top: 78%;
  }
}
@media screen and (min-width: 768px) {
  .sub-header__lang--sp {
    display: none;
  }
}

.header--sub .header__nav-item span {
  margin-top: 0.125rem;
  display: block;
  font-size: 0.6rem;
  line-height: 1.5;
}
@media screen and (min-width: 450px) {
  .header--sub .header__nav-item span {
    font-size: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .header--sub .header__nav-item span {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 1200px) {
  .header--sub .header__nav-item span {
    font-size: 1rem;
  }
}

.header--sub.header__lang--pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .header--sub.header__lang--pc {
    display: flex;
    align-items: center;
    position: absolute;
    top: 16%;
    right: 1.3%;
    font-size: 0.75rem;
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    color: #fff;
    z-index: 1000;
  }
}

.sub-header__lang-divider {
  color: #363636;
}

.sub-header__lang-current {
  color: #363636;
}

.sub-news__header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sub-news__titlewrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #363636;
}

.sub-news {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sub-news__tabs {
  display: flex;
  justify-content: center;
  gap: 0.4375rem;
  margin: 3.125rem 0 1.875rem;
}
@media screen and (min-width: 450px) {
  .sub-news__tabs {
    gap: 0.625rem;
  }
}
@media screen and (min-width: 768px) {
  .sub-news__tabs {
    gap: 1rem;
  }
}

.sub-news__tab {
  padding: 0.25rem 0.4375rem;
  font-size: 0.75rem;
  background-color: #ffffff;
  border: 1px solid #ccc;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
@media screen and (min-width: 450px) {
  .sub-news__tab {
    padding: 0.25rem 0.75rem;
  }
}
@media screen and (min-width: 768px) {
  .sub-news__tab {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
  }
}

.sub-news__tab.is-active {
  background-color: #000;
  color: #fff;
  border-color: #000;
  font-weight: bold;
}

.sub-news__title-en {
  color: #363636;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
}

.sub-news__title-jp {
  color: #363636;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
}

.sub-news__contentwrap {
  width: 100%;
  color: #363636;
  margin-top: 0rem;
}

.sub-news__content {
  color: #363636;
  border-top: 1px solid #363636;
  border-bottom: none;
}

.js-pagination-target.is-last .sub-news__content {
  border-bottom: 1px solid #363636;
}

.sub-news__item a {
  padding: 1.25rem 0;
  display: block;
}
@media screen and (min-width: 768px) {
  .sub-news__item a {
    display: flex;
    align-items: flex-start;
  }
}

.sub-news__item-meta {
  display: flex;
  align-items: center;
}

.sub-news__item-date {
  font-size: 1rem;
  line-height: 1;
}

.sub-news__item-category {
  margin-left: 1.875rem;
  padding: 0.3125rem;
  min-width: 5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 0.875rem;
  line-height: 1;
  color: #fff;
  background-color: #73B2C8;
  text-align: center;
}

.sub-news__item-title {
  margin-top: 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .sub-news__item-title {
    margin-top: 0;
    margin-left: 3.75rem;
  }
}

.sub-news__list{
  width: 100%;
}

.sub-news__list .news-meta__date {
  color: #363636;
}

.sub-news__list .news-meta__tag {
  color: #363636;
  border: 1px solid #363636;
}

.sub-news__list .news__text {
  color: #363636;
  line-height: 2;
}

.sub-news__inner {
  position: relative;
  z-index: 1;
  margin: auto;
  padding: 0 1.5625rem;
  width: 100%;
}
@media screen and (min-width: 450px) {
  .sub-news__inner {
    margin: auto;
    padding: 0 2.5rem;
    max-width: 42.5rem;
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .sub-news__inner {
    padding: 0 1.5625rem;
    max-width: 65.625rem;
  }
}

.program-list__menu {
  display: flex;
  justify-content: center;
}

.program-list__menu-item {
  padding: 0.375rem;
  min-width: 6.25rem;
  width: 49.6%;
  font-size: 0.75rem;
  line-height: 1.5;
  color: #fff;
  border: 1px solid #b7b7b7;
  background-color: #b7b7b7;
  text-align: center;
  cursor: pointer;
  position: relative;
}
@media screen and (min-width: 450px) {
  .program-list__menu-item {
    padding: 0.625rem;
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .program-list__menu-item {
    font-size: 1rem;
  }
}

.program-list__menu-item + .program-list__menu-item {
  margin-left: 0.3rem;
}
@media screen and (min-width: 450px) {
  .program-list__menu-item + .program-list__menu-item {
    margin-left: 0.5rem;
  }
}
@media screen and (min-width: 768px) {
  .program-list__menu-item + .program-list__menu-item {
    margin-left: 0.5rem;
  }
}

.program-list__menu-item.is-active {
  color: #fff;
  background-color: #2893c3;
}

.program-list__menu-item.is-active::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  /* タイトル帯の下に配置 */
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 0.5rem solid transparent;
  border-right: 0.5rem solid transparent;
  border-top: 0.5rem solid #2893c3;
  /* タイトルと同じ色 */
}

.program-list {
  margin-top: 2.25rem;
}
@media screen and (min-width: 450px) {
  .program-list {
    margin-top: 50px;
  }
}

.program-list-content__item-wrap {
  display: flex;
  gap: 0.875rem;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .program-list-content__item-wrap {
    padding: 2.5rem 0rem;
    flex-direction: row;
    gap: 2.75rem;
  }
}

.program-list-content__item-wrap:not(:first-child) {
  margin-top: 3rem;
}
@media screen and (min-width: 450px) {
  .program-list-content__item-wrap:not(:first-child) {
    margin-top: 5rem;
  }
}
@media screen and (min-width: 768px) {
  .program-list-content__item-wrap:not(:first-child) {
    margin-top: 0rem;
  }
}

.program-list-content__details-venue-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 1.125rem;
  flex-direction: column;
}
@media screen and (min-width: 450px) {
  .program-list-content__details-venue-wrap {
    margin-top: 1.875rem;
  }
}
@media screen and (min-width: 768px) {
  .program-list-content__details-venue-wrap {
    margin-top: 1.875rem;
    flex-direction: row;
    align-items: center;
  }
}

.program-list-content__details-venue {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.program-list-content__date-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: bold;
  font-size: 1.05rem;
  font-family: "Noto Serif JP", serif;
  line-height: 1.33;
  justify-content: center;
}
@media screen and (min-width: 450px) {
  .program-list-content__date-wrap {
    font-size: 1.75rem;
  }
}
@media screen and (min-width: 768px) {
  .program-list-content__date-wrap {
    font-size: 1.5rem;
    line-height: 1.33;
  }
}

.program-list-content__item-date {
  display: block;
  font-size: 1.65rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
}
@media screen and (min-width: 450px) {
  .program-list-content__item-date {
    font-size: 2.75rem;
  }
}
@media screen and (min-width: 768px) {
  .program-list-content__item-date {
    font-size: 2.5rem;
  }
}

.program-list-content__details-title {
  font-size: 1.05rem;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  line-height: 1.5;
  position: relative;
  padding-left: 1.2rem;
}
@media screen and (min-width: 450px) {
  .program-list-content__details-title {
    font-size: 1.75rem;
    padding-left: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .program-list-content__details-title {
    font-size: 1.5rem;
    line-height: 1.4;
    padding-left: 2rem;
  }
}

.program-list-content__details-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(10%);
  width: 1.125rem;
  height: 1.125rem;
  background: url(../images/mv/icon.png) no-repeat center/contain;
}
@media screen and (min-width: 450px) {
  .program-list-content__details-title::before {
    width: 1.875rem;
    height: 1.875rem;
    transform: translateY(20%);
  }
}
@media screen and (min-width: 768px) {
  .program-list-content__details-title::before {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.program-list-content__details-venue-text {
  font-size: 0.75rem;
  line-height: 2.44;
  margin-bottom: 0.375rem;
}
@media screen and (min-width: 450px) {
  .program-list-content__details-venue-text {
    font-size: 1.25rem;
    margin-bottom: 0.625rem;
  }
}
@media screen and (min-width: 768px) {
  .program-list-content__details-venue-text {
    font-size: 1rem;
    line-height: 2.15;
  }
}

.program-list-content__details-tags {
  display: flex;
  gap: 1rem;
  flex-wrap: nowrap;
  margin-top: 1.125rem;
}
@media screen and (min-width: 450px) {
  .program-list-content__details-tags {
    margin-top: 1.875rem;
    gap: 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .program-list-content__details-tags {
    margin-top: 0.75rem;
    gap: 1.125rem;
  }
}

.program-list-content__details-tag {
  display: inline-block;
  padding: 0.1875rem 0.825rem;
  font-size: 0.5625rem;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (min-width: 450px) {
  .program-list-content__details-tag {
    padding: 0.3125rem 1.375rem;
    font-size: 0.9375rem;
  }
}
@media screen and (min-width: 768px) {
  .program-list-content__details-tag {
    font-size: 0.75rem;
    padding: 0.3125rem 0.875rem;
  }
}

.program-list-content__details-tag--venue-yokohama {
  background-color: #2896c3;
  color: #fff;
}

.program-list-content__details-tag--venue-nagoya {
  background-color: #e39d00;
  color: #fff;
}

.program-list-content__details-tag--venue-tokai {
  background-color: #e39d00;
  color: #fff;
}

.program-list-content__details-tag--venue-iwate {
  background-color: #4ac13a;
  color: #fff;
}

.program-list-content__details-tag--venue-miyagi {
  background-color: #4ac13a;
  color: #fff;
}

.program-list-content__details-tag--genre {
  background-color: #ac9b77;
  color: #fff;
}

.program-list-content__details-banner {
  width: 100%;
  border: 1px solid #707070;
  position: relative;
  display: inline-block;
  cursor: pointer;
  margin-top: 1.125rem;
}
@media screen and (min-width: 450px) {
  .program-list-content__details-banner {
    margin-top: 1.875rem;
  }
}
@media screen and (min-width: 768px) {
  .program-list-content__details-banner {
    width: 48%;
    margin-top: 0rem;
  }
}

.program-list-content__details-banner img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 384/202;
}

/* 青丸の背景 */
.program-list-content__details-banner::after {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 2.5rem;
  height: 2.5rem;
  background-color: #2893c3;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.3s ease;
  z-index: 1;
}

/* 文字矢印 → を中央に配置 */
.program-list-content__details-banner::before {
  content: "→";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10.8px;
  line-height: 1;
  color: #fff;
  z-index: 2;
  transition: transform 0.3s ease;
}
@media screen and (min-width: 450px) {
  .program-list-content__details-banner::before {
    font-size: 18px;
  }
}

/* ホバーアニメーション（両方右に動く） */
.program-list-content__details-banner:hover::after {
  transform: translateX(calc(-50% + 5px));
}

.program-list-content__details-banner:hover::before {
  transform: translateX(calc(-50% + 5px));
}

.program-list-content__tab {
  padding: 2.8125rem 1.5rem;
  display: none;
  background-color: #fff;
}
@media screen and (min-width: 450px) {
  .program-list-content__tab {
    padding: 4.6875rem 2.5rem;
  }
}
@media screen and (min-width: 768px) {
  .program-list-content__tab {
    padding: 2.5rem 3.125rem;
  }
}

.program-list-content__tab.is-active {
  display: block;
  -webkit-animation: fade 0.3s;
          animation: fade 0.3s;
}

.program-list-content__details-info-table {
  max-width: 25rem;
  margin: 0 auto;
  font-size: 0.75rem;
  color: #363636;
}
@media screen and (min-width: 450px) {
  .program-list-content__details-info-table {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .program-list-content__details-info-table {
    font-size: 0.875rem;
  }
}

.program-list-content__details-info-table-row {
  display: flex;
  margin-bottom: 0.225rem;
}
@media screen and (min-width: 450px) {
  .program-list-content__details-info-table-row {
    margin-bottom: 0.375rem;
  }
}
@media screen and (min-width: 768px) {
  .program-list-content__details-info-table-row {
    margin-bottom: 0.5rem;
  }
}

.program-list-content__details-info-table-title {
  width: 6.25rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 0.15rem 0rem;
  border: 1px solid #999;
  text-align: center;
  font-weight: bold;
  background-color: #fff;
  box-sizing: border-box;
}
@media screen and (min-width: 450px) {
  .program-list-content__details-info-table-title {
    padding: 0.25rem 0rem;
  }
}

.program-list-content__details-info-table-detail {
  flex: 1;
  padding: 0.15rem 0.3rem;
  border-left: none;
  background-color: #fff;
  box-sizing: border-box;
}
@media screen and (min-width: 450px) {
  .program-list-content__details-info-table-detail {
    padding: 0.25rem 0.5rem;
  }
}

.program-list-content__details-info-table-link {
  color: #ac9b77;
  text-decoration: none;
  border-bottom: 1px solid #ac9b77;
  transition: border-color 0.3s ease;
}

.program-list-content__details-info-table-link:hover {
  border-color: transparent;
}

@media screen and (min-width: 768px) {
  .program-list-content__details-wrap {
    flex: 1;
  }
}

.filter {
  margin-top: 3rem;
  border: 1px solid #2896c3;
  border-radius: 6.25rem;
  padding: 0.75rem 6%;
  text-align: center;
}
@media screen and (min-width: 450px) {
  .filter {
    margin-top: 5rem;
    padding: 1.25rem 10%;
  }
}
@media screen and (min-width: 768px) {
  .filter {
    margin-top: 50px;
    border-radius: 5rem;
    padding: 1.25rem 0.625rem;
  }
}

.filter--genre {
  margin-top: 1.125rem;
}
@media screen and (min-width: 450px) {
  .filter--genre {
    margin-top: 1.875rem;
  }
}
@media screen and (min-width: 768px) {
  .filter--genre {
    margin-top: 10px;
  }
}

.filter__title {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-weight: bold;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #363636;
  margin-bottom: 0.3rem;
}
@media screen and (min-width: 450px) {
  .filter__title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
  }
}
@media screen and (min-width: 768px) {
  .filter__title {
    font-size: 1.5rem;
  }
}

.filter__title-icon {
  width: 1.5rem;
  height: 1.5rem;
  background: url(../images/mv/icon.png) no-repeat center/contain;
  display: inline-block;
}
@media screen and (min-width: 450px) {
  .filter__title-icon {
    width: 1.875rem;
    height: 1.875rem;
  }
}

.filter__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.825rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (min-width: 450px) {
  .filter__list {
    gap: 1.375rem;
  }
}
@media screen and (min-width: 768px) {
  .filter__list {
    gap: 1.25rem;
  }
}

.filter__item {
  padding: 0.15rem 0.825rem;
  font-size: 0.5625rem;
  font-weight: 400;
  cursor: pointer;
  transition: 0.3s;
  border: 1px solid transparent;
}
@media screen and (min-width: 450px) {
  .filter__item {
    padding: 0.25rem 1.375rem;
    font-size: 0.9375rem;
  }
}
@media screen and (min-width: 768px) {
  .filter__item {
    font-size: 0.75rem;
    padding: 0.25rem 0.875rem;
  }
}

.filter__item.is-active {
  background-color: #888;
  color: #fff;
  font-weight: bold;
  border: 2px solid #888;
}

/* 会場ごとのカラー */
.filter--venue .filter__item[data-filter=venue-yokohama] {
  background-color: #2896c3;
  color: #fff;
}

.filter--venue .filter__item[data-filter=venue-nagoya] {
  background-color: #e39d00;
  color: #fff;
}

.filter--venue .filter__item[data-filter=venue-tokai] {
  background-color: #e39d00;
  color: #fff;
}

.filter--venue .filter__item[data-filter=venue-iwate] {
  background-color: #4ac13a;
  color: #fff;
}

.filter--venue .filter__item[data-filter=venue-miyagi] {
  background-color: #4ac13a;
  color: #fff;
}

.filter--venue .filter__item[data-filter=venue-all] {
  background-color: #fff;
  color: #363636;
}

/* ジャンルごとのカラー */
.filter--genre .filter__item[data-filter=genre-orchestra] {
  background-color: #ac9b77;
  color: #fff;
}

.filter--genre .filter__item[data-filter=genre-chamber] {
  background-color: #ac9b77;
  color: #fff;
}

.filter--genre .filter__item[data-filter=genre-masterclass] {
  background-color: #ac9b77;
  color: #fff;
}

.filter--genre .filter__item[data-filter=genre-all] {
  background-color: #fff;
  color: #363636;
}

/* ========================
   フィルター：ホバーで色反転
======================== */
.filter__item[data-filter=venue-yokohama]:hover,
.filter__item[data-filter=venue-yokohama].is-active {
  background-color: #fff;
  color: #2896c3;
  border: 2px solid #2896c3;
}

.filter__item[data-filter=venue-nagoya]:hover,
.filter__item[data-filter=venue-nagoya].is-active {
  background-color: #fff;
  color: #e39d00;
  border: 2px solid #e39d00;
}

.filter__item[data-filter=venue-tokai]:hover,
.filter__item[data-filter=venue-tokai].is-active {
  background-color: #fff;
  color: #e39d00;
  border: 2px solid #e39d00;
}

.filter__item[data-filter=venue-iwate]:hover,
.filter__item[data-filter=venue-iwate].is-active {
  background-color: #fff;
  color: #4ac13a;
  border: 2px solid #4ac13a;
}

.filter__item[data-filter=venue-miyagi]:hover,
.filter__item[data-filter=venue-miyagi].is-active {
  background-color: #fff;
  color: #4ac13a;
  border: 2px solid #4ac13a;
}

.filter__item[data-filter=venue-all] {
  background-color: #fff;
  color: #363636;
  transition: 0.3s;
}

.filter__item[data-filter=genre-orchestra]:hover,
.filter__item[data-filter=genre-orchestra].is-active {
  background-color: #fff;
  color: #ac9b77;
  border: 2px solid #ac9b77;
}

.filter__item[data-filter=genre-chamber]:hover,
.filter__item[data-filter=genre-chamber].is-active {
  background-color: #fff;
  color: #ac9b77;
  border: 2px solid #ac9b77;
}

.filter__item[data-filter=genre-masterclass]:hover,
.filter__item[data-filter=genre-masterclass].is-active {
  background-color: #fff;
  color: #ac9b77;
  border: 2px solid #ac9b77;
}

.filter__item[data-filter=genre-all] {
  background-color: #fff;
  color: #363636;
  transition: 0.3s;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(6, minmax(150px, 1fr));
  gap: 1.25rem;
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 2.5rem auto;
}
@media screen and (min-width: 600px) {
  .gallery__grid {
    gap: 2.1875rem;
    margin: 2.5rem auto;
  }
}
@media screen and (min-width: 768px) {
  .gallery__grid {
    gap: 1.875rem;
    grid-template-columns: repeat(4, 1fr);
    margin: 3.125rem auto;
  }
}

.gallery__item {
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.gallery__item:hover {
  opacity: 0.7;
}
.gallery__item--large {
  grid-row: span 2;
}
.gallery__item--video {
  cursor: pointer;
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 227/161;
}
.gallery__item--video:hover {
  opacity: 0.7;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 227/161;
  transition: transform 0.3s ease;
  border: 1px solid #2893C3;
}

.gallery__item--large img {
  width: 100%;
  height: 100%;
  aspect-ratio: 227/352;
  -o-object-fit: cover;
     object-fit: cover;
}

.gallery__item--large .gallery__video {
  width: 100%;
  height: 100%;
  aspect-ratio: 227/352;
}

.gallery__item--large .gallery__video img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
  aspect-ratio: 227/352;
}

.gallery__video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
  aspect-ratio: 227/352;
}

.gallery__play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #2893c3;
  border: none;
  border-radius: 50%;
  width: 2.875rem;
  height: 2.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 3;
}
.gallery__play-button svg {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
}

.gallery__modal-inner {
  max-width: 50rem;
  padding: 1.25rem;
  margin: 0 auto;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .gallery__modal-inner {
    max-width: 62.5rem;
  }
}

.gallery__modal-img {
  width: 100%;
  max-width: 37.5rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .gallery__modal-img {
    max-width: 43.75rem;
  }
}

.gallery__modal-img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 900/503;
}

.gallery__modal-text {
  color: #fff;
  text-align: center;
  margin: 0 auto;
  font-family: "Noto Serif JP", serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2.44;
}
@media screen and (min-width: 768px) {
  .gallery__modal-text {
    font-size: 0.875rem;
  }
}

.gallery__modal-youtube {
  width: 100%;
  aspect-ratio: 900/507;
  position: relative;
  overflow: hidden;
  margin: auto;
}

.gallery__modal-youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modal {
  display: flex;
  visibility: hidden;
  position: fixed;
  inset: 0;
  background-image: linear-gradient(124deg, #2893c3 41%, #6abcd0 100%);
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1000;
}

.modal::before {
  content: "";
  position: absolute;
  height: auto;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 1;
  pointer-events: none;
}

.modal::before {
  width: 39%;
  aspect-ratio: 252/608;
  top: 0;
  left: 0;
  transform: translateY(0);
  background-image: url("../images/artists/modal-logo-left.png");
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .modal::before {
    width: 17%;
  }
}

.modal.active {
  display: flex;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: none;
  max-width: 62.5rem;
  width: 100%;
  border-radius: 10px;
  position: relative;
  padding: 2.5rem;
  margin: 3.75rem auto;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  transform: scale(0.95);
  opacity: 0;
  transition: all 1s ease;
}

.modal.active .modal-content {
  transform: scale(1);
  opacity: 1;
}

.modal-close {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 1.875rem;
  width: 3.75rem;
  height: 3.75rem;
  border: 1px solid #fff;
  background: none;
  color: #fff;
  border-radius: 6.25rem;
  cursor: pointer;
  z-index: 1100;
}

.modal-inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .modal-inner {
    flex-direction: row;
  }
}

.modal-img {
  max-width: 22.625rem;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .modal-img {
    width: 36%;
    margin-right: auto;
  }
}

.modal-img img {
  width: 100%;
  /*aspect-ratio: 362/503;*/
  -o-object-fit: cover;
     object-fit: cover;
}

.modal-text {
  color: #fff;
  flex: 1;
}

.modal-name {
  font-size: 1.75rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  padding-left: 2rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .modal-name {
    font-size: 1.5rem;
    padding-left: 2rem;
  }
}

.modal-name::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(70%);
  width: 1.125rem;
  height: 1.125rem;
  background: url(../images/artists/line.png) no-repeat center/contain;
}
@media screen and (min-width: 450px) {
  .modal-name::before {
    width: 1.875rem;
    height: 1.875rem;
    transform: translateY(35%);
  }
}
@media screen and (min-width: 768px) {
  .modal-name::before {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.modal-role {
  font-size: 1.25rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  margin-top: 0.875rem;
}
@media screen and (min-width: 768px) {
  .modal-role {
    font-size: 1rem;
  }
}

.modal-description {
  font-size: 1.25rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 2;
  margin-top: 0.875rem;
}
@media screen and (min-width: 768px) {
  .modal-description {
    font-size: 1rem;
  }
}

hr {
  margin: 3.125rem 0;
  border-top: solid 1px #fff;
  border-bottom: unset;
}

.modal-tags {
  display: flex;
  gap: 1rem 0.875rem;
  flex-wrap: wrap;
  margin: 0.875rem 0 3.125rem;
}
@media screen and (min-width: 450px) {
  .modal-tags {
    margin: 1.5rem 0 3.125rem;
    gap: 1.875rem 0.9375rem;
  }
}
@media screen and (min-width: 768px) {
  .modal-tags {
    margin: 0.875rem 0 3.125rem;
    gap: 1rem 0.875rem;
  }
}

.modal-tag {
  display: inline-block;
  padding: 0.1875rem 0.825rem;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  background-color: #ac9877;
}
@media screen and (min-width: 450px) {
  .modal-tag {
    padding: 0.3125rem 1.375rem;
    font-size: 0.9375rem;
  }
}
@media screen and (min-width: 768px) {
  .modal-tag {
    font-size: 0.75rem;
    padding: 0.3125rem 0.875rem;
  }
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 0.875rem;
  list-style: none;
  padding: 0;
  margin: 40px 0;
}
@media screen and (min-width: 450px) {
  .pagination {
    gap: 1.625rem;
  }
}

.pagination__item {
  width: 1.875rem;
  height: 1.875rem;
  line-height: 1.8;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 400;
  color: #333;
  background-color: #fff;
  border: 1px solid #ccc;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media screen and (min-width: 450px) {
  .pagination__item {
    width: 3rem;
    height: 3rem;
    line-height: 3rem;
  }
}

.pagination__item:hover {
  background-color: #eee;
}

.pagination__item.is-active {
  background-color: #333;
  color: #fff;
  pointer-events: none;
}

/* --------------------------
  カレンダーを包む外枠
-------------------------- */
#calendar-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 0.75rem;
  width: 100%;
}
@media screen and (min-width: 450px) {
  #calendar-container {
    gap: 2.5rem;
    margin-top: 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  #calendar-container {
    margin-top: 5px;
  }
}

/* --------------------------
  カレンダー全体
-------------------------- */
.calendar {
  width: 100%;
  font-family: "Noto Serif JP", serif;
  font-size: 0.525rem;
  overflow: hidden;
}
@media screen and (min-width: 450px) {
  .calendar {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 768px) {
  .calendar {
    width: 35%;
  }
}

/* --------------------------
  カレンダーのタイトル
-------------------------- */
.calendar__title {
  background-color: #2893c3;
  color: #fff;
  font-weight: bold;
  text-align: center;
  padding: 0.675rem 0;
  font-size: 0.9375rem;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 450px) {
  .calendar__title {
    padding: 1.125rem 0;
    font-size: 1.5625rem;
  }
}
@media screen and (min-width: 768px) {
  .calendar__title {
    font-size: 12px;
    padding: 5px 0;
  }
}

/* --------------------------
  曜日ヘッダー（7列）
-------------------------- */
.calendar__header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

/* --------------------------
  カレンダー日付部分（7列）
-------------------------- */
.calendar__body {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

/* --------------------------
  曜日セル
-------------------------- */
.calendar__day {
  text-align: center;
  padding: 0.3rem;
  font-weight: 700;
  font-size: 0.825rem;
  font-family: "Noto Serif JP", serif;
  border: 1px solid #707070;
}
@media screen and (min-width: 450px) {
  .calendar__day {
    padding: 0.5rem;
    font-size: 1rem;
  }
}
@media screen and (min-width: 600px) {
  .calendar__day {
    padding: 0.5rem;
    font-size: 1.375rem;
  }
}
@media screen and (min-width: 768px) {
  .calendar__day {
    font-size: 12px;
    padding: 2px;
  }
}

/* --------------------------
  日付セル（通常）
-------------------------- */
.calendar__date {
  position: relative;
  text-align: center;
  padding: 0.525rem 0;
  border: 1px solid #707070;
  font-size: 0.825rem;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  transition: background-color 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}
@media screen and (min-width: 450px) {
  .calendar__date {
    padding: 0.875rem 0;
    font-size: 1.375rem;
  }
}
@media screen and (min-width: 768px) {
  .calendar__date {
    font-size: 0.875rem;
    padding: 2px 0;
  }
}

/* hover時の色変更（上書き） */
.calendar__date:hover {
  cursor: pointer;
}

/* イベント付き日 */
.calendar__date.is-event-day {
  background-color: transparent;
  color: #fff;
}

.calendar__date.is-event-day .calendar__day-number {
  display: inline-block;
  width: 2.25rem;
  height: 2.25rem;
  line-height: 2.25rem;
  background-color: #2893c3;
  border-radius: 50%;
  font-weight: 700;
  color: #fff;
}
@media screen and (min-width: 450px) {
  .calendar__date.is-event-day .calendar__day-number {
    width: 2.5rem;
    height: 2.5rem;
    line-height: 2.5rem;
  }
}
@media screen and (min-width: 600px) {
  .calendar__date.is-event-day .calendar__day-number {
    width: 3.75rem;
    height: 3.75rem;
    line-height: 3.75rem;
  }
}
@media screen and (min-width: 768px) {
  .calendar__date.is-event-day .calendar__day-number {
    width: 2.5rem;
    height: 2.5rem;
    line-height: 2.5rem;
  }
}

/* 他の月の日付 */
.calendar__date.is-other-month {
  color: #ccc;
}

/* --------------------------
  日付の中の数字表示
-------------------------- */
.calendar__day-number {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  line-height: 1.5rem;
  text-align: center;
  font-size: 0.825rem;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 600px) {
  .calendar__day-number {
    width: 1.875rem;
    height: 1.875rem;
    line-height: 1.875rem;
    font-size: 1rem;
  }
}
@media screen and (min-width: 600px) {
  .calendar__day-number {
    width: 2.5rem;
    height: 2.5rem;
    line-height: 2.5rem;
    font-size: 1.375rem;
  }
}
@media screen and (min-width: 768px) {
  .calendar__day-number {
    font-size: 0.875rem;
  }
}

/* --------------------------
  イベントバッジ
-------------------------- */
.calendar__badge {
  display: block;
  width: 0.225rem;
  height: 0.225rem;
  margin: 0.15rem auto 0;
  background: #2893c3;
  border-radius: 50%;
}
@media screen and (min-width: 450px) {
  .calendar__badge {
    width: 0.375rem;
    height: 0.375rem;
    margin: 0.25rem auto 0;
  }
}

/* 上書きバージョン（大きめバッジ） */
.calendar__badge--large {
  position: absolute;
  left: 50%;
  bottom: 0.225rem;
  transform: translateX(-50%);
  width: 0.75rem;
  height: 0.75rem;
  background-color: #2893c3;
}
@media screen and (min-width: 450px) {
  .calendar__badge--large {
    bottom: 0.375rem;
    width: 1.25rem;
    height: 1.25rem;
  }
}

/* --------------------------
  イベントリスト
-------------------------- */
.event-list {
  max-width: 37.5rem;
  margin: 1.5rem auto;
  font-size: 0.525rem;
}
@media screen and (min-width: 450px) {
  .event-list {
    margin: 2.5rem auto;
    font-size: 0.875rem;
  }
}

.event {
  padding: 0.75rem 0;
  border-bottom: 1px solid #707070;
}
@media screen and (min-width: 450px) {
  .event {
    padding: 1.25rem 0;
  }
}

.event__title {
  font-size: 0.6rem;
  font-weight: bold;
  margin-bottom: 0.15rem;
}
@media screen and (min-width: 450px) {
  .event__title {
    font-size: 1rem;
    margin-bottom: 0.25rem;
  }
}

.event__date {
  font-size: 0.45rem;
  color: #666;
}
@media screen and (min-width: 450px) {
  .event__date {
    font-size: 0.75rem;
  }
}

.calendar-legend {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 0.75rem;
  color: #363636;
  gap: 0.3rem;
}
@media screen and (min-width: 450px) {
  .calendar-legend {
    font-size: 1.25rem;
    gap: 0.5rem;
  }
}
@media screen and (min-width: 768px) {
  .calendar-legend {
    font-size: 0.75rem;
  }
}

.calendar-legend__icon {
  width: 0.45rem;
  height: 0.45rem;
  background-color: #2893c3;
  border-radius: 50%;
  display: inline-block;
}
@media screen and (min-width: 450px) {
  .calendar-legend__icon {
    width: 0.75rem;
    height: 0.75rem;
  }
}

/* 装飾的な点線（任意） */
.calendar-legend__text::before {
  content: "・・・・";
  margin-right: 0.375rem;
  color: #363636;
  font-size: 0.525rem;
  letter-spacing: -0.6em;
}
@media screen and (min-width: 450px) {
  .calendar-legend__text::before {
    margin-right: 0.625rem;
    font-size: 0.875rem;
  }
}

.calendar-wrap {
  margin-top: 0.8625rem;
}
@media screen and (min-width: 450px) {
  .calendar-wrap {
    margin-top: 1.4375rem;
  }
}
@media screen and (min-width: 768px) {
  .calendar-wrap {
    margin-top: 3.125rem;
  }
}

/* ========================
   カレンダー：ホバー制御
======================== */
/* 全体のホバー効果を無効化 */
.calendar__date:hover {
  background-color: transparent;
  cursor: default;
}

/* 青丸のあるイベント日にだけホバー効果 */
.calendar__date.is-event-day:hover .calendar__day-number {
  background-color: #fff;
  color: #2893c3;
  border: 1px solid #2893c3;
  cursor: pointer;
}

.sub-program__inner {
  position: relative;
  z-index: 1;
  margin: auto;
  padding: 0 1.5625rem;
  width: 100%;
}
@media screen and (min-width: 450px) {
  .sub-program__inner {
    margin: auto;
    padding: 0 2.5rem;
    max-width: 42.5rem;
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .sub-program__inner {
    padding: 0 1.5625rem;
    max-width: 65.625rem;
  }
}

.sub-page__header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sub-page__titlewrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #363636;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
}

.sub-page__icon {
  width: 3.75rem;
}
@media screen and (min-width: 450px) {
  .sub-page__icon {
    width: 6.4375rem;
  }
}
@media screen and (min-width: 768px) {
  .sub-page__icon {
    width: 5.15625rem;
  }
}

.sub-page__icon img {
  width: 100%;
  aspect-ratio: 82.5/23.7;
  -o-object-fit: contain;
     object-fit: contain;
}

.sub-page {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sub-page__title-en {
  color: #363636;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 1.5rem;
}
@media screen and (min-width: 450px) {
  .sub-page__title-en {
    font-size: 2.625rem;
  }
}
@media screen and (min-width: 768px) {
  .sub-page__title-en {
    font-size: 2.125rem;
  }
}

.sub-page__title-jp {
  color: #363636;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 0.875rem;
}
@media screen and (min-width: 450px) {
  .sub-page__title-jp {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .sub-page__title-jp {
    font-size: 1rem;
  }
}

.sub-artists__wrap {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .sub-artists__wrap {
    margin-top: 3.125rem;
  }
}

.sub-artists-list--upper {
  display: grid;
  gap: 0.875rem;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (min-width: 450px) {
  .sub-artists-list--upper {
    gap: 1rem;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .sub-artists-list--upper {
    gap: 1.875rem;
    grid-template-columns: repeat(5, 1fr);
  }
}

.sub-artists-list--lower {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(1, 1fr);
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .sub-artists-list--lower {
    gap: 1.875rem;
    grid-template-columns: repeat(2, 1fr);
  }
}

.sub-artists-list__item a {
  display: block;
}

.sub-artists-list__item-img {
  width: 100%;
  position: relative;
  border: 1px solid #2893C3;
}

.sub-artists-list__item-img img {
  width: 100%;
  aspect-ratio: 176/176;
  -o-object-fit: cover;
     object-fit: cover;
}

.sub-artists-list--lower .sub-artists-list__item-img img {
  width: 100%;
  aspect-ratio: 485/176;
  -o-object-fit: cover;
     object-fit: cover;
}

/* 青丸の背景 */
.sub-artists-list__item-img::after {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 2.5rem;
  height: 2.5rem;
  background-color: #2893c3;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.3s ease;
  z-index: 1;
}

/* 文字矢印 → を中央に配置 */
.sub-artists-list__item-img::before {
  content: "→";
  position: absolute;
  bottom: -13px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10.8px;
  line-height: 1;
  color: #fff;
  z-index: 2;
  transition: transform 0.3s ease;
}
@media screen and (min-width: 450px) {
  .sub-artists-list__item-img::before {
    font-size: 18px;
  }
}

/* ホバーアニメーション（両方右に動く） */
.sub-artists-list__item:hover .sub-artists-list__item-img::before {
  transform: translateX(calc(-50% + 5px));
}

.sub-artists-list__item:hover .sub-artists-list__item-img::after {
  transform: translateX(calc(-50% + 5px));
}

.sub-artists-list__item-content {
  margin-top: 2rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .sub-artists-list__item-content {
    margin-top: 1.75rem;
  }
}

.sub-artists-list__item-role {
  font-size: 0.625rem;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  color: #363636;
}
@media screen and (min-width: 450px) {
  .sub-artists-list__item-role {
    font-size: 0.75rem;
  }
}
@media screen and (min-width: 768px) {
  .sub-artists-list__item-role {
    font-size: 0.75rem;
  }
}

.sub-artists-list__item-category {
  font-size: 0.75rem;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  color: #363636;
}
@media screen and (min-width: 450px) {
  .sub-artists-list__item-category {
    font-size: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .sub-artists-list__item-category {
    font-size: 1rem;
  }
}

.sub-artists-list__item-name {
  font-size: 0.875rem;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  line-height: 1.5;
}
@media screen and (min-width: 450px) {
  .sub-artists-list__item-name {
    font-size: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .sub-artists-list__item-name {
    font-size: 1.125rem;
  }
}

.sub-artists-list__item-icon::after {
  content: "";
  display: inline-block;
  width: 0.75rem;
  height: 0.9375rem;
  background: url("../images/artists/icon.png") no-repeat center;
  background-size: contain;
}

.sub-artists-list__item-text {
  font-size: 0.625rem;
}
@media screen and (min-width: 450px) {
  .sub-artists-list__item-text {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 768px) {
  .sub-artists-list__item-text {
    font-size: 0.75rem;
  }
}

.sub-artists__inner {
  position: relative;
  z-index: 1;
  margin: auto;
  padding: 0 1.5625rem;
  width: 100%;
}
@media screen and (min-width: 450px) {
  .sub-artists__inner {
    margin: auto;
    padding: 0 2.5rem;
    max-width: 42.5rem;
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .sub-artists__inner {
    padding: 0 1.5625rem;
    max-width: 65.625rem;
  }
}

.sub-about__section-wrap--first {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .sub-about__section-wrap--first {
    padding-bottom: 2.96875rem;
  }
}

.sub-about__title-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .sub-about__title-wrap {
    margin-top: 2.96875rem;
  }
}

.sub-about__title-icon {
  width: 6.5rem;
}
@media screen and (min-width: 768px) {
  .sub-about__title-icon {
    width: 5.15625rem;
  }
}

.sub-about__title-icon img {
  width: 100%;
  aspect-ratio: 82.5/23.7;
  -o-object-fit: contain;
     object-fit: contain;
}

.sub-about__title-meta {
  font-size: 0.75rem;
  line-height: 2.1;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  margin-top: 1.125rem;
}
@media screen and (min-width: 450px) {
  .sub-about__title-meta {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  .sub-about__title-meta {
    font-size: 1rem;
    line-height: 2.63;
    margin-top: 1.5rem;
  }
}

.sub-about__title {
  font-size: 1rem;
  line-height: 1.3;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
}
@media screen and (min-width: 450px) {
  .sub-about__title {
    font-size: 1.75rem;
  }
}
@media screen and (min-width: 768px) {
  .sub-about__title {
    font-size: 1.5rem;
  }
}

.sub-about__img {
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 100;
}

.sub-about__img img {
  width: 100%;
  aspect-ratio: 437/573;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 768px) {
  .white-border--pc {
    border-bottom: 1px solid #fff;
  }
}

.white-border--sp {
  border-bottom: 1px solid #fff;
}
@media screen and (min-width: 768px) {
  .white-border--sp {
    border-bottom: none;
  }
}

.sub-about-content {
  width: 100%;
}

.sub-about-content__text-wrap {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .sub-about-content__text-wrap {
    margin-top: 2.625rem;
  }
}

.sub-about-content__text {
  margin-top: 1.25rem;
  font-size: 0.75rem;
  line-height: 1.8;
}
@media screen and (min-width: 450px) {
  .sub-about-content__text {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .sub-about-content__text {
    margin-top: 1.875rem;
    font-size: 1rem;
    line-height: 2;
  }
}

.sub-about-content__text-title {
  font-size: 1.05rem;
  font-family: "Noto Serif JP", serif;
  position: relative;
  padding-left: 2rem;
}
@media screen and (min-width: 450px) {
  .sub-about-content__text-title {
    font-size: 1.75rem;
  }
}
@media screen and (min-width: 768px) {
  .sub-about-content__text-title {
    font-size: 1.5rem;
  }
}

.sub-about-content__text-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(10%);
  width: 1.25rem;
  height: 1.25rem;
  background: url(../images/mv/icon.png) no-repeat center/contain;
}
@media screen and (min-width: 450px) {
  .sub-about-content__text-title::before {
    width: 1.875rem;
    height: 1.875rem;
    transform: translateY(20%);
  }
}
@media screen and (min-width: 768px) {
  .sub-about-content__text-title::before {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.sub-about__circle-wrap {
  position: relative;
  width: 18.75rem;
  height: 21.875rem;
  margin: 2.0625rem auto;
}
@media screen and (min-width: 600px) {
  .sub-about__circle-wrap {
    width: 26.25rem;
    height: 30.75rem;
    margin: 6.5625rem auto;
  }
}

.sub-about__circle {
  position: absolute;
  width: 11rem;
  height: 11rem;
  border-radius: 50%;
  opacity: 0.7;
}
@media screen and (min-width: 600px) {
  .sub-about__circle {
    width: 15.375rem;
    height: 15.375rem;
  }
}

.sub-about__circle--top {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #2893C3;
}

.sub-about__circle--left {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: #9FDD9A;
}

.sub-about__circle--right {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-color: #28C3B1;
}

.sub-about__circle--bottom {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #73DDE6;
}

.sub-about__content-wrap--second {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .sub-about__content-wrap--second {
    flex-direction: row;
    flex-direction: row-reverse;
    margin-top: 2.25rem;
    gap: 3.9375rem;
  }
}

.sub-about__content-wrap--second .sub-about__img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .sub-about__content-wrap--second .sub-about__img {
    width: 50%;
  }
}

.sub-about__content-wrap--second .sub-about__content {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .sub-about__content-wrap--second .sub-about__content {
    width: 50%;
  }
}

.sub-about__sign {
  width: 42%;
  margin-left: auto;
  margin-top: 2.625rem;
}

.sub-about__sign img {
  width: 100%;
  aspect-ratio: 239/53;
  -o-object-fit: cover;
     object-fit: cover;
}

.sub-about__inner {
  position: relative;
  z-index: 1;
  margin: auto;
  padding: 0 1.5625rem;
  width: 100%;
}
@media screen and (min-width: 450px) {
  .sub-about__inner {
    margin: auto;
    padding: 0 2.5rem;
    max-width: 42.5rem;
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .sub-about__inner {
    padding: 0 1.5625rem;
    max-width: 65.625rem;
  }
}

.sub-program-long__banner {
  width: 100%;
  background-color: #fff;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .sub-program-long__banner {
    margin-top: 4.375rem;
  }
}

.sub-program-long__banner-img {
  width: 100%;
}

.sub-program-long__banner-img img {
  width: 100%;
  aspect-ratio: 999/525;
  -o-object-fit: cover;
     object-fit: cover;
}

.sub-program-long__page-nav {
  padding: 1.875rem 0 3.125rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .sub-program-long__page-nav {
    padding: 3.125rem 0 1.875rem;
  }
}

.sub-program-long__page-nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.875rem;
  list-style: none;
}
@media screen and (min-width: 768px) {
  .sub-program-long__page-nav-list {
    gap: 1.25rem;
  }
}

.sub-program-long__page-nav-item {
  display: inline-block;
  background-color: #fff;
  color: #363636;
  padding: 0.25rem 0.75rem;
  text-decoration: none;
  font-size: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .sub-program-long__page-nav-item {
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
  }
}

.sub-program-long-content__inner {
  padding: 3rem 1.5rem 1.5rem;
  background-color: #fff;
}
@media screen and (min-width: 450px) {
  .sub-program-long-content__inner {
    padding: 5rem 2.5rem 2.5rem;
  }
}
@media screen and (min-width: 768px) {
  .sub-program-long-content__inner {
    padding: 5rem 3.125rem 3.75rem;
  }
}

.sub-program-long-content__section:not(:first-child) {
  margin-top: 3rem;
}
@media screen and (min-width: 450px) {
  .sub-program-long-content__section:not(:first-child) {
    margin-top: 5rem;
  }
}
@media screen and (min-width: 768px) {
  .sub-program-long-content__section:not(:first-child) {
    margin-top: 5.3125rem;
  }
}

.sub-program-long-content__title {
  font-size: 1.05rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 600px) {
  .sub-program-long-content__title {
    font-size: 1.75rem;
    padding-left: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .sub-program-long-content__title {
    font-size: 1.5rem;
    line-height: 1.4;
    padding-left: 2rem;
  }
}

.sub-program-long-content__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(10%);
  width: 1.125rem;
  height: 1.125rem;
  background: url(../images/program-long/icon.png) no-repeat center/contain;
}
@media screen and (min-width: 600px) {
  .sub-program-long-content__title::before {
    width: 1.875rem;
    height: 1.875rem;
    transform: translateY(20%);
  }
}
@media screen and (min-width: 768px) {
  .sub-program-long-content__title::before {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.sub-program-long__content .program-list-content__details-info-table--long-page {
  font-size: 0.75rem;
  margin: 1.8125rem auto 0 0;
  max-width: 100%;
}
@media screen and (min-width: 600px) {
  .sub-program-long__content .program-list-content__details-info-table--long-page {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .sub-program-long__content .program-list-content__details-info-table--long-page {
    font-size: 1rem;
    margin: 0.625rem auto 0 0;
  }
}

.sub-program-long__content .program-list-content__details-info-table--long-page-price {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .sub-program-long__content .program-list-content__details-info-table--long-page-price {
    margin-top: 1.875rem;
  }
}

.program-list-content__details-info-table-row {
  display: flex;
  margin-bottom: 0.225rem;
}
@media screen and (min-width: 600px) {
  .program-list-content__details-info-table-row {
    margin-bottom: 0.375rem;
  }
}
@media screen and (min-width: 768px) {
  .program-list-content__details-info-table-row {
    margin-bottom: 0.5rem;
  }
}

.program-list-content__details-info-table-title {
  width: 6.25rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 0.15rem 0rem;
  border: 1px solid #999;
  text-align: center;
  font-weight: 400;
  background-color: #fff;
  box-sizing: border-box;
}
@media screen and (min-width: 600px) {
  .program-list-content__details-info-table-title {
    padding: 0.25rem 0rem;
  }
}

.sub-program-long__content .program-list-content__details-info-table-detail--long-page {
  flex: 1;
  padding: 0.15rem 0.3rem;
  border-left: none;
  background-color: transparent;
  box-sizing: border-box;
}
@media screen and (min-width: 600px) {
  .sub-program-long__content .program-list-content__details-info-table-detail--long-page {
    padding: 0.25rem 0.5rem;
  }
}

.sub-program-long__content .program-list-content__details-info-table-link--long-page {
  color: #ac9b77;
  text-decoration: none;
  border-bottom: 1px solid #ac9b77;
  transition: border-color 0.3s ease;
}

.sub-program-long__content .program-list-content__details-info-table-link--long-page-tel {
  margin-left: 1rem;
}

.sub-program-long__content .program-list-content__details-info-table-link--long-page:hover {
  border-color: transparent;
}

.sub-program-long-content__program-item {
  font-size: 0.75rem;
  line-height: 2;
}
@media screen and (min-width: 600px) {
  .sub-program-long-content__program-item {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .sub-program-long-content__program-item {
    font-size: 1rem;
  }
}

.program-list-content__details-tags--long-page {
  margin-top: 1.625rem;
}
@media screen and (min-width: 768px) {
  .program-list-content__details-tags--long-page {
    margin-top: 1.625rem;
  }
}

.sub-program-long-content__ticket-inner {
  padding: 1.5rem 0.75rem;
  width: 100%;
  background-color: #ecf1f4;
}
@media screen and (min-width: 600px) {
  .sub-program-long-content__ticket-inner {
    margin: auto;
    padding: 2.5rem 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .sub-program-long-content__ticket-inner {
    padding: 3.125rem;
  }
}

.sub-program-long-content__ticket-date {
  text-align: center;
  background-color: #fff;
  padding: 0.75rem 0;
}
@media screen and (min-width: 600px) {
  .sub-program-long-content__ticket-date {
    padding: 1.25rem 0;
  }
}
@media screen and (min-width: 768px) {
  .sub-program-long-content__ticket-date {
    padding: 1.625rem 0;
  }
}

.sub-program-long-content__ticket-date-item {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  margin-top: 0.75rem;
}
@media screen and (min-width: 600px) {
  .sub-program-long-content__ticket-date-item {
    margin-top: 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .sub-program-long-content__ticket-date-item {
    margin-top: 1.125rem;
  }
}

.sub-program-long-content__ticket-date-item-meta {
  font-size: 0.75rem;
}
@media screen and (min-width: 600px) {
  .sub-program-long-content__ticket-date-item-meta {
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 768px) {
  .sub-program-long-content__ticket-date-item-meta {
    font-size: 1rem;
  }
}

.sub-program-long-content__ticket-date-item-text {
  font-size: 0.875rem;
}
@media screen and (min-width: 600px) {
  .sub-program-long-content__ticket-date-item-text {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  .sub-program-long-content__ticket-date-item-text {
    font-size: 1.25rem;
  }
}

.sub-program-long-content__ticket-item {
  padding: 1.875rem 0;
}
@media screen and (min-width: 600px) {
  .sub-program-long-content__ticket-item {
    padding: 3rem 0;
  }
}
@media screen and (min-width: 768px) {
  .sub-program-long-content__ticket-item {
    padding: 3rem 0;
  }
}

.sub-program-long-content__ticket-item:not(:last-child) {
  border-bottom: 1px solid #fff;
}

.sub-program-long-content-ticket-item__title {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 0.875rem;
  padding-left: 1.125rem;
  position: relative;
}
@media screen and (min-width: 600px) {
  .sub-program-long-content-ticket-item__title {
    font-size: 1.375rem;
    padding-left: 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .sub-program-long-content-ticket-item__title {
    font-size: 1.125rem;
    padding-left: 1.125rem;
  }
}

.sub-program-long-content-ticket-item__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(30%);
  width: 0.5rem;
  height: 0.875rem;
  background: url(../images/program-long/icon-2.png) no-repeat center/contain;
}
@media screen and (min-width: 600px) {
  .sub-program-long-content-ticket-item__title::before {
    width: 0.75rem;
    height: 1.125rem;
    transform: translateY(55%);
  }
}
@media screen and (min-width: 768px) {
  .sub-program-long-content-ticket-item__title::before {
    width: 0.625rem;
    height: 1rem;
    transform: translateY(40%);
  }
}

.sub-program-long-content-ticket-item__price {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.3125rem;
  margin-top: 1.875rem;
}
@media screen and (min-width: 600px) {
  .sub-program-long-content-ticket-item__price {
    gap: 0.3125rem;
  }
}
@media screen and (min-width: 768px) {
  .sub-program-long-content-ticket-item__price {
    gap: 1.875rem;
  }
}

.sub-program-long-content-ticket-item__price-tags {
  text-align: center;
}

.sub-program-long-content-ticket-item__price-meta {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 0.75rem;
}
@media screen and (min-width: 600px) {
  .sub-program-long-content-ticket-item__price-meta {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .sub-program-long-content-ticket-item__price-meta {
    font-size: 1rem;
  }
}

.sub-program-long-content-ticket-item__price-tag {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 0.875rem;
  padding: 0.625rem 0.9375rem;
}
@media screen and (min-width: 600px) {
  .sub-program-long-content-ticket-item__price-tag {
    font-size: 1.375rem;
    padding: 0.9375rem 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  .sub-program-long-content-ticket-item__price-tag {
    font-size: 1.125rem;
    padding: 0.5625rem 1.625rem;
  }
}

.sub-program-long-content-ticket-item__price-tag--s {
  background-color: #5C7ACC;
  color: #fff;
}

.sub-program-long-content-ticket-item__price-tag--a {
  background-color: #2893C3;
  color: #fff;
}

.sub-program-long-content-ticket-item__price-tag--b {
  background-color: #28C3A5;
  color: #fff;
}

.sub-program-long-content-ticket-item__price-tag--akiko {
  background-color: #4AC13A;
  color: #fff;
}

.sub-program-long-content-ticket-item__text {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 0.75rem;
}
@media screen and (min-width: 600px) {
  .sub-program-long-content-ticket-item__text {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .sub-program-long-content-ticket-item__text {
    font-size: 1rem;
  }
}

.sub-program-long-content-ticket-item__text--set-ticket {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .sub-program-long-content-ticket-item__text--set-ticket {
    margin-top: 1.875rem;
  }
}

.sub-program-long-content-ticket-item__text--akiko-seat-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
}

.sub-program-long-content-ticket-item__play-guide-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sub-program-long-content-ticket-item__play-guide-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 1em;
  line-height: 1.8;
  color: #363636;
  font-size: 0.75rem;
}
@media screen and (min-width: 600px) {
  .sub-program-long-content-ticket-item__play-guide-item {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .sub-program-long-content-ticket-item__play-guide-item {
    font-size: 1rem;
  }
}

.sub-program-long-content-ticket-item__play-guide-item-meta {
  white-space: nowrap;
}

.sub-program-long-content-ticket-item__play-guide-item-tel {
  color: #363636;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.sub-program-long-content-ticket-item__play-guide-item-tel:hover {
  color: #ac9b77;
}

.sub-program-long-content-ticket-item__play-guide-item-link {
  color: #ac9b77;
  text-decoration: none;
  border-bottom: 1px solid #ac9b77;
  transition: border-color 0.3s ease;
  white-space: nowrap;
}

.sub-program-long-content-ticket-item__play-guide-item-link:hover {
  border-color: transparent;
}

.sub-program-long-content__about-text {
  font-size: 0.75rem;
  line-height: 2;
}
@media screen and (min-width: 600px) {
  .sub-program-long-content__about-text {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .sub-program-long-content__about-text {
    font-size: 1rem;
  }
}

.sub-program-long-content__artists-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sub-program-long-content__artists-item {
  text-align: left;
  color: #ac9b77;
  font-size: 0.75rem;
  line-height: 2;
}
@media screen and (min-width: 600px) {
  .sub-program-long-content__artists-item {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .sub-program-long-content__artists-item {
    font-size: 1rem;
  }
}

.sub-program-long-content__artists-item-link {
  color: #ac9b77;
  text-decoration: none;
  border-bottom: 1px solid #ac9b77;
  transition: border-color 0.3s ease;
  white-space: nowrap;
}

.sub-program-long-content__artists-item-link:hover {
  border-color: transparent;
}

.sub-program-long-content__youtube {
  width: 100%;
  aspect-ratio: 900/507;
  position: relative;
  overflow: hidden;
  margin-top: 3rem;
}
@media screen and (min-width: 450px) {
  .sub-program-long-content__youtube {
    margin-top: 5rem;
  }
}
@media screen and (min-width: 768px) {
  .sub-program-long-content__youtube {
    margin-top: 5rem;
  }
}

.sub-program-long-content__youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.sub-program-long-content-ticket-item__akiko-seat-description {
  margin-top: 1.875rem;
}

.sub-program-long-content-ticket-item__akiko-seat-description--title {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 0.75rem;
}
@media screen and (min-width: 600px) {
  .sub-program-long-content-ticket-item__akiko-seat-description--title {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .sub-program-long-content-ticket-item__akiko-seat-description--title {
    font-size: 1rem;
  }
}

.sub-program-long__inner {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  padding: 0 1.5625rem;
  width: 100%;
}
@media screen and (min-width: 450px) {
  .sub-program-long__inner {
    padding: 0 2.5rem;
    max-width: 42.5rem;
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .sub-program-long__inner {
    padding: 0 1.5625rem;
    max-width: 65.625rem;
  }
}



#master .mb30{
  margin-bottom: 30px;
}
#master .time-schedule h4 {
  margin-bottom: 15px;
}
@media only screen and (max-width: 768px) {
  #master .time-schedule h4 {
    margin-bottom: 2.34375vw;
  }
}
#master .time-schedule .table-box {
  padding: 42px;
  border: 1px solid #ebeff4;
}
@media only screen and (max-width: 768px) {
  #master .time-schedule .table-box {
    padding: 5.9375vw 4.6875vw;
  }
}
#master .time-schedule .table-box p {
  text-align: center;
}
#master .time-schedule .table-box p.hall {
  font-size: 24px;
  margin-bottom: 18px;
}
@media only screen and (max-width: 768px) {
  #master .time-schedule .table-box p.hall {
    margin-bottom: 1.5625vw;
  }
}
#master .time-schedule .table-box p.day {
  width: 100%;
  font-size: 16px;
  line-height: 52px;
  background-color: #ebeff4;
}
@media only screen and (max-width: 768px) {
  #master .time-schedule .table-box p.day {
    font-size: 22px;
    font-size: 3.4375vw;
    line-height: 8.125vw;
  }
}
#master .time-schedule .table-box table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
#master .time-schedule .table-box table tbody {
  text-align: center;
}
#master .time-schedule .table-box table tbody tr th {
  line-height: 52px;
  border-right: 1px solid #ebeff4;
  border-bottom: 1px solid #ebeff4;
  border-top: 1px solid #fff;
}
@media only screen and (max-width: 768px) {
  #master .time-schedule .table-box table tbody tr th {
    font-size: 20px;
    font-size: 3.125vw;
  }
}
#master .time-schedule .table-box table tbody tr th:nth-child(1) {
  background-color: #ebeff4;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
@media only screen and (max-width: 768px) {
  #master .time-schedule .table-box table tbody tr th:nth-child(3) {
    display: none;
  }
}
#master .time-schedule .table-box table tbody tr td {
  line-height: 1.5em;
  border-right: 1px solid #ebeff4;
  border-bottom: 1px solid #ebeff4;
  padding: 10px;
}
@media only screen and (max-width: 768px) {
  #master .time-schedule .table-box table tbody tr td {
    font-size: 20px;
    font-size: 3.125vw;
  }
}
#master .time-schedule .table-box table tbody tr td:nth-child(1) {
  background-color: #ebeff4;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
@media only screen and (max-width: 768px) {
  #master .time-schedule .table-box table tbody tr td:nth-child(3) {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  #master .time-schedule .table-box table:last-of-type tbody tr:last-of-type td {
    display: block;
    width: 77.03125vw;
  }
}
@media only screen and (max-width: 768px) {
  #master .time-schedule .table-box table:last-of-type tbody tr:last-of-type td:nth-child(1) {
    border-right: 1px solid #ebeff4;
  }
}
@media only screen and (max-width: 768px) {
  #master .time-schedule .table-box table:last-of-type tbody tr:last-of-type td:nth-child(2) {
    border-left: 1px solid #ebeff4;
  }
}




#master p.remark{
    margin-left: 1em;
    text-indent: -1em;
    font-size: unset;
}

#master .time-schedule .table-box p{
    text-align: left;
    line-height: 1.5;
}

#master p.remark::before{
    content: '※';
    vertical-align: baseline;
}

#master tr:first-child{
    border-top: 1px solid #ebeff4;
}

#master td{
    text-align: left;
}

#master .mc_venue{
    width: 100%;
    padding: 20px;
    text-align: center;
}
#master .flexcontainer_column{
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}
#master .flexcontainer_row{
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    text-align: center;
    border-bottom: 1px solid #ebeff4;
}
#master .flexitem_row_time{
    width: 20%;
    background-color: #ebeff4;
    padding: 10px;
    text-align: center;
    border-top: 1px solid #ffffff;
}
#master .flexitem_row{
    width:40%;
    border-top: 1px solid #ffffff;
}
#master .flexitem_row ul li{
    border-top: 1px solid #ebeff4;
    border-right: 1px solid #ebeff4;
    padding: 10px;
}
#master .flexitem_row ul li:first-child{
    background-color: #ebeff4;
    border-left: 1px solid #ffffff;
}
#master .flexitem_row_Vc ul li{
    border-top: 1px solid #ebeff4;
    border-right: 1px solid #ebeff4;
    padding: 10px;
}
#master .flexitem_row_Vc{
    width: 80%;
}
#master .flexitem_row_concert{
    width: 80%;
    border-right: 1px solid #ebeff4;
    padding: 20px;
}
#master .mc_time{
    font-weight: 700;
    text-align: center;
    font-size: 140%;
}
#master .rehearsalroom{
    display: inline-block;
    padding: 2px 5px;
    margin-top: 5px;
    border-radius: 5px;
    background-color: #ffffff;
    color: #eb4334;
}

#master .hall{
    display: inline-block;
    padding: 2px 5px;
    margin-top: 5px;
    border-radius: 5px;
    background-color: #ffffff;
    color: #6734eb;
}
#master .table_qualification tbody tr th,
#master .table_qualification tbody tr td{
    padding: 5px;
    line-height: 1.5;
}
#master .table_qualification{
    margin: 30px 0;
}
@media screen and (max-width:768px){
    #master .time-schedule .table-box table tbody tr th{
        width: 100%;
        display: block;
    }
    #master .time-schedule .table-box table tbody tr td{
        display: block;
        text-align: left;
    }
    #master .time-schedule .table-box table tbody tr td{
        border: 0;
    }

    #master .flexitem_row_time{
        width: 100%;
        background-color: #ebeff4;
        padding: 10px;
        text-align: center;
        border-top: 1px solid #ffffff;
    }
    #master .flexitem_row{
        width:50%;
        border-left: 1px solid #ebeff4;
    }
    #master .flexitem_row ul li{
        border-top: 1px solid #ebeff4;
        border-right: 1px solid #ebeff4;
        padding: 10px;
    }
    
    #master .flexitem_row ul li:first-child{
        background-color: #ebeff4;
        border-left: 1px solid #ffffff;
    }
    #master .flexitem_row_concert{
        width: 100%;
        border-right: 1px solid #ebeff4;
        border-left: 1px solid #ebeff4;
        padding: 20px;
    }
    #master .flexitem_row_Vc{
        width:100%;
        border-left: 1px solid #ebeff4;
    }
    #master .flexcontainer_column{
        flex-wrap: unset;
    }
}


.gallery__modal-inner {
  margin: auto;
  padding: 0 1.25rem;
  width: 100%;
  z-index: 1;
}
@media screen and (min-width: 450px) {
  .gallery__modal-inner {
    padding: 0 1.25rem;
    max-width: 34.375rem;
  }
}
@media screen and (min-width: 768px) {
  .gallery__modal-inner {
    padding: 0 1.5625rem;
    max-width: 59.375rem;
  }
}

.sub-gallery__inner {
  position: relative;
  z-index: 1;
  margin: auto;
  padding: 0 1.5625rem;
  width: 100%;
}
@media screen and (min-width: 450px) {
  .sub-gallery__inner {
    margin: auto;
    padding: 0 2.5rem;
    max-width: 40rem;
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .sub-gallery__inner {
    padding: 0 1.5625rem;
    max-width: 65.625rem;
  }
}
@media screen and (min-width: 768px) {
  .for-sp {display: none;}
}
/*# sourceMappingURL=style.css.map */