.exhibition {
  background-color: var(--color-white);
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  gap: 56px;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  width: 100%;
}



.exhibition__container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  justify-content: flex-start;
  max-width: var(--container-max-width);
  width: 100%;
}

.exhibition__image {
  max-width: 800px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}


.exhibition__body {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

.exhibition__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: flex-start;
  line-height: 0;
  text-align: center;
  color: var(--color-black);
}

.exhibition__period {
  font-family: var(--font-family-accent);
  font-size: var(--font-size-8);
  font-weight: 500;
  line-height: 1.1;
  text-wrap: nowrap;
  margin: 0;
}

.exhibition__name {
  font-family: var(--font-family-main);
  font-size: var(--font-size-4);
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 3.2px;
  margin: 0;
}

.exhibition__divider {
  background-color: var(--color-main);
  border-radius: 100vw;
  width: 80px;
  height: 2px;
  position: relative;
  flex-shrink: 0;
}

.exhibition__divider::before {
  content: '';
  position: absolute;
  background-color: var(--color-main);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.exhibition__description {
  font-family: var(--font-family-main);
  font-size: var(--font-size-8);
  font-weight: 400;
  line-height: 1.8;
  color: var(--color-text);
  margin: 0;
}

.exhibition__download {
  font-family: var(--font-family-main);
  font-size: var(--font-size-9);
  font-weight: 300;
  line-height: 1.8;
  color: var(--color-black);
  text-align: center;
  min-width: 100%;
  width: min-content;
}

.exhibition__download-link {
  color: inherit;
  text-decoration: underline;
  text-underline-position: from-font;
  text-decoration-style: solid;
  transition: opacity 0.3s ease;
}

.exhibition__download-link:hover {
  opacity: 0.7;
}

/* 企画展がない場合のスタイル */
.exhibition__container:has(.exhibition__body:only-child) {
  text-align: center;
  padding: 40px 0;
}


@media screen and (max-width: 960px) {
  .exhibition {
    padding: 40px 0;
    gap: 24px;
  }
  .exhibition__period {
    font-size: var(--font-size-10)
  }
  .exhibition__name {
    font-size: var(--font-size-7);
  }
}
