@charset "UTF-8";
@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); }
  90% {
    opacity: 1; }
  100% {
    opacity: 1; } }

@keyframes togetoge {
  0% {
    opacity: 0; }
  15% {
    opacity: 1; }
  30% {
    opacity: 0; }
  45% {
    opacity: 1; }
  60% {
    opacity: 0; }
  75% {
    opacity: 1; }
  90% {
    opacity: 0; }
  100% {
    opacity: 1; } }

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

@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes bound {
  0% {
    transform: translateY(0); }
  25% {
    transform: translateY(-25px); }
  50% {
    transform: translateY(0px); }
  75% {
    transform: translateY(-25px); }
  100% {
    transform: translateY(0px); } }

@keyframes push {
  5% {
    transform: translateY(8px); }
  15% {
    transform: translateY(0); }
  25% {
    transform: translateY(8px); }
  35% {
    transform: translateY(0); }
  100% {
    transform: translateY(0); } }

@keyframes tremble {
  0% {
    transform: translate(0px, 0px) rotateZ(0deg); }
  25% {
    transform: translate(2px, 2px) rotateZ(1deg); }
  50% {
    transform: translate(0px, 2px) rotateZ(0deg); }
  75% {
    transform: translate(2px, 0px) rotateZ(-1deg); }
  100% {
    transform: translate(0px, 0px) rotateZ(0deg); } }

.twitter-share-button {
  margin-left: auto; }

html, body {
  font-size: 16px; }

.text-red {
  color: #d06565;
  font-weight: bold; }

.pc {
  display: none; }

.hero {
  position: relative;
  background-image: url(../img/lp/hero_bg.png);
  z-index: 1;
  background-position: center;
  overflow: hidden;
  margin-bottom: 30px; }
  .hero::before, .hero::after {
    position: absolute;
    opacity: 0;
    left: 0;
    top: 0;
    z-index: 2;
    content: '';
    width: 100%;
    height: 100%;
    background-image: url(../img/lp/hero_lighting.png);
    background-position: center;
    animation: fade 8s infinite; }
  .hero::after {
    transform: rotate(180deg);
    animation-delay: 4s; }

.hero_inner {
  position: relative;
  z-index: 3;
  width: 150%;
  left: 50%;
  margin-left: -75%; }

.hero_image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  animation: zoomIn .8s forwards; }
  .hero_image-based {
    position: static; }

.hero_image:nth-child(1) {
  animation-delay: 0.4s; }

.hero_image:nth-child(2) {
  animation-delay: 0.8s; }

.hero_image:nth-child(3) {
  animation-delay: 1.2s; }

.speaker {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 10px;
  max-width: 600px;
  margin: 0 auto;
  letter-spacing: .1em; }

.speaker + .speaker {
  margin-top: 1em; }

.is-tremble {
  animation: tremble .1s infinite; }

.speaker_chara {
  width: 30%;
  margin-right: 20px; }

.speaker_name {
  color: #666;
  font-weight: bold;
  margin-bottom: 8px; }

.speaker_text {
  flex-grow: 1; }

.speaker_words {
  padding: 10px 1em;
  background-color: #fff;
  box-shadow: 0 0 20px rgba(204, 204, 204, 0.8);
  border-radius: 10px;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem; }
  .speaker_words::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    bottom: 10px;
    border-style: solid;
    border-color: transparent transparent #fff transparent;
    border-width: 0 0 10px 15px;
    left: -15px; }

.speaker_words-bold {
  font-weight: bold; }

.speaker_words-large {
  font-size: 1.2rem; }

.speaker-reserve {
  flex-direction: row-reverse; }
  .speaker-reserve .speaker_name {
    text-align: right; }
  .speaker-reserve .speaker_chara {
    margin-right: 0;
    margin-left: 20px; }
  .speaker-reserve .speaker_words::before {
    content: none; }
  .speaker-reserve .speaker_words::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    bottom: 10px;
    border-style: solid;
    border-color: transparent transparent transparent #fff;
    border-width: 10px 0 0 15px;
    right: -15px; }

.story_ending {
  max-width: 600px;
  margin: 0 auto;
  padding-bottom: 30px;
  background-size: 100%;
  background-image: url(../img/lp/story/pic_story_bg.png);
  background-size: 80%;
  background-position: center 90px;
  background-repeat: no-repeat; }

.story_stop {
  width: 100%;
  text-align: center;
  font-size: 1.5rem;
  letter-spacing: .1em;
  position: relative;
  padding: 60px 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap; }
  .story_stop span {
    position: relative;
    z-index: 1;
    font-weight: bold; }
  .story_stop::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-position: center;
    background-image: url(../img/lp/story/linework.png);
    background-size: contain;
    background-repeat: no-repeat; }
  .story_stop.is-emphasis::before {
    animation: togetoge .8s forwards; }

.story_campaign {
  padding: 0 20px;
  letter-spacing: .1em;
  text-align: center; }
  .story_campaign p + p {
    margin-top: 10px; }
  .story_campaign .small {
    font-size: .9rem; }

.step {
  background-color: #f1e6db;
  background-image: repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05) 15px, transparent 0, transparent 30px);
  padding-bottom: 60px; }

.step_start {
  font-size: 1.25rem;
  padding: 30px 0;
  text-align: center; }

.step_chara {
  position: absolute;
  width: 19%;
  max-width: 120px;
  top: 0;
  bottom: 20%;
  margin: auto;
  left: 1%; }
  .step_chara-reserve {
    left: auto;
    right: 1%; }
  .step_chara.is-bound {
    animation: bound .7s forwards; }

.step_ttl {
  padding: 16px 0;
  text-align: center;
  font-size: 1.025rem;
  font-weight: bold;
  color: #fff;
  position: relative;
  background-color: #c96;
  background-image: radial-gradient(rgba(255, 255, 255, 0.1) 20%, transparent 20%), radial-gradient(rgba(255, 255, 255, 0.1) 20%, transparent 20%);
  background-size: 40px 40px;
  background-position: 0 0, 20px 20px;
  text-shadow: 3px 3px 3px #a06947;
  margin-bottom: 30px; }

@media screen and (max-width: 375px) {
  .step_ttl {
    padding-left: 30px; }
    .step_ttl-reserve {
      padding-left: 0;
      padding-right: 30px; } }

.step_desc_detail:last-child {
  margin-bottom: 40px; }

.arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 0 auto;
  padding: 8px 0; }
  .arrow span {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #333;
    margin-bottom: 8px;
    opacity: 0; }
  .arrow::before {
    display: block;
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #333;
    margin-bottom: 6px;
    opacity: 0; }
  .arrow::after {
    display: block;
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 10px 0 10px;
    border-color: #333 transparent transparent transparent;
    opacity: 0; }
  .arrow.is-fadein span {
    animation: fadeIn .1s linear .8s forwards; }
  .arrow.is-fadein::before {
    animation: fadeIn .1s linear 0s forwards; }
  .arrow.is-fadein::after {
    animation: fadeIn .1s linear 1.6s forwards; }

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

.step_desc_bubble {
  font-size: .9rem;
  margin: 0 auto;
  width: 94%;
  max-width: 360px;
  padding: 10px 1em;
  background-color: #fff;
  box-shadow: 0 0 20px rgba(204, 204, 204, 0.8);
  border-radius: 10px;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.6; }
  .step_desc_bubble::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    bottom: 10px;
    border-style: solid;
    border-width: 0 7.5px 10px 7.5px;
    top: -10px;
    left: 0;
    right: 0;
    margin: auto;
    bottom: auto;
    border-color: transparent transparent #fff transparent; }

.gocart {
  display: block;
  margin: 30px auto 0;
  padding: 2em 0;
  color: #630;
  background-color: #fc0;
  max-width: 680px;
  width: 90%;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 8px 0 0 #960;
  font-size: 1.4rem;
  position: relative;
  z-index: 0;
  pointer-events: none; }
  .gocart:link, .gocart:visited, .gocart:active {
    color: #630; }
  .gocart.is-push {
    animation: push 1.5s infinite; }
  .gocart::after {
    content: 'キャンペーンは終了しました';
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    letter-spacing: .1em;
    font-weight: bold;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    box-shadow: 0 8px 0 0 rgba(0, 0, 0, 0.8);
    z-index: 2; }

.summary {
  width: 94%;
  max-width: 600px;
  margin: 0 auto 30px; }

.summary_ttl {
  text-align: center;
  font-size: 1.25rem;
  padding: 30px 0;
  font-weight: bold; }

.summary_list {
  text-align: center; }

.summary_item {
  margin-bottom: 1.5em; }

.summary_label {
  padding: 10px 0;
  background-color: #f4ebe2;
  margin-bottom: 0.5em; }

.summary_note {
  color: #666;
  font-size: .85rem;
  line-height: 1.6; }

@media screen and (min-width: 769px) {
  html, body {
    font-size: 20px; }
  .pc {
    display: block; }
  .sp {
    display: none; }
  .hero_inner {
    width: 100%;
    left: auto;
    margin: 0; }
  .speaker {
    width: 94%;
    max-width: 960px; }
  .speaker_chara {
    max-width: 240px; }
  .story_ending {
    width: 100%;
    max-width: none;
    background-size: 35% auto;
    background-position: left bottom -200px; }
  .story_stop {
    width: 94%;
    max-width: 960px;
    margin: 0 auto;
    padding: 130px 0;
    font-size: 2.3rem; }
  .step_start {
    padding: 60px 0; }
  .step_inner {
    max-width: 94%;
    width: 980px;
    margin: 0 auto; }
  .step_ttl {
    width: calc(100% - 20px);
    position: relative;
    z-index: 2; }
    .step_ttl::after {
      content: '';
      position: absolute;
      top: 0;
      display: inline-block;
      width: 40px;
      height: 100%;
      background-color: #c96;
      z-index: 1;
      transform: skewX(-15deg);
      right: -20px; }
    .step_ttl-reserve {
      margin-right: 0;
      margin-left: auto; }
      .step_ttl-reserve::after {
        content: none; }
      .step_ttl-reserve::before {
        content: '';
        position: absolute;
        top: 0;
        display: inline-block;
        width: 40px;
        height: 100%;
        background-color: #c96;
        z-index: 1;
        transform: skewX(15deg);
        left: -20px; }
  .step_chara {
    left: -20px; }
    .step_chara-reserve {
      left: auto;
      right: -20px; }
  .step_desc_flow {
    display: flex;
    justify-content: center; }
    .step_desc_flow .step_desc_detail {
      width: 41%; }
  .step_desc_detail {
    display: flex;
    flex-direction: column;
    margin-bottom: 70px; }
    .step_desc_detail:last-child {
      margin-bottom: 70px; }
  .step_desc_img {
    width: 100%;
    margin: 0 auto; }
  .step_desc_bubble {
    font-size: 0.7rem;
    flex-grow: 1;
    max-width: 420px; }
  .arrow {
    display: flex;
    align-items: center;
    flex-direction: row;
    margin: 12px; }
    .arrow span {
      margin: 0 8px 0 0; }
    .arrow::before {
      margin: 0 6px 0 0; }
    .arrow::after {
      border-width: 10px 0 10px 10px;
      border-color: transparent transparent transparent #333; }
  .summary {
    max-width: 960px; } }
