@charset "utf-8";
/*
- 背景・背景パターン・ボタンカラーバリエーション

<article>に下記クラス付与で色など変更可能

  - 背景色
  - 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);
  }
}

/* ロゴ・ヘッダー幅調整
------------------------------------------- */

#lp_header_area li#logo {
  background: url(../../../img/contents_pc/common/logo_dlsite_girlsmaniax.png) no-repeat 0 0;
  background-size: contain;
}


@media screen and (min-width: 767px) {
  #lp_header_area {
    height: 60px;
  }

  #lp_header_area li#logo {
    background: url(../../../img/contents_pc/common/logo_dlsite_girlsmaniax.png) no-repeat 0 0;
    width: 214px;
    padding-top: 26px;
    background-size: contain;


  }
}

/* ページ全体スタイル
------------------------------------------- */
#article {
  position: relative;
  background: #e5fcff;
  animation: anime-topBg 8s linear infinite;
}

/* 背景カラーバリエーション */
#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: #fff;
}

@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;
    padding-bottom: 30px;
    box-shadow: 0px 0px 6px -1px #000;
  }
}

/* media以下にkeyframeを置くとIE11で動作しないため外だし */

@keyframes anime-topBg {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -150px 150px;
  }
}

/* ----- ヘッダー画像 ----- */
#article .header img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* 対象作品リスト
------------------------------------------- */

#article .article_title{
  text-align: center;
  width: 100%;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.25em;
  box-sizing: border-box;
  padding: 50px 0 30px;
  color: #457deb;
}

#article .article_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 30px;
}

@media screen and (min-width: 887px) {
    #article .article_list {
        justify-content:space-between;

    }
}

#article [class*="box_"] {
  padding: 2px;
  margin: 0 0 30px 0;
  max-width: 435px;
  width: 100%;
  border-radius: 10px;
  border: 2px solid #bbbbbb;
  box-sizing: border-box;
  background: #fff;
}

#article .boxinner{
  padding: 25px;
  border-radius: 10px;
  border: 1px solid #bbbbbb;
  box-sizing: border-box;
  height: 100%;
  position: relative;
}
#article .boxinner::before{
  position: absolute;
  content: "";
  top:-15px ;
  left: 0;
  right: 0;
  margin: auto;
  background: url(../../../img/contents/lp/blgame_list/item_icon.png) top center no-repeat;
  width: 84px;
  height: 22px;
}

#article .penguins{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding:100px 30px 200px;
}


#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;
  }
  #article .article_list {
    margin: auto;
    box-sizing: border-box;
    padding: 0;

  }

  #article .penguins{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:0 30px 0;
  }

}

@media screen and (min-width: 1023px) {


  #article .pic_sd img:first-child {
    display: block;
  }
}

/* ----- 作品タイトル ----- */
#article [class*="box_"] .game_title {
  margin-top: 10px;
  width: 100%;
}

#article [class*="box_"] .game_title img {
  max-width: 100%;
  height: auto;
}

#article [class*="box_"] .game_title h2 {
  display: flex;
  align-items: center;
  width: 100%;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25em;
  box-sizing: border-box;
  padding: 20px 0 10px;
  color: #457deb;
}

#article [class*="box_"] .game_title h3 {
  font-size: 14px;
  padding: 0 0 20px;
}

/* ----- ゲームプレイボタン ----- */
#article [class*="box_"] .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

#article [class*="box_"] .btn_inner{
  text-align: center;
  width: 100%;
  height: 40px;
  line-height: 40px;
  font-size: 20px;
  font-weight: 900;
  color: #323446;
  border-radius: 5px;
  border: #323446 solid 2px;
  position: relative;
  z-index: 5;
  transition: 0.3s;
}

#article [class*="box_"] .btn::before {
  position: absolute;
  content: "";
  top: 4px ;
  left: 4px;
  margin: auto;
  background: #caf4fa;
  width: 100%;
  height: 44px;
  z-index: 2;
  transition: 0.3s;
  border-radius: 5px;
}


@media screen and (min-width: 767px) {
  #article [class*="box_"] .btn:hover .btn_inner{
    border: #71179f solid 2px;
  }

  #article [class*="box_"] .btn:hover::before {
  top: 0;
  left: 0;
  background: #ffcb79;
  }
}



/* テキスト */
#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) {


}
