<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/*==================================
  General - 下層共通
==================================*/
.l-1col {
  margin-top: 60px;
  width: 100%;
}

.l-2col {
  width: 100%;
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
}
.l-2col_main {
  width: calc(100% - 360px);
}
.l-2col_side {
  width: 300px;
}
.l-2col_side &gt; aside &gt; *:first-of-type {
  margin-top: 0;
}
.l-2col_side &gt; aside &gt; *:nth-of-type(n + 2) {
  margin-top: 60px;
}

@media only screen and (max-width: 1199px) {
  .l-2col {
    display: block;
    margin-top: 30px;
  }
  .l-2col_main {
    width: 100%;
  }
  .l-2col_side {
    margin-top: 60px;
    width: 100%;
  }
  .l-2col_side &gt; aside &gt; *:nth-of-type(n + 2) {
    margin-top: 30px;
  }
}
/*==================================
  Project
==================================*/
/*
  Title
====================================*/
.p-page-title_p1 {
  font-size: 3.2rem;
  font-weight: 700;
  color: #197d41;
  background: #fff;
  border-bottom: 4px solid #197d41;
  position: relative;
}
.p-page-title_p2 {
  font-size: 2.4rem;
  font-weight: 700;
  background: #f2f2e6;
  border-radius: 10px;
  padding: 10px 20px;
}
.p-page-title_p3 {
  font-size: 2.6rem;
  font-weight: 700;
}

@media only screen and (max-width: 767px) {
  .p-page-title_p1 {
    font-size: 2.6rem;
  }
  .p-page-title_p2 {
    font-size: 2rem;
  }
  .p-page-title_p3 {
    font-size: 2.2rem;
  }
}
/*
  Status
====================================*/
.p-page-info_unit {
  display: flex;
  justify-content: flex-end;
  font-size: 90%;
}
.p-page-info_unit-data {
  display: flex;
}
.p-page-info_unit-data:not(:first-of-type) {
  margin-left: 2em;
}
.p-page-info_unit-data dt {
  position: relative;
}
.p-page-info_unit-data dt::after {
  content: "：";
  padding: 0 0.25em;
  font-weight: 400;
}
.p-page-info_share {
  margin-top: 0.5em;
  display: flex;
  justify-content: flex-end;
}
.p-page-info_share &gt; li {
  width: 100px;
}
.p-page-info_share &gt; li:not(:first-of-type) {
  margin-left: 0.5em;
}
.p-page-info_share a {
  display: block;
}

@media only screen and (max-width: 767px) {
  .p-page-info_unit {
    flex-direction: column;
    align-items: flex-end;
  }
  .p-page-info_unit-data:not(:first-of-type) {
    margin-left: 0;
  }
  .p-page-info_share &gt; li {
    width: 80px;
  }
}
/*
  Breadcrumb
====================================*/
.p-breadcrumb {
  margin-top: 40px;
}
.p-breadcrumb_list {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.4rem;
}
.p-breadcrumb_list:nth-of-type(n + 2) {
  margin-top: 0.5rem;
}
.p-breadcrumb_list li {
  position: relative;
}
.p-breadcrumb_list li:not(:last-child) {
  padding-right: 2em;
  margin-right: 1em;
}
.p-breadcrumb_list li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0.5em;
  right: 0.25em;
  width: 0.75em;
  height: 0.75em;
  border-top: 2px solid;
  border-right: 2px solid;
  transform: rotate(45deg);
}
.p-breadcrumb_list li &gt; a {
  display: inline-block;
}

@media only screen and (max-width: 767px) {
  .p-breadcrumb {
    margin-top: 20px;
  }
}
/*
  Signature
====================================*/
.p-signature_def {
  border: 2px solid #bfdb6f;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 20px;
}
.p-signature_head {
  font-size: 2.2rem;
  background: #bfdb6f;
  color: #3a423a;
  border-radius: 18px 18px 0 0;
  padding: 10px 20px;
}
.p-signature_body {
  padding: 0 20px;
}
.p-signature_body:not(:first-of-type) {
  border-top: 2px solid #bfdb6f;
  padding-top: 20px;
}
.p-signature_name {
  font-weight: 700;
  margin-bottom: 0.3em;
}

@media only screen and (max-width: 767px) {
  .p-signature_head {
    font-size: 2rem;
  }
}
/*
  Paging
====================================*/
.p-paging_list {
  display: flex;
  justify-content: center;
  text-align: center;
  gap: 6px;
}
.p-paging_list li &gt; a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  text-decoration: none;
  width: 40px;
  height: 40px;
  color: inherit;
  border-radius: 50%;
}
.p-paging_list li &gt; a.is-current, .p-paging_list li &gt; a:hover, .p-paging_list li &gt; a:focus {
  background: #197d41;
  color: #fff;
}
.p-paging_arrow {
  border: none;
  position: relative;
  width: 100%;
  height: 100%;
}
.p-paging_arrow::before, .p-paging_arrow::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
}
.p-paging_arrow::before {
  width: 36px;
  height: 36px;
}
.p-paging_arrow::after {
  width: 10px;
  height: 10px;
  border-top: 2px solid;
  border-right: 2px solid;
}
.p-paging_arrow.left::after {
  right: -6px;
  transform: rotate(225deg);
}
.p-paging_arrow.right::after {
  left: 11px;
  transform: rotate(45deg);
}

/*
  Side-column
====================================*/
.p-side-title_p1 {
  font-size: 2.2rem;
  font-weight: 700;
  border-radius: 10px;
  color: #197d41;
  text-align: center;
  position: relative;
  padding-bottom: 1.4em;
}
.p-side-title_p1::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: url(/assets/images/common/pine.svg) no-repeat;
  width: 1.2em;
  height: 1.2em;
}
.p-side-title_p1--rev {
  color: #fff;
}
.p-side-title_p1--faq {
  text-align: center;
}
.p-side-title_p1--faq &gt; span {
  display: block;
  font-size: 70%;
}

.p-side-category {
  background: #f2f2e6;
  padding: 20px;
  border-radius: 2rem;
}
.p-side-category_list {
  margin-top: 20px;
}
.p-side-category_list &gt; li {
  padding: 0.8em 0;
  border-top: 4px dotted #999;
  display: block;
  position: relative;
  padding-left: 1.8em;
}
.p-side-category_list &gt; li::before {
  content: "";
  position: absolute;
  top: 1.1em;
  left: 0;
  width: 1.2em;
  height: 1.2em;
  background: #bfdb6f;
  border-radius: 50%;
}
.p-side-category_list &gt; li::after {
  content: "";
  position: absolute;
  top: 1.5em;
  left: 0.35em;
  width: 0.4em;
  height: 0.4em;
  border-top: 2px solid;
  border-right: 2px solid;
  transform: rotate(45deg);
}
.p-side-category_list &gt; li &gt; li:last-child {
  border-bottom: 4px dotted #999;
}
.p-side-category_list-child {
  margin-top: 20px;
  display: grid;
  gap: 10px 0;
}
.p-side-category_list-child + .p-side-category_list {
  margin-top: 0;
  padding-top: 20px;
}
.p-side-category_list-child &gt; li {
  display: block;
  position: relative;
  padding-left: 1.2em;
}
.p-side-category_list-child &gt; li::before {
  content: "";
  position: absolute;
  top: 0.4em;
  left: 0;
  height: 0.4em;
  border: 0.4em solid transparent;
  border-left: 0.5em solid #3a423a;
}
.p-side-category_list-child &gt; li a {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 1.6rem;
}

.p-side-purpose {
  background: #197d41;
  padding: 20px;
  border-radius: 2rem;
}
.p-side-purpose_list {
  margin-top: 20px;
  gap: 20px;
}

@media only screen and (min-width: 1200px) {
  /* 1199以下と同じ */
  .p-side-purpose_list span[class^=purpose] {
    padding-left: calc(2.6em + 20px);
  }
  .p-side-purpose_list span[class^=purpose]::before {
    top: 0;
    left: 0;
    width: 2.6em;
    aspect-ratio: 1/1;
  }
}
/*==================================
  404 - NotFound
==================================*/
.p-notfound {
  margin-top: 80px;
  text-align: center;
}
.p-notfound &gt; *:not(:first-child) {
  margin-top: 40px;
}
.p-notfound &gt; figure {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}
.p-notfound_title {
  font-size: 3.6rem;
  font-weight: 700;
}

@media only screen and (max-width: 767px) {
  .p-notfound {
    margin-top: 40px;
  }
  .p-notfound_title {
    font-size: 2.4rem;
  }
}
/*==================================
  Category - カテゴリ
==================================*/
.p-category-news_inner {
  margin-top: 10px;
}

/*==================================
  Purpose - かんたん検索
==================================*/
.p-purpose_unit {
  margin-left: 1em;
}
.p-purpose_folder {
  font-size: 2rem;
  font-weight: 700;
  position: relative;
  padding-left: calc(1.4em + 20px);
}
.p-purpose_folder::before {
  content: "";
  position: absolute;
  top: 0.2em;
  left: 0;
  width: 1.4em;
  height: 1.4em;
  background: url(/assets/images/common/i_folder.svg) no-repeat;
}

@media only screen and (max-width: 767px) {
  .p-purpose_folder {
    font-size: 1.8rem;
  }
}
/*==================================
  Organization - 組織情報
==================================*/
.p-orgList {
  /* layer1 */
  /* layer2 */
  /* layer3 */
  /* layer4 */
}
.p-orgList_layer1 &gt; li {
  padding-left: 0.5em;
}
.p-orgList_layer1 &gt; li:before {
  content: "";
  position: relative;
  top: -2px;
  left: -8px;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background: #3a423a;
}
.p-orgList_layer2 &gt; li {
  position: relative;
  padding-left: calc(0.5em + 16px);
}
.p-orgList_layer2 &gt; li::before {
  content: "";
  border-top: 4px solid #0d411d;
  width: 16px;
  position: absolute;
  top: 0.8em;
  left: 0;
}
.p-orgList_layer2 &gt; li &gt; a,
.p-orgList_layer2 &gt; li &gt; span {
  font-size: 2rem;
  font-weight: 700;
}
.p-orgList_layer3 &gt; li {
  position: relative;
  padding-left: calc(0.25em + 20px);
}
.p-orgList_layer3 &gt; li::before {
  content: "";
  width: 10px;
  height: 2.2em;
  background: #197d41;
  position: absolute;
  top: 0;
  left: 0;
}
.p-orgList_layer3 &gt; li &gt; a,
.p-orgList_layer3 &gt; li &gt; span {
  font-size: 2.2rem;
  font-weight: 700;
}
.p-orgList_layer4 &gt; li {
  position: relative;
}
.p-orgList_layer4 &gt; li::before {
  content: "";
  width: 100%;
  height: 3.2em;
  background: #f2f2e6;
  border-radius: 10px;
  position: absolute;
  top: 0;
  left: 0;
}
.p-orgList_layer4 &gt; li &gt; a,
.p-orgList_layer4 &gt; li &gt; span {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 2.4;
  position: relative;
  z-index: 1;
  margin-left: 2rem;
}

@media only screen and (max-width: 767px) {
  .p-orgList_layer2 &gt; li &gt; a,
  .p-orgList_layer2 &gt; li &gt; span {
    font-size: 1.8rem;
  }
  .p-orgList_layer3 &gt; li &gt; a,
  .p-orgList_layer3 &gt; li &gt; span {
    font-size: 2rem;
  }
  .p-orgList_layer4 &gt; li &gt; a,
  .p-orgList_layer4 &gt; li &gt; span {
    font-size: 2.2rem;
  }
}
/* indent */
.p-orgList {
  margin-left: 20px;
}
.p-orgList li &gt; .p-orgList,
.p-orgList li + li {
  margin-top: 20px;
}
.p-orgList:first-child &gt; li:not(:first-of-type) {
  margin-top: 60px;
}

.p-orgUnit &gt; .p-orgList {
  margin-left: 0;
}

@media only screen and (max-width: 767px) {
  .p-orgList {
    margin-left: 10px;
  }
  .p-orgList li &gt; .p-orgList,
  .p-orgList li + li {
    margin-top: 10px;
  }
  .p-orgList:first-child &gt; li:not(:first-of-type) {
    margin-top: 30px;
  }
}
/*==================================
  Calendar - イベントカレンダー
==================================*/
/* Month - 月表示 */
.p-event-month {
  position: relative;
  max-width: 496px;
  margin-left: auto;
  margin-right: auto;
}
.p-event-month_txt {
  line-height: 1;
  text-align: center;
  font-weight: 700;
}
.p-event-month_txt &gt; * {
  display: block;
}
.p-event-month_txt_num {
  font-size: 9rem;
}
.p-event-month_txt_en {
  margin-top: 5px;
}
.p-event-month_btn {
  position: absolute;
  top: 50%;
  width: 64px;
  height: 64px;
  z-index: 5;
}
.p-event-month_btn.p-event-month_btn_prev {
  left: 0;
  transform: translateY(-50%) scale(-1);
}
.p-event-month_btn.p-event-month_btn_next {
  right: 0;
  transform: translateY(-50%);
}
.p-event-month_btn::before {
  position: absolute;
  top: -2px;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}
.p-event-month_btn::after {
  position: absolute;
  top: -2px;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
  left: 16px;
  width: 18px;
  height: 18px;
  border-top: 3px solid #1f1f1f;
  border-right: 3px solid #1f1f1f;
  transform: rotate(45deg);
}

@media only screen and (max-width: 767px) {
  .p-event-month_btn::before {
    width: 40px;
    height: 40px;
  }
  .p-event-month_btn::after {
    left: 12px;
    width: 12px;
    height: 12px;
  }
}
/* Tablist - イベントカテゴリ */
.p-event-tablist {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
}
.p-event-tablist_btn {
  display: block;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 12px 1em;
  background: #fff;
  border: 2px solid #e85369;
  color: inherit;
  width: 100%;
}
.p-event-tablist_btn:hover, .p-event-tablist_btn:focus, .p-event-tablist_btn.current {
  background: #e85369;
}
.p-event-tablist_btn:link {
  text-decoration: none;
}

@media only screen and (max-width: 767px) {
  .p-event-month_btn {
    width: 32px;
    height: 32px;
  }
  .p-event-tablist {
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
  }
}
/* CalendarList - カレンダー本体 */
.p-event-calList_item {
  padding: 20px 20px 20px 40px;
  border-bottom: 1px solid #cecece;
  min-height: 89px;
}
.p-event-calList_item_head {
  white-space: nowrap;
  font-weight: 500;
}
.p-event-calList_item_head span {
  font-weight: 700;
  font-size: 3rem;
}
.p-event-calList_item_body {
  flex: 1;
}
.p-event-calList_item.p-event-calList_item_sat .p-event-calList_item_head {
  color: #076baf;
}
.p-event-calList_item.p-event-calList_item_hol .p-event-calList_item_head {
  color: #c34349;
}

@media only screen and (min-width: 1200px) {
  .p-event-calList_item {
    display: flex;
    align-items: center;
  }
  .p-event-calList_item_head {
    width: 10em;
    text-align: center;
  }
  .p-event-calList_item_body {
    margin-left: 60px;
  }
}
@media only screen and (max-width: 1199px) {
  .p-event-calList_item {
    padding: 20px 0;
  }
  .p-event-calList_item_body {
    margin-top: 10px;
  }
}
/*==================================
  Sitemap - サイトマップ
==================================*/
.p-sitemap-list + .p-sitemap-list {
  margin-top: 60px;
}
@media only screen and (max-width: 1199px) {
  .p-sitemap-list + .p-sitemap-list {
    margin-top: 30px;
  }
}</pre></body></html>