﻿@charset "UTF-8";
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes flash {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes slideInLeft {
  0% {
    transform: translate3d(-100%, -50%, 0);
    opacity: 1;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  0% {
    transform: translate3d(100%, 50%, 0);
    opacity: 1;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes boundL {
  0% {
    transform: translateX(-100%);
    visibility: visible;
  }
  50% {
    transform: scale(0.75);
  }
  80% {
    transform: translateX(10%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes boundR {
  0% {
    transform: translateX(100%);
    visibility: visible;
  }
  50% {
    transform: scale(0.75);
  }
  80% {
    transform: translateX(-10%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes shake {
  0% {
    transform: rotate(0deg);
  }
  30% {
    transform: rotate(-2deg);
  }
  60% {
    transform: rotate(2deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

@keyframes clip {
  0% {
    transform: translate(0);
  }
  10% {
    transform: translate(10px, -20px);
  }
  20% {
    transform: translate(0);
  }
  30% {
    transform: translate(10px, -20px);
  }
  40% {
    transform: translate(0);
  }
  100% {
    transform: translate(0);
  }
}

@keyframes fadeBottomIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}

html,
body {
  font-size: 14px;
  letter-spacing: 0.02em;
  line-height: 1.8;
}

a {
  cursor: pointer;
}

.hero {
  position: relative;
  height: calc(66 / 75 * 100vw);
  max-height: 450px;
  background-image: url(https://www.dlsite.com/modpub/images/lp/vip_2004/pic_hero_bg.jpg);
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.hero_inner {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  max-width: 500px;
  max-height: calc(100vw * 0.9);
}

.hero_pic {
  position: absolute;
}

.hero_chara {
  right: -8%;
  bottom: -3%;
  max-width: 64%;
}

.hero_ttl {
  left: -48%;
  top: -10%;
  max-width: 108%;
}

.hero_emblem {
  max-width: 42%;
  bottom: 26%;
  left: 6%;
}

.hero_slash {
  max-width: 170%;
  right: -75%;
  bottom: -22%;
}

.hero_logo {
  width: 100%;
}

.hero_flash-01 {
  width: 64%;
  top: -8%;
  left: -8%;
}

.hero_flash-02 {
  width: 75%;
  bottom: -33%;
  right: -10%;
}

.hero_text {
  position: absolute;
  bottom: 8%;
  left: 5%;
  text-align: center;
  color: #fff;
  font-weight: bold;
  text-shadow: 2px 2px 7px rgba(0, 0, 0, 0.5);
}

.hero.is-animate {
  opacity: 0;
  animation: fadeIn .1s forwards;
}

.hero.is-animate .hero_chara {
  opacity: 0;
  animation: fadeIn .8s ease-in-out .5s forwards;
}

.hero.is-animate .hero_ttl {
  opacity: 0;
  transform: translate3d(-100%, -50%, 0);
  animation: slideInLeft .5s ease-in-out forwards;
}

.hero.is-animate .hero_slash {
  opacity: 0;
  transform: translate3d(100%, 50%, 0);
  animation: slideInRight .3s ease-in-out 1.3s forwards;
}

.hero.is-animate .hero_logo {
  opacity: 0;
  animation: fadeIn .8s ease-in-out 1.8s forwards;
}

.hero.is-animate .hero_flash-01 {
  opacity: 0;
  animation: flash 3s linear 2.4s forwards infinite;
}

.hero.is-animate .hero_flash-02 {
  opacity: 0;
  animation: flash 3s linear 3.9s forwards infinite;
}

.hero.is-animate .hero_text {
  opacity: 0;
  animation: fadeIn .8s ease-in-out 3s forwards;
}

section {
  position: relative;
}

.en {
  position: absolute;
  top: 0;
  transform: translateY(-30%);
  min-width: 220px;
}

.en img {
  display: block;
  width: 100%;
  opacity: 0;
}

.en img.is-slideL {
  opacity: 1;
  animation: boundL .3s ease-in forwards;
}

.en img.is-slideR {
  opacity: 1;
  animation: boundR .3s ease-in forwards;
}

.ttl {
  font-size: 1.7rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
}

.yellow {
  color: #fc0;
}

.underline {
  display: inline-block;
  background-image: -webkit-linear-gradient(left, transparent 50%, #fc0 50%);
  background-image: -moz-linear-gradient(left, transparent 50%, #fc0 50%);
  background-image: -ms-linear-gradient(left, transparent 50%, #fc0 50%);
  background-image: -o-linear-gradient(left, transparent 50%, #fc0 50%);
  background-image: linear-gradient(left, transparent 50%, #fc0 50%);
  background-repeat: repeat-x;
  background-size: 200% .3em;
  background-position: 0 1.2em;
  transition: background-position 1.5s ease;
}

.underline.is-read {
  background-position: -100% 1.2em;
}

.about {
  padding: 16% 3%;
  color: #fff;
  background-image: url(https://www.dlsite.com/modpub/images/lp/vip_2004/bg_vip.jpg);
  background-position: center;
}

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

.about_en {
  width: 61%;
}

.about_text p {
  text-align: center;
  font-weight: bold;
}

.about_text p + p {
  margin-top: 1em;
}

.about_text span {
  font-weight: bold;
}

.gift {
  padding: 16% 0;
  background-image: url(https://www.dlsite.com/modpub/images/lp/vip_2004/bg_gift-sp.jpg);
  background-size: 100%;
}

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

.gift_en {
  width: 64%;
  right: 3%;
}

.gift_text {
  text-align: center;
  font-weight: bold;
}

.gift_text span {
  font-size: 0.9rem;
  font-weight: bold;
}

.gift_list {
  padding: 0 1.5%;
}

.gift_item {
  transform-origin: center top;
  position: relative;
  max-width: 340px;
  min-width: 310px;
  margin: 0 auto;
}

.gift_item.is-shake {
  animation: shake 1s cubic-bezier(0.01, 1.53, 0.93, 1.31) forwards;
}

.gift_item.is-shake:nth-of-type(2n) {
  animation-timing-function: cubic-bezier(1.31, 0.93, 1.53, 0.01);
  animation-direction: reverse;
}

.gift_item img {
  display: block;
  width: 100%;
}

.gift_itemName {
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 9%;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}

.gift_itemNote {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 5%;
  font-size: 12px;
  padding: 0 5%;
}

.badge {
  padding: 16% 3%;
  color: #fff;
  background-image: url(https://www.dlsite.com/modpub/images/lp/vip_2004/bg_vip.jpg);
  background-size: auto 100%;
  background-position: center;
  font-weight: bold;
}

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

.badge_en {
  width: 64%;
}

.badge_ttl {
  position: relative;
  font-size: 1.4rem;
  padding-bottom: 1.2em;
}

.badge_ttl > span {
  font-weight: bold;
  position: relative;
  display: inline-block;
}

.badge_ttl .note::after {
  content: "※バッジ=勲章的なもの";
  display: block;
  white-space: nowrap;
  font-weight: normal;
  position: absolute;
  left: -50%;
  font-size: 0.9rem;
  bottom: -1.2em;
}

.badge_text {
  text-align: center;
}

.badge_list {
  color: #000;
  padding: 30px 6%;
  border: 1px solid #fff;
  background-color: rgba(255, 204, 0, 0.75);
  box-shadow: 5px 5px 0px 3px rgba(255, 255, 255, 0.75);
  width: calc(100% - 8px);
}

.badge_listItem:nth-of-type(1)::before {
  content: "1.";
  margin-right: 0.5em;
}

.badge_listItem:nth-of-type(2)::before {
  content: "2.";
  margin-right: 0.5em;
}

.badge_listItem:nth-of-type(3)::before {
  content: "3.";
  margin-right: 0.5em;
}

.badge_listItem {
  font-weight: bold;
}

.badge_listItem .bg-red {
  font-weight: bold;
  background-color: #c33;
}

.badge_listItem .small {
  font-weight: bold;
  font-size: 0.9rem;
}

.badge_sample {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.badge_unit {
  width: 80%;
  max-width: 300px;
  margin: 0 auto -20px;
  position: relative;
  bottom: 40px;
}

.badge_ballon {
  position: relative;
  width: 40%;
  left: 70%;
  bottom: -20px;
  z-index: 1;
}

.badge_ballon.is-clipped {
  animation: clip 1.5s forwards infinite;
}

.badge_button {
  display: block;
  width: 100%;
  color: #000;
  border: 4px solid #fff;
  border-radius: 50px;
  box-shadow: 0 2px 0 2px #06c;
  background-color: #0cf;
  padding: 20px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  font-size: 1.2rem;
  font-weight: bold;
}

.badge_button:link, .badge_button:visited, .badge_button:hover, .badge_button:active {
  color: #000;
}

.badge_button:hover {
  background-color: #0f6;
  box-shadow: 0 2px 0 2px #090;
}

.badge_button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(https://www.dlsite.com/modpub/images/lp/vip_2004/btn_bg_vip.png);
  background-size: 60%;
  background-repeat: no-repeat;
  background-position: left -30px top -50px;
}

.badge_caution {
  font-size: 0.9rem;
}

.badge_caution {
  padding-left: 1em;
  text-indent: -1em;
}

.badge_cautionText::before {
  content: "※";
}

.badge_cautionText a {
  color: #09f;
}

.summary {
  background-size: 100%;
  font-weight: bold;
  background-color: #f0e1ca;
}

.summary_inner {
  padding: 16% 0;
  background-image: url(https://www.dlsite.com/modpub/images/lp/vip_2004/bg_gift-sp.jpg);
  background-size: 100%;
  background-position: center bottom;
  padding-bottom: 50vw;
}

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

.summary_inner::after {
  position: absolute;
  display: block;
  content: '';
  width: 100%;
  height: 50vw;
  background-image: url(https://www.dlsite.com/modpub/images/lp/vip_2004/bg_coming.png);
  background-size: 100%;
  background-position: bottom;
  background-repeat: no-repeat;
}

.summary_en {
  width: 66%;
  right: 3%;
  transform: translateY(-50%);
}

.summary_text {
  text-align: center;
  font-weight: bold;
}

.summary_detail {
  width: 75%;
  min-width: 300px;
  margin: 0 auto 6px;
  padding: 15px 6%;
  background-color: rgba(255, 255, 255, 0.75);
  border: 1px solid #000;
  box-shadow: 2px 2px 0 1px rgba(0, 0, 0, 0.75);
}

.summary_detail dt {
  float: left;
  width: 5.3em;
  text-align-last: justify;
  text-justify: inter-ideograph;
  font-weight: bold;
}

.summary_detail dd {
  font-weight: bold;
}

.summary_detail dd::before {
  content: "：";
}

.sorry {
  padding: 16% 3%;
  padding: 100px 3% 20px;
  background-color: #f0e1ca;
  text-align: center;
}

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

.sorry_en {
  transform: translateY(0);
  width: 46%;
}

.sorry_text p + p {
  margin-top: 1em;
}

.twitter {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.twitter p {
  opacity: 0;
  display: inline-block;
  background-color: #e5c298;
  position: relative;
  padding: 0 2em;
  border-radius: 3px;
  font-size: 0.9rem;
}

.twitter p::after {
  content: "";
  display: block;
  position: absolute;
  height: 10px;
  bottom: -10px;
  left: 0;
  right: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 7.5px 0 7.5px;
  border-color: #e5c298 transparent transparent transparent;
}

.twitter p.is-fadein {
  animation: fadeBottomIn .5s ease forwards;
}

.twitter img {
  width: 60px;
  margin: 10px auto;
}

.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: 0 auto;
}

.goback:link, .goback:visited, .goback:hover, .goback:active {
  color: #000;
}

.result_overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 11;
}

.result_close {
  position: absolute;
  right: 0;
  top: -30px;
  width: 30px;
  cursor: pointer;
}

.result_close::before, .result_close::after {
  position: relative;
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background-color: #fff;
}

.result_close::before {
  top: 4px;
  transform: rotate(45deg);
}

.result_close::after {
  transform: rotate(135deg);
}

.result {
  position: fixed;
  z-index: 12;
  width: 96%;
  left: 0;
  right: 0;
  margin: auto;
  padding: 18% 3% 20px;
  background-color: #c7c7c7;
  border: 4px solid #fff;
  box-shadow: 3px 3px 0 6px #000;
  animation: bounceIn .8s;
  opacity: 0.95;
}

.result_en {
  width: 75%;
}

.result_img {
  display: block;
  width: 100%;
}

.result_text {
  text-align: center;
  font-size: 0.7rem;
  font-weight: bold;
  margin: 20px 0;
}

.result_text a {
  color: #06c;
}

.result_share {
  padding: 12px 3%;
  font-weight: bold;
  border: 1px solid #000;
  background-color: #f0f0f0;
  font-size: 0.9rem;
  text-align: center;
  box-shadow: 3px 3px 0 1px #323232;
}

.result_share p {
  line-height: 1.3;
  word-break: keep-all;
}

.result_share a {
  display: block;
  border-radius: 1.5rem;
  margin-top: 4px;
  font-weight: bold;
  padding: 0.7em 0;
}

.result_share a:hover {
  opacity: 0.8;
}

.result_share .twitter {
  background-color: #0cf;
  border: 1px solid #09c;
  color: #000;
}

.result_share .coupon {
  background-color: #fc0;
  border: 1px solid #c60;
  color: #000;
}

.result_share .caution {
  color: #c00;
  display: block;
  font-size: 0.8rem;
}

@media screen and (min-width: 600px) {
  .gift_list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 760px;
    margin: 0 auto;
  }
  .gift_item {
    min-width: auto;
  }
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

@media screen and (min-width: 769px) {
  html,
  body {
    font-size: 25px;
  }
  .sp {
    display: none;
  }
  .hero {
    width: 100%;
    height: 900px;
    max-height: calc(100vw * 0.65);
  }
  .hero_inner {
    width: 100%;
    max-width: 100%;
    max-height: 100%;
  }
  .hero_pic {
    max-width: none;
  }
  .hero_chara {
    right: 0;
    bottom: -4%;
    width: 49%;
  }
  .hero_ttl {
    top: -10%;
    left: -18%;
    width: 75%;
  }
  .hero_emblem {
    width: 33%;
    left: 16%;
    bottom: 24%;
  }
  .hero_slash {
    width: 113%;
    bottom: -10%;
    right: -18%;
  }
  .hero_text {
    left: 16%;
    font-size: 2.5vw;
  }
  .ttl {
    font-size: 2rem;
  }
  .about_en {
    width: 47%;
    left: 3%;
  }
  .gift_en {
    width: 50%;
  }
  .gift_item.is-shake:nth-of-type(2) {
    animation-delay: calc(0.1s * 2);
  }
  .gift_item.is-shake:nth-of-type(3) {
    animation-delay: calc(0.1s * 3);
  }
  .gift_item.is-shake:nth-of-type(4) {
    animation-delay: calc(0.1s * 4);
  }
  .gift_item.is-shake:nth-of-type(5) {
    animation-delay: calc(0.1s * 5);
  }
  .gift_item.is-shake:nth-of-type(6) {
    animation-delay: calc(0.1s * 6);
  }
  .badge {
    font-size: 1.1rem;
  }
  .badge_en {
    width: 50%;
    left: 3%;
  }
  .badge_ttl .note::after {
    left: -25%;
    font-size: 0.7rem;
  }
  .badge_text {
    font-weight: bold;
  }
  .badge_list {
    padding: 30px 50px;
    width: 740px;
    margin-left: auto;
    margin-right: auto;
  }
  .badge_unit {
    width: 600px;
    max-width: none;
    bottom: 100px;
    margin-bottom: -70px;
  }
  .badge_ballon {
    width: 50%;
    left: 93%;
    bottom: -80px;
  }
  .badge_button {
    padding: 40px 0;
    border-radius: 100px;
    box-shadow: 0px 12px 1px -1px #06c;
  }
  .badge_button:hover {
    box-shadow: 0px 12px 1px -1px #090;
  }
  .badge_sample {
    width: 640px;
    max-width: none;
  }
  .badge_button {
    font-size: 1.5rem;
  }
  .badge_button::after {
    cursor: pointer;
    background-size: 50%;
    background-position: left -80px top -80px;
  }
  .badge_caution {
    max-width: 94%;
    margin: 0 auto;
    width: 850px;
    font-size: 0.7rem;
  }
  .summary_en {
    width: 53%;
  }
  .summary_inner {
    padding-bottom: 50vw;
    background-image: url(https://www.dlsite.com/modpub/images/lp/vip_2004/bg_item.jpg);
    background-size: 100%;
  }
  .summary_detail {
    width: 700px;
    font-size: 1rem;
  }
  .sorry_en {
    width: 35%;
    left: 3%;
    transform: translateY(-50%);
  }
  .twitter p {
    padding: 0.2em 0.8em;
    font-size: 0.8rem;
  }
  .goback {
    border-radius: 30px;
  }
  .result {
    max-width: 1000px;
    padding-top: 100px;
  }
  .result_en {
    width: 53%;
    transform: translateY(-50%);
    left: -3%;
  }
  .result_content {
    max-height: 70vh;
    overflow: auto;
  }
  .result_img {
    width: 65%;
    margin: 0 auto 10px;
  }
  .result_text {
    font-size: 0.8rem;
  }
  .result_link {
    display: flex;
    justify-content: center;
  }
  .result_share {
    width: 48%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 7px;
    font-size: 0.7rem;
  }
  .result_share:nth-of-type(2) {
    margin-left: calc(4% - 7px);
  }
  .result_share .twitter {
    margin-top: auto;
  }
  .result_share .coupon {
    margin-top: 8px;
  }
  .result_share .caution {
    font-size: 0.6rem;
  }
}

@media screen and (min-width: 1024px) {
  .gift_list {
    max-width: 1100px;
  }
  .gift_item {
    min-width: auto;
  }
}

@media screen and (min-width: 1401px) {
  .hero_inner {
    width: 1400px;
    max-width: none;
    max-height: none;
    overflow: visible;
  }
  .hero_text {
    font-size: 1.4rem;
  }
}
