@charset "UTF-8";

:root {
  --color-red: #c62c12;
  --color-black: #23221f;
  --color-dark: #323441;
  --color-gray: #bdbdc8;
  --color-darkgray: #cfcac9;


  --color-postgray: #f2f2f2;
}

a {
  transition: .4s;
}

/*================================================
*  post
================================================*/
.breadcrumbs {
  width: 100%;
  max-width: 1200px;
  width: 98%;
  margin-bottom: 30px;
}

.breadcrumbs ul {
  display: flex;
  align-items: center;
  justify-content: start;
  flex-wrap: wrap;
  gap: 5px 15px;
  font-size: 12px;
}

.breadcrumbs ul a {
  opacity: 0.6;
  text-decoration: underline;
}

.breadcrumbs ul li {
  padding-right: 20px;
  position: relative;
}

.breadcrumbs ul li:not(:last-child):before {
  position: absolute;
  content: ">";
  right: 0;
  top: 0;
  opacity: 0.6;
}

.post_inner {
  max-width: 1200px;
  width: 98%;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
}


.post_left {
  width: 75%;
}


.post_list {
  gap: 40px 30px;
  display: flex;
  align-items: start;
  justify-content: start;
  flex-wrap: wrap;
}

.thumbnail img {
  height: auto;
}

.post_list li {
  width: calc((100% - 60px) / 3);
  min-width: 230px;
}

.top .post_list li {
  width: calc((100% - 90px) / 4);
  min-width: 230px;
}



.post_list img {
  overflow: hidden;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.thumbnail {
  position: relative;
  border: 1px solid rgb(189 189 200 / 20%);
}

.post_cat {
  background: var(--color-black);
  color: #fff;
  font-size: 12px;
  padding: 2px 10px;
}

.thumbnail .post_cat {
  position: absolute;
  top: 0;
  left: 0;
}

.post_ttl {
  text-align: left;
  font-size: 16px;
  margin: 10px 0 5px;
  line-height: 1.5;
  min-height: 3.4em;
}

.post_txt {
  font-size: 14px;
  font-weight: 400;
  min-height: 4em;
  line-height: 1.5;
}

.post_date {
  font-size: 14px;
  opacity: .6;
  font-weight: 400;
  text-align: right;
}


/* post_right */
.post_right {
  width: 20%;
  min-width: 240px;
}

.connection_post .hd,
.post_right .hd {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin-bottom: 30px;
  padding-bottom: 10px;
  font-size: 16px;
  border-bottom: 1px solid var(--color-darkgray);
}

.connection_post .hd {
  justify-content: start;
}

.post_right .post_list {
  margin-bottom: 40px;
}

.post_right .post_list li {
  width: 100%;
  min-width: unset;
}

.post_right .post_list li {
  display: none;
}

.post_right .post_list li:first-child,
.post_right .post_list li:nth-child(2),
.post_right .post_list li:nth-child(3) {
  display: block;
}



.post_right .post_date {
  margin-top: 10px;
  text-align: left;
}

.post_right .post_ttl {
  margin: 3px 0 3px;
  font-size: 14px;
}

.post_right .post_list li .post_cat {
  font-size: 10px;
}

.post_right .thumbnail {
  position: relative;
}

.post_right .thumbnail .madal {
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  aspect-ratio: 1/1;
  background: var(--color-red);
}

.post_right .thumbnail .madal::before {
  position: absolute;
  content: "1";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
}

.post_right li:nth-child(2) .thumbnail .madal::before {
  content: "2";
}

.post_right li:nth-child(3) .thumbnail .madal::before {
  content: "3";
}

.post_right li:nth-child(4) .thumbnail .madal::before {
  content: "4";
}

.post_right li:nth-child(5) .thumbnail .madal::before {
  content: "5";
}

.cat_list {
  margin-bottom: 40px;
}

.cat_list li {
  margin-bottom: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  border-bottom: 1px dotted var(--color-darkgray);
  font-size: 14px;
  font-weight: 400;
}

.tag_list {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
  flex-wrap: wrap;
}

.tag_list a {
  background: #ededed;
  padding: 5px 10px;
  font-size: 12px;
}


.icon {
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  width: 2rem;
  height: 2rem;
}

.icon_medal {
  background-image: url(../images/icon_medal.png);
}

.icon_cat {
  background-image: url(../images/icon_folder.png);
}

.icon_tag {
  background-image: url(../images/icon_tag.png);
}

.icon_pen {
  background-image: url(../images/icon_pen.png);
}

.pnavi {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10rem;
  gap: 2rem;
}

.pnavi a,
.pnavi span {
  display: grid;
  place-content: center;
  width: 2em;
  aspect-ratio: 1/1;
  border-radius: 10000px;
}

.pnavi a:hover,
.pnavi span {
  background: var(--color-red);
  color: #fff;
}

.pnavi .next,
.pnavi .prev {
  display: none;
}


/* post_nav */
.post_nav {
  padding-top: 40px;
  padding-bottom: 80px;
  text-align: center;
}

.post_nav span {
  display: block;
}


.post_nav .nav_label {
  font-size: 12px;
  opacity: .6;
}



@media screen and (max-width:768px) {
  .breadcrumbs {
    width: 100%;
    margin-top: 40px;
  }

  .post_inner {
    flex-wrap: wrap;
    width: 100%;
    gap: 0;
  }

  .post_left {
    width: 100%;
  }

  .post_right {
    width: 100%;
    padding-top: 80px;
    margin-bottom: 100px;
  }


  .post_list li {
    width: 100%;
    min-width: unset;
  }

  .post_right .post_list {
    gap: 40px 20px;
    margin-bottom: 80px;
  }

  .post_right .post_list li,
  .top .post_list li {
    width: 100%;
  }



  .post_right .post_list li:not(:first-child) {
    width: calc((100% - 20px) / 2);
  }

  .pnavi {
    gap: 1rem;
    margin: 5rem 0;
  }

  .cat_list {
    margin-bottom: 80px;
  }

}

/*================================================
*  detail_cnt
================================================*/
.detail_cnt * {
  font-family: 'Noto Sans JP', Arial, Verdana, 游ゴシック, YuGothic, 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', メイリオ, Meiryo, sans-serif;
}

.detail_cnt {
  padding-bottom: 80px;
  border-bottom: 1px solid rgb(90 90 90 / 30%);
}



.detail_cnt .post_ttl {
  min-height: unset;
  margin-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-darkgray);
  font-size: 26px;
}

.detail_cnt .post_date {
  margin: 10px 0 60px;
}

.detail_cnt img {
  height: auto;
}

.detail_cnt .thumbnail {
  margin: 20px 0 40px;
}

.detail_cnt h2,
.detail_cnt h3,
.detail_cnt h4,
.detail_cnt h5,
.detail_cnt p {
  margin-bottom: 1.5em;
}

/* 余白 */
.detail_cnt figure {
  margin-bottom: 2em;
}

.detail_cnt .wp-block-list,
.detail_cnt .wp-block-details,
.detail_cnt .wp-block-preformatted,
.detail_cnt .wp-block-pullquote,
.detail_cnt .wp-block-table,
.detail_cnt pre.wp-block-verse,
.detail_cnt .wp-block-audio,
.detail_cnt .wp-block-cover,
.detail_cnt .wp-block-file,
.detail_cnt .wp-block-media-text {
  margin-bottom: 2em;
}

.detail_cnt .wp-block-buttons {
  margin-top: 2em;
}

.detail_cnt .wp-block-archives li,
.detail_cnt .wp-block-categories li,
.detail_cnt .wp-block-list li {
  margin-bottom: 10px;
}

.detail_cnt ul.wp-block-list li {
  position: relative;
  padding-left: 1em;
}

.detail_cnt ul.wp-block-list li::before {
  position: absolute;
  content: "・";
  left: 0;
  top: 0;
  color: var(--color-red);
}

.detail_cnt ol.wp-block-list li {
  position: relative;
  margin-left: 1.5em;
}

.detail_cnt blockquote.wp-block-quote {
  font-style: italic;
  background: var(--color-postgray);
  padding: 10px;
  margin-bottom: 2em;
}

.detail_cnt blockquote.wp-block-quote p:first-of-type {
  margin-top: 0;
}

.detail_cnt blockquote.wp-block-quote p:last-of-type {
  margin-bottom: 0;
}


.detail_cnt .wp-block-archives li,
.detail_cnt .wp-block-categories li {
  position: relative;
  padding-left: 1.5em;
}

.detail_cnt .wp-block-archives li::before,
.detail_cnt .wp-block-categories li::before {
  position: absolute;
  content: "ー";
  left: 0;
  top: 0;
}

/* 引用 */
.detail_cnt .wp-block-pullquote {
  font-size: 1em !important;
  padding: 15px !important;
  background: var(--color-postgray);
}

.detail_cnt .wp-block-pullquote cite {
  opacity: .7;
}

.detail_cnt .wp-block-details {
  background: var(--color-postgray);
  padding: 10px;
}

.detail_cnt .wp-block-details summary {
  padding: 10px;
  background: #fff;
}

/* テーブル */
.detail_cnt .wp-block-table thead,
.detail_cnt .wp-block-table tfoot {
  border: none;
  background: var(--color-postgray);
}

.detail_cnt .wp-block-table td,
.detail_cnt .wp-block-table th {
  border: 1px solid #aeaeae;
}


.detail_cnt .wp-calendar-table a {
  color: var(--color-red);
  text-decoration: underline;
}

.detail_cnt select#wp-block-archives-2 {
  display: block;
  width: 100%;
  padding: 10px;
  margin: 10px 0 40px;
}

/* block-column */
.detail_cnt .wp-block-column {
  padding: 20px 0;
}

.detail_cnt .has-background {
  padding-left: 10px;
  padding-right: 10px;
}

.detail_cnt .wp-block-columns {
  gap: 10px !important;
}

.detail_cnt .wp-block-columns:has(> div.wp-block-column:nth-child(2):nth-last-child(1)) {
  gap: 20px 30px !important;
}

.detail_cnt .wp-block-columns:has(> div.wp-block-column:nth-child(3):nth-last-child(1)) {
  gap: 20px 20px !important;
}

.detail_cnt .wp-block-columns:has(> div.wp-block-column:nth-child(4):nth-last-child(1)) {
  gap: 15px !important;
}




/* テキスト要素 */
.detail_cnt h2 {
  font-size: 26px;
  margin-bottom: 40px;
  border-left: 6px solid var(--color-red);
  padding-left: 10px;
  color: unset;
}

.detail_cnt h2::before {
  content: none;
}

.detail_cnt h3 {
  font-size: 22px;
  border-bottom: 2px solid rgb(90 90 90 / 30%);
  padding-bottom: 6px;
  position: relative;
  text-align: unset;
}

.detail_cnt h3::before {
  position: absolute;
  content: "";
  width: 100px;
  height: 2px;
  left: 0;
  bottom: -2px;
  background: var(--color-red);
}

.detail_cnt h4 {
  font-size: 18px;
  background: #f2f2f2;
  padding: 4px 10px 4px 15px;
  position: relative;
}

.detail_cnt h4::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 60%;
  left: -1px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-red);

}

.detail_cnt h5 {
  font-size: 16px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgb(90 90 90 / 30%);
}

.detail_cnt p {
  margin-top: 1em;
  font-weight: 400;
}

.detail_cnt a[data-type="link"] {
  color: var(--color-red);
  text-decoration: underline;
}

.detail_cnt hr {
  border-top: 1px solid rgb(90 90 90 / 30%);
  margin: 40px 0;
}





/* 目次 */
.detail_cnt #ez-toc-container {
  width: 100%;
  padding: 30px;
  background: #f4f4f4;
  border: none;
  margin-bottom: 60px;
}

.detail_cnt #ez-toc-container .ez-toc-js-icon-con,
.detail_cnt #ez-toc-container .ez-toc-toggle label,
.detail_cnt .ez-toc-cssicon {
  border: 1px solid #fff;
  background: #fff;
}

.detail_cnt #ez-toc-container li {
  margin-top: 10px;
  font-size: 1em;
}


.detail_cnt #ez-toc-container {
  width: 100%;
  padding: 30px;
  background: #f4f4f4;
  border: none;
  margin-bottom: 60px;
}

.detail_cnt #ez-toc-container .ez-toc-js-icon-con,
.detail_cnt #ez-toc-container .ez-toc-toggle label,
.detail_cnt .ez-toc-cssicon {
  border: 1px solid #fff;
  background: #fff;
}

.detail_cnt #ez-toc-container li {
  margin-top: 10px;
  font-size: 1em;
}

/* fuki */
.detail_cnt .fuki {
  background: var(--color-postgray);
  padding: 20px;
  margin: 30px 0;
  width: calc(100% - 60px);
  position: relative;
}

.detail_cnt .fuki_right {
  margin-left: auto;
}

.detail_cnt .fuki::before {
  position: absolute;
  content: "";
  width: 2rem;
  height: 2rem;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background: var(--color-postgray);
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
}

.detail_cnt .fuki_right::before {
  clip-path: polygon(0 50%, 100% 100%, 100% 0);
  right: auto;
  left: -2rem;
}


/* faq-block */
.detail_cnt .faq-block {
  margin: 30px 0;
}

.detail_cnt .faq-block dt,
.detail_cnt .faq-block dd {
  position: relative;
  padding-left: 40px;
}

.detail_cnt .faq-block dt::before,
.detail_cnt .faq-block dd::before {
  position: absolute;
  content: "Q";
  top: 0;
  left: 0;
  width: 30px;
  aspect-ratio: 1/1;
  display: grid;
  place-content: center;
  background: #9d9d9d;
  color: #fff;
  border-radius: 1000px;
  line-height: 1;
  font-family: 'Montserrat', sans-serif;
}

.detail_cnt .faq-block dd::before {
  content: "A";
  background: var(--color-red);
}

.detail_cnt .faq-block dt {
  margin-bottom: 20px;
}

.detail_cnt .faq-block dd {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgb(90 90 90 / 30%);
}


/* disc-block */
.detail_cnt .disc-block {
  margin: 30px 0;
}

.detail_cnt .disc-block dt {
  padding-left: 20px;
  border-left: 1px solid;
}

.detail_cnt .disc-block dd {
  padding: 20px;
  margin-bottom: 10px;
}


/* disc-block */
.detail_cnt .cap-block {
  margin: 30px 0;
}

.detail_cnt .cap-block .cap-ttl {
  padding: 5px 10px;
  background: var(--color-dark);
  color: #fff;
}

.detail_cnt .cap-block .cap-txt {
  padding: 20px;
  border: 1px solid rgb(90 90 90 / 30%);
}



@media screen and (max-width:768px) {
  .detail_cnt .post_ttl {
    font-size: 22px;
    margin-top: 10px;
    padding-bottom: 10px;
  }

  .detail_cnt .post_date {
    margin: 10px 0 40px;
  }

  /* テキスト要素 */
  .detail_cnt h2 {
    font-size: 22px;
  }


  .detail_cnt h3 {
    font-size: 20px;
  }

  .detail_cnt h4 {
    font-size: 16px;
  }

  .detail_cnt h5 {
    font-size: 14px;
  }

  .detail_cnt .cap-block .cap-txt {
    padding: 20px 15px;
  }
}

/*================================================
*  about
================================================*/
.connection_post .post_list {
  display: block;
}

.connection_post ul li {
  width: 100%;
  margin-top: 30px;
}

.connection_post ul li a {
  display: flex;
  align-items: center;
}

.connection_post ul li a .thumbnail {
  width: 30%;
}

.connection_post ul li a .post_meta {
  width: 70%;
  padding-left: 20px;
}

.connection_post ul li a .post_ttl {
  min-height: unset;
  margin-bottom: 10px;
}

@media screen and (max-width:768px) {
  .connection_post ul li a {
    flex-wrap: wrap;
    align-items: start;
  }

  .connection_post ul li a .post_meta {
    /* width: 100%; */

  }
}

/*================================================
*  about
================================================*/


@media screen and (max-width:768px) {}

/*================================================
*  about
================================================*/


@media screen and (max-width:768px) {}

/*================================================
*  about
================================================*/


@media screen and (max-width:768px) {}

/*================================================
*  about
================================================*/


@media screen and (max-width:768px) {}