@charset "UTF-8";
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes colorblockMove {
  from {
    transform: translate(var(--start-x), var(--start-y));
  }
  to {
    transform: translate(var(--end-x), var(--end-y));
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}
@media screen and (max-width: 767px) {
  html {
    font-size: 14px;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  color: #000000;
  background-color: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
}

p {
  margin: 0;
  line-height: 1.8;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
a:hover {
  opacity: 0.7;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

svg {
  max-width: 100%;
  height: auto;
}

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

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

.font-concept {
  font-family: "Shippori Antique", serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.8;
}

.font-mixed {
  font-family: "Noto Sans JP", "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
}

.section {
  width: 100%;
  padding: 80px 0;
  position: relative;
  transition: background-color 0.8s ease;
}
@media screen and (max-width: 767px) {
  .section {
    padding: 48px 0;
  }
}
.section--main {
  height: 100vh;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section--white {
  background-color: #ffffff;
}
.section--light-gray {
  background-color: #f5f5f5;
}
.section--bg-changed {
  background-color: #b7b2b5;
}
.section--bg-changed .artist__text-ja p,
.section--bg-changed .artist__text-en p {
  color: #ffffff !important;
}

.container {
  max-width: 100%;
  padding: 0 0px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .container {
    max-width: 500px;
    margin: 0 auto;
  }
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: 0s;
}
.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.loading {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.loading.loaded {
  opacity: 1;
  pointer-events: auto;
}

@media screen and (min-width: 768px) {
  .desktop-extension {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1000;
    pointer-events: none;
  }
  .desktop-extension__content {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: none;
    margin: 0;
  }
  .desktop-extension__left, .desktop-extension__right {
    position: absolute;
    top: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    pointer-events: auto;
  }
  .desktop-extension__left {
    left: 0;
    width: 320px;
    min-width: 320px;
    padding: 40px 0 40px 40px;
    justify-content: space-between;
  }
  .desktop-extension__right {
    right: 0;
    width: 220px;
    min-width: 220px;
    padding: 40px 40px 40px 0;
    justify-content: flex-end;
    align-items: flex-end;
  }
}
.main-content {
  position: relative;
  z-index: 10;
  visibility: hidden;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .main-content {
    width: 500px !important;
    min-width: 500px !important;
    max-width: 500px !important;
    margin: 0 auto;
    box-sizing: border-box !important;
    background-color: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 0;
    flex-shrink: 0;
    flex-grow: 0;
    position: relative;
    z-index: 10;
  }
  .main-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 500px;
    height: 100%;
    background-color: #ffffff;
    z-index: -1;
    pointer-events: none;
  }
}

.splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #ffffff;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 1s ease ease, visibility 1s ease ease;
  display: flex !important;
  will-change: opacity, visibility;
}
.splash.fade-out {
  opacity: 0;
  visibility: hidden;
}
.splash__content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.splash__logo {
  max-width: 400px !important;
  width: 400px !important;
  height: auto;
  opacity: 0;
  animation: splashLogoFadeIn 1s ease ease forwards;
  animation-delay: 0.2s;
}
@media screen and (max-width: 767px) {
  .splash__logo {
    max-width: 160px !important;
    width: 160px !important;
  }
}

@keyframes splashLogoFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/* テスト用コメント */
/* 強制更新テスト - 2025年 7月20日 日曜日 12時55分48秒 JST */
@media screen and (min-width: 768px) {
  .desktop-extension {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
    z-index: -10;
  }
  .desktop-extension.visible {
    opacity: 1;
    visibility: visible;
  }
  .desktop-extension::after {
    content: "";
    position: fixed;
    top: 0;
    left: calc(50% + 250px);
    width: 60px;
    height: 100vh;
    pointer-events: none;
    z-index: 1002;
  }
}
@media screen and (min-width: 768px) and (max-width: 767px) {
  .desktop-extension {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .desktop-extension__bg {
    position: fixed;
    top: 0;
    height: 100vh;
    opacity: 1;
    transition: none;
    pointer-events: none;
    z-index: -15;
  }
}
@media screen and (min-width: 768px) {
  .desktop-extension__left, .desktop-extension__right {
    position: fixed;
    z-index: -12;
    pointer-events: auto;
  }
}
@media screen and (min-width: 768px) {
  .desktop-extension__bg--left {
    left: 0;
    width: calc((100vw - 500px) / 2);
  }
}
@media screen and (min-width: 768px) {
  .desktop-extension__bg--right {
    right: 0;
    width: calc((100vw - 500px) / 2);
  }
}
@media screen and (min-width: 768px) {
  .desktop-extension__bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1200ms ease-in-out;
    will-change: opacity;
    backface-visibility: hidden;
    transform: translateZ(0);
  }
}
@media screen and (min-width: 768px) {
  .desktop-extension__bg-layer--left-current, .desktop-extension__bg-layer--right-current {
    z-index: 1;
  }
}
@media screen and (min-width: 768px) {
  .desktop-extension__bg-layer--left-next, .desktop-extension__bg-layer--right-next {
    z-index: 2;
  }
}
@media screen and (min-width: 768px) {
  .desktop-extension__logo {
    position: absolute;
    height: auto;
    opacity: 0;
    visibility: hidden;
    flex-shrink: 0;
    transition: opacity 0.2s ease;
    z-index: -11;
  }
  .desktop-extension__logo--event {
    position: fixed;
    top: 50%;
    left: calc((100vw - 500px) / 4);
    transform: translate(-50%, -50%);
    width: calc((100vw - 500px) / 2 * 0.8);
    max-width: none;
    min-width: 0;
    background: #fff;
    padding: 10px;
  }
  .desktop-extension__logo--lmap {
    width: 100px;
    min-width: 100px;
    max-width: 100px;
    bottom: 230px;
    right: 80px;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  }
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .desktop-extension__logo--lmap {
    opacity: 0 !important;
    visibility: hidden !important;
  }
}
@media screen and (min-width: 768px) {
  .desktop-extension__logo--sponsor {
    width: 180px;
    min-width: 180px;
    max-width: 180px;
    bottom: 80px;
    right: 40px;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  }
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .desktop-extension__logo--sponsor {
    opacity: 0 !important;
    visibility: hidden !important;
  }
}
@media screen and (min-width: 768px) {
  .desktop-extension.logos-visible .desktop-extension__logo {
    opacity: 1;
    visibility: visible;
  }
}
@media screen and (min-width: 768px) {
  body.no-bg-anim .desktop-extension__bg-layer {
    transition: none !important;
  }
}
@media screen and (max-width: 767px) {
  .desktop-extension {
    display: none !important;
  }
}
.navigation-tabs {
  position: fixed;
  top: 50px;
  left: 50%;
  z-index: 1006;
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}
@media (min-width: 768px) {
  .navigation-tabs {
    display: block;
    left: calc(50% + 250px);
  }
  @supports (-ms-ime-align: auto) {
    .navigation-tabs {
      left: calc(50% + 250px + 0.5px);
    }
  }
}
.navigation-tabs.visible {
  opacity: 1;
}
.navigation-tabs__container {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.navigation-tabs__tab {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 80px;
  background: white;
  border: 2px solid white;
  border-radius: 0;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  pointer-events: auto;
}
.navigation-tabs__tab:hover {
  transform: translateX(-2px);
}
.navigation-tabs__tab:active {
  transform: translateX(-1px);
}
.navigation-tabs__tab.navigation-tabs__tab--active {
  pointer-events: auto;
  cursor: pointer;
}
.navigation-tabs__text {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 10px;
  color: #999;
  transform: rotate(90deg);
  white-space: nowrap;
  transition: color 0.3s ease;
  pointer-events: auto;
  cursor: pointer;
}
.navigation-tabs__tab--active .navigation-tabs__text {
  color: #000 !important;
}
.navigation-tabs__tab.navigation-tabs__tab--active .navigation-tabs__text {
  color: #000 !important;
}

.hamburger-menu__button {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1100;
  width: 50px;
  height: 50px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .hamburger-menu__button {
    left: 48%;
    right: auto;
    transform: translateX(230px);
    margin-left: 0;
  }
}
.hamburger-menu__button.visible {
  opacity: 1;
  visibility: visible;
}
.hamburger-menu__button.active .hamburger-menu__line {
  background-color: white;
}
.hamburger-menu__button.active .hamburger-menu__line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger-menu__button.active .hamburger-menu__line:nth-child(2) {
  opacity: 0;
}
.hamburger-menu__button.active .hamburger-menu__line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.hamburger-menu__line {
  width: 30px;
  height: 2px;
  background-color: black;
  border-radius: 1px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger-menu__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  height: calc(var(--vh, 1vh) * 100);
  background-color: #8c8c8c;
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .hamburger-menu__overlay {
    left: 50%;
    transform: translateX(-250px);
    width: 500px;
  }
}
.hamburger-menu__overlay.active {
  opacity: 1;
  visibility: visible;
}
.hamburger-menu__content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 80px 40px 0;
}
@media screen and (max-width: 767px) {
  .hamburger-menu__content {
    padding: 60px 8% 0;
  }
}
@media screen and (max-width: 375px) and (max-height: 667px) {
  .hamburger-menu__content {
    padding: 40px 8% 0;
  }
}
@media screen and (max-width: 320px) and (max-height: 568px) {
  .hamburger-menu__content {
    padding: 30px 8% 0;
  }
}
.hamburger-menu__nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 40px;
}
@media screen and (max-width: 767px) {
  .hamburger-menu__nav {
    gap: 35px;
    padding-top: 10px;
  }
}
@media screen and (max-width: 375px) and (max-height: 667px) {
  .hamburger-menu__nav {
    gap: 25px;
    padding-top: 5px;
  }
}
@media screen and (max-width: 320px) and (max-height: 568px) {
  .hamburger-menu__nav {
    gap: 20px;
    padding-top: 0px;
  }
}
.hamburger-menu__item {
  display: block;
  text-decoration: none;
  transition: transform 0.2s ease;
}
.hamburger-menu__item:hover {
  transform: translateX(10px);
}
@media screen and (max-width: 767px) {
  .hamburger-menu__item:hover {
    transform: none;
  }
}
.hamburger-menu__icon {
  height: 14px;
  width: auto;
  display: block;
  filter: invert(1) brightness(1);
}
.hamburger-menu__icon[src*=section_event] {
  height: 63px;
}
.hamburger-menu__logos {
  position: absolute;
  bottom: 100px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .hamburger-menu__logos {
    bottom: 120px;
    gap: 40px;
  }
}
@media screen and (max-width: 375px) and (max-height: 667px) {
  .hamburger-menu__logos {
    bottom: 100px;
    gap: 30px;
  }
}
@media screen and (max-width: 320px) and (max-height: 568px) {
  .hamburger-menu__logos {
    bottom: 80px;
    gap: 25px;
  }
}
.hamburger-menu__logo {
  height: 24px;
  width: auto;
  display: block;
}
@media screen and (max-width: 767px) {
  .hamburger-menu__logo {
    height: 20px;
  }
}
.hamburger-menu__logo[src*=logo_lmap_w] {
  height: 70px;
  padding-right: 60px;
}
@media screen and (max-width: 767px) {
  .hamburger-menu__logo[src*=logo_lmap_w] {
    height: 60px;
    padding-right: 40px;
  }
}
.hamburger-menu__logo[src*=logo_lumine] {
  height: 30px;
  padding-right: 30px;
  filter: invert(1) brightness(1);
}
@media screen and (max-width: 767px) {
  .hamburger-menu__logo[src*=logo_lumine] {
    height: 25px;
    padding-right: 10px;
  }
}
.hamburger-menu__footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 0 5px 0 5px;
}
@media screen and (max-width: 767px) {
  .hamburger-menu__footer {
    padding: 0 5px 0px 5px;
  }
}
@media screen and (max-width: 375px) and (max-height: 667px) {
  .hamburger-menu__footer {
    padding: 0 5px 0px 5px;
  }
}
@media screen and (max-width: 320px) and (max-height: 568px) {
  .hamburger-menu__footer {
    padding: 0 5px 0px 5px;
  }
}
.hamburger-menu__footer-logo {
  width: 100%;
  height: auto;
  display: block;
}

body.hamburger-menu-open {
  overflow: hidden;
}

.artist-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 3000;
  display: none;
}
@media (min-width: 768px) {
  .artist-modal {
    left: 50%;
    transform: translateX(-250px);
    width: 500px;
  }
}
.artist-modal.active {
  display: block;
}
.artist-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10%;
  opacity: 0;
  animation: fadeIn 0.3s ease forwards;
}
.artist-modal__container {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 80vh;
  background: white;
  border-radius: 0px;
  overflow: hidden;
  transform: scale(0.9);
  animation: scaleIn 0.3s ease forwards;
}
.artist-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: auto;
  height: auto;
  background: none;
  border: none;
  outline: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  z-index: 4000;
}
.artist-modal__close .material-symbols-outlined {
  font-size: 32px;
  color: white;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.8);
  transition: all 0.2s ease;
  display: block;
  line-height: 1;
}
.artist-modal__close:hover .material-symbols-outlined {
  color: rgba(255, 255, 255, 0.7);
  transform: scale(1.1);
}
@media screen and (max-width: 767px) {
  .artist-modal__close {
    top: 20px;
    right: 15px;
  }
  .artist-modal__close .material-symbols-outlined {
    font-size: 28px;
    text-shadow: 0 0 4px rgba(0, 0, 0, 0.8);
  }
}
.artist-modal__content {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 15px;
  box-sizing: border-box;
}
.artist-modal__content::-webkit-scrollbar {
  width: 6px;
}
.artist-modal__content::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}
.artist-modal__content::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}
.artist-modal__content::-webkit-scrollbar-thumb:hover {
  background: #999;
}
.artist-modal__artwork {
  width: calc(100% + 30px) !important;
  max-width: none !important;
  height: auto;
  margin: -15px -15px 20px -15px;
  padding: 0 !important;
  display: block;
  box-sizing: border-box !important;
}
.artist-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}
.artist-modal__names {
  flex: 1;
}
.artist-modal__name-ja {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  font-feature-settings: "locl" 1, "kern" 1, "liga" 1;
  color: #000000;
  margin-bottom: 4px;
}
.artist-modal__name-ja[lang=en], .artist-modal__name-ja .en, .artist-modal__name-ja .english {
  font-family: "Inter", sans-serif, sans-serif;
}
.artist-modal__name-ja[lang=en], .artist-modal__name-ja .en, .artist-modal__name-ja .english, .artist-modal__name-ja .number {
  font-variant-numeric: tabular-nums;
}
.artist-modal__name-ja[data-mixed=true] {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.artist-modal__name-ja {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.artist-modal__name-ja[lang=ja], .artist-modal__name-ja .jp, .artist-modal__name-ja .japanese {
  font-family: "Noto Sans JP", sans-serif, sans-serif;
}
.artist-modal__name-ja[data-mixed=true] {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
@media screen and (max-width: 767px) {
  .artist-modal__name-ja {
    font-size: 18px;
  }
}
.artist-modal__name-en {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .artist-modal__name-en {
    font-size: 13px;
  }
}
.artist-modal__instagram {
  width: 20px;
  height: 20px;
  margin-left: 15px;
  opacity: 0.5;
  transition: opacity 0.2s ease;
  cursor: pointer;
  pointer-events: auto;
}
.artist-modal__instagram:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .artist-modal__instagram {
    width: 18px;
    height: 18px;
    margin-left: 10px;
  }
}
.artist-modal__profile {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  font-feature-settings: "locl" 1, "kern" 1, "liga" 1;
  color: #000000;
  margin-bottom: 30px;
  text-align: left;
  text-align: justify;
  text-justify: inter-ideograph;
}
.artist-modal__profile[lang=en], .artist-modal__profile .en, .artist-modal__profile .english {
  font-family: "Inter", sans-serif, sans-serif;
}
.artist-modal__profile[lang=en], .artist-modal__profile .en, .artist-modal__profile .english, .artist-modal__profile .number {
  font-variant-numeric: tabular-nums;
}
.artist-modal__profile[data-mixed=true] {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.artist-modal__profile {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.artist-modal__profile[lang=ja], .artist-modal__profile .jp, .artist-modal__profile .japanese {
  font-family: "Noto Sans JP", sans-serif, sans-serif;
}
.artist-modal__profile[data-mixed=true] {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
@media screen and (max-width: 767px) {
  .artist-modal__profile {
    font-size: 15px;
    margin-bottom: 25px;
  }
}
.artist-modal__statement {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .artist-modal__statement {
    margin-bottom: 25px;
  }
}
.artist-modal__statement-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  color: #000000;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .artist-modal__statement-title {
    font-size: 15px;
  }
}
.artist-modal__statement-text {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  font-feature-settings: "locl" 1, "kern" 1, "liga" 1;
  color: #000000;
  text-align: left;
  text-align: justify;
  text-justify: inter-ideograph;
}
.artist-modal__statement-text[lang=en], .artist-modal__statement-text .en, .artist-modal__statement-text .english {
  font-family: "Inter", sans-serif, sans-serif;
}
.artist-modal__statement-text[lang=en], .artist-modal__statement-text .en, .artist-modal__statement-text .english, .artist-modal__statement-text .number {
  font-variant-numeric: tabular-nums;
}
.artist-modal__statement-text[data-mixed=true] {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.artist-modal__statement-text {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.artist-modal__statement-text[lang=ja], .artist-modal__statement-text .jp, .artist-modal__statement-text .japanese {
  font-family: "Noto Sans JP", sans-serif, sans-serif;
}
.artist-modal__statement-text[data-mixed=true] {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
@media screen and (max-width: 767px) {
  .artist-modal__statement-text {
    font-size: 15px;
  }
}
.artist-modal__profile-image {
  width: 100%;
  max-width: none;
  height: auto;
  margin: 0 0 20px 0;
  padding: 0;
  display: block;
  box-sizing: border-box;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transform: translateY(10px);
}
.artist-modal__profile-image.loaded {
  opacity: 1;
  transform: translateY(0);
}
.artist-modal__artwork {
  transition: opacity 0.4s ease, transform 0.4s ease;
  transform: translateY(10px);
}
.artist-modal__artwork.loaded {
  opacity: 1;
  transform: translateY(0);
}
.artist-modal__loading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 200px;
  text-align: center;
}
.artist-modal__loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #333;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 15px;
}
.artist-modal__loading-text {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: #666666;
  opacity: 0.7;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes scaleIn {
  from {
    transform: scale(0.9);
  }
  to {
    transform: scale(1);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
body.artist-modal-open {
  overflow: hidden;
}

.gm-style .gm-style-iw {
  outline: none !important;
  -webkit-tap-highlight-color: transparent !important;
}
.gm-style .gm-style-iw .gm-style-iw-d {
  outline: none !important;
  -webkit-tap-highlight-color: transparent !important;
}
.gm-style .gm-style-iw .gm-style-iw-c {
  outline: none !important;
  -webkit-tap-highlight-color: transparent !important;
}
.gm-style .gm-style-iw .gm-style-iw-c button {
  outline: none !important;
  -webkit-tap-highlight-color: transparent !important;
  -webkit-appearance: none !important;
  border: none !important;
  background: transparent !important;
}
.gm-style .gm-style-iw .gm-style-iw-c button:focus {
  outline: none !important;
  -webkit-tap-highlight-color: transparent !important;
}
.gm-style .gm-style-iw .gm-style-iw-c button:active {
  outline: none !important;
  -webkit-tap-highlight-color: transparent !important;
}
.gm-style .gm-style-iw .gm-style-iw-t {
  outline: none !important;
  -webkit-tap-highlight-color: transparent !important;
}
.gm-style .gm-style-iw-tc {
  outline: none !important;
  -webkit-tap-highlight-color: transparent !important;
}

@supports (-webkit-touch-callout: none) {
  .gm-style .gm-style-iw {
    -webkit-tap-highlight-color: transparent !important;
    -webkit-touch-callout: none !important;
    -webkit-user-select: none !important;
    -khtml-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
  }
  .gm-style .gm-style-iw * {
    -webkit-tap-highlight-color: transparent !important;
    outline: none !important;
  }
  .gm-style .gm-style-iw button {
    -webkit-tap-highlight-color: transparent !important;
    -webkit-touch-callout: none !important;
    outline: none !important;
    border: none !important;
    background: transparent !important;
  }
  .gm-style .gm-style-iw button:focus, .gm-style .gm-style-iw button:active, .gm-style .gm-style-iw button:hover {
    -webkit-tap-highlight-color: transparent !important;
    outline: none !important;
  }
}
.main-visual {
  position: relative;
  background-color: #ffffff;
  min-height: 100vh;
  width: 100%;
  z-index: 5;
  opacity: 1;
  visibility: visible;
}
.main-visual::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70vh;
  background-image: url("../images/p2_bg4.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .main-visual::before {
    height: 70vh;
  }
}
.main-visual__container {
  position: relative;
  width: 100%;
  height: 100vh;
  padding: 0 0px;
  display: flex;
  flex-direction: column;
  z-index: 6;
}
@media screen and (max-width: 767px) {
  .main-visual__container {
    width: 100%;
    padding: 0 0px;
  }
}
@media screen and (min-width: 768px) {
  .main-visual__container {
    max-width: 500px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
  }
}
.main-visual__logos {
  position: relative;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .main-visual__logos {
    max-width: 100%;
    margin: 0;
    padding: 0 20px;
    box-sizing: border-box;
  }
}
.main-visual__logo {
  position: absolute;
  max-width: 200px;
  height: auto;
  transition: opacity 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  transform: translateY(20px);
}
@media screen and (max-width: 767px) {
  .main-visual__logo {
    max-width: 150px;
  }
}
.main-visual__logo:hover {
  opacity: 0.8;
}
.main-visual__logo.main-visual__logo--animated {
  opacity: 1;
  transform: translateY(0);
}
.main-visual__logo--event {
  top: 70vh;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  max-width: none;
  background-color: #ffffff;
  padding: 5px 10px 10px 10px;
}
@media screen and (max-width: 767px) {
  .main-visual__logo--event {
    top: 70vh;
    width: 100%;
    max-width: none;
    padding: 5px 10px 10px 10px;
  }
}
.main-visual__logo--date {
  top: 45%;
  left: 8%;
  max-width: 120px;
}
@media screen and (max-width: 767px) {
  .main-visual__logo--date {
    max-width: 25vw;
  }
}
.main-visual__logo--venue {
  top: 55%;
  left: 8%;
  max-width: 200px;
}
@media screen and (max-width: 767px) {
  .main-visual__logo--venue {
    max-width: 45vw;
  }
}
.main-visual__logo--entry {
  bottom: 10%;
  left: 8%;
  max-width: 130px;
}
@media screen and (max-width: 767px) {
  .main-visual__logo--entry {
    bottom: 13%;
    left: 8%;
    max-width: 25vw;
  }
}
.main-visual__logo--lmap {
  top: 20px;
  left: 20px;
  width: 50px;
  max-width: 50px;
}
@media screen and (max-width: 767px) {
  .main-visual__logo--lmap {
    top: 20px;
    left: 20px;
    width: 50px;
    max-width: 50px;
  }
}
.main-visual__logo--sponsor {
  top: 20px;
  right: 20px;
  width: 100px;
  max-width: 100px;
}
@media screen and (max-width: 767px) {
  .main-visual__logo--sponsor {
    top: 20px;
    right: 20px;
    width: 100px;
    max-width: 100px;
  }
}

.concept {
  padding-bottom: 0px;
  --slide-btn-size-pc: 28px;
  --slide-btn-size-mobile: 24px;
  --slide-btn-icon-size-pc: 18px;
  --slide-btn-icon-size-mobile: 14px;
  --slide-btn-offset-pc: 20px;
  --slide-btn-offset-mobile: 15px;
}
@media screen and (max-width: 767px) {
  .concept {
    padding-bottom: 0px;
  }
}
.concept__content {
  text-align: left;
  max-width: 370px;
  margin: 100px auto;
}
@media screen and (max-width: 767px) {
  .concept__content {
    text-align: left;
    max-width: 80vw;
    margin: 50px auto;
  }
}
.concept__title {
  font-family: "Shippori Antique", serif;
  font-weight: 500;
  font-size: 28px;
  line-height: 1.4;
  color: #000000;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .concept__title {
    font-size: 21px;
    margin-bottom: 50px;
  }
}
.concept__text {
  font-family: "Shippori Antique", serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.8;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .concept__text {
    font-size: 14px;
  }
}
.concept__text p {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .concept__text p {
    margin-bottom: 40px;
  }
}
.concept__text p:last-child {
  margin-bottom: 0;
}
.concept__archive {
  margin-top: 160px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .concept__archive {
    margin-top: 120px;
  }
}
.concept__archive-title {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .concept__archive-title {
    margin-bottom: 15px;
  }
}
.concept__archive-image {
  max-width: 190px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .concept__archive-image {
    max-width: 165px;
  }
}
.concept__archive-subtitle {
  display: block;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: #000000;
  margin-top: 12px;
  letter-spacing: 0.05em;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .concept__archive-subtitle {
    font-size: 12px;
    margin-top: 10px;
  }
}
.concept__archive-event {
  margin-bottom: 28px;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .concept__archive-event {
    margin-bottom: 25px;
  }
}
.concept__archive-event p {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.4;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .concept__archive-event p {
    font-size: 20px;
  }
}
.concept__archive-slider-section {
  max-width: none;
  margin: 0;
  width: calc(100vw);
  margin-left: calc(-50vw + 50%);
}
@media (min-width: 768px) {
  .concept__archive-slider-section {
    width: 500px;
    margin-left: calc(-250px + 50%);
  }
}
.concept__archive-slider {
  width: 100%;
  margin: 0 auto;
}
.concept__archive-slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 0px;
  margin-bottom: 0;
}
.concept__archive-slider-wrapper {
  display: flex;
  transition: transform 0.3s ease;
  width: 100%;
}
.concept__archive-slide {
  flex: 0 0 100%;
  width: 100%;
}
.concept__archive-slide img {
  width: 100%;
  height: auto;
  display: block;
}
.concept__archive-dots {
  display: none;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}
.concept__archive-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #cccccc;
  cursor: pointer;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  filter: none !important;
  text-shadow: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
}
.concept__archive-dot::before, .concept__archive-dot::after {
  display: none !important;
  content: none !important;
}
.concept__archive-dot:focus {
  outline: none !important;
  box-shadow: none !important;
}
.concept__archive-dot:active {
  outline: none !important;
  box-shadow: none !important;
  transform: none !important;
}
.concept__archive-dot--active {
  background-color: #333333;
}
.concept__archive-dot:hover {
  background-color: #999999;
}
.concept__archive-slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: var(--slide-btn-size-pc);
  height: var(--slide-btn-size-pc);
  border: none;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .concept__archive-slide-btn {
    width: var(--slide-btn-size-mobile);
    height: var(--slide-btn-size-mobile);
  }
}
.concept__archive-slide-btn:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-50%) scale(1.05);
}
.concept__archive-slide-btn:active {
  transform: translateY(-50%) scale(0.95);
}
.concept__archive-slide-btn--prev {
  left: var(--slide-btn-offset-pc);
}
@media screen and (max-width: 767px) {
  .concept__archive-slide-btn--prev {
    left: var(--slide-btn-offset-mobile);
  }
}
.concept__archive-slide-btn--next {
  right: var(--slide-btn-offset-pc);
}
@media screen and (max-width: 767px) {
  .concept__archive-slide-btn--next {
    right: var(--slide-btn-offset-mobile);
  }
}
.concept__archive-slide-btn-icon {
  width: var(--slide-btn-icon-size-pc);
  height: var(--slide-btn-icon-size-pc);
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .concept__archive-slide-btn-icon {
    width: var(--slide-btn-icon-size-mobile);
    height: var(--slide-btn-icon-size-mobile);
  }
}
.concept__archive-slide-btn--prev .concept__archive-slide-btn-icon {
  transform: translateX(-1.5px);
}
@media screen and (max-width: 767px) {
  .concept__archive-slide-btn--prev .concept__archive-slide-btn-icon {
    transform: translateX(-1.25px);
  }
}
.concept__archive-slide-btn--next .concept__archive-slide-btn-icon {
  transform: translateX(0.5px);
}
@media screen and (max-width: 767px) {
  .concept__archive-slide-btn--next .concept__archive-slide-btn-icon {
    transform: translateX(0.25px);
  }
}
.concept__archive-slide-btn--disabled {
  cursor: not-allowed;
  pointer-events: none;
}
.concept__archive-slide-btn--disabled .concept__archive-slide-btn-icon {
  color: #999999;
}
.concept__archive-slide-btn--disabled:hover {
  background-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-50%) scale(1);
}
.concept__archive-slide-btn--disabled:active {
  transform: translateY(-50%) scale(1);
}

.access__content {
  text-align: center;
}
.access__section-image {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .access__section-image {
    margin-bottom: 40px;
  }
}
.access__title-ja {
  display: block;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: #000000;
  margin-top: 12px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .access__title-ja {
    font-size: 12px;
    margin-top: 10px;
  }
}
.access__image {
  max-width: 135px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .access__image {
    max-width: 115px;
  }
}
.access__location {
  margin-bottom: 28px;
}
@media screen and (max-width: 767px) {
  .access__location {
    margin-bottom: 25px;
  }
}
.access__location p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.4;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.01em;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .access__location p {
    font-size: 20px;
    gap: 6px;
  }
}
.access__pin-icon {
  width: 28px;
  height: 28px;
}
@media screen and (max-width: 767px) {
  .access__pin-icon {
    width: 24px;
    height: 24px;
  }
}
.access__venue-name {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}
.access__venue-name:hover {
  color: #666666;
}
@media screen and (max-width: 767px) {
  .access__venue-name {
    font-size: 20px;
  }
}
.access__venue-detail {
  font-size: 17px;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .access__venue-detail {
    font-size: 15px;
  }
}
.access__address {
  font-family: "Noto Sans JP", "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
  font-size: 14px !important;
  color: #000000;
  margin-top: 8px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .access__address {
    font-size: 13px !important;
    margin-top: 6px;
  }
}
.access__map {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
.access__map-container {
  width: 100%;
  aspect-ratio: 3/2;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .access__map-container {
    aspect-ratio: 3/2;
    position: relative;
    transform: translateZ(0);
    will-change: auto;
    left: 0;
    right: 0;
    margin: 0 auto;
    touch-action: pan-x pan-y;
    -webkit-overflow-scrolling: touch;
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
}
.access__art-window {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .access__art-window {
    margin-top: 30px;
  }
}
.access__art-window-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 20px;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .access__art-window-content {
    gap: 25px;
    margin-bottom: 15px;
    padding: 0 20px;
  }
}
.access__art-window-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 80px;
}
.access__art-window-right {
  flex: 0 0 140px;
}
@media screen and (max-width: 767px) {
  .access__art-window-right {
    flex: 0 0 115px;
  }
}
.access__art-window-title {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #000000;
  margin-bottom: 55px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .access__art-window-title {
    font-size: 18px;
    letter-spacing: 0.01em;
    margin-bottom: 47px;
  }
}
.access__art-window-exhibition {
  text-align: left;
}
.access__exhibition-name {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #666666;
  margin-bottom: 0px;
  text-indent: -0.5em;
}
@media screen and (max-width: 767px) {
  .access__exhibition-name {
    font-size: 15px;
  }
}
.access__exhibition-detail {
  font-size: 17px;
  font-weight: 400;
  color: #666666;
}
@media screen and (max-width: 767px) {
  .access__exhibition-detail {
    font-size: 15px;
  }
}
.access__map-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
@media screen and (max-width: 767px) {
  .access__map-list {
    gap: 5px;
  }
}
.access__map-item {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 2px;
  border-radius: 4px;
  transition: color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .access__map-item {
    padding: 1px;
    gap: 6px;
  }
}
.access__map-name {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #666666;
  transition: color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .access__map-name {
    font-size: 16px;
  }
}
.access__map-item.active .access__map-name {
  color: #000000;
}
.access__art-image {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .access__art-image {
    max-width: 100%;
    padding: 0 20px;
  }
}
.access__art-image-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.archive {
  margin-bottom: 0;
  padding-bottom: 0;
}
@media screen and (max-width: 767px) {
  .archive {
    padding-bottom: 0;
  }
}
.archive__content {
  text-align: center;
}
.archive__section-image {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .archive__section-image {
    margin-bottom: 40px;
  }
}
.archive__image {
  max-width: 190px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .archive__image {
    max-width: 165px;
  }
}
.archive__event-name {
  margin-bottom: 28px;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .archive__event-name {
    margin-bottom: 25px;
  }
}
.archive__event-name p {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.4;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .archive__event-name p {
    font-size: 20px;
  }
}
.archive__slider {
  width: 100%;
  margin: 0 auto;
}
.archive__slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 0px;
  margin-bottom: 0;
}
.archive__slider-wrapper {
  display: flex;
  transition: transform 0.3s ease;
  width: 100%;
}
.archive__slide {
  flex: 0 0 100%;
  width: 100%;
}
.archive__slide img {
  width: 100%;
  height: auto;
  display: block;
}
.archive__bottom-section {
  background-color: #ffffff;
  transition: background-color 0.8s ease;
  margin-top: 0;
  padding: 0 0 0 0;
}
.archive__bottom-section.archive__bottom-section--scrolled {
  background-color: #b7b2b5;
}
.section--bg-changed + .archive__bottom-section {
  background-color: #b7b2b5;
}
.archive__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}
.archive__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #cccccc;
  cursor: pointer;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  filter: none !important;
  text-shadow: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
}
.archive__dot::before, .archive__dot::after {
  display: none !important;
  content: none !important;
}
.archive__dot:focus {
  outline: none !important;
  box-shadow: none !important;
}
.archive__dot:active {
  outline: none !important;
  box-shadow: none !important;
  transform: none !important;
}
.archive__dot--active {
  background-color: #333333;
}
.archive__dot:hover {
  background-color: #999999;
}

.artist__content {
  text-align: center;
}
.artist__title {
  text-align: center;
  margin: 16px 0 40px;
}
.artist__title img {
  width: 131px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .artist__title img {
    width: 110px;
  }
}
.artist__title-ja {
  display: block;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: #000000;
  margin-top: 12px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .artist__title-ja {
    font-size: 12px;
    margin-top: 10px;
  }
}
.artist__section-image {
  max-width: 500px;
  margin: 0 auto 30px;
  text-align: left;
  padding: 40px 20px 0px 20px;
}
@media screen and (max-width: 767px) {
  .artist__section-image {
    max-width: 100%;
    margin: 0 auto 30px;
    padding: 25px 20px 0px 20px;
  }
}
.artist__map-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
.artist__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 40px;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .artist__grid {
    gap: 10px;
    margin-top: 30px;
    padding: 0 20px;
  }
}
.artist__card {
  cursor: pointer;
  transition: transform 0.2s ease;
}
.artist__card:hover {
  transform: translateY(-2px);
}
.artist__thumbnail {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 0px;
  transition: filter 0.3s ease;
}
.artist__thumbnail:hover {
  filter: brightness(0.85);
}
.artist__name {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  font-feature-settings: "locl" 1, "kern" 1, "liga" 1;
  color: #000000;
  text-align: center;
  margin-top: 12px;
}
.artist__name[lang=en], .artist__name .en, .artist__name .english {
  font-family: "Inter", sans-serif, sans-serif;
}
.artist__name[lang=en], .artist__name .en, .artist__name .english, .artist__name .number {
  font-variant-numeric: tabular-nums;
}
.artist__name[data-mixed=true] {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.artist__name {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.artist__name[lang=ja], .artist__name .jp, .artist__name .japanese {
  font-family: "Noto Sans JP", sans-serif, sans-serif;
}
.artist__name[data-mixed=true] {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
@media screen and (max-width: 767px) {
  .artist__name {
    font-size: 12px;
    margin-top: 8px;
  }
}

.footer {
  transition: background-color 0.8s ease;
}
.section--bg-changed + .footer, .section--bg-changed + * + .footer, .section--bg-changed + * + * + .footer {
  background-color: #b7b2b5 !important;
}
.footer__content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.footer__group {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .footer__group {
    margin-bottom: 30px;
  }
}
.footer__group:last-of-type {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .footer__group:last-of-type {
    margin-bottom: 40px;
  }
}
.footer__title {
  font-family: "Noto Sans JP", "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  color: #666666;
  margin-bottom: 2px;
}
@media screen and (max-width: 767px) {
  .footer__title {
    margin-bottom: 2px;
    font-size: 14px;
  }
}
.footer__company {
  margin-bottom: 8px;
}
.footer__company-name {
  font-family: "Noto Sans JP", "Inter", sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: #000000;
  margin-bottom: 2px;
}
@media screen and (max-width: 767px) {
  .footer__company-name {
    font-size: 15px;
    margin-bottom: 1px;
  }
}
.footer__company-detail {
  font-family: "Noto Sans JP", "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .footer__company-detail {
    font-size: 14px;
  }
}
.footer__instagram-container {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}
.footer__instagram {
  display: inline-flex;
  transition: opacity 0.2s ease;
}
.footer__instagram:hover {
  opacity: 0.7;
}
.footer__instagram-icon {
  width: 20px;
  height: 20px;
  opacity: 0.5;
  transition: opacity 0.2s ease;
}
@media screen and (max-width: 767px) {
  .footer__instagram-icon {
    width: 18px;
    height: 18px;
  }
}
.footer__instagram-icon:hover {
  opacity: 0.8;
}
.footer__main-logo {
  margin-top: 80px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .footer__main-logo {
    margin-bottom: 30px;
  }
}
.footer__logo {
  max-width: 160px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    max-width: 130px;
  }
}
.footer__copyright p {
  font-family: "Noto Sans JP", "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: #666666;
}
@media screen and (max-width: 767px) {
  .footer__copyright p {
    font-size: 12px;
  }
}

.bottom-sections-wrapper {
  background-color: #ffffff;
  transition: background-color 0.8s ease;
  position: relative;
  z-index: 10;
}
.bottom-sections-wrapper.bottom-sections-wrapper--scrolled {
  background-color: #b7b2b5;
}
.bottom-sections-wrapper.bottom-sections-wrapper--scrolled .artist__text-ja p,
.bottom-sections-wrapper.bottom-sections-wrapper--scrolled .artist__text-en p {
  color: #ffffff !important;
}
.bottom-sections-wrapper.bottom-sections-wrapper--scrolled .footer {
  background-color: #b7b2b5 !important;
}
@media screen and (min-width: 768px) {
  .bottom-sections-wrapper {
    width: 500px;
    margin: 0 auto;
    box-sizing: border-box;
  }
}

.placeholder {
  padding: 40px 0 80px;
}
.placeholder .placeholder__title {
  text-align: center;
  margin: 16px 0 24px;
}
.placeholder .placeholder__title img {
  width: 220px;
  height: auto;
}
.placeholder .placeholder__content {
  text-align: center;
  font-size: 28px;
  line-height: 1.8;
}

.schedule__content {
  text-align: center;
}
.schedule__title {
  text-align: center;
  margin: 16px 0 40px;
}
.schedule__title img {
  width: 188px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .schedule__title img {
    width: 168px;
  }
}
.schedule__title-ja {
  display: block;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: #000000;
  margin-top: 12px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .schedule__title-ja {
    font-size: 12px;
    margin-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .schedule__title {
    margin: 12px 0 30px;
  }
}
.schedule__list {
  max-width: 600px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .schedule__list {
    max-width: 100%;
    padding: 0 20px;
  }
}
.schedule__item {
  margin-bottom: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.schedule__item:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .schedule__item {
    margin-bottom: 20px;
  }
}
.schedule__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 8px;
  padding: 20px 20px 5px 20px;
  position: relative;
}
.schedule__month {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.4;
  color: #000000;
  text-align: left;
  grid-column: 1;
  grid-row: 1;
}
@media screen and (max-width: 767px) {
  .schedule__month {
    font-size: 16px;
  }
}
.schedule__time {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.4;
  color: #000000;
  text-align: right;
  grid-column: 2;
  grid-row: 1;
}
@media screen and (max-width: 767px) {
  .schedule__time {
    font-size: 16px;
  }
}
.schedule__date {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.4;
  color: #000000;
  text-align: left;
  grid-column: 1;
  grid-row: 2;
}
.schedule__date .schedule__day--sat,
.schedule__date .schedule__day--sun,
.schedule__date .schedule__day--weekday {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.4;
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid #000000;
  border-radius: 50%;
  text-align: center;
  line-height: 18px;
  margin: 0 0 0 3px;
  color: #000000;
  position: relative;
  top: -4px;
}
.schedule__toggle {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.schedule__toggle-icon {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1;
  color: #000000;
  transition: transform 0.3s ease;
}
.schedule__separator {
  height: 1px;
  background-color: #000000;
  margin: 0 20px;
}
@media screen and (max-width: 767px) {
  .schedule__separator {
    margin: 0 16px;
  }
}
.schedule__details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: #f8f8f8;
}
.schedule__detail-item {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  gap: 20px;
}
.schedule__detail-time {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  color: #000000;
  min-width: 60px;
  text-align: left;
}
.schedule__detail-content {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: #000000;
  flex: 1;
  text-align: left;
}
.schedule__detail-duration {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: #666666;
  min-width: 80px;
  width: 80px;
  text-align: right;
  position: relative;
}
.schedule__detail-duration::before {
  content: "｜";
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  color: #666666;
  font-size: 14px;
}
.schedule__detail-separator {
  height: 1px;
  background-color: #e0e0e0;
  margin: 0 20px;
}
.schedule__item.is-open .schedule__toggle-icon {
  transform: rotate(180deg);
}
.schedule__item.is-open .schedule__details {
  max-height: 500px;
}
@media screen and (max-width: 767px) {
  .schedule__header {
    padding: 16px;
    gap: 6px;
  }
  .schedule__month, .schedule__time {
    font-size: 16px;
  }
  .schedule__date {
    font-size: 14px;
  }
  .schedule__date .schedule__day--sat,
.schedule__date .schedule__day--sun,
.schedule__date .schedule__day--weekday {
    width: 18px;
    height: 18px;
    font-size: 10px;
    line-height: 16px;
  }
  .schedule__toggle {
    bottom: 16px;
    right: 16px;
    width: 20px;
    height: 20px;
  }
  .schedule__toggle-icon {
    font-size: 18px;
    font-weight: 500;
  }
  .schedule__separator {
    margin: 0 16px;
  }
  .schedule__detail-item {
    padding: 10px 16px;
    gap: 16px;
  }
  .schedule__detail-time {
    font-size: 14px;
    min-width: 50px;
    text-align: left;
  }
  .schedule__detail-content {
    font-size: 14px;
    text-align: left;
  }
  .schedule__detail-duration {
    font-size: 12px;
    min-width: 60px;
    width: 60px;
  }
  .schedule__detail-duration::before {
    left: -8px;
    font-size: 12px;
  }
  .schedule__detail-separator {
    margin: 0 16px;
  }
}

.schedule-simple__list {
  max-width: 600px;
  margin: 0 auto;
  margin-top: 0px;
}
.schedule-simple__item {
  margin-top: 0px;
  margin-bottom: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}
.schedule-simple__item:last-child {
  margin-bottom: 0;
}
.schedule-simple__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px 0px 30px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .schedule-simple__header {
    padding: 20px 30px 0px 30px;
  }
}
.schedule-simple__left {
  display: flex;
  align-items: center;
  gap: 5px;
}
@media screen and (max-width: 767px) {
  .schedule-simple__left {
    gap: 5px;
  }
}
.schedule-simple__right {
  display: flex;
  align-items: center;
  gap: 5px;
}
@media screen and (max-width: 767px) {
  .schedule-simple__right {
    gap: 5px;
  }
}
.schedule-simple__date {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 26px;
  line-height: 1.4;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .schedule-simple__date {
    font-size: 18px;
  }
}
.schedule-simple__day {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .schedule-simple__day {
    font-size: 11px;
  }
}
.schedule-simple__time {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 26px;
  line-height: 1.4;
  color: #666666;
  text-align: right;
  flex-shrink: 0;
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .schedule-simple__time {
    font-size: 18px;
    margin-right: 5px;
  }
}
.schedule-simple__toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  margin-left: 5px;
}
.schedule-simple__toggle:hover {
  transform: scale(1.1);
}
.schedule-simple__toggle:focus {
  outline: 2px solid #007bff;
  outline-offset: 2px;
}
@media screen and (max-width: 767px) {
  .schedule-simple__toggle {
    width: 36px;
    height: 36px;
    margin-left: 3px;
  }
}
.schedule-simple__toggle-icon {
  font-size: 30px;
  color: black;
  transition: transform 0.3s ease, color 0.3s ease;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .schedule-simple__toggle-icon {
    font-size: 24px;
  }
}
.schedule-simple__details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
  background-color: #ffffff;
}
.schedule-simple__details[aria-hidden=false] {
  max-height: 500px;
}
.schedule-simple__details-content {
  padding: 0;
  position: relative;
}
.schedule-simple__details-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
  right: 30px;
  height: 1px;
  background-color: #e0e0e0;
}
@media screen and (max-width: 767px) {
  .schedule-simple__details-content::before {
    left: 30px;
    right: 30px;
  }
}
.schedule-simple__detail-item {
  display: flex;
  align-items: center;
  padding: 12px 30px;
  gap: 20px;
  position: relative;
}
.schedule-simple__detail-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 30px;
  right: 30px;
  height: 1px;
  background-color: #e0e0e0;
}
@media screen and (max-width: 767px) {
  .schedule-simple__detail-item::after {
    left: 30px;
    right: 30px;
  }
}
.schedule-simple__detail-item:last-child::after {
  display: none;
}
@media screen and (max-width: 767px) {
  .schedule-simple__detail-item {
    padding: 10px 30px;
    gap: 15px;
  }
}
.schedule-simple__detail-time {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  color: #000000;
  min-width: 60px;
  text-align: left;
  padding-left: 8px;
}
@media screen and (max-width: 767px) {
  .schedule-simple__detail-time {
    font-size: 14px;
    min-width: 50px;
    padding-left: 6px;
  }
}
.schedule-simple__detail-content {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: #000000;
  flex: 1;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .schedule-simple__detail-content {
    font-size: 14px;
  }
}
.schedule-simple__detail-duration {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: #666666;
  min-width: 60px;
  width: 60px;
  text-align: right;
  position: relative;
}
.schedule-simple__detail-duration::before {
  content: "｜";
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  color: #666666;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .schedule-simple__detail-duration {
    font-size: 12px;
    min-width: 50px;
    width: 50px;
  }
  .schedule-simple__detail-duration::before {
    left: -8px;
    font-size: 12px;
  }
}
.schedule-simple__separator {
  height: 2px;
  background-color: #cccccc;
  margin: 0 30px;
}
@media screen and (max-width: 767px) {
  .schedule-simple__separator {
    margin: 0 30px;
  }
}
.schedule-simple__item.is-open .schedule-simple__toggle-icon {
  transform: rotate(180deg);
  color: rgba(0, 0, 0, 0.5);
}
.schedule-simple__item.is-open .schedule-simple__details {
  max-height: 500px;
}

.floormap__content {
  text-align: center;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .floormap__content {
    padding: 0 20px;
  }
}
.floormap__title {
  text-align: center;
  margin: 16px 0 40px;
}
.floormap__title img {
  width: 196px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .floormap__title img {
    width: 176px;
  }
}
.floormap__title-ja {
  display: block;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: #000000;
  margin-top: 12px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .floormap__title-ja {
    font-size: 12px;
    margin-top: 10px;
  }
}
.floormap__image-container {
  position: relative;
  max-width: 500px;
  margin: 0 auto 40px;
}
@media screen and (max-width: 767px) {
  .floormap__image-container {
    max-width: 100%;
    margin: 0 auto 30px;
  }
}
.floormap__main-image {
  width: 100%;
  height: auto;
  display: block;
}
.floormap__click-areas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.floormap__click-area {
  position: absolute;
  cursor: pointer;
  background: transparent;
}
.floormap__details {
  display: flex;
  gap: 30px;
  max-width: 500px;
  margin: 0 auto;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .floormap__details {
    gap: 20px;
    max-width: 100%;
  }
}
.floormap__area-list {
  flex: 0 0 150px;
}
@media screen and (max-width: 767px) {
  .floormap__area-list {
    flex: 0 0 130px;
  }
}
.floormap__area-item {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  font-feature-settings: "locl" 1, "kern" 1, "liga" 1;
  padding: 8px 0;
  cursor: pointer;
  color: #999999;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
}
.floormap__area-item[lang=en], .floormap__area-item .en, .floormap__area-item .english {
  font-family: "Inter", sans-serif, sans-serif;
}
.floormap__area-item[lang=en], .floormap__area-item .en, .floormap__area-item .english, .floormap__area-item .number {
  font-variant-numeric: tabular-nums;
}
.floormap__area-item[data-mixed=true] {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.floormap__area-item {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.floormap__area-item[lang=ja], .floormap__area-item .jp, .floormap__area-item .japanese {
  font-family: "Noto Sans JP", sans-serif, sans-serif;
}
.floormap__area-item[data-mixed=true] {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
@media screen and (max-width: 767px) {
  .floormap__area-item {
    font-size: 14px;
    padding: 6px 0;
  }
}
.floormap__area-item:hover {
  color: #666666;
}
.floormap__area-item:hover .floormap__info-icon,
.floormap__area-item:hover .floormap__area-id {
  color: #666666;
}
.floormap__area-item.active {
  color: #000000;
  font-weight: 700;
}
.floormap__area-item.active .floormap__info-icon,
.floormap__area-item.active .floormap__area-id {
  color: #000000;
  font-weight: 700;
}
.floormap__area-id {
  display: inline-block;
  width: 20px;
  color: inherit;
  transition: color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .floormap__area-id {
    width: 18px;
  }
}
.floormap__area-name {
  color: inherit;
}
.floormap__area-item--icon .floormap__area-name {
  margin-left: 5px;
}
@media screen and (max-width: 767px) {
  .floormap__area-item--icon .floormap__area-name {
    margin-left: 3px;
  }
}
.floormap__info-icon {
  font-size: 20px;
  color: #999999;
  transition: color 0.3s ease;
  width: 20px;
  text-align: left;
  margin-left: -5px;
}
@media screen and (max-width: 767px) {
  .floormap__info-icon {
    font-size: 18px;
    width: 18px;
    margin-left: -3px;
  }
}
.floormap__info {
  flex: 1;
}
.floormap__description {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  font-feature-settings: "locl" 1, "kern" 1, "liga" 1;
  color: #000000;
  margin-bottom: 20px;
}
.floormap__description[lang=en], .floormap__description .en, .floormap__description .english {
  font-family: "Inter", sans-serif, sans-serif;
}
.floormap__description[lang=en], .floormap__description .en, .floormap__description .english, .floormap__description .number {
  font-variant-numeric: tabular-nums;
}
.floormap__description[data-mixed=true] {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.floormap__description {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.floormap__description[lang=ja], .floormap__description .jp, .floormap__description .japanese {
  font-family: "Noto Sans JP", sans-serif, sans-serif;
}
.floormap__description[data-mixed=true] {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
@media screen and (max-width: 767px) {
  .floormap__description {
    font-size: 13px;
    margin-bottom: 16px;
  }
}
.floormap__area-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  object-fit: cover;
}

.artaward__content {
  text-align: center;
}
.artaward__title {
  text-align: center;
  margin: 16px 0 24px;
}
.artaward__title img {
  width: 221px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .artaward__title img {
    width: 200px;
  }
}
.artaward__title-ja {
  display: block;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: #000000;
  margin-top: 12px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .artaward__title-ja {
    font-size: 12px;
    margin-top: 10px;
  }
}
.artaward__loading {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  color: #666666;
  text-align: center;
  padding: 40px 0;
}
.artaward__list {
  max-width: 500px;
  margin: 50px auto 0;
}
@media screen and (max-width: 767px) {
  .artaward__list {
    max-width: 100%;
    margin: 40px auto 0;
  }
}
.artaward__item {
  margin-bottom: 100px;
  transition: box-shadow 0.3s ease;
}
@media screen and (max-width: 767px) {
  .artaward__item {
    margin-bottom: 70px;
  }
}
.artaward__item:last-child {
  margin-bottom: 0;
}
.artaward__thumbnail {
  position: relative;
  cursor: pointer;
  transition: background-color 0.2s ease;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .artaward__thumbnail {
    padding: 0 20px;
  }
}
.artaward__thumbnail--no-details {
  cursor: default;
}
.artaward__thumbnail--no-details:hover {
  background-color: transparent;
}
.artaward__thumbnail::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 30px;
  right: 30px;
  height: 2px;
  background-color: #cccccc;
}
@media screen and (max-width: 767px) {
  .artaward__thumbnail::after {
    left: 30px;
    right: 30px;
  }
}
.artaward__item.active .artaward__thumbnail::after {
  display: none;
}
.artaward__thumbnail--no-details::after {
  display: none;
}
.artaward__thumbnail-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
.artaward__summary {
  padding: 20px 10px;
  text-align: left;
  position: relative;
}
@media screen and (max-width: 767px) {
  .artaward__summary {
    padding: 15px 10px;
  }
}
.artaward__item-title {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  font-feature-settings: "locl" 1, "kern" 1, "liga" 1;
  color: #000000;
  margin-bottom: 12px;
}
.artaward__item-title[lang=en], .artaward__item-title .en, .artaward__item-title .english {
  font-family: "Inter", sans-serif, sans-serif;
}
.artaward__item-title[lang=en], .artaward__item-title .en, .artaward__item-title .english, .artaward__item-title .number {
  font-variant-numeric: tabular-nums;
}
.artaward__item-title[data-mixed=true] {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.artaward__item-title {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.artaward__item-title[lang=ja], .artaward__item-title .jp, .artaward__item-title .japanese {
  font-family: "Noto Sans JP", sans-serif, sans-serif;
}
.artaward__item-title[data-mixed=true] {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
@media screen and (max-width: 767px) {
  .artaward__item-title {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
.artaward__lead {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
  font-feature-settings: "locl" 1, "kern" 1, "liga" 1;
  color: #000000;
  margin: 0 0 10px 0;
  text-align: left;
  text-align: justify;
  text-justify: inter-ideograph;
}
.artaward__lead[lang=en], .artaward__lead .en, .artaward__lead .english {
  font-family: "Inter", sans-serif, sans-serif;
}
.artaward__lead[lang=en], .artaward__lead .en, .artaward__lead .english, .artaward__lead .number {
  font-variant-numeric: tabular-nums;
}
.artaward__lead[data-mixed=true] {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.artaward__lead {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.artaward__lead[lang=ja], .artaward__lead .jp, .artaward__lead .japanese {
  font-family: "Noto Sans JP", sans-serif, sans-serif;
}
.artaward__lead[data-mixed=true] {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
@media screen and (max-width: 767px) {
  .artaward__lead {
    font-size: 13px;
    margin: 0 0 4px 0;
  }
}
.artaward__item-title2 {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  font-feature-settings: "locl" 1, "kern" 1, "liga" 1;
  color: #000000;
  margin: 30px 0 12px 0;
  text-align: left;
}
.artaward__item-title2[lang=en], .artaward__item-title2 .en, .artaward__item-title2 .english {
  font-family: "Inter", sans-serif, sans-serif;
}
.artaward__item-title2[lang=en], .artaward__item-title2 .en, .artaward__item-title2 .english, .artaward__item-title2 .number {
  font-variant-numeric: tabular-nums;
}
.artaward__item-title2[data-mixed=true] {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.artaward__item-title2 {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.artaward__item-title2[lang=ja], .artaward__item-title2 .jp, .artaward__item-title2 .japanese {
  font-family: "Noto Sans JP", sans-serif, sans-serif;
}
.artaward__item-title2[data-mixed=true] {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
@media screen and (max-width: 767px) {
  .artaward__item-title2 {
    font-size: 15px;
    margin: 25px 0 10px 0;
  }
}
.artaward__lead2 {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
  font-feature-settings: "locl" 1, "kern" 1, "liga" 1;
  color: #000000;
  margin: 0 0 10px 0;
  text-align: left;
  text-align: justify;
  text-justify: inter-ideograph;
}
.artaward__lead2[lang=en], .artaward__lead2 .en, .artaward__lead2 .english {
  font-family: "Inter", sans-serif, sans-serif;
}
.artaward__lead2[lang=en], .artaward__lead2 .en, .artaward__lead2 .english, .artaward__lead2 .number {
  font-variant-numeric: tabular-nums;
}
.artaward__lead2[data-mixed=true] {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.artaward__lead2 {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.artaward__lead2[lang=ja], .artaward__lead2 .jp, .artaward__lead2 .japanese {
  font-family: "Noto Sans JP", sans-serif, sans-serif;
}
.artaward__lead2[data-mixed=true] {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
@media screen and (max-width: 767px) {
  .artaward__lead2 {
    font-size: 13px;
    margin: 0 0 8px 0;
  }
}
.artaward__toggle-icon {
  position: absolute;
  bottom: 2px;
  right: 30px;
  font-size: 48px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
  pointer-events: none;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .artaward__toggle-icon {
    bottom: 1px;
    right: 30px;
    font-size: 40px;
    font-weight: 700;
  }
}
.artaward__item.active .artaward__toggle-icon {
  transform: rotate(180deg);
  color: rgba(0, 0, 0, 0.5);
}
.artaward__details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.artaward__details.open {
  max-height: 2000px;
  position: relative;
}
.artaward__details.open::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0px;
  right: 0px;
  height: 2px;
  background-color: #cccccc;
}
@media screen and (max-width: 767px) {
  .artaward__details.open::after {
    left: 0px;
    right: 0px;
  }
}
.artaward__details-content {
  padding: 0px 10px 50px 10px;
}
@media screen and (max-width: 767px) {
  .artaward__details-content {
    padding: 0px 10px 30px 10px;
  }
}
.artaward__detail-heading {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  font-feature-settings: "locl" 1, "kern" 1, "liga" 1;
  color: #000000;
  margin-bottom: 16px;
  text-align: left;
}
.artaward__detail-heading[lang=en], .artaward__detail-heading .en, .artaward__detail-heading .english {
  font-family: "Inter", sans-serif, sans-serif;
}
.artaward__detail-heading[lang=en], .artaward__detail-heading .en, .artaward__detail-heading .english, .artaward__detail-heading .number {
  font-variant-numeric: tabular-nums;
}
.artaward__detail-heading[data-mixed=true] {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.artaward__detail-heading {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.artaward__detail-heading[lang=ja], .artaward__detail-heading .jp, .artaward__detail-heading .japanese {
  font-family: "Noto Sans JP", sans-serif, sans-serif;
}
.artaward__detail-heading[data-mixed=true] {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
@media screen and (max-width: 767px) {
  .artaward__detail-heading {
    font-size: 15px;
    margin-bottom: 14px;
  }
}
.artaward__detail-text {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
  font-feature-settings: "locl" 1, "kern" 1, "liga" 1;
  color: #000000;
  margin-bottom: 20px;
  text-align: left;
  text-align: justify;
  text-justify: inter-ideograph;
  line-height: 1.8;
}
.artaward__detail-text[lang=en], .artaward__detail-text .en, .artaward__detail-text .english {
  font-family: "Inter", sans-serif, sans-serif;
}
.artaward__detail-text[lang=en], .artaward__detail-text .en, .artaward__detail-text .english, .artaward__detail-text .number {
  font-variant-numeric: tabular-nums;
}
.artaward__detail-text[data-mixed=true] {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.artaward__detail-text {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.artaward__detail-text[lang=ja], .artaward__detail-text .jp, .artaward__detail-text .japanese {
  font-family: "Noto Sans JP", sans-serif, sans-serif;
}
.artaward__detail-text[data-mixed=true] {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
@media screen and (max-width: 767px) {
  .artaward__detail-text {
    font-size: 13px;
    margin-bottom: 18px;
  }
}
.artaward__detail-image {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 0px;
}
@media screen and (max-width: 767px) {
  .artaward__detail-image {
    margin-bottom: 18px;
  }
}
.artaward__detail-list {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .artaward__detail-list {
    margin-bottom: 18px;
  }
}
.artaward__list-item {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
  color: #666666;
  padding: 12px 0;
  border-bottom: 1px solid #e0e0e0;
  text-align: left;
  position: relative;
  padding-left: 20px;
}
@media screen and (max-width: 767px) {
  .artaward__list-item {
    font-size: 13px;
    padding: 10px 0 10px 18px;
  }
}
.artaward__list-item:last-child {
  border-bottom: none;
}
.artaward__list-item::before {
  content: counter(list-counter);
  counter-increment: list-counter;
  position: absolute;
  left: 0;
  top: 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.8;
  color: #666666;
}
@media screen and (max-width: 767px) {
  .artaward__list-item::before {
    font-size: 13px;
    top: 10px;
  }
}
.artaward__detail-list {
  counter-reset: list-counter;
}
.artaward__profiles {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .artaward__profiles {
    margin-bottom: 10px;
  }
}
.artaward__profile {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  background-color: #f2f2f2;
  padding: 10px;
  border-bottom-left-radius: 30px;
}
@media screen and (max-width: 767px) {
  .artaward__profile {
    gap: 15px;
    margin-bottom: 18px;
    padding: 10px;
    border-bottom-left-radius: 30px;
  }
}
.artaward__profile:last-child {
  margin-bottom: 0;
}
.artaward__profile-image {
  width: 100px;
  height: 100px;
  border-radius: 0;
  object-fit: contain;
  flex-shrink: 0;
  background-color: #cccccc;
}
@media screen and (max-width: 767px) {
  .artaward__profile-image {
    width: 70px;
    height: 70px;
  }
}
.artaward__profile-info {
  flex: 1;
  text-align: left;
}
.artaward__profile-name-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 0;
  line-height: 1;
}
.artaward__profile-name-row a {
  cursor: pointer;
  pointer-events: auto;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .artaward__profile-name-row {
    margin-bottom: 0;
    line-height: 1;
  }
}
.artaward__profile-name {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  color: #000000;
  margin: 0 !important;
  padding: 0 !important;
  padding-bottom: 0.5em !important;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .artaward__profile-name {
    font-size: 13px;
    line-height: 1;
    gap: 6px;
  }
}
.artaward__profile-name-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .artaward__profile-name-jp {
    font-size: 13px;
  }
}
.artaward__profile-name-en {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .artaward__profile-name-en {
    font-size: 12px;
  }
}
.artaward__instagram-icon {
  width: 20px;
  height: 20px;
  opacity: 0.5;
  transition: opacity 0.2s ease;
  margin-top: 1px;
  margin-right: 0px;
  cursor: pointer;
  pointer-events: auto;
}
@media screen and (max-width: 767px) {
  .artaward__instagram-icon {
    width: 18px;
    height: 18px;
    margin-top: 0px;
    margin-right: 0px;
  }
}
.artaward__instagram-icon:hover {
  opacity: 0.8;
}
.artaward__profile-text {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.8;
  font-feature-settings: "locl" 1, "kern" 1, "liga" 1;
  color: #000000;
  margin: 0 !important;
  padding: 0 !important;
  margin-top: 2px !important;
  text-align: left;
  text-align: justify;
  text-justify: inter-ideograph;
  padding-top: 5px !important;
}
.artaward__profile-text[lang=en], .artaward__profile-text .en, .artaward__profile-text .english {
  font-family: "Inter", sans-serif, sans-serif;
}
.artaward__profile-text[lang=en], .artaward__profile-text .en, .artaward__profile-text .english, .artaward__profile-text .number {
  font-variant-numeric: tabular-nums;
}
.artaward__profile-text[data-mixed=true] {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.artaward__profile-text {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.artaward__profile-text[lang=ja], .artaward__profile-text .jp, .artaward__profile-text .japanese {
  font-family: "Noto Sans JP", sans-serif, sans-serif;
}
.artaward__profile-text[data-mixed=true] {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
@media screen and (max-width: 767px) {
  .artaward__profile-text {
    font-size: 12px;
    line-height: 1.8;
    margin-top: 2px !important;
    padding-top: 2px !important;
  }
}

.service__content {
  text-align: center;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .service__content {
    padding: 0 20px;
  }
}
.service__title {
  text-align: center;
  margin: 16px 0 24px;
}
.service__title img {
  width: 151px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .service__title img {
    width: 131px;
  }
}
.service__title-ja {
  display: block;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: #000000;
  margin-top: 12px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .service__title-ja {
    font-size: 12px;
    margin-top: 10px;
  }
}
.service__list {
  margin-top: 50px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .service__list {
    margin-top: 40px;
    margin-bottom: 32px;
  }
}
.service__item {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .service__item {
    margin-bottom: 24px;
  }
}
.service__item:last-child {
  margin-bottom: 0;
}
.service__profile {
  display: flex;
  gap: 40px;
  margin-bottom: 10px;
  text-align: left;
  align-items: center;
  padding-left: 20px;
}
@media screen and (max-width: 767px) {
  .service__profile {
    gap: 30px;
    margin-bottom: 10px;
    align-items: center;
    padding-left: 0px;
  }
}
.service__profile--align-top {
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .service__profile--align-top {
    align-items: flex-start;
  }
}
.service__profile-image-container {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .service__profile-image-container {
    padding-left: 20px;
  }
}
.service__profile-image {
  width: 70px;
  height: auto;
  border-radius: 0;
  object-fit: contain;
  display: block;
}
@media screen and (max-width: 767px) {
  .service__profile-image {
    width: 60px;
    height: auto;
  }
}
.service__profile-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.service__profile-name {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  font-feature-settings: "locl" 1, "kern" 1, "liga" 1;
  color: #000000;
  margin: 0 0 8px 0;
}
.service__profile-name[lang=en], .service__profile-name .en, .service__profile-name .english {
  font-family: "Inter", sans-serif, sans-serif;
}
.service__profile-name[lang=en], .service__profile-name .en, .service__profile-name .english, .service__profile-name .number {
  font-variant-numeric: tabular-nums;
}
.service__profile-name[data-mixed=true] {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.service__profile-name {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.service__profile-name[lang=ja], .service__profile-name .jp, .service__profile-name .japanese {
  font-family: "Noto Sans JP", sans-serif, sans-serif;
}
.service__profile-name[data-mixed=true] {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
@media screen and (max-width: 767px) {
  .service__profile-name {
    font-size: 15px;
    margin-bottom: 6px;
  }
}
.service__profile-description {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
  font-feature-settings: "locl" 1, "kern" 1, "liga" 1;
  color: #000000;
  margin: 0;
}
.service__profile-description[lang=en], .service__profile-description .en, .service__profile-description .english {
  font-family: "Inter", sans-serif, sans-serif;
}
.service__profile-description[lang=en], .service__profile-description .en, .service__profile-description .english, .service__profile-description .number {
  font-variant-numeric: tabular-nums;
}
.service__profile-description[data-mixed=true] {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.service__profile-description {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.service__profile-description[lang=ja], .service__profile-description .jp, .service__profile-description .japanese {
  font-family: "Noto Sans JP", sans-serif, sans-serif;
}
.service__profile-description[data-mixed=true] {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
@media screen and (max-width: 767px) {
  .service__profile-description {
    font-size: 13px;
  }
}
.service__special-offer {
  margin-top: 0px;
  padding: 0px 20px;
  border-radius: 0px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .service__special-offer {
    margin-top: 0px;
    padding: 0px 16px;
    border-radius: 0px;
  }
}
.service__special-title {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  font-feature-settings: "locl" 1, "kern" 1, "liga" 1;
  color: #000000;
  margin: 0 0 8px 0;
}
.service__special-title[lang=en], .service__special-title .en, .service__special-title .english {
  font-family: "Inter", sans-serif, sans-serif;
}
.service__special-title[lang=en], .service__special-title .en, .service__special-title .english, .service__special-title .number {
  font-variant-numeric: tabular-nums;
}
.service__special-title[data-mixed=true] {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.service__special-title {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.service__special-title[lang=ja], .service__special-title .jp, .service__special-title .japanese {
  font-family: "Noto Sans JP", sans-serif, sans-serif;
}
.service__special-title[data-mixed=true] {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
@media screen and (max-width: 767px) {
  .service__special-title {
    font-size: 15px;
    margin-bottom: 6px;
  }
}
.service__special-description {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
  font-feature-settings: "locl" 1, "kern" 1, "liga" 1;
  color: #000000;
  margin: 0 0 24px 0;
}
.service__special-description[lang=en], .service__special-description .en, .service__special-description .english {
  font-family: "Inter", sans-serif, sans-serif;
}
.service__special-description[lang=en], .service__special-description .en, .service__special-description .english, .service__special-description .number {
  font-variant-numeric: tabular-nums;
}
.service__special-description[data-mixed=true] {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.service__special-description {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.service__special-description[lang=ja], .service__special-description .jp, .service__special-description .japanese {
  font-family: "Noto Sans JP", sans-serif, sans-serif;
}
.service__special-description[data-mixed=true] {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
@media screen and (max-width: 767px) {
  .service__special-description {
    font-size: 13px;
    margin-bottom: 20px;
  }
}
.service__special-image {
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .service__special-image {
    margin-bottom: 12px;
  }
}
.service__special-image img {
  max-width: 100%;
  height: auto;
  border-radius: 0px;
}
@media screen and (max-width: 767px) {
  .service__special-image img {
    border-radius: 0px;
  }
}
.service__small-text {
  font-size: 0.9em;
}
@media screen and (max-width: 767px) {
  .service__small-text {
    font-size: 0.85em;
  }
}

.event {
  padding-bottom: 0px !important;
}
@media screen and (max-width: 767px) {
  .event {
    padding-bottom: 0px !important;
  }
}
.event__content {
  text-align: center;
}
.event__header {
  text-align: center;
  margin: 16px 0 48px;
}
.event__header-img {
  width: 220px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .event__header-img {
    width: 195px;
  }
}
.event__header-ja {
  display: block;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: #000000;
  margin-top: 12px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .event__header-ja {
    font-size: 12px;
    margin-top: 10px;
  }
}
.event__title {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.8;
  font-feature-settings: "locl" 1, "kern" 1, "liga" 1;
  color: #000000;
  text-align: left;
  max-width: 500px;
  margin: 0 auto 20px;
  padding: 0 20px;
}
.event__title[lang=en], .event__title .en, .event__title .english {
  font-family: "Inter", sans-serif, sans-serif;
}
.event__title[lang=en], .event__title .en, .event__title .english, .event__title .number {
  font-variant-numeric: tabular-nums;
}
.event__title[data-mixed=true] {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.event__title {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.event__title[lang=ja], .event__title .jp, .event__title .japanese {
  font-family: "Noto Sans JP", sans-serif, sans-serif;
}
@media screen and (max-width: 767px) {
  .event__title {
    font-size: 16px;
    margin: 0 auto 16px;
    padding: 0 20px;
  }
}
.event__lead {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
  font-feature-settings: "locl" 1, "kern" 1, "liga" 1;
  color: #000000;
  text-align: left;
  max-width: 500px;
  margin: 0 auto 40px;
  padding: 0 20px;
}
.event__lead[lang=en], .event__lead .en, .event__lead .english {
  font-family: "Inter", sans-serif, sans-serif;
}
.event__lead[lang=en], .event__lead .en, .event__lead .english, .event__lead .number {
  font-variant-numeric: tabular-nums;
}
.event__lead[data-mixed=true] {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.event__lead {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.event__lead[lang=ja], .event__lead .jp, .event__lead .japanese {
  font-family: "Noto Sans JP", sans-serif, sans-serif;
}
@media screen and (max-width: 767px) {
  .event__lead {
    font-size: 12px;
    margin: 0 auto 30px;
    padding: 0 20px;
  }
}
.event__items {
  max-width: 500px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .event__items {
    padding: 0 20px;
  }
}
.event__image-wrapper {
  width: 100%;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .event__image-wrapper {
    margin-bottom: 15px;
  }
}
.event__image-wrapper--small {
  width: 60%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .event__image-wrapper--small {
    width: 60%;
    margin-bottom: 30px;
  }
}
.event__image {
  width: 100%;
  height: auto;
  display: block;
}
.event__image--rounded {
  border-radius: 120px 0 0 120px;
}
@media screen and (max-width: 767px) {
  .event__image--rounded {
    border-radius: 100px 0 0 100px;
  }
}
.event__text-area {
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .event__text-area {
    margin-bottom: 45px;
  }
}
.event__text-title {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.8;
  font-feature-settings: "locl" 1, "kern" 1, "liga" 1;
  color: #000000;
  margin-bottom: 20px;
}
.event__text-title[lang=en], .event__text-title .en, .event__text-title .english {
  font-family: "Inter", sans-serif, sans-serif;
}
.event__text-title[lang=en], .event__text-title .en, .event__text-title .english, .event__text-title .number {
  font-variant-numeric: tabular-nums;
}
.event__text-title[data-mixed=true] {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.event__text-title {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.event__text-title[lang=ja], .event__text-title .jp, .event__text-title .japanese {
  font-family: "Noto Sans JP", sans-serif, sans-serif;
}
@media screen and (max-width: 767px) {
  .event__text-title {
    font-size: 20px;
    margin-bottom: 16px;
  }
}
.event__info-block {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .event__info-block {
    margin-bottom: 16px;
  }
}
.event__info-block:last-of-type {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .event__info-block:last-of-type {
    margin-bottom: 24px;
  }
}
.event__info-label {
  display: inline-block;
  border: 1px solid #000000;
  padding: 6px 16px;
  margin-bottom: 10px;
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4;
  font-feature-settings: "locl" 1, "kern" 1, "liga" 1;
  color: #000000;
}
.event__info-label[lang=en], .event__info-label .en, .event__info-label .english {
  font-family: "Inter", sans-serif, sans-serif;
}
.event__info-label[lang=en], .event__info-label .en, .event__info-label .english, .event__info-label .number {
  font-variant-numeric: tabular-nums;
}
.event__info-label[data-mixed=true] {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.event__info-label {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.event__info-label[lang=ja], .event__info-label .jp, .event__info-label .japanese {
  font-family: "Noto Sans JP", sans-serif, sans-serif;
}
@media screen and (max-width: 767px) {
  .event__info-label {
    font-size: 13px;
    padding: 5px 14px;
    margin-bottom: 8px;
  }
}
.event__info-value {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.8;
  font-feature-settings: "locl" 1, "kern" 1, "liga" 1;
  color: #000000;
  margin-bottom: 0px;
}
.event__info-value[lang=en], .event__info-value .en, .event__info-value .english {
  font-family: "Inter", sans-serif, sans-serif;
}
.event__info-value[lang=en], .event__info-value .en, .event__info-value .english, .event__info-value .number {
  font-variant-numeric: tabular-nums;
}
.event__info-value[data-mixed=true] {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.event__info-value {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.event__info-value[lang=ja], .event__info-value .jp, .event__info-value .japanese {
  font-family: "Noto Sans JP", sans-serif, sans-serif;
}
@media screen and (max-width: 767px) {
  .event__info-value {
    font-size: 15px;
  }
}
.event__info-value--schedule {
  font-family: "Inter", sans-serif, sans-serif;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .event__info-value--schedule {
    font-size: 17px;
  }
}
.event__info-shop {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.8;
  font-feature-settings: "locl" 1, "kern" 1, "liga" 1;
  color: #000000;
  margin-top: 0px;
}
.event__info-shop[lang=en], .event__info-shop .en, .event__info-shop .english {
  font-family: "Inter", sans-serif, sans-serif;
}
.event__info-shop[lang=en], .event__info-shop .en, .event__info-shop .english, .event__info-shop .number {
  font-variant-numeric: tabular-nums;
}
.event__info-shop[data-mixed=true] {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.event__info-shop {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.event__info-shop[lang=ja], .event__info-shop .jp, .event__info-shop .japanese {
  font-family: "Noto Sans JP", sans-serif, sans-serif;
}
@media screen and (max-width: 767px) {
  .event__info-shop {
    font-size: 17px;
    margin-top: 0px;
  }
}
.event__info-shop-note {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
  font-feature-settings: "locl" 1, "kern" 1, "liga" 1;
  color: #000000;
  margin-top: 2px;
}
.event__info-shop-note[lang=en], .event__info-shop-note .en, .event__info-shop-note .english {
  font-family: "Inter", sans-serif, sans-serif;
}
.event__info-shop-note[lang=en], .event__info-shop-note .en, .event__info-shop-note .english, .event__info-shop-note .number {
  font-variant-numeric: tabular-nums;
}
.event__info-shop-note[data-mixed=true] {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.event__info-shop-note {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.event__info-shop-note[lang=ja], .event__info-shop-note .jp, .event__info-shop-note .japanese {
  font-family: "Noto Sans JP", sans-serif, sans-serif;
}
@media screen and (max-width: 767px) {
  .event__info-shop-note {
    font-size: 13px;
    margin-top: 2px;
  }
}
.event__text-heading {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.8;
  font-feature-settings: "locl" 1, "kern" 1, "liga" 1;
  color: #000000;
  margin: 24px 0 12px;
}
.event__text-heading[lang=en], .event__text-heading .en, .event__text-heading .english {
  font-family: "Inter", sans-serif, sans-serif;
}
.event__text-heading[lang=en], .event__text-heading .en, .event__text-heading .english, .event__text-heading .number {
  font-variant-numeric: tabular-nums;
}
.event__text-heading[data-mixed=true] {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.event__text-heading {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.event__text-heading[lang=ja], .event__text-heading .jp, .event__text-heading .japanese {
  font-family: "Noto Sans JP", sans-serif, sans-serif;
}
@media screen and (max-width: 767px) {
  .event__text-heading {
    font-size: 15px;
    margin: 20px 0 10px;
  }
}
.event__text-description {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
  font-feature-settings: "locl" 1, "kern" 1, "liga" 1;
  color: #000000;
  text-align: left;
  text-align: justify;
  text-justify: inter-ideograph;
  margin: 0;
}
.event__text-description[lang=en], .event__text-description .en, .event__text-description .english {
  font-family: "Inter", sans-serif, sans-serif;
}
.event__text-description[lang=en], .event__text-description .en, .event__text-description .english, .event__text-description .number {
  font-variant-numeric: tabular-nums;
}
.event__text-description[data-mixed=true] {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.event__text-description {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.event__text-description[lang=ja], .event__text-description .jp, .event__text-description .japanese {
  font-family: "Noto Sans JP", sans-serif, sans-serif;
}
@media screen and (max-width: 767px) {
  .event__text-description {
    font-size: 13px;
  }
}
.event__text-description a {
  color: rgba(0, 0, 0, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}
.event__text-description a:hover {
  color: rgba(0, 0, 0, 0.8);
}

.workshop__content {
  text-align: center;
}
.workshop__title {
  text-align: center;
  margin: 16px 0 24px;
}
.workshop__title img {
  width: 241px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .workshop__title img {
    width: 221px;
  }
}
.workshop__title-ja {
  display: block;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: #000000;
  margin-top: 12px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .workshop__title-ja {
    font-size: 12px;
    margin-top: 10px;
  }
}
.workshop__section-info {
  max-width: 500px;
  margin: 0 auto 0px;
  text-align: left;
  padding: 40px 20px 0px 20px;
}
@media screen and (max-width: 767px) {
  .workshop__section-info {
    max-width: 100%;
    margin: 0 auto 0px;
    padding: 25px 20px 0px 20px;
  }
}
.workshop__section-title {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  font-feature-settings: "locl" 1, "kern" 1, "liga" 1;
  color: #000000;
  margin-bottom: 12px;
}
.workshop__section-title[lang=en], .workshop__section-title .en, .workshop__section-title .english {
  font-family: "Inter", sans-serif, sans-serif;
}
.workshop__section-title[lang=en], .workshop__section-title .en, .workshop__section-title .english, .workshop__section-title .number {
  font-variant-numeric: tabular-nums;
}
.workshop__section-title[data-mixed=true] {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.workshop__section-title {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.workshop__section-title[lang=ja], .workshop__section-title .jp, .workshop__section-title .japanese {
  font-family: "Noto Sans JP", sans-serif, sans-serif;
}
.workshop__section-title[data-mixed=true] {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
@media screen and (max-width: 767px) {
  .workshop__section-title {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
.workshop__section-lead {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
  font-feature-settings: "locl" 1, "kern" 1, "liga" 1;
  color: #000000;
  margin: 0 0 10px 0;
  text-align: left;
  text-align: justify;
  text-justify: inter-ideograph;
}
.workshop__section-lead[lang=en], .workshop__section-lead .en, .workshop__section-lead .english {
  font-family: "Inter", sans-serif, sans-serif;
}
.workshop__section-lead[lang=en], .workshop__section-lead .en, .workshop__section-lead .english, .workshop__section-lead .number {
  font-variant-numeric: tabular-nums;
}
.workshop__section-lead[data-mixed=true] {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.workshop__section-lead {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.workshop__section-lead[lang=ja], .workshop__section-lead .jp, .workshop__section-lead .japanese {
  font-family: "Noto Sans JP", sans-serif, sans-serif;
}
.workshop__section-lead[data-mixed=true] {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
@media screen and (max-width: 767px) {
  .workshop__section-lead {
    font-size: 13px;
    margin: 0 0 4px 0;
  }
}
.workshop__section-notes {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
  font-weight: 400;
  font-size: 12.6px;
  line-height: 1.8;
  font-feature-settings: "locl" 1, "kern" 1, "liga" 1;
  color: #000000;
  margin: 12px 0 0 0;
  text-align: left;
}
.workshop__section-notes[lang=en], .workshop__section-notes .en, .workshop__section-notes .english {
  font-family: "Inter", sans-serif, sans-serif;
}
.workshop__section-notes[lang=en], .workshop__section-notes .en, .workshop__section-notes .english, .workshop__section-notes .number {
  font-variant-numeric: tabular-nums;
}
.workshop__section-notes[data-mixed=true] {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.workshop__section-notes {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.workshop__section-notes[lang=ja], .workshop__section-notes .jp, .workshop__section-notes .japanese {
  font-family: "Noto Sans JP", sans-serif, sans-serif;
}
.workshop__section-notes[data-mixed=true] {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
@media screen and (max-width: 767px) {
  .workshop__section-notes {
    font-size: 11px;
    margin: 10px 0 0 0;
  }
}
.workshop__banners {
  max-width: 500px;
  margin: 30px auto 0;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .workshop__banners {
    max-width: 100%;
    margin: 25px auto 0;
    padding: 0 20px;
  }
}
.workshop__banner-item {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .workshop__banner-item {
    margin-bottom: 26px;
  }
}
.workshop__banner-item:last-child {
  margin-bottom: 0;
}
.workshop__banner-item a {
  display: block;
  transition: opacity 0.3s ease;
}
.workshop__banner-item a:hover {
  opacity: 0.85;
}
.workshop__banner-image {
  width: 100%;
  height: auto;
  display: block;
}
.workshop__loading {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  color: #666666;
  text-align: center;
  padding: 40px 0;
}
.workshop__list {
  max-width: 500px;
  margin: 30px auto 0;
}
@media screen and (max-width: 767px) {
  .workshop__list {
    max-width: 100%;
    margin: 30px auto 0;
  }
}
.workshop__item {
  margin-bottom: 20px;
  transition: box-shadow 0.3s ease;
}
.workshop__item:last-child {
  margin-bottom: 0;
}
.workshop__thumbnail {
  position: relative;
  cursor: pointer;
  transition: background-color 0.2s ease;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .workshop__thumbnail {
    padding: 0 20px;
  }
}
.workshop__thumbnail--no-details {
  cursor: default;
}
.workshop__thumbnail--no-details:hover {
  background-color: transparent;
}
.workshop__thumbnail::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 30px;
  right: 30px;
  height: 2px;
  background-color: #cccccc;
}
@media screen and (max-width: 767px) {
  .workshop__thumbnail::after {
    left: 30px;
    right: 30px;
  }
}
.workshop__item.active .workshop__thumbnail::after {
  display: none;
}
.workshop__thumbnail--no-details::after {
  display: none;
}
.workshop__thumbnail-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
.workshop__summary {
  padding: 20px 10px;
  text-align: left;
  position: relative;
}
@media screen and (max-width: 767px) {
  .workshop__summary {
    padding: 15px 10px;
  }
}
.workshop__summary--no-lead {
  padding-bottom: 44px;
}
@media screen and (max-width: 767px) {
  .workshop__summary--no-lead {
    padding-bottom: 33px;
  }
}
.workshop__item-title {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  font-feature-settings: "locl" 1, "kern" 1, "liga" 1;
  color: #000000;
  margin-bottom: 30px;
}
.workshop__item-title[lang=en], .workshop__item-title .en, .workshop__item-title .english {
  font-family: "Inter", sans-serif, sans-serif;
}
.workshop__item-title[lang=en], .workshop__item-title .en, .workshop__item-title .english, .workshop__item-title .number {
  font-variant-numeric: tabular-nums;
}
.workshop__item-title[data-mixed=true] {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.workshop__item-title {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.workshop__item-title[lang=ja], .workshop__item-title .jp, .workshop__item-title .japanese {
  font-family: "Noto Sans JP", sans-serif, sans-serif;
}
.workshop__item-title[data-mixed=true] {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
@media screen and (max-width: 767px) {
  .workshop__item-title {
    font-size: 16px;
    margin-bottom: 24px;
  }
}
.workshop__item-title--no-lead {
  margin-bottom: 0px;
}
@media screen and (max-width: 767px) {
  .workshop__item-title--no-lead {
    margin-bottom: 0px;
  }
}
.workshop__lead {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
  font-feature-settings: "locl" 1, "kern" 1, "liga" 1;
  color: #000000;
  margin: 0 0 10px 0;
  text-align: left;
  text-align: justify;
  text-justify: inter-ideograph;
}
.workshop__lead[lang=en], .workshop__lead .en, .workshop__lead .english {
  font-family: "Inter", sans-serif, sans-serif;
}
.workshop__lead[lang=en], .workshop__lead .en, .workshop__lead .english, .workshop__lead .number {
  font-variant-numeric: tabular-nums;
}
.workshop__lead[data-mixed=true] {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.workshop__lead {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.workshop__lead[lang=ja], .workshop__lead .jp, .workshop__lead .japanese {
  font-family: "Noto Sans JP", sans-serif, sans-serif;
}
.workshop__lead[data-mixed=true] {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
@media screen and (max-width: 767px) {
  .workshop__lead {
    font-size: 13px;
    margin: 0 0 8px 0;
  }
}
.workshop__toggle-icon {
  position: absolute;
  bottom: 2px;
  right: 30px;
  font-size: 48px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
  pointer-events: none;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .workshop__toggle-icon {
    bottom: 1px;
    right: 30px;
    font-size: 40px;
    font-weight: 700;
  }
}
.workshop__item.active .workshop__toggle-icon {
  transform: rotate(180deg);
  color: rgba(0, 0, 0, 0.5);
}
.workshop__details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.workshop__details.open {
  max-height: 4000px;
  position: relative;
}
.workshop__details.open::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0px;
  right: 0px;
  height: 2px;
  background-color: #cccccc;
}
@media screen and (max-width: 767px) {
  .workshop__details.open::after {
    left: 0px;
    right: 0px;
  }
}
.workshop__details-content {
  padding: 0px 0px 0px 0px;
}
@media screen and (max-width: 767px) {
  .workshop__details-content {
    padding: 0px 0px 0px 0px;
  }
}
.workshop__detail-heading {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  font-feature-settings: "locl" 1, "kern" 1, "liga" 1;
  color: #000000;
  margin-bottom: 16px;
  background-color: #f2f2f2;
  padding: 20px 15px 20px 15px;
  text-align: left;
}
.workshop__detail-heading[lang=en], .workshop__detail-heading .en, .workshop__detail-heading .english {
  font-family: "Inter", sans-serif, sans-serif;
}
.workshop__detail-heading[lang=en], .workshop__detail-heading .en, .workshop__detail-heading .english, .workshop__detail-heading .number {
  font-variant-numeric: tabular-nums;
}
.workshop__detail-heading[data-mixed=true] {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.workshop__detail-heading {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.workshop__detail-heading[lang=ja], .workshop__detail-heading .jp, .workshop__detail-heading .japanese {
  font-family: "Noto Sans JP", sans-serif, sans-serif;
}
.workshop__detail-heading[data-mixed=true] {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
@media screen and (max-width: 767px) {
  .workshop__detail-heading {
    font-size: 15px;
    margin-bottom: 14px;
    padding: 15px 12px 15px 12px;
  }
}
.workshop__detail-text {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
  font-feature-settings: "locl" 1, "kern" 1, "liga" 1;
  color: #000000;
  margin-bottom: 20px;
  text-align: left;
  text-align: justify;
  text-justify: inter-ideograph;
  line-height: 1.8;
  background-color: #f2f2f2;
  padding: 20px 15px 20px 15px;
}
.workshop__detail-text[lang=en], .workshop__detail-text .en, .workshop__detail-text .english {
  font-family: "Inter", sans-serif, sans-serif;
}
.workshop__detail-text[lang=en], .workshop__detail-text .en, .workshop__detail-text .english, .workshop__detail-text .number {
  font-variant-numeric: tabular-nums;
}
.workshop__detail-text[data-mixed=true] {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.workshop__detail-text {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.workshop__detail-text[lang=ja], .workshop__detail-text .jp, .workshop__detail-text .japanese {
  font-family: "Noto Sans JP", sans-serif, sans-serif;
}
.workshop__detail-text[data-mixed=true] {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
@media screen and (max-width: 767px) {
  .workshop__detail-text {
    font-size: 13px;
    margin-bottom: 18px;
    padding: 15px 12px 15px 12px;
  }
}
.workshop__detail-image {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-top-right-radius: 30px;
}
@media screen and (max-width: 767px) {
  .workshop__detail-image {
    margin-bottom: 18px;
    border-top-right-radius: 25px;
  }
}
.workshop__detail-list {
  margin-bottom: 20px;
  background-color: #f2f2f2;
  padding: 20px 15px 20px 15px;
}
@media screen and (max-width: 767px) {
  .workshop__detail-list {
    margin-bottom: 18px;
    padding: 15px 12px 15px 12px;
  }
}
.workshop__list-item {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
  font-feature-settings: "locl" 1, "kern" 1, "liga" 1;
  color: #666666;
  padding: 12px 0;
  border-bottom: 1px solid #e0e0e0;
  text-align: left;
  position: relative;
  padding-left: 20px;
}
.workshop__list-item[lang=en], .workshop__list-item .en, .workshop__list-item .english {
  font-family: "Inter", sans-serif, sans-serif;
}
.workshop__list-item[lang=en], .workshop__list-item .en, .workshop__list-item .english, .workshop__list-item .number {
  font-variant-numeric: tabular-nums;
}
.workshop__list-item[data-mixed=true] {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.workshop__list-item {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.workshop__list-item[lang=ja], .workshop__list-item .jp, .workshop__list-item .japanese {
  font-family: "Noto Sans JP", sans-serif, sans-serif;
}
.workshop__list-item[data-mixed=true] {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
@media screen and (max-width: 767px) {
  .workshop__list-item {
    font-size: 13px;
    padding: 10px 0 10px 18px;
  }
}
.workshop__list-item:last-child {
  border-bottom: none;
}
.workshop__list-item::before {
  content: counter(list-counter);
  counter-increment: list-counter;
  position: absolute;
  left: 0;
  top: 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.8;
  color: #666666;
}
@media screen and (max-width: 767px) {
  .workshop__list-item::before {
    font-size: 13px;
    top: 10px;
  }
}
.workshop__detail-list {
  counter-reset: list-counter;
}
.workshop__profiles {
  margin-bottom: 20px;
  background-color: #f2f2f2;
  padding: 20px 15px 20px 15px;
}
@media screen and (max-width: 767px) {
  .workshop__profiles {
    margin-bottom: 10px;
    padding: 15px 12px 15px 12px;
  }
}
.workshop__profile {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .workshop__profile {
    gap: 15px;
    margin-bottom: 28px;
  }
}
.workshop__profile:last-child {
  margin-bottom: 0;
}
.workshop__profile-image {
  width: 100px;
  height: 100px;
  border-radius: 0;
  object-fit: contain;
  flex-shrink: 0;
  background-color: #cccccc;
}
@media screen and (max-width: 767px) {
  .workshop__profile-image {
    width: 100px;
    height: 100px;
  }
}
.workshop__profile-info {
  flex: 1;
  text-align: left !important;
}
.workshop__profile-name-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 0;
  line-height: 1;
}
.workshop__profile-name-row a {
  cursor: pointer;
  pointer-events: auto;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .workshop__profile-name-row {
    margin-bottom: 0;
    line-height: 1;
  }
}
.workshop__profile-name {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  color: #000000;
  margin: 0 !important;
  padding: 0 !important;
  padding-bottom: 0.5em !important;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .workshop__profile-name {
    font-size: 13px;
    line-height: 1;
    gap: 6px;
  }
}
.workshop__profile-name-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .workshop__profile-name-jp {
    font-size: 13px;
  }
}
.workshop__profile-name-en {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .workshop__profile-name-en {
    font-size: 12px;
  }
}
.workshop__instagram-icon {
  width: 16px;
  height: 16px;
  opacity: 0.5;
  transition: opacity 0.2s ease;
  margin-top: -2px;
  cursor: pointer;
  pointer-events: auto;
}
@media screen and (max-width: 767px) {
  .workshop__instagram-icon {
    width: 14px;
    height: 14px;
    margin-top: -1px;
  }
}
.workshop__instagram-icon:hover {
  opacity: 0.8;
}
.workshop__profile-text {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.8;
  font-feature-settings: "locl" 1, "kern" 1, "liga" 1;
  color: #000000;
  margin: 0 !important;
  padding: 0 !important;
  margin-top: 2px !important;
}
.workshop__profile-text[lang=en], .workshop__profile-text .en, .workshop__profile-text .english {
  font-family: "Inter", sans-serif, sans-serif;
}
.workshop__profile-text[lang=en], .workshop__profile-text .en, .workshop__profile-text .english, .workshop__profile-text .number {
  font-variant-numeric: tabular-nums;
}
.workshop__profile-text[data-mixed=true] {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.workshop__profile-text {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.workshop__profile-text[lang=ja], .workshop__profile-text .jp, .workshop__profile-text .japanese {
  font-family: "Noto Sans JP", sans-serif, sans-serif;
}
.workshop__profile-text[data-mixed=true] {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
@media screen and (max-width: 767px) {
  .workshop__profile-text {
    font-size: 12px;
    line-height: 1.8;
    margin-top: 2px !important;
  }
}
.workshop__workshops {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .workshop__workshops {
    margin-bottom: 18px;
  }
}
.workshop__workshop-detail {
  margin-top: -5px;
  margin-bottom: 40px;
  padding: 0px 15px 20px 15px;
}
@media screen and (max-width: 767px) {
  .workshop__workshop-detail {
    margin-top: -5px;
    margin-bottom: 30px;
    padding: 0px 12px 15px 12px;
  }
}
.workshop__workshop-detail:last-child {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .workshop__workshop-detail:last-child {
    margin-bottom: 50px;
  }
}
.workshop__workshop-image {
  width: 100%;
  height: auto;
  margin-bottom: 0px;
  border-top-right-radius: 30px;
}
@media screen and (max-width: 767px) {
  .workshop__workshop-image {
    margin-bottom: 0px;
    border-top-right-radius: 25px;
  }
}
.workshop__workshop-title {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  font-feature-settings: "locl" 1, "kern" 1, "liga" 1;
  color: #000000;
  margin-bottom: 16px;
  text-align: left;
}
.workshop__workshop-title[lang=en], .workshop__workshop-title .en, .workshop__workshop-title .english {
  font-family: "Inter", sans-serif, sans-serif;
}
.workshop__workshop-title[lang=en], .workshop__workshop-title .en, .workshop__workshop-title .english, .workshop__workshop-title .number {
  font-variant-numeric: tabular-nums;
}
.workshop__workshop-title[data-mixed=true] {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.workshop__workshop-title {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.workshop__workshop-title[lang=ja], .workshop__workshop-title .jp, .workshop__workshop-title .japanese {
  font-family: "Noto Sans JP", sans-serif, sans-serif;
}
.workshop__workshop-title[data-mixed=true] {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
@media screen and (max-width: 767px) {
  .workshop__workshop-title {
    font-size: 16px;
    margin-bottom: 14px;
  }
}
.workshop__workshop-content {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
  font-feature-settings: "locl" 1, "kern" 1, "liga" 1;
  color: #000000;
  margin-bottom: 20px;
  text-align: left;
  text-align: justify;
  text-justify: inter-ideograph;
  line-height: 1.8;
}
.workshop__workshop-content[lang=en], .workshop__workshop-content .en, .workshop__workshop-content .english {
  font-family: "Inter", sans-serif, sans-serif;
}
.workshop__workshop-content[lang=en], .workshop__workshop-content .en, .workshop__workshop-content .english, .workshop__workshop-content .number {
  font-variant-numeric: tabular-nums;
}
.workshop__workshop-content[data-mixed=true] {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.workshop__workshop-content {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.workshop__workshop-content[lang=ja], .workshop__workshop-content .jp, .workshop__workshop-content .japanese {
  font-family: "Noto Sans JP", sans-serif, sans-serif;
}
.workshop__workshop-content[data-mixed=true] {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
@media screen and (max-width: 767px) {
  .workshop__workshop-content {
    font-size: 13px;
    margin-bottom: 18px;
  }
}
.workshop__instructor {
  margin-bottom: 20px;
  text-align: left !important;
}
@media screen and (max-width: 767px) {
  .workshop__instructor {
    margin-bottom: 18px;
  }
}
.workshop__instructor-name-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .workshop__instructor-name-row {
    margin-bottom: 6px;
  }
}
.workshop__instructor-name {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .workshop__instructor-name {
    gap: 6px;
  }
}
.workshop__instructor-name-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .workshop__instructor-name-jp {
    font-size: 13px;
  }
}
.workshop__instructor-name-en {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .workshop__instructor-name-en {
    font-size: 13px;
  }
}
.workshop__instructor-profile {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.8;
  color: #000000;
  margin: 0;
  line-height: 1.8;
  text-align: left !important;
  text-align: justify !important;
  text-justify: inter-ideograph;
}
@media screen and (max-width: 767px) {
  .workshop__instructor-profile {
    font-size: 12px;
  }
}
.workshop__instructor-instagram {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.workshop__instructor-instagram:hover {
  opacity: 0.7;
}
.workshop__instagram-icon {
  width: 20px;
  height: 20px;
  opacity: 0.5;
  transition: opacity 0.2s ease;
}
@media screen and (max-width: 767px) {
  .workshop__instagram-icon {
    width: 18px;
    height: 18px;
  }
}
.workshop__instagram-icon:hover {
  opacity: 0.8;
}

.project {
  padding-top: 30px !important;
}
@media screen and (max-width: 767px) {
  .project {
    padding-top: 30px !important;
  }
}
.project__content {
  text-align: center;
}
.project__title {
  text-align: center;
  margin: 16px 0 24px;
}
.project__title img {
  width: 172px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .project__title img {
    width: 151px;
  }
}
.project__title-ja {
  display: block;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: #000000;
  margin-top: 12px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .project__title-ja {
    font-size: 12px;
    margin-top: 10px;
  }
}
.project__section-info {
  max-width: 500px;
  margin: 0 auto 0px;
  text-align: left;
  padding: 40px 20px 0px 20px;
}
@media screen and (max-width: 767px) {
  .project__section-info {
    max-width: 100%;
    margin: 0 auto 0px;
    padding: 25px 20px 0px 20px;
  }
}
.project__section-title {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  font-feature-settings: "locl" 1, "kern" 1, "liga" 1;
  color: #000000;
  margin-bottom: 12px;
}
.project__section-title[lang=en], .project__section-title .en, .project__section-title .english {
  font-family: "Inter", sans-serif, sans-serif;
}
.project__section-title[lang=en], .project__section-title .en, .project__section-title .english, .project__section-title .number {
  font-variant-numeric: tabular-nums;
}
.project__section-title[data-mixed=true] {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.project__section-title {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.project__section-title[lang=ja], .project__section-title .jp, .project__section-title .japanese {
  font-family: "Noto Sans JP", sans-serif, sans-serif;
}
.project__section-title[data-mixed=true] {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
@media screen and (max-width: 767px) {
  .project__section-title {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
.project__list {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .project__list {
    margin-top: 30px;
  }
}
.project__item {
  margin-bottom: 20px;
  transition: box-shadow 0.3s ease;
}
.project__item:last-child {
  margin-bottom: 0;
}
.project__thumbnail {
  position: relative;
  cursor: pointer;
  transition: background-color 0.2s ease;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .project__thumbnail {
    padding: 0 20px;
  }
}
.project__thumbnail--no-details {
  cursor: default;
}
.project__thumbnail--no-details:hover {
  background-color: transparent;
}
.project__thumbnail::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 30px;
  right: 30px;
  height: 2px;
  background-color: #cccccc;
}
@media screen and (max-width: 767px) {
  .project__thumbnail::after {
    left: 30px;
    right: 30px;
  }
}
.project__item.active .project__thumbnail::after {
  display: none;
}
.project__thumbnail--no-details::after {
  display: none;
}
.project__thumbnail-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
.project__summary {
  padding: 20px 10px 10px 10px;
  text-align: left;
  position: relative;
}
@media screen and (max-width: 767px) {
  .project__summary {
    padding: 15px 10px 10px 10px;
  }
}
.project__item-title {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  font-feature-settings: "locl" 1, "kern" 1, "liga" 1;
  color: #000000;
  margin-bottom: 12px;
}
.project__item-title[lang=en], .project__item-title .en, .project__item-title .english {
  font-family: "Inter", sans-serif, sans-serif;
}
.project__item-title[lang=en], .project__item-title .en, .project__item-title .english, .project__item-title .number {
  font-variant-numeric: tabular-nums;
}
.project__item-title[data-mixed=true] {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.project__item-title {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.project__item-title[lang=ja], .project__item-title .jp, .project__item-title .japanese {
  font-family: "Noto Sans JP", sans-serif, sans-serif;
}
.project__item-title[data-mixed=true] {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
@media screen and (max-width: 767px) {
  .project__item-title {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
.project__lead {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
  font-feature-settings: "locl" 1, "kern" 1, "liga" 1;
  color: #000000;
  margin: 0 0 10px 0;
  text-align: left;
  text-align: justify;
  text-justify: inter-ideograph;
  min-height: 1em;
}
.project__lead[lang=en], .project__lead .en, .project__lead .english {
  font-family: "Inter", sans-serif, sans-serif;
}
.project__lead[lang=en], .project__lead .en, .project__lead .english, .project__lead .number {
  font-variant-numeric: tabular-nums;
}
.project__lead[data-mixed=true] {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.project__lead {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.project__lead[lang=ja], .project__lead .jp, .project__lead .japanese {
  font-family: "Noto Sans JP", sans-serif, sans-serif;
}
.project__lead[data-mixed=true] {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
@media screen and (max-width: 767px) {
  .project__lead {
    font-size: 13px;
    margin: 0 0 8px 0;
    min-height: 1.6em;
  }
}
.project__toggle-icon {
  position: absolute;
  bottom: 8px;
  right: 30px;
  font-size: 48px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
  pointer-events: none;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .project__toggle-icon {
    bottom: 6px;
    right: 30px;
    font-size: 40px;
    font-weight: 700;
  }
}
.project__item.active .project__toggle-icon {
  transform: rotate(180deg);
  color: rgba(0, 0, 0, 0.5);
}
.project__details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.project__details.open {
  max-height: 2000px;
  position: relative;
}
.project__details.open::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0px;
  right: 0px;
  height: 2px;
  background-color: #cccccc;
}
@media screen and (max-width: 767px) {
  .project__details.open::after {
    left: 0px;
    right: 0px;
  }
}
.project__details-content {
  padding: 8px 10px 50px 10px;
}
@media screen and (max-width: 767px) {
  .project__details-content {
    padding: 2px 10px 30px 10px;
  }
}
.project__detail-heading {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  color: #000000;
  margin-bottom: 16px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .project__detail-heading {
    font-size: 15px;
    margin-bottom: 14px;
  }
}
.project__detail-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
  color: #000000;
  margin-bottom: 20px;
  text-align: left;
  text-align: justify;
  text-justify: inter-ideograph;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .project__detail-text {
    font-size: 13px;
    margin-bottom: 18px;
  }
}
.project__note-text {
  color: #808080;
  font-size: 0.9em;
}
.project__detail-image {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 0px;
}
@media screen and (max-width: 767px) {
  .project__detail-image {
    margin-bottom: 18px;
  }
}
.project__detail-list {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .project__detail-list {
    margin-bottom: 18px;
  }
}
.project__list-item {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
  color: #666666;
  padding: 12px 0;
  border-bottom: 1px solid #e0e0e0;
  text-align: left;
  position: relative;
  padding-left: 20px;
}
@media screen and (max-width: 767px) {
  .project__list-item {
    font-size: 13px;
    padding: 10px 0 10px 18px;
  }
}
.project__list-item:last-child {
  border-bottom: none;
}
.project__list-item::before {
  content: counter(list-counter);
  counter-increment: list-counter;
  position: absolute;
  left: 0;
  top: 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.8;
  color: #666666;
}
@media screen and (max-width: 767px) {
  .project__list-item::before {
    font-size: 13px;
    top: 10px;
  }
}
.project__detail-list {
  counter-reset: list-counter;
}
.project__profiles {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .project__profiles {
    margin-bottom: 10px;
  }
}
.project__profile {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .project__profile {
    gap: 15px;
    margin-bottom: 28px;
  }
}
.project__profile:last-child {
  margin-bottom: 0;
}
.project__profile-image {
  width: 100px;
  height: 100px;
  border-radius: 0;
  object-fit: contain;
  flex-shrink: 0;
  background-color: #cccccc;
}
@media screen and (max-width: 767px) {
  .project__profile-image {
    width: 100px;
    height: 100px;
  }
}
.project__profile-info {
  flex: 1;
  text-align: left !important;
}
.project__profile-name-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 0;
  line-height: 1;
}
.project__profile-name-row a {
  cursor: pointer;
  pointer-events: auto;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .project__profile-name-row {
    margin-bottom: 0;
    line-height: 1;
  }
}
.project__profile-name {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  color: #000000;
  margin: 0 !important;
  padding: 0 !important;
  padding-bottom: 0.5em !important;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .project__profile-name {
    font-size: 13px;
    line-height: 1;
    gap: 6px;
  }
}
.project__profile-name-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .project__profile-name-jp {
    font-size: 13px;
  }
}
.project__profile-name-en {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .project__profile-name-en {
    font-size: 12px;
  }
}
.project__instagram-icon {
  width: 16px;
  height: 16px;
  opacity: 0.5;
  transition: opacity 0.2s ease;
  margin-top: -2px;
  cursor: pointer;
  pointer-events: auto;
}
@media screen and (max-width: 767px) {
  .project__instagram-icon {
    width: 14px;
    height: 14px;
    margin-top: -1px;
  }
}
.project__instagram-icon:hover {
  opacity: 0.8;
}
.project__profile-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.8;
  color: #000000;
  margin: 0 !important;
  padding: 0 !important;
  margin-top: 2px !important;
}
@media screen and (max-width: 767px) {
  .project__profile-text {
    font-size: 12px;
    line-height: 1.8;
    margin-top: 2px !important;
  }
}
.project__projects {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .project__projects {
    margin-bottom: 18px;
  }
}
.project__project-detail {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .project__project-detail {
    margin-bottom: 30px;
  }
}
.project__project-detail:last-child {
  margin-bottom: 0;
}
.project__project-image {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 0px;
}
@media screen and (max-width: 767px) {
  .project__project-image {
    margin-bottom: 15px;
  }
}
.project__project-content {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
  color: #000000;
  margin: 0;
  text-align: left;
  text-align: justify;
  text-justify: inter-ideograph;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .project__project-content {
    font-size: 13px;
  }
}
.project__instructor {
  margin-bottom: 20px;
  text-align: left !important;
}
@media screen and (max-width: 767px) {
  .project__instructor {
    margin-bottom: 18px;
  }
}
.project__instructor-name-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .project__instructor-name-row {
    margin-bottom: 6px;
  }
}
.project__instructor-name {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .project__instructor-name {
    gap: 6px;
  }
}
.project__instructor-name-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .project__instructor-name-jp {
    font-size: 13px;
  }
}
.project__instructor-name-en {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .project__instructor-name-en {
    font-size: 13px;
  }
}
.project__instructor-instagram {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.project__instructor-instagram:hover {
  opacity: 0.7;
}
.project__instagram-icon {
  width: 20px;
  height: 20px;
  opacity: 0.5;
  transition: opacity 0.2s ease;
}
@media screen and (max-width: 767px) {
  .project__instagram-icon {
    width: 18px;
    height: 18px;
  }
}
.project__instagram-icon:hover {
  opacity: 0.8;
}

.artstore__content {
  text-align: center;
}
.artstore__title {
  text-align: center;
  margin: 16px 0 24px;
}
.artstore__title img {
  width: 213px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .artstore__title img {
    width: 192px;
  }
}
.artstore__title-ja {
  display: block;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: #000000;
  margin-top: 12px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .artstore__title-ja {
    font-size: 12px;
    margin-top: 10px;
  }
}
.artstore__main {
  margin-top: 20px;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .artstore__main {
    margin-top: 18px;
    padding: 0 20px;
  }
}
.artstore__main-image {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 0px;
}
@media screen and (max-width: 767px) {
  .artstore__main-image {
    margin-bottom: 15px;
  }
}
.artstore__main-title {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  font-feature-settings: "locl" 1, "kern" 1, "liga" 1;
  color: #000000;
  margin-bottom: 16px;
  text-align: left;
}
.artstore__main-title[lang=en], .artstore__main-title .en, .artstore__main-title .english {
  font-family: "Inter", sans-serif, sans-serif;
}
.artstore__main-title[lang=en], .artstore__main-title .en, .artstore__main-title .english, .artstore__main-title .number {
  font-variant-numeric: tabular-nums;
}
.artstore__main-title[data-mixed=true] {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.artstore__main-title {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.artstore__main-title[lang=ja], .artstore__main-title .jp, .artstore__main-title .japanese {
  font-family: "Noto Sans JP", sans-serif, sans-serif;
}
.artstore__main-title[data-mixed=true] {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
@media screen and (max-width: 767px) {
  .artstore__main-title {
    font-size: 16px;
    margin-bottom: 14px;
  }
}
.artstore__main-content {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
  font-feature-settings: "locl" 1, "kern" 1, "liga" 1;
  color: #000000;
  margin-bottom: 40px;
  text-align: left;
  text-align: justify;
  text-justify: inter-ideograph;
  line-height: 1.8;
}
.artstore__main-content[lang=en], .artstore__main-content .en, .artstore__main-content .english {
  font-family: "Inter", sans-serif, sans-serif;
}
.artstore__main-content[lang=en], .artstore__main-content .en, .artstore__main-content .english, .artstore__main-content .number {
  font-variant-numeric: tabular-nums;
}
.artstore__main-content[data-mixed=true] {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.artstore__main-content {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.artstore__main-content[lang=ja], .artstore__main-content .jp, .artstore__main-content .japanese {
  font-family: "Noto Sans JP", sans-serif, sans-serif;
}
.artstore__main-content[data-mixed=true] {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
@media screen and (max-width: 767px) {
  .artstore__main-content {
    font-size: 13px;
    margin-bottom: 30px;
  }
}
.artstore__carousel {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 20px 0;
  -ms-overflow-style: none;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  --scroll-offset-pc: -20px;
  --scroll-offset-mobile: -55px;
}
.artstore__carousel::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 767px) {
  .artstore__carousel {
    padding: 15px 0;
  }
}
.artstore__carousel-container {
  display: flex;
  --item-width-pc: 220px;
  --item-width-mobile: 170px;
  --gap-pc: 20px;
  --gap-mobile: 15px;
  --padding-pc: 50px;
  --padding-mobile: 20px;
}
@media screen and (min-width: 768px) {
  .artstore__carousel-container {
    gap: var(--gap-pc);
    padding: 0 var(--padding-pc);
  }
}
@media screen and (max-width: 767px) {
  .artstore__carousel-container {
    gap: var(--gap-mobile);
    padding: 0 var(--padding-mobile);
  }
}
.artstore__carousel-item {
  text-align: center;
  scroll-snap-align: center;
}
@media screen and (min-width: 768px) {
  .artstore__carousel-item {
    flex: 0 0 var(--item-width-pc);
  }
}
@media screen and (max-width: 767px) {
  .artstore__carousel-item {
    flex: 0 0 var(--item-width-mobile);
  }
}
.artstore__carousel-image {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 0px;
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .artstore__carousel-image {
    margin-bottom: 10px;
  }
}
.artstore__carousel-title {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  font-feature-settings: "locl" 1, "kern" 1, "liga" 1;
  color: #000000;
  margin-bottom: 8px;
}
.artstore__carousel-title[lang=en], .artstore__carousel-title .en, .artstore__carousel-title .english {
  font-family: "Inter", sans-serif, sans-serif;
}
.artstore__carousel-title[lang=en], .artstore__carousel-title .en, .artstore__carousel-title .english, .artstore__carousel-title .number {
  font-variant-numeric: tabular-nums;
}
.artstore__carousel-title[data-mixed=true] {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.artstore__carousel-title {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.artstore__carousel-title[lang=ja], .artstore__carousel-title .jp, .artstore__carousel-title .japanese {
  font-family: "Noto Sans JP", sans-serif, sans-serif;
}
.artstore__carousel-title[data-mixed=true] {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
@media screen and (max-width: 767px) {
  .artstore__carousel-title {
    font-size: 13px;
    margin-bottom: 6px;
  }
}
.artstore__carousel-instagram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
@media screen and (max-width: 767px) {
  .artstore__carousel-instagram {
    gap: 5px;
  }
}
.artstore__carousel-instagram-icon {
  width: 14px;
  height: 14px;
  opacity: 0.5;
}
@media screen and (max-width: 767px) {
  .artstore__carousel-instagram-icon {
    width: 12px;
    height: 12px;
  }
}
.artstore__carousel-instagram-account {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.4;
  font-feature-settings: "locl" 1, "kern" 1, "liga" 1;
  color: #000000;
  opacity: 0.5;
}
.artstore__carousel-instagram-account[lang=en], .artstore__carousel-instagram-account .en, .artstore__carousel-instagram-account .english {
  font-family: "Inter", sans-serif, sans-serif;
}
.artstore__carousel-instagram-account[lang=en], .artstore__carousel-instagram-account .en, .artstore__carousel-instagram-account .english, .artstore__carousel-instagram-account .number {
  font-variant-numeric: tabular-nums;
}
.artstore__carousel-instagram-account[data-mixed=true] {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.artstore__carousel-instagram-account {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
.artstore__carousel-instagram-account[lang=ja], .artstore__carousel-instagram-account .jp, .artstore__carousel-instagram-account .japanese {
  font-family: "Noto Sans JP", sans-serif, sans-serif;
}
.artstore__carousel-instagram-account[data-mixed=true] {
  font-family: "Inter", sans-serif, "Noto Sans JP", sans-serif, sans-serif;
}
@media screen and (max-width: 767px) {
  .artstore__carousel-instagram-account {
    font-size: 11px;
  }
}
.artstore__carousel-container {
  cursor: default;
}

/*# sourceMappingURL=style.css.map */
