@charset "UTF-8";
/********************************
*
* SP/PCで同じ内容のCSSとなります。
* 基本はSP側のCSSを更新し、PC側に必ず反映してください。
* PCのみに必要なCSSはPC側のCSSの一番下に追加してください。
*
*********************************/
/* common
------------------------------*/
html, body {
  position: relative;
}
body {
  background: #fff52e!important;
  color: #333;
  font-family: メイリオ, Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: 1em;
  font-weight: normal;
  line-height: 1.5!important;
  text-align: left;
}
ul, li {
  list-style: none;
}
a:hover {
  text-decoration: none;
}
a:hover img {
  opacity: 1;
}
.bgWrapper {
  position: relative;
  background: #fff52e;
}
.bgWrapper * {
  box-sizing: border-box;
}
.bgWrapper img {
  width: 100%;
  max-width: 770px;
  height: auto;
  vertical-align: bottom;
  object-fit: contain;
}
.bgWrapper a {
  backface-visibility: hidden;
  transition: all .2s;
}
.bgWrapper a:hover {
  opacity: .7;
}
.bgWrapper .underline {
  text-decoration: underline;
  text-underline-position: under;
  text-decoration-line: underline;
  text-decoration-skip-ink: none;
}
.bgWrapper .indent {
  padding-left: 1em;
  text-indent: -1em;
}
.bgWrapper .small {
  font-size: 12px;
}
.bgWrapper .bold {
  font-weight: bold;
}
.bgWrapper .center {
  text-align: center;
}
.bgWrapper .left {
  text-align: left;
}
.bgWrapper .red {
  color: #d00;
}
.bgWrapper .pc_hidden {
  display: none;
}
.bgWrapper .sp_hidden {
  display: none;
}
.bgWrapper .error_message {
  padding: 1em 0;
  color: #ff5400;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
}
/* 共通パーツ
------------------------------*/
/* ボタン */
.bgWrapper .btn {
  display: block;
  position: relative;
  height: calc(min(4.26vw, 22px) * 3);
  margin: 4% auto;
  /* padding: 3.43% 0; */
  padding-right: .4em;
  border: 3px solid #333;
  border-radius: 40px;
  background: #fff;
  color: #333;
  font-size: min(4.26vw, 22px);
  font-weight: bold;
  letter-spacing: .05em;
  /* line-height: 1; */
  line-height: calc(calc(min(4.26vw, 22px) * 3) - 6px);
  text-align: center;
  cursor: pointer;
}
.bgWrapper .btn:hover,
.bgWrapper .btn:active,
.bgWrapper .bnt:visited {
  color: #333;
}
.bgWrapper .btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 2.941%;
  width: 2.941%;
  height: auto;
  padding-top: 2.941%;
  transform: translateY(-50%) rotate(45deg);
  border-top: 3px solid #333;
  border-right: 3px solid #333;
}
.bgWrapper .btn_2col::after {
  right: calc(2.941% * 2);
  width: calc(2.941% * 2);
  padding-top: calc(2.941% * 2);
}
@media screen and (max-width:600px) {
  .bgWrapper .btn_2col {
    height: calc(min(4.26vw, 22px) * 2.5);
    line-height: calc(calc(min(4.26vw, 22px) * 2.5) - 6px);
  }
}
@media screen and (max-width:480px) {
  .bgWrapper .btn {
    border-width: 2px;
    line-height: calc(calc(min(4.26vw, 22px) * 3) - 4px);
  }
  .bgWrapper .btn::after {
    border-width: 2px;
  }
  .bgWrapper .btn_2col {
    line-height: calc(calc(min(4.26vw, 22px) * 2.5) - 4px);
  }
}
/* Swiper-button */
.swiper-button-next,
.swiper-button-prev {
  width: 7vw;
  min-width: 40px;
  max-width: 54px;
  height: 7vw;
  min-height: 40px;
  max-height: 54px;
  border: 3px solid #333;
  border-radius: 50%;
  background: #fff;
  color: #333;
  font-weight: bold;
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: -10px;
  left: auto;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  right: auto;
  left: -10px;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 24px;
}
.swiper-button-next::after {
  text-indent: 4px;
}
.swiper-button-prev::after {
  text-indent: -4px;
}
@media screen and (max-width:480px) {
  .swiper-button-next,
  .swiper-button-prev {
    border-width: 2px;
  }
}
/* layout
------------------------------*/
.contentsArea {
  position: relative;
  width: 100%;
  max-width: 770px;
  margin: 0 auto;
  color: #333;
  font-size: 15px;
}
.container {
  position: relative;
  margin: 5.194% 3.766% 0; /* 幅770pxのとき内幅712px、上余白40px */
}
.container_full {
  position: relative;
  margin-top: 5.194%;
}
[class*="container"] + [class*="container"] {
  margin-top: 5.194%;
}
/* ログインエリア
------------------------------*/
.loginArea {
  width: 92.46%;
  max-width: 712px;
  margin: 4% auto 0;
  padding: 16px 16px 20px;
  border-radius: 16px;
  background: #fff;
  letter-spacing: .05em;
  text-align: center;
}
.loginArea p {
  font-size: 14px;
}
.loginArea p:not(:first-child) {
  margin-top: .5em;
}
.loginArea .lead_text {
  font-size: min(4.8vw, 1.5em);
}
.loginArea .btn_wrap {
  display: flex;
  justify-content: space-between;
  max-width: 600px;
  margin: auto;
}
.loginArea .btn_wrap .btn {
  flex: 0 0 46%;
  margin-bottom: 0;
  /* padding: 2.66% 0; */
  transition: all 0.3s;
  background: #fff42e;
  font-size: min(4.26vw, 22px);
}
.loginArea .btn_wrap .btn:hover {
  opacity: 0.7;
}
.enteredArea .loginArea {
  padding: 0;
}
@media screen and (max-width: 430px) {
  .loginArea .br_hidden {
    display: none;
  }
}
/* sns btn_areas
--------------------------------*/
.btn_areas {
  margin: 16px 3.766%;
}
/* ページトップボタン
------------------------------*/
.btn_pagetop {
  visibility: hidden;
  position: fixed;
  z-index: 1000;
  right: 20px;
  bottom: 20px;
  padding: 4px 8px 6px;
  transition: .3s;
  border-radius: 3px;
  opacity: 0;
  background: rgba(0, 0, 0, .4);
  color: #fff;
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
  cursor: pointer;
}
.btn_pagetop span {
  display: block;
  font-size: 12px;
  line-height: 1;
}
.btn_pagetop.is-shown {
  visibility: visible;
  opacity: 1;
}
/* 免責
--------------------------------*/
.contentsArea .termArea {
  margin-top: 20px;
  padding: .75em;
  border: 1px solid #ccc;
  background: #fff;
  font-size: min(3.2vw, 14px);
}
/* コミックシーモアトップへ
--------------------------------*/
.to_cmoatop {
  position: relative;
  padding-right: 14px;
  font-size: 13px;
  text-align: right;
}
.to_cmoatop::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 6px;
  height: auto;
  padding-top: 6px;
  transform: translateY(-50%) rotate(45deg);
  border-top: 1px solid #333;
  border-right: 1px solid #333;
}
.to_cmoatop a {
  color: #333;
}
/* ヘッダー
------------------------------*/
.header {
  margin: 0 auto;
}
.header img {
  display: block;
}
/* エントリーエリア
--------------------------------*/
.entryArea .section_title {
  width: 79.87012vw;
  max-width: 615px;
  margin: auto;
  text-align: center;
}
/* エントリーエリア ＞ 部門切り替えタブ
--------------------------------*/
.contentsArea .navArea {
  display: flex;
  align-items: flex-end;
  margin: 3.62% auto 0;
  text-align: center;
}
.contentsArea .navArea.top {
  margin-top: 16px;
}
.contentsArea .navArea li {
  display: flex;
  width: 100%;
  margin-right: 1%;
}
.contentsArea .navArea li:last-child {
  margin-right: 0;
}
.contentsArea .navArea li a {
  display: block;
  width: 100%;
  height: 44px;
  color: #fff;
  font-size: min(3.73vw, 16px);
  font-weight: bold;
  line-height: 44px;
  text-decoration: none;
}
.contentsArea .navArea li.boy a {
  background: #203ec6;
}
.contentsArea .navArea li.girl a {
  background: #ff69c9;
}
.contentsArea .navArea li.isekai a {
  background: #9f349a;
}
.contentsArea .navArea li.novel a {
  background: #00a400;
}
.contentsArea .navArea li.bl a {
  background: #00b4ed;
}
.contentsArea .navArea li.tl a {
  background: #ff6161;
}
.contentsArea .navArea li.selected a {
  height: 54px;
  transform: translateY(2px);
  border-top: 8px solid #000;
  background: #fff;
  color: #333;
  line-height: 44px;
}
.contentsArea .navArea li.boy.selected a {
  border-color: #203ec6;
}
.contentsArea .navArea li.girl.selected a {
  border-color: #ff69c9;
}
.contentsArea .navArea li.isekai.selected a {
  border-color: #9f349a;
}
.contentsArea .navArea li.novel.selected a {
  border-color: #00a400;
}
.contentsArea .navArea li.bl.selected a {
  border-color: #00b4ed;
}
.contentsArea .navArea li.tl.selected a {
  border-color: #ff6161;
}
/* エントリーエリア ＞ 投票完了カウントダウン
--------------------------------*/
.cntdown_vote {
  width: 84.15584vw;
  max-width: 648px;
  margin: auto;
}
/* 特典リンクエリア
--------------------------------*/
.tokutenArea {
  max-height: 1418px;
}
.tokutenArea .tokuten_bg {
  height: auto;
  min-height: 184.15vw;
  background: url("/auto/images/fix/comic_prize/2026/entry/tokuten_bg.png") no-repeat top left/100% auto;
}
.tokutenArea .tokuten_img {
  position: relative;
  margin: auto;
  text-align: center;
}
.tokutenArea .tokuten_img a {
  display: block;
}
.tokutenArea .tokuten_img.tokuten_1 {
  width: 86.75324vw;
  max-width: 668px;
  padding-top: 1.8%;
}
.tokutenArea .tokuten_img.tokuten_2 {
  width: 85.06666vw;
  max-width: 655px;
  padding-top: 9.6%;
}
.tokutenArea .tokuten_img.tokuten_1 a:hover,
.tokutenArea .tokuten_img.tokuten_2 a:hover {
  opacity: 1;
}
.tokutenArea .tokuten_img.tokuten_coupon {
  width: 87.14285vw;
  max-width: 671px;
  padding-top: 9.22%;
}
.tokutenArea .btn_link_genre {
  display: flex;
  justify-content: center;
  max-width: 664px;
  margin: 5.12% auto 0 0;
}
.tokutenArea .btn_link_genre li {
  flex: 1 0 calc(100% / 6);
  padding: 0 .825%;
}
.tokutenArea .btn_link_genre li a {
  display: block;
  padding: .75em .4em;
  border-radius: 40px;
  background: #01228c;
  color: #fff;
  font-size: min(2.9333vw ,20px);
  font-weight: bold;
}
@media screen and (min-width: 770px) {
  .tokutenArea .tokuten_bg {
    min-height: 1418px;
  }
}
/* historyArea, historyAreaAll
--------------------------------*/
.historyArea .section_title {
  width: 83.896vw;
  max-width: 646px;
  margin: auto;
}
.historyArea .btn {
  max-width: 400px;
}
.historyArea .hist_box {
  max-width: 600px;
  margin: 2.247% auto 0;
}
#titleHist ul + ul {
  margin-top: 23px;
}
#titleHist ul li a {
  display: block;
  width: 100%;
}
#titleHist .thum_box {
  width: calc(100% / 3 - 2%);
  margin: 0 1%;
  float: left;
  text-align: center;
  vertical-align: top;
}
#titleHist .thum_box img {
  width: 94%;
  max-width: 180px;
}
#titleHist .thum_box.con img {
  max-width: 125px;
}
#titleHist .text_box {
  width: calc(100% / 3 - 2%);
  margin: 0 1%;
  float: left;
  text-align: left;
  vertical-align: top;
}
#titleHist .title_name {
  height: 14px;
  margin: 5px 4px 0;
  overflow: hidden;
  color: #333;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
}
#titleHist .title_name a {
  width: 100%;
  overflow: hidden;
  color: #333;
}
/* アニメーション（SP/PC共通）
--------------------------------*/
.moving_up {
  transition: transform .2s;
}
.moving_up:hover {
  transform: translateY(-4%);
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
.animate-fadein {
  animation: fadeIn .5s forwards;
  opacity: 0;
}
@keyframes fluffy {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12%);
  }
}
.animate-fluffy {
  animation: fluffy 1.5s infinite;
}
/********************************
*
*　↓↓↓↓ ここより下はPCのみ ↓↓↓↓
*
*********************************/
html {
  overflow: unset!important;
  overflow-x: unset!important;
}
/* フォントの指定を打消し */
html, body, div, h1, h2, h3, h4, h5, h6, p, blockquote, pre, address, ul, ol, li, dl, dt, dd, table, th, td, form, fieldset {
  color: unset;
  font-size: unset;
}
.pc_wrapper {
  display: flex;
  position: relative;
  justify-content: center;
  width: 100%;
  height: 100vh;
}
.pc_bg_dots {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #85f5ff;
  background-image: radial-gradient(circle, #fff 2px, transparent 2px), radial-gradient(circle, #fff 2px, transparent 2px);
  background-position: 0 0, 8px 16px;
  background-size: 16px 32px;
}
.pc_logo_wrapper,
.pc_nav_wrapper {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: calc((100vw - 866px) / 2);
  height: 100%;
  overflow: hidden;
  text-align: center;
}
.pc_logo_wrapper a {
  width: 60%;
  max-width: 360px;
}
.pc_center_wrapper {
  display: flex;
  position: relative;
  width: 100%;
  max-width: 866px;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.pc_center_wrapper::-webkit-scrollbar {
  display: none
}
.pc_center_inner {
  position: relative;
  min-width: 0;
  max-width: 770px;
  margin: auto;
  background: #fff52e;
}
@media screen and (max-width:1400px) {
  .pc_logo_wrapper {
    display: none;
  }
  .pc_nav_wrapper {
    flex-grow: 1;
  }
}
@media screen and (max-width:1120px) {
  .pc_nav_wrapper {
    display: none;
  }
}
@media screen and (max-width:770px) {
  .side_line_wrapper {
    display: none;
  }
}
.footer {
  max-width: 770px;
}
/* アニメーション（PCのみ）
--------------------------------*/
@keyframes pc-side-line {
  0% {
    background-position: left 0;
  }
  100% {
    background-position: left 1200px;
  }
}
.side_line_wrapper {
  position: relative;
  flex: 0 0 48px;
}
.animate-side_line {
  position: fixed;
  z-index: 1;
  top: 0;
  width: 48px;
  height: 100%;
  animation: pc-side-line 50s linear infinite;
  background-image: url("/auto/images/fix/comic_prize/2026/pcc/pc_side_line.png");
  background-repeat: repeat-y;
  background-size: 48px;
}
.animate-side_line.line-left {
  transform: scale(-1, -1);
}
