@charset "UTF-8";
/* common
------------------------------*/
a {
  transition: opacity .15s;
}
a:hover {
  opacity: .7;
  text-decoration: underline;
  text-decoration-skip-ink: none;
}
/* layout
------------------------------*/
#contents_wrapper {
  padding: 24px 20px;
}
.co_container {
  display: flex;
  box-sizing: border-box;
  justify-content: space-between;
  width: 950px;
}
.contents_left {
  /* width: 210px; */
  width: 190px;
  margin-top: 20px;
}
.contents_right {
  width: 710px;
}
/* タブ
------------------------------*/
.tab_wrapper {
  display: flex;
  height: 56px;
  border-bottom: 1px solid #87ceeb;
}
.tab_content {
  flex: 0 0 50%;
  margin: 0 4px;
  text-align: center;
}
.tab_content:first-child {
  margin-left: 0;
}
.tab_content:last-child {
  margin-right: 0;
}
.tab_content .explain {
  display: block;
  height: 44px;
  margin-top: 11px;
  border: 1px solid #ccc;
  border-bottom: none;
  border-radius: 5px 5px 0 0;
  color: #999;
  font-size: 18px;
  font-weight: bold;
  line-height: 46px;
}
.tab_content.selected {
  position: relative;
  height: 64px;
  background: #fff;
}
.tab_content.selected .explain {
  height: 50px;
  margin-top: 0;
  border-top: 7px solid #87ceeb;
  border-color: #87ceeb;
  color: #333;
  line-height: 50px;
  pointer-events: none;
}
.tab_content .explain:hover {
  opacity: 1;
  color: #666;
  text-decoration: none;
}
.tab_content.selected .explain:hover {
  color: #87ceeb;
}
/* サイドナビ
------------------------------*/
.sidenav_area {
  box-sizing: border-box;
  line-height: 1.4;
  text-align: left;
}
.sidenav_title {
  padding: 0 .3em 8px;
  border-bottom: 2px solid #ddd;
  font-size: 15px;
  font-weight: bold;
}
.sidenav_area .sidenav_list {
  margin-top: 8px
}
.sidenav_area .sidenav_list li.selected,
.sidenav_area .sidenav_list li a {
  display: block;
  box-sizing: border-box;
  min-height: 24px;
  padding: 4px 0 4px 16px;
  line-height: 1.4;
  vertical-align: middle;
}
.sidenav_area .sidenav_list li.selected {
  font-weight: bold;
}
.sidenav_area .sidenav_list li.selected::before {
  content: "";
  display: inline-block;
  box-sizing: border-box;
  margin: 0 7px 0 -14px;
  border-width: 5px 0 5px 7px;
  border-style: solid;
  border-color: transparent transparent transparent #01bbe6;
}
/* ページャー
------------------------------*/
.pageSlider,
.pageSlider * {
  box-sizing: border-box;
}
.pageSlider .swiper-button-lock {
  display: block;
}
.pageSlider {
  position: relative;
  height: 46px;
  margin: 20px 24px 0;
  padding: 6px 0;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  background: #f6f6f6;
}
.pageSlider .swiper_Pager {
  margin: 0 4px;
  overflow: hidden;
}
.pageSlider .swiper-slide {
  display: inline-block;
  width: auto;
  margin: 0 4px;
}
.pageSlider .swiper-slide a {
  display: block;
  min-width: 60px;
  height: 32px;
  padding: 0 5px;
  border: 1px solid #666;
  border-radius: 5px;
  background: #eee;
  color: #666;
  font-size: 13px;
  line-height: 30px;
  text-align: center;
  text-decoration: none;
}
.pageSlider .swiper-slide.selected a {
  background: #fff;
  color: #373737;
  font-weight: bold;
}
.pageSlider .swiper-button-prev,
.pageSlider .swiper-button-next {
  width: 24px;
  height: 46px;
  margin-top: -23px;
  background: #bdbdbd;
}
.pageSlider .swiper-button-prev {
  left: -24px;
}
.pageSlider .swiper-button-next {
  right: -24px;
}
.pageSlider .swiper-button-prev:after,
.pageSlider .swiper-button-next:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  width: 6px;
  height: 6px;
  margin-top: -4px;
  clear: both;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
}
.pageSlider .swiper-button-prev:after {
  right: 50%;
  margin-right: -5px;
  transform: rotate(225deg);
}
.pageSlider .swiper-button-next:after {
  left: 50%;
  margin-left: -5px;
  transform: rotate(45deg);
}
/* h1タイトル
------------------------------*/
.section_ttl {
  margin-top: 20px;
}
.section_ttl .main_ttl {
  font-size: 16px;
  line-height: 1.5;
  text-align: left;
}
.section_ttl .main_ttl span:last-child {
  display: block;
  font-size: 20px;
}
/* notice_text
------------------------------*/
.notice_text {
  padding: 16px 0 0;
  font-size: 12px;
  text-align: left;
}
/* sort_area
------------------------------*/
.sort_area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 0;
}
.sort_area .subBtns {
  display: flex;
}
.sort_area .subBtns > * {
  display: block;
  width: 90px;
  height: 34px;
  border: 1px solid #ccc;
  background: #fff;
  color: #333;
  font-size: 14px;
  line-height: 34px;
  text-align: center;
}
.sort_area .subBtns a:hover {
  color: #333;
  text-decoration: none;
}
.sort_area .subBtns .selected {
  border: 1px solid #01bbe6;
  background: #01bbe6;
  color: #fff;
}
.sort_area .subBtns > *:first-child {
  border-right: none;
  border-radius: 3px 0 0 3px;
}
.sort_area .subBtns > *:last-child {
  border-left: none;
  border-radius: 0 3px 3px 0;
}
.sort_area .sort_box select {
  width: 210px;
  height: 34px;
  padding: 0 24px 0 8px;
  overflow: hidden;
  border: 1px solid #ccc;
  border-radius: 3px;
  background: none;
  color: #333;
  font-size: 14px;
  line-height: 34px;
  text-overflow: ellipsis;
  white-space: nowrap;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.sort_area .filter_pull {
  position: relative;
}
.sort_area .filter_pull::after {
  content: "";
  position: absolute;
  top: 13px;
  right: 8px;
  box-sizing: border-box;
  border-width: 8px 5px 0 5px;
  border-style: solid;
  border-color: #999 transparent transparent transparent;
  pointer-events: none;
}
/* newrelease_area
------------------------------*/
.newrelease_area {
  margin-top: 8px;
}
.newrelease_area * {
  box-sizing: border-box;
}
/* .newrelease_area .sub_title {
  padding-left: 8px;
  background: #87ceeb;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  line-height: 27px;
  text-align: left;
} */
.newrelease_area .sub_title {
  box-sizing: border-box;
  height: 36px;
  margin-top: 20px;
  padding: 0 8px;
  border-top: 1px solid #87ceeb;
  border-bottom: 1px solid #87ceeb;
  background: #fff;
  color: #555;
  font-size: 14px;
  font-weight: bold;
  line-height: 36px;
  text-align: left;
  word-break: break-all;
}
.newrelease_area .title_list {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 16px;
}
.newrelease_area .title_list li {
  display: flex; /* ボタンがなくてもtext_box下揃え */
  flex: 0 0 20%;
  flex-direction: column;
  max-width: 180px;
  margin-top: 16px;
  padding: 0 8px;
  text-align: center;
}
.newrelease_area .title_wrap:nth-of-type(n + 6) {
  margin-top: 24px;
}
.newrelease_area .title_wrap a {
  display: block;
}
.newrelease_area .title_wrap a:hover {
  color: #08c;
}
.newrelease_area .title_wrap .genre_name {
  width: 126px;
  margin: 0 auto 4px;
  font-size: 12px;
}
.newrelease_area .title_wrap .genre_name.hq {
  letter-spacing: -2px;
}
.newrelease_area .title_wrap .date {

  /* height: 16px;
  overflow: hidden;
  line-height: 16px; */
  width: 134px;
  margin: 0 auto 4px;
  color: #f00;
  font-size: 12px;
  font-weight: bold;
}
.newrelease_area .title_wrap .thum_box {
  /* 高さ224px前後の帯付きB6判（青年・女性）を基準 */
  height: 168px;
  /* 高さ240px前後の帯付き新書判（少年・少女）を基準 */
  /* height: 182px; */
  /* 高さ255px前後のB6/A5/B5判（青年・女性・ワイド・マンガ雑誌）を基準 */
  /* height: 190px; */
  /* 高さ280px前後の新書判（少年・少女）を基準 */
  /* height: 210px; */
}
.newrelease_area .title_wrap .thum_box a {
  display: flex;
  position: relative;
  align-items: flex-start; /* 書影の上下揃え位置 */
  justify-content: center;
  height: 100%;
}
.newrelease_area .title_wrap .thum_box a img {
  max-width: 100%;
  max-height: 100%;
  border: 1px solid #eee;
}
.newrelease_area .title_wrap .btn_box {
  display: flex;
  position: relative;
  justify-content: space-between;
  width: 100%;
  margin: 7px auto 0;
}
.newrelease_area .title_wrap .btn_box .btn {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 28px;
  border: 1px solid #b8a98f;
  border-right: 1px solid #bdb29e;
  border-bottom: 2px solid #bdb29e;
  border-radius: 3px;
  background: #fff;
  color: #6e5b39;
  font-size: 12px;
  font-weight: bold;
  line-height: 26px;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}
.newrelease_area .title_wrap .btn_box .btn:hover {
  color: #6e5b39;
}
.newrelease_area .title_wrap .text_box {
  margin-top: auto;
}
.newrelease_area .title_wrap .title_name,
.newrelease_area .title_wrap .vol_num,
.newrelease_area .title_wrap .author_name {
  height: 16px;
  overflow: hidden;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  word-break: break-all;
}
.newrelease_area .title_wrap .title_name {
  margin-top: 4px;
}
.newrelease_area .title_wrap .title_name.title_2col {
  height: 32px;
}
.newrelease_area .title_wrap .title_name,
.newrelease_area .title_wrap .vol_num {
  color: #08c;
}
.newrelease_area .title_wrap .author_name {
  margin-top: 2px;
  color: #626d77;
}
/* 表示作品0件のとき
------------------------------*/
.newrelease_area .no_list {
  padding: 40px 1em 120px;
  line-height: 1.5;
  text-align: left;
}
/* newrelease_area（あなたの新刊）
------------------------------*/
.sort_area .exclude {
  margin-right: 8px;
}
.sort_area .exclude input[type="checkbox"] {
  display: none;
}
.sort_area .exclude input[type="checkbox"] + label {
  display: inline-block;
  position: relative;
  width: 6em;
  padding-left: 26px;
  font-size: 14px;
  line-height: 1.4;
}
.sort_area .exclude input[type="checkbox"] + label::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  box-sizing: border-box;
  width: 18px;
  height: 18px;
  border: 1px solid #999;
  border-radius: 2px;
}
.sort_area .exclude input[type="checkbox"]:checked + label::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 5px;
  width: 6px;
  height: 10px;
  transform: translateY(-9px) rotate(45deg);
  border-right: 3px solid #56b4eb;
  border-bottom: 3px solid #56b4eb;
}
.newrelease_area.your_release .title_list li {
  flex: 0 0 calc(100% / 6);
  padding: 0 12px;
}
.newrelease_area.your_release .title_wrap:nth-of-type(n + 6) {
  margin-top: 16px;
}
.newrelease_area.your_release .title_wrap:nth-of-type(n + 7) {
  margin-top: 24px;
}
/* newrelease_area（あなたの配信予定）
------------------------------*/
.newrelease_area.your_release.schedule .title_wrap .date {
  margin-right: -1px;
  margin-left: -1px;
  letter-spacing: -.5px;
}
