@charset "UTF-8";
/*================================
	全体の設定
=================================*/
html {
  font-family: 'Lato', 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-feature-settings: "palt";
}

a {
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.8;
}

body {
  padding-bottom: 7.5rem;
}

.sp-only {
  display: block;
}

.pc-only {
  display: none;
}

@media screen and (min-width: 1025px) {
  body {
    padding-bottom: 0;
  }
  .pc-only {
    display: block;
  }
  .sp-only {
    display: none;
  }
}

/*================================
	トップの設定
=================================*/
/*====== .header ======*/
.header {
  border-bottom: 0.1rem solid #ccc;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.header__burger {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 1.8rem;
  height: 2rem;
  border-top: 0.1rem solid #333;
  border-bottom: 0.1rem solid #333;
}

.header__burger-nav {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 80%;
  height: 100%;
  background-color: #fff;
  transform: translate(-100%);
  transition: 0.3s;
  z-index: 3;
}

.header__burger-nav.is-active {
  transform: translate(0);
}

.header__burger-bg {
  position: fixed;
  top: 0;
  display: block;
  width: 0;
  height: 0;
  background-color: rgba(51, 51, 51, 0.8);
  opacity: 0;
  z-index: 2;
  transition: opacity 0.3s;
}

.header__burger-bg.is-active {
  width: 100vw;
  height: 100%;
  opacity: 1;
}

.header__burger-close {
  display: none;
  position: absolute;
  top: .2rem;
  left: calc(80vw + .6rem);
  margin-left: auto;
  width: 3.2rem;
  height: 3.2rem;
  transform: rotate(-45deg);
  z-index: 3;
}

.header__burger-close::before, .header__burger-close::after {
  content: '';
  width: 3.2rem;
  height: .2rem;
  background: #ccc;
  position: absolute;
  top: 50%;
  right: 5%;
  border-radius: .1rem;
  transition: 0.3s;
}

.header__burger-close::before {
  transform: rotate(-90deg);
}

.is-active .header__burger-close {
  display: block;
}

.header__burger-list {
  border-bottom: 0.1rem solid #ccc;
}

.header__burger-item {
  border-top: 0.1rem solid #ccc;
}

.header__burger-link {
  display: flex;
  align-items: center;
  padding: 1.8rem 2rem;
}

.header__burger-text {
  margin-left: 1.5rem;
  font-size: 1.6rem;
}

.header__burger-arrow {
  position: relative;
  display: block;
  margin-left: auto;
  padding-right: 1.25rem;
  font-size: 1.2rem;
}

.header__burger-arrow::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: .8rem;
  height: .8rem;
  margin-top: -.6rem;
  border: 0;
  border-top: solid 0.2rem #333;
  border-right: solid 0.2rem #333;
  transform: rotate(45deg);
}

.header__icon {
  display: block;
  background-color: #333;
  width: 80%;
  height: .1rem;
}

.header__user {
  display: block;
  padding: 2rem 2rem 1rem;
}

.header__novel {
  padding: 1rem 2rem;
}

.header__search {
  display: none;
}

@media screen and (min-width: 1025px) {
  .header__inner {
    min-height: 9rem;
    max-width: 130rem;
    margin: auto;
  }
  .header__burger {
    display: none;
  }
  .header__search {
    display: block;
  }
}

/*====== .logo ======*/
.logo {
  max-width: 8.5rem;
  width: 100%;
}

@media screen and (min-width: 1025px) {
  .logo {
    max-width: 14rem;
  }
}

/*====== .search-box ======*/
.search-box {
  display: flex;
  justify-content: space-between;
  max-width: calc(100% - 4rem);
  width: 100%;
  background-color: #fff;
  border: 0.1rem solid #ccc;
  border-radius: .4rem;
  z-index: 1;
}

.search-box__inner {
  position: relative;
  padding-right: 1rem;
  width: 7.2rem;
  border-right: 0.1rem solid #ccc;
  border-radius: .4rem;
}

.search-box__inner::before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: .5em;
  width: 0;
  height: 0;
  margin: auto;
  padding: 0;
  content: '';
  border-left: .4rem solid transparent;
  border-right: .4rem solid transparent;
  border-top: .8rem solid #666;
  pointer-events: none;
}

.search-box__select {
  height: 100%;
  padding: 0 .6rem;
  color: #333;
  font-size: 1.6rem;
  transform: scale(calc(10 / 16));
  transform-origin: center left;
  cursor: pointer;
}

.search-box__input {
  padding: 0 1rem;
  font-size: 1.6rem;
  width: calc(100% - 12.2rem);
  background-color: #fff;
}

.search-box__button {
  background-color: #36a1d1;
  color: #fff;
  padding: .4rem 0;
  width: 5rem;
  font-size: 1.3rem;
  transition: opacity 0.3s;
  cursor: pointer;
}

.search-box__button:hover {
  opacity: 0.8;
}

.is-fixed .search-box {
  position: fixed;
  top: .5rem;
}

.is-fixed::before {
  content: "";
  position: fixed !important;
  top: 0;
  display: block;
  width: 100%;
  height: 4rem;
  background-color: #fff;
  z-index: 1;
}

@media screen and (min-width: 1025px) {
  .search-box {
    width: 65rem;
    max-width: 100%;
  }
  .search-box__inner {
    width: 11rem;
  }
  .search-box__inner::before {
    right: 1.5rem;
    border-left: .5rem solid transparent;
    border-right: .5rem solid transparent;
    border-top: 1rem solid #666;
  }
  .search-box__select {
    padding: 0 1rem;
    font-size: 1.4rem;
    transform: scale(1);
  }
  .search-box__input {
    width: 42rem;
    font-size: 1.6rem;
  }
  .search-box__button {
    width: 10rem;
    padding: .8rem 1.7rem;
    font-size: 1.6rem;
  }
}

/*====== .icon-btn ======*/
.icon-btn__text {
  display: none;
}

@media screen and (min-width: 1025px) {
  .icon-btn__link {
    display: block;
    text-align: center;
  }
  .icon-btn__text {
    display: block;
    margin-top: 1rem;
  }
}

/*====== .gnav ======*/
.gnav {
  position: fixed;
  bottom: 0;
  background-color: #fff;
  width: 100%;
  z-index: 20;
}

.gnav__list {
  display: flex;
  margin: 0 -.05rem;
}

.gnav__item {
  width: calc(100% / 4);
  margin: 0 .05rem;
}

.gnav__link {
  display: flex;
  flex-direction: column;
  text-align: center;
  background-color: #36a1d1;
  color: #fff;
  height: 100%;
  padding: .75rem;
}

.gnav__image {
  display: block;
  margin: 0 auto .75rem;
  height: 2.25rem;
}

.gnav__image2 {
  display: none;
}

.gnav__text {
  margin: auto;
  font-size: 1.2rem;
  line-height: 1.25;
}

.gnav__text--new {
  display: flex;
  flex-flow: wrap column-reverse;
  align-items: center;
  justify-content: center;
}

.gnav__new {
  background-color: #ffd826;
  color: #36a1d1;
  padding: .25rem .6rem .2rem .7rem;
  border-radius: .2rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: .9em;
  transform: scale(0.8, 1);
  transform-origin: center;
  letter-spacing: .1em;
  line-height: 1.1;
}

@media screen and (min-width: 1025px) {
  .gnav {
    position: static;
    border-top: 0.1rem solid #ccc;
  }
  .gnav__list {
    max-width: 130rem;
    margin: auto;
    min-height: 6rem;
    border-left: 0.1rem solid #ccc;
  }
  .gnav__item {
    margin: 0;
    transition: 0.3s;
    border-right: 0.1rem solid #ccc;
  }
  .gnav__link {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    background-color: #fff;
    color: #333;
    transition: 0.3s;
  }
  .gnav__link:hover {
    background-color: #36a1d1;
    color: #fff;
  }
  .gnav__box {
    position: relative;
  }
  .gnav__link:hover .gnav__image {
    opacity: 0;
  }
  .gnav__link:hover .gnav__image2 {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    opacity: 1;
  }
  .gnav__link:hover .gnav__new {
    background-color: #fff;
    color: #36a1d1;
  }
  .gnav__image {
    display: inline;
    margin: 0 1.5rem 0 0;
    height: auto;
    transition: 0.3s;
  }
  .gnav__image2 {
    opacity: 0;
    transition: 0.3s;
  }
  .gnav__text {
    display: flex;
    align-items: center;
    margin: 0;
    font-size: 1.6rem;
  }
  .gnav__text * {
    margin: 0 .25em;
  }
  .gnav__text--new {
    flex-flow: row nowrap;
  }
  .gnav__new {
    display: block;
    background-color: #ed1c24;
    color: #fff;
    margin-left: .5em;
    padding: .35rem .4rem .3rem .5rem;
    font-size: .9em;
    border-radius: .4rem;
    transition: 0.3s;
  }
}

/*====== .top ======*/
.top {
  padding-bottom: 3rem;
}

.top .top__section, .top .top__section--sky {
  margin: auto;
  padding: 2.5rem 2rem;
}

.top__section--sky {
  background-color: #f1f8fc;
}

.top__title {
  margin-bottom: 2rem;
}

.top__slider {
  margin: 0 -2rem;
  padding-left: 2rem;
}

.top__main {
  margin: 0 auto;
  padding-top: 2rem;
}

@media screen and (min-width: 1025px) {
  .top .top__section {
    width: 97rem;
    padding: 5rem 3rem 0;
  }
  .top .top__section--sky {
    width: 97rem;
    padding: 5rem 3rem 0;
    background-color: #fff;
  }
  .top__hero {
    margin-top: 2rem;
  }
  .top__slider {
    margin: auto;
    padding-left: 0;
  }
  .top__banner {
    width: 97rem;
    margin: 5rem auto 0;
  }
  .top__content {
    display: flex;
    max-width: 130rem;
    margin: auto;
  }
  .top__side {
    padding-top: 5rem;
  }
}

@media screen and (min-width: 1299px) {
  .top__banner {
    display: none;
  }
}

/*====== .user-status ======*/
.user-status .user-status__text, .user-status .user-status__text--large, .user-status .tournament-slider__text, .user-status .tournament-slider__text--short {
  display: inline-flex;
  align-items: center;
  font-size: 1.2rem;
}

.user-status__text:first-of-type {
  margin-right: 1em;
}

.user-status__text--large {
  line-height: 1.8;
}

.user-status__name {
  margin: 0 .25em;
}

.user-status .user-status__icon, .user-status .user-status__icon--large {
  margin-right: .25em;
}

.user-status__icon {
  width: 1.6rem;
  height: 1.6rem;
}

.user-status__icon--large {
  width: 1.3rem;
  height: 1.3rem;
}

.user-status .user-status__point, .user-status .user-status__point--large {
  color: #eb5d43;
}

.user-status__point {
  font-size: 1.4rem;
}

.user-status__point--large {
  font-size: 1.5rem;
}

@media screen and (min-width: 1025px) {
  .user-status {
    flex-wrap: wrap;
  }
  .user-status__text {
    font-size: 1.4rem !important;
    line-height: 1.8;
  }
  .user-status__icon {
    width: 2rem;
    height: 2rem;
  }
  .user-status__point {
    font-size: 1.4rem;
  }
}

/*====== .hero-slider ======*/
.hero-slider__image {
  width: 100%;
}

.hero-slider .slick-dots li {
  margin: 0;
}

.hero-slider .slick-dots li:hover button::before {
  color: #36a1d1;
}

.hero-slider .slick-dots li.slick-active button::before {
  color: #36a1d1 !important;
}

@media screen and (min-width: 1025px) {
  .hero-slider__item {
    display: block !important;
    transform: scale(0.9);
    transition: transform 0.6s, opacity 0.6s;
    opacity: .6;
    backface-visibility: hidden;
    overflow: hidden;
  }
  .hero-slider__item.slick-center {
    transform: scale(1);
    opacity: 1;
    transition: all 1s;
    transition: transform 0.6s, opacity 0.6s;
  }
  .hero-slider__item.is-active-next {
    transform: scale(1);
    opacity: 1;
    transition: all 1s;
    transition: transform 0.6s, opacity 0.6s;
  }
  .hero-slider__link {
    display: block;
    margin: auto;
    width: 100%;
    transition: all 1s;
  }
  .hero-slider .slick-prev,
  .hero-slider .slick-next {
    display: block;
    cursor: pointer;
    z-index: 1;
    position: absolute;
    top: 50%;
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    text-align: center;
    background-color: #cccccc99 !important;
    transform: translateY(-50%);
  }
  .hero-slider .slick-prev {
    left: 10%;
  }
  .hero-slider .slick-prev::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: -15%;
    margin: auto;
    display: block;
    width: 15px;
    height: 15px;
    border-top: 5px solid #fff;
    border-right: 5px solid #fff;
    transform-origin: center;
    transform: rotate(-135deg);
    transition: opacity .1s;
  }
  .hero-slider .slick-next {
    right: 10%;
  }
  .hero-slider .slick-next::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -15%;
    right: 0;
    margin: auto;
    display: block;
    width: 15px;
    height: 15px;
    border-top: 5px solid #fff;
    border-right: 5px solid #fff;
    transform-origin: center;
    transform: rotate(45deg);
    transition: opacity .1s;
  }
}

/*====== .movie-slider ======*/
.movie-slider {
  display: flex;
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.movie-slider::-webkit-scrollbar {
  display: none;
}

.movie-slider__list {
  display: flex;
}

.movie-slider__item {
  width: 25.6rem;
  margin-right: 1rem;
  border: 0.1rem solid #ccc;
}

.movie-slider__link {
  display: block;
  width: 100%;
}

.movie-slider__link > br {
  display: none;
}

.movie-slider__body {
  padding: 1rem;
}

.movie-slider__text {
  font-size: 1.4rem;
  line-height: 1.6;
  height: 6.6rem;
}

.movie-slider__date {
  margin-top: 1rem;
  color: #999;
  font-size: 1.2rem;
}

@media screen and (min-width: 1025px) {
  .movie-slider {
    display: block;
    overflow-x: visible;
  }
  .movie-slider__list {
    display: block;
    width: calc(100% - 4rem);
    margin: auto;
  }
  .movie-slider__item {
    margin: 1rem;
  }
}

@media screen and (min-width: 1025px) {
  .movie-slider__list {
    max-width: calc(97rem);
  }
}

/*====== .news ======*/
@media screen and (min-width: 1025px) {
  .news-items {
    width: calc(100% - 7rem);
    margin: auto;
  }
}

.news-item {
  border-bottom: .1rem solid #ccc;
}

.news-link {
  display: flex;
  padding: 1rem 0;
}

.news-title {
  font-size: 1.4rem;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  position: relative;
  padding-left: 1rem;
}

.news-title::before {
  position: absolute;
  content: "・";
  top: 0;
  left: 0;
}

.new-icon {
  display: inline-block;
  padding: .3rem;
  background: #ed1c24;
  color: #fff;
  font-size: 1.2rem;
  border-radius: 2px;
  text-align: center;
  margin-left: 1rem;
  font-family: 'Oswald';
}

/*====== .title ======*/
.title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.title__text {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 500;
}

.title__text::before {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  background-image: url(../images/icon_ball.svg);
  margin-right: .5rem;
}

.title__more {
  position: relative;
  display: block;
  margin-left: auto;
  padding-right: 1.25rem;
  font-size: 1.4rem;
}

.title__more::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: .8rem;
  height: .8rem;
  margin-top: -.6rem;
  border: 0;
  border-top: solid 0.2rem #333;
  border-right: solid 0.2rem #333;
  transform: rotate(45deg);
}

@media screen and (min-width: 1025px) {
  .title__text {
    font-size: 1.8rem;
  }
  .title__text::before {
    width: 2rem;
    height: 2rem;
    margin-right: 1rem;
  }
}

/*====== .shop-slider ======*/
.shop-slider {
  display: flex;
  overflow-x: scroll;
  overflow-y: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.shop-slider::-webkit-scrollbar {
  display: none;
}

.shop-slider__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  height: 22rem;
  margin-top: -1rem;
}

.shop-slider__item {
  width: 21rem;
  height: 10rem;
  margin-top: 1rem;
  padding-right: 1rem;
}

.shop-slider__link {
  display: flex;
  width: 100%;
  height: 10rem;
}

.shop-slider__image {
  width: 10rem;
  height: 10rem;
}

.shop-slider__text {
  display: block;
  padding: .5rem 1rem .7rem;
}

.shop-slider__clamp {
  display: block;
  height: 9rem;
  font-size: 1.3rem;
  line-height: 1.4;
  word-break: break-all;
  font-feature-settings: normal;
  overflow-y: hidden;
}

@media screen and (min-width: 1025px) {
  .shop-slider {
    display: block;
    overflow-x: visible;
  }
  .shop-slider__list {
    display: block;
    width: calc(100% - 4rem);
    margin: auto;
    height: auto;
  }
  .shop-slider__item {
    width: auto;
    border: none;
    margin: 1rem;
  }
  .shop-slider__text {
    font-size: 1.4rem;
  }
}

@media screen and (min-width: 1025px) {
  .shop-slider__list {
    max-width: calc(97rem);
  }
}

/*====== .tournament-slider ======*/
.tournament-slider {
  display: flex;
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.tournament-slider::-webkit-scrollbar {
  display: none;
}

.tournament-slider__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  height: 20rem;
  margin-top: -1rem;
}

.tournament-slider__item {
  width: 28.5rem;
  height: 9rem;
  margin-top: 1rem;
  padding-right: 1rem;
}

.tournament-slider__link {
  display: flex;
  width: 100%;
  height: 100%;
}

.tournament-slider__head {
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: #36a1d1;
  color: #fff;
  padding: .5rem 0 1rem;
  width: 9rem;
  height: 100%;
}

.tournament-slider__period {
  width: auto;
  margin: auto;
}

.tournament-slider__date {
  font-size: 1.6rem;
  text-align: center;
}

.tournament-slider__icon {
  width: 100%;
  display: block;
  text-align: center;
  transform: scale(0.8);
}

.tournament-slider__icon::before {
  content: "|";
}

.tournament-slider__day {
  margin-left: .25em;
  font-size: 1rem;
}

.tournament-slider__pref {
  background-color: #fff;
  color: #36a1d1;
  margin-top: .5rem;
  padding: .2rem 1.4rem;
  font-size: 1.3rem;
  text-align: center;
}

.tournament-slider__body {
  position: relative;
  width: calc(100% - 9rem);
  background-color: #fff;
  padding: 1rem 3.5rem 1rem 1rem;
  border-top: 0.1rem solid #ccc;
  border-right: 0.1rem solid #ccc;
  border-bottom: 0.1rem solid #ccc;
  font-feature-settings: normal;
}

.tournament-slider__body::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 1rem;
  width: 1.4rem;
  height: 1.4rem;
  margin-top: -.6rem;
  border: 0;
  border-top: solid 0.1rem #333;
  border-right: solid 0.1rem #333;
  border-left: solid 0.1rem #333;
  transform: rotate(45deg);
  transform-origin: center;
  border-left: 0;
}

.tournament-slider .user-status__text, .tournament-slider .user-status__text--large, .tournament-slider .tournament-slider__text, .tournament-slider .tournament-slider__text--short {
  font-size: 1.4rem;
  word-break: break-all;
}

.tournament-slider__text {
  line-height: 1.4;
}

.tournament-slider__text--short {
  line-height: 1.3;
}

.tournament-slider__logo {
  margin: -.5rem 0 .5rem;
  width: 4.4rem;
}

@media screen and (min-width: 1025px) {
  .tournament-slider {
    display: block;
    overflow-x: visible;
  }
  .tournament-slider__list {
    display: block;
    width: calc(100% - 4rem);
    margin: auto;
    height: 100%;
  }
  .tournament-slider__item {
    border: none;
    margin: 0 1.5rem;
    padding: 0;
    border: 0.1rem solid #ccc;
  }
  .tournament-slider__link {
    display: block;
  }
  .tournament-slider__head {
    justify-content: space-between;
    flex-direction: row;
    width: 100%;
    padding: 1rem;
  }
  .tournament-slider__body {
    width: 100%;
    padding: 1rem;
    border: none;
  }
  .tournament-slider__body::after {
    content: none;
  }
  .tournament-slider__period {
    display: flex;
  }
  .tournament-slider__date {
    font-size: 2.4rem;
  }
  .tournament-slider__icon {
    display: inline-flex;
    align-items: center;
    width: auto;
    font-size: 1.6rem;
  }
  .tournament-slider__icon::before {
    content: "ー";
  }
  .tournament-slider__pref {
    margin-top: 0;
    padding: .6rem;
    font-size: 1.2rem;
  }
  .tournament-slider__text {
    height: 6.6rem;
    line-height: 1.6;
  }
  .tournament-slider__text--short {
    height: 4.4rem;
    line-height: 1.6;
  }
  .tournament-slider__logo {
    margin: 0 0 1rem;
    width: 7rem;
  }
}

/*====== .popular-slider ======*/
.popular-slider {
  display: flex;
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.popular-slider::-webkit-scrollbar {
  display: none;
}

.popular-slider__list {
  display: flex;
}

.popular-slider__item {
  width: 14rem;
  height: 29rem;
  margin-right: 1rem;
  border: 0.1rem solid #ccc;
}

.popular-slider__link {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  height: 100%;
}

.popular-slider__image {
  width: 100%;
  max-height: 11rem;
  min-height: 10.8rem;
  margin-bottom: 1.5rem;
}

.popular-slider__maker {
  font-size: 1rem;
  line-height: 2.2;
}

.popular-slider__name {
  font-size: 1.4rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  overflow: hidden;
  font-feature-settings: normal;
}

.popular-slider__sell-title {
  color: #999;
  margin-top: auto;
  font-size: 1rem;
  line-height: 1.6;
}

.popular-slider__sell-price {
  color: #eb5d43;
  font-size: 1.5rem;
  line-height: 1.6;
}

@media screen and (min-width: 1025px) {
  .popular-slider {
    display: block;
    overflow-x: visible;
  }
  .popular-slider__item {
    width: 20.5rem;
    height: 33rem !important;
    margin: 0 1.5rem;
  }
  .popular-slider__image {
    max-height: 100%;
    min-height: 16.6rem;
  }
  .popular-slider__name {
    line-height: 1.7;
  }
  .popular-slider__sell-price {
    font-size: 1.6rem;
  }
}

/*====== .news-list ======*/
.news-list {
  border-bottom: 0.1rem solid #ccc;
}

.news-list__item {
  border-top: 0.1rem solid #ccc;
  padding: 2rem 0;
}

.news-list__link {
  display: flex;
}

.news-list__wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #efefef;
  width: 8rem;
  height: 8rem;
  margin-right: 2rem;
}

.news-list__thumb {
  max-width: 8rem;
  max-height: 8rem;
}

.news-list__box {
  width: calc(100% - 10rem);
  margin-left: auto;
  height: 8rem;
  overflow-y: hidden;
}

.news-list__date {
  font-size: 1.4rem;
  line-height: 1;
}

.news-list__text {
  margin-top: .5rem;
  color: #666;
  font-size: 1.4rem;
  line-height: 1.4;
}

.news-list__flex {
  display: flex;
  align-items: center;
}

.news-list__tags {
  display: flex;
  flex-wrap: wrap;
  margin-top: -.5rem;
  margin-left: 1rem;
}

.news-list__tags li {
  display: inline-block;
  margin-top: .5rem;
  margin-left: .5rem;
  padding: .2rem 1rem;
  background-color: #36a1d1;
  color: #fff;
  font-size: 1.2rem;
  border-radius: 10rem;
}

/*====== .banner-list ======*/
.banner-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: -1rem 0;
}

.banner-list__item {
  margin: 1rem .5rem 0;
  width: 16rem;
}

.banner-list__link {
  display: block;
}

.banner-list__image {
  width: 100%;
}

@media screen and (min-width: 1299px) {
  .banner-list {
    margin: 0 auto;
  }
  .banner-list__item {
    width: auto;
    margin: 2rem auto 0;
  }
}

/*====== .footer ======*/
.footer__sns {
  display: flex;
  justify-content: center;
}

.footer__sns-item {
  margin: 0 1.5rem;
}

.footer__sns-link {
  display: inline-block;
}

.footer__sns-image {
  zoom: .5;
}

.footer__guide {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  width: 75vw;
  margin: 0 auto;
}

.footer__guide-item {
  margin-top: 1.5rem;
}

.footer__guide-link {
  font-size: 1rem;
}

.footer__copy {
  margin: 2rem auto 1.5rem;
  text-align: center;
}

@media screen and (min-width: 1025px) {
  .footer__sns-link {
    display: block;
    margin: auto;
    width: 70%;
  }
  .footer__sns-image {
    width: 100%;
    zoom: normal;
  }
  .footer__guide {
    display: flex;
    justify-content: center;
    margin-top: 7rem;
  }
  .footer__guide-item {
    margin: 0 1.5rem;
  }
  .footer__copy {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto 0;
    padding: 2.25rem;
    font-size: 1.2rem;
    background-color: #e6e6e6;
  }
}

/*====== .slick-slider ======*/
.slick-slider {
  display: none;
}

.slick-slider.slick-initialized {
  display: block;
}

.slick-slider .slick-slider__arrow, .slick-slider .slick-slider__arrow--prev, .slick-slider .slick-slider__arrow--next {
  position: absolute;
  top: 0;
  bottom: 0;
  display: block;
  margin: auto;
  transition: .2s;
  cursor: pointer;
}

.slick-slider .slick-slider__arrow:hover, .slick-slider .slick-slider__arrow--prev:hover, .slick-slider .slick-slider__arrow--next:hover {
  opacity: 0.8;
}

.slick-slider__arrow--prev {
  left: -1.4rem;
}

.slick-slider__arrow--prev::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 1.4rem;
  height: 1.4rem;
  margin-top: -.6rem;
  border: 0;
  border-top: solid 0.2rem #999;
  border-right: solid 0.2rem #999;
  border-left: solid 0.2rem #999;
  transform: rotate(-45deg);
  border-right: 0;
}

.slick-slider__arrow--next {
  right: 0;
  transform-origin: center;
}

.slick-slider__arrow--next::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 1.4rem;
  height: 1.4rem;
  margin-top: -.6rem;
  border: 0;
  border-top: solid 0.2rem #999;
  border-right: solid 0.2rem #999;
  border-left: solid 0.2rem #999;
  transform: rotate(45deg);
  border-left: 0;
}

/*====== .side ======*/
.side {
  display: none;
}

@media screen and (min-width: 1299px) {
  .side {
    position: relative;
    display: block;
    width: 28rem;
  }
  .side__novel {
    margin-top: 2rem;
  }
  .side__search {
    margin-top: 4rem;
  }
  .side__nav {
    margin-top: 4.5rem;
  }
  .side__nav-list {
    border-top: 0.1rem solid #ccc;
  }
  .side__nav-item {
    height: 7rem;
    border-bottom: 0.1rem solid #ccc;
  }
  .side__nav-link {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 1rem;
  }
  .side__nav-link::after {
    content: "";
    display: flex;
    align-items: center;
    width: 1.2rem;
    height: .45rem;
    margin-left: auto;
    background-image: url(../images/icon_arrow.svg);
    background-repeat: no-repeat;
  }
  .side__nav-box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3.5rem;
    height: 3.5rem;
    margin-right: 1.5rem;
  }
  .side__nav-text {
    font-size: 1.6rem;
  }
}

/*====== .novel-status ======*/
.novel-status {
  display: flex;
  justify-content: space-between;
}

.novel-status__link {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #36a1d1;
  color: #fff;
  width: 48%;
  height: 4rem;
  font-size: 1.6rem;
  border: 0.1rem solid #36a1d1;
  transition: 0.3s;
}

.novel-status__link:hover {
  background-color: #fff;
  color: #36a1d1;
  opacity: 1;
}

/*====== .search-tab ======*/
.search-tab__head {
  display: flex;
  justify-content: space-between;
}

.search-tab__tab {
  display: flex;
  width: calc(50% - .1rem);
}

.search-tab__radio:checked + .search-tab__label {
  background-color: #fff;
  color: #36a1d1;
}

.search-tab__label {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #36a1d1;
  color: #fff;
  width: 100%;
  padding: .8rem 0;
  font-size: 1.6rem;
  border-top: 0.1rem solid #36a1d1;
  border-right: 0.1rem solid #36a1d1;
  border-left: 0.1rem solid #36a1d1;
  border-top-left-radius: .5rem;
  border-top-right-radius: .5rem;
  cursor: pointer;
  transition: 0.3s;
}

.search-tab__label:hover {
  background-color: #fff;
  color: #36a1d1;
}

.search-tab__radio {
  display: none;
}

.search-tab__body {
  display: flex;
  width: 100%;
  padding: 1rem;
  border-right: 0.1rem solid #36a1d1;
  border-left: 0.1rem solid #36a1d1;
  border-bottom: 0.1rem solid #36a1d1;
  border-bottom-left-radius: .5rem;
  border-bottom-right-radius: .5rem;
}

.search-tab__input {
  width: calc(100% - 3.8rem);
  height: 4rem;
  padding: 0 1rem;
  background-color: #e6e6e6;
  border-top-left-radius: .5rem;
  border-bottom-left-radius: .5rem;
}

.search-tab__button {
  width: 3.8rem;
  height: 4rem;
  background-color: #36a1d1;
  color: #fff;
  border-top-right-radius: .5rem;
  border-bottom-right-radius: .5rem;
  transition: 0.3s;
  cursor: pointer;
}

.search-tab__button:hover {
  opacity: 0.8;
}

/*====== .head ======*/
.head {
  margin-bottom: 1.5rem;
}

.head__search {
  position: relative;
  top: .5rem;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 3rem;
  background-color: #fff;
  z-index: 1;
}

.head__search::before {
  content: "";
  position: absolute;
  top: 0;
  display: block;
  width: 100%;
  height: 4rem;
  background-color: #fff;
  z-index: 1;
}

.head__user {
  display: flex;
  padding: 1rem 2rem;
}

.head__notice {
  background-color: #f1f8fc;
  width: 100%;
  margin: auto;
  padding: .4rem 0;
  font-size: 1.2rem;
  overflow: hidden;
}

.head__notice-text {
  display: block;
  color: #36a1d1;
  white-space: nowrap;
  text-align: center;
}

.head__notice-text.is-animation {
  display: inline-block;
  padding-left: 100%;
  animation: scrollAnime 15s linear infinite;
}

.head__notice-link {
  color: #36a1d1;
}

.head__breadcrumb {
  margin-top: 1.5rem;
  padding: 0 2rem;
}

.head__breadcrumb-list {
  display: flex;
  align-items: center;
}

.head__breadcrumb-item {
  display: inline-flex;
  align-items: center;
}

.head__breadcrumb-item::after {
  content: "\03e";
  padding: 0 .5em;
  font-size: 1.3em;
}

.head__breadcrumb-item:last-of-type::after {
  content: none;
}

.head__breadcrumb-link {
  font-size: 1rem;
}

@keyframes scrollAnime {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@media screen and (min-width: 1025px) {
  .head__search {
    display: none;
  }
  .head__user {
    width: 100%;
    max-width: 130rem;
    margin: auto;
    padding: 1rem 0;
    border-bottom: none;
  }
  .head__notice {
    padding: .6rem 0;
    font-size: 1.6rem;
  }
  .head__notice-text {
    padding-left: 0;
    animation: none;
  }
  .head__breadcrumb {
    width: 100%;
    max-width: 130rem;
    margin: 1rem auto;
    padding: 0;
  }
  .head__breadcrumb-item::after {
    font-size: 1.6em;
  }
  .head__breadcrumb-link {
    font-size: 1.2rem;
  }
}

.top .top__section.column-top__section {
  padding: 2.5rem 0 2.5rem 2rem;
}

@media screen and (min-width: 1025px) {
  .top .top__section.column-top__section {
    padding: 5rem 3rem 0;
  }
}

/*====== .column-slider ======*/
.column-slider {
  display: flex;
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.column-slider::-webkit-scrollbar {
  display: none;
}

.column-slider__list {
  display: flex;
}

.column-slider__item {
  width: 25.6rem;
  margin-right: 1rem;
  border: 0.1rem solid #ccc;
}

.column-slider__link {
  display: block;
  width: 100%;
}

.column-slider__link > br {
  display: none;
}

.column-slider__link img {
  width: 100%;
}

.column-slider__body {
  padding: 1rem;
}

.column-slider__text {
  font-size: 1.4rem;
  line-height: 1.6;
  height: 6.6rem;
}

.column-slider__date {
  margin-top: 1rem;
  color: #999;
  font-size: 1.2rem;
}

@media screen and (min-width: 1025px) {
  .column-slider {
    display: block;
    overflow-x: visible;
  }
  .column-slider__list {
    display: block;
    width: calc(100% - 4rem);
    margin: auto;
  }
  .column-slider__item {
    margin: 1rem;
  }
}

@media screen and (min-width: 1025px) {
  .column-slider__list {
    max-width: calc(97rem);
  }
}
/*# sourceMappingURL=top.css.map */