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;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

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

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
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-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "M PLUS Rounded 1c", sans-serif;
  letter-spacing: 0.05em;
  color: #000000;
  word-break: break-all;
  padding-top: 70px;
  height: 100vh;
}
body.is_fixed {
  overflow: hidden;
}

.m-plus-rounded-1c-regular {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 400;
  font-style: normal;
}

img {
  max-width: 100%;
  height: auto;
  transition: all 0.3s ease;
}

a:active {
  text-decoration: none;
}

a {
  text-decoration: none;
}
a:hover {
  opacity: 0.8;
}

div,
a {
  box-sizing: border-box;
}

li {
  list-style: none;
}

section {
  box-sizing: border-box;
}

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

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

body {
  background: url(../img/background.png) repeat;
  background-size: contain;
}

.openning {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  background-color: #FDF2F4;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}
.openning::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background-image: url(../img/openning-bg.png);
  background-size: 1200px auto;
  background-repeat: repeat;
  animation: cloudmove 30s linear infinite;
}
@media screen and (max-width: 768px) {
  .openning::before {
    background-size: 600px auto;
  }
}
@keyframes cloudmove {
  0% {
    background-position: -200% -200%;
  }
  100% {
    background-position: 100% 100%;
  }
}
.openning__inner {
  max-width: 800px;
  border: 6px solid #FFDEDE;
  border-radius: 30px;
  background: #fff;
  width: 100%;
  text-align: center;
  padding: 50px 40px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .openning__inner {
    max-width: 90%;
    padding: 5.3333333333vw 2.6666666667vw 13.3333333333vw;
    border-radius: 30px;
  }
}
.openning__icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}
.openning__title--logo {
  margin: 20px auto;
}
@media screen and (max-width: 768px) {
  .openning__title--logo {
    margin: 10px auto 20px;
  }
}
.openning__btn {
  cursor: pointer;
}
.openning__btn img {
  box-shadow: 4px 4px #FFDEDE;
  border-radius: 50px;
  transition: 0.3s ease;
}
.openning__btn:hover {
  opacity: 1;
}
.openning__btn:hover img {
  box-shadow: none;
  transform: translate(4px, 4px);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  background: #fff;
  z-index: 99;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .header {
    padding: 0 15px;
  }
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .header__logo {
    max-width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .header__right img {
    width: 170px;
  }
}

.question__end {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 85px 45px;
  width: -moz-max-content;
  width: max-content;
  max-width: 800px;
  border: 6px solid #FFDEDE;
  border-radius: 30px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: none;
}
@media screen and (max-width: 768px) {
  .question__end {
    max-width: 90%;
    padding: 13.3333333333vw 5.3333333333vw;
    max-height: 80vh;
    height: 80vh;
    top: 58%;
  }
}
.question__end--wrap {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  height: 100%;
}
.question__end--title {
  text-align: center;
  font-size: 28px;
  font-weight: 500;
  color: #565688;
  width: 90%;
  margin: 0 auto;
  line-height: 1.4;
  margin-bottom: 30px;
}
.question__end--btn img {
  box-shadow: 4px 4px #FFDEDE;
  border-radius: 50px;
  transition: 0.3s ease;
}
.question__end--btn:hover {
  opacity: 1;
}
.question__end--btn:hover img {
  box-shadow: none;
  transform: translate(4px, 4px);
}

.question {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 85px 45px;
  max-width: 800px;
  height: 70vh;
  border: 6px solid #FFDEDE;
  border-radius: 30px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  width: 100%;
}
@media screen and (max-width: 768px) {
  .question {
    max-width: 90%;
    max-height: 80vh;
    height: 80vh;
    padding: 13.3333333333vw 5.3333333333vw;
    top: 58%;
  }
}
.question__head {
  font-size: 18px;
  text-align: center;
  padding-bottom: 30px;
  font-weight: 600;
  margin-bottom: 60px;
  color: #F56E88;
  border-bottom: 1px solid #565688;
}
@media screen and (max-width: 768px) {
  .question__head {
    font-size: 4.2666666667vw;
    padding-bottom: 8vw;
    margin-bottom: 8vw;
  }
}
.question__title {
  text-align: center;
  font-size: 28px;
  font-weight: 500;
  color: #565688;
  width: 90%;
  margin: 0 auto;
  line-height: 1.4;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .question__title {
    font-size: 6.4vw;
    margin-bottom: 8vw;
  }
}
.question .answer__btns {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .question .answer__btns {
    margin-bottom: 9.3333333333vw;
  }
}
.question .answer__btns a {
  display: block;
  width: 150px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border: 3px solid #565688;
  color: #565688;
  background: #FDF2F4;
  font-size: 28px;
  font-weight: 500;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .question .answer__btns a {
    font-size: 6.4vw;
  }
}
.question .backBtn {
  text-align: center;
  display: block;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
}

.result {
  width: 100%;
  height: 100%;
  background-color: #FDF2F4;
  background-image: url(../img/result-bg.png);
  background-repeat: repeat;
  background-size: contain;
  background-attachment: fixed;
  padding-top: 80px;
}
@media screen and (max-width: 768px) {
  .result {
    background-attachment: unset;
    padding-top: 50px;
  }
}
.result__container {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  background: #fff;
  padding: 55px 90px;
  border: 6px solid #FFDEDE;
  border-radius: 30px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 768px) {
  .result__container {
    max-width: 90%;
    padding: 8vw 5.3333333333vw;
  }
}
.result__head {
  padding-bottom: 30px;
  font-size: 24px;
  font-weight: 700;
  color: #565688;
  text-align: center;
  border-bottom: 1px solid #565688;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .result__head {
    font-size: 4.8vw;
    margin-bottom: 5.3333333333vw;
    border-bottom: 1px dashed #565688;
  }
}
.result__title {
  position: relative;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto 20px;
  font-size: 24px;
  color: #565688;
}
@media screen and (max-width: 768px) {
  .result__title {
    text-align: center;
    font-size: 4.8vw;
  }
}
.result__title span {
  font-size: 32px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .result__title span {
    font-size: 5.3333333333vw;
  }
}
.result__title::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 60%;
  transform: translateY(-50%);
  width: 14px;
  height: 26px;
  background: url(../img/ashirai01.svg) no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .result__title::before {
    top: 80%;
  }
}
.result__title::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 60%;
  transform: translateY(-50%);
  width: 14px;
  height: 26px;
  background: url(../img/ashirai02.svg) no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .result__title::after {
    top: 80%;
  }
}
.result__text {
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  background: #FDF2F4;
  border-radius: 8px;
  color: #F56E88;
  padding: 10px;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .result__text {
    max-width: 100%;
    font-size: 3.7333333333vw;
    line-height: 1.3;
    text-align: center;
  }
}
.result__num {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .result__num {
    gap: 15px;
  }
}
.result__num .num {
  text-align: center;
}
.result__num .icon {
  text-align: center;
}
.result__price {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 620px;
  border: 3px solid #FDF2F4;
  border-radius: 8px;
  overflow: hidden;
  margin: 0 auto 25px;
}
@media screen and (max-width: 768px) {
  .result__price {
    display: block;
  }
}
.result__price .left {
  padding: 36px 0;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  width: 55%;
  font-size: 24px;
  font-weight: 500;
  background: #FDF2F4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #F56E88;
}
@media screen and (max-width: 768px) {
  .result__price .left {
    width: 100%;
    padding: 10px 10px;
    font-size: 4.8vw;
  }
}
.result__price .right {
  width: 45%;
}
@media screen and (max-width: 768px) {
  .result__price .right {
    width: 100%;
    padding: 20px;
  }
}
.result__price .right .title {
  text-align: center;
}
.result__price .right .price {
  font-size: 18px;
  color: #565688;
  text-align: center;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .result__price .right .price {
    font-size: 6.4vw;
  }
}
.result__price .right .price span {
  font-size: 48px;
}
@media screen and (max-width: 768px) {
  .result__price .right .price span {
    font-size: 12.8vw;
  }
}
.result__btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
@media screen and (max-width: 768px) {
  .result__btns {
    flex-direction: column;
  }
}
.result__btns .btn {
  width: 48.5%;
}
@media screen and (max-width: 768px) {
  .result__btns .btn {
    width: 100%;
  }
}
.result__btns .btn img {
  box-shadow: 4px 4px rgba(0, 191, 0, 0.3);
  border-radius: 50px;
  transition: 0.3s ease;
}
.result__btns .btn:hover {
  opacity: 1;
}
.result__btns .btn:hover img {
  box-shadow: none;
  transform: translate(4px, 4px);
}
.result__btns .btn:nth-child(2) img {
  box-shadow: 4px 4px #FFDEDE;
  border-radius: 50px;
  transition: 0.3s ease;
}
.result__btns .btn:nth-child(2):hover {
  opacity: 1;
}
.result__btns .btn:nth-child(2):hover img {
  box-shadow: none;
  transform: translate(4px, 4px);
}
.result__share {
  margin-top: 25px;
}
.result__share--head {
  margin-bottom: 20px;
  text-align: center;
  position: relative;
}
.result__share--head::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  height: 1px;
  width: 100%;
  border-bottom: 1px dashed #565688;
}
.result__share--head span {
  font-size: 16px;
  color: #565688;
  padding: 0 5px;
  background: #fff;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .result__share--head span {
    font-size: 4vw;
  }
}
.result__share ul {
  display: flex;
  justify-content: space-between;
  max-width: 620px;
  margin: 0 auto;
}
.result__share ul li {
  width: 32%;
}
.result__type {
  padding: 60px 0;
  max-width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .result__type {
    padding: 10.6666666667vw 5.3333333333vw;
  }
}
.result__type--head {
  position: relative;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto 20px;
  font-size: 24px;
  color: #565688;
}
@media screen and (max-width: 768px) {
  .result__type--head {
    font-size: 4.8vw;
    text-align: center;
  }
}
.result__type--head span {
  font-size: 32px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .result__type--head span {
    font-size: 5.8666666667vw;
  }
}
.result__type--head::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 60%;
  transform: translateY(-50%);
  width: 14px;
  height: 26px;
  background: url(../img/ashirai01.svg) no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .result__type--head::before {
    top: 80%;
  }
}
.result__type--head::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 60%;
  transform: translateY(-50%);
  width: 14px;
  height: 26px;
  background: url(../img/ashirai02.svg) no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .result__type--head::after {
    top: 80%;
  }
}
.result__type--lists {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .result__type--lists {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}
.result__type--list {
  border-radius: 8px;
  border: 3px solid #F56E88;
  overflow: hidden;
  background: #fff;
}
.result__type--list .head {
  background: #F56E88;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 0;
  gap: 6px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .result__type--list .head {
    text-align: center;
    line-height: 1.3;
    font-size: 4.2666666667vw;
    padding: 10px;
  }
}
.result__type--list .content {
  padding: 40px 20px 20px;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .result__type--list .content {
    padding: 5.3333333333vw;
  }
}
.result__type--list .content .star {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .result__type--list .content .star {
    margin-bottom: 5.3333333333vw;
  }
}
.result__type--list .content .text {
  color: #565688;
  line-height: 1.6;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .result__type--list .content .text {
    font-size: 3.4666666667vw;
  }
}

.aisyou {
  padding: 20px;
  background: #FFDEDE;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .aisyou img {
    max-width: 246px;
  }
}

.points {
  background: #FDF2F4;
  padding: 60px 20px;
}
@media screen and (max-width: 768px) {
  .points {
    padding: 5.3333333333vw;
  }
}
.points__lists {
  max-width: 800px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 0 auto;
}
.points__list {
  background: #fff;
  border: 3px solid #FFDEDE;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  border-radius: 10px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .points__list {
    display: block;
    border: 5px solid #FFDEDE;
  }
}
.points__list--contents {
  width: 62%;
}
@media screen and (max-width: 768px) {
  .points__list--contents {
    width: 100%;
    padding: 5.3333333333vw 0;
  }
}
.points__list--contents .num {
  margin-bottom: 10px;
}
.points__list--contents h3 {
  font-size: 20px;
  color: #565688;
  line-height: 1.4;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .points__list--contents h3 {
    font-size: 4.8vw;
  }
}
.points__list--contents h3 span {
  font-size: 24px;
  color: #F56E88;
}
@media screen and (max-width: 768px) {
  .points__list--contents h3 span {
    font-size: 5.8666666667vw;
  }
}
.points__list--img {
  width: 38%;
}
@media screen and (max-width: 768px) {
  .points__list--img {
    width: 100%;
  }
}
.points__list--img img {
  vertical-align: bottom;
}
@media screen and (max-width: 768px) {
  .points__list--img img {
    aspect-ratio: 1.5;
    transform: translateX(1px) scale(1.01);
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    width: 101%;
  }
}

.footer {
  padding: 60px 20px;
  background-color: #FFDEDE;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 10.6666666667vw 5.3333333333vw;
  }
}
.footer__title {
  margin-bottom: 25px;
  text-align: center;
}
.footer__cta {
  max-width: 800px;
  margin: 0 auto;
  padding: 45px 84px;
  background: #FDF2F4;
  border-radius: 30px;
}
@media screen and (max-width: 768px) {
  .footer__cta {
    padding: 11.7333333333vw 8vw;
  }
}
.footer__cta .title {
  font-size: 24px;
  line-height: 1.5;
  color: #F56E88;
  margin-bottom: 18px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .footer__cta .title {
    padding: 0 4vw;
    font-size: 4.2666666667vw;
  }
}
.footer__cta .bnr {
  margin-bottom: 18px;
}
@media screen and (max-width: 768px) {
  .footer__cta .bnr {
    padding: 0 4vw;
  }
}
.footer__cta .btn {
  text-align: center;
  display: block;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  max-width: 100%;
}
.footer__cta .btn img {
  box-shadow: 4px 4px rgba(0, 191, 0, 0.3);
  border-radius: 50px;
  transition: 0.3s ease;
}
.footer__cta .btn:hover {
  opacity: 1;
}
.footer__cta .btn:hover img {
  box-shadow: none;
  transform: translate(4px, 4px);
}

.question,
.question__end,
.result,
.points,
footer {
  display: none;
}

[id] {
  scroll-margin-top: 117px;
}/*# sourceMappingURL=style.css.map */