@charset "UTF-8";
/* heaven 案件のスタイル。
   heaven-front（Nuxt）の app/components/lv2/WaitStatus.vue と
   app/assets/scss/common/ のデザイントークンに見た目を合わせている。
   このファイル（.scss）がソース。編集後は以下で style.css に手動コンパイルし、両方コミットする:
   npx sass sites/heaven/css/style.scss sites/heaven/css/style.css --no-source-map */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  min-height: 100vh;
  background-color: #dbd7d1;
  color: #212121;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.02em;
  overflow-wrap: break-word;
  -webkit-text-size-adjust: 100%;
}

.br-mb {
  display: none;
}
@media screen and (max-width: 1099px) {
  .br-mb {
    display: block;
  }
}

.wrapper {
  flex-direction: column;
  min-height: 100vh;
  margin: 0 auto;
  display: flex;
  position: relative;
}

.main {
  padding-top: 94px;
}
@media screen and (max-width: 1099px) {
  .main {
    padding-top: 63px;
  }
}

.inner {
  padding: 0 16px;
}
@media screen and (min-width: 521px) and (max-width: 1099px) {
  .inner {
    padding: 0 3.9vw;
  }
}
@media screen and (min-width: 1100px) {
  .inner {
    padding: 0 8.33vw;
  }
}

.reading-inner {
  width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 1100px) {
  .reading-inner {
    width: 69.0277777778svw;
  }
}

.guidance {
  margin-bottom: 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 1100px) {
  .guidance {
    margin-bottom: 24px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0.02em;
  }
}

.title {
  max-width: 624px;
  margin-bottom: 64px;
}
@media screen and (max-width: 1099px) {
  .title {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 521px) and (max-width: 1099px) {
  .title img {
    width: 70%;
  }
}
@media screen and (max-width: 520px) {
  .title img {
    width: 83%;
  }
}

.progress-bar-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px;
  background-color: rgba(246, 246, 246, 0.1607843137);
  border: 1px solid rgba(33, 33, 33, 0.1607843137);
  border-radius: 8px;
  text-align: center;
  margin-top: 24px;
}
@media screen and (min-width: 1100px) {
  .progress-bar-container {
    gap: 20px;
    padding: 32px;
    margin-top: 32px;
  }
}

.inner > .progress-bar-container:has(~ .entry__link:not(:empty)) {
  display: none;
}

.progress-bar__title {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.02em;
  animation: wait-status-blink 1.4s ease-in-out infinite;
}
@media screen and (min-width: 1100px) {
  .progress-bar__title {
    font-family: "Montserrat", sans-serif;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.02em;
  }
}

.progress-bar-track {
  width: 100%;
  height: 3px;
  background-color: #eeeeee;
  border-radius: 9999px;
  overflow: hidden;
}

.progress-bar {
  width: 0;
  height: 100%;
  background-color: #212121;
  border-radius: 9999px;
  transition: width 1s linear;
}
.progress-bar:not([style]) {
  width: 40%;
  animation: wait-status-indeterminate 1.6s ease-in-out infinite;
}

.wait-note {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 1100px) {
  .wait-note {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0.02em;
  }
}

.entry__link:not(:empty) {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-block-start: 20px;
}
@media screen and (min-width: 1100px) {
  .entry__link:not(:empty) {
    gap: 32px;
    margin-block-start: 32px;
  }
}

.btn-100 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 320px;
  margin-inline: auto;
  padding: 8px 18px;
  border: 1px solid #212121;
  background-color: rgba(33, 33, 33, 0);
  color: #212121;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.02em;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.6s, color 0.6s;
}
@media screen and (min-width: 1100px) {
  .btn-100 {
    padding: 7px 20px;
  }
}
@media (hover: hover) {
  .btn-100:hover {
    background-color: #212121;
    color: #eeeeee;
  }
}

.button-wrap {
  text-align: center;
  margin-top: 64px;
}
@media screen and (max-width: 1099px) {
  .button-wrap {
    margin-top: 40px;
  }
}

.list-asterisk {
  list-style: none;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.02em;
}
.list-asterisk li {
  position: relative;
  padding-left: 1.5em;
}
.list-asterisk li::before {
  content: "※";
  position: absolute;
  left: 0;
}
.list-asterisk li + li {
  margin-top: 8px;
}
.list-asterisk--red {
  color: #B71C1C;
}

.footer {
  margin-block-start: auto;
}
@media screen and (min-width: 1100px) {
  .footer__wrapper {
    padding: 160px 5.55vw 40px;
  }
}
@media screen and (min-width: 521px) and (max-width: 1099px) {
  .footer__wrapper {
    padding: 160px 3.9vw 40px;
  }
}
@media screen and (max-width: 520px) {
  .footer__wrapper {
    padding: 120px 16px 32px;
  }
}
.footer__inner {
  display: flex;
}
@media screen and (min-width: 1100px) {
  .footer__inner {
    justify-content: space-between;
    gap: 20px;
  }
}
@media screen and (max-width: 1099px) {
  .footer__inner {
    flex-direction: column;
    gap: 16px;
  }
}
.footer__copyright {
  color: #212121;
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.footer__attention-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #5E5E5E;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 1100px) {
  .footer__attention-text br {
    display: none;
  }
}

@keyframes wait-status-blink {
  0%, 100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}
@keyframes wait-status-indeterminate {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(250%);
  }
}
