/* Containers*/

.l-container {
  margin: 0 auto;
  max-width: 92%;
  width: 1000px;
}

.l-container--660 {
  width: 660px;
}

.l-section {
  margin-bottom: 150px;
}

@media only screen and (max-width: 1024px) {
  .l-section {
    margin-bottom: 100px;
  }
}

@media only screen and (max-width: 767px) {
  .l-section {
    margin-bottom: 72px;
  }
}

.l-section-small {
  margin-bottom: 100px;
}

@media only screen and (max-width: 1024px) {
  .l-section-small {
    margin-bottom: 72px;
  }
}

@media only screen and (max-width: 767px) {
  .l-section-small {
    margin-bottom: 56px;
  }
}

.l-section-xs {
  margin-bottom: 56px;
}

@media only screen and (max-width: 767px) {
  .l-section-xs {
    margin-bottom: 48px;
  }
}

@media only screen and (max-width: 556px) {
  .l-section-xs {
    margin-bottom: 24px;
  }
}

/* Components */
.c-no-result {
  height: 250px;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 1.6rem;
  font-style: italic;
  text-align: center
}

.c-no-result--primary {
  color: #595857
}

@media only screen and (max-width: 767px) {
  .c-no-result {
    font-size: 1.4rem;
    height: 200px
  }
}

.c-news-keywords {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  font-family: "kozuka-mincho-pro", "游明朝", YuMincho, "Yu Mincho",
    "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝",
    serif;
  line-height: 1.75;
}

@media only screen and (max-width: 767px) {
  .c-news-keywords {}
}

.c-news-keywords__title {
  font-size: 1.4rem;
  color: #898989;
  margin-bottom: 0.75em;
}

.c-news-keywords__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(8.35em, 1fr));
  font-size: 1.3rem;
  row-gap: 0.75em;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .c-news-keywords__grid {
    width: 100%;
    font-size: 1.2rem;
  }
}

.c-news-keywords__grid--not-stretch {
  grid-template-columns: repeat(auto-fit, minmax(7.25em, 1fr));
}

@media only screen and (max-width: 767px) {
  .c-news-keywords__grid--not-stretch {
    grid-template-columns: repeat(auto-fit, minmax(8.35em, 1fr));
  }
}

@media only screen and (max-width: 556px) {
  .c-news-keywords__grid--not-stretch {}
}

.c-news-keywords__grid::after {
  position: absolute;
  width: 1px;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #898989;
  display: block;
  content: "";
}

.c-news-keywords__item {}

.c-news-keywords__link {
  height: 100%;
  padding: 0 0.5em;
  display: block;
  /*min-width: 8.35em;*/
  width: 100%;
  text-align: center;
  color: #231f20;
  border-left: 1px solid rgba(35, 25, 22, 0.25);
  position: relative;
  transition: 0.6s ease-in-out;
}

.c-news-keywords__link--full {
  padding: 0.5em 0.5em 0.25em;
}

.c-news-keywords__link:hover,
.c-news-keywords__link:focus {
  opacity: 1;
  color: #fff;
  text-decoration: none;

}

.c-news-keywords__link:hover img,
.c-news-keywords__link:focus img {
  opacity: 1;
}

.c-news-keywords__link.is-active {
  color: #fff;
  pointer-events: none;
}

.c-news-keywords__link::after {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #36312f;
  top: 0;
  left: 0;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: right;
  -ms-transform-origin: right;
  transform-origin: right;
  -webkit-transition-timing-function: inherit;
  transition-timing-function: inherit;
  -webkit-transition-duration: inherit;
  transition-duration: inherit;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  z-index: -5;
}

.c-news-keywords__link:hover::after {
  -webkit-transform: unset;
  -ms-transform: unset;
  transform: unset;
  -webkit-transform-origin: left;
  -ms-transform-origin: left;
  transform-origin: left;
}

.c-news-keywords__link.is-active::after {
  -webkit-transform: unset;
  -ms-transform: unset;
  transform: unset;
  background-color: #cc3627;
}

.c-news-keywords__logo-wrap {
  aspect-ratio: 85/28;
  width: 100%;
  max-height: 29px;
  margin-bottom: 0.25em;
}

.c-news-keywords__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Section */
.p-oyakudachi-archive {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 42px;
  -webkit-column-gap: 24px;
  -moz-column-gap: 24px;
  column-gap: 24px;
}

@media only screen and (max-width: 767px) {
  .p-oyakudachi-archive {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 32px;
    -webkit-column-gap: 4vw;
    -moz-column-gap: 4vw;
    column-gap: 4vw;
  }
}

@media only screen and (max-width: 556px) {
  .p-oyakudachi-archive {
    grid-template-columns: 1fr;
    row-gap: 32px;
    -webkit-column-gap: 4vw;
    -moz-column-gap: 4vw;
    column-gap: 4vw;
  }
}

/* Archive card */
.c-oyakudachi-card {
  font-size: 1.2rem;
  font-family: "Noto Sans JP", "Yu Gothic", "游ゴシック体", YuGothic,
    "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo,
    sans-serif;
  color: #231f20;
}

.c-oyakudachi-card:hover,
.c-oyakudachi-card:focus {
  text-decoration: none;
  color: #231f20;
}

.c-oyakudachi-card:hover img {
  opacity: 1;
}

.c-oyakudachi-card__image {
  aspect-ratio: 316/244;
  overflow: hidden;
}

.c-oyakudachi-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: 0.6s ease-in-out transform;
  transition: 0.6s ease-in-out transform;
}

.c-oyakudachi-card:hover .c-oyakudachi-card__image img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.c-oyakudachi-card__title {
  font-size: 1.42em;
  font-weight: 700;
  margin-top: 0.5em;
  margin-bottom: 0.25em;
  letter-spacing: 0.05em;
  line-height: 1.75;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.c-oyakudachi-card__tags {
  margin: 0;
  line-height: 1.75;
  font-weight: 400;
}

/* Tags */
.c-tags {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1em;
  letter-spacing: 0.05em;
  font-size: 0.875em;
}

.c-tags__link {
  position: relative;
  transition: 0.6s ease-in-out;
  color: #231f20;
}

.c-tags__link:hover,
.c-tags__link:focus {
  opacity: 1;
  text-decoration: none;
  color: #3f3b3a;
}

.c-tags__link::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  display: block;
  content: "";
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: right;
  -ms-transform-origin: right;
  transform-origin: right;
  -webkit-transition: inherit;
  transition: inherit;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.c-tags__link:hover::after {
  -webkit-transform: unset;
  -ms-transform: unset;
  transform: unset;
  -webkit-transform-origin: left;
  -ms-transform-origin: left;
  transform-origin: left;
}

/* Single page */
.c-post-single {
  font-family: "Noto Sans JP", "Yu Gothic", "游ゴシック体", YuGothic,
    "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo,
    sans-serif;
  font-size: 1.6rem;
}

@media only screen and (max-width: 767px) {
  .c-post-single {
    font-size: 1.4rem;
  }
}

.c-post-single__header {
  margin-bottom: 56px;
}

@media only screen and (max-width: 767px) {
  .c-post-single__header {
    margin-bottom: 36px;
  }
}

.c-post-single__meta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.25em 1.4em;
  -webkit-box-align: first baseline;
  -webkit-align-items: first baseline;
  -ms-flex-align: first baseline;
  align-items: first baseline;
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .c-post-single__meta {
    font-size: 1.4rem;
  }
}

.c-post-single__time {
  letter-spacing: 0.06em;
  font-size: 0.875em;
  font-weight: 700;
}

.c-post-single__location,
.c-post-single__category {
  letter-spacing: 0.02em;
}

.c-post-single__category {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0;
}

.c-post-single__category-link {
  position: relative;
  color: #231f20;
}

.c-post-single__category-link:hover,
.c-post-single__category-link:focus {
  opacity: 1;
  color: #3f3b3a;
  text-decoration: none;
}

.c-post-single__category-link::before {
  content: "# ";
}

.c-post-single__category-link::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0;
  background-color: currentColor;
  position: absolute;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: right;
  -ms-transform-origin: right;
  transform-origin: right;
  -webkit-transition: -webkit-transform 1s ease-in-out;
  transition: -webkit-transform 1s ease-in-out;
  transition: transform 1s ease-in-out;
  transition: transform 1s ease-in-out, -webkit-transform 1s ease-in-out;
}

.c-post-single__category-link:hover::after {
  -webkit-transform: unset;
  -ms-transform: unset;
  transform: unset;
  -webkit-transform-origin: left;
  -ms-transform-origin: left;
  transform-origin: left;
}

.c-post-single__title {
  font-weight: 700;
  font-size: 2.5rem;
  letter-spacing: 0.14em;
  text-align: center;
  -webkit-font-feature-settings: "pwid";
  font-feature-settings: "pwid";
  padding: 0.75em 0 0.35em;
  border-bottom: 1px solid rgba(114, 114, 114, 0.5);
  line-height: 1.2;
  font-family: "kozuka-mincho-pro", "游明朝", YuMincho, "Yu Mincho",
    "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝",
    serif;
}

@media only screen and (max-width: 767px) {
  .c-post-single__title {
    font-size: 2rem;
  }
}

.c-post-single__thumb {
  display: block;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 56px;
}

@media only screen and (max-width: 767px) {
  .c-post-single__thumb {
    margin-bottom: 36px;
  }
}

.c-post-single__other-posts-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  grid-template-columns: repeat(3, 1fr);
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 48px min(45px, 4.737vw);
}

.c-post-single__other-posts-item {
  max-width: 286px;
  min-width: 250px;
  width: 100%;
}

.c-post-single__cta {
  display: block;
  margin: 56px auto 0;
  letter-spacing: 0.04em;
  font-weight: 700;
  padding: 0.875em 1.75em;
  border-radius: 1.75em;
  border: 1px solid #3f3b3a;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 12.6875em;
  text-align: center;
  overflow: hidden;
  -webkit-transition-duration: 1.2s;
  transition-duration: 1.2s;
  position: relative;
  color: #231f20;
}

.c-post-single__cta::before {
  z-index: -5;
  width: 100%;
  height: 100%;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #3f3b3a;
  -webkit-clip-path: circle(0 at 50% 50%);
  clip-path: circle(0 at 50% 50%);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition: 1.6s ease clip-path, 1s ease-in-out opacity;
  transition: 1.6s ease clip-path, 1s ease-in-out opacity;
}

.c-post-single__cta:hover,
.c-post-single__cta:focus {
  opacity: 1;
  text-decoration: none;
}

.c-post-single__cta:hover::before {
  opacity: 1;
  -webkit-clip-path: circle(150% at 50% 50%);
  clip-path: circle(150% at 50% 50%);
}

@media only screen and (max-width: 767px) {
  .c-post-single__cta {
    margin-top: 36px;
    font-size: 1.4rem;
  }
}

.c-post-single__cta:hover,
.c-post-single__cta:focus {
  opacity: 1;
  color: #fff;
  text-decoration: none;
}

.c-post-single__tags {
  text-align: right;
  -webkit-box-pack: end;
  -webkit-justify-content: end;
  -ms-flex-pack: end;
  justify-content: end;
  margin-top: 1em;
}

@media only screen and (max-width: 767px) {
  .c-post-single__tags {
    font-size: 1.4rem;
  }
}

/* Wordpress Gutenberg */

.c-wp-content {
  font-size: 1.6rem;
  text-underline-offset: .25em
}

@media only screen and (max-width: 767px) {
  .c-wp-content {
    font-size: 1.4rem
  }
}

.c-wp-content--15 {
  font-size: 1.5rem
}

@media only screen and (max-width: 767px) {
  .c-wp-content--15 {
    font-size: 1.3rem
  }
}

.c-wp-content--palt {
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt"
}

.c-wp-content .wp-block-heading {
  margin-bottom: 28px;
  word-break: break-all
}

@media only screen and (max-width: 767px) {
  .c-wp-content .wp-block-heading {
    margin-bottom: 16px
  }
}

.c-wp-content .wp-block-heading+.wp-block-heading {
  margin-top: unset
}

@media only screen and (max-width: 767px) {
  .c-wp-content .wp-block-heading+.wp-block-heading {
    margin-top: unset
  }
}

.c-wp-content *:first-child {
  margin-top: 0
}

.c-wp-content *:last-child {
  margin-bottom: 0
}

.c-wp-content h1 {
  font-size: min(2.8rem, 4vw);
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: .2em;
  color: #005baa
}

@media only screen and (max-width: 767px) {
  .c-wp-content h1 {
    letter-spacing: .1em
  }
}

.c-wp-content h2 {
  font-size: 1.25em;
  font-weight: 700;
  background-color: #3f3b3a;
  color: #fff;
  padding: .85em .8em;
  line-height: 1.5;
  letter-spacing: .1em;
  position: relative
}

@media only screen and (max-width: 767px) {
  .c-wp-content h2 {
    font-size: 2rem
  }
}

.c-wp-content h3 {
  font-size: 1.25em;
  font-weight: 700;
  color: #3f3b3a;
  padding: 0 .8em .85em;
  line-height: 1.5;
  letter-spacing: .1em;
  position: relative;
  border-bottom: 1px solid
}

@media only screen and (max-width: 767px) {
  .c-wp-content h3 {
    font-size: 2rem
  }
}

.c-wp-content h4 {
  font-size: 1.125em;
  padding: .25em .875em;
  position: relative;
  color: #3f3b3a
}

.c-wp-content h4::after {
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0;
  display: block;
  content: "";
  position: absolute;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(65%, currentColor), color-stop(65%, #fff));
  background-image: -webkit-linear-gradient(left, currentColor 65%, #fff 65%);
  background-image: linear-gradient(to right, currentColor 65%, #fff 65%);
  background-size: .5em 1px;
  background-repeat: repeat
}

.c-wp-content h5 {
  font-size: 1.125em;
  padding: .25em .875em;
  position: relative
}

.c-wp-content h5::after {
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0;
  display: block;
  content: "";
  position: absolute;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(65%, currentColor), color-stop(65%, #fff));
  background-image: -webkit-linear-gradient(left, currentColor 65%, #fff 65%);
  background-image: linear-gradient(to right, currentColor 65%, #fff 65%);
  background-size: .35em 1px;
  background-repeat: repeat
}

.c-wp-content h6 {
  font-weight: 700;
  font-size: 1em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: #3f3b3a
}

.c-wp-content h6::before,
.c-wp-content h6::after {
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  background-color: currentColor;
  opacity: 75%;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  max-width: 13.125em
}

.c-wp-content h6::before {
  margin-right: 12px
}

@media only screen and (max-width: 767px) {
  .c-wp-content h6::before {
    margin-right: 10px
  }
}

.c-wp-content h6::after {
  margin-left: 12px
}

@media only screen and (max-width: 767px) {
  .c-wp-content h6::after {
    margin-left: 10px
  }
}

.c-wp-content .wp-block-image {
  margin-bottom: 0
}

.c-wp-content figure {
  margin: 28px 0
}

@media only screen and (max-width: 767px) {
  .c-wp-content figure {
    margin: 16px 0
  }
}

.c-wp-content .wp-block-column figure:not(.aligncenter) {
  margin: 0
}

@media only screen and (max-width: 767px) {
  .c-wp-content .wp-block-column figure:not(.aligncenter) {
    margin: 0
  }
}

@media only screen and (max-width: 781px) {
  .c-wp-content .wp-block-columns.is-reversed-stack {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse
  }
}

.c-wp-content ul.wp-block-list {
  list-style: none;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  font-size: 1em;
  letter-spacing: .02em
}

.c-wp-content ul.wp-block-list:first-child {
  margin-top: 0
}

.c-wp-content ul.wp-block-list:last-child {
  margin-bottom: 0
}

.c-wp-content ul.wp-block-list li .rich-text {
  display: inline
}

.c-wp-content ul.wp-block-list li::before {
  content: "・";
  font-size: 1em
}

.c-wp-content ul.wp-block-list .wp-block-list {
  margin: 0
}

@media only screen and (max-width: 767px) {
  .c-wp-content ul.wp-block-list .wp-block-list {
    margin: 0
  }
}

.c-wp-content ul.wp-block-list .wp-block-list li {
  margin-left: 1em
}

.c-wp-content ul.wp-block-list .wp-block-list li::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: .125em;
  height: .125em;
  aspect-ratio: 1;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid currentColor;
  border-radius: 50%;
  margin-right: .4375em;
  margin-left: .4375em
}

.c-wp-content--palt ul.wp-block-list li::before {
  -webkit-font-feature-settings: initial;
  font-feature-settings: initial
}

.c-wp-content ol.wp-block-list {
  list-style: none;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  font-size: 1em;
  letter-spacing: .02em;
  counter-reset: numbered-list
}

.c-wp-content ol.wp-block-list:first-child {
  margin-top: 0
}

.c-wp-content ol.wp-block-list:last-child {
  margin-bottom: 0
}

.c-wp-content ol.wp-block-list li {
  counter-increment: numbered-list
}

.c-wp-content ol.wp-block-list li .rich-text {
  display: inline
}

.c-wp-content ol.wp-block-list li::before {
  content: "(" counter(numbered-list) ") ";
  font-size: 1em
}

.c-wp-content p {
  font-size: 1em;
  letter-spacing: .02em;
  margin: 1.25em 0
}

.c-wp-content p+.wp-block-list {
  margin-top: 0
}

@media only screen and (max-width: 767px) {
  .c-wp-content p+.wp-block-list {
    margin-top: 0
  }
}

.c-wp-content p:has(+.wp-block-list) {
  margin-bottom: 0
}

@media only screen and (max-width: 767px) {
  .c-wp-content p:has(+.wp-block-list) {
    margin-bottom: 0
  }
}

.c-wp-content p a {
  text-decoration: underline
}

.c-wp-content p a:hover,
.c-wp-content p a:focus {
  opacity: 1;
  color: #898989;
  text-decoration: none;
}

.c-wp-content .wp-block-details {
  margin: 8px auto;
  interpolate-size: allow-keywords
}

.c-wp-content .wp-block-details summary {
  color: #3f3b3a;
  padding: 5px 0 6px;
  list-style: none;
  font-size: 2rem;
  position: relative;
  cursor: pointer;
  -webkit-transition: .5s all ease-in-out;
  transition: .5s all ease-in-out;
  border-bottom: 1px dotted #3f3b3a
}

.c-wp-content .wp-block-details summary::-webkit-details-marker,
.c-wp-content .wp-block-details summary::marker {
  display: none
}

.c-wp-content .wp-block-details summary::after {
  width: 1em;
  height: .75em;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background-color: #3f3b3a;
  -webkit-transition: .6s all ease-in-out;
  transition: .6s all ease-in-out;
  content: "";
  display: inline-block;
  margin-left: .5em
}

.c-wp-content .wp-block-details summary+ul,
.c-wp-content .wp-block-details summary+ol,
.c-wp-content .wp-block-details summary+p,
.c-wp-content .wp-block-details summary+figure {
  margin-top: .75em
}

@media only screen and (max-width: 767px) {

  .c-wp-content .wp-block-details summary+ul,
  .c-wp-content .wp-block-details summary+ol,
  .c-wp-content .wp-block-details summary+p,
  .c-wp-content .wp-block-details summary+figure {
    margin-top: .75em
  }
}

.c-wp-content .wp-block-details::details-content {
  -webkit-transition: block-size .6s, content-visibility .6s allow-discrete;
  transition: block-size .6s, content-visibility .6s allow-discrete;
  overflow: hidden;
  block-size: 0
}

.c-wp-content .wp-block-details[open] summary {
  border-color: #3f3b3a
}

.c-wp-content .wp-block-details[open] summary::after {
  -webkit-transform: rotateX(180deg);
  transform: rotateX(180deg)
}

.c-wp-content .wp-block-details[open]::details-content {
  block-size: auto
}

.c-wp-content .wp-block-table table {
  min-width: 600px;
  max-width: calc(100% - 1px);
  line-height: inherit
}

.c-wp-content .wp-block-table table td {
  height: 3.33em;
  padding: .25em 2em;
  border: 1px solid #3f3b3a
}

@media only screen and (max-width: 767px) {
  .c-wp-content .wp-block-table table td {
    padding: .25em .75em
  }
}

.c-wp-content .wp-block-table table tbody tr {
  border: 1px solid #3f3b3a;
  -webkit-transition: .3s ease background-color;
  transition: .3s ease background-color
}

.c-wp-content .wp-block-table table thead {
  background-color: #3f3b3a;
  color: #fff;
  border-bottom: 0
}

.c-wp-content .wp-block-table table thead tr {
  border: 1px solid #3f3b3a;
  -webkit-transition: .3s ease background-color;
  transition: .3s ease background-color
}

.c-wp-content .wp-block-table table thead th {
  height: 3.5em;
  border: 0;
  font-size: 1.6rem;
  padding: .25em 2em
}

@media only screen and (max-width: 767px) {
  .c-wp-content .wp-block-table table thead th {
    font-size: 1.4rem;
    padding: .25em .75em
  }
}

.c-wp-content .wp-block-table figcaption {
  font-size: 1.4rem;
  margin: 8px 0
}

@media only screen and (max-width: 767px) {
  .c-wp-content .wp-block-table figcaption {
    font-size: 1.2rem
  }
}

.c-wp-content .wp-block-quote {
  padding-left: 1.5em;
  position: relative;
  overflow: hidden;
  border-left: 0;
  margin-top: 28px;
  margin-bottom: 28px;
  color: #595857
}

@media only screen and (max-width: 767px) {
  .c-wp-content .wp-block-quote {
    margin-top: 16px;
    margin-bottom: 16px
  }
}

.c-wp-content .wp-block-quote::before,
.c-wp-content .wp-block-quote::after {
  position: absolute
}

.c-wp-content .wp-block-quote::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='%23777777'%3E%3Cpath d='M9.983 3v7.391C9.983 16.095 6.252 19.961 1 21l-.995-2.151C2.437 17.932 4 15.211 4 13H0V3h9.983zM24 3v7.391c0 5.704-3.748 9.571-9 10.609l-.996-2.151C16.437 17.932 18 15.211 18 13h-3.983V3H24z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='%23777777'%3E%3Cpath d='M9.983 3v7.391C9.983 16.095 6.252 19.961 1 21l-.995-2.151C2.437 17.932 4 15.211 4 13H0V3h9.983zM24 3v7.391c0 5.704-3.748 9.571-9 10.609l-.996-2.151C16.437 17.932 18 15.211 18 13h-3.983V3H24z'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  width: .75em;
  height: .75em;
  background-color: currentColor;
  left: 0;
  top: .25em;
  content: "";
  display: block
}

.c-wp-content .wp-block-quote::after {
  content: "";
  left: .3125em;
  top: 1.75em;
  width: 1px;
  height: 100%;
  background-color: currentColor
}

.c-wp-content .wp-block-quote p {
  margin: 0;
  font-style: italic
}

.c-wp-content .wp-block-quote p+p {
  margin-top: 1em
}

.c-wp-content .wp-block-image img {
  -o-object-fit: contain;
  object-fit: contain
}

.c-wp-content .wp-block-file {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 1.25em 0
}

.c-wp-content .wp-block-file__content-wrapper {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column
}

.c-wp-content .wp-block-file a {
  font-size: 1.5rem;
  line-height: 1.5;
  line-height: 1.75;
  margin: unset
}

@media only screen and (max-width: 767px) {
  .c-wp-content .wp-block-file a {
    font-size: 1.4rem
  }
}

.c-wp-content .wp-block-file a:hover {
  opacity: 1
}

.c-wp-content .wp-block-file__button-richtext-wrapper {
  margin-left: 0;
  margin-top: 1em
}

.c-wp-content .wp-block-file a.wp-block-file__button,
.c-wp-content .wp-block-file__button {
  padding: 11px 12px 12px;
  text-align: center;
  min-width: 162px;
  background-color: #fff;
  border: 1px solid #3f3b3a;
  border-radius: 0;
  color: #3f3b3a;
  font-weight: 500;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content
}

@media only screen and (max-width: 767px) {

  .c-wp-content .wp-block-file a.wp-block-file__button,
  .c-wp-content .wp-block-file__button {
    padding: 10px 11px 11px;
    min-width: 156px
  }
}

.c-wp-content .wp-block-file a.wp-block-file__button:hover,
.c-wp-content .wp-block-file__button:hover {
  background-color: #3f3b3a;
  color: #fff
}

.c-wp-content .wp-block-file a+a {
  margin-top: 1em
}

.c-wp-content .wp-indented-paragraph {
  text-indent: -2em;
  padding-left: 2em
}