@charset "UTF-8";
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@-webkit-keyframes scale-in {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes scale-in {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@-webkit-keyframes blinking {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes blinking {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes walking {
  0% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
  50% {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
  100% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
}

@keyframes walking {
  0% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
  50% {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
  100% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
}

@-webkit-keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes flip {
  0% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  100% {
    -webkit-transform: translate(0);
            transform: translate(0);
    visibility: hidden;
  }
}

@keyframes flip {
  0% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  100% {
    -webkit-transform: translate(0);
            transform: translate(0);
    visibility: hidden;
  }
}

@-webkit-keyframes top-down {
  0% {
    -webkit-transform: translateY(-80px);
            transform: translateY(-80px);
    visibility: hidden;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    visibility: visible;
  }
}

@keyframes top-down {
  0% {
    -webkit-transform: translateY(-80px);
            transform: translateY(-80px);
    visibility: hidden;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    visibility: visible;
  }
}

@-webkit-keyframes sp-top-down {
  0% {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
    visibility: hidden;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    visibility: visible;
  }
}

@keyframes sp-top-down {
  0% {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
    visibility: hidden;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    visibility: visible;
  }
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  100% {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  100% {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}

@font-face {
  font-family: "pixel-r";
  src: url("./fonts/PixelMplus10-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "bebas";
  src: url("./fonts/Bebas-Regular.ttf") format("truetype");
}

body {
  min-width: 1040px;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.025em;
}

body.is-open {
  overflow-y: hidden;
}

a {
  display: inline-block;
  text-decoration: none;
  color: black;
  cursor: pointer;
}

img {
  display: inline-block;
  height: auto;
}

.inner {
  max-width: 1060px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.scale-in {
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-animation: 2s scale-in forwards;
          animation: 2s scale-in forwards;
}

.btn-top {
  position: fixed;
  right: 10px;
  top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 24px;
  font-weight: bold;
  z-index: 100;
}

.btn-top > div {
  -webkit-animation: 2s walking infinite;
          animation: 2s walking infinite;
}

.btn-top span {
  margin-right: 10px;
}

.btn-top.is-show {
  visibility: visible;
  opacity: 1;
}

.mv {
  width: 100%;
  height: 600px;
  min-height: 580px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-image: url(images/mainvisual.png);
  background-size: cover;
  background-position: center;
}

.mv nav {
  position: absolute;
  top: 30px;
  left: 8px;
}

.mv nav ul li {
  margin-bottom: 30px;
}

.mv nav ul li a {
  width: 170px;
  padding: 25px 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  color: white;
  border-radius: 6px;
}

.mv nav ul li a:hover {
  background-color: #cbc5c6;
  color: black;
  opacity: 1;
}

.mv .logos {
  margin: 0 auto 18px auto;
  display: table;
  -webkit-transform: scale(0);
          transform: scale(0);
}

.mv .logo1 {
  margin-right: 32px;
  width: 148px;
}

.mv .logo2 {
  width: 254px;
}

.mv .box1 {
  width: 700px;
  margin: 0 auto;
  padding: 25px 40px 50px;
  text-align: center;
  font-family: "pixel-r";
  background-color: black;
  color: #e8e4e4;
  border: 5px solid white;
  border-radius: 10px;
}

.mv .box1 h1 {
  margin-bottom: 20px;
  font-size: 24px;
  letter-spacing: 0.025em;
}

.mv .box1 p {
  line-height: 24px;
}

.mv .box2 {
  margin: -40px auto 0;
  padding: 6px 60px 10px;
  text-align: center;
  font-family: "pixel-r";
  font-size: 42px;
  background-color: black;
  color: #e8e4e4;
  border: 5px solid white;
  border-radius: 10px;
}

.mv .box2 span:first-of-type {
  display: inline-block;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  opacity: 0;
  -webkit-animation: 0.6s blinking infinite;
          animation: 0.6s blinking infinite;
}

.mv .box2 span:last-of-type {
  display: inline-block;
  margin-left: 22px;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}

section {
  position: relative;
}

.back-title {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 300px;
  line-height: 1;
  font-family: "pixel-r";
  text-align: center;
  color: #f8f7f7;
}

.section-title {
  font-family: "bebas";
  font-size: 70px;
  line-height: 50px;
  position: relative;
  z-index: 2;
}

.section-title::after {
  margin-top: 22px;
  display: block;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: normal;
}

.concept .inner {
  padding: 200px 20px 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.concept .section-title {
  margin-right: 61px;
}

.concept .section-title::after {
  content: "コンセプト";
}

.concept h3 {
  margin-top: -5px;
  margin-bottom: 20px;
  line-height: 50px;
  font-size: 36px;
  font-weight: bold;
  font-style: normal;
}

.concept .text {
  font-size: 18px;
  line-height: 30px;
}

.concept h2 {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
}

.concept h2.is-active {
  -webkit-animation: 1s fadeInUp forwards;
          animation: 1s fadeInUp forwards;
}

.concept .box {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
}

.concept .box.is-active {
  -webkit-animation: 1s fadeInUp forwards;
          animation: 1s fadeInUp forwards;
}

.recommend {
  background-color: #eee;
}

.recommend .inner {
  padding: 220px 0 60px;
}

.recommend .back-title {
  color: #e8e4e4;
}

.recommend .section-title {
  margin-bottom: 120px;
  text-align: center;
}

.recommend .section-title::after {
  content: "こんな方におすすめです！";
}

.recommend .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.recommend .item {
  width: 31%;
  margin-bottom: 70px;
  text-align: center;
}

.recommend .item > div {
  height: 300px;
  margin-bottom: 12px;
}

.recommend .item img {
  width: 80%;
}

.recommend .item:nth-of-type(3) img {
  width: 67%;
}

.recommend .item:nth-of-type(4) img {
  width: 73%;
}

.recommend .item:nth-of-type(5) img {
  width: 81%;
}

.recommend .item:nth-of-type(6) img {
  width: 77%;
}

.recommend .item h3 {
  margin-bottom: 14px;
  font-size: 24px;
  font-weight: bold;
}

.recommend .item p {
  font-size: 18px;
  line-height: 30px;
}

.service {
  padding: 240px 0px 180px;
  background-image: url(images/bg-service.png);
  background-size: cover;
  background-position: center;
}

.service .back-title {
  top: 50px;
}

.service .section-title {
  margin-bottom: 100px;
  text-align: center;
}

.service .section-title::after {
  content: "サービス一覧";
}

.service .deco {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.service .number {
  font-family: "pixel-r";
  font-size: 100px;
  margin-top: -14px;
  padding: 0 20px;
}

.service .service-image {
  position: absolute;
  top: 86px;
  width: 38vw;
  min-width: 420px;
  -webkit-box-shadow: 0 5px 5px #d3d3cd;
          box-shadow: 0 5px 5px #d3d3cd;
}

.service .texts {
  width: 70vw;
  padding: 86px 0;
  position: relative;
  background-color: white;
  -webkit-box-shadow: 0 41px 51px rgba(211, 211, 205, 0.46);
          box-shadow: 0 41px 51px rgba(211, 211, 205, 0.46);
}

.service .texts dl {
  margin-bottom: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  letter-spacing: 0.165em;
}

.service .texts dt {
  width: 140px;
}

.service .text {
  margin-top: 24px;
  margin-bottom: 30px;
  line-height: 20px;
  letter-spacing: 0.165em;
}

.service .btn {
  margin-left: 24vw;
  padding: 30px 64px 30px 48px;
  position: relative;
  font-size: 24px;
  font-weight: bold;
  background-color: #5393ea;
  color: white;
  text-align: center;
  -webkit-box-shadow: 0 3px 3px #9cbdea;
          box-shadow: 0 3px 3px #9cbdea;
}

.service .btn::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 1px;
  position: absolute;
  left: -15px;
  top: 50%;
  background-color: #030303;
}

.service .btn:hover {
  background-color: #3c6cad;
}

.service .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
}

.service .box:not(:last-of-type) {
  margin-bottom: 125px;
}

.service .box h3 {
  margin-bottom: 20px;
  padding-bottom: 30px;
  letter-spacing: 0.105em;
  font-size: 36px;
  font-weight: bold;
  border-bottom: 2px solid #adadad;
}

.service .box h3::after {
  display: inline-block;
  font-size: 14px;
}

.service .box1 {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.service .box1 .number {
  margin-right: 40px;
  border-left: 2px solid #adadad;
}

.service .box1 h3 {
  margin-left: 17vw;
}

.service .box1 h3::after {
  content: "CONTACT";
  margin-left: 20px;
}

.service .box1 dl {
  margin-left: 20vw;
}

.service .box1 .text {
  margin-left: 20vw;
  margin-right: 10vw;
}

.service .box1 .service-image {
  right: 56vw;
}

.service .box2 {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.service .box2 .number {
  margin-left: 50px;
  border-right: 2px solid #adadad;
}

.service .box2 h3 {
  margin-right: 17vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.service .box2 h3::after {
  content: "MAYA CALENDAR FOR HUMAN";
  margin-right: 20px;
}

.service .box2 dl {
  margin-left: 10vw;
}

.service .box2 .text {
  margin-right: 20vw;
  margin-left: 10vw;
}

.service .box2 .btn {
  margin-left: 12vw;
}

.service .box2 .service-image {
  left: 56vw;
}

.service .box3 {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.service .box3 .number {
  margin-right: 40px;
  border-left: 2px solid #adadad;
}

.service .box3 h3 {
  margin-left: 17vw;
}

.service .box3 h3::after {
  content: "MAYA CALENDAR FOR PET";
  margin-left: 20px;
}

.service .box3 dl {
  margin-left: 20vw;
}

.service .box3 .text {
  margin-left: 20vw;
  margin-right: 10vw;
}

.service .box3 .service-image {
  right: 56vw;
}

.service .line {
  position: absolute;
  left: calc(50% - 1px);
  bottom: 0;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  display: inline-block;
  width: 2px;
  height: 110px;
  background-color: black;
}

.merit {
  position: relative;
}

.merit .back-title {
  top: 54px;
}

.merit .inner {
  max-width: 1100px;
  padding: 250px 20px 110px;
}

.merit .section-title {
  margin-bottom: 110px;
  text-align: center;
}

.merit .section-title::after {
  content: "「自分探し」で、わかること。";
}

.merit .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.merit .item {
  width: 32%;
}

.merit .number {
  margin-bottom: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 32.4px;
  font-family: "pixel-r";
}

.merit .number::after {
  content: "";
  display: inline-block;
  margin-left: 6px;
  -webkit-box-flex: 3;
      -ms-flex-positive: 3;
          flex-grow: 3;
  border-bottom: 2px solid;
  -webkit-transform: translateY(-14px);
          transform: translateY(-14px);
}

.merit .texts {
  min-height: 486px;
  padding: 16px;
  background-color: #f8f7f7;
  border-radius: 8px;
}

.merit .texts p {
  line-height: 1.5;
}

.merit .texts img {
  width: 100%;
  margin-bottom: 20px;
}

.merit h3 {
  margin-bottom: 30px;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
}

.voice {
  padding: 250px 0 60px;
}

.voice .back-title {
  top: 50px;
}

.voice .section-title {
  margin-bottom: 64px;
  text-align: center;
}

.voice .section-title::after {
  content: "お客様の声";
}

.voice .voice-image {
  width: 48.3vw;
}

.voice .texts {
  width: 50vw;
  margin-top: 60px;
  padding: 60px;
  background-color: white;
  -webkit-box-shadow: 0 41px 51px rgba(211, 211, 205, 0.46);
          box-shadow: 0 41px 51px rgba(211, 211, 205, 0.46);
}

.voice h3 {
  margin-bottom: 30px;
  padding-left: 20px;
  line-height: 47px;
  position: relative;
  font-size: 32px;
  font-weight: bold;
}

.voice h3::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 76%;
  top: 12%;
  left: 0;
  background-color: black;
}

.voice .text {
  font-size: 18px;
  line-height: 32px;
}

.voice .box1,
.voice .box3 {
  margin-bottom: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.voice .box1 .texts,
.voice .box3 .texts {
  margin-left: -10vw;
}

.voice .box2 {
  margin-bottom: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.voice .box2 .texts {
  margin-right: -10vw;
}

.sub-visual {
  height: 330px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  background-image: url(./images/sub-visual.png);
  background-size: cover;
  background-position: center;
}

.sub-visual::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(3, 3, 3, 0.5);
}

.sub-visual h3 {
  position: relative;
  font-family: "pixel-r";
  font-size: 42px;
  color: white;
  z-index: 2;
}

.discovery .back-title {
  top: 60px;
}

.discovery .inner {
  padding: 275px 20px 150px;
  overflow-x: hidden;
}

.discovery .section-title {
  margin-bottom: 56px;
  text-align: center;
}

.discovery .section-title::after {
  content: "自分探しの第一歩！あなたの本質がゲームキャラになって登場します。";
}

.discovery .image-space {
  margin-bottom: 61px;
  text-align: center;
}

.discovery .discovery-image {
  -webkit-animation: rotation 10s linear infinite;
          animation: rotation 10s linear infinite;
}

.discovery .text {
  margin-bottom: 30px;
  text-align: center;
}

.discovery .text span {
  margin-left: 20px;
  display: inline-block;
}

.discovery form {
  text-align: center;
}

.discovery form a {
  display: table;
  margin: 38px auto 0 auto;
  padding: 30px 160px;
  position: relative;
  font-size: 24px;
  font-weight: bold;
  background-color: #5393ea;
  color: white;
  text-align: center;
  -webkit-box-shadow: 0 3px 3px #9cbdea;
          box-shadow: 0 3px 3px #9cbdea;
}

.discovery form a::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 1px;
  position: absolute;
  left: -15px;
  top: 50%;
  background-color: #030303;
}

.discovery form a:hover {
  background-color: #3c6cad;
}

.discovery form select {
  border: 2px solid black;
  background-color: white;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  border-radius: 0px;
}

.discovery select:nth-of-type(1) {
  width: 280px;
  padding: 10px;
  margin-right: 10px;
}

.discovery .min-device {
  display: none;
}

.discovery select:nth-of-type(2) {
  width: 100px;
  padding: 10px;
  margin-right: 10px;
}

.discovery select:nth-of-type(3) {
  width: 100px;
  padding: 10px;
}

.result {
  display: none;
  position: relative;
  background-image: url(images/bg-result.png);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  -webkit-transition: 0.7s;
  transition: 0.7s;
}

.result::after {
  content: "";
  width: 200%;
  height: 200%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: -webkit-gradient(linear, right bottom, left top, color-stop(50%, grey), color-stop(51%, transparent));
  background: linear-gradient(to top left, grey 50%, transparent 51%);
  z-index: 10;
}

.result .result-loading {
  position: absolute;
  width: 100%;
  padding: 50px 10px;
  text-align: center;
  font-size: 30px;
  top: 0;
  left: 0;
  color: white;
  -webkit-transition: 0.7s;
  transition: 0.7s;
  z-index: 20;
  -webkit-animation: blinking 0.8s ease-out infinite;
          animation: blinking 0.8s ease-out infinite;
}

.result .result-loading.end {
  opacity: 0;
  visibility: hidden;
}

.result .result-content {
  position: relative;
}

.result .btn-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(255, 255, 255, 0.8);
}

.result .btn-close span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: black;
}

.result .btn-close span:first-of-type {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.result .btn-close span:last-of-type {
  margin-top: -2px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.result .result-inner {
  max-width: 1120px;
  min-height: 72vw;
  margin: 0 auto;
  padding: 20px 20px 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.result h3 {
  width: 487px;
  display: table;
  padding: 30px;
  margin-left: 30px;
  margin-bottom: 20px;
  position: relative;
  letter-spacing: 0.025em;
  font-size: 30px;
  font-family: "pixel-r";
  background-color: black;
  color: #e8e4e4;
  border: 5px solid white;
  border-radius: 10px;
  z-index: 2;
}

.result h3 span {
  display: inline-block;
  margin-top: 10px;
  font-size: 40px;
}

.result .wrapper2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.result .character-space {
  margin-top: -30px;
  margin-left: 130px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.result .character {
  width: 340px;
  height: 340px;
  margin: -40px 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-image: url(images/bokashi.png);
  background-position: center;
  background-size: cover;
}

.result .character img {
  width: 100px;
}

.result .character-other {
  width: 340px;
  margin: 20px auto 10px;
  position: relative;
  z-index: 2;
}

.result .wrapper {
  margin: 0 auto 36px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.result .box {
  width: 48%;
  padding: 30px 28px 44px;
  position: relative;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 2;
}

.result .box .title {
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.result .box .title img {
  width: 64px;
  margin-right: 30px;
}

.result .box h4 {
  padding-bottom: 8px;
  letter-spacing: 0.145em;
  font-weight: bold;
  font-size: 24px;
}

.result .box dl {
  letter-spacing: 0.025em;
  margin-bottom: 20px;
  margin-left: 8px;
}

.result .box dl:last-of-type {
  margin-bottom: 45px;
}

.result .box dt {
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 20px;
}

.result .box dd {
  line-height: 1.5;
}

.result .box .attention {
  font-size: 1.1em;
}

.result .sp-character-other {
  display: none;
}

.result .result-btn {
  margin: 0 auto;
  padding: 30px 160px;
  position: relative;
  font-size: 24px;
  font-weight: bold;
  background-color: #5393ea;
  color: white;
  text-align: center;
  -webkit-box-shadow: 0 3px 3px #9cbdea;
          box-shadow: 0 3px 3px #9cbdea;
}

.result .result-btn::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 1px;
  position: absolute;
  left: -15px;
  top: 50%;
  background-color: #030303;
}

.result .result-btn:hover {
  background-color: #3c6cad;
}

.result .result-btn span {
  display: inline-block;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.result .result-btn br {
  display: none;
}

.result.is-load {
  display: block;
}

.result.is-active::after {
  -webkit-animation: flip 1.9s cubic-bezier(0.4, 0, 0.2, 1) forwards;
          animation: flip 1.9s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.message {
  background-color: #f8f8f8;
}

.message .back-title {
  color: #f2f2f2;
}

.message .inner {
  padding: 206px 20px 60px;
}

.message .section-title {
  margin-bottom: 85px;
  text-align: center;
}

.message .section-title::after {
  content: "カウンセラーからのメッセージ";
}

.message .box1 {
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.message .box1 .text {
  margin-right: 30px;
  line-height: 20px;
  font-size: 16px;
  width: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.message .box1 img {
  width: 48%;
}

.message .box2 {
  padding: 25px 20px 32px;
  border: 1px solid black;
}

.message .box2 h3 {
  margin-bottom: 18px;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
}

.message .box2 .text {
  margin-bottom: 28px;
  text-align: center;
  line-height: 24px;
  font-size: 18px;
}

.message .box2 h4 {
  text-align: center;
  line-height: 24px;
  font-size: 18px;
}

.message .skills {
  max-width: 530px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.message .skills li {
  width: 50%;
  line-height: 24px;
  font-size: 18px;
}

.game-over {
  height: 265px;
  padding: 70px 20px 60px;
  text-align: center;
  font-family: "pixel-r";
  font-weight: bold;
  background-image: url(./images/bg-gameover.png);
  background-size: cover;
  background-position: center;
}

.game-over h3 {
  margin-bottom: 25px;
  letter-spacing: 0.105em;
  font-size: 80px;
}

.game-over h3 span {
  display: inline-block;
  visibility: hidden;
  -webkit-transform: translateY(-80px);
          transform: translateY(-80px);
}

.game-over h3 span:nth-of-type(1) {
  -webkit-animation-delay: 0.18s;
          animation-delay: 0.18s;
}

.game-over h3 span:nth-of-type(2) {
  -webkit-animation-delay: 0.36s;
          animation-delay: 0.36s;
}

.game-over h3 span:nth-of-type(3) {
  -webkit-animation-delay: 0.54s;
          animation-delay: 0.54s;
}

.game-over h3 span:nth-of-type(4) {
  -webkit-animation-delay: 0.72s;
          animation-delay: 0.72s;
}

.game-over h3 span:nth-of-type(5) {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}

.game-over h3 span:nth-of-type(6) {
  -webkit-animation-delay: 1.08s;
          animation-delay: 1.08s;
}

.game-over h3 span:nth-of-type(7) {
  -webkit-animation-delay: 1.36s;
          animation-delay: 1.36s;
}

.game-over h3 span:nth-of-type(8) {
  -webkit-animation-delay: 1.54s;
          animation-delay: 1.54s;
}

.game-over .continue {
  font-size: 50px;
  opacity: 0;
  visibility: hidden;
}

.game-over .continue span:first-of-type {
  display: inline-block;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  opacity: 0;
  -webkit-animation: 0.6s blinking infinite;
          animation: 0.6s blinking infinite;
}

.game-over .continue span:last-of-type {
  display: inline-block;
  margin-left: 10px;
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
}

.game-over.is-active h3 span {
  -webkit-animation-name: top-down;
          animation-name: top-down;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.game-over.is-active .continue {
  -webkit-animation: fade-in 0.4s ease-in 2.2s forwards;
          animation: fade-in 0.4s ease-in 2.2s forwards;
}

.reserve {
  padding: 220px 20px 120px;
  background-image: url(./images/mainvisual.png);
  background-size: cover;
  background-position: center;
  color: white;
}

.reserve .back-title {
  color: #061b3f;
}

.reserve .section-title {
  margin-bottom: 88px;
  text-align: center;
}

.reserve .section-title::after {
  content: "セッションを予約する";
}

.reserve .box {
  margin: 0 auto;
  padding: 70px 68px 94px 68px;
  display: table;
  background-color: black;
  color: white;
  border: 5px solid white;
  border-radius: 10px;
}

.reserve .box a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-family: "pixel-r";
  font-size: 46px;
  font-weight: bold;
  color: white;
}

.reserve .box a:not(:last-of-type) {
  margin-bottom: 36px;
}

.reserve .box a span:first-of-type {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  opacity: 0;
  -webkit-animation: 0.6s blinking infinite;
          animation: 0.6s blinking infinite;
}

.reserve .box a span:last-of-type {
  margin-left: 23px;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}

footer {
  padding: 155px 20px 45px;
  font-size: 18px;
  background-color: black;
  color: white;
}

footer nav {
  margin-bottom: 85px;
}

footer nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

footer nav ul a {
  padding: 25px;
  font-family: "pixel-r";
  font-weight: bold;
  font-size: 18px;
  color: white;
  border-radius: 6px;
}

footer nav ul a:hover {
  background-color: #cbc5c6;
  color: black;
  opacity: 1;
}

footer .copyright {
  text-align: center;
}

.menu-btn {
  width: 54px;
  height: 54px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  top: 18px;
  right: 14px;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  display: none;
  border-radius: 50%;
}

.menu-bar {
  width: 60%;
  height: 1px;
  position: relative;
}

.menu-bar li {
  width: 100%;
  height: 0.1rem;
  background-color: white;
  position: absolute;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.menu-bar li:nth-child(1) {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.menu-bar li:nth-child(3) {
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
}

.menu-bar.is-open li:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.menu-bar.is-open li:nth-child(2) {
  display: none;
}

.menu-bar.is-open li:nth-child(3) {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.sp-menu {
  width: 100%;
  height: 200vh;
  padding-top: 50px;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  visibility: hidden;
  opacity: 0;
  background-image: url(images/mainvisual.png);
  background-size: cover;
  background-position: center;
  z-index: 500;
}

.sp-menu nav {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.sp-menu nav ul li {
  margin-bottom: 4px;
}

.sp-menu nav ul li a {
  width: 196px;
  padding: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  color: white;
  font-weight: bold;
  border-radius: 6px;
}

.sp-menu nav ul li a:hover {
  background-color: #cbc5c6;
  color: black;
}

.sp-menu.is-open {
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 767px) {
  .menu-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .sp-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (max-width: 1370px) {
  .back-title {
    font-size: 220px;
  }
  .concept .back-title {
    top: 32px;
  }
  .recommend .back-title {
    top: 46px;
  }
  .service .back-title {
    top: 80px;
  }
  .merit .back-title {
    top: 88px;
  }
  .voice .back-title {
    top: 88px;
  }
  .voice .voice-image {
    width: 52vw;
  }
  .voice .texts {
    width: 59vw;
    padding: 28px;
  }
  .voice .box1 .texts,
  .voice .box3 .texts {
    margin-left: -13.5vw;
  }
  .voice .box2 .texts {
    margin-right: -13.5vw;
  }
  .discovery .back-title {
    top: 98px;
  }
  .message .back-title {
    top: 42px;
  }
  .reserve .back-title {
    top: 48px;
  }
}

@media screen and (max-width: 1040px) {
  .service .texts {
    width: 727px;
  }
  .service .box1 .service-image,
  .service .box3 .service-image {
    right: 590px;
  }
  .service .box1 h3,
  .service .box1 dl,
  .service .box1 .text,
  .service .box3 h3,
  .service .box3 dl,
  .service .box3 .text {
    margin-left: 176px;
  }
  .service .box2 .service-image {
    left: 590px;
  }
  .service .box2 h3,
  .service .box2 dl,
  .service .box2 .text {
    margin-right: 176px;
  }
  .voice .voice-image {
    width: 542px;
  }
  .voice .texts {
    width: 615px;
  }
  .voice .box1 .texts,
  .voice .box3 .texts {
    margin-left: -140px;
  }
  .voice .box2 .texts {
    margin-right: -140px;
  }
}

@media screen and (max-width: 767px) {
  body {
    min-width: auto;
    font-size: 15px;
  }
  .btn-top {
    top: auto;
    bottom: 10px;
    font-size: 16px;
  }
  .btn-top span {
    margin-right: 6px;
  }
  .btn-top img:nth-of-type(1) {
    width: 50px;
  }
  .btn-top img:nth-of-type(2) {
    width: 45px;
  }
  .mv {
    height: 100vh;
  }
  .mv nav {
    display: none;
  }
  .mv .logo1 {
    width: 22.2vw;
    max-width: 148px;
    margin-right: 4vw;
  }
  .mv .logo2 {
    width: 38.1vw;
    max-width: 254px;
  }
  .mv .box1 {
    width: auto;
    max-width: 90%;
    padding: 18px 28px 50px;
    border-width: 3px;
  }
  .mv .box1 h1 {
    font-size: 22px;
  }
  .mv .box2 {
    margin-top: -27px;
    padding: 6px 40px 10px;
    font-size: 32px;
    border-width: 3px;
  }
  .mv .box2 span:last-of-type {
    margin-left: 10px;
  }
  .back-title {
    font-size: 60px;
    top: 40px !important;
  }
  .section-title {
    font-size: 50px;
    margin-bottom: 40px;
  }
  .section-title::after {
    margin-top: 10px;
  }
  .concept .inner {
    padding-top: 70px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .concept .section-title {
    margin-right: 0;
    margin-bottom: 20px;
    text-align: center;
  }
  .concept h3 {
    font-size: 28px;
    line-height: 40px;
  }
  .concept .text {
    font-size: 16px;
    line-height: 24px;
  }
  .recommend .inner {
    padding-top: 70px;
    padding-bottom: 40px;
  }
  .recommend .section-title {
    margin-bottom: 40px;
  }
  .recommend .box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .recommend .item {
    width: 90%;
    margin-bottom: 38px;
  }
  .recommend .item > div {
    height: auto;
    margin-bottom: 16px;
  }
  .recommend .item img {
    max-width: 340px;
    width: 74%;
  }
  .recommend .item h3 {
    font-size: 22px;
  }
  .recommend .item p {
    font-size: 16px;
    line-height: 24px;
  }
  .service {
    padding: 70px 0;
  }
  .service .section-title {
    margin-bottom: 40px;
  }
  .service .number {
    width: 90%;
    margin: 0 auto !important;
    font-size: 50px;
    border: none !important;
    padding: 0;
  }
  .service .box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .service .box:not(:last-of-type) {
    margin-bottom: 40px;
  }
  .service .service-image {
    width: 90%;
    min-width: auto;
    margin: 0 auto;
    position: static;
  }
  .service .texts {
    width: 90%;
    padding: 30px 10px;
    margin: 10px auto 20px;
    -webkit-box-shadow: 0 25px 30px rgba(211, 211, 205, 0.46);
            box-shadow: 0 25px 30px rgba(211, 211, 205, 0.46);
  }
  .service .box h3,
  .service .box dl,
  .service .box .text {
    margin-right: 0;
    margin-left: 0;
  }
  .service .box dl {
    margin-bottom: 3px;
  }
  .service .box .btn {
    width: 100%;
    max-width: 330px;
    margin: 0 auto;
    padding: 20px 0;
    display: table;
    font-size: 20px;
  }
  .service .box h3 {
    padding-bottom: 14px;
    margin-bottom: 18px;
    display: block;
    font-size: 28px;
  }
  .service .box h3::after {
    margin: 10px 0 0;
    display: block;
  }
  .service .line {
    width: 1px;
    height: 40px;
  }
  .merit .inner {
    padding: 70px 20px;
  }
  .merit .section-title {
    margin-bottom: 40px;
  }
  .merit .box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .merit .item {
    width: 100%;
    margin-bottom: 20px;
  }
  .merit .texts {
    min-height: auto;
    padding: 20px 10px;
  }
  .merit h3 {
    margin-bottom: 18px;
    font-size: 22px;
  }
  .voice {
    padding: 70px 0;
  }
  .voice .voice-image {
    width: 90%;
  }
  .voice .box1,
  .voice .box2,
  .voice .box3 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .voice .box1 .texts,
  .voice .box2 .texts,
  .voice .box3 .texts {
    width: 90%;
    margin: -60px auto 0;
    padding: 20px 10px;
    -webkit-box-shadow: 0 25px 30px rgba(211, 211, 205, 0.46);
            box-shadow: 0 25px 30px rgba(211, 211, 205, 0.46);
  }
  .voice h3 {
    margin-bottom: 22px;
    padding-left: 10px;
    font-size: 22px;
    line-height: 34px;
  }
  .voice .text {
    font-size: 16px;
    line-height: 24px;
  }
  .sub-visual {
    height: 160px;
    padding: 0 4px;
  }
  .sub-visual h3 {
    font-size: 22px;
  }
  .discovery .inner {
    padding: 70px 20px;
    overflow-x: hidden;
  }
  .discovery .discovery-image {
    width: 100%;
    max-width: 450px;
  }
  .discovery form a {
    width: 240px;
    margin-top: 28px;
    padding: 20px 0;
    font-size: 20px;
    text-align: center;
  }
  .discovery select {
    font-size: 15px;
  }
  .discovery select:nth-of-type(1) {
    padding: 8px 3px;
    margin-right: 3px;
    width: 170px;
  }
  .discovery select:nth-of-type(2) {
    padding: 8px 3px;
    margin-right: 3px;
    width: 60px;
  }
  .discovery select:nth-of-type(3) {
    padding: 8px 3px;
    width: 60px;
  }
  .result .result-inner {
    padding: 70px 20px 40px;
  }
  .result .wrapper2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .result h3 {
    width: 100%;
    max-width: 487px;
    margin: 0 auto 30px auto;
    padding: 16px;
    text-align: center;
    font-size: 16px;
  }
  .result h3 span {
    font-size: 24px;
  }
  .result .wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 10px;
  }
  .result .character-space {
    margin: 0 auto;
  }
  .result .box {
    width: 100%;
    padding: 16px 10px;
  }
  .result .box .title img {
    margin-right: 20px;
  }
  .result .box1 {
    margin-bottom: 30px;
  }
  .result .character {
    max-width: 340px;
    width: 100%;
    margin: -50px auto -40px;
  }
  .result .character-other {
    max-width: 320px;
    width: 80%;
  }
  .result .result-btn {
    padding: 20px 22px;
    font-size: 19px;
    text-align: center;
  }
  .result .result-btn br {
    display: block;
  }
  .result .result-btn span {
    display: none;
  }
  .message .inner {
    padding: 70px 20px;
  }
  .message .section-title {
    margin-bottom: 40px;
  }
  .message .box1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .message .box1 .text {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
    font-size: 15px;
  }
  .message .box1 img {
    width: 100%;
  }
  .message .box2 {
    padding: 14px 10px;
  }
  .message .box2 .text {
    font-size: 16px;
    line-height: 22px;
  }
  .message .box2 h4 {
    margin-bottom: 4px;
  }
  .message .skills {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .message .skills li {
    width: 100%;
    text-align: center;
  }
  .game-over {
    height: auto;
    padding: 40px 20px;
  }
  .game-over h3 {
    margin-bottom: 16px;
    font-size: 40px;
  }
  .game-over h3 span {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
  .game-over .continue {
    font-size: 28px;
  }
  .game-over .continue span:last-of-type {
    margin-left: 6px;
  }
  .game-over.is-active h3 span {
    -webkit-animation-name: sp-top-down;
            animation-name: sp-top-down;
  }
  .reserve {
    padding: 80px 20px 40px;
  }
  .reserve .section-title {
    margin-bottom: 40px;
  }
  .reserve .box {
    padding: 30px 13px 34px;
    border-width: 3px;
  }
  .reserve .box a {
    font-size: 24px;
  }
  .reserve .box a:not(:last-of-type) {
    margin-bottom: 20px;
  }
  .reserve .box a span:last-of-type {
    margin-left: 8px;
  }
  footer {
    padding: 30px 0;
    font-size: 15px;
  }
  footer .inner {
    padding: 0 8px;
  }
  footer nav {
    display: none;
  }
}

@media screen and (max-width: 357px) {
  .discovery select {
    display: inline-block;
    margin-bottom: 10px;
  }
  .discovery .min-device {
    display: block;
  }
}
/*# sourceMappingURL=style.css.map */