@charset "utf-8";
.p-single-pankuzu {
  max-width: 1080px;
  position: static;
  margin: 0 auto 20px;
}
/* ------------------------------------------------------
    kizi 
--------------------------------------------------------- */
.p-single-heading {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.p-single-post {
  max-width: 850px;
  padding: 35px 20px 85px;
  background-color: #FFF;
  margin: auto;
}
.p-single-post__data {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  max-width: 710px;
  margin: 0 auto 35px;
}
.p-single-post__category {
  margin: -.5em;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 600;
}
.p-single-post__category a {
  display: inline-block;
  padding: 0 .25em;
  border: 2px solid #0068B7;
  margin: .5em;
  color: #0068B7;
}
.p-single-post__date {
  margin-left: 20px;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 600;
}
.p-single-post__title {
  display: flex;
  justify-content: center;
  font-size: 23px;
  font-size: 2.3rem;
  font-weight: 600;
}
/* 記事本文 */
.p-single-post__post {
  max-width: 530px;
  margin: 35px auto 0;
}
.c-post {
  overflow: hidden;
}
.c-post h2, .c-post h3, .c-post h4 {
  display: block;
  clear: both;
  line-height: 1.8;
}
.c-post h2 {
  font-size: 24px;
  font-size: 2.4rem;
  margin-bottom: 20px;
}
.c-post h3 {
  margin-bottom: 20px;
  font-size: 20px;
  font-size: 2.0rem;
}
.c-post h4 {
  margin-bottom: 20px;
  font-size: 16px;
  font-size: 1.6rem;
}
.c-post p {
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 14px;
  font-size: 1.4rem;
}
.c-post a {
  color: #2C56F8;
}
.c-post a:hover {}
.c-post strong {
  font-weight: bold;
}
.c-post ul, .c-post ol {
  padding-top: 0px;
  padding-right: 20px;
  padding-bottom: 10px;
  padding-left: 20px;
  font-size: 14px;
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.c-post ul {
  list-style-type: disc;
}
.c-post ol {
  list-style-type: decimal;
}
.c-post blockquote {
  background-color: #eee;
  padding: 40px 20px 30px 25px;
  margin-bottom: 20px;
  position: relative;
}
.c-post blockquote p {
  margin-bottom: 0;
}
.c-post blockquote:before {
  font-family: FontAwesome;
  color: #fff;
  font-size: 16px;
  content: "\f10d"; /* http://fontawesome.io/icons/ */
  position: absolute;
  top: 11px;
  left: 25px;
}
.c-post del {
  text-decoration: line-through;
}
.c-post ins {
  text-decoration: underline;
}
.c-post sup {
  vertical-align: super;
  font-size: smaller;
}
.c-post sub {
  vertical-align: sub;
  font-size: smaller;
}
.c-post blockquote cite {
  display: block;
  text-align: right;
  color: #888888;
  font-size: 0.9em;
}
/* テーブル */
.c-post table {
  margin: 0 0 30px 0;
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  width: calc(100% - 2px);
  text-align: left;
  border: 1px solid #bbb;
}
.c-post td, .c-post th {
  border: 1px solid #bbb;
  padding: 10px 15px 7px;
  line-height: 1.5;
  background: #fff;
  word-break: break-all; /* 英文折り返し */
}
.c-post th {
  background: #eee;
}
.c-post *:last-child {
  margin-bottom: 0;
}
/*  画像回り込み 
--------------------------------------------------------- */
.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 - 
--------------------------------------------------------- */
.p-single-pagenav {
  display: flex;
  justify-content: space-between;
  max-width: 690px;
  margin: 45px auto 0;
}
.p-single-pagenav__prev a, .p-single-pagenav__next a {
  display: block;
  position: relative;
  color: #0068B7;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 600;
}
.p-single-pagenav__prev {
  margin-right: auto;
}
.p-single-pagenav__next {
  margin-left: auto;
}
.p-single-pagenav__prev a {
  padding-left: 25px;
}
.p-single-pagenav__next a {
  padding-right: 25px;
}
.p-single-pagenav__prev a::before, .p-single-pagenav__next a::before {
  content: "";
  width: 25px;
  height: 25px;
  border-top: 4px solid #0068B7;
  border-right: 4px solid #0068B7;
  position: absolute;
  top: 0;
  transition: .3s;
}
.p-single-pagenav__prev a::before {
  transform: rotate(-135deg);
  left: 0;
}
.p-single-pagenav__next a::before {
  transform: rotate(45deg);
  right: 0;
}
.p-single-pagenav__prev a:hover, .p-single-pagenav__next a:hover {
  color: #FFFF00;
  opacity: 1;
}
.p-single-pagenav__prev a:hover::before, .p-single-pagenav__next a:hover::before {
  border-top-color: #FFFF00;
  border-right-color: #FFFF00;
}
/*==========================================================
      Target Devices # Tablet MobilePC #
============================================================ */
@media screen and (max-width: 1023px) {}
/*==========================================================
      Target Devices # Smart Phone and Tablet #
============================================================ */
@media screen and (max-width: 767px) {
  /* ------------------------------------------------------
    kizi 
--------------------------------------------------------- */
  .p-single-post {
    margin: 0 -20px;
  }
  .p-single-post__title {
    font-size: 20px;
    font-size: 2.0rem;
  }
  /* 記事本文 */
  .c-post h2 {
    font-size: 20px;
    font-size: 2.0rem;
    margin-bottom: 10px;
  }
  .c-post h3 {
    margin-bottom: 10px;
    font-size: 18px;
    font-size: 1.8rem;
  }
  .c-post h4 {
    margin-bottom: 10px;
    font-size: 15px;
    font-size: 1.5rem;
  }
  .c-post p {
    margin-bottom: 20px;
    line-height: 1.8;
  }
  .c-post a {
    color: #2C56F8;
  }
  .c-post ul {
    margin-bottom: 20px;
    margin-left: 5px;
  }
  .c-post ol {
    margin-left: 5px;
  }
  /*  画像回り込み 
--------------------------------------------------------- */
  .c-post p img {
    max-width: 60%;
    height: auto;
  }
}
/*==========================================================
      Target Devices # Smart Phone Only #
============================================================ */
@media screen and (max-width: 479px) {
  /*  画像回り込み -解除-
--------------------------------------------------------- */
  .c-post p img {
    max-width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }
}