@charset "UTF-8";

/* Mixin */
/* main contents */
body {
  margin: 0;
  font-family: "YakuHanJP", "Noto Sans JP", "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", "游ゴシック", "メイリオ", Meiryo, Osaka,
    "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
  font-feature-settings: "palt" 1;
  background-image: url("../img/back.jpg");
  background-size: cover;
  color: #565656;
}

.animated {
  opacity: 0;
  transform: translateY(30px);
}

.animated.scroll-in {
  opacity: 1;
  transform: translateY(0);
  transition: 0.5s ease-out;
  transition-delay: 0.5s;
}

#loader-bg-img {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0px;
  left: 0px;
  z-index: 10;
  background-color: #fffefe;
}

.loader__wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
}

#loader-img {
  height: 0;
  background-image: url("../img/logo.svg");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  content: "";
}

@media screen and (max-width: 1024px) {
  #loader-img {
    width: 50%;
    margin: -15% 0 4% -25%;
    padding-bottom: 19.801980198%;
  }
}

@media screen and (min-width: 1025px) {
  #loader-img {
    width: 300px;
    margin: -59.5px 0 20px -150px;
    padding-bottom: 119px;
  }
}

#loader-circle {
  width: 50px;
  margin: 0 0 0 -25px;
  padding: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #e0a0ae;
  --_m: conic-gradient(#0000 10%, #000), linear-gradient(#000 0 0) content-box;
  -webkit-mask: var(--_m);
  mask: var(--_m);
  -webkit-mask-composite: source-out;
  mask-composite: subtract;
  animation: l3 1s infinite linear;
}

@keyframes l3 {
  to {
    transform: rotate(1turn);
  }
}

.hide {
  opacity: 0;
}

#wrap {
  width: 100%;
  background-color: #fffefe;
}

@media screen and (min-width: 1025px) {
  #wrap {
    width: 500px;
    margin: 0 auto;
  }
}

@media screen and (min-width: 1025px) {
  #menu {
    display: block;
    position: fixed;
    top: 175px;
    width: 220px;
    left: calc((100% - 500px - 220px) / 2);
    left: calc((100% - 500px) / 2 / 2 - 110px);
  }
}

@media screen and (max-width: 1024px) {
  #menu .menu__h1 {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2.5% 0;
    background-color: #fffefe;
    box-shadow: 0px 1px 5px 0px rgba(86, 86, 86, 0.2);
    z-index: 1;
  }
}

#menu .menu__h1 h1 {
  height: 0;
  margin: 0 auto;
  overflow: hidden;
  background-size: cover;
}

@media screen and (min-width: 1025px) {
  #menu .menu__h1 h1 {
    width: 202px;
    padding-top: 80px;
    margin-bottom: 32px;
    background-image: url("../img/logo.svg");
  }
}

@media screen and (max-width: 1024px) {
  #menu .menu__h1 h1 {
    width: 60%;
    padding-top: 8.0710659898%;
    background-image: url("../img/logo_mobile.svg");
    background-size: cover;
  }
}

@media screen and (max-width: 1024px) {
  #menu .menu__wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    position: fixed;
    bottom: 0;
    padding: 10px 0 14px;
    width: 100%;
    background-color: #fcff81;
    box-shadow: 0px -1px 5px 0px rgba(86, 86, 86, 0.2);
    z-index: 1;
  }
}

@media screen and (max-width: 1024px) {
  #menu .hidden {
    animation: fade 0.5s ease-in-out forwards;
    pointer-events: none;
  }

  @keyframes fade {
    from {
      opacity: 1;
    }

    to {
      opacity: 0;
    }
  }

  #menu .visible {
    animation: fadeOut 0.5s ease-in-out forwards;
    pointer-events: all;
  }

  @keyframes fadeOut {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }
}

.line,
.apply {
  display: block;
  width: 220px;
}

.line a,
.apply a {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 5.33% 0;
  border-radius: 9999px;
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  color: #fffefe;
  vertical-align: middle;
}

.line a:hover,
.apply a:hover {
  top: 4px;
  box-shadow: none;
}

@media screen and (max-width: 1024px) {

  .line a,
  .apply a {
    padding: 5.33% 0;
    font-size: 4vw;
  }
}

.line a {
  background-color: #02af01;
  box-shadow: 0 4px #017d01;
}

.apply a {
  background-color: #e0a0ae;
  box-shadow: 0 4px #ad7a89;
}

.apply a::after {
  position: relative;
  top: -2px;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin-left: 5px;
  background-image: url("../img/right.svg");
  background-size: cover;
  content: "";
}

@media screen and (max-width: 1024px) {
  .apply a::after {
    height: 4vw;
    width: 4vw;
  }
}

@media screen and (max-width: 1024px) {

  .menu__line,
  .menu__apply {
    width: 45%;
  }
}

@media screen and (max-width: 1024px) {
  .menu__line {
    margin-right: 2%;
  }
}

@media screen and (min-width: 1025px) {
  .menu__line a {
    margin-bottom: 16px;
  }
}

#qr {
  display: block;
  position: fixed;
  bottom: 40px;
  width: 128px;
  right: calc((100% - 500px) / 2 / 2 - 64px);
}

@media screen and (max-width: 1024px) {
  #qr {
    display: none;
  }
}

#qr .qr__heading {
  font-weight: 500;
  text-align: center;
}

#qr .qr__img {
  height: 128px;
  width: 128px;
}

@media screen and (max-width: 1024px) {
  #main-contents {
    margin-top: 12.6%;
  }
}

#main-contents .main__wrap {
  height: 0;
  margin: 0;
  overflow: hidden;
  background-size: cover;
}

@media screen and (min-width: 1025px) {
  #main-contents .main__wrap {
    width: 500px;
  }
}

@media screen and (max-width: 1024px) {
  #main-contents .main__wrap {
    width: 100%;
  }
}

#fv {
  position: relative;
  background-image: url("../img/fv.png");
}

@media screen and (min-width: 1025px) {
  #fv {
    padding-top: 827px;
  }
}

@media screen and (max-width: 1024px) {
  #fv {
    padding-top: 165.4%;
  }
}

#fv .fv__catch {
  position: absolute;
  height: 0;
  margin: 0;
  overflow: hidden;
  background-image: url("../img/fv__catch.png");
  background-size: cover;
  animation: floating-y 1.3s ease-in-out infinite alternate-reverse;
}

@keyframes floating-y {
  0% {
    transform: translateY(-3%);
  }

  100% {
    transform: translateY(0%);
  }
}

@media screen and (min-width: 1025px) {
  #fv .fv__catch {
    left: 15px;
    bottom: 186px;
    width: 470px;
    padding-top: 278px;
  }
}

@media screen and (max-width: 1024px) {
  #fv .fv__catch {
    left: 3%;
    bottom: 22.5%;
    width: 94%;
    padding-top: 55.6%;
  }
}

#problem {
  background-image: url("../img/problem.png");
}

@media screen and (min-width: 1025px) {
  #problem {
    padding-top: 608px;
  }
}

@media screen and (max-width: 1024px) {
  #problem {
    padding-top: 121.6%;
  }
}

#intro {
  background-image: url("../img/intro.png");
}

@media screen and (min-width: 1025px) {
  #intro {
    padding-top: 1247px;
  }
}

@media screen and (max-width: 1024px) {
  #intro {
    padding-top: 249.4%;
  }
}

#explan {
  background-image: url("../img/explan.png");
}

@media screen and (min-width: 1025px) {
  #explan {
    padding-top: 734px;
  }
}

@media screen and (max-width: 1024px) {
  #explan {
    padding-top: 146.8%;
  }
}

#advantage {
  background-image: url("../img/advantage.png");
}

@media screen and (min-width: 1025px) {
  #advantage {
    padding-top: 1074px;
  }
}

@media screen and (max-width: 1024px) {
  #advantage {
    padding-top: 214.8%;
  }
}

#flow {
  background-image: url("../img/flow.png");
}

@media screen and (min-width: 1025px) {
  #flow {
    padding-top: 1936px;
  }
}

@media screen and (max-width: 1024px) {
  #flow {
    padding-top: 387.2%;
  }
}

#tool {
  background-image: url("../img/tool.png");
}

@media screen and (min-width: 1025px) {
  #tool {
    padding-top: 1891px;
  }
}

@media screen and (max-width: 1024px) {
  #tool {
    padding-top: 378.2%;
  }
}

#price--1,
#price--2 {
  max-width: 100%;
  position: relative;
  background-image: url("../img/price.png");
}

@media screen and (min-width: 1025px) {
  .price__btn {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 86.93333333%;
    display: block;
    filter: drop-shadow(0 4px #419029);
  }
  .price__btn:hover {
    filter: initial;
    transform: translate(-50%, 5px);
  }
  .price__btn img {
    width: 100%;
  }
}

@media screen and (max-width: 1024px) {
  .price__btn {
    position: absolute;
    bottom: 5.3%;
    left: 50%;
    transform: translateX(-50%);
    width: 86.93333333%;
    display: block;
    filter: drop-shadow(0 4px #017d01);
  }
  .price__btn img {
    width: 100%;
  }
}

@media screen and (min-width: 1025px) {

  #price--1,
  #price--2 {
    padding-top: 185.8666%;
  }
}

@media screen and (max-width: 1024px) {
  #price--1,
  #price--2 {
    padding-top: 185.8666%;
    /* padding-top: 263.c2%; */
  }
}

#price--2 .price__wrap {
  position: absolute;
  bottom: 50px;
  left: 5%;
}

@media screen and (max-width: 1024px) {

  #price--1 .price__wrap,
  #price--2 .price__wrap {
    width: 100%;
    bottom: 3.9331%;
  }
}

#price--1 .price__wrap .price__line,
#price--1 .price__wrap .price__apply,
#price--2 .price__wrap .price__line,
#price--2 .price__wrap .price__apply {
  display: inline-block;
}

@media screen and (max-width: 1024px) {

  #price--1 .price__wrap .price__line,
  #price--1 .price__wrap .price__apply,
  #price--2 .price__wrap .price__line,
  #price--2 .price__wrap .price__apply {
    width: 44%;
  }
}

#price--1 .price__wrap .price__line,
#price--2 .price__wrap .price__line {
  margin-right: 5px;
}

@media screen and (max-width: 1024px) {

  #price--1 .price__wrap .price__line,
  #price--2 .price__wrap .price__line {
    margin-right: 1%;
  }
}

#reason {
  background-image: url("../img/reason.png");
}

@media screen and (min-width: 1025px) {
  #reason {
    padding-top: 1944px;
  }
}

@media screen and (max-width: 1024px) {
  #reason {
    padding-top: 388.8%;
  }
}

#voice {
  background-image: url("../img/voice.png");
}

@media screen and (min-width: 1025px) {
  #voice {
    padding-top: 1136px;
  }
}

@media screen and (max-width: 1024px) {
  #voice {
    padding-top: 227.2%;
  }
}

#support {
  background-image: url("../img/support.png");
}

@media screen and (min-width: 1025px) {
  #support {
    padding-top: 2300px;
  }
}

@media screen and (max-width: 1024px) {
  #support {
    padding-top: 460%;
  }
}

#qa {
  background-image: url("../img/qa.png");
}

@media screen and (min-width: 1025px) {
  #qa {
    padding-top: 734px;
  }
}

@media screen and (max-width: 1024px) {
  #qa {
    padding-top: 146.8%;
  }
}

.company {
  background: #fff;
}

.company__img {
  width: 100%;
}

/*# sourceMappingURL=style.css.map */