/* ヘッダー
-------------------------------------------------- */
.lp_header {
  height: 50px;
  display: flex;
  justify-content: space-between;
  background: #000033;
}

.logo img {
  width: 74px;
}

.lp_footer {
  position: relative;
  z-index: 10;
}

.lp_footer.type_yellow {
  background: #000033;
}

.link_weibo {
  width: 74px;
  top: 10px;
  position: relative;
}

.link_weibo img {
  display: block;
}

/* 各項目共通
-------------------------------------------------- */
#gw {
  overflow: hidden;
  width: 100%;
  color: #333;
}

@media screen and (max-width: 768px) {
  #gw::before {
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    content: "";
    width: 100vw;
    height: 100vh;
    background: url("../img/bg_mv_sp.png") no-repeat center top / cover;
    z-index: 0;
  }
}

a:hover {
  opacity: 0.8;
}

a {
  display: block;
}

img {
  width: auto;
  max-width: 100%;
  vertical-align: bottom;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .sp {
    display: none;
  }
}

strong {
  font-weight: 400;
}

/* fadein
-------------------------------------------------- */
.fadein {
  animation: fadein 1s ease 0 1 both;
}

@keyframes fadein {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadein_up {
  opacity: 0;
  transform: translate(0, 30px);
  transition: 1s;
}

.fadein_up.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

/* ボタン
-------------------------------------------------- */

.more_box {
  text-align: center;
}

.btn {
  position: relative;
  display: inline-block;
  margin: 0 auto;
  width: 250px;
  text-align: center;
  text-decoration: none;
  border-radius: 39px;
  background: #ffcc33;
  filter: drop-shadow(0 5px 0 #cc0000);
}

.btn::after {
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  margin: auto;
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent #cc0000;
}

.btn .txt {
  line-height: 50px;
  font-weight: 700;
  font-size: 18px;
  color: #cc0000;
}

@media screen and (min-width: 769px) {
  .btn {
    width: 410px;
  }

  .btn::after {
    right: 30px;
    border-width: 6px 0 6px 11px;
  }

  .btn .txt {
    line-height: 78px;
    font-size: 32px;
  }
}

.content_pre_wrap .more_box {
  margin-top: 15px;
}

@media screen and (min-width: 769px) {
  .content_pre_wrap .more_box {
    margin-top: 24px;
  }
}

.lang_btn {
  width: 220px;
  height: 30px;
  position: relative;
  margin: 0 auto;
  display: block;
  border-radius: 40px;
  overflow: hidden;
  cursor: pointer;
}

@media screen and (min-width: 769px) {
  .lang_btn {
    margin: 0 35px 0 auto;
  }
}

.lang_btn img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  display: block;
  -webkit-transition: .4s ease-in-out;
  transition: .4s ease-in-out;
}

.lang_btn img:nth-of-type(2) {
  left: -100%;
}

.lang_btn a:hover img:nth-of-type(2) {
  left: 50%;
}

/* heroarea
-------------------------------------------------- */

.hero {
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 640px) {
  .hero {
    padding: 3vw 0;
  }
}

@media screen and (min-width: 769px) {
  .hero {
    padding: 0;
  }
}

.container {
  position: relative;
  padding-top: 5%;
  background-image: url("../img/bg_mv_sp.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  background-attachment: fixed;
  z-index: 1;
}

@media screen and (min-width: 769px) {
  .container {
    padding-top: 35px;
    background-image: url("../img/bg_mv_pc.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    background-attachment: fixed;
  }
}

.main_logo_warp {
  width: 100%;
  display: flex;
  margin: 0 auto;
  margin-top: 3%;
  justify-content: center;
}

@media screen and (min-width: 640px) {
  .main_logo_warp {
    width: 90%;
  }
}

@media screen and (min-width: 769px) {
  .main_logo_warp {
    position: relative;
    margin-top: 0;
  }
}

.main_logo {
  width: 100%;
  margin: 0 5%;
}

@media screen and (min-width: 769px) {
  .main_logo {
    width: 1100px;
    margin: 0 1%;
  }
}

.limited_warp {
  width: 90%;
  max-width: 572px;
  margin: 0 auto;
  margin-top: 15vw;
}

@media screen and (min-width: 769px) {
  .limited_warp {
    margin: 40px auto 0;
  }
}

/* floating text
-------------------------------------------------- */
.fixed-attention {
  width: fit-content;
  margin: 0 auto;
  text-align: center;
  font-family: source-han-sans-cjk-tc, sans-serif;
  font-size: 3.2vw;
  color: #fff;
  line-height: 1.5em;
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translate(-50%, 50%);
  padding: 4%;
  width: 90vw;
  z-index: 99;
  border-radius: 12px;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(16px);
  transition: 0.3s all;
}

@media screen and (min-width: 769px) {
  .fixed-attention {
    font-size: 17px;
    padding: 16px;
    width: 960px;
  }
}

a.fixed-attention_link {
  color: #ffe65b;
  text-decoration: underline;
  display: inline;
}

/* closebtn */
.fixed-attention .wrap-fixed-attention-close::before {
  display: inline;
  content: "\f00d";
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  font-size: 2rem;
  line-height: 1;
  width: 5.3333vw;
  height: 5.3333vw;
  top: 0;
  left: 0;
}

.fixed-attention .wrap-fixed-attention-close {
  position: relative;
  cursor: pointer;
  margin-left: 3.2vw;
  position: absolute;
  right: 16px;
  top: 12px;
}

/* topbtn 位置調整 */
@media screen and (max-width: 768px) {
  .lp_return_top {
    right: 8px !important;
    bottom: 88px !important;
  }
}

/* content
-------------------------------------------------- */
.content {
  position: relative;
  margin-top: 2vw;
  z-index: 0;
}

@media screen and (min-width: 769px) {
  .content {
    margin-top: 20px;
  }
}

.decoration {
  width: 10%;
  max-width: 83px;
  margin: 0 auto;
}

.content_wrap {
  background-color: rgba(255, 255, 255, 0.95);
  background-image: url(../img/bg_section_1.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  box-shadow: 0 0 15px -8px #000;
  border-radius: 20px;
  margin: 0 5%;
  padding: 20px 15px 30px;
  max-width: 930px;
}

.content_wrap.md {
  background-image: url(../img/bg_section_2.png);
}

.content_wrap:last-child{
  background-image: none;
}

.tc {
  text-align: center;
}

.tl {
  text-align: left;
}

@media screen and (min-width: 769px) {
  .content_wrap {
    padding: 40px 40px 70px;
    margin: 0 auto;
    border-radius: 40px;
  }
}

/* content 共通タイトル */
.content_wrap .ttl_box {
  position: relative;
  display: inline-block;
  margin: 0 auto 20px;
  line-height: 1.2;
  font-size: 24px;
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-weight: 700;
  font-style: normal;
  text-align: center;
  color: #cc0000;
}

@media screen and (min-width: 769px) {
  .content_wrap .ttl_box {
    margin: 0 auto 40px;
    font-size: 54px;
  }
}

.content_wrap .ttl_box .small {
  font-size: 20px;
  font-weight: 900;
  color: #0050ab;
}

@media screen and (min-width: 769px) {
  .content_wrap .ttl_box .small {
    font-size: 36px;
  }
}

@media screen and (min-width: 769px) {
  .content_wrap .ttl_box::before,
  .content_wrap .ttl_box::after {
    width: 58px;
    height: 35px;
  }
}

.content_wrap .ttl_box.normal::before,
.content_wrap .ttl_box.normal::after {
  display: none;
}

.content_wrap + .content_wrap {
  margin-top: 40px;
}

@media screen and (min-width: 769px) {
  .content_wrap + .content_wrap {
    margin-top: 80px;
  }
}

.content_box_wrap {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .content_box_wrap {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
}

.content_box:nth-of-type(2) {
  margin: 40px 0;
}

@media screen and (max-width: 768px) {
  .content_box:nth-of-type(2) {
    margin: 20px 0;
  }
}
.content_box .img_box {
  text-align: center;
}

.content_box_wrap .content_box .img_box img {
  width: 400px;
}

.content_box_wrap .content_box {
  margin: 0;
}

.content_box .video_box {
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
}

.content_box .txt_box {
  margin-top: 10px;
}

@media screen and (min-width: 769px) {
  .content_box .txt_box {
    margin-top: 15px;
  }
}

.content_box .works_ttl {
  font-weight: 700;
  font-size: 16px;
  color: #333;
  text-align: center;
}

.content_box .more_box {
  margin-top: 20px;
}

@media screen and (min-width: 769px) {
  .content_box .more_box .btn {
    width: 280px;
  }
}

.content_box .more_box .btn::after {
  border-width: 5px 0 5px 8px;
}

.content_box .more_box .btn .txt {
  line-height: 60px;
  font-weight: 700;
  font-size: 18px;
}

/* pre */
.content_pre_wrap {
  position: relative;
  background: #fff;
  margin-bottom: 80px;
  margin-top: -70px;
  padding-bottom: 30px;
}

@media screen and (min-width: 769px) {
  .content_pre_wrap {
    margin-bottom: 200px;
    padding-bottom: 0;
  }
}

.content_pre_wrap::before,
.content_pre_wrap::after {
  position: absolute;
  left: 0;
  display: block;
  content: "";
  width: 100%;
  height: 10vw;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  z-index: -1;
}

.content_pre_wrap::before {
  top: -9.5vw;
  background-image: url("../img/frame_t.png");
}

.content_pre_wrap::after {
  bottom: -9.5vw;
  background-image: url("../img/frame_b.png");
}

@media screen and (min-width: 769px) {
  .content_pre_wrap::before,
  .content_pre_wrap::after {
    height: 187px;
  }

  .content_pre_wrap::before {
    top: -187px;
  }

  .content_pre_wrap::after {
    bottom: -97px;
  }
}

@media screen and (min-width: 769px) {
  .content_pre_area {
    position: relative;
    margin: 0 auto;
    max-width: 980px;
  }

  .content_pre_area::before,
  .content_pre_area::after {
    position: absolute;
    top: -30px;
    margin: auto;
    display: block;
    content: "";
    width: 422px;
    height: 462px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }

  .content_pre_area::before {
    right: 860px;
    background-image: url("../img/chara_point_l.png");
  }

  .content_pre_area::after {
    left: 860px;
    background-image: url("../img/chara_point_r.png");
  }
}

.pre_catch_txt_A {
  font-weight: 900;
  text-align: center;
  letter-spacing: 0.04em;
  color: #0050ab;
  font-size: 30px;
  padding: 8% 15px 6%;
}

@media screen and (min-width: 769px) {
  .pre_catch_txt_A {
    font-size: 50px;
    padding: 0 15px 24px;
  }
}

.pre_catch_txt_B {
  font-family: source-han-sans-cjk-tc, serif;
  font-weight: 900;
  font-style: normal;
  text-align: center;
  color: #d60000;
  font-size: 6vw;
  padding-bottom: 5%;
}

@media screen and (min-width: 769px) {
  .pre_catch_txt_B {
    font-size: 48px;
    padding-bottom: 2%;
  }
}

.pre_catch_txt_B span {
  font-family: source-han-sans-cjk-tc, serif;
  font-weight: 900;
  font-style: normal;
  font-size: 8vw;
}

@media screen and (min-width: 769px) {
  .pre_catch_txt_B span {
    font-size: 62px;
  }
}

.pre_exe_wrap {
  padding-top: 2%;
  padding-bottom: 2%;
  margin: 0 auto;
  width: 90%;
  border-top: solid 2px #008ccd;
  border-bottom: solid 2px #008ccd;
}

@media screen and (min-width: 769px) {
  .pre_exe_wrap {
    padding-top: 1%;
    padding-bottom: 1%;
    width: 654px;
  }
}

.pre_exe_txt {
  font-weight: 900;
  font-style: normal;
  text-align: center;
  color: #008ccd;
  font-size: 14px;
}

@media screen and (min-width: 769px) {
  .pre_exe_txt {
    font-size: 24px;
    line-height: 173%;
  }
}

.pre_exe_txt .small {
  font-weight: 900;
  font-size: 12px;
}

@media screen and (min-width: 769px) {
  .pre_exe_txt .small {
    font-size: 16px;
  }
}

.pre_main_wrap {
  display: flex;
  padding: 5%;
}

@media screen and (min-width: 769px) {
  .pre_main_wrap {
    justify-content: center;
    padding: 0%;
  }
}

.pre_main_img {
  width: 50%;
}

@media screen and (min-width: 769px) {
  .pre_main_img {
    max-width: 235px;
  }
}

.pre_main_area {
  margin-left: 5%;
}

.pre_main_box {
  display: flex;
  padding-top: 5%;
}

.pre_icon {
  width: 18%;
}

.pre_sub_txt {
  font-weight: 400;
  color: #333;
  font-size: 13px;
  line-height: 5vw;
  text-align: center;
}

@media screen and (min-width: 769px) {
  .pre_sub_txt {
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 2;
    text-align: center;
    margin-top: 30px;
  }
}

.pre_catch_img {
  width: 90%;
  margin: 0 auto;
}

@media screen and (min-width: 769px) {
  .pre_catch_img {
    margin-top: 25px;
    max-width: 662px;
  }
}

video {
  width: 100%;
  height: auto;
  margin: 0 auto;
}

/* FAQ */
.title_faq {
  width: 50%;
  margin: 0 auto;
}

.faq_block {
  margin: 0 auto;
}

@media screen and (min-width: 769px) {
  .faq_block {
    width: 80%;
  }
}

.title_faq {
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  font-weight: 900;
  color: #cc0000;
}

@media screen and (min-width: 769px) {
  .title_faq {
    font-size: 36px;
  }
}

.text_faq {
  padding-left: 1.6em;
  text-indent: -1.6em;
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.7em;
}

@media screen and (min-width: 769px) {
  .text_faq {
    font-size: 16px;
  }
}

.text_faq.que::before {
  content: "Q：";
}

.text_faq.ans::before {
  content: "A：";
}

.text_faq.ans {
  margin-bottom: 5%;
}

@media screen and (min-width: 769px) {
  .text_faq.ans {
    margin-bottom: 3%;
  }
}

a.text_red {
  color: #cc0000;
  text-decoration: underline;
  display: inline;
}

/* DLsite logo etc */
.dlsite_logo {
  display: block;
  width: 20%;
  max-width: 88px;
  margin: 0 auto;
}

.logo_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
}

.logo_wrap img {
  width: 100%;
}

.logo_sns {
  display: block;
  width: 44px;
}

.credit {
  margin-top: 60px;
  padding: 0 0 30px;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 300% 100%;
}

@media screen and (min-width: 769px) {
  .credit {
    margin-top: 80px;
    background-size: 100% 100%;
  }
}

.credit_text {
  font-size: 14px;
  color: #333;
  margin-top: 20px;
  text-align: center;
}

@media screen and (min-width: 769px) {
  .credit_text {
    margin-top: 40px;
  }
}

.credit .dlsite_logo {
  max-width: 140px;
}
