@charset "UTF-8";
@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-10rem);
  }
  80% {
    transform: translateX(1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(10rem);
  }
  80% {
    transform: translateX(-1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(3rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
*,
*::before,
*::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

::-moz-selection {
  background-color: pink;
}

::selection {
  background-color: pink;
}

html {
  font-size: 62.5%;
  overflow-x: auto;
}

body {
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  vertical-align: bottom;
  -o-object-fit: cover;
     object-fit: cover;
}

a:link,
a:visited {
  color: inherit;
  text-decoration: none;
}

ul {
  padding-left: 0;
}

li {
  list-style: none;
}

textarea {
  resize: none;
}

body {
  background-color: #ffe4d1;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.5;
  color: #2e2c2b;
}

.container {
  width: 100%;
  max-width: 41rem;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 760px) {
  .container {
    padding-right: 0;
    padding-left: 0;
  }
}

.is-md-hide {
  display: block;
}
@media screen and (max-width: 760px) {
  .is-md-hide {
    display: none;
  }
}

.is-md-show {
  display: none;
}
@media screen and (max-width: 760px) {
  .is-md-show {
    display: block;
  }
}

/*リンクの形状*/
#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #942d2f;
  border-radius: 5px;
  width: 60px;
  height: 60px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s;
}

#page-top a:hover {
  background: #777;
}

/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}

/*　上に上がる動き　*/
#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*　下に下がる動き　*/
#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
.l-footer {
  background-color: #2e2c2b;
  padding: 18px 39px;
  text-align: center;
}
.l-footer__ul {
  display: flex;
  flex-direction: column;
  margin-bottom: 55px;
  align-items: flex-start;
  justify-items: flex-start;
}
.l-footer__a {
  color: #fff !important;
  text-decoration: underline !important;
  font-size: 16px;
  transition: all 0.3s;
}
.l-footer__a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
.l-footer__down {
  font-size: 10px;
  color: #fff;
}

.l-header {
  height: 56px;
  width: 100%;
  padding: 17px 18px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  background: linear-gradient(to right bottom, #ffe577, #ff3b76);
}

.p-step__up {
  padding-top: 26px;
  padding-bottom: 22px;
  background-color: #00b900;
  text-align: center;
}
.p-step__flex {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  margin-bottom: 9px;
}
.p-step__white {
  width: 40px;
}
.p-step__h2 {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}
.p-step__step {
  width: 182px;
  height: 40px;
  background-color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  color: #00b900;
  margin-right: auto;
  margin-left: auto;
  border-radius: 100px;
}
.p-step__content {
  font-size: 20px;
  font-weight: 700;
  text-align: left;
  line-height: 1.3;
}
.p-step__arrow {
  width: 56px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.p-step__small {
  font-size: 16px;
  margin-top: 5px;
  line-height: 1.2;
}
.p-step__child {
  position: relative;
  padding-top: 17px;
  padding-left: 29px;
  padding-right: 22px;
  display: flex;
  flex-direction: row;
  align-items: center;
  -moz-column-gap: 36px;
       column-gap: 36px;
  justify-content: flex-start;
  background-color: #fff;
}
.p-step__child--opposite {
  background-color: #fffcf3;
}
.p-step__img {
  width: 125px;
}

.p-faq {
  background: linear-gradient(to right bottom, #ffe577, #ff3b76);
  padding-top: 29px;
  padding-bottom: 21px;
  padding-left: 16px;
  padding-right: 16px;
  text-align: center;
}
.p-faq__title {
  margin-bottom: 26px;
  font-weight: 700;
  color: #fff;
}
.p-faq__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 15px;
}
.p-faq__child {
  width: 100%;
  background-color: #fff;
  padding: 22px 26px;
  border-radius: 5px;
  text-align: left;
}
.p-faq__h3 {
  margin-bottom: 18px;
  font-size: 18px;
  font-weight: 700;
}
.p-faq__p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
}

.p-line {
  padding: 22px 20px 28px;
  background-color: #3c3c3c;
  text-align: center;
}
.p-line__title {
  margin-bottom: 16px;
  font-weight: 600;
  font-size: 17px;
  color: #fff;
}
.p-line__button {
  width: 100%;
  height: 80px;
  display: flex !important;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding-left: 17px;
  border-radius: 20px;
  background-color: #00b900;
  transition: all 0.3s;
}
.p-line__button:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
.p-line__button-text {
  font-size: 24px;
  color: #fff;
  font-weight: 700;
}
.p-line__icon {
  width: 31px;
}

.p-fv {
  padding: 40px 22px 216px;
  background: url(../img/fv.png);
  background-position: center;
  background-size: cover;
}
.p-fv__h1 {
  margin: 0;
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 26px;
}
.p-fv__sub-title {
  font-size: 24px;
  margin-bottom: 7px;
  font-weight: 700;
}
.p-fv__circles {
  text-align: center;
  background-color: #fffcf3;
  border-radius: 50%;
  box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.05);
  padding-top: 24px;
  padding-bottom: 17px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 158px;
  height: 158px;
  position: relative;
}
.p-fv__circle {
  position: absolute;
  top: 7px;
  left: -10px;
}
.p-fv__up {
  font-size: 16px;
  font-weight: 700;
}
.p-fv__82 {
  width: 110px;
}
.p-fv__down {
  font-size: 20px;
  font-weight: 700;
}

.p-condition {
  padding-top: 24px;
  padding-bottom: 19px;
  padding-left: 16px;
  padding-right: 16px;
  background-color: #fff5e6;
  text-align: center;
}
.p-condition__h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}
.p-condition__wrap {
  border-radius: 10px;
  background-color: #fff;
  padding: 23px 26px;
  font-size: 17px;
  font-weight: 400;
  position: relative;
  text-align: left;
}
.p-condition__circle {
  position: absolute;
  width: 30px;
  height: 30px;
  top: -16px;
  left: 0;
}

.p-noneed {
  padding-top: 29px;
  padding-bottom: 29px;
  background-color: #fff;
  padding-right: 16px;
}
.p-noneed__title-group {
  display: flex;
  flex-direction: row;
  margin-bottom: 29px;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 9px;
       column-gap: 9px;
}
.p-noneed__good {
  width: 40px;
}
.p-noneed__h2 {
  font-size: 28px;
  font-weight: 700;
}
.p-noneed__wrap {
  display: flex;
  flex-direction: row;
  -moz-column-gap: 21px;
       column-gap: 21px;
  justify-content: center;
  align-items: center;
}
.p-noneed__img {
  width: 190px;
}
.p-noneed__description {
  font-size: 17px;
  font-weight: 400;
}

.p-reason {
  padding: 28px 16px 18px;
  background: linear-gradient(to right bottom, #ffe577, #ff3b76);
}
.p-reason__titles {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
  margin-bottom: 20px;
}
.p-reason__icon {
  width: 80px;
}
.p-reason__title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
}
.p-reason__child {
  padding: 20px;
  border-radius: 5px;
  background-color: #fff;
}
.p-reason__child:not(:last-child) {
  margin-bottom: 15px;
}
.p-reason__up {
  -moz-column-gap: 13px;
       column-gap: 13px;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 13px;
}
.p-reason__good {
  width: 30px;
}
.p-reason__small-title {
  font-size: 21px;
  font-weight: 700;
}
.p-reason__p {
  font-size: 18px;
}

.p-osusume {
  padding: 25px 16px 18px;
  background-color: #fff5e6;
  text-align: center;
}
.p-osusume__h2 {
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 28px;
  line-height: 1.3;
}
.p-osusume__img {
  width: 100%;
  margin-bottom: 21px;
}
.p-osusume__box {
  border-radius: 10px;
  background-color: #fff;
  padding: 27px 24px;
}
.p-osusume__ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 26px;
  text-align: left;
}
.p-osusume__li {
  display: flex;
  flex-direction: row;
  align-items: center;
  -moz-column-gap: 16px;
       column-gap: 16px;
  font-weight: 700;
}
.p-osusume__check {
  width: 30px;
}

.p-image {
  padding: 32px 16px 28px;
  background-color: #fff5e6;
  text-align: center;
}
.p-image__titles {
  display: flex;
  flex-direction: row;
  align-items: center;
  -moz-column-gap: 9px;
       column-gap: 9px;
  margin-bottom: 16px;
}
.p-image__icon {
  width: 40px;
}
.p-image__h2 {
  font-size: 26px;
  font-weight: 700;
}
.p-image__description {
  font-size: 18px;
  margin-bottom: 31px;
}
.p-image__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 21px;
}
.p-image__child {
  border-radius: 10px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.p-image__img {
  height: 220px;
  width: 100%;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.p-image__content {
  padding: 20px 26px 24px;
  text-align: center;
  background-color: #fff;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.p-image__h3 {
  font-size: 20px;
  margin-bottom: 16px;
  font-weight: 700;
}
.p-image__price {
  font-size: 20px;
  font-weight: 700;
  display: inline-block;
  background: linear-gradient(to right, #ffe577, #ff3b76);
  background-repeat: no-repeat;
  background-size: 100% 0.2em;
  background-position: 0 90%;
}
.p-image__detail {
  font-size: 18px;
  margin-bottom: 15px;
  line-height: 1.6;
}

.p-message {
  background-color: #fffcf3;
  padding-top: 32px;
  padding-bottom: 38px;
  padding-left: 16px;
  padding-right: 16px;
  text-align: center;
}
.p-message__sub-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 7px;
}
.p-message__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 27px;
}
.p-message__img {
  border-radius: 10px;
  width: 100%;
  margin-bottom: 36px;
}
.p-message__message {
  margin-bottom: 27px;
  font-size: 18px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-align: left;
  line-height: 1.6;
}
.p-message__name {
  font-size: 16px;
  text-align: right;
}

.p-magnify {
  padding-top: 24px;
  padding-bottom: 19px;
  padding-left: 16px;
  padding-right: 16px;
  background-color: #fff5e6;
  text-align: center;
}
.p-magnify__h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 25px;
}
.p-magnify__wrap {
  border-radius: 10px;
  background-color: #fff;
  padding: 23px 26px;
  font-size: 17px;
  font-weight: 400;
  position: relative;
  text-align: left;
}
.p-magnify__circle {
  position: absolute;
  width: 30px;
  height: 30px;
  top: -16px;
  left: 0;
}

.p-flow__up {
  padding-top: 26px;
  padding-bottom: 22px;
  background: linear-gradient(to right bottom, #ffe577, #ff3b76);
  text-align: center;
}
.p-flow__flex {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  margin-bottom: 9px;
}
.p-flow__flow {
  font-size: 22px;
  font-weight: 700;
  color: #ff7576;
  background-color: #fff;
  width: 182px;
  height: 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  margin: 0 auto;
}
.p-flow__white {
  width: 40px;
}
.p-flow__h2 {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}
.p-flow__step {
  width: 182px;
  height: 40px;
  background-color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  color: #00b900;
  margin-right: auto;
  margin-left: auto;
  border-radius: 100px;
}
.p-flow__content {
  font-size: 19px;
  font-weight: 700;
  text-align: left;
  line-height: 1.3;
}
.p-flow__arrow {
  width: 56px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.p-flow__small {
  font-size: 15px;
  margin-top: 11px;
  line-height: 1.2;
}
.p-flow__child {
  position: relative;
  padding-top: 17px;
  padding-left: 29px;
  padding-right: 22px;
  display: flex;
  flex-direction: row;
  align-items: center;
  -moz-column-gap: 27px;
       column-gap: 27px;
  justify-content: flex-start;
  background-color: #fff;
}
.p-flow__child--opposite {
  background-color: #fffcf3;
}
.p-flow__child--special {
  -moz-column-gap: 45px;
       column-gap: 45px;
  padding-bottom: 43px;
  padding-top: 40px;
}
.p-flow__img {
  width: 125px;
}
.p-flow__img--special {
  width: 96px;
  margin: 0 auto;
  margin-left: 12px;
}

.p-needless__up {
  background-color: #3c3c3c;
  padding-left: 26px;
  padding-right: 26px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 12px;
       column-gap: 12px;
  padding-top: 14px;
  padding-bottom: 10px;
}
.p-needless__icon {
  width: 68px;
}
.p-needless__left {
  color: #fff;
  font-weight: 700;
  font-size: 16px;
}
.p-needless__left span {
  font-size: 18px;
}
.p-needless__content {
  padding: 34px 23px 31px;
  background-color: #fff;
}
.p-needless__description {
  font-size: 17px;
  font-weight: 400;
}
.p-needless__iphone-group {
  display: flex;
  flex-direction: row;
  justify-content: center;
  -moz-column-gap: 19px;
       column-gap: 19px;
  margin-bottom: 55px;
}
.p-needless__iphone {
  width: 156px;
  height: 321px;
}
.p-needless__h2 {
  font-size: 24px;
  font-weight: 700;
  display: inline-block;
  background: linear-gradient(to right, #ffe577, #ff3b76);
  background-repeat: no-repeat;
  background-size: 100% 0.2em;
  background-position: 0 90%;
}
.p-needless__h2--2 {
  margin-bottom: 18px;
}
.p-needless__down-group {
  text-align: center;
}
.p-needless__82 {
  font-size: 32px;
}
.p-needless__h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.p-needless__group:first-child {
  margin-bottom: 38px;
}
.p-needless__graphs {
  display: flex;
  flex-direction: row;
  -moz-column-gap: 6px;
       column-gap: 6px;
}
.p-needless__graph-left {
  width: 138px;
  height: 71px;
  font-size: 24px;
  color: #fff;
  font-weight: 700;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, #ffe577, #ff3b76);
  line-height: 1.2;
}
.p-needless__graph-right {
  width: 199px;
  height: 71px;
  font-weight: 700;
  font-size: 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: #efefef;
}
.p-needless__graph-right--2 {
  font-size: 20px;
}
.p-needless__graph-right span {
  color: #2b97f5;
}
.p-needless__good {
  width: 40px;
}
.p-needless__down-title {
  font-size: 28px;
  font-weight: 700;
}
.p-needless__down-titles {
  margin-bottom: 21px;
  display: flex;
  flex-direction: row;
  align-self: center;
  justify-content: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
}/*# sourceMappingURL=style.css.map */