@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP&display=swap");
@import url("https://use.typekit.net/zkq2emd.css");
html {
  margin: 0;
  scroll-behavior: smooth;
  /* display: contents; */
}

.pc-none {
  display: none !important;
}

.recruit-top-header img {
  width: 100%;
}

body {
  margin: 0px;
  width: 100%;
}

.recruit-top-header {
  display: block;
  width: 100%;
  height: 130vw;
  position: relative;
  text-align: center;
}

.quizcont {
  width: 100%;
}

.quizcont img {
  width: 100%;
}

.tittle-parent {
  position: absolute;
  top: 50vw;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  left: 50%;
  z-index: 2;
  width: 80%;
}

.tittle-parent h6 {
  font-family: "rift";
  color: white;
  font-size: 10vw;
  font-style: italic;
  margin: 0;
  line-height: 1;
}

.tittle-parent h1 {
  font-family: "rift";
  color: white;
  font-size: 16vw;
  margin: 0;
  line-height: 1;
}

.wrapper.quizpage {
  margin-top: 0px;
  padding: 0;
  background: url(../img/bg-pc.png);
  background-repeat: no-repeat;
  background-size: 270vw;
  background-position: -198vw 0vw;
}

.linestart {
  border: solid 1px #bd1821;
  width: 25%;
  margin: 40px auto;
}

.linestart::after {
  background: none repeat scroll 0% 0% #bd1821;
  content: "";
  height: 6px;
  left: 50%;
  margin: -3px auto auto -3px;
  position: absolute;
  transform: rotate(-45deg);
  width: 6px;
}

.topcont {
  display: flex;
  height: 40px;
  width: 100%;
  justify-content: flex-start;
  align-items: center;
  display: none;
}

.topcont .icon {
  width: 8%;
  height: 100%;
  background: url(../img/quiz/diamond.png) no-repeat center;
  background-size: contain;
}

.topcont .topttl {
  font-family: "EB Garamond";
  font-size: 4vw;
  color: #131b2e;
  margin-left: 15px;
  font-weight: 500;
  letter-spacing: 1px;
  display: block;
}

.maincont {
  position: relative;
  padding: 34px 0;
  border-radius: 20px;
  width: 90%;
  margin: 20px auto;
  overflow: hidden;
  background: white;
}

.numcont {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.numcont .numbox1,
.numbox2,
.numbox3,
.numbox4,
.numbox5 {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  border: 1px solid #bd1821;
  justify-content: center;
  font-size: 3.5vw;
  color: #bd1821;
  font-family: "rift";
  font-weight: 600;
  border-radius: 5px;
  margin: 0 5px;
}

.active {
  background: #bd1821;
  color: white !important;
}

.maincont .quest {
  font-family: "rift";
  font-size: 4.5vw;
  color: #131b2e;
  /* font-weight: 500; */
  letter-spacing: 1px;
  display: block;
  margin: 5%;
  text-align: center;
  font-weight: bold;
}

.anscont {
  width: 90%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
  margin: 5%;
}

.anscont .ansbox {
  width: 100%;
  height: 45px;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: white;
  background: #bd1821;
  font-family: "rift";
  font-weight: 500;
  border-radius: 10px;
  padding: 0px 10px;
  cursor: pointer;
  text-decoration: none;
  outline: none;
}

.anscont .boxcont {
  width: 70%;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.imgcont {
  width: 100%;
  height: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.imgcont img {
  width: 20%;
  /* height: 100%; */
  /* object-fit: contain; */
  border-radius: 20px;
  position: absolute;
  opacity: 0;
  transition: opacity 300ms;
}

.imgcont .main {
  z-index: 1;
  opacity: 1;
  transition: opacity 300ms;
}

@keyframes left {
  0% {
    right: 0;
  }
  100% {
    right: 50%;
  }
}

@keyframes leftmid {
  0% {
    left: 0;
  }
  100% {
    left: -50%;
  }
}

@keyframes lefteven {
  0% {
    right: 50%;
  }
  100% {
    right: 100%;
  }
}

@keyframes leftmideven {
  0% {
    left: 50%;
  }
  100% {
    left: 0;
  }
}

@keyframes right {
  0% {
    left: 0;
  }
  100% {
    left: 50%;
  }
}

@keyframes rightmid {
  0% {
    left: -100%;
  }
  100% {
    left: -50%;
  }
}

@keyframes righteven {
  0% {
    left: -50%;
  }
  100% {
    left: 0;
  }
}

@keyframes rightmideven {
  0% {
    right: 50%;
  }
  100% {
    right: 0;
  }
}

.left {
  animation: left 1000ms ease-in-out forwards;
}

.leftmid {
  animation: leftmid 1000ms ease-in-out forwards;
}

.lefteven {
  animation: lefteven 1000ms ease-in-out forwards;
}

.leftmideven {
  animation: leftmideven 1000ms ease-in-out forwards;
}

.right {
  animation: right 1000ms ease-in-out forwards;
}

.rightmid {
  animation: rightmid 1000ms ease-in-out forwards;
}

.righteven {
  animation: righteven 1000ms ease-in-out forwards;
}

.rightmideven {
  animation: rightmideven 1000ms ease-in-out forwards;
}

.midcont {
  position: relative;
  display: flex;
  width: 200%;
}

.midcont .midbox {
  position: relative;
  width: 50%;
}

.recruit-single-ttl-parent {
  background: url(../img/bg-pc.png);
  background-size: 270%;
  background-repeat: no-repeat;
  background-size: 270vw;
  background-position: -198vw 0vw;
  width: 100%;
  margin: auto;
  padding: 2vw 0px 5vw;
  margin-top: 5vw;
}

.interview-top-section {
  width: 60%;
  margin: auto;
}

.interview-top-section h1 {
  color: #ac1821;
  font-size: 15vw;
  margin: 0;
  font-family: rift, sans-serif;
  line-height: 1;
  padding-top: 1vw;
  letter-spacing: 0;
}

.interview-top-section p {
  color: #ac1821;
  font-size: 4vw;
  font-weight: bold;
  margin: 0;
}

p.interview-single-text {
  width: 80%;
  margin: 2vw auto;
  font-size: 3vw;
  display: flex;
  flex-direction: row;
  align-items: center;
}

p.interview-single-text::before {
  content: " ";
  width: 20px;
  position: relative;
  height: 20px;
  padding-right: 10px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/quiz/quiz-bullets.png);
}

.quizcont p {
  width: 90%;
  margin: 11vw auto;
  font-size: 3.5vw;
  font-family: "Noto Sans JP";
  text-align: center;
}

.ttlmain h1 {
  color: #ac1821;
  font-size: 15vw;
  margin: 0;
  font-family: rift, sans-serif;
  line-height: 1;
  padding-top: 1vw;
  letter-spacing: 0;
  text-align: center;
}

.ttlmain p {
  color: #ac1821;
  font-family: "Noto Sans JP";
  margin: 0;
  text-align: center;
}

.main.shoplist {
  width: 100%;
}

/* charm section  */

.recruit-charm {
  width: 100%;
  height: max-content;
  background-image: url(../img/recruit-bg-100.jpg);
  background-repeat: no-repeat;
  background-size: 280%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding-top: 32px;
  padding-bottom: 30px;
}

img.charm-img {
  width: 80%;
}

.recruit-charm p {
  color: white;
  letter-spacing: 0px;
  margin-bottom: 15px !important;
  font-size: 2.5vw;
  text-align: center;
  line-height: 2;
  width: 90%;
  margin: auto;
  font-family: "Noto Sans JP";
}

.charm-single-parent {
  display: flex;
  height: max-content;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}

.charm-single {
  padding-bottom: 6.5vw;
  width: 85vw;
}

a.navlink,
a.navlink2 {
  position: relative;
  text-decoration: none;
  cursor: pointer;
  display: block;
  color: inherit;
}

.charm-single img {
  width: 100%;
}

.charm-single p {
  color: #ac1821;
  text-align: center;
  margin: 0px auto;
  letter-spacing: 0px;
  padding: 0;
  font-size: 4vw;
  font-weight: bold;
  font-family: "Noto Sans JP";
}

/* charm section  */

.home-map {
  width: 100%;
  height: 310px;
  overflow: hidden;
  -webkit-filter: grayscale(100%);
  filter: grayscale(1);
  padding-top: 2%;
}

.header-overlay {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  opacity: 1;
  background: url(../img/kv_dot.png) repeat 0 0;
  background-size: 5px 5px;
}

.header-overlay::before {
  content: "";
  width: 100%;
  height: 101%;
  background-color: rgb(0 0 0 / 40%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

a.navlink {
  text-decoration: none;
  color: inherit;
}

/* animation css */

.reveal-holder {
  position: relative;
  width: auto;
  height: auto;
}

.reveal-holder2 {
  position: relative;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  align-items: center;
  /* width: 90vw; */
}

.reveal-holder3 {
  position: absolute;
  /* display: flex; */
  /* overflow: hidden; */
  /* align-items: flex-start; */
}

.reveal-holder.left {
  justify-content: flex-end;
}

.reveal-holder.right {
  justify-content: flex-start;
}

.reveal-holder .reveal-block {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 9;
}

.reveal-holder .reveal-charm {
  position: absolute;
  top: 0;
  width: 100%;
  height: 22.5%;
  /* height: 22.7vw; */
  background: white;
  z-index: 9;
}

.reveal-holder2 .reveal-block2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: white;
}

.reveal-holder3 .reveal-block2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: white;
}

.reveal-holder2 .reveal-block2::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ac1821;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  z-index: 9;
}

.reveal-holder3 .reveal-block2::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ac1821;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  z-index: 9;
}

.reveal-holder .reveal-block::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  z-index: 9;
  /* transition-duration: 5.5s; */
}

.reveal-holder .reveal-charm::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ac1821;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  z-index: 9;
  /* transition-duration: 5.5s; */
}

.reveal-block.top.aos-animate::before,
.reveal-block.bottom.aos-animate::before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.reveal-block.left.aos-animate::before,
.reveal-block.right.aos-animate::before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.reveal-block.top::before {
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 0% 100%;
  transform-origin: 0% 100%;
}

.reveal-block.left::before {
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 100% 0%;
  transform-origin: 100% 0%;
}

.reveal-block.right::before {
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0% 100%;
  transform-origin: 0% 100%;
}

.reveal-block.bottom::before {
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 100% 0%;
  transform-origin: 100% 0%;
}

/* AOS animate */

[data-aos="reveal-top"],
[data-aos="reveal-left"],
[data-aos="reveal-right"],
[data-aos="reveal-bottom"] {
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  transition-delay: 0.5s;
}

[data-aos="reveal-top"] {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

[data-aos="reveal-top"].aos-animate {
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 100% 0%;
  transform-origin: 100% 0%;
}

[data-aos="reveal-left"] {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

[data-aos="reveal-left"].aos-animate {
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0% 100%;
  transform-origin: 0% 100%;
}

[data-aos="reveal-right"] {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

[data-aos="reveal-right"].aos-animate {
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 100% 0%;
  transform-origin: 100% 0%;
}

[data-aos="reveal-bottom"] {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

[data-aos="reveal-bottom"].aos-animate {
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 0% 100%;
  transform-origin: 0% 100%;
}

[data-aos="reveal-item"] {
  visibility: hidden;
  transition-property: visibility;
  transition-duration: 0s;
}

[data-aos="reveal-item"].aos-animate {
  visibility: visible;
}

/* end aos animation */
