body {
  background-color:#f1f1f1;
  font-size:100%;
  margin:0;
  padding:0;
}
a:link,
a:visited {
  text-decoration: none;
  color:#26a;
}
a:hover,
a:active {
  text-decoration: underline;
}

.alert {
  color:#c00;
}

.header {
  margin:0;
  background-color: #000;
  padding:0 30px;
}

.wrap {
  margin:50px;
}
ul,li {
  padding-left:0;
  list-style: none;
}

h1 {
  text-align:center;
  font-size:2.4em;
  line-height:1.2em;
}
h1 span {
  display: block;
  font-size:80%;
  font-weight:normal;
}
p.read {
  text-align:center;
  margin-bottom:2.2em;
}
.note {
  background-color: #fff;
  padding:30px;
  margin-bottom:2.0em;
}
.note  p {
  margin:0.4em 0;
}

.note h2 {
  font-size:1.2em;
  margin:1.5em 0 0.5em 0;
}
.note ul li {
  margin:0.3em 0 0.3em 1.5em;
  list-style:disc;
  
}
.note dl dd {
  margin:0.3em 0 0.3em 1.5em;
  
}

.search_box {
  display:flex;
  background-color: #fff;
  padding:30px;
  margin-bottom:2.0em;
}
.search_box h2 {
  font-size:1.2em;
  margin:0.5em 0;
}
.search_box .col1 {
  width:73%;
}
.search_box .col2 {
  width:27%;
}

.search_cate li {
  display:inline;
  margin-right:1.5em;
  line-height:1.9em;
  white-space: nowrap;
}

.search_alphabet {
  display:flex;
  flex-wrap: wrap;
}
.search_alphabet li {
  width:7%;
  line-height:1.9em;
}
.search_alphabet li:last-child {
  width:100%;
}

.search_keyword{
  background: #fff;
  border:1px solid #666;
  display:flex;
  justify-content:space-between;
}
.search_keyword input[type="text"]{
  border: none;
  height: 2.0em;
  width:100%;
}
.search_keyword input[type="text"]:focus {
  outline: 0;
}
.search_keyword input[type="submit"]{
  cursor: pointer;
  font-family: FontAwesome;
  font-size:1.0em;
  border: none;
  background: #fff;
  color: #000;
  outline : none;
  width: 2.0em;
  height: 2.0em;
}

.datalist {
  width:100%;
}
.datalist caption {
  text-align:left;
  padding-bottom:0.6em;
  font-size:1.2em;
}
.datalist, th, td {
  border-collapse: collapse;
  border: 1px solid #ccc;
  line-height: 1.5;
  background-color:#fff;
}
.datalist th {
  width: 250px;
  padding: 10px;
  font-weight: bold;
  vertical-align: top;
  background: #3f3f3f;
  color: #ffffff;
}
.datalist td {
  padding: 10px;
  vertical-align: middle;
}
.datalist td i {
  margin:0.5em;
}
.datalist td:nth-child(1),
.datalist td:nth-child(7) {
  white-space: nowrap;
  width:10%;
}
.datalist td:nth-child(4) {
  text-align:center;
}

.footer {
  margin-top:50px;
}
.footer .copyright {
  text-align:center;
  font-size:85%;
  color:#666;
}







.accordion-container {
  position: relative;
}

.accordion-container .accordion-title {
  display: block;
  position: relative;
  margin: 0;
  padding: 0.625em 0.625em 0.625em 1.2em;
  cursor: pointer;
}

.accordion-container .accordion-title:hover,
.accordion-container .accordion-title:active,
.accordion-container .content-entry.open .accordion-title {
  color:#26a;
}

.accordion-container .accordion-title:hover i:before,
.accordion-container .accordion-title:hover i:active,
.accordion-container .content-entry.open i {
  color:#26a;
}

.accordion-title{
  position: relative;
}

.accordion-title:after {
  content: "";
  position: absolute;
  left: 0px;
  top: 38%;
  transition: all 0.2s ease-in-out;
  display: block;
  width: 8px;
  height: 8px;
  border-top: solid 2px #26a;
  border-right: solid 2px #26a;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.accordion-title.open:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 45%;
}

.accordion-content {
  display: none;
}

/* ページネーション */
.nav-links{
  padding:2em;
  display:flex;
  justify-content:center;
}
.nav-links a,
.nav-links span{
  width:50px;
  height:50px;
  margin:6px;
  line-height:50px;
  text-align:center;
  font-size:1.0em;
  text-decoration:none;
  color:#222;
  transition:.3s;
}
.nav-links a:hover,
.nav-links .current{
  background:#fff;
}
.nav-links .dots{
  background:none;
}