@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;
  }
}

/*================================
	カスタムテンプレート simpleの設定
=================================*/
/*====== .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;
  }
}

/*====== .user-status ======*/
.user-status .user-status__text, .user-status .user-status__text--large {
  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;
  }
}

/*====== .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;
  }
}

/*====== .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;
}

/*====== .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;
  }
}

/*====== .under ======*/
.under {
  padding: 0 2rem;
}

@media screen and (min-width: 1025px) {
  .under {
    width: 100%;
    max-width: 130rem;
    margin: auto;
    padding: 0;
  }
}

/*====== .simple ======*/
.simple {
  max-width: 96rem;
  margin: auto;
  padding-bottom: 3rem;
}

.simple__title {
  background-color: #f1f8fc;
  color: #333;
  font-size: 2rem;
  padding: 1rem;
  line-height: 1.4;
}

.simple__content {
  margin-top: 2rem;
  color: #333;
  font-size: 1.4rem;
}

.simple__content * {
  line-height: 1.6;
}

.simple__content * + * {
  margin-top: 1.4rem;
}

@media screen and (min-width: 1025px) {
  .simple__title {
    font-size: 2.8rem;
  }
  .simple__content {
    margin-top: 4rem;
    font-size: 1.6rem;
  }
  .simple__content * {
    line-height: 1.8;
  }
  .simple__content * + * {
    margin-top: 1.6rem;
  }
}
/*# sourceMappingURL=simple.css.map */