body.kasirekure_your_value {
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,"Helvetica Neue", Arial, "Noto Sans JP", sans-serif;
  -webkit-font-smoothing: antialiased;
  background-color: black;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ロゴ */
.zone_logo picture img {
  width: 150px;
  position: absolute;
  right: 50px;
  top: 50px;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .zone_logo picture img {
    right: 30px;
    top: 30px;
  }
}

/* 背景動画 */
.zone_video video {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
}

.zone_video video.pc_video,
.zone_video video.sp_video {
  display: none;
}

@media screen and (min-width: 769px) {
  .zone_video video.pc_video { 
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .zone_video video.sp_video { 
    display: block;
  }
}

/* タイトル */
.zone_title picture img {
  width: 77vw;
  height: auto;
  position: absolute;
  top: calc(50% - 4vw);
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
  .zone_title picture img {
    width: 60vw;
    top: calc(50% - 14vw);
  }
}

@media screen and (max-width: 500px) {
  .zone_title picture img {
    width: 92vw;
    top: calc(50% - 25vw);
  }
}

/* 役割 */
.zone_role picture img {
  width: 60vw;
  height: auto;
  position: absolute;
  top: calc(50% + 12vw);
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
  .zone_role picture img {
    width: 40vw;
    top: calc(50% + 26vw);
  }
}

@media screen and (max-width: 500px) {
  .zone_role picture img {
    width: 70vw;
    top: calc(50% + 35vw);
  }
}

/* ボタン */
.zone_button {
  width: 60vw;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 20px;
}

.zone_button a {
  text-align: center;
  text-decoration: none;
  color: #fff;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.2;
  border: 3px solid #fff;
  padding-block: 20px;
}

a.entry {
  width: 70%;
}

a.position {
  width: 30%;
}

.zone_button a:hover {
  color: #000;
  background-color: #fff;
}

@media screen and (max-width: 860px) {
  .zone_button {
    flex-direction: column;
    align-items: center;
  }

  a.entry, 
  a.position {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .zone_button {
    bottom: calc(50% - 60vw);
  }

  .zone_button a {
    font-size: 1rem;
    padding-block: 10px;
    border: 3px solid #fff;
  }
}

@media screen and (max-width: 500px) {
  .zone_button {
    bottom: calc(50% - 100vw);
  }

  .zone_button a {
    padding-block: 5px;
  }
}

@media screen and (max-width: 425px) {
  .zone_button {
    bottom: calc(50% - 90vw);
  }
}
