/* Collection detail page: structured exhibition history (museum_exhibitions). Kept independent of style.css. */
.exhibition-history {
    text-align: left;
    word-break: normal;
    overflow-wrap: break-word;
}
.exhibition-history__section {
    box-sizing: border-box;
}
.exhibition-history__heading {
    margin: 0 0 14px;
    word-break: normal;
    padding: 0 0 8px;
    border-bottom: 1px solid #deddd9;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: .18em;
    color: #6b6862;
}
.exhibition-history__list {
    margin: 0;
    padding: 0;
    list-style: none;
}
.exhibition-history__item {
    margin: 0 0 16px;
}
.exhibition-history__item:last-child {
    margin-bottom: 0;
}
.exhibition-history__item a {
    display: block;
    word-break: normal;
    overflow-wrap: break-word;
    color: #242424;
    text-decoration: none;
}
.exhibition-history__item a:hover .exhibition-history__title {
    text-decoration: underline;
    text-underline-offset: 4px;
}
.exhibition-history__title {
    display: block;
    word-break: normal;
    overflow-wrap: break-word;
    font-size: 14px;
    line-height: 1.7;
    color: #242424;
}
.exhibition-history__meta {
    display: block;
    word-break: normal;
    overflow-wrap: break-word;
    margin-top: 3px;
    font-size: 13px;
    line-height: 1.7;
    color: #57544f;
}
.exhibition-history__period {
    letter-spacing: .04em;
}
.exhibition-history__tag {
    display: inline-block;
    margin-left: 8px;
    padding: 0 8px;
    border: 1px solid #cfcdc8;
    font-size: 11px;
    line-height: 1.9;
    letter-spacing: .08em;
    color: #57544f;
    white-space: nowrap;
}
.exhibition-history__cta {
    display: inline-block;
    word-break: normal;
    overflow-wrap: break-word;
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.6;
    letter-spacing: .08em;
    color: #242424;
    border-bottom: 1px solid #cfcdc8;
}
.exhibition-history__item a:hover .exhibition-history__cta {
    border-bottom-color: #242424;
}
.exhibition-history__free {
    margin: 0;
    word-break: normal;
    overflow-wrap: break-word;
    font-size: 13px;
    line-height: 1.9;
    color: #242424;
}
.exhibition-history__free a {
    color: #242424;
}
.exhibition-history a:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 4px;
}
@media screen and (max-width: 767px) {
    .exhibition-history__title {
        font-size: 14px;
    }
    .exhibition-history__meta {
        font-size: 12px;
    }
}

/* 作家ページのモーダル内は背景が暗く文字が白のため、同じブロックを白基調に切り替える。
   作品ページ(.modal__content--item だが .js-modal の中ではない)には影響しない。 */
.js-modal .exhibition-history__title,
.js-modal .exhibition-history__item a,
.js-modal .exhibition-history__cta,
.js-modal .exhibition-history__free,
.js-modal .exhibition-history__free a {
    color: #ffffff;
}
.js-modal .exhibition-history__heading,
.js-modal .exhibition-history__meta,
.js-modal .exhibition-history__tag {
    color: rgba(255, 255, 255, .72);
}
.js-modal .exhibition-history__heading {
    border-bottom-color: rgba(255, 255, 255, .3);
}
.js-modal .exhibition-history__tag {
    border-color: rgba(255, 255, 255, .45);
}
.js-modal .exhibition-history__cta {
    border-bottom-color: rgba(255, 255, 255, .45);
}
.js-modal .exhibition-history__item a:hover .exhibition-history__cta {
    border-bottom-color: #ffffff;
}
