@charset "UTF-8";

/*==================================
Breadcrumb - パンくず
==================================*/
.l-wrap > nav {
  margin-top: 40px;
  margin-bottom: 60px;
}
.c-breadCrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 1.4rem;
}
.c-breadCrumb > li {
  margin-right: 10px;
}
.c-breadCrumb > li:not(:first-child):before {
  content: "＞";
  margin-right: 10px;
}

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

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

/*==================================
Side - サイドカラム
==================================*/
/* ----- カテゴリ一覧 ----- */
.c-category_ttl {
  font-size: 2.2rem;
  font-weight: 700;
  background: #ff7d00;
  border-radius: 20px 20px 0 0;
  padding: 20px 30px;
}

/* 親カテゴリ*/
.c-categoryList {
  border: 1px solid #ff7d00;
  border-top: none;
}
.c-categoryList > li {
  padding: 20px;
}
.c-categoryList > li:before {
  left: 20px;
}
.c-categoryList > li:not(:first-of-type) {
  border-top: 1px solid #ff7d00;
}
.c-categoryList > li > a {
  display: block;
  padding-left: 1.8em;
}

/* 子カテゴリ*/
.c-categoryList_child {
  border: 1px solid #ff7d00;
  border-top: none;
  background: #f5f5f5;
  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;
  padding-left: 1.2em;
}

@media only screen and (max-width: 768px) {
  .c-category_ttl {
    padding: 16px 20px;
  }
  .c-categoryList > li {
    padding: 16px;
  }
}

/* ----- かんたん検索 ----- */
.c-easysearch_ttl {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;

  background: #c3ebfa;
  border-radius: 20px 20px 0 0;
  padding: 20px;
}

/* 共通 */
.c-squareList {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: -10px;
}

.c-squareList_item {
  margin-top: 10px;
  display: flex;
}

.c-squareList_item > a {
  text-decoration: none;
  color: inherit;
  overflow: hidden;

  /* padding-top: 70%;*/
  background: #f5f5f5;
  position: relative;
  aspect-ratio: 1;
  border-radius: 5px;

  display: block;
  text-align: center;
  font-weight: 700;
  width: 100%;
  padding: 5px;
  line-height: 1;
}

/* .c-squareList_item > a:after {
  content: "";
  border: 2px solid #fff;
  border-radius: 5px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  position: absolute;
  top: 10px;
  left: 10px;
}*/
.c-squareList_item > a:before {
  color: #fff;
  position: absolute;
  top: calc(50% - 20px);
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.c-squareList_item > a:hover {
  opacity: 0.7;
}
.c-squareList_ttl {
  aspect-ratio: 1;
  padding: calc(70% - 5px) 5px 5px 5px;
  border: 2px solid #fff;
  border-radius: 5px;
}

.c-squareList:nth-of-type(even) .c-squareList_item:nth-child(even) > a {
  background: #ff7d00;
}
.c-squareList:nth-of-type(even) .c-squareList_item:nth-child(odd) > a {
  background: #6ec3e6;
}
.c-squareList:nth-of-type(odd) .c-squareList_item:nth-child(even) > a {
  background: #6ec3e6;
}
.c-squareList:nth-of-type(odd) .c-squareList_item:nth-child(odd) > a {
  background: #ff7d00;
}

/* トップページ */
.c-squareListUnit__top .c-squareList > li {
  width: calc(100% / 5 - 10px);
}
.c-squareListUnit__top .c-squareList:nth-child(2) {
  margin-top: 0;
}
.c-squareListUnit__top .c-squareList_item > a:before {
  content: "";
  aspect-ratio: 1;
  width: 100px;
}

/* サイドカラム */
.c-squareListUnit__side {
  display: flex;
}
.c-squareListUnit__side .c-squareList {
  margin-top: 0;
  width: 50%;
}
.c-squareListUnit__side .c-squareList > li {
  width: calc(100% - 5px);
}
.c-squareListUnit__side .c-squareList_item > a {
  font-size: 1.6rem;
}
.c-squareListUnit__side .c-squareList_item > a:before {
  content: "";
  aspect-ratio: 1;
  width: 60px;
}

@media (min-width: 769px) and (max-width: 1200px) {
  /* 共通 */
  .c-squareListUnit .c-squareList_item > a:before {
    width: 8vw;
  }
  /* サイドカラム */
  .c-squareListUnit__side {
    flex-wrap: wrap;
  }
  .c-squareListUnit__side .c-squareList > li {
    width: calc(100% / 5 - 10px);
  }
  .c-squareListUnit__side .c-squareList:nth-child(2) {
    margin-top: 0;
  }
}

@media only screen and (max-width: 768px) {
  /* 共通 */
  .c-squareListUnit {
    display: flex;
  }
  .c-squareListUnit .c-squareList {
    flex-direction: column;
    width: 50%;
  }
  .c-squareListUnit .c-squareList_item > a:before {
    width: 20vw;
  }
  /* トップページ */
  .c-squareListUnit__top .c-squareList > li {
    width: calc(100% - 5px);
  }
  .c-squareListUnit__top .c-squareList:nth-child(2) {
    margin-top: -10px;
  }
}

/*==================================
SubVisual - サブビジュアル
==================================*/
.p-subVisual {
  overflow: hidden;
}
.p-subVisual_bg {
  height: 270px;
  background: #c3ebfa;
  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;
  padding-top: 40px;
  margin-bottom: 22px;
}
.p-subVisual_bg:before {
  content: "";
  background: url(/assets/images/common/subvis_wave.svg) no-repeat center/cover;
  position: absolute;
  bottom: -21px;
  left: 0;
  width: 100%;
  height: 22px;
}

.p-gyoseiTtl {
  width: 100%;
  max-width: 1160px;
  text-align: center;
  font-size: 3.8rem;
  font-weight: 700;

  position: relative;
  margin-top: 36px;
}
.p-gyoseiTtl:before {
  content: "";
  position: absolute;
  top: -42px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 238px;
  height: 42px;
}

.p-gyoseiTtl__abo:before {
  background: url(/assets/images/title/t_about.svg);
}
.p-gyoseiTtl__ads:before {
  background: url(/assets/images/title/t_adsense.svg);
}
.p-gyoseiTtl__cal:before {
  background: url(/assets/images/title/t_calendar.svg);
}
.p-gyoseiTtl__cat:before {
  background: url(/assets/images/title/t_category.svg);
}
.p-gyoseiTtl__new:before {
  background: url(/assets/images/title/t_news.svg);
}
.p-gyoseiTtl__org:before {
  background: url(/assets/images/title/t_organization.svg);
}
.p-gyoseiTtl__sea:before {
  background: url(/assets/images/title/t_search.svg);
}
.p-gyoseiTtl__soc:before {
  background: url(/assets/images/title/t_social.svg);
}
.p-gyoseiTtl__upd:before {
  background: url(/assets/images/title/t_update.svg);
}

@media only screen and (max-width: 768px) {
  .p-gyoseiTtl {
    font-size: 3rem;
    padding: 0 20px;
  }
}

/*==================================
Title - タイトル
==================================*/
/* 下線タイトル */
.c-pageTtl {
  font-size: 3rem;
  font-weight: 700;
  padding-bottom: 0.2em;
  position: relative;
  border-bottom: 4px solid #c3ebfa;
}
.c-pageTtl:after {
  position: absolute;
  bottom: -4px;
  left: 0;
  z-index: 2;
  content: "";
  width: 1em;
  height: 4px;
  background-color: #ff7d00;
}
@media only screen and (max-width: 768px) {
  .c-pageTtl {
    font-size: 2.6rem;
  }
}

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

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

.c-shareList {
  margin-top: 0.2em;
  display: flex;
  justify-content: flex-end;
}
.c-shareList > li:not(:first-of-type) {
  margin-left: 1em;
}
.c-shareList a {
  display: block;
}
.c-shareList a img {
  width: 90px;
  height: auto;
}

/*==================================
Signature - 署名
==================================*/
.c-signature {
  margin-top: 120px;
  border: 2px solid #c3ebfa;
}
.c-signature_head {
  font-size: 125%;
  background: #c3ebfa;
  padding: 10px 20px;
}
.c-signature_body {
  padding: 20px 40px;
}
.c-signature_body > p:first-child {
  font-weight: 700;
  margin-bottom: 0.3em;
}

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

/*==================================
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;
  height: 100%;
  padding: 16px 20px;
  font-weight: 700;
  background: #c3ebfa;
  border: 1px solid #c3ebfa;
  text-decoration: none;
}
.c-linkList > li > a:hover {
  opacity: 0.9;
}

@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: "\e909";
  position: absolute;
  top: 0;
  left: 0;
  color: #6ec3e6;
  font-size: 110%;
}

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

/* NEWアイコン */
.c-label01 {
  margin-left: 1em;
  color: #ff3700;
  font-weight: 700;
}

/*==================================
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;
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  padding: 16px 20px;
  text-decoration: none;
  color: inherit;

  background: #f5f5f5;
  border-radius: 20px 20px 0 0;
}
.c-tabBtns_item > a.is-active {
  background: #6ec3e6;
}

.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: 14px 7px;
    font-size: 1.6rem;
    letter-spacing: 0;
    border-radius: 10px 10px 0 0;
  }
}

/* newsBody - 本体 */
.c-newsList {
  border-top: 1px solid #e1e1e1;
  border-bottom: 1px solid #e1e1e1;
}
.c-newsList_item {
  padding: 20px 0;
}
.c-newsList_item:not(:first-of-type) {
  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;
}
.c-newsList_item_body {
  flex: 1;
  margin-top: 12px;
}

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

.c-newsList_btn {
  text-align: center;
}

/* category - 新着情報 */
.c-newsTtl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.c-newsTtl_ttl {
  font-size: 2.8rem;
  font-weight: 700;
}
.c-newsTtl_btn > a {
  display: inline-block;
  color: inherit;
  white-space: nowrap;
}
.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;
}

.c-newsBox {
  padding: 20px 40px;
  border: 2px solid #c3ebfa;
  border-radius: 20px;
}

@media only screen and (max-width: 768px) {
  .c-newsBox {
    padding: 10px 20px 20px;
  }
  .c-newsTtl {
    margin-bottom: 10px;
  }
  .c-newsTtl_ttl {
    font-size: 2.4rem;
  }
  .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 #6ec3e6;
  background: #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  font-weight: 700;
  border-radius: 50%;
  text-decoration: none;
  color: inherit;
}
.c-paging_list li a.is-current,
.c-paging_list li a:hover {
  background: #6ec3e6;
}

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

/* イベントカレンダーのタブボタン */
.p-eventTabBtn {
  display: flex;
  justify-content: space-between;
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
}
.p-eventTabBtn_item {
  width: calc(100% / 5 - 20px);
}
.p-eventTabBtn_btn {
  display: block;
  text-align: center;
  font-weight: 700;
  padding: 12px 1em;
  background: #c3ebfa;
  color: inherit;
  border-radius: 5px;
}

.p-eventTabBtn_btn:hover,
.p-eventTabBtn_btn.current {
  background: #6ec3e6;
}

.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 + 2) {
    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: #3c6eaf;
}
.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;
  background: #c3ebfa;
  border-radius: 20px 20px 0 0;
  padding: 16px 40px;
}

@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;
  }
  .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 {
  background: #c3ebfa;
  padding: 16px 20px;
  font-size: 2.6rem;
  font-weight: 700;
}
.c-orgTtl02 {
  border-left: 10px solid #3c6eaf;
  padding: 6px 20px;
  font-size: 2.2rem;
  font-weight: 700;
  /* indent */
  margin-left: 40px;
}

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

/*==================================
Sitemap - サイトマップ
==================================*/
.c-siteList {
  margin-top: -10px;
}
.c-siteList li {
  margin-top: 10px;
  position: relative;
}
.c-siteList li::before {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 10px;
  height: 10px;
  border-top: 2px solid #ff7d00;
  border-right: 2px solid #ff7d00;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.c-siteList li > a {
  display: inline-block;
  padding-left: 1.2em;
}

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

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

/* 下層 */
.c-siteList_child {
  margin-top: 10px;
}
.c-siteList_child.ind1 {
  margin-left: 1.5em;
}
.c-siteList_child.ind2 {
  margin-left: 3em;
}
.c-siteList_child.ind3 {
  margin-left: 4.5em;
}
.c-siteList_child.ind4 {
  margin-left: 6em;
}
