@charset "UTF-8";

/*-------------------------------
  コンテンツ
-------------------------------*/

/*--- リンク ---*/

/*--- ファイルアイコン ---*/
.o-entry-content a.c-file-icon--pdf,
.o-entry-content a[href$=".pdf"],
.o-entry-content a[href$=".PDF"],
.o-entry-content a.c-file-icon--doc,
.o-entry-content a[href$=".doc"],
.o-entry-content a[href$=".docx"],
.o-entry-content a.c-file-icon--xls,
.o-entry-content a[href$=".xls"],
.o-entry-content a[href$=".xlsx"],
.o-entry-content a.c-file-icon--data,
.o-entry-content a[href$=".zip"] {
  display: inline-block;
}
.o-entry-content a.c-file-icon--pdf:before,
.o-entry-content a[href$=".pdf"]:before,
.o-entry-content a[href$=".PDF"]:before,
.o-entry-content a.c-file-icon--doc:before,
.o-entry-content a[href$=".doc"]:before,
.o-entry-content a[href$=".docx"]:before,
.o-entry-content a.c-file-icon--xls:before,
.o-entry-content a[href$=".xls"]:before,
.o-entry-content a[href$=".xlsx"]:before,
.o-entry-content a.c-file-icon--data:before,
.o-entry-content a[href$=".zip"]:before {
  font-family: "Font Awesome 5 Free";
  margin-right: 6px;
  font-size: 1.2em;
}
.o-entry-content a.c-file-icon--pdf:before,
.o-entry-content a[href$=".pdf"]:before,
.o-entry-content a[href$=".PDF"]:before {
  content: "\f1c1";
  color: #DD4D44;
}
.o-entry-content a.c-file-icon--doc:before,
.o-entry-content a[href$=".doc"]:before,
.o-entry-content a[href$=".docx"]:before {
  content: "\f1c2";
  color: #2A5699;
}
.o-entry-content a.c-file-icon--xls:before,
.o-entry-content a[href$=".xls"]:before,
.o-entry-content a[href$=".xlsx"]:before {
  content: "\f1c3";
  color: #1E6F43;
}
.o-entry-content a.c-file-icon--data:before,
.o-entry-content a[href$=".zip"]:before {
  content: "\f1c6";
  color: #B5B5B5;
}
.o-entry-content a.c-file-icon--none {
  display: inline;
}
.o-entry-content a.c-file-icon--none:before {
  display: none;
}

/*--- リスト ---*/
.o-entry-content ul {
  margin-left: 1.75em;
}
.o-entry-content ol {
  margin-left: 1.5em;
}
.o-entry-content li {
  list-style-type: inherit;
}

/*--- テーブル ---*/

/*--- フォーム部品 ---*/
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="telephone"],
input[type="number"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="month"],
input[type="week"],
input[type="time"],
textarea {
  padding: 0.5rem 0.75rem;
  width: 100%;
  border: 1px solid var(--color-line);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.035);
  vertical-align: bottom;
  font-size: var(--px-to-rem_15);
}
input[type="text"]:hover,
input[type="password"]:hover,
input[type="email"]:hover,
input[type="url"]:hover,
input[type="search"]:hover,
input[type="telephone"]:hover,
input[type="number"]:hover,
input[type="date"]:hover,
input[type="datetime"]:hover,
input[type="datetime-local"]:hover,
input[type="month"]:hover,
input[type="week"]:hover,
input[type="time"]:hover,
textarea:hover {
  border-color: #999;
}
input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="telephone"]:focus,
input[type="number"]:focus,
input[type="date"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
textarea:focus {
  border-color: #85b7d9;
}
.o-form-control--s {
  width: 5rem !important;
}
.o-form-control--m {
  width: 20rem !important;
}
.o-form-control--l {
  width: 40rem !important;
}
@media only screen and (max-width: 39.9375rem) {
  .o-form-control--full,
  .o-form-control--m,
  .o-form-control--l {
    width: 100% !important;
  }
}
select {
  padding: 0.375rem 0.75rem;
  border: 1px solid var(--color-line);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.035);
  vertical-align: bottom;
}
@media only screen and (max-width: 39.9375rem) {
  select {
    max-width: 80vw;
  }
}

.c-pnavi {
  text-align: center;
}
a.page-numbers {
  padding: 1rem;
  line-height: 1;
  border: 1px solid var(--color-main);
  background-color: var(--color-main);
  color: #ffffff;
  transition: 0.2s;
  text-decoration: none;
  display: inline-block;
}
.page-numbers.current,
a.page-numbers:hover {
  display: inline-block;
  padding: 1rem;
  line-height: 1;
  border: 1px solid var(--color-main);
  background-color: #ffffff;
  color: var(--color-main);
}