.pageTtlArea {
  margin-bottom: 60px;
}
@media screen and (min-width: 1024px) {
  .pageTtlArea {
    margin-bottom: 118px;
  }
}

.categories {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  grid-gap: 10px;
}

.category {
  padding: 5px 16px;
  background-color: var(--main);
  border-radius: 30px;
  color: #fff;
  font-size: 12px;
  --lh: 1.3;
  display: block;
}

.newsPost__inner {
  max-width: 900px;
}
.newsPost__header {
  width: 100%;
  margin-bottom: 34px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  grid-gap: 30px;
}
.newsPost__header_meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  grid-gap: 15px;
}
.newsPost__header_meta .date {
  font-size: 14px;
}
.newsPost__header_ttl {
  font-size: 20px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .newsPost__header {
    margin-bottom: 24px;
    grid-gap: 16px;
  }
  .newsPost__header_ttl {
    font-size: 28px;
  }
}
@media screen and (min-width: 1024px) {
  .newsPost__header_ttl {
    font-size: 32px;
  }
}
.newsPost__body_img {
  width: 100%;
  margin-bottom: 60px;
  border: 1px solid #CACACA;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .newsPost__body_img {
    margin-bottom: 40px;
  }
}
.newsPost__body_contents {
  width: 100%;
  --lh: 1.8;
}
.newsPost__body_contents h2 {
  border-bottom: 1px solid var(--text);
  font-size: 24px;
  font-weight: 700;
}
.newsPost__body_contents h2:not(:first-child) {
  margin-top: 26px;
}
.newsPost__body_contents h2:not(:last-child) {
  margin-bottom: 26px;
}
.newsPost__body_contents h3 {
  padding-left: 24px;
  font-size: 18px;
  font-weight: 700;
  position: relative;
}
.newsPost__body_contents h3::before {
  content: "";
  width: 16px;
  height: 16px;
  background-color: var(--main);
  border-radius: 50%;
  display: block;
  position: absolute;
  top: calc((1.8em - 16px) / 2);
  left: 0;
}
.newsPost__body_contents h3:not(:first-child) {
  margin-top: 14px;
}
.newsPost__body_contents h3:not(:last-child) {
  margin-bottom: 14px;
}
.newsPost__body_contents h4 {
  font-size: 16px;
  font-weight: 700;
  position: relative;
}
.newsPost__body_contents h4:not(:first-child) {
  margin-top: 14px;
}
.newsPost__body_contents h4:not(:last-child) {
  margin-bottom: 14px;
}
.newsPost__body_contents p:not(:first-child) {
  margin-top: 24px;
}
.newsPost__body_contents p:not(:last-child) {
  margin-bottom: 24px;
}
.newsPost__body_contents p a {
  color: var(--main);
  text-decoration: underline;
}
.newsPost__body_contents p a:hover {
  text-decoration: none;
}
.newsPost__body_contents ul:not(:first-child) {
  margin-top: 16px;
}
.newsPost__body_contents ul:not(:last-child) {
  margin-bottom: 24px;
}
.newsPost__body_contents ul > li {
  padding-left: 12px;
  position: relative;
}
.newsPost__body_contents ul > li::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: var(--main);
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 10.4px;
  left: 0;
}
.newsPost__body_contents ul > li:not(:last-child) {
  margin-bottom: 4px;
}
.newsPost__body_contents ol {
  counter-reset: list 0;
}
.newsPost__body_contents ol:not(:first-child) {
  margin-top: 16px;
}
.newsPost__body_contents ol:not(:last-child) {
  margin-bottom: 24px;
}
.newsPost__body_contents ol:has(li:nth-child(10)) > li {
  padding-left: 16px;
}
.newsPost__body_contents ol > li {
  padding-left: 12px;
  position: relative;
}
.newsPost__body_contents ol > li::before {
  counter-increment: list 1;
  content: counter(list) ".";
  position: absolute;
  top: 0;
  left: 0;
}
.newsPost__body_contents ol > li:not(:last-child) {
  margin-bottom: 4px;
}
.newsPost__body_contents figure:not(:first-child) {
  margin-top: 24px;
}
.newsPost__body_contents figure:not(:last-child) {
  margin-bottom: 24px;
}
.newsPost__body_contents figure img {
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .newsPost__body_contents h2 {
    font-size: 28px;
  }
  .newsPost__body_contents h2:not(:first-child) {
    margin-top: 20px;
  }
  .newsPost__body_contents h2:not(:last-child) {
    margin-bottom: 20px;
  }
  .newsPost__body_contents h3 {
    font-size: 20px;
  }
  .newsPost__body_contents h3:not(:first-child) {
    margin-top: 20px;
  }
  .newsPost__body_contents h3:not(:last-child) {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .newsPost__body_contents h2 {
    font-size: 32px;
  }
  .newsPost__body_contents h3 {
    font-size: 24px;
  }
}
.newsPost__btnWrap {
  width: 100%;
  max-width: 211px;
  margin: 60px auto 80px;
}
.newsPost__btnWrap .btn {
  flex-direction: row-reverse;
}
@media screen and (min-width: 768px) {
  .newsPost__btnWrap {
    margin: 80px auto 160px 0;
  }
}

.secForm {
  max-width: 1200px;
  padding: 65px 0 80px;
  margin: 0 auto 120px;
  background-color: #f6f6f6;
  border-radius: 4px;
}
@media screen and (min-width: 768px) {
  .secForm {
    padding-top: 62px;
    margin-bottom: 140px;
  }
}
@media screen and (min-width: 1024px) {
  .secForm {
    margin-bottom: 160px;
  }
}
.secForm .secForm__inner {
  max-width: 1000px;
}
.secForm .secForm__inputWrap input[type=text], .secForm .secForm__inputWrap [type=tel], .secForm .secForm__inputWrap [type=email], .secForm .secForm__inputWrap textarea {
  background-color: #fff;
}

.secArchive {
  padding-bottom: 125px;
}
@media screen and (min-width: 1024px) {
  .secArchive {
    padding-bottom: 145px;
  }
}
.secArchive__inner {
  grid-gap: 62px;
}
@media screen and (min-width: 1024px) {
  .secArchive__inner {
    grid-gap: 98px;
  }
}
.secArchive__newsList {
  width: 100%;
  margin: -16px 0 0;
  display: grid;
  grid-gap: 60px;
}
@media screen and (min-width: 768px) {
  .secArchive__newsList {
    margin-top: 0;
    grid-gap: 25px;
  }
}
.secArchive__newsList .listItem {
  width: 100%;
  padding: 0 0 20px;
  border-bottom: 1px solid var(--text);
}
@media screen and (min-width: 768px) {
  .secArchive__newsList .listItem {
    padding-bottom: 20px;
  }
}
.secArchive__newsList .listItem__link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  grid-gap: 15px;
}
.secArchive__newsList .listItem__link:hover .listItem__linkTxt {
  color: var(--main);
}
.secArchive__newsList .listItem__link:hover .listItem__linkTxt::after {
  background-color: var(--main);
}
@media screen and (min-width: 768px) {
  .secArchive__newsList .listItem__link {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    grid-gap: 40px;
  }
}
.secArchive__newsList .listItem__txtWrap {
  width: 100%;
  --lh: 1.8;
  display: grid;
  grid-gap: 10px;
}
.secArchive__newsList .listItem__txtWrap_header {
  display: flex;
  align-items: center;
  grid-gap: 10px;
}
.secArchive__newsList .listItem__txtWrap_header .date {
  font-size: 14px;
  --lh: 1.5;
}
.secArchive__newsList .listItem__txtWrap_header .category {
  padding: 4px 16px;
  background-color: var(--main);
  border-radius: 30px;
  color: #fff;
  font-size: 12px;
  --lh: 1.3;
}
.secArchive__newsList .listItem__txtWrap_ttl {
  margin-bottom: 6px;
  font-weight: 700;
}
.secArchive__newsList .listItem__txtWrap_txt {
  font-size: 14px;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .secArchive__newsList .listItem__txtWrap {
    width: 66.6667%;
  }
}
.secArchive__newsList .listItem__linkTxt {
  width: 100%;
  font-size: 12px;
  --lh: 1;
  text-align: right;
  display: inline-flex;
  align-items: center;
  grid-gap: 16px;
  transition: 0.3s;
}
.secArchive__newsList .listItem__linkTxt::after {
  content: "";
  width: 16px;
  height: 16px;
  background-color: var(--text);
  border-radius: 50%;
  display: block;
}
@media screen and (min-width: 768px) {
  .secArchive__newsList .listItem__linkTxt {
    width: auto;
    flex-shrink: 0;
  }
}