@charset "utf-8";
/* CSS Document */

/* ==================================================
  LP 共通
================================================== */
/* ----- レスポンシブビュー（r_ = responsive_ の略） ----- */

html {
  font-size: 62.5%;
}

body {
  font-family: "Kosugi Maru", "ヒラギノ角ゴ ProN", Meiryo, メイリオ, sans-serif;
  font-size: 1.3rem;
  line-height: 1.6;
}

@media screen and (min-width: 769px) {
  body {
    font-size: 1.5rem;
  }
}

body.r_view {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
}

/* ----- ヘッダー ----- */
.lp_header {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
  height: 50px;
  background: #fff;
  border-bottom: solid 1px #eee;
}

.lp_logo {
  margin-left: 10px;
}

/* ----- ボディ ----- */
.lp_container {
  flex-grow: 1;
}

/* ----- フッター ----- */
.lp_footer {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  width: 100%;
  margin-top: auto;
  padding: 15px 0;
  background: #4d6594;
  color: #fff;
  text-align: center;
  font-size: 1.1rem;
}

/* =========================================================
特設ページ
========================================================= */
img {
  max-width: 100%;
  vertical-align: bottom;
}

.pc_none {
  display: none;
}

@media screen and (min-width: 769px) {
  .pc_none {
    display: block;
  }
  .sp_none {
    display: none;
  }
}

/*ヘッダー
========================================================= */
#container {
  animation: fadeIn 1s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes slideInRight {
  0% {
    transform: translate3d(100%, 0, 0);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes stamp {
  0% {
    opacity: 0;
    transform: rotate(-30deg) scale(3);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes tarari {
  0% {
    transform: scale(1, 0);
    opacity: 0;
  }
  100% {
    transform: scale(1, 1);
  }
}

@keyframes tarariReserve {
  0% {
    transform: scale(-1, 0);
    opacity: 0;
  }
  100% {
    transform: scale(-1, 1);
  }
}

.lp_header {
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}

.lp_header .logo {
  display: block;
  float: left;
  height: 22px;
  position: relative;
}

.lp_header .logo a {
  opacity: 1;
}
.lp_header .logo a:hover {
  opacity: 0.7;
}

a {
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  /* text-decoration: none; */
}

/* 全体構成
-----------------------------------------------------*/

.promo_container {
  position: relative;
}

.lp_section {
  color: #666;
  padding-bottom: 30px;
  overflow: hidden;
}

.lp_section::before {
  content: "";
  display: block;
  width: 100%;
  height: 9vw;
  background-image: url(../img/lp/pic_line_sp.png);
  background-size: 100%;
  background-repeat: no-repeat;
  transform-origin: top;
}

.lp_section.is-animate::before {
  animation: tarari 2s ease-out forwards;
}

.lp_section.type_reserve::before {
  transform: scale(-1, 1);
}

.lp_section.type_reserve.is-animate::before {
  animation: tarariReserve 2s ease-out forwards;
}

.lp_section p {
  line-height: 1.6;
}

.lp_section_body {
  box-sizing: border-box;
  margin: 0 auto;
  padding: 10px 10px 0;
  position: relative;
}

.lp_section_heading {
  font-size: 2.2rem;
  margin-bottom: 18px;
  text-align: center;
  line-height: 1.22;
}

.lp_section_title {
  margin: 23px 0 10px;
  padding-left: 10px;
  border-left: 4px solid #999;
  border-bottom: 2px solid #999;
  font-size: 1.8rem;
  line-height: 1.62;
}

.lp_section_title:first-child {
  margin-top: 0;
}

.lp_section_text {
  /* padding: 0 10px; */
}

@media screen and (min-width: 769px) {
  .lp_section {
    /* padding: 60px 0; */
    padding-bottom: 60px;
  }

  .lp_section::before {
    width: 100%;
    height: 62px;
    background-image: url(../img/lp/pic_line.png);
    background-size: 1920px 62px;
    background-repeat: repeat-x;
    background-position: center;
    transform: translateY(-100%);
  }

  .lp_section_body {
    max-width: 960px;
    margin: 0 auto;
    padding: 40px 30px 0;
  }

  .lp_section_body p {
    line-height: 2.5;
  }

  .lp_section_heading {
    font-size: 3.2rem;
    margin-bottom: 28px;
    line-height: 1.22;
  }

  .lp_section_title {
    margin: 46px 0 20px;
    padding-left: 15px;
    border-left: 8px solid #999;
    border-bottom: 2px solid #999;
    font-size: 2.4rem;
    line-height: 1.62;
  }

  .lp_section_title:first-child {
    margin-top: 0;
  }

  .lp_section_text {
    padding: 0;
  }
}


/*　メインビジュアル
-----------------------------------------------------*/
.lp_section.type_hero {
  padding: 0;
  position: relative;
  background-color: #d6008e;
}

.lp_section.type_hero::before {
  content: none;
}

.heroItem {
  position: absolute;
}

.heroBg {
  margin: 0 auto;
}

.heroComike {
  opacity: 0;
  width: 78%;
  top: 1%;
  left: 0;
  animation: slideInRight .5s ease-in-out forwards;
}

.heroLogo {
  opacity: 0;
  width: 80%;
  top: 13%;
  margin: auto;
  left: 0;
  right: 0;
  animation: stamp .3s cubic-bezier(0, 0, 0.75, 1.25) .5s forwards;
  transform-origin: center;
}

.heroTime {
  opacity: 0;
  width: 70%;
  bottom: 9%;
  margin: auto;
  left: 0;
  right: 0;
  animation: fadeIn .8s ease-in-out .8s forwards;
}

@media screen and (min-width: 769px) {

  .heroInner{
    position: relative;
    width: 1300px;
    margin-left: -650px;
    left: 50%
  }

  .heroImages {
    position: absolute;
    margin: auto;
    left: 0;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    max-width: 960px;
  }

  .heroComike {
    width: 60%;
  }

  .heroLogo {
    top: 0;
    width: 78%;
  }

  .heroTime {
    width: 55%;
  }
}

@media screen and (min-width: 980px) {

  .heroInner {
    width: 1920px;
    margin-left: -960px;
  }

}

/*  概要
-----------------------------------------------------*/

.lp_section.type_summary {
  background-image: url(../img/lp/bg_paper.png);
  background-size: center;
}


/*終了までのスケジュール
-----------------------------------------------------*/
.lp_section.type_schedule {
  position: relative;
  z-index: 3;
  background: #f1e6db;
}

.lp_scheduleList {
}

.lp_scheduleList_item {
  position: relative;
  opacity: 0;
}

.lp_scheduleList_item.is-animate {
  animation: fadeIn .5s ease forwards;
}

.lp_scheduleList_item:nth-child(2).is-animate {
  animation-delay: .3s;
}

.lp_scheduleList_item:nth-child(3).is-animate {
  animation-delay: .6s;
}

.lp_scheduleList_item:nth-child(4).is-animate {
  animation-delay: .9s;
}


.lp_scheduleList_item::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -10px;
  left: 38px;
  border: 6px solid;
}
.lp_scheduleList_item::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -20px;
  left: 34px;
  border-top: 12px solid;
  border-right: 10px solid transparent;
  border-bottom: none;
  border-left: 10px solid transparent;
}

.lp_scheduleList_item:last-of-type::before,
.lp_scheduleList_item:last-of-type::after {
  display: none;
}

.lp_scheduleList_item.type_01 { background: #f5d468; color: #f5d468; }
.lp_scheduleList_item.type_02 { background: #f39a5c; color: #f39a5c; }
.lp_scheduleList_item.type_03 { background: #c77896; color: #c77896; }
.lp_scheduleList_item.type_04 { background: #e25d78; color: #fff; }


.lp_scheduleList_item + .lp_scheduleList_item {
  margin-top: 20px;
}

.lp_schedule_item {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.lp_schedule_date {
  box-sizing: border-box;
  min-width: 94px;
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
}

.lp_schedule_date.type_red {
  color: #c66;
}

.lp_schedule_detail {
  flex: auto;
  padding: 12px 14px;
  background: #fff;
  color: #666;
}

.lp_schedule_detail .lp_schedule_title {
  margin-bottom: 5px;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.6;
}

.lp_schedule_detail .lp_schedule_text {
  line-height: 1.6;
  font-size: 1.2rem;
}

.lp_schedule_caution {
  margin-top: 10px;
  border-radius: 10px;
  padding: 11px 10px 9px;
  background: #c66;
  color: #fff;
  text-align: left;
}

.lp_schedule_caution p {
  line-height: 1.6;
}

@media screen and (min-width: 769px) {
  .lp_section.type_schedule {
    margin-top: 0;
  }

  .lp_scheduleList_item::before {
    bottom: -15px;
    left: 140px;
    border: 9px solid;
  }
  .lp_scheduleList_item::after {
    bottom: -40px;
    left: 130px;
    border-top: 26px solid;
    border-right: 19px solid transparent;
    border-bottom: none;
    border-left: 19px solid transparent;
  }

  .lp_scheduleList_item:last-of-type::before,
  .lp_scheduleList_item:last-of-type::after {
  }

  .lp_scheduleList_item + .lp_scheduleList_item {
    margin-top: 40px;
  }

  .lp_schedule_item {
  }

  .lp_schedule_date {
    min-width: 284px;
    font-size: 2.4rem;
  }

  .lp_schedule_detail {
    padding: 19px 20px;
  }

  .lp_schedule_detail .lp_schedule_title {
    margin-bottom: 0;
    font-size: 2rem;
    line-height: 1.94;
  }

  .lp_schedule_detail .lp_schedule_text {
    font-size: 1.4rem;
  }

  .lp_schedule_caution {
    margin-top: 20px;
    padding: 11px 20px 9px;
    text-align: center;
  }

  .lp_schedule_caution p {
  }
}

/* 作品を応募する
-----------------------------------------------------*/
.lp_section.type_apply {
  background-image: url(../img/lp/bg_paint.png);
  background-size: cover;
  background-position: center top;
  color: #1d0000;
}

.lp_section.type_apply h3 {
  margin-top: 20px;
  font-size: 1.6rem;
  font-weight: bold;
}

.apply_theme {
  text-align: center;
}

.apply_theme p {
  font-size: 2.5rem;
}

.apply_condition {
  margin-top: 10px;
}

.apply_condition ul {
  text-indent: 1em;
}

.migration_btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border-radius: 10px;
  color: #fff;
  font-size: 1.5rem;
  text-decoration: none;
  text-align: center;
  max-width: 500px;
  width: 100%;
  height: 75px;
  font-size: 20px;
  box-sizing: border-box;
  margin: 20px auto 0;
}

.migration_btn.type_blue {
  background: #06f;
  box-shadow: 0 5px 0 0 #039;
}

.migration_btn.type_blue:hover {
  background: #90f;
  box-shadow: 0 5px 0 0 #609;
}

.migration_btn span {
  font-size: 1.4rem;
}

.migration_btn.disabled {
  background: #585858;
  box-shadow: 0 5px 0 0 #2f2f2f;
  pointer-events: none;
}


@media screen and (min-width: 769px) {

  .lp_section.type_apply h3 {
    font-size: 1.6rem;
  }

  .apply_theme p {
    font-size: 3.2rem;
  }

  .migration_btn {
    font-size: 40px;
    height: 140px;
  }

  .migration_btn span {
    font-size: 2rem;
  }
}

/* Q&A
-----------------------------------------------------*/
.lp_section.type_faq {
  position: relative;
  z-index: 1;
  /* padding: 70px 0 100px; */
  background: #f1e6db;
}

.type_faq .lp_section_text {
  padding: 6px 0;
  line-height: 1.8;
  border-bottom: 1px dotted #aaa;
  padding-left: 1em;
  text-indent: -1em;
}

.type_faq .lp_section_text ul,
.type_faq .note {
  line-height: 1.8;
  padding-left: 1em;
  text-indent: -1em;
}

.type_faq .lp_section_text:first-of-type {
  border-top: 1px dotted #aaa;
}

.type_faq .lp_section_text::before {
  content: '●';
}

.type_faq .lp_section_text a {
  color: #09c;
}

.faq_lead {
  text-align: center;
  margin-bottom: 20px;
}

.email::before {
  content: '@';
}

/* topへ
-----------------------------------------------------*/
.promo_return_top {
  display: block;
  position: fixed;
  width: 50px;
  height: 0;
  padding-top: 50px;
  line-height: 50px;
  overflow: hidden;
  right: 20px;
  bottom: 50px;
  background: url(../img/common/icon_return_top.png) no-repeat 0 0;
  opacity: 0.5;
  z-index: 20;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.promo_return_top:hover {
  margin-top: 1px;
  opacity: 1;
}

.promo_return_top.hide {
  cursor: default;
  opacity: 0;
  bottom: 0;
}

/* 汎用
-------------------------------------------------- */
.text_red {
  color: #c66;
  font-size: 1.4rem;
}

.fs10 { font-size: 10px !important; }
.fs11 { font-size: 11px !important; }
.fs12 { font-size: 12px !important; }
.fs13 { font-size: 13px !important; }
.fs14 { font-size: 14px !important; }
.fs15 { font-size: 15px !important; }
.fs16 { font-size: 16px !important; }

.fab {
  margin-right: 4px;
  min-width: 20px;
  font-size: 18px;
  line-height: 18px;
}

.fa-twitter-square {
  color: #37a8ff;
}

.fab.fa-youtube {
  color: #f00;
}

/* リスト系
================================================== */
/* 点付きリスト（注意事項など） */
.lp_discList_item {
  list-style: disc;
  margin-left: 20px;
}

.lp_discList_item:not(:last-child) {
  /* margin-bottom: 1em; */
}

.lp_discList_item > p {
  text-shadow: 0 0 6px #000;
}

.goback {
  display: block;
  background-color: #fff;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-weight: bold;
  max-width: 400px;
  width: 52%;
  min-width: 200px;
  margin: 20px auto;
  text-decoration: none;
  text-align: center;
}

.goback:link, .goback:visited, .goback:hover, .goback:active {
  color: #000;
}

@media screen and (min-width: 769px) {
  .goback {
    max-width: 300px;
    border-radius: 30px;
    margin: 40px auto;
  }
}

/* フッター
-------------------------------------------------- */
#promo_footer {
  width: 100%;
  height: 40px;
  line-height: 40px;
  color: #ccc;
  text-align: center;
  background: #000;
}

/* ローディングアニメーションアイコン
--------------------------------------------------------- */
.loading_box {
  min-height: 200px;
}

.loading {
  position: relative;
  min-height: 200px;
  height: 100%;
}

.loading::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 1;
}

.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 31px;
  height: 31px;
  margin: -15px 0 0 -15px;
  z-index: 2;
  text-align: center;
  background: url(https://www.dlsite.com/modpub/images/web/common/loading.gif) center top no-repeat;
  background-size: 31px 31px;
}