.t-article {
  border-radius: var(--round-m);
  background: var(--color-white-900);
  -webkit-box-shadow: 0 14px 60px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 14px 60px 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.t-article__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-padding-before: clamp(3.2rem, 1.9368421053rem + 5.3894736842vw, 8rem);
          padding-block-start: clamp(3.2rem, 1.9368421053rem + 5.3894736842vw, 8rem);
  -webkit-padding-after: clamp(3.2rem, 2.0947368421rem + 4.7157894737vw, 7.4rem);
          padding-block-end: clamp(3.2rem, 2.0947368421rem + 4.7157894737vw, 7.4rem);
  padding-inline: clamp(1.6rem, 0.6526315789rem + 4.0421052632vw, 5.2rem);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(1.5rem, 1.1842105263rem + 1.3473684211vw, 2.7rem);
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  position: relative;
}
.t-article__header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  inset: 0;
  z-index: 0;
  background-image: url(/koseikai/assets/image/news/noiz.png);
  background-repeat: repeat;
  background-position: top left;
  background-size: auto;
  pointer-events: none;
  background-size: 70px auto;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .t-article__header {
    padding-block: 3.2rem;
    padding-inline: 1.6rem;
  }
}

.t-article__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--size-2xs);
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  position: relative;
  z-index: 10;
}
.t-article__info span {
  font-size: var(--font-size-m);
  color: rgba(85, 85, 85, 0.36);
  -webkit-transform: translateY(-0.075em);
          transform: translateY(-0.075em);
}
@media screen and (max-width: 768px) {
  .t-article__info {
    gap: 0.6rem;
  }
}

.t-article-date,
.t-article-cate {
  color: var(--color-black-500);
  font-family: var(--font-basic);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-std);
  position: relative;
  --em: 0.5em;
  line-height: 1.6;
}
.t-article-date::before, .t-article-date::after,
.t-article-cate::before,
.t-article-cate::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}
.t-article-date::before,
.t-article-cate::before {
  margin-top: calc((1 - 1.6) * var(--em));
}
.t-article-date::after,
.t-article-cate::after {
  margin-bottom: calc((1 - 1.6) * var(--em));
}
@media screen and (max-width: 768px) {
  .t-article-date,
  .t-article-cate {
    font-size: 1.2rem;
  }
}

.t-article-tag a {
  border-radius: var(--round-max);
  background: var(--color-black-100);
  color: var(--color-brand-primary);
  text-decoration: none;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 0.7rem 1.2rem;
  display: block;
  font-family: var(--font-heading);
  font-size: var(--font-size-2xs);
  font-weight: var(--font-weight-heading);
  line-height: 1;
}
.t-article-tag:hover a {
  color: var(--color-white-900);
  background: var(--color-brand-primary);
  border: 1px solid var(--color-brand-primary);
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

.t-article-cate-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--size-2xs);
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  z-index: 1;
  border-top: 1px solid #E9E9E9;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 1.6rem;
}

.t-article-heading {
  color: var(--Global-font-color-title, #222);
  font-family: var(--font-basic);
  font-size: clamp(2rem, 1.5263157895rem + 2.0210526316vw, 3.8rem);
  font-weight: var(--font-weight-std);
  position: relative;
  --em: 0.5em;
  line-height: 1.4;
  z-index: 10;
}
.t-article-heading::before, .t-article-heading::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}
.t-article-heading::before {
  margin-top: calc((1 - 1.4) * var(--em));
}
.t-article-heading::after {
  margin-bottom: calc((1 - 1.4) * var(--em));
}
@media screen and (max-width: 768px) {
  .t-article-heading {
    font-size: 2.2rem;
  }
}

.t-article__body {
  padding-top: var(--size-l);
  padding-bottom: var(--size-xl);
  padding-inline: clamp(1.6rem, 0.6526315789rem + 4.0421052632vw, 5.2rem);
}
@media screen and (max-width: 768px) {
  .t-article__body {
    padding-top: 4.8rem;
    padding-bottom: 5.2rem;
    padding-inline: 1.6rem;
  }
}

.t-editor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.4rem;
}

.t-editor {
  font-size: var(--font-size-m);
  font-family: var(--font-basic);
  font-weight: var(--font-weight-std);
  letter-spacing: 0.02em;
  text-align: justify;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .t-editor {
    font-size: 1.3rem;
  }
}

.t-editor p {
  font-size: var(--font-size-m);
  font-family: var(--font-basic);
  font-weight: var(--font-weight-std);
  letter-spacing: 0.02em;
  text-align: justify;
  position: relative;
}
@media screen and (max-width: 768px) {
  .t-editor p {
    font-size: 1.3rem;
  }
}

.t-page-editor > p:not([class]):not(:has(img)),
.t-page-editor .c-section > p:not([class]):not(:has(img)) {
  position: relative;
  --em: 0.5em;
  line-height: 1.8;
}
.t-page-editor > p:not([class]):not(:has(img))::before, .t-page-editor > p:not([class]):not(:has(img))::after,
.t-page-editor .c-section > p:not([class]):not(:has(img))::before,
.t-page-editor .c-section > p:not([class]):not(:has(img))::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}
.t-page-editor > p:not([class]):not(:has(img))::before,
.t-page-editor .c-section > p:not([class]):not(:has(img))::before {
  margin-top: calc((1 - 1.8) * var(--em));
}
.t-page-editor > p:not([class]):not(:has(img))::after,
.t-page-editor .c-section > p:not([class]):not(:has(img))::after {
  margin-bottom: calc((1 - 1.8) * var(--em));
}

.t-editor h2 {
  color: var(--color-brand-primary);
  font-family: var(--font-b);
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-b);
  border-bottom: 2px solid rgba(193, 180, 153, 0.34);
  margin-bottom: 1.1rem;
  padding-bottom: 2.1rem;
  position: relative;
  --em: 0.5em;
  line-height: 1.4;
}
.t-editor h2::before, .t-editor h2::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}
.t-editor h2::before {
  margin-top: calc((1 - 1.4) * var(--em));
}
.t-editor h2::after {
  margin-bottom: calc((1 - 1.4) * var(--em));
}
.t-editor * + h2 {
  margin-top: clamp(2.4rem, 1.7947368421rem + 2.5824561404vw, 4.7rem);
}
@media screen and (max-width: 768px) {
  .t-editor h2 {
    font-size: 1.8rem;
    padding-bottom: 1.6rem;
    margin-bottom: 0.8rem;
  }
  .t-editor * + h2 {
    margin-top: 2.4rem;
  }
}

.t-editor h3 {
  margin-bottom: 0.8rem;
  padding: 1.5rem 1.6rem 1.3rem;
  border-radius: var(--round-xs);
  background: rgba(31, 166, 77, 0.14);
  color: var(--color-brand-primary);
  font-family: var(--font-b);
  font-weight: var(--font-weight-b);
  font-size: var(--font-size-l);
  position: relative;
  --em: 0.5em;
  line-height: 1.6;
}
.t-editor h3::before, .t-editor h3::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}
.t-editor h3::before {
  margin-top: calc((1 - 1.6) * var(--em));
}
.t-editor h3::after {
  margin-bottom: calc((1 - 1.6) * var(--em));
}
.t-editor * + h3 {
  margin-top: clamp(1.2rem, 1.1473684211rem + 0.2245614035vw, 1.4rem);
}
@media screen and (max-width: 768px) {
  .t-editor h3 {
    padding: 1.3rem 1.2rem 1.1rem;
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
  }
  .t-editor * + h3 {
    margin-top: 1.2rem;
  }
}

.t-editor h4 {
  color: var(--font-color-standard);
  font-family: var(--font-heading);
  font-size: var(--font-size-m);
  font-weight: var(--font-weight-heading);
  position: relative;
  --em: 0.5em;
  line-height: 1.8;
  letter-spacing: 0.02em;
}
.t-editor h4::before, .t-editor h4::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}
.t-editor h4::before {
  margin-top: calc((1 - 1.8) * var(--em));
}
.t-editor h4::after {
  margin-bottom: calc((1 - 1.8) * var(--em));
}
.t-editor * + h4 {
  margin-top: clamp(0rem, -0.1315789474rem + 0.5614035088vw, 0.5rem);
}
@media screen and (max-width: 768px) {
  .t-editor h4 {
    font-size: 1.3rem;
  }
  .t-editor * + h4 {
    margin-top: 0;
  }
}

.t-editor ul, .t-editor ol {
  margin-top: 0.4rem;
}

.t-editor table:not([class]) td {
  table-layout: fixed;
  inline-size: 100%;
  -webkit-border-start: 1px solid var(--color-table-border);
          border-inline-start: 1px solid var(--color-table-border);
  -webkit-border-before: 1px solid var(--color-table-border);
          border-block-start: 1px solid var(--color-table-border);
  border-spacing: 0;
}
.t-editor table:not([class]) tbody th,
.t-editor table:not([class]) tbody td {
  vertical-align: middle;
  -webkit-border-end: 1px solid var(--color-table-border);
          border-inline-end: 1px solid var(--color-table-border);
  -webkit-border-after: 1px solid var(--color-table-border);
          border-block-end: 1px solid var(--color-table-border);
  padding: 1.6rem 2rem 1.2rem;
  font-size: var(--font-size-xs);
  line-height: var(--lineheight16);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  word-break: auto-phrase;
  text-align: left;
}

.t-wp-editor-table {
  overflow-x: auto;
  white-space: nowrap;
  display: block;
  height: auto !important;
  padding-bottom: 0.3rem;
}
.t-wp-editor-table .simplebar-content {
  padding-bottom: 10px;
}

.t-editor img {
  overflow: hidden;
  border-radius: var(--round-xs);
  margin-block: clamp(0.2rem, 0.1473684211rem + 0.2245614035vw, 0.4rem);
  height: auto;
  display: block;
}

.t-editor img.alignleft {
  float: left;
  margin-bottom: 1.7rem;
}
.t-editor img.alignleft + img.alignleft {
  margin-left: 2rem;
  margin-right: 0;
}
@media screen and (max-width: 639px) {
  .t-editor img.alignleft {
    float: none;
    display: block;
    width: 100%;
    margin-right: 0;
    margin-bottom: 1.2rem;
    text-align: center;
  }
  .t-editor img.alignleft + img.alignleft {
    margin-left: 0;
  }
}
.t-editor img.alignright {
  float: right;
  margin-bottom: 1.7rem;
}
.t-editor img.alignright + img.alignright {
  margin-right: 2rem;
  margin-left: 0;
}
@media screen and (max-width: 639px) {
  .t-editor img.alignright {
    float: none;
    display: block;
    width: 100%;
    margin-left: 0;
    margin-bottom: 1.2rem;
    text-align: center;
  }
}

.t-editor p:has(span) img.alignleft:last-of-type {
  margin-right: 2rem;
}
.t-editor p:has(span) img.alignright:last-of-type {
  margin-left: 2rem;
}
@media screen and (max-width: 639px) {
  .t-editor p:has(span) img.alignleft:last-of-type {
    margin-right: 0;
  }
  .t-editor p:has(span) img.alignright:last-of-type {
    margin-left: 0;
  }
}

.t-editor p:has(img.aligncenter) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2rem;
}
.t-editor p:has(img.aligncenter) img.aligncenter {
  height: auto;
}
@media screen and (max-width: 639px) {
  .t-editor p:has(img.aligncenter) {
    display: block;
  }
  .t-editor p:has(img.aligncenter) img.aligncenter {
    margin-bottom: 1.2rem;
    width: 100%;
  }
}

.t-editor iframe {
  aspect-ratio: 16/9;
  height: auto;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .t-editor iframe {
    width: 100%;
  }
}