@charset "utf-8";

/*
  File Name   : information.css
  Description : コンテンツエリア関係 他
*/

/* pagination
============================================================ */
.-navigation-wrap {
  margin-top: 40px;
}
.pagination .screen-reader-text {
  display: none;
}
.pagination {
  margin: 0 0 0;
}
.pagination .nav-links {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
.pagination .nav-links ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1100px;
}
.pagination .nav-links li {
  margin-bottom: 10px;
}
.pagination a {
  transition: opacity .3s ease;
}
.pagination a:hover {
  opacity: .7;
}
.pagination .prev a,
.pagination .next a {
  overflow: hidden;
  position: relative;
  top: 50%;
  font-weight: bold;
  text-decoration: none;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  /* background-color: #edf9ff; */
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: block;
  box-sizing: border-box;
}
.pagination .prev a:before,
.pagination .next a:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 48px;
}
.pagination .prev a {
  left: -7px;
  padding-left: 1.5em;
}
.pagination .prev a:before {
  background: url(../img/common/icon-pagination-left.svg) 0 0 no-repeat;
  background-size: 48px;
}
.pagination .next a {
  left: 7px;
  padding-right: 1.5em;
}
.pagination .next a:before {
  background: url(../img/common/icon-pagination-right.svg) 0 0 no-repeat;
  background-size: 48px;
}
.pagination .prev a span,
.pagination .next a span {
  position: absolute;
  left: -9999px;
}
.pagination .page-numbers:not(.prev):not(.next) a {
  font-weight: normal;
}
.pagination .page-numbers:not(.prev):not(.next):not(.current) a,
.page-numbers.current span {
  font-size: 14px;
  font-weight: 400;
  color: #005cab;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  position: relative;
  text-decoration: none;
  width: 48px;
  height: 48px;
  padding: 16px 0 0;
  box-sizing: border-box;
  background-color: #fff;
  border: solid 1px #005cab;
  display: block;
  border-radius: 50%;
}
.page-numbers.current span {
  color: #fff;
  background-color: #005cab;
  border: solid 1px #005cab;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1);
}

/* pc
------------------------------------------------------------ */
@media screen and (min-width: 811px) {
  .pagination {
    margin: 0 0 0;
  }
  .pagination .nav-links {
    max-width: 100%;
  }
  .pagination .page-numbers span,
  .pagination .page-numbers:not(.prev):not(.next) a {
    margin: 0 7px;
    display: block;
  }
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 1101px) {
  .-navigation-wrap {
    padding: 20px 20px;
  }
  .pagination .page-numbers:not(.prev):not(.next):not(.current) a,
  .pagination .page-numbers a {
    display: none;
  }
  .pagination .prev.page-numbers a,
  .pagination .next.page-numbers a,
  .pagination .page-numbers.current span {
    display: block;
  }
  .pagination .prev a {
    left: -15px;
  }
  .pagination .next a {
    left: 15px;
  }
}

/* detail
============================================================ */
.detail-title-wrap {
  padding-bottom: 40px;
  border-bottom: solid 1px #e6e6e6;
}
.detail-title-wrap .title {
  font-size: 32px;
  line-height: 1.5;
}
.detail-title-wrap .com-day-category {
  margin-top: 10px;
}
.detail-eyecatch-wrap {
  text-align: center;
  margin-top: 60px;
}

.mod-editor {
  padding-top: 60px;
}
.mod-editor p a,
.mod-editor li a {
  text-decoration: underline;
  color: #005cab;
}

.detail-download-btn-wrap {
  margin-top: 30px;
  text-align: center;
}
.detail-download-btn-wrap a {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  color: #fff;
  padding: 15px 60px;
  border-radius: 50px;
  background-color: #005cab;
  display: inline-block;
  min-width: 320px;
  position: relative;
  transition: all .2s ease-in-out;
  box-shadow: 0 0 10px 0 rgba(46, 167, 224, .40);
}
.detail-download-btn-wrap a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: url(../img/common/icon-arrow-bl.svg) 0 0 no-repeat;
  background-size: 50px auto;
}
.detail-download-btn-wrap a:hover {
  opacity: .7;
  text-decoration: none;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 1101px) {
  .detail-title-wrap .title {
    font-size: 24px;
    line-height: 1.5;
  }
  .detail-download-btn-wrap a {
    min-width: 100%;
  }
}


