<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/*
- 背景・背景パターン・ボタンカラーバリエーション

&lt;article&gt;に下記クラス付与で色など変更可能

  - 背景色
  - bgc_lite-pink（デフォルト）
  - bgc_pink
  - bgc_lite-purple
  - bgc_purple
  - bgc_lite-orange
  - bgc_orange
  - bgc_lite_blue
  - bgc_blue
  - bgc_lite_yellow
  - bgc_yellow
  - bgc_line_green
  - bgc_green

*/

/* ==================================================
 特集ページレイアウトCSS
================================================== */
/* SPPC表示切り換え
------------------------------------------- */
#article .pc {
  display: none;
}

@media screen and (min-width: 767px) {
  #article .pc {
    display: block;
  }
  #article .sp {
    display: none;
  }
}

/* ローディング時のアニメーション
------------------------------------------- */
.fadeInDown {
  animation-name: fadeInDown 2s both;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ロゴ・ヘッダー幅調整
------------------------------------------- */
@media screen and (min-width: 767px) {
  #lp_header_area {
    height: 60px;
  }

  #lp_header_area li#logo {
    width: 214px;
    padding-top: 26px;
    background-size: 214px 26px;
  }
}

/* ページ全体スタイル
------------------------------------------- */
#article {
  position: relative;
  background: url(/img/contents/lp/article2103_01/bg.png?1);
}

/* 背景カラーバリエーション */
#article.bgc_pink {
  background: linear-gradient(
    135deg,
    rgb(255, 127, 127) 0%,
    rgb(255, 127, 149) 100%
  );
}

#article.bgc_lite-purple {
  background: linear-gradient(
    135deg,
    rgb(157, 127, 255) 0%,
    rgb(205, 127, 255) 100%
  );
}

#article.bgc_purple {
  background: linear-gradient(
    135deg,
    rgb(128, 89, 255) 0%,
    rgb(191, 89, 255) 100%
  );
}

#article.bgc_lite-orange {
  background: linear-gradient(
    135deg,
    rgb(255, 148, 110) 0%,
    rgb(255, 178, 136) 100%
  );
}

#article.bgc_orange {
  background: linear-gradient(
    135deg,
    rgb(255, 127, 102) 0%,
    rgb(255, 156, 102) 100%
  );
}

#article.bgc_lite_blue {
  background: linear-gradient(
    135deg,
    rgb(127, 206, 255) 0%,
    rgb(127, 238, 255) 100%
  );
}

#article.bgc_blue {
  background: linear-gradient(
    135deg,
    rgb(76, 187, 255) 0%,
    rgb(76, 231, 255) 100%
  );
}

#article.bgc_lite_yellow {
  background: linear-gradient(
    135deg,
    rgb(255, 200, 103) 0%,
    rgb(255, 215, 120) 100%
  );
}

#article.bgc_yellow {
  background: linear-gradient(
    135deg,
    rgb(255, 187, 69) 0%,
    rgb(255, 213, 86) 100%
  );
}

#article.bgc_line_green {
  background: linear-gradient(
    135deg,
    rgb(128, 232, 171) 0%,
    rgb(100, 223, 191) 100%
  );
}

#article.bgc_green {
  background: linear-gradient(
    135deg,
    rgb(65, 217, 128) 0%,
    rgb(61, 204, 168) 100%
  );
}

/* ----- 内側背景 ----- */
#article .articleInner {
  background: url(/img/contents/lp/article2103_01/bg_02.png) repeat center top;
}

@media screen and (min-width: 767px) {
  #article {
    width: 100%;
    overflow: hidden;
  }

  /* ----- PC背景 ----- */
  #article .scroll-bg {
    background: url(../../../img/contents/lp/article2010_01/bg_mainbg_adult.png) center center repeat;
    position: absolute;
    top: 0;
    left: 0;
    height: calc(100% + 338px);
    width: calc(100% + 324px);
    animation: anime-topBg 15s linear infinite;
    background-size: 338px 324px;
    z-index: 0;
  }

  /* 内側の表示サイズと影色 */
  #article .articleInner {
    position: relative;
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
    box-shadow: 0px 0px 6px -1px #000;
  }
}

/* media以下にkeyframeを置くとIE11で動作しないため外だし */

@keyframes anime-topBg {
  0% { transform: translate(-338px, -324px); }
  100% { transform: translate(0, 0); }
}

/* ----- ヘッダー画像 ----- */
#article .header img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* 対象作品リスト
------------------------------------------- */
#article .article_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 auto;
}

@media screen and (min-width: 1002px) {
    #article .article_list {
        justify-content: flex-start;
        max-width: 1002px;
    }
}

#article [class*="box_"] {
  padding: 15px 10px 0;
  margin: 20px 10px 0;
  max-width: 314px;
  width: 100%;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 0px 6px -1px #000;
  box-sizing: border-box;
  overflow: hidden;
}


#article .pic_sd {
  padding: 15px 10px 0;
  margin: 20px 10px 0;
  max-width: 314px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

#article .pic_sd img {
  max-width: 100%;
  height: auto;
}

@media screen and (min-width: 767px) {

  #article .pic_sd img:last-child {
    display: block;
  }
}

@media screen and (min-width: 1023px) {


  #article .pic_sd img:first-child {
    display: block;
  }
}

/* ----- 対応機種 ----- */
#article [class*="box_"] .tag_support {
  display: flex;
  width: 100%;
}

#article [class*="box_"] .tag_support p {
  padding: 6px 12px;
  margin-right: 10px;
  font-size: 11px;
  text-align: center;
  border: solid 1px #000;
  box-sizing: border-box;
}

/* ----- 作品タイトル ----- */
#article [class*="box_"] .game_title {
  display: flex;
  align-items: center;
  margin-top: 10px;
  width: 100%;
}

#article [class*="box_"] .game_title img {
  max-width: 150px;
}

#article [class*="box_"] .game_title h2 {
  display: flex;
  align-items: center;
  padding-left: 10px;
  width: 100%;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.75em;
  box-sizing: border-box;
}

/* ----- ゲームプレイボタン ----- */
#article [class*="box_"] .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  width: 100%;
  height: 40px;
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  border-radius: 5px;
  background: #f6366f;
}

@media screen and (min-width: 767px) {
  #article [class*="box_"] .btn:hover {
    background: linear-gradient(
      90deg,
      #f6366f 0%,
      rgb(255 169 41) 100%
    );
    box-shadow: 0px 0px 2px -1px #000;
  }
}

/* ----- ログインボーナス ----- */
#article [class*="box_"] .login_bonus {
  padding: 10px;
  margin: 10px 0 0 -10px;
  width: calc(100% + 20px);
  background: #fff8e0;
  box-sizing: border-box;
}

#article [class*="box_"] .login_bonus p {
  position: relative;
  margin-left: 12px;
  font-size: 14px;
  font-weight: 900;
}

#article [class*="box_"] .login_bonus p::before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 50%;
  left: -12px;
  transform: translate3d(0,-50%,0);
  margin-right: 10px;
  width: 4px;
  height: 15px;
  background: #f6366f;
}

#article [class*="box_"] .login_bonus ul {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

#article [class*="box_"] .login_bonus li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 92px;
  height: 92px;
  /*background: #daab8d; */
  border-radius: 50px;
}

#article [class*="box_"] .login_bonus li + li {
  margin-left: 10px;
}

#article [class*="box_"] .login_bonus li img {
  width: 100%;
}

/* アテンション文
-------------------------------------------------- */
#article .article_attention_wrap {
  padding-bottom: 40px;
  margin: 10vw auto 0;
}

#article .article_attention_wrap &gt; div {
  margin: 5vw auto 0;
}

#article .article_attention_wrap &gt; div:first-child {
  margin: 0 auto;
}

#article .article_attention {
  position: relative;
  padding: 40px 20px;
  width: 100%;
  color: #fff;
  text-align: center;
  background: rgba(30,10,16,.8);
  box-sizing: border-box;
}

/* テキスト */
#article .article_attention h3 {
  margin-bottom: 30px;
  font-size: 20px;
  font-weight: 900;
}

#article .article_attention p {
  font-size: 14px;
  line-height: 1.5em;
}

#article .article_attention .campaign_period_title {
  padding: 5px 25px;
  margin: 0 auto 20px;
  max-width: 200px;
  width: 100%;
  font-weight: 900;
  color: #1e0b10;
  background: #fff;
  border-radius: 30px;
}

#article .article_attention .article_attention_line {
  margin: 20px 0;
  width: 100%;
  height: 1px;
  background: #fff;
}

@media screen and (min-width: 767px) {
  #article .article_attention_wrap {
    margin: 90px auto 0;
  }

  #article .article_attention_wrap &gt; div {
    margin: 45px auto 0;
  }

  #article .article_attention {
    width: calc(100% - 40px);
    border-radius: 10px;
  }
  
  #article .article_attention h3 {
    font-size: 30px;
  }
  
}
</pre></body></html>