@charset "UTF-8";

/*==================================
  1. General - 下層共通
==================================*/
.l-2col {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
}

.l-2col_main {
  width: calc(100% - (300px + 60px));
}

.l-2col_side {
  width: 300px;
}

.l-2col_side > aside > *:first-of-type {
  margin-top: 0;
}

.l-2col_side > aside > *: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 > aside > *:nth-of-type(n + 2) {
    margin-top: 30px;
  }
}

/*==================================
  2. subVisual - サブビジュアル
==================================*/
.p-subVisual_inr {
  background: #287f62;
  border-radius: 60px;
  width: 90%;
  max-width: 1540px;
  margin: 0 auto;
  padding: 80px;
  text-align: center;
}

.p-subVisual_ttl {
  display: inline-block;
  font-size: 4.2rem;
  color: #fff;
  font-weight: 700;
}

.illust08::before {
  bottom: -60px;
  right: 5%;
  width: 20%;
  aspect-ratio: 10 / 9;
  background: url(/assets/images/common/illust08.svg) no-repeat center/cover;
}

@media only screen and (max-width: 767px) {
  .p-subVisual_inr {
    border-radius: 30px;
    padding: 40px;
    width: calc(100% - 20px);
  }
  .p-subVisual_ttl {
    font-size: 2.6rem;
  }
  .illust08::before {
    width: 22%;
    bottom: -10px;
  }
}

/*==================================
  3. Title - タイトル
==================================*/

/*
 	3.1 PageTitle - ページタイトル
====================================*/
.c-pageTtl {
  font-size: 3.2rem;
  font-weight: 700;
  background: #faf5f0;
  border-radius: 14px;
  color: #287f62;
  padding: 1rem 2rem;
}

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

/*
 	3.2 CommonTitle - 共通タイトル
====================================*/
.c-cateTtl {
  font-size: 2.4rem;
  font-weight: 700;

  padding-bottom: 10px;
  border-bottom: 2px solid #287f62;
}
@media only screen and (max-width: 767px) {
  .c-cateTtl {
    font-size: 2rem;
    padding-bottom: 6px;
  }
}

/*==================================
  4. Main - メインカラム
==================================*/

/*
 	4.1 Breadcrumb - パンくず
====================================*/
.c-breadcrumb {
  margin-top: 40px;
}

.c-breadcrumbList {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.4rem;
}

.c-breadcrumbList:nth-of-type(n + 2) {
  margin-top: 0.5rem;
}

.c-breadcrumbList li {
  position: relative;
  margin-right: 1em;
}

.c-breadcrumbList li:not(:first-of-type) {
  padding-left: 2em;
}

.c-breadcrumbList li:not(:first-of-type)::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 10px;
  height: 10px;
  border-top: 2px solid;
  border-right: 2px solid;
  transform: rotate(45deg);
}

@media only screen and (max-width: 767px) {
  .c-breadcrumb {
    margin-top: 20px;
  }
}

/*
 	4.2 Status - ページ情報
====================================*/
.c-pageInfo {
  display: flex;
  justify-content: flex-end;
  font-size: 90%;
}

.c-pageInfo_def {
  display: flex;
}

.c-pageInfo_def:not(:first-of-type) {
  margin-left: 2em;
}

.c-pageInfo_def dt {
  position: relative;
}

.c-pageInfo_def dt::after {
  content: "\ff1a";
  padding: 0 0.25em;
  font-weight: 400;
}

@media only screen and (max-width: 767px) {
  .c-pageInfo {
    flex-direction: column;
    align-items: flex-end;
  }
  .c-pageInfo_def:not(:first-of-type) {
    margin-left: 0;
  }
}

/* SNSシェアボタン */
.c-shareList {
  margin-top: 0.5em;
  display: flex;
  justify-content: flex-end;
}
.c-shareList > li {
  width: 100px;
}
.c-shareList > li:not(:first-of-type) {
  margin-left: 0.5em;
}
.c-shareList a {
  display: block;
}

/*
 	4.3 Signature - 署名
====================================*/
.c-signature {
  margin-top: 120px;
}

.c-signature_def {
  padding: 20px 40px;
  border: 2px solid #287f62;
  border-radius: 1.6em;
}

.c-signature_head {
  font-size: 2.2rem;
  padding-bottom: 10px;
  border-bottom: 1px solid #287f62;
}

.c-signature_body {
  margin-top: 10px;
}

.c-signature_name {
  font-weight: 700;
  margin-bottom: 0.3em;
}

@media only screen and (max-width: 767px) {
  .c-signature {
    margin-top: 60px;
  }
  .c-signature_def {
    padding: 20px;
  }
}

/*==================================
  5. Side - サイドカラム
==================================*/

/*
 	5.1 Side Category - サイドカテゴリ
====================================*/
.c-category_ttl {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;

  background: #287f62;
  border-radius: 9999px;
  color: #fff;
  padding: 0.3em 1.6em;
}

/* 親カテゴリ*/
.c-categoryList {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.c-categoryList li.s4-3::before {
  top: calc(0.6em + 14px);
  left: 20px;
  bottom: auto;
  z-index: 2;
}

.c-categoryList li > a {
  text-decoration: none;
  color: inherit;
  display: block;
  padding: 14px;
  border-radius: 14px;
  background: #faf5f0;
  padding-left: calc(1.6em + 20px);
}

/* 子カテゴリ*/
.c-categoryList_child li {
  padding-left: 1.6em;
}

.c-categoryList_child li:not(:first-of-type) {
  margin-top: 10px;
}

.c-categoryList_child li > a {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 1.7rem;
}

@media only screen and (max-width: 767px) {
  .c-categoryList_child li > a {
    font-size: 1.5rem;
  }
}

/*
 	5.2 EasySearch - かんたん検索
====================================*/
/* Frame */
.c-easysearch {
  background: #287f62;
  border-radius: 1.6em;
  color: #fff;
  padding: 40px 20px;
}
.c-easysearch_ttl {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
}

@media only screen and (max-width: 767px) {
  .c-easysearch {
    padding: 20px;
  }
}

.c-searchList__side {
  flex-direction: column;
}

.c-searchList__side li {
  margin-top: 20px;
}
.c-searchList__side li > a {
  display: inline-block;
}
.c-searchList__side li:first-child {
  margin-top: 0;
}

.c-searchList__side li > a span {
  line-height: 60px;
  padding-left: calc(60px + 20px);
}
.c-searchList__side li > a span::before {
  top: 0;
  left: 0;
  border-radius: 20px;
  width: 60px;
  height: 60px;
}
.c-searchList__side li > a span::after {
  top: 10px;
  left: 10px;
  width: 40px;
  height: 40px;
}

@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .c-searchList__side {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .c-searchList__side li {
    width: 50%;
  }
  .c-searchList__side li:nth-child(2) {
    margin-top: 0;
  }
}

@media only screen and (max-width: 767px) {
  .c-searchList__side li > a span {
    line-height: 40px;
    padding-left: calc(40px + 16px);
  }

  .c-searchList__side li > a span::before {
    border-radius: 10px;
    width: 40px;
    height: 40px;
  }
  .c-searchList__side li > a span::after {
    top: 6px;
    left: 6px;
    width: 28px;
    height: 28px;
  }
}

/*
 	5.3 Faq - よくある質問
====================================*/
.c-faq .c-category_ttl {
  background: #c0e8d8;
  color: inherit;
  border-radius: 30px;
}

.c-faq .c-category_ttl > span {
  font-size: 70%;
  display: block;
}

.c-faq .s4-3::before {
  background: #c0e8d8;
}

/*==================================
  6. Page - 下層ページ
==================================*/

/*
 	6.1 Category List - カテゴリ一覧
====================================*/
/* カテゴリ新着 */
.c-newsTtl {
  font-size: 2.8rem;
  font-weight: 700;
}

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

.c-news_btn {
  margin-top: 20px;
  text-align: center;
}

/* カテゴリ一覧 - 本体 */
.c-linkList li {
  border-bottom: 1px solid #c1c1c1;
  padding: 20px 0;
}

.c-linkList li > a {
  display: inline-block;
}

@media only screen and (max-width: 767px) {
  .c-linkList li {
    padding: 16px 0;
  }
}

/* 一覧ページのみ */
.c-linkListUnit .c-linkList:first-of-type {
  border-top: 1px solid #c1c1c1;
}

/* サイトマップ用 */
.c-linkList__col2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.c-linkList__col2 > * {
  width: calc(50% - 10px);
}

@media only screen and (max-width: 767px) {
  .c-linkList__col2 {
    display: block;
  }
  .c-linkList__col2 > * {
    width: 100%;
  }
}

/* アイコン */
.i-folder li,
.i-page li {
  position: relative;
  padding-left: calc(2.8em + 20px);
}

.i-folder li::before,
.i-page li::before {
  content: "";
  position: absolute;
  top: calc(0.25em + 20px);
  left: 20px;
  width: 1.6em;
  aspect-ratio: 6 / 5;
}

.i-folder li::before {
  background: url(/assets/images/common/i_folder.svg) no-repeat;
}
.i-page li::before {
  background: url(/assets/images/common/i_page.svg) no-repeat;
}

@media only screen and (max-width: 767px) {
  .i-folder li,
  .i-page li {
    padding-left: calc(2.6em + 16px);
  }
  .i-folder li::before,
  .i-page li::before {
    top: calc(0.25em + 16px);
    left: 10px;
  }
}

/*
 	6.2 News - 新着情報
====================================*/
/* ページャー */
.c-paging_list {
  display: flex;
  justify-content: center;
  text-align: center;
}

.c-paging_list li:not(:first-of-type) {
  margin-left: 6px;
}

.c-paging_list li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  text-decoration: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: inherit;
}

.c-paging_list li > a.is-current,
.c-paging_list li > a:hover,
.c-paging_list li > a:focus {
  background: #287f62;
  color: #fff;
}

.c-paging_list li.c-paging_prev > a,
.c-paging_list li.c-paging_next > a {
  border: none;
}

.c-paging_arrow {
  border: none;
  position: relative;
  width: 100%;
  height: 100%;
}
.c-paging_arrow::before,
.c-paging_arrow::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
}
.c-paging_arrow::before {
  width: 36px;
  height: 36px;
}
.c-paging_arrow::after {
  width: 10px;
  height: 10px;
  border-top: 2px solid;
  border-right: 2px solid;
}
.c-paging_arrow.left::after {
  right: -6px;
  transform: rotate(225deg);
}
.c-paging_arrow.right::after {
  left: 11px;
  transform: rotate(45deg);
}

/*
 	6.3 Calendar - カレンダー
====================================*/
/* カレンダーアイコン */
.c-label02 {
  display: inline-block;
  text-align: center;
  width: 10em;
  font-size: 1.4rem;
  font-weight: 700;
  background: #faf5f0;
  border-radius: 0.4em;
}

/* イベントカレンダーのタブボタン */
.p-eventTabBtn {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
}
.p-eventTabBtn_item {
  width: calc(100% / 4 - 10px); /* カテゴリ数 */
  font-size: 1.6rem;
}
.p-eventTabBtn_btn {
  display: block;
  text-align: center;
  font-weight: 700;
  padding: 12px 1em;
  background: #fff;
  border: 1px solid #287f62;
  border-radius: 9999px;
  color: inherit;
  width: 100%;
}

.p-eventTabBtn_btn:hover,
.p-eventTabBtn_btn:focus,
.p-eventTabBtn_btn.current {
  background: #287f62;
  color: #fff;
}

.p-eventTabBtn_btn:link {
  text-decoration: none;
}

@media only screen and (max-width: 767px) {
  .p-eventMonth_btn {
    width: 32px;
    height: 32px;
  }
  .p-eventTabBtn_item {
    width: calc(100% / 2 - 5px);
  }
  .p-eventTabBtn_item:nth-child(n + 3) {
    margin-top: 5px;
  }
}

/* イベントカレンダー本体 */
.p-eventMonth {
  position: relative;
  max-width: 496px;
  margin-left: auto;
  margin-right: auto;
}

.p-eventMonth_txt {
  line-height: 1;
  text-align: center;
  font-weight: 700;
}
.p-eventMonth_txt > * {
  display: block;
}
.p-eventMonth_txt_num {
  font-size: 9rem;
}
.p-eventMonth_txt_en {
  margin-top: 5px;
}

.p-eventMonth_btn {
  position: absolute;
  top: 50%;
  width: 64px;
  height: 64px;
  z-index: 5;
}
.p-eventMonth_btn.p-eventMonth_btn__prev {
  left: 0;
  transform: translateY(-50%) scale(-1);
}
.p-eventMonth_btn.p-eventMonth_btn__next {
  right: 0;
  transform: translateY(-50%);
}
.p-eventMonth_btn::before,
.p-eventMonth_btn::after {
  position: absolute;
  top: -2px;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}
/* .p-eventMonth_btn::before {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #3c6eaf;
} */
.p-eventMonth_btn::after {
  left: 16px;
  width: 18px;
  height: 18px;
  border-top: 3px solid #287f62;
  border-right: 3px solid #287f62;
  transform: rotate(45deg);
}

@media only screen and (max-width: 767px) {
  .p-eventMonth_btn::before {
    width: 40px;
    height: 40px;
  }
  .p-eventMonth_btn::after {
    left: 12px;
    width: 12px;
    height: 12px;
  }
}

/* カレンダー本体 */
.p-eventcal_ttl {
  font-size: 2.6rem;
  font-weight: 700;

  padding-bottom: 10px;
  border-bottom: 2px solid #287f62;
}

@media only screen and (max-width: 767px) {
  .p-eventcal_ttl {
    font-size: 2.2rem;
    padding-bottom: 6px;
  }
}

.p-eventcalList_item {
  padding: 20px 40px;
  border-bottom: 1px solid #cecece;
  min-height: 89px;
}
/* .p-eventcalList_item:nth-child(2n) {
  background: #fafafa;
} */
.p-eventcalList_item_ttl {
  white-space: nowrap;
  font-weight: 500;
}
.p-eventcalList_item_ttl span {
  font-weight: 700;
  font-size: 3rem;
}
.p-eventcalList_item_body {
  flex: 1;
}
.p-eventcalList_item.p-eventcalList_item__sat .p-eventcalList_item_ttl {
  color: #076baf;
}
.p-eventcalList_item.p-eventcalList_item__hol .p-eventcalList_item_ttl {
  color: #c34349;
}

.c-eventlist_item:not(:first-child) {
  margin-top: 10px;
}

.c-eventlist_item_txt {
  flex: 1;
}

.c-eventlist_item_txt a {
  text-decoration: underline;
}

.c-eventlist_item_txt a:hover,
.c-eventlist_item_txt a:focus {
  text-decoration: none;
}

@media only screen and (min-width: 769px) {
  .p-eventcalList_item_body {
    margin-left: 60px;
  }
  .p-eventcalList_item {
    display: flex;
    align-items: center;
  }
  .p-eventcalList_item_ttl {
    width: 10em;
    text-align: center;
  }
  .c-eventlist_item {
    display: flex;
  }
  .c-eventlist_item_txt {
    margin-left: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .p-eventcalList_item {
    padding: 20px 0;
  }
  .p-eventcalList_item_body {
    margin-top: 10px;
  }
  .c-eventlist_item_txt {
    margin-top: 10px;
  }
  .c-eventlist_item:not(:first-child) {
    margin-top: 20px;
  }
}

/*
 	6.4 Organization - 組織情報
====================================*/
/* 部署 */
.c-orgTtl01 {
  font-size: 2.6rem;
  font-weight: 700;

  padding: 16px 20px;
  background: #c0e8d8;
  border-radius: 1.6rem;
}
.c-orgTtl02 {
  font-size: 2.2rem;
  font-weight: 700;
  /* indent */
  margin-left: 40px;

  padding: 6px 20px;
  border-left: 10px solid #287f62;
}

@media only screen and (max-width: 767px) {
  .c-orgTtl01 {
    font-size: 2.2rem;
    padding: 10px 20px;
  }
  .c-orgTtl02 {
    font-size: 1.8rem;
  }
}

/* 最小部署 */
.c-orgList {
  /* indent */
  margin-left: 80px;
}
.c-orgList > li {
  padding-left: 0.5em;
}
.c-orgList > li:not(:first-of-type) {
  margin-top: 10px;
}
.c-orgList > li:before {
  content: "";
  position: relative;
  top: -2px;
  left: -8px;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background: #363636;
}

/*
 	6.5 Faq - よくある質問
====================================*/
/* マーク */
[class^="fq-"] {
  display: inline-block;
  position: relative;
  padding-left: calc(2em + 1em);
  min-height: 2em;
}

[class^="fq-"]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #c0e8d8;
  border-radius: 50%;
  width: 2em;
  aspect-ratio: 1 / 1;
}

[class^="fq-"]::after {
  position: absolute;
  top: 0;
  left: 0.6em;
  color: #287f62;
  font-weight: 700;
}

.fq-q::after {
  content: "Q";
}

.fq-a::after {
  content: "A";
}

/* 一覧ページ - 検索窓 */
.c-faqTable {
  display: table;
  width: 100%;

  background: #c0e8d8;
  padding: 20px 40px;
  border-radius: 1.6em;
}

.c-faqTable > * {
  display: table-cell;
}

.c-faqTable_ttl {
  vertical-align: middle;
  padding-right: 20px;
}

.c-faqTable_ttl > span {
  font-size: 110%;
  position: relative;
  padding-left: calc(1.6em + 1em);
}

.c-faqTable_ttl > span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  width: 1.6em;
  height: 1.6em;
  background: url(/assets/images/common/i_search.svg) no-repeat center/cover;
}

.c-faqTable_det {
  border-left: 2px solid #fff;
  padding-left: 40px;
}

@media only screen and (max-width: 767px) {
  .c-faqTable {
    display: block;
    padding: 20px;
  }
  .c-faqTable > * {
    display: block;
    padding: 0;
  }
  .c-faqTable_det {
    border-left: none;
    border-top: 2px solid #fff;
    margin-top: 10px;
    padding-top: 10px;
  }
}

.c-faq_form {
  margin-top: 10px;
  width: 100%;
  position: relative;
}

.c-faq_form input {
  margin-right: 4.5em;
  width: calc(100% - 4.5em);
  height: 100%;
  padding: 8px 1em;
  text-align: left;
  background: #fff;
  border-radius: 9999px 0 0 9999px;
}

.c-faq_form button {
  font-weight: 700;
  text-align: center;
  width: 4.5em;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background: #464646;
  border-radius: 0 9999px 9999px 0;
  color: #fff;
}

/* 一覧ページ - 最近の質問 */
.c-faqPanel_body {
  margin-top: 40px;
}
.c-faqPanel_list {
  display: grid;
  gap: 20px
}
@media only screen and (max-width: 767px) {
  .c-faqPanel_list {
    gap: 10px
  }
}

/* .c-faqPanel_list > li:not(:first-of-type) {
  margin-top: 20px;
} */

/* 詳細ページ - Q&A本体 */
.c-faq_body {
  border: 2px solid #f2f2f2;
  padding: 40px;
}

@media only screen and (max-width: 767px) {
  .c-faq_body {
    padding: 20px;
  }
}

.c-questionTtl {
  font-size: 2.4rem;
  font-weight: 700;
  color: #287f62;
}

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

/*
 	6.6 Purpose - かんたん検索
====================================*/
.c-purposeUnit {
  margin-left: 1em; /* indent */
}

/* 第3層カテゴリ名 */
.c-folderTtl {
  font-size: 2rem;
  font-weight: 700;
}

.c-folderTtl > span {
  position: relative;
  padding-left: calc(1em + 20px);
}

.c-folderTtl > span::before {
  content: "";
  position: absolute;
  top: 0.24em;
  left: 0;
  height: 1em;
  aspect-ratio: 6 / 5;
  background: url(/assets/images/common/i_folder.svg) no-repeat;
}

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

/*==================================
  7. 404 - NotFound
==================================*/
.c-notfound {
  margin-top: 80px;
  text-align: center;
}
.c-notfound > *:not(:first-child) {
  margin-top: 40px;
}
.c-notfound > figure {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}
.c-notfound_ttl {
  font-size: 3.6rem;
  font-weight: 700;
}

@media only screen and (max-width: 767px) {
  .c-notfound > figure {
    width: 60%;
  }
  .c-notfound_ttl {
    font-size: 2.4rem;
  }
}
