@charset "UTF-8";
body {
  font-family: "メイリオ", "Meiryo", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #000;
  font-size: 16px;
}
body:before {
  content: "";
  width: 100%;
  height: 100vh;
  background: url(/images/bg_repeat.png);
  position: fixed;
  top: 0;
  left: 0;
  z-index: -2;
}

.wrapper {
  width: 100%;
  max-width: 512px;
  overflow: hidden;
  margin: 0 auto;
  background: url(/images/bg.png) repeat-y;
  background-size: 100%;
}

.rel {
  position: relative;
}

.header {
  background: url(/images/bg_top.png) no-repeat;
  background-size: 100%;
}
.header img {
  display: block;
}
.header__logo {
  width: 100%;
  height: auto;
  animation-name: fade;
  animation-duration: 0.5s;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
  animation-fill-mode: forwards;
}
.header__catch {
  width: 100%;
  height: auto;
  animation-delay: 0.4s;
  animation-name: fade;
  animation-duration: 0.5s;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
  animation-fill-mode: forwards;
  opacity: 0;
}
.header__chara {
  position: relative;
  height: 128.13vw;
}
@media (min-width: 512px) {
  .header__chara {
    height: 653px;
  }
}
.header__bike1 {
  width: 25.33%;
  height: auto;
  position: absolute;
  top: 24vw;
  left: 4%;
  animation-delay: 0.8s;
  animation-name: bike;
  animation-duration: 0.3s;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
  animation-fill-mode: forwards;
  opacity: 0;
}
@media (min-width: 512px) {
  .header__bike1 {
    width: 129px;
    top: 176px;
  }
}
.header__bike2 {
  width: 38.8%;
  height: auto;
  position: absolute;
  top: 15vw;
  left: 18.5%;
  animation-delay: 1.2s;
  animation-name: bike2;
  animation-duration: 0.3s;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
  animation-fill-mode: forwards;
  opacity: 0;
}
@media (min-width: 512px) {
  .header__bike2 {
    width: 197px;
    top: 104px;
  }
}
.header__bike3 {
  width: 57.86%;
  height: auto;
  position: absolute;
  top: 0;
  left: 43.5%;
  animation-delay: 1.6s;
  animation-name: bike;
  animation-duration: 0.3s;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
  animation-fill-mode: forwards;
  opacity: 0;
}
@media (min-width: 512px) {
  .header__bike3 {
    width: 295px;
    top: 17px;
  }
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes bike {
  0% {
    opacity: 0;
    transform: translateX(-25vw);
  }
  75% {
    opacity: 1;
    transform: translateX(7vw);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes bike2 {
  0% {
    opacity: 0;
    transform: translateX(25vw);
  }
  75% {
    opacity: 1;
    transform: translateX(-7vw);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@media (min-width: 512px) {
  @keyframes bike {
    0% {
      opacity: 0;
      transform: translateX(-100px);
    }
    75% {
      opacity: 1;
      transform: translateX(30px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  @keyframes bike2 {
    0% {
      opacity: 0;
      transform: translateX(100px);
    }
    75% {
      opacity: 1;
      transform: translateX(-30px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
}
@keyframes bike3 {
  0% {
    opacity: 0;
    transform: translateX(-25vw);
  }
  75% {
    opacity: 1;
    transform: translateX(2vw);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes bike4 {
  0% {
    opacity: 0;
    transform: translateX(25vw);
  }
  75% {
    opacity: 1;
    transform: translateX(-2vw);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.run {
  animation-name: bike;
  animation-duration: 0.5s;
  animation-iteration-count: 1;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

.run2 {
  animation-name: bike2;
  animation-duration: 0.5s;
  animation-iteration-count: 1;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

.run3 {
  animation-name: bike3;
  animation-duration: 0.5s;
  animation-iteration-count: 1;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

.run4 {
  animation-name: bike4;
  animation-duration: 0.5s;
  animation-iteration-count: 1;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

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

.pop {
  opacity: 0;
}

@keyframes bounce {
  0% {
    opacity: 0;
    transform: scale(1.5);
  }
  80% {
    opacity: 1;
    transform: scale(0.6);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.bounce {
  animation-name: bounce;
  animation-duration: 0.3s;
  animation-delay: 0.8s;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
  animation-fill-mode: forwards;
}

@keyframes show {
  0% {
    opacity: 0;
    transform: translateY(-5vw);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.show {
  opacity: 1;
  transform: translate(0, 0);
  animation-name: show;
  animation-duration: 0.3s;
  animation-iteration-count: 1;
  animation-timing-function: cubic-bezier(0.795, 0, 0.85, 0.36);
  animation-fill-mode: forwards;
}

.range {
  display: block;
  width: 93.6%;
  height: auto;
  margin: -53vw auto 7vw auto;
  position: relative;
  opacity: 0;
  animation-name: fade;
  animation-duration: 0.5s;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
  animation-fill-mode: forwards;
  animation-delay: 2s;
}
@media (min-width: 512px) {
  .range {
    margin: -300px auto 40px auto;
  }
}

#join {
  padding-top: 5vw;
  margin-top: -5vw;
}

.join {
  display: block;
  position: relative;
  margin-top: 32vw;
}
.join h3 img {
  width: 100%;
  height: auto;
}
.join__flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 5vw;
}
.join__flex img {
  position: relative;
  opacity: 0;
}
.join__flex img:nth-of-type(1) {
  width: 37.73vw;
  height: auto;
  margin-left: -1vw;
}
.join__flex img:nth-of-type(2) {
  width: 39.33vw;
  height: auto;
  margin-right: -2vw;
}
.join a {
  width: 62.4vw;
  display: block;
  position: absolute;
  top: 25vw;
  left: calc(50% - 31.2vw);
  z-index: 10;
}
.join a img {
  width: 100%;
  height: auto;
}
.join p {
  width: 77.33%;
  font-size: 3.2vw;
  font-weight: 400;
  line-height: 1.5em;
  margin: -19vw auto 10vw auto;
  position: relative;
  z-index: 10;
  text-shadow: rgb(255, 255, 255) 3px 0px 0px, rgb(255, 255, 255) 2.83487px 0.981584px 0px, rgb(255, 255, 255) 2.35766px 1.85511px 0px, rgb(255, 255, 255) 1.62091px 2.52441px 0px, rgb(255, 255, 255) 0.705713px 2.91581px 0px, rgb(255, 255, 255) -0.287171px 2.98622px 0px, rgb(255, 255, 255) -1.24844px 2.72789px 0px, rgb(255, 255, 255) -2.07227px 2.16926px 0px, rgb(255, 255, 255) -2.66798px 1.37182px 0px, rgb(255, 255, 255) -2.96998px 0.42336px 0px, rgb(255, 255, 255) -2.94502px -0.571704px 0px, rgb(255, 255, 255) -2.59586px -1.50383px 0px, rgb(255, 255, 255) -1.96093px -2.27041px 0px, rgb(255, 255, 255) -1.11013px -2.78704px 0px, rgb(255, 255, 255) -0.137119px -2.99686px 0px, rgb(255, 255, 255) 0.850987px -2.87677px 0px, rgb(255, 255, 255) 1.74541px -2.43999px 0px, rgb(255, 255, 255) 2.44769px -1.73459px 0px, rgb(255, 255, 255) 2.88051px -0.838247px 0px;
}
@media (min-width: 512px) {
  .join {
    margin-top: 200px;
  }
  .join__flex {
    margin-top: 50px;
  }
  .join__flex img:nth-of-type(1) {
    width: 192px;
    margin-left: -10px;
  }
  .join__flex img:nth-of-type(2) {
    width: 200px;
    margin-left: -20px;
  }
  .join a {
    width: 318px;
    top: 170px;
    left: calc(50% - 159px);
  }
  .join p {
    font-size: 16px;
    margin: -97px auto 100px auto;
  }
}

.notice {
  width: calc(93.6% - 11.72vw);
  margin: 0 auto 5vw auto;
  background: #fffbe6;
  border: 1px solid #082765;
  border-radius: 2px;
  padding: 7.33vw 5.86vw;
  position: relative;
}
.notice h3 {
  width: 80.66vw;
  margin-bottom: 7.33vw;
}
.notice h3 img {
  width: 100%;
  height: auto;
}
.notice p {
  font-size: 3.73vw;
  color: #082765;
  line-height: 1.5em;
}
.notice div {
  font-size: 4.26vw;
  font-weight: 700;
  color: #082765;
  text-align: center;
}
.notice__chara {
  width: 26.13vw;
  height: auto;
  margin-top: -8vw;
  margin-left: 4vw;
  position: relative;
  opacity: 0;
}
@media (min-width: 512px) {
  .notice {
    width: 408px;
    margin: 68px auto 34px auto;
    padding: 34px 36px;
  }
  .notice h3 {
    width: 100%;
    margin-bottom: 30px;
  }
  .notice p {
    font-size: 19px;
  }
  .notice__chara {
    width: 133px;
    margin-top: -50px;
    margin-left: 15px;
  }
}

.howto__top {
  width: 100%;
  height: auto;
  display: block;
}
.howto__back {
  background: url(/images/howto_bg.png) repeat-y;
  background-size: 100%;
  padding: 3.46vw 0 48.5vw 0;
}
.howto__back h3 {
  width: 96vw;
  margin: 0 auto 10.6vw auto;
}
.howto__back h3 img {
  width: 100%;
  height: auto;
}
.howto__back h4 {
  width: 87.33vw;
  margin: 0 auto 2.26vw 4.13vw;
}
.howto__back h4 img {
  width: 100%;
  height: auto;
}
.howto__back div {
  width: 96.8vw;
  margin: 0 auto;
}
.howto__back div img:nth-of-type(1) {
  width: 100%;
  height: auto;
}
.howto__connect {
  width: 5.46vw;
  height: 19.06vw;
  display: block;
  margin: 0 auto 3.86vw auto;
}
.howto__connect img {
  width: 100%;
  height: auto;
}
.howto__connect span {
  display: block;
  overflow: hidden;
  max-height: 0;
  transition: 0.5s;
}
.howto__chara1 {
  width: 18.8vw;
  height: auto;
  position: absolute;
  bottom: -11vw;
  left: 10vw;
  opacity: 0;
}
.howto__chara2 {
  width: 21.33vw;
  height: auto;
  position: absolute;
  bottom: -24vw;
  right: 4vw;
  opacity: 0;
}
.howto__chara3 {
  width: 18.13vw;
  height: auto;
  position: absolute;
  bottom: -19vw;
  left: 1vw;
  opacity: 0;
}
.howto__chara4 {
  width: 22vw;
  height: auto;
  position: absolute;
  bottom: -36vw;
  right: 1vw;
  opacity: 0;
}
@media (min-width: 512px) {
  .howto__back {
    padding: 30px 0 400px 0;
  }
  .howto__back div {
    width: 96.8%;
  }
  .howto h3 {
    width: 489px;
    margin: 0 auto 68px auto;
  }
  .howto h4 {
    width: 445px;
    margin: 0 auto 17px 31px;
  }
  .howto__connect {
    width: 41px;
    height: 143px;
    margin: 0 auto 30px auto;
  }
  .howto__chara1 {
    width: 95px;
    bottom: -88px;
    left: 50px;
  }
  .howto__chara2 {
    width: 108px;
    bottom: -160px;
    right: 10px;
  }
  .howto__chara3 {
    width: 92px;
    bottom: -157px;
    left: 20px;
  }
  .howto__chara4 {
    width: 112px;
    bottom: -190px;
    right: 10px;
  }
}

.drop {
  max-height: 19.6vw !important;
}
@media (min-width: 512px) {
  .drop {
    max-height: 143px !important;
  }
}

.goods__top {
  display: block;
  width: 100%;
  height: auto;
  margin-top: -40vw;
}
.goods__bg {
  background: #fcc900;
  padding-bottom: 1px;
}
.goods h3 {
  width: 96.1%;
  margin: 0 auto 10vw auto;
  padding-top: 3.33vw;
}
.goods h3 img {
  width: 100%;
  height: auto;
}
.goods__img {
  width: 96.8%;
  height: auto;
  display: block;
  margin: 0 auto 5.33vw auto;
}
@media (min-width: 512px) {
  .goods__top {
    margin-top: -217px;
  }
  .goods h3 {
    padding-top: 30px;
    margin-bottom: 48px;
  }
  .goods__img {
    margin: 0 auto 50px auto;
  }
}

.info {
  width: calc(93.6% - 11.72vw);
  margin: 0 auto 5vw auto;
  background: #fffbe6;
  border: 1px solid #082765;
  color: #082765;
  border-radius: 2px;
  padding: 7.33vw 5.86vw;
  position: relative;
}
.info h3 {
  width: 80.66vw;
  margin-bottom: 5.33vw;
  padding-top: 0;
}
.info h3 img {
  width: 100%;
  height: auto;
}
.info h3:last-of-type {
  padding-top: 3.33vw;
}
.info h3:first-of-type {
  padding-top: 0;
}
.info h4 {
  font-size: 3.73vw;
  font-weight: bold;
  margin-bottom: 5vw;
  line-height: 1.3em;
}
.info h5 {
  font-size: 3.73vw;
  color: #fff;
  background: #082765;
  border-radius: 20px;
  padding: 0.5vw 2vw;
  display: inline;
  font-weight: normal;
}
.info p {
  font-size: 3.73vw;
  color: #082765;
  line-height: 1.5em;
  margin: 2vw 0;
}
.info div {
  font-size: 4.26vw;
  font-weight: 700;
  color: #082765;
  text-align: center;
}
.info__chara {
  width: 26.13vw;
  height: auto;
  margin-top: -8vw;
  margin-left: 4vw;
  position: relative;
  opacity: 0;
}
@media (min-width: 512px) {
  .info {
    width: 408px;
    margin: 68px auto 34px auto;
    padding: 34px 36px;
  }
  .info h3 {
    width: 100%;
    margin-bottom: 30px;
    padding-top: 0;
  }
  .info h3:last-of-type {
    padding-top: 30px;
  }
  .info h3:first-of-type {
    padding-top: 0;
  }
  .info h4 {
    font-size: 19px;
    margin-bottom: 40px;
  }
  .info h5 {
    font-size: 19px;
    padding: 2px 15px;
  }
  .info p {
    font-size: 19px;
    margin: 15px 0;
  }
  .info div {
    font-size: 19px;
  }
}

.spot {
  margin-top: -31vw;
}
.spot__top {
  width: 100%;
  height: auto;
  display: block;
}
.spot__back {
  background: url(/images/howto_bg.png) repeat-y;
  background-size: 100%;
  padding: 3.46vw 0 48.5vw 0;
}
.spot__back h3 {
  width: 96vw;
  margin: 0 auto 10.6vw auto;
}
.spot__back h3 img {
  width: 100%;
  height: auto;
}
.spot__slide {
  position: relative;
  width: 93.6%;
  border: 1px solid #082765;
  border-radius: 2px;
  background: #fff;
  margin: 0 auto 4.8vw auto;
  color: #082765;
  font-size: 4.26vw;
  font-weight: 700;
  box-shadow: 0 4px 0px rgba(0, 0, 0, 0.5);
}
.spot__arrow {
  display: block;
  position: absolute;
  top: 6vw;
  right: 4vw;
  transform: scaleY(0.8);
  transition: 0.5s;
}
.spot__txt {
  font-size: 3.5vw;
}
.spot__chara {
  width: 23.33vw;
  height: auto;
  position: absolute;
  bottom: 0;
  left: -1vw;
}
.spot__flex {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 16.66vw;
  position: relative;
  text-align: center;
  flex-wrap: wrap;
  line-height: 1.1em;
  cursor: pointer;
}
.spot__flex p {
  font-weight: bold;
}
.spot__down {
  width: 81.73%;
  margin: 0 auto;
  max-height: 0;
  overflow: hidden;
  transition: 1s;
}
.spot__line {
  width: 82.39%;
  height: auto;
  display: block;
  margin: 1vw auto 4.8vw auto;
  margin-top: 3px;
}
.spot__photo {
  width: 66.1%;
  margin: 0 auto 4.8vw auto;
}
.spot__photo img {
  width: 100%;
  height: auto;
  display: block;
}
.spot p {
  width: 100%;
  margin: 0 auto 4.8vw auto;
  font-weight: 400;
  line-height: 1.5em;
  font-size: 3.46vw;
}
@media (min-width: 512px) {
  .spot {
    margin-top: -209px;
  }
  .spot__mg {
    background: #fcc900;
    width: 100%;
    height: 50px;
  }
  .spot__back {
    padding: 20px 0 250px 0;
  }
  .spot h3 {
    width: 488px;
    margin: 0 auto 50px auto;
  }
  .spot__slide {
    font-size: 21px;
    margin: 0 auto 17px auto;
  }
  .spot__flex {
    height: 85px;
  }
  .spot__arrow {
    top: 30px;
    right: 23px;
  }
  .spot__chara {
    width: 155px;
    left: -20px;
  }
  .spot__txt {
    font-size: 18px;
  }
  .spot__down {
    width: 89%;
  }
  .spot__line {
    width: 100%;
    margin: 1px auto 30px auto;
  }
  .spot p {
    font-size: 17px;
    width: 100%;
    margin: 0 auto 50px auto;
  }
  .spot__photo {
    margin: 0 auto 30px auto;
  }
}

.faq {
  background: #fcc900;
  padding-top: 1vw;
  padding-bottom: 40vw;
  position: relative;
}
.faq h3 {
  width: 96%;
  margin: 0 auto 10.6vw auto;
}
.faq h3 img {
  width: 100%;
  height: auto;
}
.faq__frame {
  width: 100%;
  background: url(/images/frame_middle.png) repeat-y;
  background-size: 100%;
}
.faq__frameUd {
  display: block;
  width: 100%;
  height: auto;
}
.faq__q {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: 3.73vw;
  color: #082765;
  width: 80%;
  margin: 0 auto 5.33vw auto;
}
.faq__q p {
  margin: 1.5vw 0 0 1.5vw;
  line-height: 1.3em;
}
.faq__q img {
  width: 10.8vw;
  height: auto;
}
.faq__ans {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: 3.73vw;
  color: #082765;
  width: 80%;
  margin: 0 auto;
  padding-bottom: 10.66vw;
}
.faq__ans:last-of-type {
  padding-bottom: 5.33vw;
}
.faq__ans p {
  margin: 1.5vw 0 0 1.5vw;
  line-height: 1.3em;
}
.faq__ans img {
  width: 10.8vw;
  height: auto;
}
.faq .pop4 {
  width: 19.2vw;
  height: auto;
  position: absolute;
  bottom: 6vw;
  left: 8.5vw;
  opacity: 0;
  z-index: 1;
}
.faq .pop5 {
  width: 19.73vw;
  height: auto;
  position: absolute;
  top: -46vw;
  right: 6vw;
  opacity: 0;
  z-index: 1;
}
@media (min-width: 512px) {
  .faq {
    padding-top: 20px;
    padding-bottom: 325px;
  }
  .faq h3 {
    margin: 0 auto 30px auto;
  }
  .faq__q {
    margin: 0 auto 31px auto;
    font-size: 19px;
  }
  .faq__q img {
    width: 55px;
  }
  .faq__q p {
    margin: 10px 0 0 10px;
  }
  .faq__ans {
    margin: 0 auto;
    font-size: 19px;
    padding-bottom: 50px;
  }
  .faq__ans img {
    width: 55px;
  }
  .faq__ans:last-of-type {
    padding-bottom: 55px;
  }
  .faq__ans p {
    margin: 10px 0 0 10px;
  }
  .faq .pop4 {
    width: 97px;
    bottom: 153px;
    left: 40px;
  }
  .faq .pop5 {
    width: 100px;
    top: -228px;
    right: 20px;
  }
}

footer {
  background: #082765;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 5.46vw 0 0 0;
}
footer img {
  width: 5.2vw;
  height: auto;
}
footer small {
  display: block;
  width: 100%;
  background: #fff;
  text-align: center;
  font-size: 2.13vw;
  padding: 2.13vw 0;
  color: #082765;
}
footer p {
  width: 100%;
  background: #fff;
  padding: 2.13vw 0;
  text-align: center;
  margin-top: 5.46vw;
}
footer p a {
  font-size: 2.13vw;
  display: inline-block;
  color: #082765;
  height: 2.13vw;
}
@media (min-width: 512px) {
  footer {
    padding: 27px 0 0 0;
  }
  footer img {
    width: 26px;
  }
  footer small {
    font-size: 11px;
    padding: 11px 0;
  }
  footer p {
    padding: 11px 0;
    margin-top: 27px;
  }
  footer p a {
    font-size: 11px;
    height: 11px;
  }
}

.open {
  max-height: 100vh;
}

.active .spot__arrow {
  transform: rotate(180deg);
}

#join {
  padding-top: 21vw;
  margin-top: -21vw;
}
@media (min-width: 750px) {
  #join {
    padding-top: 125px;
    margin-top: -125px;
  }
}

#goods {
  padding-top: 17vw;
  margin-top: -17vw;
}
@media (min-width: 750px) {
  #goods {
    padding-top: 105px;
    margin-top: -105px;
  }
}

#spot {
  padding-top: 21vw;
  margin-top: -21vw;
}
@media (min-width: 750px) {
  #spot {
    padding-top: 125px;
    margin-top: -125px;
  }
}

.jump {
  background: rgba(255, 255, 255, 0.7);
  width: 100%;
  height: 19vw;
  max-width: 512px;
  z-index: 100;
  margin: 0 0 10vw 0;
  position: relative;
}
.jump__flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: calc(100% - 5.06vw);
  padding: 2.8vw 2.53vw 0 2.53vw;
}
.jump__flex a {
  width: 30.13vw;
  display: block;
}
.jump__flex a img {
  width: 100%;
  height: auto;
}
.jump__deco {
  width: 100%;
  margin-top: 2.53vw;
  height: 0.8vw;
  border-top: 0.8vw solid #f4d242;
  border-bottom: 0.8vw solid #ed2c39;
}
@media (min-width: 512px) {
  .jump {
    left: auto;
    height: 115px;
    margin: 0 0 35px 0px;
  }
  .jump__flex {
    padding: 21px 19px 0 21px;
    width: calc(100% - 42px);
  }
  .jump__flex a {
    width: 153px;
    margin: 0 5px;
  }
  .jump__deco {
    margin-top: 21px;
    height: 6px;
    border-top: 6px solid #f4d242;
    border-bottom: 6px solid #ed2c39;
  }
}

.pageTop {
  width: 13.46vw;
  display: block;
  position: fixed;
  bottom: 1vw;
  right: 1vw;
  transition: 0.5s;
  z-index: 120;
  opacity: 0;
}
.pageTop img {
  width: 100%;
  height: auto;
}
@media (min-width: 512px) {
  .pageTop {
    width: 68px;
    bottom: 10px;
    right: calc(50% - 250px);
  }
}

.terms {
  width: 100%;
  max-width: 512px;
  margin: 0 auto;
  font-size: 3.46vw;
  background: url(/images/howto_bg.png) repeat-y;
  background-size: 100%;
  padding: 3.46vw 0 0 0;
}
.terms h3 {
  color: #082765;
  text-align: center;
  font-size: 6vw;
  font-weight: bold;
  margin-bottom: 4vw;
  line-height: 1.3em;
}
.terms .faq__frame {
  line-height: 1.5em;
}
.terms .faq__frame div {
  width: 85%;
  margin: 0 auto;
}
.terms .faq__frame div span {
  font-weight: bold;
  line-height: 1.3em;
  font-size: 4vw;
  display: block;
  margin-bottom: 2vw;
}
.terms .frameBtm {
  margin-bottom: 3.46vw;
}
@media (min-width: 512px) {
  .terms {
    font-size: 16px;
    padding: 30px 0 0 0;
  }
  .terms h3 {
    font-size: 30px;
    margin-bottom: 30px;
  }
  .terms .faq__frame div span {
    font-size: 25px;
    margin-bottom: 10px;
  }
  .terms .frameBtm {
    margin-bottom: 20px;
  }
}/*# sourceMappingURL=base.css.map */