@charset "UTF-8";
/*==================================
  General - 共通
==================================*/
body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #3a3a3a;
  letter-spacing: 0.25em;
}

/*==================================
Scrollin
==================================*/
.scrollin,
.scrollins__item {
  opacity: 0;
  transform: translate(0, 30px);
}

.scrollin.is-visible,
.scrollins__item.is-visible {
  opacity: 1;
  transform: translate(0, 0);
  transition: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/*==================================
  Parts - パーツ
==================================*/
/* Button */
.c-btn__p1 {
  text-decoration: none;
  font-weight: 700;
  text-align: center;
  width: 100%;
  max-width: 320px;
  padding: 0.8em 1em;
  background: #9b0041;
  border: 2px solid #9b0041;
  color: #fff;
  position: relative;
}
.c-btn__p1::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
  height: 0.4em;
  border: 0.4em solid transparent;
  border-left: 0.5em solid #fff;
}
.c-btn__p1:hover, .c-btn__p1:focus {
  opacity: 0.8;
}
.c-btn__p2 {
  position: relative;
  padding-right: calc(1.8em + 16px);
}
.c-btn__p2::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1.8em;
  height: 1.8em;
  background: #9b0041;
}
.c-btn__p2::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0.2em;
  height: 0.4em;
  border: 0.4em solid transparent;
  border-left: 0.5em solid #fff;
}

/* List */
.c-list__simple {
  display: grid;
  gap: 0.5em;
}
.c-list__simple > li {
  position: relative;
  padding-left: calc(0.4em + 16px);
}
.c-list__simple > li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 0.4em;
  height: 0.4em;
  background: #3a3a3a;
  border-radius: 50%;
}

/*==================================
  Header - ヘッダー
==================================*/
.l-header__logo {
  padding: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.l-header__logo img {
  width: 100%;
  max-width: 600px;
}

@media only screen and (max-width: 1199px) {
  .l-header__logo img {
    width: 80%;
  }
}
@media only screen and (max-width: 767px) {
  .l-header__logo {
    padding: 30px;
  }
}
/*==================================
  Title - タイトル
==================================*/
.p-title__p1 {
  position: relative;
  font-size: 4.8rem;
  font-weight: 700;
  color: #06376e;
  text-align: center;
  letter-spacing: 0.25em;
  text-indent: 0.25em;
}
.p-title__p2 {
  position: relative;
  font-size: 2.4rem;
  font-weight: 700;
  padding-bottom: 0.4em;
  border-bottom: 2px solid #3a3a3a;
  padding-left: 1.4em;
}
.p-title__p2::before {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 0.8em;
  height: 0.8em;
  background: #3a3a3a;
  border-radius: 50%;
}

@media only screen and (max-width: 767px) {
  .p-title__p1 {
    font-size: 2.8rem;
  }
  .p-title__p2 {
    font-size: 2rem;
  }
}
/*==================================
  Mainvis - メインビジュアル
==================================*/
.p-mainvis__image img {
  width: 100%;
  /* filter: brightness(130%) saturate(120%); */
}
@media only screen and (min-width: 1200px) {
  .p-mainvis__image {
    padding: 0 60px;
  }
  .p-mainvis__image img {
    height: 70vh;
    object-fit: cover;
  }
}
/*==================================
  News - 新着情報
==================================*/
.p-news_head {
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
  gap: 0 1em;
}
.p-news_body {
  display: flex;
  gap: 0.5em 1em;
}

.p-news-list {
  border-top: 2px solid #3a3a3a;
  border-bottom: 2px solid #3a3a3a;
}
.p-news-list_item {
  padding: 20px 0;
  display: grid;
  gap: 0.5em 0;
}
.p-news-list_item:not(:first-of-type) {
  border-top: 1px dotted #3a3a3a;
}

.p-news-content_label {
  flex-shrink: 0;
  display: grid;
  place-content: center start;
}
.p-news-content_label > span {
  display: inline-block;
  background: #f0b9bc;
  font-size: 1.6rem;
  width: 10em;
  text-align: center;
}
.p-news-content_title {
  width: 100%;
}
.p-news-content_new {
  font-weight: 700;
  color: #c8141d;
  position: relative;
  line-height: 1;
  margin-left: 1em;
  letter-spacing: 0.1em;
}

@media only screen and (min-width: 768px) {
  .p-news-list__type1 .p-news-content_title {
    width: 100%;
  }
  .p-news-list__type2 .p-news-content_title {
    width: calc(100% - 10em + 1em);
  }
  .p-news-list__type2 .p-news-content_title > a {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .p-news_head {
    font-size: 1.4rem;
  }
  .p-news_body {
    flex-direction: column;
  }
  .p-news-content_label > span {
    font-size: 1.4rem;
  }
}
/*==================================
  Exhibition - 展覧会
==================================*/
.p-exhibition-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}
.p-exhibition-list__item > a {
  display: block;
  color: inherit;
  text-decoration: none;
  font-weight: 700;
  font-size: 120%;
  text-align: center;
}
.p-exhibition-list__item .p-exhibition-icon {
  border: 2px solid #9b0041;
  padding-left: 6em;
  line-height: 6em;
  position: relative;
}
.p-exhibition-list__item .p-exhibition-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6em;
  height: 6em;
  background: #9b0041;
}
.p-exhibition-list__item .p-exhibition-icon::after {
  content: "";
  position: absolute;
  top: 1em;
  left: 1em;
  width: 4em;
  height: 4em;
}
.p-exhibition-list__item .p-exhibition-icon.icon01::after {
  background: url(/art-museum/assets/images/icon01.svg) no-repeat center/cover;
}
.p-exhibition-list__item .p-exhibition-icon.icon02::after {
  background: url(/art-museum/assets/images/icon02.svg) no-repeat center/cover;
}

@media only screen and (max-width: 1199px) {
  .p-exhibition-list {
    gap: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .p-exhibition-list {
    grid-template-columns: inherit;
    gap: 20px;
  }
}
/*==================================
  Information - ご案内
==================================*/
.p-information-price {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}
.p-information-price__table {
  width: 100%;
  word-break: break-word;
  overflow-wrap: anywhere;
  background: #fff;
}
.p-information-price__table caption {
  font-size: 110%;
  font-weight: 700;
  background: #3a3a3a;
  color: #fff;
  padding: 0.2em 1em;
  text-align: center;
}
.p-information-price__table tr {
  border-top: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
}
.p-information-price__table th,
.p-information-price__table td {
  border-bottom: 1px solid #e0e0e0;
  border-left: 1px solid #e0e0e0;
  padding: 16px 20px;
  vertical-align: top;
}
.p-information-price__table th {
  font-weight: 700;
  background: #f5f5f5;
}
.p-information-price__table td {
  width: 10em;
}

@media only screen and (max-width: 1199px) {
  .p-information-price {
    grid-template-columns: inherit;
    gap: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .p-information-price {
    gap: 20px;
  }
  .p-information-price__table th,
  .p-information-price__table td {
    padding: 10px;
  }
  .p-information-price__table td {
    width: 8em;
  }
}
/*==================================
  Access - アクセス
==================================*/
.p-access__map {
  padding: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.p-access__map img {
  width: 100%;
  max-width: 700px;
}
.p-access__route dt {
  font-size: 110%;
  position: relative;
  padding-left: calc(0.4em + 16px);
}
.p-access__route dt::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 0.4em;
  height: 0.4em;
  background: #3a3a3a;
  border-radius: 50%;
}
.p-access__route dt:not(:first-child) {
  margin-top: 1em;
}
.p-access__route dd {
  margin-top: 0.4em;
}

@media only screen and (max-width: 767px) {
  .p-access__map {
    padding: 40px 0;
  }
}
/*==================================
  Social - SNS
==================================*/
.p-social-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}

.p-social-button {
  display: block;
  background: #9b0041;
  padding: 1.4em;
}

.p-social-icon {
  display: inline-block;
  position: relative;
  padding-left: 3.8em;
  color: #fff;
}
.p-social-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1em;
  width: 1.8em;
  height: 1.8em;
}
.p-social-icon.s_twitter::before {
  background: url(/art-museum/assets/images/s_twitter_wh.svg) no-repeat center/cover;
}
.p-social-icon.s_instagram::before {
  background: url(/art-museum/assets/images/s_instagram_wh.svg) no-repeat center/cover;
}

@media only screen and (max-width: 767px) {
  .p-social-list {
    grid-template-columns: inherit;
    gap: 20px;
  }
}
/*==================================
  Pagetop - ページトップ
==================================*/
.p-pagetop {
  text-align: center;
}
.p-pagetop > a {
  display: inline-block;
  position: relative;
  padding-top: 1.8em;
  color: inherit;
  text-decoration: none;
  font-size: 90%;
}
.p-pagetop > a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1em;
  height: 1em;
  border: 0.6em solid transparent;
  border-bottom: 0.6em solid #000;
}

/*==================================
  Footer - フッター
==================================*/
.l-footer__inner {
  border-top: 2px solid #3a3a3a;
}
.l-footer__copy {
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 0;
}