@charset "utf-8";

/* -----------------------------------
　スマホ用（画面幅750px以下）
----------------------------------- */
body {
  line-height: 1.5;
  font-family: "Roboto", "Helvetica", "Arial", "Noto Sans JP",
    "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-size: 16px;
  background-color: #ffffff;
  color: #282828;
}

img {
  max-width: 100%;
}

.pc-only {
  display: none;
}

.wrapper {
  width: 100%;
}
header {
  position: fixed;
  display: flex;
  width: 100%;
  height: 70px;
  padding: 10px 15px;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}
header .logo {
  width: 120px;
  height: auto;
}
.sns {
  display: flex;
  justify-content: center;
  align-items: center;
}
.sns li {
  width: 28px;
  height: 28px;
}
.sns li + li {
  margin-left: 18px;
}
.sns li a {
  display: block;
  width: 100%;
  height: 100%;
}
.sns li img {
  width: 28px;
  height: auto;
}

main {
  display: block;
}

.mv {
  padding: 100px 15px 51px;
  background: url(../images/bg01_sp.png) no-repeat center / 477px 701px;
}
.mv .lead {
  margin-bottom: 20px;
  font-size: 26px;
}
.mv .release {
  display: inline-block;
  padding: 8px 14px;
  background-color: #282828;
  color: #ffffff;
}
.mv .beta {
  display: inline-block;
  padding: 8px 14px;
  background-color: #ea6f08;
  color: #ffffff;
}
.mv .mockup {
  margin-top: 23px;
  text-align: center;
}
.mv .mockup img {
  width: 210px;
  height: auto;
}

#intro {
  padding: 50px 15px 40px;
  background: url(../images/bg02_sp.png) no-repeat center / auto 100%;
  font-size: 22px;
  text-align: center;
}
#intro h2 {
  margin-bottom: 30px;
}
#intro .problem {
  width: 100%;
  max-width: 440px;
  margin: 0 auto 20px;
}

#mission {
  padding: 40px 15px;
}
#mission h2 {
  position: relative;
  margin-bottom: 22px;
  color: #ea6f08;
  font-size: 22px;
  text-align: center;
}
#mission h2:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  margin-top: -0.5px;
  background-color: #dcdcdc;
  z-index: -1;
}
#mission h2 span {
  padding: 0 10px;
  background-color: #ffffff;
}
#mission .story .box,
#mission .story p + p {
  margin-top: 15px;
}
#mission .story .box:first-of-type {
  margin-top: 0;
}

#feature {
  padding: 40px 30px 30px;
  background-color: #ea6f08;
}
#feature h2 {
  color: #ffffff;
  font-size: 22px;
  text-align: center;
}
#feature .box {
  margin-top: 20px;
  padding: 30px 20px;
  background-color: #ffffff;
}
#feature .box .icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
}
#feature .box .text .lead {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: bold;
}
#feature .box .text .caution {
  margin-top: 10px;
}

#pre-entry {
  display: flex;
  height: 120px;
  background-color: #ffffff;
  justify-content: center;
  align-items: center;
}
#pre-entry .bt-entry {
  position: fixed;
  display: flex;
  bottom: 20px;
  left: 50%;
  width: 250px;
  height: 60px;
  margin-left: -125px;
  border-radius: 30px;
  box-shadow: 0 10px 20px rgb(40, 40, 40, 0.2);
  background-color: #ea6f08;
  color: #ffffff;
  font-size: 24px;
  font-weight: bold;
  justify-content: center;
  align-items: center;
}
#pre-entry .bt-entry.on {
  position: relative;
  top: 0;
  left: 0;
  margin: 0;
}
#pre-entry .bt-entry:active {
  box-shadow: none;
  background-color: #d16307;
}

#modal {
  position: fixed;
  display: flex;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(255, 255, 255, 0.5);
  justify-content: center;
  align-items: center;
}
#modal .modal-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
#modal .inner {
  position: relative;
  max-width: 450px;
  width: calc(100% - 20px);
  margin: 0 20px;
  padding: 25px 15px 20px;
  border-radius: 14px;
  border: 4px solid #ea6f08;
  background-color: #ffffff;
  box-shadow: 0 10px 20px rgb(40 40 40 / 20%);
  z-index: 5;
}
#modal h3 {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
#modal .attention {
  font-size: 14px;
}
#modal .form-area {
  margin-top: 10px;
}
#modal .form-area .form input {
  width: 100%;
  padding: 5px 10px;
  border: 1px solid #c4c4c4;
  border-radius: 8px;
  background-color: #ffffff;
  outline: none;
}
::placeholder {
  color: #aaaaaa;
}
input:focus::placeholder {
  color: transparent;
}
#modal .form-area .bt-submit {
  text-align: center;
}
#modal .form-area .bt-submit input {
  display: inline-block;
  margin-top: 12px;
  padding: 4px 17px 2px;
  border-radius: 8px;
  background-color: #ea6f08;
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
}
#modal .bt-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  border-radius: 10px;
  background-color: #c4c4c4;
}
#modal .bt-close:before,
#modal .bt-close:after {
  position: absolute;
  content: "";
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  transform: rotate(45deg);
  background-color: #ffffff;
}
#modal .bt-close:after {
  transform: rotate(-45deg);
}
/* ここからローディングCSS */
.loader {
  display: flex;
  justify-content: center;
}
.loader.off {
  display: none;
}
@keyframes rotate_pacman_half_up {
  0% {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
  }
  50% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
  100% {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
  }
}
@-webkit-keyframes rotate_pacman_half_down {
  0% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  50% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
@keyframes rotate_pacman_half_down {
  0% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  50% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
@-webkit-keyframes pacman-balls {
  75% {
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translate(-100px, -6.25px);
    transform: translate(-100px, -6.25px);
  }
}
@keyframes pacman-balls {
  75% {
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translate(-100px, -6.25px);
    transform: translate(-100px, -6.25px);
  }
}
.pacman {
  position: relative;
}
.pacman > div:nth-child(2) {
  -webkit-animation: pacman-balls 1s -0.99s infinite linear;
  animation: pacman-balls 1s -0.99s infinite linear;
}
.pacman > div:nth-child(3) {
  -webkit-animation: pacman-balls 1s -0.66s infinite linear;
  animation: pacman-balls 1s -0.66s infinite linear;
}
.pacman > div:nth-child(4) {
  -webkit-animation: pacman-balls 1s -0.33s infinite linear;
  animation: pacman-balls 1s -0.33s infinite linear;
}
.pacman > div:nth-child(5) {
  -webkit-animation: pacman-balls 1s 0s infinite linear;
  animation: pacman-balls 1s 0s infinite linear;
}
.pacman > div:first-of-type {
  width: 0px;
  height: 0px;
  border-right: 25px solid transparent;
  border-top: 25px solid #ea6f08;
  border-left: 25px solid #ea6f08;
  border-bottom: 25px solid #ea6f08;
  border-radius: 25px;
  -webkit-animation: rotate_pacman_half_up 0.5s 0s infinite;
  animation: rotate_pacman_half_up 0.5s 0s infinite;
  position: relative;
  left: -30px;
}
.pacman > div:nth-child(2) {
  width: 0px;
  height: 0px;
  border-right: 25px solid transparent;
  border-top: 25px solid #ea6f08;
  border-left: 25px solid #ea6f08;
  border-bottom: 25px solid #ea6f08;
  border-radius: 25px;
  -webkit-animation: rotate_pacman_half_down 0.5s 0s infinite;
  animation: rotate_pacman_half_down 0.5s 0s infinite;
  margin-top: -50px;
  position: relative;
  left: -30px;
}
.pacman > div:nth-child(3),
.pacman > div:nth-child(4),
.pacman > div:nth-child(5),
.pacman > div:nth-child(6) {
  background-color: #ea6f08;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  width: 10px;
  height: 10px;
  position: absolute;
  -webkit-transform: translate(0, -6.25px);
  transform: translate(0, -6.25px);
  top: 25px;
  left: 70px;
}
/* ここまでローディングCSS */

footer {
  padding: 20px 0;
  background-color: #282828;
  text-align: center;
}
footer .inner {
  padding: 0 15px;
}
footer .logo {
  width: 108px;
  height: auto;
  margin: 0 auto 15px;
}
footer .corp-info {
  color: #ffffff;
  font-size: 14px;
  margin-bottom: 10px;
}
footer .info {
  margin-bottom: 18px;
  color: #ffffff;
  font-size: 14px;
}

/* -----------------------------------
　PC用（画面幅751px以上）
----------------------------------- */
@media screen and (min-width: 751px) {
  body {
    font-size: 18px;
  }

  .pc-only {
    display: block;
  }
  .sp-only {
    display: none;
  }

  header {
    display: none;
  }

  .mv {
    padding: 0;
    background: url(../images/bg01_pc.png) no-repeat top center;
  }
  .mv .wrap {
    display: flex;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 56px 40px 116px;
    justify-content: space-between;
  }
  .mv .text .box {
    display: flex;
    margin-top: 79px;
    margin-bottom: 30px;
  }
  .mv .text .box .logo {
    width: 167px;
    height: auto;
    margin-right: 60px;
  }
  .mv .sns {
    margin-top: 26px;
  }
  .mv .lead {
    font-size: 48px;
  }
  .mv .release {
    margin-top: 80px;
    padding: 10px 22px;
    font-size: 22px;
  }
  .mv .mockup {
    margin: 0;
  }
  .mv .mockup img {
    width: 286px;
  }
  .mv .qr {
    display: flex;
    width: 170px;
    margin-top: 30px;
    flex-direction: column;
    align-items: center;
  }
  .mv .qr img {
    width: 100px;
    border: 1px solid #282828;
  }
  .mv .qr p {
    margin-top: 10px;
    background-color: #ffffff;
  }
  @media screen and (max-width: 960px) {
    .mv .lead {
      font-size: 36px;
    }
  }

  #intro {
    padding: 0;
    background: url(../images/bg02_pc.png) no-repeat center / 100% auto;
    font-size: 36px;
  }
  #intro .wrap {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px 60px;
  }
  #intro h2 {
    margin-bottom: 40px;
  }
  #intro .problem {
    max-width: 738px;
  }

  #mission {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 45px 0 60px;
  }
  #mission h2 {
    font-size: 36px;
  }
  #mission .story {
    display: flex;
    padding: 0 20px;
  }
  #mission .story .box {
    width: calc((100% - 40px) / 2);
    margin-top: 0;
  }
  #mission .story .box + .box {
    margin-left: 40px;
  }

  #feature {
    padding: 0;
  }
  #feature .inner {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 15px;
  }
  #feature h2 {
    font-size: 36px;
  }
  #feature .box {
    display: flex;
    margin-top: 40px;
    padding: 30px 40px;
    align-items: center;
    justify-content: flex-start;
  }
  #feature .box + .box {
    margin-top: 20px;
  }
  #feature .box .icon {
    margin: 0 40px 0 0;
  }
  #feature .box .text {
    font-size: 16px;
  }
  #feature .box .text .lead {
    margin-bottom: 10px;
    font-size: 18px;
  }
  #feature .box .text .caution {
    margin-top: 10px;
  }

  #pre-entry .bt-entry {
    bottom: 30px;
    left: auto;
    right: 30px;
    width: 270px;
    height: 70px;
    border-radius: 35px;
    font-size: 28px;
    cursor: pointer;
    transition-duration: 0.3s;
    transition-property: top, bottom;
  }
  #pre-entry .bt-entry:hover {
    bottom: 35px;
  }
  #pre-entry .bt-entry.on:hover {
    top: -5px;
  }

  #modal .inner {
    max-width: 820px;
    width: calc(100% - 50px);
    margin: 0 25px;
    padding: 40px 45px 50px;
    border-radius: 20px;
    font-size: 22px;
  }
  #modal h3 {
    margin-bottom: 15px;
    font-size: 28px;
  }
  #modal .attention {
    margin-top: 3px;
    font-size: 18px;
  }
  #modal .bt-close {
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    border-radius: 15px;
    cursor: pointer;
  }
  #modal .bt-close:before,
  #modal .bt-close:after {
    top: 7px;
    left: 13.5px;
    width: 3px;
    height: 16px;
  }
  #modal .form-area {
    display: flex;
    margin-top: 25px;
    justify-content: center;
  }
  #modal .form-area .form input {
    width: 420px;
    margin-right: 20px;
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 18px;
  }
  #modal .form-area .bt-submit input {
    margin: 0;
    padding: 6px 27px;
    border-radius: 10px;
    font-size: 22px;
  }

  footer {
    padding: 0;
    text-align: left;
  }
  footer .inner {
    display: flex;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    justify-content: space-between;
    align-items: center;
  }
  footer .logo {
    width: 162px;
    margin: 0;
  }
  footer .inner .box {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  footer .inner .box .info {
    margin-right: 100px;
    margin-bottom: 0;
  }
}
