@charset "utf-8";

.onetime-plan-mv {
  max-width: 864px;
  line-height: 0;
  margin: 50px auto 0;
}
.onetime-plan-mv_img {
  width: 100%;
}
.onetime-button {
  --hover-opacity: 0.5;
  position: relative;
  display: block;
  width: fit-content;
  min-width: 610px;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  font-family: inherit;
  text-align: center;
  background-color: #eb0400;
  border: none;
  border-radius: 8px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  margin: 34px auto 0;
  padding: 22px 0;
  cursor: pointer;
  transition: opacity 0.3s;
  appearance: none !important;
}
.onetime-button::after {
  content: '';
  position: absolute;
  top: 1px;
  bottom: 0;
  right: 26px;
  border: 2px solid #fff;
  width: 13px;
  height: 13px;
  border-top: medium none;
  border-left: medium none;
  transform: rotate(-45deg);
  margin: auto;
  transition: 0.3s;
}
.onetime-button:focus-visible {
  opacity: var(--hover-opacity);
}
@media (any-hover: hover) {
  .onetime-button:hover {
    opacity: var(--hover-opacity);
  }
}
.onetime-plan-note {
  text-align: center;
  margin-top: 20px;
}
.onetime .countdown {
  margin: 30px 0;
}
.onetime .plans {
  margin-top: 40px;
}
.onetime .plans_lead {
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
}
.onetime .plans_lead .marker {
  background-image: linear-gradient(transparent 75%, rgb(255, 237, 35) 75%);
}
.onetime .plans_list {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 33px;
}
.onetime .plans_item {
  width: 32%;
  border: 2px solid #000;
  border-radius: 20px;
  padding: 30px 18px;
}
.onetime .plans_item:only-child {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  width: 60%;
}
.onetime .plans_name {
  font-size: 2.8rem;
  font-weight: bold;
}
.onetime .plans_item:only-child .plans_name {
  text-align: center;
}
.onetime .plans_text {
  text-align: center;
  margin-top: 15px;
}
.onetime .plans_text-first {
  font-size: 2rem;
  font-weight: bold;
}
.onetime .plans_text-second {
  font-size: 4rem;
  font-weight: bold;
  color: #eb0400;
}
.onetime .plans_text .small {
  font-size: 2.4rem;
}
.onetime .plans_code {
  border: 1px solid #d9d9d9;
  margin-top: 16px;
  text-align: center;
}
.onetime .plans_item:only-child .plans_code {
  margin-top: 0;
}
.onetime .plans_code-wrap {
  padding: 10px 10px 7px;
}
.onetime .plans_code-text {
  display: block;
  font-size: 1.6rem;
}
.onetime .plans_code-main {
  display: block;
  font-size: 2.4rem;
  font-weight: bold;
  margin-top: 3px;
}
.onetime .plans_code-button {
  --hover-opacity: 0.6;
  display: block;
  width: 100%;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  font-family: inherit;
  background-color: #eb0400;
  appearance: none !important;
  border-color: #d9d9d9;
  border-style: solid;
  border-width: 1px 0 0 0;
  padding: 0.6em 1em;
  cursor: pointer;
  transition: opacity 0.3s;
}
.onetime .plans_code-button:focus-visible {
  opacity: var(--hover-opacity);
}
@media (any-hover: hover) {
  .onetime .plans_code-button:hover {
    opacity: var(--hover-opacity);
  }
}
.onetime .plans_button {
  --hover-opacity: 0.6;
  width: 100%;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  font-family: inherit;
  background-color: var(--color-primary);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  border: none;
  appearance: none !important;
  margin-top: 24px;
  padding: 1em;
  cursor: pointer;
  transition: opacity 0.3s;
}
.onetime .plans_button:focus-visible {
  opacity: var(--hover-opacity);
}
@media (any-hover: hover) {
  .onetime .plans_button:hover {
    opacity: var(--hover-opacity);
  }
}
.onetime .notes {
  margin-top: 30px;
}
.onetime .notes_body {
  background-color: #f2f2f2;
  padding: 36px 20px 44px;
}
.onetime .notes_title {
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
}
.onetime .notes_list {
  display: grid;
  gap: 15px;
  margin: 22px auto 0;
  max-width: 736px;
}
.onetime .notes_item {
  font-size: 1.5rem;
  line-height: 1.5;
  text-indent: -1em;
  padding-left: 1em;
}
