@charset "UTF-8";

/* 背景 */
body.is-gyosei {
  background-image: url(/assets/images/common/bg_body.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom 30% center;
  background-attachment: fixed;
}

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

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

.c-breadcrumbList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 1.4rem;
}

.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;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/*==================================
Title - タイトル
==================================*/
/* ページタイトル */
.c-pageTtl {
  font-size: 3.2rem;
  font-weight: 700;
  padding-bottom: 0.2em;
  position: relative;
  color: #1f5173;
  border-bottom: 4px solid #1f5173;
}

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

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

  padding: 16px 20px;
  background: #ebe6da;
}
@media only screen and (max-width: 767px) {
  .c-cateTtl {
    font-size: 2rem;
    padding: 12px 20px;
  }
}

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

  background: #fff;
  padding: 20px 40px;
  border: 2px solid #ebe6da;
}
.c-signature_head {
  font-size: 125%;
  color: #1f5173;
}
.c-signature_body {
  margin-top: 20px;
}
.c-signature_body > p:first-child {
  font-weight: 700;
  margin-bottom: 0.3em;
}

@media only screen and (max-width: 767px) {
  .c-signature {
    padding: 10px 20px;
  }
  .c-signature_body {
    margin-top: 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;

  background: #1f5173;
  border: 2px solid #1f5173;
  color: #fff;
}

.c-notfound_btn:hover,
.c-notfound_btn:focus {
  background: #fff;
  color: #1f5173;
}

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

/*==================================
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;
  background: #ebe6da;
}
.c-linkList li > a:hover,
.c-linkList li > a:focus {
  opacity: 0.8;
}

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

/* ページ用 */
.c-linkList_child {
}

.c-linkList_child > li + li {
  margin-top: 10px;
}

.c-linkList_child > li a {
  display: inline-block;
  position: relative;
  padding-left: calc(1em + 16px);
}

.c-linkList_child > li a::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  background: url(/assets/images/common/icon-pages.svg) no-repeat center/cover;
  width: 20px;
  height: 24px;
}

@media only screen and (min-width: 768px) {
  .c-linkList_child.c-linkList__col2 > li {
    margin-top: 0;
  }
  .c-linkList_child.c-linkList__col2 > li:nth-child(n + 3) {
    margin-top: 10px;
  }
}

@media only screen and (max-width: 767px) {
  .c-linkList_child > li a::before {
    width: 18px;
    height: 22px;
  }
}

/* フォルダアイコン */
.c-linkList_child.icon-folder > li a:before {
  background: url(/assets/images/common/icon-folder.svg) no-repeat center/cover;
  top: 6px;
  width: 20px;
  height: 16px;
}

@media only screen and (max-width: 767px) {
  .c-linkList_child.icon-folder li:before {
    top: 6px;
    width: 18px;
    height: 14px;
  }
}

/*==================================
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 {
  width: 100px;
}
.c-shareList > li:not(:first-of-type) {
  margin-left: 1em;
}
.c-shareList a {
  display: block;
}

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

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

  background: #ebe6da;
  padding: 16px 20px;
  border-bottom: 1px solid #b1b1b1;
}

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

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

  position: relative;
}
.c-categoryList li > a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 1.6em;

  background: #ebe6da;
}

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

/* 子カテゴリ*/
.c-categoryList_child {
  border: 1px solid #b1b1b1;
  border-top: none;
  background: #fff;
  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;
  position: relative;
}

.c-categoryList_child li > a::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;

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

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

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

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

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

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

/* イベントカレンダーのタブボタン */
.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% / 6 - 10px);
  font-size: 1.6rem;
}
.p-eventTabBtn_btn {
  display: block;
  text-align: center;
  font-weight: 700;
  padding: 12px 1em;
  background: #fff;
  border: 1px solid #1f5173;
}

.p-eventTabBtn_btn:hover,
.p-eventTabBtn_btn:focus,
.p-eventTabBtn_btn.current {
  background: #1f5173;
  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;
  -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 #1f5173;
  border-right: 3px solid #1f5173;
  -webkit-transform: rotate(45deg);
  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;
  background: #f7f5f0;
  padding: 16px 40px;
}

@media only screen and (max-width: 767px) {
  .p-eventcal_ttl {
    font-size: 2rem;
    padding: 12px 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,
.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: -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: 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;
  }
}
