/* media query */
.searchArea {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 60px;
}

@media all and (max-width: 1200px) {
  .searchArea {
    max-width: 100%;
    margin-left: 30px;
    margin-right: 30px;
  }
}

@media screen and (max-width: 668px) and (orientation: portrait) {
  .searchArea {
    max-width: 100%;
    margin-left: 25px;
    margin-right: 25px;
  }
}

.searchArea div.selectList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto 40px;
}

@media screen and (max-width: 960px) {
  .searchArea div.selectList {
    margin: 20px auto;
  }
}

.searchArea div.selectList p {
  margin-right: 20px;
}

@media screen and (max-width: 668px) {
  .searchArea div.selectList p {
    margin-right: 0;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }
}

.searchArea div.selectList select {
  width: 250px;
}

@media screen and (max-width: 668px) {
  .searchArea div.selectList select:not(:first-child) {
    border-left: 1px solid #222;
  }
}

.searchArea div.selectList select:last-child {
  border-left: 0;
}

@media screen and (max-width: 668px) {
  .searchArea div.selectList select {
    width: 50%;
  }
}

.searchArea div.submitBtn {
  text-align: center;
}

.searchArea div.submitBtn input[type="submit"] {
  width: 300px;
  font-size: 1.1em;
  letter-spacing: 1px;
  padding: 10px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 5px auto;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%225%22%20height%3D%228.239%22%20viewBox%3D%220%200%205%208.239%22%3E%20%3Cpath%20id%3D%22chevron-right-solid%22%20d%3D%22M32.362%2C42.1%2C28.7%2C45.764a.453.453%2C0%2C0%2C1-.64%2C0l-.428-.428a.453.453%2C0%2C0%2C1%2C0-.64l2.906-2.92-2.906-2.92a.453.453%2C0%2C0%2C1%2C0-.64l.428-.428a.453.453%2C0%2C0%2C1%2C.64%2C0l3.667%2C3.667A.453.453%2C0%2C0%2C1%2C32.362%2C42.1Z%22%20transform%3D%22translate(-27.495%20-37.657)%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E");
  background-position: right 15px center;
}

@media screen and (max-width: 668px) {
  .searchArea div.submitBtn input[type="submit"] {
    width: 100%;
  }
}

.bookList {
  background: url(../../common/images/bg_gray.png);
  padding: 60px 0 10px;
}

@media screen and (max-width: 668px) {
  .bookList {
    padding: 60px 0 30px;
  }
}

.bookList ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

@media screen and (max-width: 668px) and (orientation: portrait) {
  .bookList ul {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 85%;
  }
}

.bookList ul li {
  width: calc((100% / 3) - 30px);
  margin-bottom: 50px;
  text-align: center;
  background: #fff;
  padding: 30px 20px;
}

@media screen and (max-width: 960px) {
  .bookList ul li {
    width: calc((100% / 3) - 40px);
  }
}

@media screen and (max-width: 668px) and (orientation: portrait) {
  .bookList ul li {
    width: 48%;
    padding: 10px;
    margin-bottom: 30px;
  }
}

.bookList ul li:not(:nth-child(3n+1)) {
  margin-left: 45px;
}

@media screen and (max-width: 960px) {
  .bookList ul li:not(:nth-child(3n+1)) {
    margin-left: 30px;
  }
}

@media screen and (max-width: 668px) and (orientation: portrait) {
  .bookList ul li:not(:nth-child(3n+1)) {
    margin-left: 0;
  }
}

.bookList ul li a {
  display: inline-block;
}

.bookList ul li a img {
  max-width: 250px;
}

.bookList ul li a:hover {
  opacity: 0.7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.bookList ul li a + p {
  margin-top: 20px;
}

.bookList ul li p.link {
  margin-top: 10px;
  text-align: center;
}

.bookList ul li p.link a {
  position: relative;
  display: inline-block;
  border: 1px solid #ddd;
  line-height: 150%;
  font-size: 14px;
  color: #222;
  padding: 15px 40px 15px 25px;
  background-color: #fff;
  letter-spacing: 5px;
}

.bookList ul li p.link a::after {
  position: absolute;
  right: 20px;
  top: calc(50% - 5px);
  content: "";
  display: block;
  width: 5px;
  height: 9px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 5px auto;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%225%22%20height%3D%228.239%22%20viewBox%3D%220%200%205%208.239%22%3E%20%3Cpath%20id%3D%22chevron-right-solid%22%20d%3D%22M32.362%2C42.1%2C28.7%2C45.764a.453.453%2C0%2C0%2C1-.64%2C0l-.428-.428a.453.453%2C0%2C0%2C1%2C0-.64l2.906-2.92-2.906-2.92a.453.453%2C0%2C0%2C1%2C0-.64l.428-.428a.453.453%2C0%2C0%2C1%2C.64%2C0l3.667%2C3.667A.453.453%2C0%2C0%2C1%2C32.362%2C42.1Z%22%20transform%3D%22translate(-27.495%20-37.657)%22%20fill%3D%22%23ddd%22%2F%3E%3C%2Fsvg%3E");
  background-size: contain;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.bookList ul li p.link a:hover {
  background-color: #3E577E;
  color: #fff;
  border: 1px solid #3E577E;
}

@media screen and (max-width: 960px) {
  .bookList ul li p.link a {
    padding: 10px 35px 10px 15px;
  }
}

.bookList ul li p.link a:hover::after {
  right: 15px;
}

@media screen and (max-width: 668px) {
  .bookList ul li p.link a {
    font-size: 3vw;
    padding: 10px 20px 10px 10px;
  }
}

@media screen and (max-width: 668px) {
  .bookList ul li p.link a::after {
    right: 10px;
  }
}

nav.navStd {
  height: 51px;
}

@media screen and (max-width: 668px) {
  nav.navStd {
    height: auto;
  }
}

nav.navStd.fixed {
  position: inherit;
}

section.inner {
  max-width: 1200px;
  margin: 0 auto;
}

@media all and (max-width: 1200px) {
  section.inner {
    max-width: 100%;
    margin-left: 30px;
    margin-right: 30px;
  }
}

@media screen and (max-width: 668px) and (orientation: portrait) {
  section.inner {
    max-width: 100%;
    margin-left: 25px;
    margin-right: 25px;
  }
}

section.inner .headline_normal {
  font-size: 1.4em;
  padding-bottom: 5px;
  margin: 50px 0 20px;
  border-bottom: 2px solid #222;
}

section.inner ul.notice li {
  padding-left: 1em;
  text-indent: -0.9em;
}

section.inner .check_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-width: 700px;
  margin: 50px auto;
}

section.inner .check_area button {
  cursor: pointer;
}

section.inner .check_area button.check_ng {
  position: relative;
  display: inline-block;
  border: 1px solid #ddd;
  line-height: 150%;
  font-size: 14px;
  color: #222;
  padding: 15px 40px 15px 25px;
  background-color: #fff;
  letter-spacing: 5px;
  padding: 15px 25px;
}

section.inner .check_area button.check_ng::after {
  position: absolute;
  right: 20px;
  top: calc(50% - 5px);
  content: "";
  display: block;
  width: 5px;
  height: 9px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 5px auto;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%225%22%20height%3D%228.239%22%20viewBox%3D%220%200%205%208.239%22%3E%20%3Cpath%20id%3D%22chevron-right-solid%22%20d%3D%22M32.362%2C42.1%2C28.7%2C45.764a.453.453%2C0%2C0%2C1-.64%2C0l-.428-.428a.453.453%2C0%2C0%2C1%2C0-.64l2.906-2.92-2.906-2.92a.453.453%2C0%2C0%2C1%2C0-.64l.428-.428a.453.453%2C0%2C0%2C1%2C.64%2C0l3.667%2C3.667A.453.453%2C0%2C0%2C1%2C32.362%2C42.1Z%22%20transform%3D%22translate(-27.495%20-37.657)%22%20fill%3D%22%23ddd%22%2F%3E%3C%2Fsvg%3E");
  background-size: contain;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

section.inner .check_area button.check_ng:hover {
  background-color: #3E577E;
  color: #fff;
  border: 1px solid #3E577E;
}

@media screen and (max-width: 960px) {
  section.inner .check_area button.check_ng {
    padding: 10px 35px 10px 15px;
  }
}

section.inner .check_area button.check_ng:hover::after {
  right: 15px;
}

@media screen and (max-width: 668px) {
  section.inner .check_area button.check_ng {
    width: 100%;
    padding: 10px 15px;
  }
}

section.inner .check_area button.check_ng::after {
  content: none;
}

section.inner .check_area button.check_ok {
  position: relative;
  display: inline-block;
  border: 1px solid #ddd;
  line-height: 150%;
  font-size: 14px;
  background-color: #222;
  color: #fff;
  padding: 15px 40px 15px 25px;
  letter-spacing: 5px;
  padding: 15px 25px;
}

section.inner .check_area button.check_ok::after {
  position: absolute;
  right: 20px;
  top: calc(50% - 5px);
  content: "";
  display: block;
  width: 5px;
  height: 9px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 5px auto;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%225%22%20height%3D%228.239%22%20viewBox%3D%220%200%205%208.239%22%3E%20%3Cpath%20id%3D%22chevron-right-solid%22%20d%3D%22M32.362%2C42.1%2C28.7%2C45.764a.453.453%2C0%2C0%2C1-.64%2C0l-.428-.428a.453.453%2C0%2C0%2C1%2C0-.64l2.906-2.92-2.906-2.92a.453.453%2C0%2C0%2C1%2C0-.64l.428-.428a.453.453%2C0%2C0%2C1%2C.64%2C0l3.667%2C3.667A.453.453%2C0%2C0%2C1%2C32.362%2C42.1Z%22%20transform%3D%22translate(-27.495%20-37.657)%22%20fill%3D%22%23ddd%22%2F%3E%3C%2Fsvg%3E");
  background-size: contain;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

section.inner .check_area button.check_ok:hover {
  background-color: #3E577E;
  color: #fff;
  border: 1px solid #3E577E;
}

@media screen and (max-width: 960px) {
  section.inner .check_area button.check_ok {
    padding: 10px 35px 10px 15px;
  }
}

section.inner .check_area button.check_ok:hover::after {
  right: 15px;
}

@media screen and (max-width: 668px) {
  section.inner .check_area button.check_ok {
    width: 100%;
    margin-top: 20px;
    padding: 10px 15px;
  }
}

section.inner .check_area button.check_ok::after {
  content: none;
}
/*# sourceMappingURL=index.css.map */