@charset "UTF-8";

/*==================================
  1. 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% - (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. 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;
  letter-spacing: 0.1em;
}

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

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

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

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

/*
 	3.1 PageTitle - ページタイトル
====================================*/
.c-pageTtl {
  font-size: 3.2rem;
  font-weight: 700;

  position: relative;
  padding-bottom: 0.3em;
}

.c-pageTtl::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  width: calc(100% - 4px);
  height: 0.2em;
  background: #004c8f;
  border-radius: 2em;
}

.c-pageTtl > span {
  display: block;
  position: relative;
}

.c-pageTtl > span::before,
.c-pageTtl > span::after {
  content: "";
  position: absolute;
  bottom: -0.4em;
  width: 0.4em;
  height: 0.4em;
  border: 0.1em solid #fff;
  background: #d8c700;
  border-radius: 50%;
}
.c-pageTtl > span::before {
  left: 0;
}
.c-pageTtl > span::after {
  right: 0;
}

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

.is-hospital .c-pageTtl::before {
  background: #dd5e0d;
}

.is-migration .c-pageTtl::before {
  background: #d8c700;
}

.is-migration .c-pageTtl > span::before,
.is-migration .c-pageTtl > span::after {
  background: #313f9f;
}

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

  background: #e8f3fa;
  border-radius: 1rem;
  padding: 1rem 2rem;
}

.is-hospital .c-cateTtl {
  background: #f9c09b;
}

.is-migration .c-cateTtl {
  background: #ecebdf;
}

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

/*==================================
  4. subVisual - サブビジュアル
==================================*/
.p-subVisual {
  margin: 20px 40px 0;
}

.p-subVisual_inr {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 280px;
  background: #e8f3fa;
  border-radius: 3rem 3rem 0 0;
  position: relative;
  padding-bottom: 20px;
}

.p-subVisual_inr::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20px;
  /* aspect-ratio: 90 / 1; */
  transform: scale(1, -1);
  background: #fff url(/assets/images/common/wave_lt.svg) no-repeat center/cover;
}

.p-subVisual_ttl {
  font-weight: 700;
  font-size: 3.8rem;
  color: #004c8f;
  letter-spacing: 0.2em;
}

.is-hospital .p-subVisual_inr {
  background: #fbf9f6;
  padding-bottom: 0;
  border-radius: 3rem;
}

.is-hospital .p-subVisual_inr::after {
  content: none;
}

.is-hospital .p-subVisual_inr::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 5em;
  height: 8px;
  background: #dd5e0d;
  border-radius: 0.4rem;
}

.is-hospital .p-subVisual_ttl {
  color: #3e475b;
}

.is-migration .p-subVisual_inr {
  background: #ecebdf;
  padding-bottom: 0;
  border-radius: 3rem;
}

.is-migration .p-subVisual_inr::after {
  content: none;
}

.is-migration .p-subVisual_ttl {
  color: #3e475b;
  position: relative;
  padding-bottom: 6px;
}

.is-migration .p-subVisual_ttl::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 6px;
  aspect-ratio: 20 / 1;
  background: url(/migration/assets/images/common/wave_ye.svg) no-repeat center/cover;
}

@media only screen and (max-width: 1199px) {
  .p-subVisual {
    margin: 20px 20px 0;
  }
}

@media only screen and (max-width: 767px) {
  .p-subVisual {
    margin: 20px auto 0;
  }
  .p-subVisual_inr {
    height: calc(280px / 1.5);
  }
  .p-subVisual_ttl {
    font-size: 3rem;
  }
}

/*==================================
  5. 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;
}

@media only screen and (max-width: 767px) {
  .c-shareList > li {
    width: 80px;
  }
}

/*==================================
  6. Signature - 署名
==================================*/
.c-signature_def {
  background: #fff;
}

.c-signature_head {
  font-size: 2.2rem;

  background: #004c8f;
  border: 1px solid transparent;
  border-radius: 1rem 1rem 0 0;
  color: #fff;
  padding: 10px 20px;
}

.c-signature_body {
  border: 1px solid #004c8f;
  border-radius: 0 0 1rem 1rem;
  padding: 10px 20px;
}

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

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

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

/*
 	7.1 Side Category - サイドカテゴリ
====================================*/
.c-category_ttl {
  font-size: 2.2rem;
  font-weight: 700;
  padding: 10px 20px;
  margin-bottom: 20px;

  background: #004c8f;
  color: #fff;
  border-radius: 1rem;
}

.is-hospital .c-category_ttl {
  background: #f9c09b;
  color: #3e475b;
}

.is-migration .c-category_ttl {
  background: #d8c700;
  color: inherit;
}

/* 親カテゴリ*/
.c-categoryList {
  display: grid;
  gap: 20px;
  background: #e8f3fa;
  padding: 20px;
}

.is-hospital .c-categoryList {
  background: #fbf9f6;
}

.is-migration .c-categoryList {
  background: #ecebdf;
}

/* 子カテゴリがある時だけ罫線 */
.c-categoryList_child + .c-categoryList {
  position: relative;
}
.c-categoryList_child + .c-categoryList::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  width: calc(100% - 40px);
  height: 1px;
  background: #ccdbe9;
}

/* 子カテゴリ*/
.c-categoryList_child {
  background: #e8f3fa;
  padding: 20px;
}
.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.6rem;
}

.is-hospital .c-categoryList_child {
  background: #fbf9f6;
}

.is-migration .c-categoryList_child {
  background: #ecebdf;
}

/* マーク */
.c-categoryList > li,
.c-categoryList_child > li {
  display: block;
  padding-left: 1.2em;
  position: relative;
}

.c-categoryList > li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 1.8em;
  background: #d8c700;
}

.c-categoryList_child li::before {
  content: "";
  position: absolute;
  top: calc(1em / 2 + 2px);
  left: 0;

  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ca4b02;
}

/*
 	7.2 EasySearch - かんたん検索
====================================*/
.c-easysearch_ttl {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.c-easysearch_ttl > span {
  display: block;
  background: #004c8f;
  color: #fff;
  border-radius: 1rem;

  position: relative;
  padding: 10px 20px;
  text-align: center;
}

.c-easysearch_ttl > span::before {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 16px;
  /* aspect-ratio: 5 / 2; */
  background: url(/assets/images/common/speech_bl.svg) no-repeat center/cover;
}

/* Side-only */
.c-searchList__side li > a span {
  display: block;
  line-height: 60px;
  padding: 0 60px 0 20px;
}

.c-searchList__side li > a span::after {
  top: 10px;
  right: 10px;
  width: 40px;
  aspect-ratio: 1 / 1;
}

/*
 	7.3 Faq - よくある質問
====================================*/
.c-faq .c-category_ttl {
  text-align: center;
}

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

/*==================================
  8. Category - カテゴリ一覧
==================================*/

/*
 	8.1 Category News - カテゴリ新着
====================================*/
.c-newsBox_inr {
  margin-top: 10px;
}

.c-newsTtl {
  font-size: 2.6rem;
  font-weight: 700;
}

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

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

/*
 	8.2 Category Body - カテゴリ本体
====================================*/
.c-linkList li {
  border-bottom: 1px solid #dedede;
  padding: 20px 0;
  /* アイコン */
  position: relative;
  padding-left: calc(1.8em + (20px * 2));
}

.c-linkList li::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  width: 1.8em; /* line-height */
  aspect-ratio: 1 / 1;
}

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

@media only screen and (max-width: 767px) {
  .c-linkList li {
    padding: 16px 0;
    padding-left: calc(1.8em + (12px * 2));
  }
  .c-linkList li::before {
    top: 16px;
    left: 12px;
  }
}

.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;
}

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

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

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

/* サイトマップ用 */
.c-linkList__col2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 20px;
}

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

/*
 	8.3 thumbnail List - サムネ一覧（移住）
====================================*/
.c-tmbList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.c-tmbList_unit > a {
  display: block;

  text-decoration: none;
  color: inherit;
}

.c-tmbList_image img {
  max-width: 100%;
  /* 比率維持 */
  aspect-ratio: 3 / 2;
  object-fit: cover;
  margin: 0 auto;
}

.c-tmbList_info > p {
  margin-top: 10px;
}

@media only screen and (max-width: 767px) {
  .c-tmbList {
    grid-template-columns: repeat(1, 1fr);
  }
}

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

.c-paging_list li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  text-decoration: none;
  width: 40px;
  height: 40px;

  color: inherit;
  border-radius: 50%;
}

.c-paging_list li > a.is-current,
.c-paging_list li > a:hover,
.c-paging_list li > a:focus {
  background: #e8f3fa;
}

.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);
}

.is-hospital .c-paging_list li > a.is-current,
.is-hospital .c-paging_list li > a:hover,
.is-hospital .c-paging_list li > a:focus {
  background: #f9c09b;
}

.is-migration .c-paging_list li > a.is-current,
.is-migration .c-paging_list li > a:hover,
.is-migration .c-paging_list li > a:focus {
  background: #d8c700;
}

/*==================================
  10. Calendar - カレンダー
==================================*/

/*
 	10.1 Tab Button - タブボタン
====================================*/
.p-eventTabBtn {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
}

.p-eventTabBtn_btn {
  display: block;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 12px 1em;
  background: #fff;
  border: 1px solid #004c8f;
  border-radius: 10px;
  color: inherit;
  width: 100%;
}

.p-eventTabBtn_btn:hover,
.p-eventTabBtn_btn:focus,
.p-eventTabBtn_btn.current {
  background: #004c8f;
  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 {
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
  }
}

/*
 	10.2 Calendar Month - 月表示
====================================*/
.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 #004c8f;
  border-right: 3px solid #004c8f;
  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;
  }
}

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

  background: #e8f3fa;
  border-radius: 14px;
  padding: 1rem 2rem;
}

@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: 1200px) {
  .p-eventcalList_item_body {
    margin-left: 60px;
  }
  .p-eventcalList_item {
    display: flex;
    align-items: center;
  }
  .p-eventcalList_item_ttl {
    width: 12em;
    text-align: center;
  }
  .c-eventlist_item {
    display: flex;
  }
  .c-eventlist_item_txt {
    margin-left: 40px;
  }
}

@media only screen and (max-width: 1199px) {
  .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;
  }
}

/*==================================
  11. Organization - 組織情報
==================================*/
/* 1段階 */
.c-orgTtl01 {
  font-size: 2.4rem;
  font-weight: 700;

  background: #e8f3fa;
  border-radius: 14px;
  padding: 1rem 2rem;
}

/* 2段階 */
.c-orgTtl02 {
  font-size: 2.2rem;
  font-weight: 700;

  padding-left: calc(0.25em + 10px);
  border-left: 10px solid #004c8f;
  /* indent */
  margin-left: calc(40px * 1);
}

/* 3段階 */
.c-orgTtl03 {
  font-size: 2rem;
  font-weight: 700;

  position: relative;
  padding-left: calc(0.5em + 16px);
  /* indent */
  margin-left: calc(40px * 2);
}

.c-orgTtl03::before {
  content: "";
  border-top: 4px solid #004c8f;
  width: 16px;
  position: absolute;
  top: 0.8em;
  left: 0;
}

@media only screen and (max-width: 767px) {
  .c-orgTtl01 {
    font-size: 2.2rem;
  }
  .c-orgTtl02 {
    font-size: 2rem;
    /* indent */
    margin-left: calc(20px * 1);
  }
  .c-orgTtl03 {
    font-size: 1.8rem;
    /* indent */
    margin-left: calc(20px * 2);
  }
}

/* indent */
.c-orgTtl01 + .c-orgList {
  margin-left: calc(40px * 1);
}

.c-orgTtl02 + .c-orgList {
  margin-left: calc(40px * 2);
}

.c-orgTtl03 + .c-orgList {
  margin-left: calc(40px * 3);
}

@media only screen and (max-width: 767px) {
  .c-orgTtl01 + .c-orgList {
    margin-left: calc(20px * 1);
  }

  .c-orgTtl02 + .c-orgList {
    margin-left: calc(20px * 2);
  }

  .c-orgTtl03 + .c-orgList {
    margin-left: calc(20px * 3);
  }
}

.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: #3e475b;
}

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

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

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

.c-folderTtl > span::before {
  content: "";
  position: absolute;
  top: 0em;
  left: 0;
  width: 1.8em; /* line-height */
  height: calc(1.8em / 6 * 5);
  /* 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;
  }
}

/*==================================
  13. Faq - よくある質問
==================================*/

/*
 	13.1 Search - 検索枠
====================================*/
.c-faqTable {
  display: table;
  width: 100%;

  background: #e8f3fa;
  padding: 20px 40px;
  border-radius: 1rem;
}

.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;
}

.is-hospital .c-faqTable {
  background: #fbf9f6;
}

.is-migration .c-faqTable {
  background: #ecebdf;
}

@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: 1rem 0 0 1rem;
}

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

/*
 	13.2 faq body - FAQ共通
====================================*/
.c-faq_body {
  border: 2px solid #f2f2f2;
  padding: 40px;
}

.c-faqTtl {
  font-size: 2.4rem;
  font-weight: 700;

  color: #004c8f;
}

.c-faqList {
  display: grid;
  gap: 20px;
}

.is-migration .c-faqTtl {
  color: inherit;
}

@media only screen and (max-width: 767px) {
  .c-faq_body {
    padding: 20px;
  }
  .c-faqTtl {
    font-size: 2rem;
  }
  .c-faqList {
    gap: 10px;
  }
}

/* Q&Aマーク */
.c-faqTtl,
.c-faqList_item {
  position: relative;
  padding-left: calc(1.8em + 0.5em);
}

.c-faqTtl::before,
.c-faqList_item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #d8c700;
  border-radius: 50%;
  width: 1.8em;
  height: 1.8em;
  /* aspect-ratio: 1 / 1; */
}

.c-faqTtl::after,
.c-faqList_item::after {
  content: "Q";
  position: absolute;
  top: 0;
  left: calc(1.8em / 2);
  transform: translateX(-50%);
  color: #004c8f;
  font-weight: 700;
}

.c-faqTtl__answer::after {
  content: "A";
}

/*==================================
  14. 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 {
    margin-top: 40px;
  }
  .c-notfound_ttl {
    font-size: 2.4rem;
  }
}

/*==================================
  15. bbs - イベント掲示板
==================================*/
.c-bbs_detTxt:nth-child(n + 2) {
  margin-top: 20px;
}

@media only screen and (max-width: 767px) {
  .c-bbs_detTxt:nth-child(n + 2) {
    margin-top: 10px;
  }
  .c-bbs_order.c-bbsLabel {
    order: 2;
  }
  .c-bbs_order.c-bbs_post {
    order: 1;
  }
}

/*
 	15.1 Search - 検索パーツ
====================================*/
.c-form_term {
  width: calc(100% / 2 - 40px) !important;
  max-width: 240px;
}

.c-inputList.c-inputList__inline {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 20px;
}

.c-inputList.c-inputList__inline > li:not(:first-child) {
  margin-top: 0;
}

/*
 	15.2 List - 一覧
====================================*/
.c-bbsList {
  border-top: 1px solid #dedede;
}

.c-bbsList_item {
  border-bottom: 1px solid #dedede;
  padding: 40px 0;
}

/* 投稿画像共通 */
.c-post_image {
  width: 100%;
}

.c-post_image > a {
  display: block;
  background: #f5f5f5;
}

.c-post_image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
}

/*
 	15.3 Article - 記事
====================================*/
.c-bbsBox {
  display: flex;
  gap: 40px;
}

.c-bbsBox_img {
  width: 36%;
}

.c-bbsBox_det {
  width: 64%;
}

.c-bbsBox_title {
  font-size: 2rem;
  font-weight: 700;
}

.c-bbsBox_date {
  color: #006f47;
  font-weight: 700;
}

.c-bbsBox_address,
.c-bbsBox_place {
  padding-left: calc(0.3em + 1.8em);
  position: relative;
}

.c-bbsBox_address::before,
.c-bbsBox_place::before {
  content: "";
  position: absolute;
  top: 0.2em;
  left: 0;
  width: 1.4em;
  height: 1.4em;
}

.i_address::before {
  background: url(/assets/images/common/i_address.svg) no-repeat center/cover;
}
.i_place::before {
  background: url(/assets/images/common/i_place.svg) no-repeat center/cover;
}

@media only screen and (max-width: 767px) {
  .c-bbsBox {
    flex-direction: column;
    gap: 10px;
  }
  .c-bbsBox_img,
  .c-bbsBox_det {
    width: 100%;
  }
}

/*
 	15.4 Detail - 詳細ページ
====================================*/
.c-bbs_main {
  display: flex;
  gap: 20px 60px;
}

.c-bbs_img {
  width: 500px;
}

.c-bbs_intro {
  width: calc((100% - 500px) - 60px);
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.c-bbsLabel {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* label */
.c-label03 {
  background: #d8c700;
  border-radius: 9999px;
  font-weight: 700;
  text-align: center;
  padding: 2px 1em;
}

@media only screen and (max-width: 1199px) {
  .c-bbs_main {
    flex-direction: column;
  }
  .c-bbs_img {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
  }
  .c-bbs_intro {
    width: 100%;
    gap: 20px;
  }
}

/*
 	15.4 Form - 投稿フォーム
====================================*/
.c-form_from {
  display: inline-block;
  margin: 0 0.5em;
}
.c-form .c-form_date {
  width: calc(100% / 2 - 2em);
  max-width: 240px;
}

/* ガイドライン */
.c-guideline_det {
  height: 300px;
  padding: 40px;
  overflow-y: scroll;
  overflow-x: hidden;
  border: 2px solid #e0e0e0;
  background: #fff;
}

.c-guideline_det h2,
.c-guideline_det h3 {
  font-weight: 700;
}

.list__count,
.list__disc,
.list__decimal {
  margin-top: 10px;
  margin-left: 0.5em;
}

.list__count li {
  list-style-type: none;
  counter-increment: cnt;
  padding-left: 2em;
}

.list__count li::before {
  content: "(" counter(cnt) ")";
  display: inline-block;
  margin-left: -2em;
  width: 2em;
}

.list__disc li {
  list-style: disc inside;
}

.list__decimal li {
  list-style: decimal inside;
}

.c-guideline_agree {
  display: inline-block;
  position: relative;
}

.c-guideline_agree input[type="checkbox"] {
  position: absolute;
  top: 6px;
  left: 0;
  padding: 10px;
}

.c-guideline_agree_label {
  display: inline-block;
  position: relative;
  padding-left: 1.8em;
}

.c-guideline_agree_label::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 0;
  width: 20px;
  height: 20px;
  background-color: #f5f5f5;
  border: 1px solid #dedede;
  transform: translateY(-50%);
  border-radius: 2px;
}

.c-guideline_agree_label::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 4px;
  width: 12px;
  height: 8px;
  border-left: 3px solid #004c8f;
  border-bottom: 3px solid #004c8f;
  transform: rotate(-45deg);
  border-radius: 3px;
  opacity: 0;
}

.c-guideline_agree input[type="checkbox"]:checked + .c-guideline_agree_label::after {
  opacity: 1;
}

@media only screen and (max-width: 767px) {
  .c-guideline_det {
    padding: 20px;
    height: 40vh;
  }
  .c-guideline_agree input[type="checkbox"] {
    top: 4px;
  }
  .c-guideline_agree_label::before {
    top: 14px;
  }
  .c-guideline_agree input[type="checkbox"]:checked + .c-guideline_agree_label::after {
    top: 8px;
  }
}

/*==================================
  16. PG - フォトギャラリー
==================================*/
.c-lgText:nth-child(n + 2) {
  margin-top: 20px;
}

@media only screen and (max-width: 767px) {
  .c-lgText:nth-child(n + 2) {
    margin-top: 10px;
  }
}

.c-lgDef dt {
  font-size: 110%;
  font-weight: 700;
  position: relative;
  padding-left: calc(1em + 16px);
}
.c-lgDef dt::before {
  content: "";
  position: absolute;
  top: 0.8em;
  left: 0;
  width: 24px;
  height: 0.3em;
  background: #ca4b02;
  border-radius: 2px;
}
.c-lgDef dd {
  margin-top: 10px;
}

/* List */
.c-lgList {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
}

.c-lgList_item figure img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  background: #f0f0f0;
}

.c-lgList_item figcaption {
  margin-top: 0.2em;
  font-size: 90%;
}

@media only screen and (max-width: 1199px) {
  .c-lgList {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media only screen and (max-width: 767px) {
  .c-lgList {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/*==================================
  17. sidebnr - バナー
==================================*/
.c-bnrList {
  display: grid;
  /* gap: 40px; */
  gap: 20px;
}

.c-bnrList:not(:first-of-type) {
  margin-top: 40px;
}

.c-bnrList a {
  display: block;
  width: 100%;

  text-decoration: none;
  color: inherit;
}

.c-bnrList figure img {
  width: 100%;
  height: auto;
  object-fit: cover;
  /* 角丸 */
  border-radius: 1rem;
}

.c-bnrList.c-bnrList__col2 {
  grid-template-columns: repeat(2, 1fr);
}

.c-bnrList.c-bnrList__col3 {
  grid-template-columns: repeat(3, 1fr);
}

.c-bnrList.c-bnrList__col4 {
  grid-template-columns: repeat(4, 1fr);
}

.c-bnrList.c-bnrList__col5 {
  grid-template-columns: repeat(5, 1fr);
}

@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .c-bnrList.c-bnrList__col3.type-l {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .c-bnrList.c-bnrList__col5 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media only screen and (max-width: 767px) {
  .c-bnrList {
    gap: 20px;
  }
  .c-bnrList:not(:first-of-type) {
    margin-top: 20px;
  }
  .c-bnrList.c-bnrList__col2,
  .c-bnrList.c-bnrList__col3 {
    grid-template-columns: repeat(1, 1fr);
  }
  .c-bnrList.c-bnrList__col4,
  .c-bnrList.c-bnrList__col5 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* figcaption */
.c-bnrList figcaption {
  font-weight: 700;
  margin-top: 10px;
}
