@charset "UTF-8";
/* aタグ設定
------------------------------------- */
@media (any-hover: hover) {
  a:hover, button:hover {
    opacity: 0.75;
  }
}

a, button {
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  transition-delay: 0s;
  text-decoration: none;
  color: currentColor;
}

/* 基本設定
------------------------------------- */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  overflow-y: scroll;
}

body {
  -webkit-text-size-adjust: 100%;
  font-size: 1.4rem; /* =14px */
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-style: normal;
  background-color: #F7F8F9;
  line-height: 1.3;
  overflow: hidden;
}

.font-en {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}

img {
  width: 100%;
  height: auto;
  pointer-events: none;
}

ul {
  list-style: none;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* デフォルトの三角形アイコンを非表示にする */
summary {
  display: block;
  list-style: none;
}

summary::-webkit-details-marker,
summary::marker {
  display: none;
}

/* レスポンシブ設定
------------------------------------- */
@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}
.main-bg {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url("../images/main-bg.webp");
  background-size: cover;
  background-position: right bottom;
  z-index: -1;
}

.header {
  position: fixed;
  top: 10px;
  right: 20px;
  z-index: 20;
}
@media screen and (max-width: 768px) {
  .header {
    top: 4vw;
    right: 4vw;
  }
}
.header__logo {
  width: 162px;
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: 24vw;
  }
}

main {
  position: relative;
  z-index: 10;
}

.stop-play {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 500;
  display: none;
}

#audio-control {
  width: 40px;
  height: 25px;
  background-size: 100% auto;
  background-position: center;
}
@media screen and (max-width: 768px) {
  #audio-control {
    width: 10.6666666667vw;
    height: 8vw;
  }
}
#audio-control.--off {
  background-image: url("../images/off.png");
}
#audio-control.--on {
  background-image: url("../images/on.png");
}

.contents-start {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  transition: opacity 0.8s, transform 0.8s;
  opacity: 0;
  pointer-events: none;
}
.contents-start.on {
  opacity: 1;
  pointer-events: inherit;
}
.contents-start.on > div {
  transform: scale(1);
}
.contents-start > div {
  display: grid;
  place-items: center;
  overflow: auto;
  height: 100%;
  padding: 20px;
  transform: scale(1.2);
  transition: transform 0.8s;
}
@media screen and (max-width: 768px) {
  .contents-start > div {
    padding: 10.6666666667vw 5.3333333333vw;
  }
}
.contents-start .--text01 {
  font-size: 2.8rem;
  letter-spacing: 0.3em;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .contents-start .--text01 {
    font-size: 5.3333333333vw;
  }
}
.contents-start .btn-start {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 50px;
  margin: 30px auto 0;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1;
  border: 1px solid #fff;
}
@media screen and (max-width: 768px) {
  .contents-start .btn-start {
    padding: 1.8666666667vw 13.3333333333vw;
    margin-top: 8vw;
    font-size: 5.8666666667vw;
  }
}
.contents-start .--caution {
  text-align: center;
  margin: 30px auto 0;
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .contents-start .--caution {
    margin-top: 8vw;
    font-size: 3.7333333333vw;
  }
}

.contents {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  transition: opacity 0.8s, transform 0.8s;
  opacity: 0;
  pointer-events: none;
}
.contents.on {
  opacity: 1;
  pointer-events: inherit;
}
.contents.on > div {
  transform: scale(1);
}
.contents > div {
  display: grid;
  place-items: center;
  overflow: auto;
  height: 100%;
  padding: 20px;
  transform: scale(1.2);
  transition: transform 0.8s;
}
@media screen and (max-width: 768px) {
  .contents > div {
    padding: 10.6666666667vw 5.3333333333vw;
  }
}
.contents .--q {
  text-align: center;
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  .contents .--q {
    font-size: 4.8vw;
    line-height: 1.5;
    position: relative;
    text-align: left;
    padding-left: 2em;
  }
}
@media screen and (max-width: 768px) {
  .contents .--num {
    position: absolute;
    top: 0;
    left: 0;
  }
}
.contents .--answer {
  margin: 40px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .contents .--answer {
    margin-top: 13.3333333333vw;
    flex-direction: column;
    gap: 5.3333333333vw;
  }
}
.contents .--answer > span {
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .contents .--answer > span {
    font-size: 4.8vw;
  }
}
.contents .--a {
  font-size: 2rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .contents .--a {
    font-size: 4.8vw;
  }
}

.result {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  transition: opacity 0.8s 1s;
  opacity: 0;
  pointer-events: none;
}
.result.on {
  opacity: 1;
  pointer-events: inherit;
}
.result.on > div {
  transform: scale(1);
}
.result .result-img {
  margin: 20px auto 0;
  max-width: 300px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .result .result-img {
    margin-top: 5.3333333333vw;
    max-width: 66.6666666667vw;
  }
}
.result > div {
  display: grid;
  place-items: center;
  overflow: auto;
  height: 100%;
  padding: 40px;
  transform: scale(1.4);
  transition: transform 0.8s 1s;
}
@media screen and (max-width: 768px) {
  .result > div {
    padding: 21.3333333333vw 5.3333333333vw;
  }
}
.result .--top {
  font-size: 2.8rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .result .--top {
    font-size: 6.4vw;
  }
}
.result .--text01 {
  margin: 20px auto 0;
  padding: 10px 20px;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 2.2rem;
  border-bottom: 1px solid #fff;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .result .--text01 {
    margin-top: 5.3333333333vw;
    padding: 2.6666666667vw 2.6666666667vw;
    font-size: 5.8666666667vw;
  }
}
.result .--text02 {
  margin: 20px auto 0;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.8rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .result .--text02 {
    margin-top: 5.3333333333vw;
    font-size: 4.2666666667vw;
  }
}
.result .box {
  margin: 40px auto 0;
  display: flex;
  justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .result .box {
    margin-top: 8vw;
    flex-direction: column;
    gap: 5.3333333333vw;
  }
}
.result .box > div {
  display: flex;
  flex-direction: column;
  padding: 30px 30px;
  border: 1px solid #fff;
}
@media screen and (max-width: 768px) {
  .result .box > div {
    padding: 5.3333333333vw 2.6666666667vw;
    display: block;
  }
}
.result .--name01 {
  font-size: 1.6rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .result .--name01 {
    font-size: 3.7333333333vw;
  }
}
.result .--name02 {
  margin: 10px 0 20px;
  text-align: center;
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  .result .--name02 {
    margin: 2.6666666667vw 0 6.6666666667vw;
    font-size: 5.8666666667vw;
  }
}
.result .--share {
  margin: auto 0 0;
  text-align: center;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .result .--share {
    font-size: 3.7333333333vw;
  }
}
.result .icon {
  margin: 20px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
@media screen and (max-width: 768px) {
  .result .icon {
    margin-top: 2.6666666667vw;
    gap: 2.6666666667vw;
  }
}
.result .icon a {
  display: block;
  width: 50px;
}
@media screen and (max-width: 768px) {
  .result .icon a {
    width: 10.6666666667vw;
  }
}
.result .btn-totop {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 50px auto 0;
  padding: 5px 5px 5px;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .result .btn-totop {
    margin-top: 13.3333333333vw;
    padding: 1.3333333333vw;
    font-size: 4.8vw;
  }
}
.result .btn-totop + .btn-totop {
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .result .btn-totop + .btn-totop {
    margin-top: 2.6666666667vw;
  }
}/*# sourceMappingURL=base.css.map */