@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+JP:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Hanken+Grotesk:wght@100..900&display=swap");
:root {
  --text-color: #191919;
  --wh: #fff;
  --bk: #191919;
  --gray: #8A8B88;
  --green: #6AC643;
  --yellow: #FFD700;
  --footer-bg: #111827;
}

@media screen and (max-width: 834px) {
  .pc {
    display: none !important;
  }
}

@media screen and (min-width: 835px) {
  .sp {
    display: none !important;
  }
}

@media screen and (max-width: 1024px) {
  .pc-tb {
    display: none !important;
  }
}

@media screen and (min-width: 1025px) {
  .sp-tb {
    display: none !important;
  }
}

@media screen and (max-width: 640px) {
  .pc-sm {
    display: none !important;
  }
}

@media screen and (min-width: 641px) {
  .sp-sm {
    display: none !important;
  }
}

@media screen and (max-width: 499px) {
  .pc-xsl {
    display: none !important;
  }
}

@media screen and (min-width:500px) {
  .sp-xsl {
    display: none !important;
  }
}

@media screen and (max-width: 376px) {
  .pc-xs {
    display: none !important;
  }
}

@media screen and (min-width: 377px) {
  .sp-xs {
    display: none !important;
  }
}

/* ====================================================
Disclaimer
==================================================== */
.disclaimer {
  padding: 10rem 0;
}
.disclaimer .disclaimer-modal {
  display: flex;
  position: static;
  background-color: transparent;
  color: var(--text-color);
}
.disclaimer .disclaimer-modal .close-btn {
  display: none;
}
.disclaimer .disclaimer-modal__agree {
  display: none;
  list-style: disc;
}

.disclaimer-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 99;
  color: var(--text-color);
}
.disclaimer-modal__content {
  width: -moz-fit-content;
  width: fit-content;
  padding: clamp(1rem, 3vw, 5rem);
  background-color: #fff;
  border-radius: 10px;
  width: 90%;
  max-width: 68.75rem;
  max-height: 80%;
  overflow-y: auto;
  position: relative;
}
.disclaimer-modal__title {
  font-size: clamp(1rem, 2vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
}
.disclaimer-modal__agree {
  background-color: #dedcdc;
  padding: clamp(1rem, 2vw, 2rem);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  margin-top: clamp(1rem, 2vw, 2rem);
}
.disclaimer-modal .wrapper {
  background: #f6f6f6;
  padding: clamp(1rem, 1.5vw, 2rem);
  border-radius: 10px;
}
.disclaimer-modal .caution {
  font-size: 0.7rem;
  display: block;
}
.disclaimer-modal p {
  margin-bottom: 1rem;
  text-indent: 1rem;
  line-height: 2;
}
.disclaimer-modal ul {
  margin-bottom: 1rem;
  line-height: 2.5;
}
.disclaimer-modal input[name=disclaimer] {
  display: block;
  border: 1px solid #6b7280;
  width: 1rem;
  height: 1rem;
  margin: auto;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
  position: relative;
  background-color: var(--wh);
}
.disclaimer-modal input[name=disclaimer]:checked::before {
  content: "check";
  font-family: "Material Symbols Outlined";
  font-size: 1.5rem;
  position: absolute;
  left: 50%;
  top: 50%;
  color: #6b7280;
  transform: translate(-35%, -53%);
}
.disclaimer-modal label {
  text-align: center;
}
.disclaimer-modal .close-btn {
  position: absolute;
  top: clamp(0.625rem, 1.5vw, 1.25rem);
  right: clamp(0.625rem, 1.5vw, 1.25rem);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #6b7280;
  cursor: pointer;
}/*# sourceMappingURL=disclaimer.css.map */