@charset "utf-8";
/* ------------------------------------------------------
    kizi 
--------------------------------------------------------- */
.single__title:not(:last-child) {
  margin-bottom: calc(30px - .4375em);
}
/* 記事本文 */
.post {
  overflow: hidden;
}
.post:not(:first-child) {
  margin-top: calc(60px - .4375em);
}
.post *:not(:first-child) {
  margin-top: calc(1.875em - .875em);
}
.post h2, .post h3, .post h4, .post h5, .post h6 {
  display: block;
  clear: both;
  font-weight: 700;
}
.post h2:not(:first-child) {
  margin-top: calc(60px - .4375em);
}
.post h3:not(:first-child), .post h4:not(:first-child) {
  margin-top: calc(40px - .4375em);
}
.post h5:not(:first-child), .post h6:not(:first-child) {
  margin-top: calc(30px - .4375em);
}
.post h2 {
  padding-bottom: calc(20px - .4375em);
  border-bottom: 1px solid #C5C5C5;
  position: relative;
  color: #c9161d;
  font-size: 30px;
  font-size: 3.0rem;
}
.post h2::after {
  content: "";
  display: block;
  width: 200px;
  max-width: 33.333%;
  height: 1px;
  background-color: #c9161d;
  position: absolute;
  left: 0;
  bottom: -1px;
}
.post h3 {
  color: #c9161d;
  font-size: 28px;
  font-size: 2.8rem;
}
.post h4 {
  font-size: 24px;
  font-size: 2.4rem;
}
.post h5 {
  font-size: 20px;
  font-size: 2.0rem;
}
.post h6 {
  font-size: 18px;
  font-size: 1.8rem;
}
.post a {
  text-decoration: underline;
}
.post a:hover {
  color: #c9161a;
  opacity: 1;
}
.post strong {
  font-weight: bold;
}
.post ul, .post ol {
  padding-left: 1.5em;
}
.post ul {
  list-style-type: disc;
}
.post ol {
  list-style-type: decimal;
}
.post li::marker {
  color: #c9161d;
}
.post li:not(:first-child) {
  margin-top: calc(1.5em - .875em);
}
.post blockquote {
  background-color: #F5F5F5;
  padding: 70px 30px;
  position: relative;
}
.post blockquote:not(:first-child) {
  margin-top: calc(30px - .4375em);
}
.post blockquote::before, .post blockquote::after {
  font-family: "Font Awesome 7 Free";
  font-weight: 700;
  color: #c5c5c5;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1;
  position: absolute;
}
.post blockquote::before {
  content: "\f10d";
  top: 30px;
  left: 30px;
}
.post blockquote::after {
  content: "\f10e";
  bottom: 30px;
  right: 30px;
}
.post blockquote cite {
  display: block;
  text-align: right;
  color: #c5c5c5;
  font-size: 0.9em;
}
.post del {
  text-decoration: line-through;
}
.post ins {
  text-decoration: underline;
}
.post sup {
  vertical-align: super;
  font-size: smaller;
}
.post sub {
  vertical-align: sub;
  font-size: smaller;
}
/* テーブル */
.post table {
  background: #fff;
  border: 1px solid #c5c5c5;
  border-collapse: collapse;
  border-spacing: 0;
  width: calc(100% - 2px);
  text-align: left;
}
.post td, .post th {
  border: 1px solid #c5c5c5;
  padding: .5em .75em;
  line-height: 1.5;
  word-break: break-all; /* 英文折り返し */
}
.post th {
  background: #c9161d;
  color: #fff;
}
.post table:not(:first-child) {
  margin-top: 30px;
}

/*  画像回り込み 
--------------------------------------------------------- */
.alignnone {
  margin-top: 10px;
  clear: both;
}
.alignleft {
  float: left;
  margin: 15px 20px 20px 0;
}
.alignright {
  float: right;
  margin: 15px 0 20px 15px;
}
.aligncenter {
  display: block;
  text-align: center;
  margin: 15px auto 20px;
}
/*  ページャー - single - 
--------------------------------------------------------- */
.pagenation {
  margin: 0 auto 0;
  overflow: hidden;
}
.previous {
  float: left;
}
.next {
  float: right;
}
.pagenation a {
  display: block;
  background-color: #e5e5e5;
  font-size: 13px;
  font-weight: bold;
  color: #707070;
  padding-top: 6px;
  padding-bottom: 6px;
  text-align: center;
  border: 1px none;
  border-radius: 4px;
  width: 110px;
}
/* 一覧へ戻る */
.center_back_link a {
  background-color: #707070;
  color: #FFF;
  text-align: center;
  display: block;
  font-size: 13px;
  font-weight: bold;
  padding-top: 6px;
  padding-bottom: 6px;
  border: 1px none;
  border-radius: 4px;
  width: 110px;
  margin: 0 auto;
}
/*==========================================================
      Target Devices # Tablet MobilePC #
============================================================ */
@media screen and (max-width: 1023px) {}
/*==========================================================
      Target Devices # Smart Phone and Tablet #
============================================================ */
@media screen and (max-width: 767px) {
  /* ------------------------------------------------------
    kizi 
--------------------------------------------------------- */
  .single__title {
    font-size: 30px;
    font-size: 3.0rem;
  }
  /* 記事本文 */
  .post h2 {
    font-size: 26px;
    font-size: 2.6rem;
  }
  .post h3 {
    font-size: 24px;
    font-size: 2.4rem;
  }
  .post h4 {
    font-size: 22px;
    font-size: 2.2rem;
  }
  .post blockquote {
    padding: 50px 15px;
  }
  .post blockquote::before {
    top: 20px;
    left: 15px;
  }
  .post blockquote::after {
    bottom: 20px;
    right: 15px;
  }
  /*  画像回り込み 
--------------------------------------------------------- */
  .post p img {
    max-width: 60%;
    height: auto;
  }
  /*  ページャー - PREV　NEXT - 
--------------------------------------------------------- */
  .pagenation {
    margin: 0 auto 2%;
  }
  .previous {
    width: 49%;
    margin-bottom: 2%;
  }
  .next {
    width: 49%;
    margin-bottom: 2%;
  }
  .pagenation a {
    padding-top: 10px;
    padding-bottom: 10px;
    width: 100%;
    box-sizing: border-box;
  }
  /*一覧へ戻る*/
  .center_back_link {
    clear: both;
    overflow: hidden;
  }
  .center_back_link a {
    padding-top: 10px;
    padding-bottom: 10px;
    margin: 0 auto;
  }
}
/*==========================================================
      Target Devices # Smart Phone Only #
============================================================ */
@media screen and (max-width: 479px) {
  /*  画像回り込み -解除-
--------------------------------------------------------- */
  .post p img {
    max-width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }
  .alignleft {
    float: none;
    margin-right: 0;
    display: block;
  }
  .alignright {
    float: none;
    margin-left: 0;
    display: block;
  }
}
/** ===========================================================================
 * single exhibition
 ** ======================================================================== */
.single-exhibition__title:not(:first-child) {
  margin-top: calc(30px - .4375em);
}
.single-exhibition__thumbnail:not(:first-child) {
  margin-top: calc(60px - .4375em);
}
.single-exhibition__custom-field:not(:first-child) {
  margin-top: calc(60px - 1.4375em);
}
.single-exhibition__artists-list {
  overflow: hidden;
}
.single-exhibition__artists {
  display: flex;
  flex-wrap: wrap;
  margin-left: -1em;
}
.single-exhibition__artist {
  display: inline-block;
  position: relative;
}
.single-exhibition__artist::before {
  content: "、";
}
.single-exhibition__artist-link {
  text-decoration: underline;
}
.single-exhibition__artist-link:hover {
  color: #c9161d;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .single-exhibition__thumbnail {
    margin-right: -20px;
    margin-left: -20px;
  }
}
