@charset "utf-8";

/* --------------------------------------------

お知らせ

---------------------------------------------- */

.post_list {
  display: flex;
  flex-wrap: wrap;
}

.post_item {
  width: 100%;
  margin: 0px auto;
  padding: 16px 0px;
}

.post_item:not(:nth-last-of-type(1)) {
  border-bottom: 1px dashed #A0A0A0;
}

.post_item a {
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
  width: 100%;
  padding: 24px 48px;
  cursor: pointer;
}

.post_item dt {
  width: 260px;
}

.post_item dt time {
  display: inline-block;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
}

.post_item dd {
  width: calc(100% - 260px);
}

.post_item dd p {
  font-size: 2rem;
  font-weight: bold;
}

@media only screen and (max-width:640px) {
  .post_list {
    padding: 60px 3%;
  }

  .post_item {}

  .post_item a {
    flex-wrap: wrap;
    padding: 24px 24px;
  }

  .post_item dt {
    width: 100%;
  }

  .post_item dt .postCtg {}

  .post_item dt time {}

  .post_item dd {
    width: calc(100% - 0px);
    margin-top: 12px;
  }

  .post_item dd p {
    font-size: 1.8rem;
  }
}









/* --------------------------------------------


.pagination


---------------------------------------------- */
.pagination {
  margin: 48px auto;
  text-align: center;
}

.pagination .nav-links {
  display: flex;
  justify-content: center;
}

.pagination .linkBtn a::after {}

.pagination .page-numbers.current,
.pagination .page-numbers,
.pagination .page-back {
  position: relative;
  display: block;
  text-align: center;
  width: 64px;
  height: 64px;
  margin: 0 4px;
  font-size: 2.2rem;
  line-height: 64px;
  transition: 0.3s;
}

.pagination .page-numbers {
  background-color: rgba(0, 0, 0, 0);
}

.pagination .page-numbers.prev,
.pagination .page-numbers.next {
  width: 64px;
  height: 64px;
  font-size: 1.2rem;
  background-color: rgba(0, 0, 0, 0);
  background-image: url(../_image/common/icon-arrow.svg);
  background-size: 65%;
  background-position: center;
  background-repeat: no-repeat;
}

.pagination .page-numbers.prev {
  transform: rotate(180deg);
}

.pagination .page-back {
  width: 64px;
  background: #ffffff;
  text-decoration: underline;
}

.pagination .page-numbers.current {
  color: #F36200;
  background-image: url(../_image/common/baum-01.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 75%;
}


@media only screen and (max-width:640px) {

  .pagination .page-numbers.current,
  .pagination .page-numbers,
  .pagination .page-back {
    font-size: 1.6rem;
  }

  .pagination .page-numbers.prev,
  .pagination .page-numbers.next {}


}



.post_pagination {
  display: flex;
  display: none;
  justify-content: center;
  margin: 0px 0;
}

.post_pagination div {
  margin: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: 0.3s;
}

.post_pagination div:hover {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.11);
}

.post_pagination div a {
  display: flex;
  align-items: center;
  padding: 0 25px;
  font-size: 1.3rem;
  line-height: 6;
}

.post_pagination div a::before,
.post_pagination div a::after {
  display: inline-block;
  vertical-align: middle;
  font-size: 0.6em;
  transform: rotate(30deg);
  opacity: 0.4;
}

.post_pagination__left a::before {
  content: "▲";
}

.post_pagination__right a::after {
  content: "▼";
}

.post_pagination div a span {
  display: inline-block;
  width: 270px;
  padding: 0 15px;
  white-space: nowrap;
  text-align: center;
  text-overflow: ellipsis;
  overflow: hidden;
}


@media only screen and (max-width:640px) {
  .post_pagination div a span {
    width: 170px;
    height: 3.2em;
    line-height: 1.6;
    margin: 15px 0;
    white-space: normal;
    text-overflow: inherit;
    overflow: hidden;
  }

}






.post_pagination-archive a {
  position: relative;
  display: block;
  margin: 0 auto;
  text-align: center;
  width: 16em;
  height: 3.6em;
  font-size: 1.8rem;
  line-height: 3.6;
  transition: 0.3s;
  border-bottom: 1px solid #484848;
  cursor: pointer;
}

.post_pagination-archive a:hover {
  border-bottom: 1px solid rgba(239, 239, 239, 0.65);
}

@media only screen and (max-width:640px) {
  .post_pagination-archive a {
    width: 10em;
  }
}




/* --------------------------------------------


詳細ページ


---------------------------------------------- */
.post_detail {
  display: flex;
  flex-wrap: wrap;
  width: 90%;
  max-width: 1140px;
  margin: 96px auto;
  padding: 60px 6%;
  background-color: #fff;
  border-radius: 30px;
}

.post_detail_head {
  width: 100%;
}

.post_detail_type {
  display: inline-block;
  width: 8em;
  margin-right: 24px;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.8;
  color: #F36200;
  background: #FEE6C8;
  border-radius: 2em;
}

.post_detail_type.postCtg-media {
  background: #FEDD8E;
}


.post_detail_head time {
  font-size: 1.7rem;
  color: #F36200;

}

.post_detail_head h1 {
  margin: 12px 0 96px;
  font-size: 2.6rem;
}

.post_detail_thum {
  display: none;
  margin: 50px auto;
}

.post_detail_thum img {}


@media only screen and (max-width:640px) {
  .post_detail_head h1 {}
}





/* --------------------------------------------


記事ページ　共通装飾


---------------------------------------------- */
.post_detail img {
  max-width: 100%;
  height: auto;
}

.post_detail p {
  margin: 0;
}

.post_detail a {
  text-decoration: underline;
}

.post_detail figure {}

.post_detail a[target="_blank"] {}

.post_detail a[target="_blank"]::after {
  content: "";
  display: inline-block;
  width: 1.6rem;
  height: 1.6rem;
  margin: 0.2em 0.2em 0 0.2em;
  vertical-align: top;
  background-image: url(../_image/common/link-blank.svg);
  background-size: cover;
}

@media only screen and (max-width:640px) {
  .post_detail {
    margin: 140px auto 140px;
  }
}



/* 目次 ---------------------------------------------- */
.post_detail #toc_container {
  position: relative;
  min-width: 100%;
  padding: 20px;
  background: #F5EEE1;
  border-radius: 0.4rem;
  border: none;
}

.post_detail #toc_container * {
  /*
	background: rgba(255, 0, 0, 0.1);*/
}

.post_detail #toc_container::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  display: block;
  background: #F5EEE1;
  border: 2px dotted #e0c289;
  border-radius: 0.3rem;
  z-index: 1;
}

.post_detail #toc_container .toc_title {
  position: relative;
  color: #0A1B4B;
  font-size: 1.6rem;
  text-align: left;
  z-index: 2;
}

.post_detail #toc_container .toc_title::before {
  content: "";
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  vertical-align: middle;
  margin: -0.38rem 1rem 0 0;
  background-image: url(../_image/common/toc_title.svg);
  background-repeat: no-repeat;
  background-size: cover;
}

.post_detail #toc_container .toc_list {
  position: relative;
  z-index: 2;
}

.post_detail #toc_container .toc_list ul {
  margin-left: 0 !important;
}

.post_detail #toc_container .toc_list ul li {
  padding-left: 10px;
}

.post_detail #toc_container .toc_list li a {
  position: relative;
  display: inline-block;
  padding: 0rem 0rem 0.3rem 1em;
  color: #3C3C3C;
}

.post_detail #toc_container .toc_list li a::before {
  content: "▶︎";
  position: absolute;
  top: 0.0rem;
  left: 0;
  display: block;
  color: #a39874;
  transform: scale(0.5, 0.6);
}

.post_detail #toc_container .toc_list li a:hover {
  text-decoration: underline;
}

.post_detail #toc_container .toc_list li a .toc_number {
  display: none;
}


@media only screen and (max-width:640px) {

  .post_detail #toc_container {}

}




/* buttons ---------------------------------------------- */
.wp-block-buttons {
  width: 100%;
}

.wp-block-button {
  width: 100%;
  max-width: 360px;
  margin: 7px 0 !important;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background: #e6e6e6;
  border-radius: 10px;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.15);
}

.wp-block-button__link {
  background: none;
}

.wp-block-button a,
.wp-block-button a[target="_blank"] {
  display: block;
  padding: 15px 25px 15px 0;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--c-green);
  text-align: center;
  text-decoration: none;
  transition: 0.3s;
}

.wp-block-button a::after,
.wp-block-button a[target="_blank"]::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5em);
  right: 1em;
  display: block;
  width: 1.1em;
  height: 1.1em;
  background-image: url(../_image/common/arrow-circle-b.svg);
}

.wp-block-button a:hover {
  opacity: 0.6;
}

.wp-block-button:hover::after {
  transform: translateX(3px);
  filter: invert(100) contrast(1);
}

.wp-block-button .wp-block-button__link[target="blank"]::after {
  top: calc(50% - 0.5em);
  width: 1.3em;
  height: 1.3em;
  background-image: url(../_image/common/icon-linkBlank.svg);
}

.wp-block-button:hover .wp-block-button__link[target="blank"]::after {
  transform: translateX(0px);
}


@media only screen and (max-width:640px) {
  .wp-block-buttons {}

  .wp-block-button {
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 8px 0 rgba(0, 0, 0, 0.15);
  }


  .wp-block-button a,
  .wp-block-button a[target="_blank"] {
    font-size: 1.6rem;
  }

  .wp-block-button::after {
    top: calc(50% - 0.5em);
    right: 1em;
    width: 1em;
    height: 1em;
  }

}






/* table ---------------------------------------------- */

.post_detail table {
  min-width: 100%;
  margin: 0px auto;
  line-height: 1.5;
  font-size: 1.4rem;
  border-collapse: collapse;
  border: #c8c8c8 0px solid;
}

.post_detail table p {}

.post_detail table tbody {
  min-width: 100%;
}

.post_detail table th,
.post_detail table td {
  padding: 1.0em 1.2rem;
  border: #c8c8c8 1px solid;
  vertical-align: middle;
  text-align: center;
  /*text-align: justify;*/
}

.post_detail table thead th,
.post_detail table thead td {
  padding: 0.8em 1.2rem;
  font-weight: 500;
  font-size: 1.1em;
  border-bottom-color: #a79b94;
}

.post_detail table thead {
  border-bottom: 2px solid #a79b94 !important;
}

.post_detail table tfoot {
  border-top: 2px solid #a79b94 !important;
}

.post_detail table th,
.post_detail table tbody tr th {
  background-color: #e6e6e6;
}




/* ul ---------------------------------------------- */
.post_detail ul {
  position: relative;
  margin: 20px auto;
}

.post_detail ul ul {
  margin: 0;
  padding: 0;
}

.post_detail ul li {
  position: relative;
  padding: 0.3rem 0 0.3rem 1.2em;
  text-align: justify;
}

.post_detail ul li::before {
  content: "";
  display: inline-block;
  width: 0.8rem;
  height: 0.8rem;
  margin: -0.5rem 0.4em 0 -1em;
  vertical-align: middle;
  background: #a79b94;
  border-radius: 50%;
}

/* figure ---------------------------------------------- */
.post_detail figure {}

.post_detail figcaption {
  font-size: 1.4rem;
}


/* ol ---------------------------------------------- */
.post_detail ol {
  position: relative;
  counter-reset: num;
  list-style-type: none !important;
  margin: 20px auto;
}

.post_detail ol ol {
  margin: 0;
  padding: 0;
}

.post_detail ol li {
  position: relative;
  padding: 0.3rem 0 0.3rem 2.5rem;
}

.post_detail ol li:before {
  position: absolute;
  top: 0.4rem;
  counter-increment: num;
  content: counter(num);
  display: inline-block;
  background: #a79b94;
  color: #FFF;
  font-size: 1.5rem;
  border-radius: 50%;
  left: 0;
  width: 2rem;
  height: 2rem;
  font-weight: 400;
  line-height: 2rem;
  text-align: center;
}


/* 文章 ---------------------------------------------- */
.post_detail p strong {
  margin: 0 3px;
  font-weight: 500;
  opacity: 0.6;
  background: linear-gradient(transparent 80%, #ffcc90 0%);
}

/* 見出し ---------------------------------------------- */
.post_detail h2 {
  padding: 1.8rem 1rem;
  margin: 3em 0 1em;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.4;
  color: #b9b0a9;
  border-top: 3px solid #a79b94;
  border-bottom: 3px solid #a79b94;
}

.post_detail h3 {
  padding: 1.6rem;
  margin: 3em 0 1em;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.4;
  color: #7e7168;
  background-color: #eae6e3;
}

.post_detail h4 {
  position: relative;
  padding: 0 1rem 1rem;
  margin: 3em 0 1em;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
  border-bottom: 4px solid #e6e6e4;
}

.post_detail h4::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 30%;
  height: 4px;
  background: #a79b94;
}

.post_detail h5 {
  margin: 3em 0 1em;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
}

.post_detail h5::before {
  content: "";
  display: inline-block;
  width: 0.5rem;
  height: 3rem;
  margin: -0.5rem 1.3rem 0 0;
  vertical-align: middle;
  background-color: #a79b94;
}

.post_detail h6 {
  margin: 3em 0 1em;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.4;
  color: #a79b94;
}

.post_detail h6::before {
  content: "";
  display: inline-block;
  width: 1.0rem;
  height: 1.0rem;
  margin: -0.5rem 1rem 0 0;
  vertical-align: middle;
  background-color: #a79b94;
  border: 4px solid #e6e5c4;
  border-radius: 50%;
}

.post_detail h7 {
  margin: 3em 0 1em;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.4;
  color: #18A7AF;
}

.post_detail h7::before {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 2px;
  margin: -0.3rem 0.8rem 0 0;
  vertical-align: middle;
  background: #18A7AF;
}


@media only screen and (max-width:640px) {
  .post_detail h2 {
    font-size: 1.8rem;
  }

  .post_detail h3 {
    font-size: 1.7rem;
  }

  .post_detail h4 {
    font-size: 1.7rem;
  }

  .post_detail h5 {
    font-size: 1.7rem;
  }

  .post_detail h6 {
    font-size: 1.7rem;
  }
}


/* iframe ---------------------------------------------- */
.post_detail iframe,
.post_detail .twitter-tweet {
  display: block;
  margin: 10px auto !important;
}

.post_detail figure.is-type-wp-embed iframe {
  pointer-events: none;
}


/* image ---------------------------------------------- */
.wp-block-image {
  margin: 40px auto;
}

.wp-block-image img {
  width: auto;
}

.wp-block-image.size-large img {
  display: block;
  margin: auto;
}

@media only screen and (max-width:640px) {
  .wp-block-image img {
    width: 100%;
  }
}


/* 文字サイズ ---------------------------------------------- */
.has-medium-font-size {
  font-size: 2.2rem;
}

.has-small-font-size {
  font-size: 1.4rem;
}


@media only screen and (max-width:640px) {
  .has-medium-font-size {
    font-size: 2.2rem !important;
  }

  .has-small-font-size {
    font-size: 1.4rem !important;
  }

}





/* --------------------------------------------

お知らせ

---------------------------------------------- */


@media only screen and (max-width:640px) {}




/* --------------------------------------------

お知らせ

---------------------------------------------- */


@media only screen and (max-width:640px) {}




/* --------------------------------------------

お知らせ

---------------------------------------------- */


@media only screen and (max-width:640px) {}