@charset "utf-8";
/* wrap */
.lp_contents {
  width: min(100%, 990px);
  margin: auto;
  background-color: #fff;
  line-height: 1.5;
  font-family: 'Roboto', "Helvetica Neue", Helvetica, arial, sans-serif;
}

/* common */
.lp_contents img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* fv */
.fv_lp{
  margin-bottom:  3rem;
}
.fv_lp .fv_sp{
  display: none;
}

/* next */
.lp_next {
  margin: min(20/990*100vw, 20px) 0;
  padding: min(22/990*100vw, 22px) 0;
  background-color: #242424;
}

.lp_next p {
  position: relative;
  padding-bottom: min(120/990*100vw, 120px);
  color: #fff;
  font-weight: 700;
  font-size: clamp(10px, 32/990*100vw, 32px);
  text-align: center;
}

.lp_next p::before,
.lp_next p::after {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) rotate(-45deg);
  width: min(100/990*100vw, 100px);
  height: min(100/990*100vw, 100px);
  border-bottom: min(4/990*100vw, 4px) solid #fff;
  border-left: min(4/990*100vw, 4px) solid #fff;
  font-size: clamp(10px, 48/990*100vw, 48px);
  content: "";
}

.lp_next p::before {
  bottom: min(20/990*100vw, 20px);
}

.lp_next p::after {
  bottom: min(40/990*100vw, 40px);
}

/* manga */
.lp_manga {
  list-style-type: none;
}

.lp_manga li {
  padding-bottom: min(20/990*100vw, 20px);
}

.lp_copyright {
  padding-right: .5em;
  color: #000;
  font-size: clamp(10px, 18/990*100vw, 18px);
  text-align: right;
}

/* cta */
.lp_cta {
  width: 100%;
  background-color: #000;
  text-align: center;
}

.lp_cta .cta_inner {
  width: min(100%, 990px);
  margin: auto;
  padding: min(50/990*100vw, 50px) 0;
  text-align: center;
}

.lp_cta h2 {
  color: #fff;
  font-size: clamp(10px, 40/990*100vw, 40px);
}

.lp_cta .logo {
  display: inline-block;
  width: min(200/990*100vw, 200px);
  margin: 1em auto;
}

.lp_cta .cta_txt {
  color: #fff;
  font-weight: 700;
}

.lp_cta .cta_txt p {
  margin-bottom: 1em;
  font-size: clamp(10px, 24/990*100vw, 24px);
}

.lp_cta .cta_txt .orange {
  color: #ffa927;
}

.lp_cta .cta_txt a {
  padding: min(20/990*100vw, 20px) min(40/990*100vw, 40px);
  border-radius: min(50/990*100vw, 50px);
  background-color: #ffa927;
  color: #fff;
  font-weight: 700;
  font-size: clamp(10px, 48/990*100vw, 48px);
  line-height: 3;
  text-decoration: none;
}

.lp_contents a:hover {
  opacity: .7;
}


/* manga-list */
.manga-list {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 20px;
  justify-content: space-between;
  margin: 0 auto 3rem;
  word-break: break-word;
} 
.list-6 {
  width: 90%;
}
.rnk_icon img{
  width: 31.67%;
  margin: 0 auto 10px;
}
.manga-box {
  width: 180px;
  text-align: center;
}

.manga-inner {
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.manga-genre {
  margin-bottom: 4px;
  font-size: 14px;
}
.manga-genre a {
  color: #4d4d4d;
}

.manga-cover {
  width: 180px;
  min-height: 192px;
  margin: 0 auto;
}
.manga-cover img {
  width: 180px;
  object-fit: cover;
  object-position: top;
  overflow: hidden;
}

.manga-title {
  overflow: hidden;
  margin-bottom: 16px;
  text-overflow: clip;
  font-size: 15px;
  line-height: 1.6;
  overflow-wrap: break-word;
}
.manga-title a {
  padding-top: 5px;
  color: #000000;
  font-weight: bold;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  overflow: hidden;
  font-size: 1.4rem;
  line-height: 1.2;
  word-break: normal;
  text-decoration: underline;
}

.middleBannerArea figure{
  border-bottom: none!important;
}

#pickup1 .pickup1{
  align-self: flex-start;
}

#daily_ranking .rankingImg figure img{
  width: 30px;
}

/*チャプター*/
.chapter_btn{
  margin-bottom:  10px;
  padding: 12px 0;
  background: #999;
  border-radius: 2em;
}
.chapter_btn:last-child{
  margin-bottom: 0;
}
.chapter_btn a{
  display: block;
  font-size: 1.4rem;
}
.chapter_btn a .red_txt{
  color: red;
}

/*年次のチャプターリセット*/
.annual .chapter_btn{
  display: none;
}

@media print, screen and (max-width: 750px) {

  .fv_lp .fv_pc{
    display: none;
  }
  .fv_lp .fv_sp{
    display: block;
  }
  .fv_lp .fv_sp img{
    width: 100%;
  }

  .manga-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: min(60px, calc(60 / 750 * 100vw)) min(20px, calc(20 / 750 * 100vw));
    margin-bottom: min(30px, calc(30 / 750 * 100vw));
  }

  .manga-box {
    width: 45%;
  }
  .list-6 {
    width: 93%;
    padding: 0;
  }
  .manga-cover {
    width: 100%;
    min-height: min(315px, calc(315 / 750* 100vw));
  }
  .manga-cover img {
    width: 100%;
  }  

  .manga-title {
    overflow: hidden;
    min-height: 12px;
    margin-bottom: min(16px, calc(16 / 750 * 100vw));
    text-overflow: clip;
    font-size: min(30px, calc(30 / 750 * 100vw));
    line-height: 1.6;
    overflow-wrap: break-word;
  }
  .rnk_icon img{
    width: 23.57%;
    margin-bottom: min(28px, calc(28 / 750 * 100vw));
  }  

  .chapter_btn{
    margin-bottom: min(20px, calc(20 / 750 * 100vw));
    padding: min(11px, calc(11 / 750 * 100vw)) 0;
  }  

}
