@charset "UTF-8";

.hero {
  position: relative;
  height: 100svh;
  min-height: 680px;
  overflow: hidden;
  background: #2b241d;
}

.hero__slider,
.hero__slide {
  position: absolute;
  inset: 0;
}

.hero__slide {
  z-index: 0;
  visibility: hidden;
  overflow: hidden;
  opacity: 0;
  transition:
    opacity 1.7s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 1.7s;
}

.hero__slide.is-active {
  z-index: 1;
  visibility: visible;
  opacity: 1;
}

.hero__image-wrap {
  width: 100%;
  height: 100%;
  transform: scale(1.12);
  filter: brightness(0.88) saturate(0.92);
}

.hero__slide.is-active .hero__image-wrap {
  animation: heroKenBurns 8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes heroKenBurns {
  0% {
    transform: scale(1.12) translate3d(1.2%, 0, 0);
    filter: brightness(0.78) saturate(0.8);
  }
  16% {
    filter: brightness(0.9) saturate(0.95);
  }
  100% {
    transform: scale(1.02) translate3d(-0.8%, 0, 0);
    filter: brightness(0.9) saturate(0.95);
  }
}

.hero__shade {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.32) 0%, rgba(0,0,0,0.08) 46%, rgba(0,0,0,0.05) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.05) 55%, rgba(0,0,0,0.23) 100%);
}

.hero__copy {
  position: absolute;
  z-index: 5;
  bottom: 33px;
  left: 31px;
  color: #fff;
  font-size: clamp(2.9rem, 3.4vw, 4.8rem);
  font-weight: 300;
  line-height: 1.64;
  letter-spacing: 0.1em;
  text-shadow: 0 3px 20px rgba(0,0,0,0.35);
}

.hero__copy-line {
  display: block;
  white-space: nowrap;
}

.hero__copy-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(18px);
  filter: blur(5px);
}

.hero__copy-char.is-visible {
  animation: copyReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes copyReveal {
  0% {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(5px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.hero-pagination {
  position: absolute;
  z-index: 6;
  top: 52%;
  right: 102px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 18px;
  color: #fff;
  transform: translateY(-50%);
}

.hero-pagination__number {
  font-size: 3.2rem;
  line-height: 1;
}

.hero-pagination__dots {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}

.hero-pagination__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  background: rgba(255,255,255,0.58);
  border-radius: 50%;
  transition: transform 0.35s ease, background-color 0.35s ease;
}

.hero-pagination__dot.is-active {
  background: #fff;
  transform: scale(1.35);
}

.hero-news {
  position: absolute;
  z-index: 7;
  right: 34px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(420px, 42vw);
  min-height: 96px;
  padding: 20px 30px;
  color: rgba(70, 63, 53, 0.95);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 14px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-family: var(--font-maru);
  box-shadow: 0 14px 40px rgba(0,0,0,0.1);
  font-weight: 500;
}

.hero-news__label {
  font-size: 1.55rem;
  letter-spacing: 0.05em;
}

.hero-news__meta {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 11px;
  font-size: 1.2rem;
  color: rgba(70, 63, 53, 0.75);
}

.hero-news__separator {
  opacity: 0.55;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 52px;
}

.event-card__image {
  overflow: hidden;
  aspect-ratio: 1 / 0.95;
}

.event-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.event-card:hover .event-card__image img {
  transform: scale(1.04);
}

.event-card__body {
  position: relative;
  min-height: 190px;
  padding: 18px 10px 20px 0;
}

.event-card__label {
  display: inline-block;
  margin-bottom: 10px;
  padding: 2px 8px;
  border: 1px solid #aaa;
  font-family: var(--font-maru);
  font-size: 1.5rem;
  font-weight: 400;
}

.event-card__title {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.7;
}

.event-card__information {
  margin-top: 12px;
  font-family: var(--font-maru);
  font-size: 1.5rem;
  font-weight: 400;
}

.event-card__information div {
  display: flex;
  gap: 10px;
}

.event-card__information dt {
  flex: 0 0 48px;
}

.event-card {
  opacity: 0;
  transform: translateY(42px);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.event-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.event-card__arrow {
  position: absolute;
  right: 0;
  bottom: 22px;
  display: block;
  width: 58px;
  transition: transform 0.3s ease;
}

.event-card__arrow img {
  width: 100%;
  height: auto;
}

@media (hover: hover) and (pointer: fine) {
  .event-card:hover .event-card__arrow {
    transform: translateX(8px);
  }
}






.gallery-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: #fff;
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: 1.08fr 1.25fr 2.05fr 1.22fr 1.18fr;
  grid-template-rows: 220px 220px 440px;
  gap: 0;
  width: 100%;
  padding: 8px;
}

.gallery-mosaic__item {
  margin: 5px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(48px) scale(0.98);
  transition:
    opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-mosaic__item.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.gallery-mosaic__media {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.gallery-mosaic__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.045);
  animation: galleryFloat 11s ease-in-out infinite alternate;
  will-change: transform;
}

.gallery-mosaic__item:nth-child(2n) .gallery-mosaic__media img {
  animation-duration: 13s;
  animation-direction: alternate-reverse;
}

.gallery-mosaic__item:nth-child(3n) .gallery-mosaic__media img {
  animation-duration: 15s;
}

.gallery-mosaic__item--01 {
  grid-column: 1;
  grid-row: 1;
}

.gallery-mosaic__item--02 {
  grid-column: 2 / 5;
  grid-row: 1 / 3;
}

.gallery-mosaic__item--03 {
  grid-column: 5;
  grid-row: 1;
}

.gallery-mosaic__item--04 {
  grid-column: 1;
  grid-row: 2;
}

.gallery-mosaic__item--05 {
  grid-column: 5;
  grid-row: 2;
}

.gallery-mosaic__item--06 {
  grid-column: 1;
  grid-row: 3;
}

.gallery-mosaic__item--07 {
  grid-column: 2;
  grid-row: 3;
}

.gallery-mosaic__item--08 {
  grid-column: 3 / 6;
  grid-row: 3;
}

@keyframes galleryFloat {
  0% {
    transform: scale(1.045) translate3d(-0.4%, -0.3%, 0);
  }
  50% {
    transform: scale(1.07) translate3d(0.5%, 0.25%, 0);
  }
  100% {
    transform: scale(1.055) translate3d(-0.15%, 0.45%, 0);
  }
}

@media (hover: hover) and (pointer: fine) {
  .gallery-mosaic__item:hover .gallery-mosaic__media img {
    animation-play-state: paused;
    transform: scale(1.08);
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  }
}



.instagram-section {
  padding-top: 40px;
  padding-bottom: 120px;
}

.instagram-feed {
  min-height: 320px;
}

@media (max-width: 767px) {
  .instagram-section {
    padding-top: 20px;
    padding-bottom: 80px;
  }

  .instagram-feed {
    min-height: 200px;
  }
}

@media (max-width: 1000px) {
  .lineup-card {
    aspect-ratio: 1 / 1.62;
  }

  .gallery-mosaic {
    grid-template-columns: 1fr 1.45fr 1fr;
    grid-template-rows: 210px 210px 210px 210px;
  }

  .gallery-mosaic__item--01 {
    grid-column: 1;
    grid-row: 1;
  }

  .gallery-mosaic__item--02 {
    grid-column: 2 / 4;
    grid-row: 1 / 3;
  }

  .gallery-mosaic__item--03 {
    grid-column: 1;
    grid-row: 2;
  }

  .gallery-mosaic__item--04 {
    grid-column: 1 / 3;
    grid-row: 3;
  }

  .gallery-mosaic__item--05 {
    grid-column: 3;
    grid-row: 3;
  }

  .gallery-mosaic__item--06 {
    grid-column: 1;
    grid-row: 4;
  }

  .gallery-mosaic__item--07 {
    grid-column: 2;
    grid-row: 4;
  }

  .gallery-mosaic__item--08 {
    grid-column: 3;
    grid-row: 4;
  }
}

@media (max-width: 767px) {
  .gallery-section {
    padding-bottom: 72px;
  }

  .gallery-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 190px 260px 170px 210px 170px;
    gap: 4px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    }

  .gallery-mosaic__item--01 {
    grid-column: 1;
    grid-row: 1;
  }

  .gallery-mosaic__item--02 {
    grid-column: 1 / 3;
    grid-row: 2;
  }

  .gallery-mosaic__item--03 {
    grid-column: 2;
    grid-row: 1;
  }

  .gallery-mosaic__item--04 {
    grid-column: 1;
    grid-row: 3;
  }

  .gallery-mosaic__item--05 {
    grid-column: 2;
    grid-row: 3;
  }

  .gallery-mosaic__item--06 {
    grid-column: 1;
    grid-row: 4 / 6;
  }

  .gallery-mosaic__item--07 {
    grid-column: 2;
    grid-row: 4;
  }

  .gallery-mosaic__item--08 {
    grid-column: 2;
    grid-row: 5;
  }

  .gallery-mosaic__media img {
    animation-duration: 13s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-mosaic__item {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .gallery-mosaic__media img {
    animation: none;
    transform: scale(1.02);
  }
}

.concept-section {
  padding-bottom: 145px;
}

.concept-block {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
}

.concept-block__image {
  width: 70%;
}

.concept-block__image img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
}

.concept-block__content {
  position: absolute;
  top: 50%;
  right: 0;
  width: 50%;
  padding: 72px 54px 60px;
  background: rgba(241, 242, 243, 0.97);
  transform: translateY(-50%);
}

.concept-block__text {
  font-size: 1.5rem;
  line-height: 2.15;
  letter-spacing: 0.08em;
}

.concept-block__arrow {
  display: block;
  width: 58px;
  margin: 22px 0 0 auto;
  transition: opacity 0.3s ease;
}

.concept-block__arrow img {
  width: 100%;
  height: auto;
}

@media (hover: hover) and (pointer: fine) {
  .concept-block__arrow:hover {
    opacity: 0.6;
  }
}

@media (max-width: 900px) {
  .concept-block__content {
    width: 54%;
    padding: 52px 36px 44px;
  }

  .concept-block__text {
    font-size: 1.35rem;
  }
}

@media (max-width: 767px) {
  .concept-section {
    padding-bottom: 72px;
  }

  .concept-block__image {
    width: 100%;
  }

  .concept-block__image img {
    aspect-ratio: 1.2 / 1;
  }

  .concept-block__content {
    position: relative;
    top: auto;
    right: auto;
    width: calc(100% - 20px);
    margin: -38px 0 0 auto;
    padding: 32px 24px 28px;
    transform: none;
  }

  .concept-block__text {
    font-size: 1.3rem;
    line-height: 2;
  }

  .concept-block__arrow {
    width: 46px;
    margin-top: 18px;
  }
}

.lineup-section {
  background: #fafafa;
}

.lineup-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.lineup-card {
  position: relative;
  aspect-ratio: 1 / 1.7;
  overflow: hidden;
}

.lineup-card__link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.lineup-card__image {
  position: absolute;
  inset: 0;
}

.lineup-card__image,
.lineup-card__image img {
  width: 100%;
  height: 100%;
}

.lineup-card__image img {
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.lineup-card__overlay {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: rgba(97, 97, 97, 0.45);
  transition: background-color 0.4s ease;
}

.lineup-card__content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  flex-direction: column;  height: 100%;
  padding: 38px 32px 34px;
  color: #fff;
}

.lineup-card__heading {
  align-self: flex-end;
  width: 80%;
  text-align: right;
}

.lineup-card__name {
  font-size: 3.2rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.08em;
}

.lineup-card__divider {
  display: block;
  width: 54px;
  height: 1px;
  margin: 16px 0 14px auto;
  background: rgba(255, 255, 255, 0.9);
}

.lineup-card__copy {
  font-family: var(--font-maru);
  font-size: 1.5rem;
  line-height: 1.9;
  letter-spacing: 0.08em;
}

.lineup-card__price-wrap {
  align-self: flex-end;
  text-align: right;
}

.lineup-card__price {
  font-size: 2rem;
  line-height: 1.4;
  letter-spacing: 0.06em;
}

.lineup-card__price-unit {
  margin-left: 0.08em;
  font-size: 0.62em;
}

.lineup-card__arrow {
  display: block;
  width: 76px;
  margin: 10px 0 0 auto;
  transition: transform 0.3s ease;
}

.lineup-card__arrow img {
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
}

@media (hover: hover) and (pointer: fine) {
  .lineup-card:hover .lineup-card__image img {
    transform: scale(1.05);
  }

  .lineup-card:hover .lineup-card__overlay {
    background: rgba(97, 97, 97, 0.35);
  }

  .lineup-card:hover .lineup-card__arrow {
    transform: translateX(8px);
  }
}

@media (max-width: 1000px) {
  .lineup-card {
    aspect-ratio: 1 / 1.62;
  }


  .lineup-card__content {
    padding: 30px 24px 28px;
  }

  .lineup-card__name {
    font-size: 3.5rem;
  }

  .lineup-card__copy {
    font-size: 1.3rem;
  }

  .lineup-card__price {
    font-size: 1.7rem;
  }
}

@media (max-width: 767px) {
  .lineup-grid {
    grid-template-columns: 1fr;
    gap: 0;
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }

  .lineup-card {
    aspect-ratio: 1 / 1.45;
  }


  .lineup-card__content {
    padding: 28px 22px 24px;
  }

  .lineup-card__heading {
    width: 84%;
  }

  .lineup-card__name {
    font-size: 3.6rem;
  }

  .lineup-card__copy {
    font-size: 1.35rem;
  }

  .lineup-card__price {
    font-size: 1.8rem;
  }

  .lineup-card__arrow {
    width: 62px;
  }
}

.works-section {
  padding-top: 120px;
  padding-bottom: 140px;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 80px 42px;
  width: calc(100% - 180px);
  margin-left: 180px;
}

.works-card {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.works-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.works-card__link {
  display: block;
}

.works-card__image {
  overflow: hidden;
  aspect-ratio: 1.35 / 1;
  background: #f7f7f7;
  border: 1px solid #d8d5d1;
}

.works-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.works-card__body {
  position: relative;
  min-height: 130px;
  padding: 22px 90px 24px 0;
}

.works-card__title {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.06em;
}

.works-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  margin-top: 10px;
  font-family: var(--font-maru);
  font-size: 1.5rem;
  line-height: 1.8;
  color: #777;
  font-weight: 500;
}

.works-card__meta div {
  display: flex;
  gap: 5px;
}

.works-card__price {
  margin-top: 3px;
  font-family: var(--font-maru);
  font-size: 1.5rem;
  color: #777;
  font-weight: 500;
}

.works-card__arrow {
  position: absolute;
  right: 0;
  bottom: 24px;
  display: block;
  width: 70px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.works-card__arrow img {
  width: 100%;
  height: auto;
}

@media (hover: hover) and (pointer: fine) {
  .works-card:hover .works-card__image img {
    transform: scale(1.04);
  }

  .works-card:hover .works-card__arrow {
    transform: translateX(8px);
    opacity: 0.7;
  }
}

@media (max-width: 900px) {
  .works-grid {
    width: calc(100% - 90px);
    margin-left: 90px;
    gap: 60px 28px;
  }

  .works-card__body {
    padding-right: 74px;
  }

  .works-card__title {
    font-size: 1.6rem;
  }

  .works-card__arrow {
    width: 58px;
  }
}

@media (max-width: 767px) {
  .works-section {
    padding-top: 72px;
    padding-bottom: 90px;
  }

  .works-grid {
    grid-template-columns: 1fr;
    width: 100%;
    margin-left: 0;
    gap: 48px;
  }

  .works-card__image {
    aspect-ratio: 1.32 / 1;
  }

  .works-card__body {
    min-height: 0;
    padding: 16px 66px 18px 0;
  }

  .works-card__title {
    font-size: 1.6rem;
  }

  .works-card__meta,
  .works-card__price {
    font-size: 1.1rem;
  }

  .works-card__arrow {
    width: 48px;
    bottom: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .works-card {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .works-card__image img {
    transition: none;
  }
}

.news-section {
  padding-bottom: 150px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
}

.news-card__image {
  overflow: hidden;
  aspect-ratio: 1.45 / 1;
}

.news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card__date {
  display: block;
  margin-top: 14px;
  color: var(--color-gray);
  font-family: var(--font-maru);
  font-size: 1rem;
}

.news-card__title {
  margin-top: 6px;
  font-size: 1.3rem;
  font-weight: 300;
}

@media (max-width: 1000px) {
  .lineup-card {
    aspect-ratio: 1 / 1.62;
  }

  .event-grid { gap: 35px; }

  

.gallery-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: #fff;
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: 1.08fr 1.25fr 2.05fr 1.22fr 1.18fr;
  grid-template-rows: 220px 220px 440px;
  gap: 6px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 0;
  background: #fff;
}

.gallery-mosaic__item {
  margin: 5px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(48px) scale(0.98);
  transition:
    opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-mosaic__item.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.gallery-mosaic__media {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.gallery-mosaic__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.045);
  animation: galleryFloat 11s ease-in-out infinite alternate;
  will-change: transform;
}

.gallery-mosaic__item:nth-child(2n) .gallery-mosaic__media img {
  animation-duration: 13s;
  animation-direction: alternate-reverse;
}

.gallery-mosaic__item:nth-child(3n) .gallery-mosaic__media img {
  animation-duration: 15s;
}

.gallery-mosaic__item--01 {
  grid-column: 1;
  grid-row: 1;
}

.gallery-mosaic__item--02 {
  grid-column: 2 / 5;
  grid-row: 1 / 3;
}

.gallery-mosaic__item--03 {
  grid-column: 5;
  grid-row: 1;
}

.gallery-mosaic__item--04 {
  grid-column: 1;
  grid-row: 2;
}

.gallery-mosaic__item--05 {
  grid-column: 5;
  grid-row: 2;
}

.gallery-mosaic__item--06 {
  grid-column: 1;
  grid-row: 3;
}

.gallery-mosaic__item--07 {
  grid-column: 2;
  grid-row: 3;
}

.gallery-mosaic__item--08 {
  grid-column: 3 / 6;
  grid-row: 3;
}

@keyframes galleryFloat {
  0% {
    transform: scale(1.045) translate3d(-0.4%, -0.3%, 0);
  }
  50% {
    transform: scale(1.07) translate3d(0.5%, 0.25%, 0);
  }
  100% {
    transform: scale(1.055) translate3d(-0.15%, 0.45%, 0);
  }
}

@media (hover: hover) and (pointer: fine) {
  .gallery-mosaic__item:hover .gallery-mosaic__media img {
    animation-play-state: paused;
    transform: scale(1.08);
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  }
}

@media (max-width: 1000px) {
  .lineup-card {
    aspect-ratio: 1 / 1.62;
  }

  .gallery-mosaic {
    grid-template-columns: 1fr 1.45fr 1fr;
    grid-template-rows: 210px 210px 210px 210px;
  }

  .gallery-mosaic__item--01 {
    grid-column: 1;
    grid-row: 1;
  }

  .gallery-mosaic__item--02 {
    grid-column: 2 / 4;
    grid-row: 1 / 3;
  }

  .gallery-mosaic__item--03 {
    grid-column: 1;
    grid-row: 2;
  }

  .gallery-mosaic__item--04 {
    grid-column: 1 / 3;
    grid-row: 3;
  }

  .gallery-mosaic__item--05 {
    grid-column: 3;
    grid-row: 3;
  }

  .gallery-mosaic__item--06 {
    grid-column: 1;
    grid-row: 4;
  }

  .gallery-mosaic__item--07 {
    grid-column: 2;
    grid-row: 4;
  }

  .gallery-mosaic__item--08 {
    grid-column: 3;
    grid-row: 4;
  }
}

@media (max-width: 767px) {
  .gallery-section {
    padding-bottom: 72px;
  }

  .gallery-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 190px 260px 170px 210px 170px;
    gap: 4px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    }

  .gallery-mosaic__item--01 {
    grid-column: 1;
    grid-row: 1;
  }

  .gallery-mosaic__item--02 {
    grid-column: 1 / 3;
    grid-row: 2;
  }

  .gallery-mosaic__item--03 {
    grid-column: 2;
    grid-row: 1;
  }

  .gallery-mosaic__item--04 {
    grid-column: 1;
    grid-row: 3;
  }

  .gallery-mosaic__item--05 {
    grid-column: 2;
    grid-row: 3;
  }

  .gallery-mosaic__item--06 {
    grid-column: 1;
    grid-row: 4 / 6;
  }

  .gallery-mosaic__item--07 {
    grid-column: 2;
    grid-row: 4;
  }

  .gallery-mosaic__item--08 {
    grid-column: 2;
    grid-row: 5;
  }

  .gallery-mosaic__media img {
    animation-duration: 13s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-mosaic__item {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .gallery-mosaic__media img {
    animation: none;
    transform: scale(1.02);
  }
}

.concept-section {
    padding-bottom: 72px;
  }

  .concept-block__image {
    width: 100%;
  }

  .concept-block__content {
    position: static;
    width: calc(100% - 20px);
    margin: -35px 0 0 auto;
    padding: 28px 24px;
  }

  .lineup-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .lineup-card {
    min-height: 430px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__slide,
  .hero__image-wrap,
  .hero__copy-char {
    animation: none !important;
    transition: none !important;
  }

  .hero__copy-char {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

/* =========================
   Event responsive fix
========================= */

@media (max-width: 900px) {
  .event-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px 28px;
  }

  .event-card__image {
    aspect-ratio: 1.15 / 1;
  }

  .event-card__body {
    min-height: 180px;
    padding: 16px 68px 18px 0;
  }

  .event-card__label,
  .event-card__information {
    font-size: 1.35rem;
  }

  .event-card__title {
    font-size: 1.8rem;
  }

  .event-card__arrow {
    width: 48px;
    bottom: 18px;
  }
}

@media (max-width: 767px) {
  .event-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .event-section .section__inner {
    width: calc(100% - 40px);
  }

  .event-section .section-heading {
    margin-bottom: 34px;
  }

  .event-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .event-card {
    width: 100%;
  }

  .event-card__link,
  .event-card > a {
    display: block;
    width: 100%;
  }

  .event-card__image {
    width: 100%;
    aspect-ratio: 1.25 / 1;
  }

  .event-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .event-card__body {
    min-height: 0;
    padding: 16px 58px 16px 0;
  }

  .event-card__label {
    margin-bottom: 8px;
    padding: 2px 7px;
    font-size: 1.2rem;
  }

  .event-card__title {
    font-size: 1.7rem;
    line-height: 1.65;
  }

  .event-card__information {
    margin-top: 10px;
    font-size: 1.2rem;
    line-height: 1.8;
  }

  .event-card__information div {
    align-items: flex-start;
    gap: 8px;
  }

  .event-card__information dt {
    flex: 0 0 42px;
  }

  .event-card__information dd {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .event-card__arrow {
    right: 0;
    bottom: 18px;
    width: 42px;
  }
}

/* Typography adjustments */
.hero-news__label {
  font-size: 1rem;
}

.hero-news__meta {
  font-size: 1rem;
}

.event-card__label {
  font-size: 1rem;
}

.event-card__title {
  font-size: 1.3rem;
}

.event-card__information {
  font-size: 1rem;
}

.concept-block__text {
  font-size: 1rem;
}

.lineup-card__copy {
  font-size: 1rem;
}

.works-card__title {
  font-size: 1.3rem;
}

.works-card__meta {
  font-size: 1rem;
}

.works-card__price {
  font-size: 1rem;
}


/* ========================================
   TOP HERO：スマホ崩れ修正
   文字はみ出し・要素重なり防止
======================================== */
@media (max-width: 767px) {
  .hero {
    height: 100svh;
    min-height: 620px;
  }

  .hero__image-wrap {
    transform: scale(1.04);
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(0,0,0,0.34) 0%, rgba(0,0,0,0.12) 56%, rgba(0,0,0,0.08) 100%),
      linear-gradient(180deg, rgba(0,0,0,0.02) 42%, rgba(0,0,0,0.42) 100%);
  }

  .hero__copy {
    left: 24px;
    right: 94px;
    bottom: 142px;
    max-width: calc(100vw - 118px);
    font-size: clamp(2.1rem, 8.6vw, 3.2rem);
    line-height: 1.58;
    letter-spacing: 0.07em;
  }

  .hero__copy-line {
    white-space: normal;
  }

  .hero-pagination {
    top: auto;
    right: 28px;
    bottom: 172px;
    gap: 10px;
    transform: none;
  }

  .hero-pagination__number {
    font-size: 2.35rem;
  }

  .hero-pagination__dots {
    gap: 8px;
  }

  .hero-pagination__dot {
    width: 7px;
    height: 7px;
  }

  .hero-news {
    left: 20px;
    right: 20px;
    bottom: 20px;
    width: auto;
    min-height: 0;
    padding: 13px 16px 14px;
    border-radius: 12px;
  }

  .hero-news__label {
    display: -webkit-box;
    overflow: hidden;
    font-size: 1rem;
    line-height: 1.55;
    letter-spacing: 0.04em;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .hero-news__meta {
    margin-top: 6px;
    font-size: 0.86rem;
    line-height: 1.5;
  }
}

@media (max-width: 390px) {
  .hero__copy {
    left: 22px;
    right: 88px;
    bottom: 136px;
    max-width: calc(100vw - 110px);
    font-size: clamp(1.95rem, 8.2vw, 2.75rem);
    line-height: 1.55;
  }

  .hero-pagination {
    right: 24px;
    bottom: 164px;
  }

  .hero-pagination__number {
    font-size: 2.05rem;
  }

  .hero-news {
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 12px 14px;
  }
}

/* ========================================
   TOP Concept：詳細はこちらボタン
   LINEUPの .lineup-more と同じ形状
   ※concept-more 以外は変更しない
======================================== */

.concept-more {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  min-height: 46px;
  margin-top: 28px;
  padding: 20px 136px 20px 34px;
  border: 1px solid #d8d2cc;
  border-radius: 999px;
  background: #fff;
  color: #8a837b;
  font-size: 0.86rem;
  line-height: 1;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition:
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.concept-more::before {
  display: none;
}

.concept-more::after {
  content: "";
  position: absolute;
  right: 26px;
  top: 50%;
  width: 100px;
  height: 24px;
  border: none;
  border-radius: 0;
  background: url("../images/line1.svg") no-repeat center / contain;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

.concept-more:hover {
  color: #9a741d;
  border-color: #b58a24;
}

.concept-more:hover::after {
  transform: translate(10px, -50%);
}

@media (max-width: 767px) {
  .concept-more {
    min-width: 240px;
    min-height: 42px;
    margin-top: 22px;
    padding: 12px 116px 12px 28px;
    font-size: 0.8rem;
  }

  .concept-more::after {
    right: 22px;
    width: 88px;
    height: 13px;
  }
}

