/* 基本設定 */
@charset "UTF-8";
@-webkit-keyframes scrollroop {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -1800px 0;
  }
}
@keyframes scrollroop {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -1800px 0;
  }
}
@keyframes anime1 {
  from {
    transform: scale(0.9, 0.9);
  }
  to {
    transform: scale(1, 1);
  }
}
@keyframes blink {
  50% {
    opacity: 0;
  }
}
@keyframes updown {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}
@keyframes spin {
  5% {
    transform: rotate(1deg);
  }
  15% {
    transform: rotate(-1deg);
  }
  25% {
    transform: rotate(1deg);
  }
  35% {
    transform: rotate(-1deg);
  }
  45% {
    transform: rotate(1deg);
  }
  55% {
    transform: rotate(-1deg);
  }
  60% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

/* フェードアップ */
.scroll-fadeup {
  opacity: 0;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: 50ms;
  transition: 50ms;
}

/* 画面に入ったらフェードイン */
.scroll-fadeup {
  opacity: 0;
}

.scroll-fadeup.s-fadeup {
  opacity: 1;
  -webkit-transition: all 1s ease-out;
  transition: all 1s ease-out;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: 0ms;
  transition: 0ms;
}

.scroll-fadeup-1.s-fadeup {
  opacity: 1;
  -webkit-transition: all 1s ease-out;
  transition: all 1s ease-out;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.scroll-fadeup-2.s-fadeup {
  opacity: 1;
  -webkit-transition: all 1s ease-out;
  transition: all 1s ease-out;
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

.scroll-fadeup-3.s-fadeup {
  opacity: 1;
  -webkit-transition: all 1s ease-out;
  transition: all 1s ease-out;
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}

.scroll-fadeup-4.s-fadeup {
  opacity: 1;
  -webkit-transition: all 1s ease-out;
  transition: all 1s ease-out;
  -webkit-transition-delay: 0.8s;
  transition-delay: 0.8s;
}

.scroll-fadeup-5.s-fadeup {
  opacity: 1;
  -webkit-transition: all 1s ease-out;
  transition: all 1s ease-out;
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
}

.scroll-fadeup-6.s-fadeup {
  opacity: 1;
  -webkit-transition: all 1s ease-out;
  transition: all 1s ease-out;
  -webkit-transition-delay: 1.2s;
  transition-delay: 1.2s;
}

.scroll-fadeup-7.s-fadeup {
  opacity: 1;
  -webkit-transition: all 1s ease-out;
  transition: all 1s ease-out;
  -webkit-transition-delay: 1.4s;
  transition-delay: 1.4s;
}

.scroll-fadeup-8.s-fadeup {
  opacity: 1;
  -webkit-transition: all 1s ease-out;
  transition: all 1s ease-out;
  -webkit-transition-delay: 1.6s;
  transition-delay: 1.6s;
}

.scroll-fadeup-9.s-fadeup {
  opacity: 1;
  -webkit-transition: all 1s ease-out;
  transition: all 1s ease-out;
  -webkit-transition-delay: 1.8s;
  transition-delay: 1.8s;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font-size: 100% \9;
  background: transparent;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote::after {
  content: "";
  content: none;
}

q:before,
q::after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-size: 100% \9;
  vertical-align: middle;
  background: transparent;
  text-decoration: none;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

/* YUI 3.4.1 (build 4118) Copyright 2011 Yahoo! Inc. All rights reserved.
Licensed under the BSD License. http://yuilibrary.com/license/ */
table {
  font: 100%;
}

pre,
code,
kbd,
samp,
tt {
  font-family: monospace;
  font-size: 108% \9;
  line-height: 100%;
}

/************************************
** common
************************************/
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  color: #1a1a1a;
  zoom: normal !important;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

@media screen and (max-width: 750px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
.times_roman {
  font-family: "Times New Roman";
}

/*# sourceMappingURL=common.css.map */
/* style.css */
@-webkit-keyframes anime1 {
  from {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
  }
  to {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
@keyframes anime1 {
  from {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
  }
  to {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.mincho {
  font-family: "Yu Mincho Regular", "Noto Serif Extra-light400", "Noto Serif JP",
    serif;
}

a {
  text-decoration: none;
  color: #000;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
a:hover {
  opacity: 0.8;
}

body.wrapper {
  background-color: #fff;
  text-align: center;
  max-width: 750px;
  width: 100%;
  margin: 0 auto;
  line-height: 1;
  color: #000;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo,
    メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
  overflow-x: hidden;
}

.wrapper section {
  position: relative;
  overflow: hidden;
}
.wrapper .offer a {
  display: block;
  position: absolute;
  z-index: 1;
}
.wrapper img {
  display: block;
  width: 100%;
  height: auto;
}

.question_fase .question {
  max-width: 750px;
  margin: 0 auto;
  overflow-x: hidden;
}
.question_fase .question .q1 {
  position: relative;
}
.question_fase .question .q2 #caution {
  width: 80%;
  font-size: 12px;
  margin: 1rem auto 0;
  text-align: right;
}
.question_fase .question .q2 .buttons {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.question_fase .question .q2 .buttons button {
  font-family: sans-serif;
  width: 47.5%;
  border-radius: 10px;
  border-style: none;
  outline: none;
  font-size: 1.8rem;
  padding: 2% 0;
  font-weight: bold;
  margin-top: 2rem;
  color: #fff !important;
  -webkit-box-shadow: 5px 6px 2px 1px #bfbfbf;
  box-shadow: 5px 6px 2px 1px #bfbfbf;
  border: 2px solid #fff;
  height: 120px;
  cursor: pointer !important;
}
.question_fase .question .q2 .buttons button a {
  color: #fff;
}
.question_fase .question .q2 .buttons button:hover,
.question_fase .question .q2 .buttons button.checked {
  opacity: 0.8;
}
.question_fase .question .q2 .buttons button[data-answer="undefined"] {
  display: none;
}
.question_fase .question .q2 .buttons button:nth-child(odd) {
  background: #f61b64;
}
.question_fase .question .q2 .buttons button:nth-child(even) {
  background: #c7c3db;
}
.question_fase .question .q2 .buttons button:last-child {
  margin-bottom: 4%;
}
.question_fase .question .q2 .buttons button span {
  font-size: 10px;
}
.question_fase .question .q2 #submit {
  width: 70%;
  margin: 0 auto;
  cursor: pointer;
}
.question_fase .question .q2 .buttons {
  display: block;
}
.question_fase .question .q2 .buttons button {
  width: 96%;
}
.question_fase .question .s2-2 .buttons button:nth-child(even),
.question_fase .question .s2-4 .buttons button:nth-child(even) {
  background: #ee86a5;
}
.question_fase .question .s2-6 .buttons {
  position: relative;
}
.question_fase .question .s2-6 .buttons img {
  position: absolute;
  bottom: 6%;
  left: 0%;
  right: 0%;
  margin: 0 auto;
  width: 80%;
}
.question_fase .question .s3#responseArea {
  width: 70%;
  margin: 0 auto;
  border: 2px solid #e61e79;
  border-radius: 15px;
  padding: 1rem;
  margin-bottom: 3rem;
}
.question_fase .question .s3#responseArea .ttl {
  text-align: center;
  background-color: #e61e79;
  color: #fff;
  padding: 0.5rem 0;
  font-size: 1rem;
  border-radius: 15px;
}
.question_fase .question .s3#responseArea #resTtl {
  text-align: left;
  color: #e61e79;
  border-bottom: 1px solid #e61e79;
  font-weight: bold;
  font-size: 1.5rem;
  padding: 1rem 0;
}
.question_fase .question .s3#responseArea #resTtl span {
  border-right: 1px solid #e61e79;
  margin-right: 0.5rem;
  padding-right: 0.5rem;
}
.question_fase .question .s3#responseArea ul li {
  text-align: left;
  padding: 1rem 0;
}
.question_fase .question .s3#responseArea ul li .ratetxt {
  font-weight: bold;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.question_fase .question .s3#responseArea ul li .ratetxt span {
  margin-right: 1rem;
}
.question_fase .question .s3#responseArea ul li .ratebar {
  width: 0%;
  min-width: 1px;
  height: 1rem;
  background-color: #e61e79;
  border-radius: 3px;
  -webkit-transition: width 1.5s ease;
  transition: width 1.5s ease;
  -webkit-transition-delay: 0.8s;
  transition-delay: 0.8s;
}

@media screen and (max-width: 750px) {
  .question_fase .question .q2 .buttons button {
    font-size: 1.5rem;
    margin-top: 1.5rem;
  }
}
@media screen and (max-width: 575px) {
  .question_fase .question .q2 .buttons button {
    height: 85px;
    font-size: 1rem;
    margin-top: 1rem;
  }
}
.logo {
  background-color: #fff;
  margin: auto;
  width: 15%;
  padding: 3% 0;
}

footer {
  max-width: 750px;
  width: 100%;
  margin: 0 auto;
  font-family: "Hiragino Sans W3", "Hiragino Kaku Gothic ProN",
    "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic",
    sans-serif;
}
footer a,
footer p {
  color: #FFFFFF;
  font-family: a-otf-ryumin-pr6n, serif !important;
}
footer a {
  font-size: 18px;
  text-decoration: none;
  display: block;
  font-family: a-otf-ryumin-pr6n, serif !important;
}
@media screen and (max-width: 575px) {
  footer a {
    font-size: 14px;
    font-family: a-otf-ryumin-pr6n, serif !important;
  }
}
footer div {
  display: flex;
  justify-content: center;
  padding: 10px 0;
}
footer .copyright {
  margin: 0 auto;
  padding: 0px 0 10px;
  line-height: 1.8;
  font-size: 15px;
  font-family: a-otf-ryumin-pr6n, serif !important;
}
@media screen and (max-width: 575px) {
  footer .copyright {
    font-size: 12px;
  }
}

@media screen and (max-width: 768px) {
  footer ul {
    padding: 1rem 0;
  }
}
@media screen and (min-width: 575px) and (max-width: 768px) {
  footer ul li {
    padding: 0;
  }
}
@media screen and (max-width: 575px) {
  footer ul li {
    margin: 15px 0;
    font-size: 11px;
    padding: 0;
  }
}
.wrapper .gif {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 10;
}
.wrapper .q1 {
  position: relative;
}
.wrapper .q1 .btn01 {
  width: 95%;
  bottom: 17%;
  left: -3%;
}
.wrapper .s2 .asset {
  z-index: 20;
}
.wrapper .s2 .asset._01 {
  bottom: 42.5%;
  width: 52%;
  right: -1%;
}
.wrapper .s2 .asset._02 {
  right: 66%;
  bottom: 18.5%;
  width: 24%;
}
.wrapper .s2 .asset._03 {
  right: 0%;
  bottom: 18.5%;
  width: 24%;
}
.wrapper .s2 .asset._04 {
  left: 66%;
  bottom: 18.5%;
  width: 24%;
}
.wrapper .s2 .asset._05 {
  right: 0%;
  bottom: 26%;
  width: 56%;
}

.wrapper .s13 {
  position: relative;
}


.hide {
  display: none;
}

.lp_fase {
  display: block;
}

/* lp部分追加 */
@-webkit-keyframes loading {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes loading {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes updown {
  0% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
@keyframes updown {
  0% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
@-webkit-keyframes anime1 {
  from {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
  }
  to {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
@keyframes anime1 {
  from {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
  }
  to {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

.fadein-top {
  opacity: 0;
  -webkit-transform: translateY(-100px);
  transform: translateY(-100px);
  -webkit-transition: all 1s;
  transition: all 1s;
}

.fadein-bottom {
  opacity: 0;
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
  -webkit-transition: all 1s;
  transition: all 1s;
}

.fadein-left {
  opacity: 0;
  -webkit-transform: translateX(-100px);
  transform: translateX(-100px);
  -webkit-transition: all 1s;
  transition: all 1s;
}

.fadein-right {
  opacity: 0;
  -webkit-transform: translateX(100px);
  transform: translateX(100px);
  -webkit-transition: all 1s;
  transition: all 1s;
}

.fadein2 {
  opacity: 0;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition: all 1s;
  transition: all 1s;
}

.fadein.active {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

@media screen and (max-width: 430px) {
  .profile .top {
    top: -2%;
  }
}
.profile-box {
  text-align: right;
  width: 100%;
}
.profile-box p {
  position: relative;
  margin: 0 0 0 4.7%;
  width: 95.2%;
  font-size: 14px;
  letter-spacing: 2.8px;
  height: 90px;
  overflow: hidden;
  line-height: 2.5;
  font-family: "Century Gothic", sans-serif;
}
.profile-box p img {
  position: relative;
  z-index: 2;
}
.profile-box p::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  background-color: #060606;
  opacity: 0.5;
  z-index: 1;
}
.profile-box .text {
  height: 120px;
  overflow: hidden;
}
.profile-box .text img {
  width: 100%;
}

@media screen and (max-width: 750px) {
  .profile-box p {
    letter-spacing: 0.5vw;
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 560px) {
  .profile-box p {
    font-size: 11.5px;
    line-height: 2;
  }
}
.profile-btn {
  position: absolute;
  bottom: -2%;
  width: 100%;
  left: 0;
  margin: auto;
  right: 0;
  padding-top: 60px;
  text-align: center;
  line-height: 30px;
  z-index: 10;
  cursor: pointer;
  -webkit-transition: bottom 0.2s;
  transition: bottom 0.2s;
}
.profile-btn img {
  width: 9% !important;
}
.profile-btn.transparent {
  z-index: 5;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(#000),
    to(transparent)
  );
  background: linear-gradient(to top, #000, transparent);
  width: 95.2%;
  right: 0;
  bottom: 0;
  margin: 0 0 0 4.7%;
}

@media screen and (max-width: 560px) {
  .profile-btn {
    bottom: -2%;
  }
}
@media screen and (max-width: 560px) {
  .profile-btn img {
    width: 10% !important;
  }
}
.profile .active {
  background: none;
  bottom: -5.5%;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

@media screen and (max-width: 750px) {
  .profile .active {
    bottom: -14.5vw;
  }
}
@media screen and (max-width: 430px) {
  .profile .active {
    bottom: -11%;
  }
}
.countdown {
  position: absolute;
  top: 37.3%;
  right: 6%;
  font-weight: bold;
  font-size: 1.3rem;
  z-index: 20;
  font-family: "Century Gothic", sans-serif;
  font-style: italic;
}
.countdown span {
  font-family: "Century Gothic", sans-serif;
  font-size: 3rem;
  color: #ee0000;
  padding-right: 5px;
  padding-left: 4px;
}

@media screen and (max-width: 768px) {
  .countdown {
    font-size: 2.2vw;
    top: 14.5%;
  }
}
@media screen and (max-width: 430px) {
  .countdown {
    font-size: 12px;
    top: 37.9%;
  }
}
@media screen and (max-width: 768px) {
  .countdown span {
    font-size: 6.6vw;
  }
}
@media screen and (max-width: 430px) {
  .countdown span {
    font-size: 20px;
  }
}
@-webkit-keyframes scrollAnime {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@keyframes scrollAnime {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
body {
  text-align: center;
  /* max-width: 750px;
  width: 100%; */
  margin: 0 auto;
}
body .wrapper {
  background-color: #fff;
}
body .wrapper .mb10 {
  margin-bottom: 10%;
}
body .wrapper .mb20 {
  margin-bottom: 20%;
}
body .wrapper .s_offer {
  text-align: center;
}
body .wrapper .s_offer .btn {
  position: absolute;
  left: 0;
  right: 0;
  animation: updown 1.2s ease-in-out 0.5s infinite alternate;
  width: 86%;
}
body .wrapper .s_offer .btn01 {
  bottom: 5.5%;
}
body .wrapper .s_offer .btn02 {
  bottom: 8.5%;
}
body .wrapper .asset {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 0;
}
body .wrapper .mov_img {
  position: relative;
  z-index: 10;
}
body .wrapper .asset02 {
  position: absolute;
  /* left: 0; */
  right: 7%;
  margin: 0 auto;
  z-index: 0;
  bottom: 4%;
  width: 19%;
  z-index: 20;
}
body .wrapper .s4 .slider {
  padding: 55% 0 46%;
}
@media screen and (max-width: 480px) {
  body .wrapper .s4 .slider {
    padding: 58% 0 42.6%;
  }
}
body .wrapper .s4 .slider_img {
  width: 80% !important;
}
body .wrapper .s4 .slick-arrow {
  width: 40px;
  height: 40px;
}
body .wrapper .s4 .slick-arrow::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  right: 0;
  left: 0;
}
body .wrapper .s4 .slick-prev {
  left: 3.5% !important;
}
@media screen and (max-width: 480px) {
  body .wrapper .s4 .slick-prev {
    left: 5% !important;
  }
}
body .wrapper .s4 .slick-prev::before {
  background: url("../img/arrow_left.png") no-repeat;
  background-size: contain;
}
body .wrapper .s4 .slick-prev::before:hover {
  background: url("../img/arrow_left.png") no-repeat;
  background-size: contain;
}
body .wrapper .s4 .slick-next {
  right: 1.5% !important;
}
@media screen and (max-width: 480px) {
  body .wrapper .s4 .slick-next {
    right: 3% !important;
  }
}
body .wrapper .s4 .slick-next::before {
  background: url("../img/arrow_right.png") no-repeat;
  background-size: contain;
}
body .wrapper .s4 .slick-next::before:hover {
  background: url("../img/arrow_right.png") no-repeat;
  background-size: contain;
}
body .wrapper .s4 .slick-prev,
body .wrapper .s4 .slick-next {
  top: 58% !important;
  width: 45px !important;
  height: 45px !important;
  z-index: 1;
}
@media screen and (max-width: 480px) {
  body .wrapper .s4 .slick-prev,
  body .wrapper .s4 .slick-next {
    width: 20px !important;
    height: 20px !important;
  }
}
body .wrapper .s4 .slick-prev::before,
body .wrapper .s4 .slick-next::before {
  content: "" !important;
}
body .wrapper .s4 .slick-dotted.slick-slider {
  margin-bottom: 0;
}
body .wrapper .s4 .slick-dots {
  bottom: 23% !important;
  width: 100% !important;
}
body .wrapper .s4 .slick-dots li button {
  background: none;
}
body .wrapper .s4 .slick-dots li button::before {
  background-image: url(https://d2w53g1q050m78.cloudfront.net/boldiesecjp/uploads/LP/NeedleBoost/2508_A23/dot2.png);
  background-repeat: no-repeat;
  background-size: contain;
  color: transparent;
  width: 14px !important;
}
@media screen and (max-width: 480px) {
  body .wrapper .s4 .slick-dots li button::before {
    width: 10px !important;
  }
}
body .wrapper .s4 .slick-dots li.slick-active button::before {
  background-image: url(https://d2w53g1q050m78.cloudfront.net/boldiesecjp/uploads/LP/NeedleBoost/2508_A23/dot1.png);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 480px) {
  body .wrapper .s4 .slick-dots {
    bottom: 21% !important;
  }
}
body #floatarea {
  bottom: 0%;
  max-width: 750px;
  position: fixed;
  z-index: 1000;
  display: none;
}
body #floatarea a {
  text-decoration: none;
  width: 100%;
}
body #floatarea img {
  width: 100%;
}
body #floatarea .countdown {
  top: 9%;
  font-size: 1.4rem;
  right: 20%;
  color: #000;
}
body #floatarea .countdown span {
  font-size: 2.5rem;
}

@media screen and (max-width: 575px) {
  body .wrapper #popupArea .popup_inner {
    width: 85%;
  }
}
@media screen and (max-width: 750px) {
  body .wrapper .s2-5 > img {
    padding-bottom: 7vw;
    margin-bottom: -15vw;
  }
}
@media screen and (max-width: 768px) {
  body #floatarea .countdown {
    font-size: 2.8vw;
    top: 6.4%;
  }
}
@media screen and (max-width: 430px) {
  body #floatarea .countdown {
    font-size: 13px;
    top: 13.7%;
  }
}
@media screen and (max-width: 768px) {
  body #floatarea .countdown span {
    font-size: 4.6vw;
  }
}
@media screen and (max-width: 430px) {
  body #floatarea .countdown span {
    padding-left: 2px;
    font-size: 16px;
  }
}
/*# 以下LP箇所のcss */
#lp .s2 .btn01 {
  width: 75%;
  animation: anime1 0.8s ease 0s infinite alternate;
}

body .wrapper {
  font-size: 16px;
  text-align: center;
  max-width: 750px;
  width: 100%;
  margin: 0 auto;
}
body .wrapper #floatBtn {
  z-index: 2;
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 640px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1080px) {
  body .wrapper #floatBtn {
    width: 90%;
  }
}
body .wrapper #floatBtn img {
  width: 100%;
  filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.5));
}
body .wrapper .s1 .countdownArea {
  top: 2rem;
}
@media screen and (max-width: 1080px) {
  body .wrapper .s1 .countdownArea {
    top: 0.75%;
  }
}
body .wrapper .s_qa .q_and_a {
  padding-bottom: 30px;
}
body .wrapper .s_qa .q_and_a .toggleButton {
  position: relative;
  margin-top: 5%;
}
body .wrapper .s_qa .q_and_a .toggleButton::after {
  content: "";
  background: url(../img/plus.png) no-repeat;
  background-size: contain;
  width: 40px;
  height: 20px;
  display: block;
  position: absolute;
  bottom: 20%;
  right: 7%;
}
@media screen and (max-width: 750px) {
  body .wrapper .s_qa .q_and_a .toggleButton::after {
    width: 5vw;
    height: 2.5vw;
  }
}
body .wrapper .s_qa .q_and_a .toggleButton.active::after {
  content: "";
  background: url(../img/minus.png) no-repeat;
  background-size: contain;
}
body .wrapper section {
  position: relative;
  /* max-width: 750px; */
}

body .wrapper section .gif_img {
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
}
body .wrapper section .gif_img01 {
  width: 80%;
  top: 11%;
}
body .wrapper section .gif_img02 {
  background-color: transparent;
  width: 90%;
  bottom: 2.5%;
}
body .wrapper section .gif_img03 {
  width: 80%;
  top: 0%;
  border-radius: 6vw;
}
body .wrapper section .gif_img04 {
  width: 80%;
  bottom: 8%;
  border-radius: 6vw;
}

.s_qa .qa_inner {
  width: 100%;
  padding-bottom: 5%;
  background-size: cover;
}
.s_qa .qa_inner > div:not(:last-child) {
  margin-bottom: 6%;
}
.s_qa .q,
.s_qa .ans {
  width: 80%;
  margin: -2px auto;
}
.s_qa .ans {
  position: relative;
}
.s_qa .q {
  position: relative;
}

img,
video {
  height: auto;
}

.wrapper {
  line-height: initial;
  letter-spacing: initial;
}
.wrapper img,
.wrapper video {
  height: auto;
} /*# sourceMappingURL=style.css.map */
