a {
  cursor: pointer;
}

.common-container {
  width: 1000px;
  padding: 0;
}
section {
  margin-bottom: 80px;
}
section h2 {
  font-size: 32px;
  font-weight: 700;
  color: #0d265a;
  border-bottom: 1px solid #18367d;
  padding-bottom: 10px;
}

.top-slider {
  position: relative;
  margin: 20px 0 80px;
}
.top-slider__inner {
  display: none;
}
.top-slider__inner.slick-initialized {
  display: block;
}

/* トップスクロール箇所 */
.top-slider__item {
  min-width: 800px;
  margin: 0 20px 20px 20px;
}
/* トップ画像部分 */
.top-slider__link {
  width: 100%;
  height: 300px;
}
.top-slider__img {
  width: 100%;
  height: auto;
}

.top-slider__arrowArea {
  cursor: pointer;
  width: 1000px;
  top: 38%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  position: absolute;
  display: inline-block;
}
.top-slider__arrow {
  display: block;
  position: absolute;
  width: 47px;
  height: 75px;
  background: #f9f9f9;
  opacity: 0.95;
  border-radius: 3px;
}
.top-slider__arrow.js-next {
  right: 0;
}
.top-slider__arrow.js-next::after {
  display: block;
  position: absolute;
  content: "";
  width: 9px;
  height: 9px;
  border: 0;
  border-top: solid 3px #0d265a;
  border-right: solid 3px #0d265a;
  top: 50%;
  right: -30%;
  margin-top: -4px;
  margin-right: 35px;
  transform: rotate(45deg);
}
.top-slider__arrow.js-prev {
  left: 0;
}
.top-slider__arrow.js-prev::after {
  display: block;
  position: absolute;
  content: "";
  width: 9px;
  height: 9px;
  border: 0;
  border-top: solid 3px #0d265a;
  border-right: solid 3px #0d265a;
  top: 50%;
  right: -30%;
  margin-top: -4px;
  margin-right: 32px;
  transform: rotate(-135deg);
}
.top-slider__arrow.hidden {
  display: none;
}
.slick-dots {
  display: flex;
  width: 1000px;
  margin: 0 auto;
  position: relative;
  bottom: 0;
}
.slick-dots li {
  width: auto;
  height: 2px;
  margin: 0;
  flex-grow: 1;
}
.slick-dots li button {
  width: 100%;
  height: 100%;
}
.slick-dots li button:before {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #18367d;
}

/* 重要なお知らせ */
.notice {
  border: solid 1px #df2b2b;
  border-radius: 10px;
  background: #fff5f5;
  padding: 30px;
}
.notice-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: solid 1px #df2b2b;
  padding-bottom: 10px;
}
.notice-title div {
  display: flex;
  align-items: center;
}
.notice-title h2 {
  margin: 0;
  padding: 0;
  margin-left: 10px;
  float: right;
  font-size: 24px;
  color: #df2b2b;
  border: none;
}
.notice-title a {
  font-size: 14px;
  color: #2873a1;
}
.notice-list {
  margin-bottom: 0;
}
.notice-list li {
  margin-bottom: 15px;
}
.notice-list li:last-child {
  margin-bottom: 0;
}
.notice-list li time {
  position: relative;
  margin-right: 15px;
  font-size: 14px;
  font-weight: 700;
  color: #df2b2b;
}
.notice-list li time::after {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 8px;
  border-color: transparent transparent transparent #df2b2b;
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 5px);
  right: -25px;
}
.notice-list li a {
  font-size: 16px;
  color: #df2b2b;
  text-decoration: none;
}
.notice-list li a:hover {
  text-decoration: underline;
}

/* お知らせバナー一覧 */
.banner_links ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.banner_links li {
  width: 317px;
  margin: 0px 8px 20px;
}
.banner_links a {
  display: inline-block;
  width: 100%;
  text-decoration: none;
  color: #333333;
  font-size: 14px;
}
.banner_links img {
  width: 317px;
  height: 117px;
  background-color: gray;
}
.banner_links span {
  display: block;
  margin-top: 10px;
}

/* サイト説明 */
.service-catchCopy {
  font-size: 36px;
  font-weight: 600;
  color: #0d265a;
  margin: 40px 0 20px;
}
.service-categoryMessage {
  margin-bottom: 40px;
}
.service-categoryMessage p {
  margin: 0;
  line-height: 30px;
}
.cards-area {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
.card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 317px;
  height: 206px;
  background: linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.8),
      rgba(255, 255, 255, 0.8)
    ),
    #f6d06c;
  border-radius: 8px;
}
.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: #f6d06c;
}
.card span {
  margin-top: 15px;
  font-size: 14px;
  font-weight: 600;
  color: #18367d;
}
.button_area {
  text-align: center;
}
.Button__link {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  text-align: center;
  transition: opacity 150ms ease;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.143;
  width: 316px;
  padding: 20px;
  border-radius: 5px;
  margin: 0px 20px;
  color: #ffffff;
  background: #18367d;
}
.Button__link.transparent {
  color: #0d265a;
  background: #ffffff;
  border: 1px solid #0d265a;
}

/* おすすめ商品全体 */
.common-recommend__title {
  margin-bottom: 10px;
}
.disc-text {
  font-size: 14px;
}
.recommend-item_area {
  position: relative;
  margin-top: 50px;
}
.recommend-item_area .recommend-item_category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid #0d265a;
}
.recommend-item_category h3 {
  font-size: 24px;
  font-weight: 700;
  color: #333333;
  border-left: 10px solid #0d265a;
  padding-left: 10px;
  margin: 0;
}
.recommend-item_category a {
  font-size: 14px;
  font-weight: 300;
  color: #2873a1;
}
.recommend-books .subcategory_link {
  position: relative;
  display: block;
  border-bottom: 1px solid #e4e4e4;
  text-decoration: none;
  color: #333333;
  padding: 5px 0;
  margin-bottom: 10px;
}
.recommend-books .subcategory_link::after {
  display: block;
  position: absolute;
  content: "";
  width: 9px;
  height: 9px;
  border: 0;
  border-top: solid 2px #0d265a;
  border-right: solid 2px #0d265a;
  top: 10px;
  right: 5px;
  transform: rotate(45deg);
}

/* おすすめ商品スクロール箇所 */
.recommend-item_productBlock {
  display: flex;
  width: 100%;
  overflow-y: hidden;
  overflow-x: scroll;
}
.recommend-item_productBlock__product {
  width: 232px;
  min-width: 232px;
  max-width: 232px;
  margin: 20px;
}
.recommend-item_productBlock__product:hover
  .recommend-item_productBlock__productDetail
  .title {
  text-decoration: underline;
}
/* 商品画像部分 */
.recommend-item_productBlock__productIcon {
  display: table;
  width: 100%;
  height: 232px;
}
.recommend-item_productBlock__productIcon img {
  width: 100%;
  height: auto;
}
.common-productImg__noImg {
  color: #2873a1;
}

/* 商品詳細部分 */
.recommend-item_productBlock__productDetail {
  margin-top: 15px;
}
.recommend-item_productBlock__productDetail p {
  margin-top: 5px;
  font-size: 12px;
}
.recommend-item_productBlock__productDetail .title {
  margin-top: 0;
  font-size: 14px;
  font-weight: 700;
}
.recommend-item_productBlock__productDetail .price {
  font-size: 14px;
  font-weight: 600;
  color: #661010;
}

.recommend-item_productBlock::-webkit-scrollbar {
  height: 2px;
}
.recommend-item_productBlock::-webkit-scrollbar-thumb {
  background: #18367d;
  border-radius: 0px;
}
.recommend-item_productBlock::-webkit-scrollbar-track {
  background: #f9f9f9;
  border-radius: 0px;
}
.recommend-item_productBlock__arrowArea {
  width: 100%;
  top: 50%;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.recommend-item_productBlock__arrow {
  cursor: pointer;
  display: block;
  position: absolute;
  width: 47px;
  height: 75px;
  background: #f9f9f9;
  opacity: 0.95;
  border-radius: 3px;
}
.recommend-item_productBlock__arrow.js-next {
  right: 0;
}
.recommend-item_productBlock__arrow.js-next::after {
  display: block;
  position: absolute;
  content: "";
  width: 9px;
  height: 9px;
  border: 0;
  border-top: solid 3px #0d265a;
  border-right: solid 3px #0d265a;
  top: 50%;
  right: -30%;
  margin-top: -4px;
  margin-right: 35px;
  transform: rotate(45deg);
}
.recommend-item_productBlock__arrow.js-prev {
  left: 0;
}
.recommend-item_productBlock__arrow.js-prev::after {
  display: block;
  position: absolute;
  content: "";
  width: 9px;
  height: 9px;
  border: 0;
  border-top: solid 3px #0d265a;
  border-right: solid 3px #0d265a;
  top: 50%;
  right: -30%;
  margin-top: -4px;
  margin-right: 32px;
  transform: rotate(-135deg);
}
.recommend-item_productBlock__arrow.hidden {
  display: none;
}
/* お知らせ */
.top-information_title_area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #18367d;
  padding-bottom: 10px;
}
.top-information_title_area h2 {
  margin: 0;
  padding: 0;
  border: none;
}
.top-information_title_area a {
  font-size: 14px;
  color: #2873a1;
}
.top-information__list {
  margin-top: 20px;
  margin-bottom: 0;
}
.top-information__list li {
  margin-bottom: 15px;
}
.top-information__list li:last-child {
  margin-bottom: 0;
}
.top-information__list li time {
  position: relative;
  margin-right: 25px;
  font-size: 14px;
  font-weight: 700;
  color: #333333;
}
.top-information__list li time::after {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 7px;
  border-color: transparent transparent transparent #f6d06c;
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 6px);
  right: -25px;
}
.top-information__list li a {
  font-size: 16px;
  color: #333333;
  text-decoration: none;
}
.top-information__list li a:hover {
  text-decoration: underline;
}
/* ヘルプ・お問い合わせはこちら */
.contact {
  padding: 40px 0;
}
.contact p {
  font-size: 14px;
  margin-bottom: 40px;
}
.contact .button_area {
  display: flex;
  justify-content: space-between;
}
.contact .button_area .Button__link {
  margin: 0;
}

/* ----------- SP ----------- */
@media screen and (max-width: 767px) {
  .sp-none {
    display: none;
  }
  .sp-display {
    display: block;
  }

  .common-container {
    width: 100%;
    padding: 0 20px;
  }
  section h2 {
    font-size: 24px;
  }
  .disc-text {
    font-size: 12px;
  }

  .top-slider__item {
    min-width: 0;
    margin: 20px 5px;
  }
  .top-slider__arrowArea {
    width: 100%;
    top: 35%;
  }
  .top-slider__arrow {
    width: 22px;
    height: 47px;
  }
  .top-slider__arrow.js-prev::after,
  .top-slider__arrow.js-next::after {
    right: -120%;
  }
  .slick-dots {
    width: 100%;
    padding: 0 20px;
  }
  .notice-list li {
    margin-bottom: 20px;
  }
  .notice-list li span {
    display: table;
  }
  .notice-list li a {
    display: inline-block;
    margin-top: 5px;
  }
  .banner_links li {
    width: 100%;
  }
  .banner_links img {
    width: 100%;
    height: 125px;
  }
  .service-catchCopy {
    display: flex;
    align-items: center;
    font-size: 28px;
  }
  .service-catchCopy svg {
    margin-right: 10px;
  }
  .cards-area {
    flex-direction: column;
  }
  .card {
    width: 100%;
    height: 117px;
    flex-direction: row;
    margin-bottom: 10px;
  }
  .card .icon {
    width: 67px;
    height: 67px;
  }
  .card .icon svg {
    width: 60%;
  }
  .card span {
    flex-basis: 70%;
    padding-left: 25px;
  }
  .button_area {
    display: flex;
    flex-direction: column-reverse;
  }
  .Button__link {
    width: 100%;
    margin: 10px 0;
  }
  .recommend-item_category h3 {
    font-size: 18px;
    border-left: 5px solid #0d265a;
  }
  .recommend-item_productBlock__product {
    width: 160px;
    min-width: 160px;
    max-width: 160px;
    margin: 15px;
  }
  .recommend-item_productBlock__productIcon {
    height: 160px;
  }
  .recommend-item_productBlock__arrow {
    width: 22px;
    height: 47px;
  }
  .recommend-item_productBlock__arrow.js-prev::after,
  .recommend-item_productBlock__arrow.js-next::after {
    right: -120%;
  }
  .top-information__list li {
    margin-bottom: 20px;
  }
  .top-information__list li time {
    display: table;
  }
  .top-information__list li a {
    display: inline-block;
    margin-top: 5px;
    font-size: 14px;
  }
  .contact {
    padding: 0;
  }
  .contact .button_area {
    flex-direction: column;
  }
  .contact .button_area .Button__link {
    margin: 10px 0;
  }
}
