@charset "UTF-8";
/* category
======================================= */
.category__inner {
  padding-bottom: 3.75em;
}
@media (max-width: 768px) {
  .category__inner {
    padding-bottom: 1.875em;
  }
}
.category__container {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.category__title {
  font-size: 1.5em;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #566272;
  padding: 1.25rem 2.5rem 1.25rem 1.5rem;
  cursor: pointer;
}
@media (max-width: 768px) {
  .category__title {
    font-size: 1.25em;
    padding: 1.25rem 1rem 1.25rem 1.25rem;
  }
}
.category__title::after {
  content: "";
  display: block;
  width: 1.828125rem;
  height: 1.828125rem;
  transform: rotate(180deg);
  transition: 0.3s;
  background: url(../img/common/icons/circle_arrow-white.svg) no-repeat center center/auto;
}
.category__title.is-open::after {
  transform: rotate(0deg);
}
.category__list {
  display: none;
  padding: 2.5rem 1.875rem 3.125rem;
}
@media (max-width: 768px) {
  .category__list {
    padding: 1.875rem 1.25rem;
  }
}
.category__item:nth-child(n+2) {
  margin-top: 3.125rem;
}
.category__item-form {
  border: 1px solid #aaa;
  padding: 0.46875rem 1rem 0.46875rem 1.5rem;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
}
.category__item-form input[type=text] {
  width: calc(100% - 2.5rem);
}
.category__item-form input[type=text]::placeholder {
  color: #aaa;
}
.category__item-heading {
  font-size: 1.25em;
  line-height: 1;
  font-weight: 600;
  color: #EC4851;
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  .category__item-heading {
    font-size: 1em;
    margin-bottom: 1.5rem;
  }
}
.category__item-item.--cols {
  display: flex;
  align-items: flex-start;
}
@media (max-width: 1024px) {
  .category__item-item.--cols {
    flex-direction: column;
  }
}
.category__item-item:nth-child(n+2) {
  margin-top: 1.75rem;
}
.category__item-item-title {
  font-size: 1.25em;
  font-weight: 600;
  color: #566272;
  cursor: pointer;
  transition: opacity 0.3s;
}
.category__item-item-title:hover {
  opacity: 0.7;
}
@media (max-width: 768px) {
  .category__item-item-title {
    font-size: 1em;
  }
}
.category__item-item-title.--col {
  width: 15.625%;
  min-width: 140px;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .category__item-item-title.--col {
    width: 100%;
    margin-bottom: 1rem;
  }
}
.category__item-item-radios {
  display: flex;
  gap: 1.25em;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .category__item-item-radios {
    gap: 0.9375rem 0.625rem;
  }
}
.category__item-item-radios.--col {
  width: 82.8125%;
}
@media (max-width: 1024px) {
  .category__item-item-radios.--col {
    width: 100%;
  }
}
.category__item-item-radios label {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: 1px solid #aaa;
  border-radius: 5px;
  padding: 0.5625rem 1.5rem;
  cursor: pointer;
  line-height: 1;
  font-weight: 500;
  position: relative;
}
@media (max-width: 768px) {
  .category__item-item-radios label {
    font-size: 0.875em;
    padding: 0.5625rem 0.9375rem;
    border-radius: 30px;
  }
}
.category__item-item-radios label::before, .category__item-item-radios label::after {
  content: "";
  display: block;
}
@media (max-width: 768px) {
  .category__item-item-radios label::before, .category__item-item-radios label::after {
    display: none;
  }
}
.category__item-item-radios label::before {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 1px solid #aaa;
}
@media (max-width: 768px) {
  .category__item-item-radios label::before {
    width: 20px;
    height: 20px;
  }
}
.category__item-item-radios label::after {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: calc(1.5rem + 12.5px);
  width: 12px;
  height: 12px;
  border-radius: 10px;
  background-color: #fff;
  transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
  .category__item-item-radios label::after {
    left: calc(0.9375rem + 10px);
    width: 10px;
    height: 10px;
  }
}
.category__item-item-radios input[type=radio],
.category__item-item-radios input[type=checkbox] {
  opacity: 0;
  position: absolute;
}
.category__item-item-radios input[type=radio]:checked + label,
.category__item-item-radios input[type=checkbox]:checked + label {
  background-color: #EC4851;
  color: #fff;
  font-weight: 600;
}
@media (max-width: 768px) {
  .category__item-item-radios input[type=radio]:checked + label,
  .category__item-item-radios input[type=checkbox]:checked + label {
    border: 1px solid #EC4851;
  }
}
.category__item-item-radios input[type=radio]:checked + label::before,
.category__item-item-radios input[type=checkbox]:checked + label::before {
  background-color: #EC4851;
  border: 2.5px solid #fff;
}
.category__item-item-radios input[type=radio]:checked + label::after,
.category__item-item-radios input[type=checkbox]:checked + label::after {
  opacity: 1;
}
.category__item-item-checkboxes {
  display: flex;
  gap: 1.25em;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .category__item-item-checkboxes {
    gap: 0.9375rem 0.625rem;
  }
}
.category__item-item-checkboxes label {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: 1px solid #aaa;
  border-radius: 5px;
  padding: 0.5625rem 1.5rem;
  cursor: pointer;
  line-height: 1;
  font-weight: 500;
  position: relative;
}
@media (max-width: 768px) {
  .category__item-item-checkboxes label {
    font-size: 0.875em;
    padding: 0.5625rem 0.9375rem;
  }
}
.category__item-item-checkboxes label::before, .category__item-item-checkboxes label::after {
  content: "";
  display: block;
}
.category__item-item-checkboxes label::before {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 1px solid #aaa;
}
@media (max-width: 768px) {
  .category__item-item-checkboxes label::before {
    width: 20px;
    height: 20px;
  }
}
.category__item-item-checkboxes label::after {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: calc(1.5rem + 12.5px);
  width: 12px;
  height: 12px;
  border-radius: 10px;
  background-color: #fff;
  transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
  .category__item-item-checkboxes label::after {
    left: calc(0.9375rem + 10px);
    width: 10px;
    height: 10px;
  }
}
.category__item-item-checkboxes input[type=checkbox] {
  opacity: 0;
  position: absolute;
}
.category__item-item-checkboxes input[type=checkbox]:checked + label {
  background-color: #EC4851;
  color: #fff;
  font-weight: 600;
}
.category__item-item-checkboxes input[type=checkbox]:checked + label::before {
  background-color: #EC4851;
  border: 2.5px solid #fff;
}
.category__item-item-checkboxes input[type=checkbox]:checked + label::after {
  opacity: 1;
}

.jumokusou__item {
  background-color: #ffffff;
  padding: 1.25em;
  border-radius: 10px;
}

.archive__title {
  margin-bottom: 5em;
}
.archive__inner {
  padding-top: 6.25em;
}
@media (max-width: 768px) {
  .archive__inner {
    padding-top: 2.5em;
  }
}
.archive__more {
  width: 175px;
  margin: 0 auto;
  display: block;
}
@media (max-width: 768px) {
  .archive__more > span {
    justify-content: center;
  }
}
.archive__more > span::after {
  display: none;
}

.works__inner {
  padding-top: 0;
}
.works__title {
  margin-bottom: 2em;
}
.works__group {
  scroll-margin-top: calc(156px + 1em);
}
@media (max-width: 768px) {
  .works__group {
    scroll-margin-top: calc(68px + 0.75em);
  }
}
.works__group + .works__group {
  margin-top: 5em;
}
@media (max-width: 768px) {
  .works__group + .works__group {
    margin-top: 2.5em;
  }
}

/* お知らせアーカイブ
========================================= */
.archive-page {
  padding-bottom: 6.25em;
}
@media (max-width: 768px) {
  .archive-page {
    padding-bottom: 3.75em;
  }
}
.archive-page__inner {
  padding-top: 0;
}

.news-archive__list {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.news-archive__item {
  margin: 0;
  padding: 0 2em;
  border-bottom: 1px solid #ffffff;
}
@media (max-width: 768px) {
  .news-archive__item {
    padding: 0 1.25em;
  }
}
.news-archive__item:first-child {
  border-top: 1px solid #ffffff;
}
.news-archive__more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 2.5em;
}
@media (max-width: 768px) {
  .news-archive__more-wrap {
    margin-top: 2em;
  }
}
.news-archive__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  min-width: 11.25em;
  padding: 1em 2em;
  font-family: "UDKakugoLargePro6", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-size: 0.9375em;
  font-weight: 600;
  line-height: 1.4;
  color: #3BB24D;
  background-color: #ffffff;
  border: 1px solid #3BB24D;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.3s, background-color 0.3s, color 0.3s;
}
@media (max-width: 768px) {
  .news-archive__more {
    width: 100%;
    max-width: 20em;
  }
}
.news-archive__more::after {
  content: "";
  display: block;
  width: 0.45em;
  height: 0.45em;
  margin-top: -0.15em;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}
.news-archive__more:hover {
  opacity: 0.85;
}
.news-archive__more:disabled, .news-archive__more.is-loading {
  opacity: 0.6;
  cursor: wait;
}
.news-archive__more.is-hidden {
  display: none;
}
.news-archive__empty {
  margin: 0;
  padding: 3em 1em;
  text-align: center;
  font-weight: 500;
  color: #3C3C3C;
  background-color: #ffffff;
  border-radius: 10px;
}

.information-archive__filter {
  margin-bottom: 2.5em;
}
@media (max-width: 768px) {
  .information-archive__filter {
    margin-bottom: 1.875em;
  }
}
.information-archive__filter-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75em;
}
@media (max-width: 768px) {
  .information-archive__filter-list {
    gap: 0.5em;
  }
}
.information-archive__filter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 7.5em;
  padding: 0.75em 1.5em;
  font-family: "UDKakugoLargePro6", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 600;
  line-height: 1.4;
  color: #3BB24D;
  background-color: #ffffff;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s, opacity 0.3s;
}
@media (max-width: 768px) {
  .information-archive__filter-btn {
    min-width: 6.5em;
    padding: 0.625em 1em;
    font-size: 0.8125em;
  }
}
.information-archive__filter-btn:hover {
  opacity: 0.85;
}
.information-archive__filter-btn.is-active {
  color: #ffffff;
  background-color: #3BB24D;
  border-color: #3BB24D;
}
.information-archive__filter-btn:disabled, .information-archive__filter-btn.is-loading {
  opacity: 0.6;
  cursor: wait;
}
.information-archive__list {
  margin-bottom: 0;
}
.information-archive__more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 2.5em;
}
@media (max-width: 768px) {
  .information-archive__more-wrap {
    margin-top: 2em;
  }
}
.information-archive__more-wrap.is-hidden {
  display: none;
}
.information-archive__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  min-width: 11.25em;
  padding: 1em 2em;
  font-family: "UDKakugoLargePro6", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-size: 0.9375em;
  font-weight: 600;
  line-height: 1.4;
  color: #3BB24D;
  background-color: #ffffff;
  border: 1px solid #3BB24D;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.3s, background-color 0.3s, color 0.3s;
}
@media (max-width: 768px) {
  .information-archive__more {
    width: 100%;
    max-width: 20em;
  }
}
.information-archive__more::after {
  content: "";
  display: block;
  width: 0.45em;
  height: 0.45em;
  margin-top: -0.15em;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}
.information-archive__more:hover {
  opacity: 0.85;
}
.information-archive__more:disabled, .information-archive__more.is-loading {
  opacity: 0.6;
  cursor: wait;
}
.information-archive__more[hidden] {
  display: none;
}
.information-archive__empty {
  margin: 0;
  padding: 3em 1em;
  text-align: center;
  font-weight: 500;
  color: #3C3C3C;
  background-color: #ffffff;
  border-radius: 10px;
}

.area__inner {
  padding-top: 0;
  padding-bottom: 0;
}
.area__list {
  background: #ffffff;
  border-radius: 10px;
  padding: 2.5rem 1.875rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5em;
}
@media (max-width: 768px) {
  .area__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.area__item a {
  color: #3BB24D;
  display: flex;
  align-items: center;
  gap: 0.625em;
  transition: 0.3s;
  position: relative;
}
.area__item a:hover {
  opacity: 0.7;
  text-decoration: underline;
}
.area__item a::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 0.5625em;
  height: 1em;
  background: url(../img/common/icons/triangle-green.svg) no-repeat center center/contain;
}