@charset "UTF-8";
/* ----------------------------------------------------------- */
/* color変数定義 */
/* ----------------------------------------------------------- */
/* サイトカラー */
/* グラデーション用 */
body * {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  letter-spacing: 0.05rem;
}

/* ----------------------------------------------------------- */
/* blog */
/* ----------------------------------------------------------- */
input:focus,
input:focus-visible {
  outline: none !important;
}

.post_thumbnail {
  position: relative;
  aspect-ratio: 16/9;
}
.post_thumbnail img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.size-thumbnail {
  width: 100%;
  height: auto;
}

.paging {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30px;
}
.paging ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.paging ul li {
  width: 25px;
  height: 25px;
}
.paging ul li span {
  width: 100%;
  height: 100%;
  font-size: 16px;
  font-family: "Lora", serif;
  color: #23467b;
  font-weight: 400;
}
.paging ul li span.current {
  background: #23467b;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.paging ul li a {
  color: #23467b;
}
.paging ul li a.next, .paging ul li a.prev {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.paging ul li a.next::after, .paging ul li a.prev::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-top: 2px solid #23467b;
  border-right: 2px solid #23467b;
  transform: rotate(45deg);
  top: 0;
  bottom: 0;
  margin: auto;
}
.paging ul li a.prev::after {
  transform: rotate(225deg);
}

.pager ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.pager ul li {
  width: 33.3333333333%;
}
.pager ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
.pager ul li a.btn_prev {
  position: relative;
  padding-left: 16px;
  justify-content: start;
}
.pager ul li a.btn_prev::before {
  position: absolute;
  content: "";
  border-top: 1px solid #23467b;
  border-right: 1px solid #23467b;
  width: 8px;
  height: 8px;
  transform: rotate(225deg);
  top: 0;
  bottom: 0;
  left: 6px;
  margin: auto;
}
.pager ul li a.btn_next {
  position: relative;
  padding-right: 16px;
  justify-content: end;
}
.pager ul li a.btn_next::before {
  position: absolute;
  content: "";
  border-top: 1px solid #23467b;
  border-right: 1px solid #23467b;
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  top: 0;
  bottom: 0;
  right: 6px;
  margin: auto;
}
.pager ul li .current {
  background: #e48977;
  color: #fff;
  display: flex;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
}

#fv.article .bg_h1 {
  position: relative;
  height: auto;
  background: #EAF1F8;
  padding: 20px 0;
}
#fv.article .bg_h1 h1 {
  font-size: 30px;
  font-weight: 600;
  color: #23467b;
}

#article_content h2, #article_content h3, #article_content h4, #article_content h5, #article_content h6 {
  font-weight: 600;
  color: #23467b;
  letter-spacing: 0.1em;
  line-height: 1.6;
  margin-bottom: 1.3rem;
  margin-top: 3rem;
}
#article_content h2 {
  font-size: 22px;
  background-image: linear-gradient(90deg, #23467b 0 20px, #c3d6e9 85px);
  background-repeat: no-repeat;
  background-size: 100% 3px;
  background-position: bottom;
  padding: 0 8px 0.6rem;
}
#article_content h3 {
  font-size: 20px;
  border-left: 3px solid #23467b;
  padding-left: 14px;
  margin-left: 2px;
}
#article_content h4 {
  font-size: 18px;
  position: relative;
  padding: 6px 2px 0;
}
#article_content h4::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 1px;
  top: 0;
  left: 0;
  background: #23467b;
}
#article_content h5 {
  font-size: 17px;
}
#article_content h6 {
  font-size: 16px;
}
#article_content p {
  letter-spacing: 0.1em;
  line-height: 1.7;
  margin-top: 1rem;
  margin-bottom: 1.3rem;
  font-weight: 400;
}
#article_content a {
  color: #b58f5a;
  text-decoration: underline;
  margin-bottom: 0;
}
#article_content a:hover {
  opacity: 0.8;
}
#article_content img {
  max-width: 100%;
  height: auto;
  margin-bottom: 30px;
}

ol.wp-block-list li {
  margin-left: 25px;
  list-style: decimal;
}

ul.wp-block-list li {
  margin-left: 25px;
  list-style: disc;
}

#ez-toc-container {
  border: unset !important;
  border-top: 1px solid #23467b !important;
  border-bottom: 1px solid #23467b !important;
  border-radius: unset !important;
  width: 100% !important;
  padding: 10px 25px 15px 15px !important;
}
@media screen and (min-width: 768px) {
  #ez-toc-container {
    padding: 15px 30px 20px 20px !important;
  }
}

#ez-toc-container .ez-toc-title {
  letter-spacing: 0.15rem;
  font-weight: 600 !important;
  color: #23467b !important;
}
#ez-toc-container nav {
  padding-left: 10px;
}
#ez-toc-container a {
  color: #060737 !important;
  font-weight: 600 !important;
  font-size: 15px !important;
}
#ez-toc-container .ez-toc-list-level-2 a, #ez-toc-container .ez-toc-list-level-3 a, #ez-toc-container .ez-toc-list-level-4 a, #ez-toc-container .ez-toc-list-level-5 a, #ez-toc-container .ez-toc-list-level-6 a {
  font-size: 14px !important;
  color: #23467b !important;
}
#ez-toc-container .ez-toc-list-level-2 a::before, #ez-toc-container .ez-toc-list-level-3 a::before, #ez-toc-container .ez-toc-list-level-4 a::before, #ez-toc-container .ez-toc-list-level-5 a::before, #ez-toc-container .ez-toc-list-level-6 a::before {
  content: "" !important;
  width: 8px;
  height: 1px;
  background-color: #b58f5a;
  margin-top: 11px;
  margin-right: 0.5em !important;
}/*# sourceMappingURL=blog.css.map */