@charset "UTF-8";

/*==================================
Breadcrumb - パンくず
==================================*/
.c-breadCrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 1.4rem;

  max-width: 1200px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}
.c-breadCrumb > li {
  margin-right: 10px;
}
.c-breadCrumb > li:not(:first-child)::before {
  content: "＞";
  margin-right: 10px;
}

.c-breadCrumb:first-of-type {
  margin-top: 40px;
}
.c-breadCrumb:last-of-type {
  margin-bottom: 60px;
}
@media only screen and (max-width: 768px) {
  .c-breadCrumb:first-of-type {
    margin-top: 20px;
  }
  .c-breadCrumb:last-of-type {
    margin-bottom: 30px;
  }
}

/*==================================
SubVisual - サブビジュアル
==================================*/
.p-subVisual {
  position: relative;
}

.p-subVisual_ttl {
  font-size: 4rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .p-subVisual_ttl {
    font-size: 2.2rem;
  }
}

/*==================================
Title - タイトル
==================================*/
.c-pageTtl {
  font-size: 3rem;
  font-weight: 700;
  color: #226677;
  background: #dae8f2;
  border-top: 4px solid #226677;
  padding: 6px 20px 10px;
}

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

.c-cateTtl {
  border: 1px solid #226677;
  padding: 12px 20px;
  font-size: 2.4rem;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .c-cateTtl {
    font-size: 2rem;
  }
}

/*==================================
Side - サイドカラム
==================================*/
/* ----- カテゴリ一覧 ----- */
.c-category {
  background: #dae8f2;
  padding: 20px;
}
.c-category_ttl {
  font-size: 2.2rem;
  font-weight: 700;
  color: #226677;
}

/* 親カテゴリ*/
.c-categoryList {
  border-bottom: 1px solid #226677;
}
.c-categoryList > li {
  padding: 20px 0;
}
.c-categoryList > li:before {
  left: 20px;
}
.c-categoryList > li:not(:first-of-type) {
  border-top: 1px solid #226677;
}
.c-categoryList > li > a {
  display: block;
  padding-left: 1.8em;
}
.c-categoryList > li > a.s5-2::before {
  top: 10px;
  bottom: auto;
  color: #226677;
}

/* 子カテゴリ*/
.c-categoryList_child {
  margin-top: 20px;
}
.c-categoryList_child > li:not(:first-of-type) {
  margin-top: 20px;
}
.c-categoryList_child > li a {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 1.6rem;
  padding-left: 1.2em;
}

/* ----- かんたん検索 ----- */
.c-easysearch {
  background: #f0f0f0;
  padding: 40px;
}
.c-easysearch_ttl {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
}

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

/* 共通 */
.c-polygonList_item {
  display: flex;
  justify-content: center;
  width: calc(100% / 9);

  margin-top: 20px;
}

.c-polygonList_item > a {
  text-decoration: none;
  display: block;
  color: inherit;
}

.c-polygonList_item > a:hover {
  opacity: 0.8;
}

@media only screen and (max-width: 1200px) {
  .c-polygonList {
    flex-wrap: wrap;
  }
  .c-polygonList_item {
    width: calc(100% / 5);
  }
}

@media only screen and (max-width: 768px) {
  .c-polygonList_item {
    width: calc(100% / 3);
  }
}

/* Octagon - 八角形 */
.c-octagon_ttl {
  font-weight: 700;
  text-align: center;
  margin-top: 10px;
}

.c-octagon {
  position: relative;
  background: #23785e;
  width: 110px;
  height: 110px;
}

.c-octagon_frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 6rem;
}
.c-octagon::before {
  content: "";
  width: 0;
  height: 0;
  border: 16px solid transparent;
  border-top-color: #fff;
  border-left-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
}
.c-octagon::after {
  content: "";
  width: 0;
  height: 0;
  border: 16px solid transparent;
  border-top-color: #fff;
  border-right-color: #fff;
  position: absolute;
  top: 0;
  right: 0;
}
.c-octagon_frame::before {
  content: "";
  width: 0;
  height: 0;
  border: 16px solid transparent;
  border-bottom-color: #fff;
  border-left-color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
}
.c-octagon_frame::after {
  content: "";
  width: 0;
  height: 0;
  border: 16px solid transparent;
  border-bottom-color: #fff;
  border-right-color: #fff;
  position: absolute;
  bottom: 0;
  right: 0;
}

@media only screen and (max-width: 768px) {
  .c-octagon {
    width: 100px;
    height: 100px;
  }
  .c-octagon::before,
  .c-octagon::after,
  .c-octagon_frame::before,
  .c-octagon_frame::after {
    border-width: 14px;
  }
}

.c-octagon__red {
  background: #d70035;
}

/* Octagon Faq */
.c-octagon__40 {
  width: 40px;
  height: 40px;
  background: #dae8f2;
}
.c-octagon__40 .c-octagon_frame {
  font-size: 2.2rem;
  font-weight: 700;
  color: #226677;
}
.c-octagon.c-octagon__40::before,
.c-octagon.c-octagon__40::after,
.c-octagon.c-octagon__40 .c-octagon_frame::before,
.c-octagon.c-octagon__40 .c-octagon_frame::after {
  border-width: 6px;
}

.c-octagon__60 {
  width: 60px;
  height: 60px;
  background: #dae8f2;
}
.c-octagon__60 .c-octagon_frame {
  font-size: 2.8rem;
  font-weight: 700;
  color: #226677;
}
.c-octagon.c-octagon__60::before,
.c-octagon.c-octagon__60::after,
.c-octagon.c-octagon__60 .c-octagon_frame::before,
.c-octagon.c-octagon__60 .c-octagon_frame::after {
  border-width: 8px;
}

@media only screen and (max-width: 768px) {
  .c-octagon__40 {
    width: 32px;
    height: 32px;
  }
  .c-octagon__40 .c-octagon_frame {
    font-size: 1.8rem;
  }
  .c-octagon.c-octagon__40::before,
  .c-octagon.c-octagon__40::after,
  .c-octagon.c-octagon__40 .c-octagon_frame::before,
  .c-octagon.c-octagon__40 .c-octagon_frame::after {
    border-width: 5px;
  }
  .c-octagon__60 {
    width: 40px;
    height: 40px;
  }
  .c-octagon__60 .c-octagon_frame {
    font-size: 1.8rem;
  }
  .c-octagon.c-octagon__60::before,
  .c-octagon.c-octagon__60::after,
  .c-octagon.c-octagon__60 .c-octagon_frame::before,
  .c-octagon.c-octagon__60 .c-octagon_frame::after {
    border-width: 6px;
  }
}

/* top only */
.c-polygonList {
  display: flex;
  margin-top: -20px;
}

/* SP top only */
.c-polygonList__side .c-octagon::before {
  border-top-color: #f0f0f0;
  border-left-color: #f0f0f0;
}
.c-polygonList__side .c-octagon_frame::before {
  border-bottom-color: #f0f0f0;
  border-left-color: #f0f0f0;
}
.c-polygonList__side .c-octagon::after {
  border-top-color: #f0f0f0;
  border-right-color: #f0f0f0;
}
.c-polygonList__side .c-octagon_frame::after {
  border-bottom-color: #f0f0f0;
  border-right-color: #f0f0f0;
}

@media only screen and (min-width: 1201px) {
  .c-polygonList.c-polygonList__side {
    display: block;
    margin-top: 0;
  }

  .c-polygonList__side .c-polygonList_item {
    justify-content: flex-start;
    align-items: center;
    width: 100%;
  }

  .c-polygonList__side .c-polygonList_item:first-of-type {
    margin-top: 0;
  }

  .c-polygonList__side .c-polygonList_item > a {
    display: flex;
    align-items: center;
  }

  .c-polygonList__side .c-octagon {
    width: 60px;
    height: 60px;
  }

  .c-polygonList__side .c-octagon_frame {
    font-size: 3rem;
  }

  .c-polygonList__side .c-octagon::before,
  .c-polygonList__side .c-octagon::after,
  .c-polygonList__side .c-octagon_frame::before,
  .c-polygonList__side .c-octagon_frame::after {
    border-width: 9px;
  }

  .c-polygonList__side .c-octagon_ttl {
    text-align: left;
    margin-top: 0;
    margin-left: 1em;
  }
}

/*==================================
Category - カテゴリ
==================================*/
.c-floorCard > *:first-child {
  margin-top: 0;
}

/* --------ページ一覧-------- */

/* カテゴリ用 */
.c-linkList {
  margin-top: -10px;
}

.c-linkList__col2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.c-linkList__col2 > * {
  width: calc(50% - 10px);
}

.c-linkList > li {
  margin-top: 10px;
}
.c-linkList > li > a {
  display: block;
  text-decoration: none;
  height: 100%;
  font-weight: 700;

  padding: 16px 20px;
  border: 1px solid #226677;
}
.c-linkList > li > a:hover {
  opacity: 0.8;
}

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

/* ページ用 */
.c-linkList_child > li {
  position: relative;
  padding-left: calc(1em + 16px);
}
.c-linkList_child > li {
  margin-top: 10px;
}
.c-linkList_child > li:before {
  font-family: "icomoon";
  content: "\e902";
  position: absolute;
  top: 0;
  left: 0;
  color: #23785e;
  font-size: 110%;
}

/* カテゴリアイコン */
.c-label {
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #dae8f2;
  font-size: 1.4rem;
  width: 10em;
}
@media only screen and (max-width: 768px) {
  .c-label {
    font-size: 1.2rem;
  }
}

/* NEWアイコン */
.c-label01 {
  font-size: 90%;
  font-weight: 700;
  color: #fff;
  background: #d70035;
  padding: 0 0.5em;

  margin-left: 1em;
}

/*==================================
News - ニュース
==================================*/
.c-tabBtns {
  display: flex;
}
.c-tabBtns_item {
  width: calc(100% / 3);
  position: relative;
}
.c-tabBtns_item:nth-of-type(n + 2) {
  margin-left: 6px;
}

.c-tabBtns_item > a {
  display: block;
  background: #f5f5f5;
  border-radius: 3px;
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  padding: 10px 20px;
  border: 1px solid #f5f5f5;

  text-decoration: none;
  color: inherit;
}
.c-tabBtns_item > a.is-active {
  border-color: #226677;
}

.js-tab .js-tab_content > * {
  display: none;
}
.js-tab .js-tab_content > :first-child {
  display: block;
  margin-top: 0;
}

@media only screen and (max-width: 768px) {
  .c-tabBtns_item {
    width: calc(100% / 3);
  }
  .c-tabBtns_item:nth-of-type(n + 2) {
    margin-left: 4px;
  }

  .c-tabBtns_item > a {
    padding: 10px 7px;
    font-size: 1.6rem;
    letter-spacing: 0;
  }
}

/* newsBody - 本体 */
.c-newsList {
  background: #fff;
  border-bottom: 1px solid #e1e1e1;
}
.c-newsList_item {
  padding: 20px 0;
  border-top: 1px solid #e1e1e1;
}
.c-newsList_item_head {
  display: flex;
  align-items: center;
}
.c-newsList_item_head > :not(:first-child) {
  margin-left: 1em;
}
.c-newsList_item_date {
  font-size: 1.5rem;
  font-weight: 400;
}
.c-newsList_item_body {
  flex: 1;
  margin-top: 12px;
}

/* topNews - 高さ固定 */
.c-newsList--hFix {
  height: 370px;
  overflow-y: auto;
  margin-bottom: 0;
}
.c-newsList--hFix2 {
  height: 100%;
  overflow-y: auto;
  margin-bottom: 0;
}

.c-newsList_btn {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}

/* category - 新着情報 */
.c-newsTtl {
  font-size: 2.4rem;
  font-weight: 700;

  color: #226677;
}
.c-newsTtl_btn > a {
  display: inline-block;
  color: inherit;
}
.c-newsTtl_btn > a:before {
  left: auto;
  right: 0;
}
.c-newsTtl_btn > a:after {
  left: auto;
  right: 9px;
}
.c-newsTtl_btn > a > span {
  padding-right: 2em;
}

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

/* ページャー */
.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: block;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  font-weight: 700;
  text-decoration: none;
  color: inherit;
}
.c-paging_list li a.is-current,
.c-paging_list li a:hover {
  border-color: #23785e;
}

.c-paging_list .c-paging_prev > a,
.c-paging_list .c-paging_next > a {
  background: #23785e;
  border-radius: 50%;
  color: #fff;
}

/*==================================
Topics - まちの話題
==================================*/
.c-topicCardUnit {
  margin-top: -20px;
}

.c-topicCardUnit.c-topicCardUnit__col3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.c-topicCardUnit.c-topicCardUnit__col3::after {
  content: "";
  display: block;
  width: calc(100% / 3 - 20px);
}

.c-topicCardUnit.c-topicCardUnit__col3 > * {
  width: calc(100% / 3 - 20px);
}

@media only screen and (max-width: 768px) {
  .c-topicCardUnit.c-topicCardUnit__col3 {
    margin-top: 0;
    flex-direction: column;
  }
  .c-topicCardUnit.c-topicCardUnit__col3 > * {
    margin-top: 20px;
    width: 100%;
    margin-right: 0;
  }
  .c-topicCardUnit.c-topicCardUnit__col3 > :first-child {
    margin-top: 0;
  }
}

.c-topicCard {
  margin-top: 20px;
  background: #f5f5f5;
  /* box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, 0.2); */
  padding: 20px;
}
.c-topicCard a {
  display: block;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.c-topicCard_img {
  margin-bottom: 18px;
}
.c-topicCard_img img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}
.c-topicCard_date {
  font-size: 1.6rem;
  margin-bottom: 5px;
}
.c-topicCard_ttl {
  font-size: 1.8rem;
  font-weight: 700;
}

/*==================================
Calendar - カレンダー
==================================*/
/* カレンダーアイコン */
.c-label02 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10em;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.8;

  background: #f5f5f5;
}

/* イベントカレンダーのタブボタン */
.p-eventTabBtn {
  display: flex;
  justify-content: space-between;
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
}
.p-eventTabBtn_item {
  width: calc(100% / 4 - 20px); /* カレンダーのカテゴリ数に準じる SP注意 */
}
.p-eventTabBtn_btn {
  display: block;
  text-align: center;
  font-weight: 700;
  padding: 12px 1em;

  border: 2px solid #226677;
  color: inherit;
}

.p-eventTabBtn_btn:hover,
.p-eventTabBtn_btn.current {
  background: #226677;
  color: #fff;
}

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

@media only screen and (max-width: 768px) {
  .p-eventMonth_btn {
    width: 32px;
    height: 32px;
  }
  .p-eventTabBtn {
    flex-wrap: wrap;
  }
  .p-eventTabBtn_item {
    width: calc(100% / 2 - 5px);
  }
  /* .p-eventTabBtn_item:first-child {
    width: 100%;
  } */
  .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;
  -webkit-transform: translateY(-50%) scale(-1);
  transform: translateY(-50%) scale(-1);
}
.p-eventMonth_btn.p-eventMonth_btn__next {
  right: 0;
  -webkit-transform: translateY(-50%);
  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;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background: #23785e;
}
.p-eventMonth_btn::after {
  left: 16px;
  width: 18px;
  height: 18px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

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

  border-bottom: 2px solid #226677;
}

@media only screen and (max-width: 768px) {
  .p-eventcal_ttl {
    font-size: 2rem;
    padding: 16px 20px;
  }
}

.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 {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  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 {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

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

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

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

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

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

  padding: 16px 20px;
  border: 1px solid #226677;
}
.c-orgTtl02 {
  font-size: 2.2rem;
  font-weight: 700;
  /* indent */
  margin-left: 40px;

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

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

/* 最小部署 */
.c-orgList {
  /* indent */
  margin-left: calc(40px * 1); /*　40 x 階層の数 */
}
.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;
}

/*==================================
Detail - 詳細ページ
==================================*/
/* Basic Information - ページ基本情報 */
.c-update_date {
  text-align: right;
  font-size: 90%;
}

.c-shareList {
  margin-top: 0.5em;
  display: flex;
  justify-content: flex-end;
}
.c-shareList > li:not(:first-of-type) {
  margin-left: 1em;
}
.c-shareList a {
  display: block;
}

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

  padding: 20px 40px;
  background: #f0f0f0;
}
.c-signature_head {
  font-size: 125%;
  padding: 10px 0;

  border-bottom: 1px solid #226677;
  color: #23785e;
}
.c-signature_body {
  padding: 20px 0;
}
.c-signature_body > p:first-child {
  font-weight: 700;
  margin-bottom: 0.3em;
}

@media only screen and (max-width: 768px) {
  .c-signature {
    padding: 10px 20px;
  }
  .c-signature_body {
    padding: 10px;
  }
}

/*==================================
404 - NotFound
==================================*/
.c-notfound {
  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;
}

.c-notfound_btn {
  display: inline-block;
  text-decoration: none;
  padding: 16px 40px;

  border: 2px solid #226677;
  color: inherit;
}

.c-notfound_btn:hover {
  background: #dae8f2;
}

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

/*==================================
Faq - よくある質問
==================================*/
/* sidebar */
.c-faq_ttl {
  text-align: center;
}
.c-faq_ttl > span {
  font-size: 70%;
  display: block;
}

/* Status */
.c-faqStatus {
  display: flex;
  justify-content: flex-end;
}

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

.c-faqStatus_num {
  display: inline-block;
  margin-left: 1em;
}

@media only screen and (max-width: 768px) {
  .c-faqStatus {
    flex-direction: column;
  }
  .c-faqStatus > li {
    text-align: right;
  }
  .c-faqStatus > li:not(:first-of-type) {
    margin-left: 0;
  }
}

/* Q&A */
.c-questionTtl {
  display: flex;
  align-items: center;
}

.c-questionTtl_ttl {
  font-size: 2.4rem;
  font-weight: 700;
  color: #226677;
}

.c-questionTtl_txt {
  font-size: 110%;
}

.c-questionTtl_rel {
  font-size: 2.8rem;
  font-weight: 700;
  padding-bottom: 0.2em;
  border-bottom: 1px solid #226677;
  color: #226677;
}

@media only screen and (max-width: 768px) {
  .c-questionTtl_ttl {
    font-size: 2rem;
  }
  .c-questionTtl_rel {
    font-size: 2.2rem;
  }
}

.c-faqTable dl {
  width: 100%;
  display: table;
  word-break: break-word;
  background: #226677;
}

.c-faqTable dl dd,
.c-faqTable dl dt {
  display: table-cell;
  padding: 20px;
  vertical-align: middle;
}

.c-faqTable dl dt {
  width: 300px;
  color: #fff;
}

@media only screen and (max-width: 768px) {
  .c-faqTable dl {
    display: block;
  }
  .c-faqTable dl dt,
  .c-faqTable dl dd {
    display: block;
    padding: 16px;
  }
  .c-faqTable dl dt {
    width: 100%;
  }
  .c-faqTable dl dd {
    padding-top: 0;
  }
}

.c-faq_icon {
  font-size: 180%;
  display: inline-block;
  margin-right: 0.2em;
  vertical-align: middle;
}

.c-faq_form {
  height: 100%;
  position: relative;
}

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

.c-faq_form button {
  font-weight: 700;
  text-align: center;
  width: 4em;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background: #dae8f2;
}

.c-faqPanel_ttl {
  font-size: 2.2rem;
  padding: 20px;
  border: 1px solid #226677;
}

@media only screen and (max-width: 768px) {
  .c-faqPanel_ttl {
    font-size: 2rem;
    padding: 15px 20px;
  }
}

.c-faqPanel_body {
  margin-top: 40px;
}

.c-faqPanel_list > li {
  display: flex;
}

.c-faqPanel_list > li:not(:first-of-type) {
  margin-top: 1em;
}

.c-octagon__40,
.c-octagon__60 {
  flex-shrink: 0;
  margin-right: 1em;
}

@media only screen and (max-width: 768px) {
  .c-octagon__40,
  .c-octagon__60 {
    margin-right: 0.8em;
  }
}


/* 240201追記　FAQ - よくある質問 */
.c_side_faq > a {
  text-decoration: none;
  color: #fff;
  display: block;
  text-align:center;
  padding: 40px 20px;
  background-color: #23785e;
  font-weight: 700;
  font-size: 2.2rem;
}

.side_faq-icon{
  position: relative;
  display: inline-block;
  padding-left: calc(66px + 20px);
}

.side_faq-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 66px;
  height: 55px;
}

.side_faq-icon::before{
  background: url(/gyosei/assets/images/index/faq.svg) no-repeat center/contain;
}

@media only screen and (max-width: 1199px) {
  .c_side_faq > a {
    padding: 30px 20px;
    font-size: 1.8rem;
  }
}