@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600;700&display=swap');

body {
  font-family: "Shippori Mincho", "Yu Mincho", "YuMincho",
               "Hiragino Mincho ProN", serif;
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  font-family: "Shippori Mincho", "Yu Mincho", "YuMincho",
               "Hiragino Mincho ProN", serif;
}
a {
  text-decoration: none!important;
}
a.button{
	background: #2c539e;
	 background: -moz-linear-gradient(center top , #2c539e 0%, #243340 100%) repeat scroll 0 0 rgba(0, 0, 0, 0);
    border-radius: 25px;
    color: #fff!important;
    display: inline-block;
    font-size: 18px;
    line-height: 1;
    padding: 10px 40px;
	text-decoration:none;
	font-weight:bold;
}
a.button:hover {
  opacity: 0.8!important;
}
.footer a:not(.btn):hover,.footer a:not(.btn):focus,.footer .btn-link:hover,.footer .btn-link:focus {
    color: var(--link-hover-color)!important;
}
.footer .grid-child {
  display: block!important;
}
.footer .custom {
  text-align: center!important;
}
.mod-breadcrumbs__wrapper {
  margin-top: 0!important;
}
/*--------------------------------*/
/* GALLERY TEN header */
/*--------------------------------*/
.gt-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  background-image: none;
  box-shadow: none;
}

.gt-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.gt-brand {
  display: block;
  flex: 0 0 auto;
}

.gt-brand-logo {
  display: block;
  flex: 0 0 auto;
}

.gt-brand-logo img {
  display: block;
  width: 92px;
  height: auto;
}

.gt-site-description {
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.4;
  white-space: nowrap;
  color: #555;
}

.gt-nav-area {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}

.gt-nav .mod-menu,
.gt-nav ul {
  display: flex;
  align-items: center;
  gap: 0px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gt-nav li {
  margin: 0;
}

.gt-nav a {
  color: #111;
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 0.03em;
}

.gt-nav a:hover {
  color: #6b2587;
}
@media (max-width: 768px) {
  .gt-header-inner {
    display: block;
    padding: 10px 16px;
  }

  .gt-brand {
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }

  .gt-brand-logo img {
    width: 78px;
    margin: 0 auto;
  }

  .gt-site-description {
    font-size: 12px;
    line-height: 1.4;
    white-space: normal;
  }

  .gt-nav-area {
    display: block;
    margin-left: 0;
    margin-top: 10px;
  }

  .gt-nav .mod-menu,
  .gt-nav ul {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 16px;
  }

  .gt-nav a {
    font-size: 13px;
  }
}


/* タグライン */
/*.container-header .site-description {
  color: #333;
  font-size: 14px;
  font-weight: 700;
  margin-top: 6px;
}*/

/*----------------------------------*/
/*メニューバー*/
/*----------------------------------*/
/* PCではメニューを常時表示、バーガー非表示 */
.gt-menu-toggle {
  display: none;
}

.gt-nav.collapse {
  display: block;
}
.gt-brand-sm {
  display: none;
}
/* アクティブメニュー */
.container-header .mod-menu > li.active > a,
.container-header .mod-menu > li.current > a {
    position: relative;
}

/* 少し隙間を空けた太いアンダーライン */
.container-header .mod-menu > li.active > a::after,
.container-header .mod-menu > li.current > a::after,
.container-header .mod-menu > li > a:hover::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.2rem;
    height: 4px;
    background-color: #1a1a83;
    border-radius: 2px;
    opacity: 0.2;
}
/*アクティブの場合のアンダーライン*/
.container-header .mod-menu > li > a {
  padding-bottom: .8rem;
}

.container-header .mod-menu > li.active > a::after,
.container-header .mod-menu > li.current > a::after {
  bottom: 0.35rem;
  height: 4px;
}
/* スマホ用 */
@media (max-width: 768px) {
  .gt-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }
  .gt-brand {
    display: none;
  }
  .gt-brand-sm {
    display: block;
  }
  /* .gt-brand {
    flex: 1 1 auto;
    min-width: 0;
  }
  .gt-site-description{
    display: none;
  } */
  .gt-nav-area {
    width: 100%;
    display: grid!important;
    grid-template-columns: 100px 1fr 100px;
    gap: 28px;
    margin-left: auto;
  }
  
  .gt-menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;

    width: 42px;
    height: 42px;
    padding: 0;

    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
  }

  .gt-menu-toggle-line {
    display: block;
    width: 22px;
    height: 2px;
    margin: 0 auto;
    background: var(--headercolor, #111);
  }

  .gt-nav.collapse {
    display: none;
  }

  .gt-nav.collapse.show {
    display: block;
  }

  .gt-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;

    background: #fff;
    border-top: 1px solid #eee;
    box-shadow: 0 4px 8px rgb(0 0 0 / 10%);
    z-index: 1000;
  }

  .gt-nav .mod-menu {
    display: block;
    margin: 0;
    padding: 8px 0;
  }

  .gt-nav .mod-menu > li {
    display: block;
    margin: 0;
    padding: 0 1rem;
  }

  .gt-nav .mod-menu > li > a {
    display: inline-block;
    padding: 10px 0;
    font-size: 15px;
    text-align: left;
  }
  .gt-nav .mod-menu > li.active>a,
  .gt-nav .mod-menu > li.current>a,
  .gt-nav .mod-menu > li>a:hover {
        text-decoration: none!important;
    }
}

/* Header social icons */
.gt-nav-area {
  display: flex;
  align-items: center;
  gap: 28px;
}

.gt-social {
  flex: 0 0 auto;
}

.gt-social-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gt-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  text-decoration: none;
}

.gt-social-icon img {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.gt-social-icon:hover {
  opacity: 0.75;
}
/*----------------------------------*/
/* スライダー */
/*----------------------------------*/
.top-a.card {
  border: none;
}
.top-a.card .card-body {
  padding: 0;
  margin-top: -50px;
}
/*----------------------------------*/
/* HOME 注目記事 */
/*----------------------------------*/
.toppage .blog-featured {
  margin: 0 5rem;
}
.toppage .main-bottom {
  margin: 1rem 5rem;
}
/* スマホ用 */
@media (max-width: 768px) {
  .toppage .blog-featured, .toppage .main-bottom {
    margin: 0;
  }
}
/*----------------------------------*/
/* カテゴリブログ全体 */
/*----------------------------------*/
/*
.blog-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
*/

/* 各記事カード */
.blog-item {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .18);
}

/* 画像 */
.blog-item .item-image {
  margin: 0;
}
/*
.blog-item .item-image img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}

.blog-item .item-image img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  display: block;
  background: #f5f5f5;
}
*/
.blog-item .item-image img {
  width: 100%;
  height: auto;
  display: block;
}
/* カード内余白 */
.blog-item .item-content,
.blog-item .item-title,
.blog-item .article-info,
.blog-item p {
  padding-left: 18px;
  padding-right: 18px;
}

/* タイトル */
.blog-item .item-title,
.com-content-category-blog .blog-item .page-header h2 {
  margin: 16px 0 6px;
  font-size: 1.15rem;
  font-weight: 700;
  padding: 0;
  line-height: 1.7rem;
}

.blog-item .item-title a,
.com-content-category-blog .blog-item .page-header h2 a {
  color: #193a63;
  text-decoration: none;
}
/* 開催期間 */
.blog-item .ex-card-period {
  margin-top: 8px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #111;
}

/* 本文 */
.blog-item p {
  margin-bottom: 12px;
  color: #333;
  font-size: .95rem;
}

/* 最終行の余白 */
.blog-item > *:last-child {
  margin-bottom: 16px;
}

/* ページネーション */
.pagination {
  justify-content: center;
  margin-top: 36px;
}

/*注目記事*/
.blog-featured .blog-items {
  column-gap: 4em;
}

/*---------------------------------------*/
/* ページタイトル */
/*---------------------------------------*/
.com-content-article .page-header h1,
.pg-categories-view .page-header h1,
.com-content-category-blog .page-header h1,
.pg-category-view .page-header h1 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.8rem;
}
/*---------------------------------------*/
/* 記事詳細ページ */
/*---------------------------------------*/
.com-content-article .page-header h2,
.pg-category-view .pg-category-title h2 {
  /* border-bottom: 1px solid #eee; */
  font-size: 1.75rem;
  margin-bottom: 10px
}
.center.item-image {
  text-align: center;
}
.item-image img {
  max-width: 900px;
  width:100%;
}
.article-exhibition-layout {
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 40px;
  align-items: start;
  
}

.article-exhibition-main {
  min-width: 0;
}

.article-full-image-link {
  display: block;
  cursor: zoom-in;
}

.article-full-image {
  max-width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .18);
}

.article-full-image-modal-img {
  max-height: 90vh;
  object-fit: contain;
}

.modal-backdrop.show {
  opacity: 0.8;
}

.exhibition-body-under-image {
  margin-top: 20px;
}

.com-content-article__body {
  line-height: 1.9;
}

.article-phoca-gallery {
  min-width: 0;
}

.gallery-title {
  margin-top: 0;
  margin-bottom: 18px;
  padding-bottom: 8px;
  border-bottom: 2px solid #ddd;
  font-size: 1.35rem;
  color: #222;
}
/*ソーシャルボタン*/
.article-social-sharing {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #ddd;
}

.article-social-sharing__label {
  margin-right: 0.25rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.article-share-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 32px;
  padding: 0.35rem 0.8rem;
  border-radius: 4px;
  color: #fff;
  font-size: 0.875rem;
  line-height: 1;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.article-share-button:hover,
.article-share-button:focus {
  color: #fff;
  opacity: 0.8;
}

.article-share-button--x {
  background-color: #000;
}

.article-share-button--facebook {
  background-color: #1877f2;
}

.article-share-button__icon {
  font-size: 1rem;
  line-height: 1;
}

.article-share-button__facebook-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  font-family: Arial, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1;
}

@media print {
  .article-social-sharing {
      display: none !important;
  }
}
@media (max-width: 768px) {
  .article-exhibition-layout {
    display: block;
  }

  .article-phoca-gallery {
    margin-top: 30px;
  }
}
/* @media (max-width: 768px) {
.com-content-article figure.item-image {
  float: none;
  width: 100%;
  max-width: none;
  margin: 0 auto;
}

} */
/*-------------------------------------*/
/* お知らせ */
/*-------------------------------------*/
.gt-notice-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.gt-notice-item {
  display: flex;
  align-items: baseline;
  gap: 1em;
  margin: 0 0 0.7em;
}

.gt-notice-date {
  flex: 0 0 auto;
  white-space: nowrap;
  font-size: 0.95rem;
}

.gt-notice-title {
  line-height: 1.5;
  font-weight: 700;
  text-decoration: none;
}

.gt-notice-title:hover {
  text-decoration: underline;
}
.gt-notice-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.gt-notice-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}

.gt-notice-image {
  display: block;
  width: 72px;
}

.gt-notice-image img {
  width: 72px;
  height: 54px;
  object-fit: cover;
  display: block;
}

.gt-notice-body {
  min-width: 0;
}

.gt-notice-date {
  display: block;
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 3px;
}

.gt-notice-title {
  display: block;
  font-weight: 700;
  line-height: 1.5;
}
/*----------------------------------------*/
/* Phoca Gallery */
/*----------------------------------------*/
.pg-item-box {
  border: none;
}

.ph-si.ph-si-image {
  display: none;
}
.pg-item-box-title {
  position: relative;
  background: none;
}
.pg-item-box-title a {
  color: var(--link-color);
}
/* Phoca Gallery / PhotoSwipe の黒背景を薄くする */
.pswp__bg {
  opacity: 0.8 !important;
}
/*----------------------------------------*/
/*サイドバー　PhocaGallery　*/
/*----------------------------------------*/
.sidebar-right.card .card-header {
  /* background-color: #7e1374;
  color: #fff; */
  text-align: center;
  line-height: normal;
  text-transform: uppercase;
  font-size: 16px;
  padding: 10px 15px;
  /* background-color: #7e1374;
  background-image: -moz-linear-gradient(top,#cd82cd,#7e1374);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#cd82cd),to(#7e1374));
  background-image: -webkit-linear-gradient(top,#cd82cd,#7e1374);
  background-image: -o-linear-gradient(top,#cd82cd,#7e1374);
  background-image: linear-gradient(to bottom,#cd82cd,#7e1374);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#cd82cd', endColorstr='#7e1374', GradientType=0);*/
}
.sidebar-right .card-body {
  padding-left: 3rem;
  padding-right: 3rem;
}
.sidebar-right .home-phoca-categories {
  margin: 0 auto;
}
.sidebar-right .home-phoca-categories-heading {
  display: none;
}
.sidebar-right .home-phoca-categories h2 {
  font-size: 1.5rem;
}
.sidebar-right .home-phoca-category-title {
  font-size: 1rem;
}

.sidebar-right .home-phoca-category {
  display: block;
}
.sidebar-right .home-phoca-category-desc,
.sidebar-right .home-phoca-category-more {
  display: none;
}

/* --------------------------------------------------------- */
/* Infomation */
/* --------------------------------------------------------- */
@supports (display: grid) {
  .blog-items {
      grid-gap: 2rem;
      margin-bottom: 3rem;
  }
}


/* --------------------------------------------------------- */
/* これまでの展示 */
/* --------------------------------------------------------- */
.pg-category-items-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  align-content: flex-start;
  row-gap: 3rem;
  column-gap: 1rem;
}

.pg-category-items-box .pg-item-box {
  width: min-content;
  max-width: 100%;
}

.pg-category-items-box .pg-item-box figure {
  margin: 0;
}

.pg-category-items-box .pg-item-box-title a {
  display: block;
  width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
  line-height: 1.5;
}
/* Phoca Gallery：各画像項目を画像幅に合わせる */
.pg-category-items-box .pg-item-box {
  width: min-content;
  max-width: 100%;
}

/* figureの既定余白を解除 */
.pg-category-items-box .pg-item-box figure {
  width: 100%;
  margin: 0;
}

/* 画像リンクと画像枠 */
.pg-category-items-box .pg-item-box figure > a,
.pg-category-items-box .pg-item-box-image {
  display: block;
  width: 100%;
}

/* 画像 */
.pg-category-items-box .pg-item-box-image img {
  display: block;
  max-width: none;
}

/* タイトルを画像と同じ幅にする */
.pg-category-items-box .pg-item-box-info,
.pg-category-items-box .pg-item-box-title {
  width: 100%;
  min-width: 0;
}

/* タイトルリンクを折り返す */
.pg-category-items-box .pg-item-box-title a {
  display: block;
  width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: normal;
  line-height: 1.5;
  margin-top: .5rem;
}

#phocagallery .pg-item-box-title {
  padding-top: 0;
}
#phocagallery .pg-item-box-title a {
  color: rgb(49, 49, 49);
  font-size: .8rem;
}


/*これより以下のphocaはいらないかも*/

.pg-exhibition-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.pg-exhibition-item {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  align-items: start;
  padding-bottom: 28px;
  border-bottom: 1px solid #ddd;
}

.pg-exhibition-image img {
  width: 100%;
  height: auto;
  display: block;
}

.pg-exhibition-image-link {
  display: block;
}

.pg-exhibition-title {
  margin: 0 0 12px;
  font-size: 1.35rem;
  line-height: 1.4;
}

.pg-exhibition-title a {
  color: inherit;
  text-decoration: none;
}

.pg-exhibition-title a:hover {
  text-decoration: underline;
}

.pg-exhibition-count {
  font-size: 0.9rem;
  color: #777;
}

.pg-exhibition-desc {
  line-height: 1.8;
  margin-bottom: 16px;
}

.pg-exhibition-more {
  margin-top: 16px;
}



@media (max-width: 768px) {
  .pg-exhibition-item {
    display: block;
  }

  .pg-exhibition-image {
    margin-bottom: 16px;
  }
}
