.phase2 .bg-repeat-y {
  background-color: #f1d700 !important;
  background-image: none;
}

body.phase2 header.bg-\[\#00aa7c\] {
  background-color: #f1d700 !important;
}

.phase2 .title {
  color: #000;
}

.phase2 .bg-blue {
  background-color: #f1d700 !important;
  color: #000;
}

.phase2 .c-btn--white {
  background-color: #f1d700 !important;
  border-color: #000;
  color: #000;
}

.phase2 .c-btn--white:hover {
  background-color: #000 !important;
  border-color: #000;
  color: #fff;
}

.phase2 .font-white {
  color: #000;
}

.phase2 .c-btn--normal {
  background-color: #fff !important;
  border-color: #000;
  color: #000;
}

.phase2 .c-btn--normal:hover {
  background-color: #000 !important;
  border-color: #000;
  color: #fff;
}

.bg-repeat-y {
  background-color: #009fe8 !important;
  background-image: none;
}

header.bg-\[\#00aa7c\] {
  background-color: #009fe8 !important;
}

main {
  padding-bottom: 2rem;
}

.bg-blue {
  background-color: #009fe8 !important;
  color: #fff;
}

.c-btn--white {
  background-color: #009fe8 !important;
  border-color: #fff;
  color: #fff;
}

.c-btn--white:hover {
  background-color: #fff !important;
  border-color: #009fe8;
  color: #009fe8;
}

.c-btn--normal {
  background-color: #fff !important;
  border-color: #009fe8;
  color: #009fe8;
}

.c-btn--normal:hover {
  background-color: #009fe8 !important;
  border-color: #fff;
  color: #fff;
}

.title {
  padding: 2rem 0;
  color: #fff;
}

.bold-text {
  font-weight: 700;
  font-size: 1.25rem;

  text-decoration-line: underline;
  text-decoration-color: #ffe500;
  text-decoration-thickness: 8px;

  text-underline-offset: -6px;

  text-decoration-skip-ink: none;
  -webkit-text-decoration-skip: none;
}

.line-height-15 {
  line-height: 1.5rem;
}

.font-red {
  color: #f00;
}

.font-white {
  color: #fff;
}

.kiyaku {
  text-align: left;
  text-decoration-line: underline;
  line-height: 1.8rem;
}

.text-align-center {
  text-align: center;
}

.text-align-left {
  text-align: left;
}

.c-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.hidden {
  display: none;
}

.c-bullet-list li div {
  text-indent: -1em;
  padding-left: 1em;
}

.error main {
  padding-top: 2rem;
}

.error .title {
  color: #000;
}

.un_modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: 0;
  transition: opacity .18s ease-in;
}

/* 表示状態 */
.un_modal[aria-hidden="false"] {
  pointer-events: auto;
  opacity: 1;
}

.un_modal > .modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  backdrop-filter: blur(2px);
}

.un_modal .modal-panel {
  width: calc(710 / 750 * 100%);
  max-width: 730px;
  height: calc(100vh - 80px);
  margin: 40px auto 40px;
  transform: translateY(6px) scale(0.98);
  opacity: 0;
  transition: transform .2s cubic-bezier(.2, .7, .2, 1), opacity .2s ease;
  border-radius: .75rem;
  padding-top: 30px;
  padding-bottom: 90px;
  position: relative;
}

.un_modal[aria-hidden="false"] .modal-panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.un_modal .container {
  padding-right: 20px;
  padding-left: 20px;
  overflow-y: scroll;
  height: 100%;
}

.un_modal .close_icon {
  position: absolute;
  top: -35px;
  right: 0;
  color: #fff;
  font-size: 24px;
}

.un_modal .close_button {
  width: calc(315 / 335 * 100%);
  border: 1px solid #000;
  margin-right: auto;
  margin-left: auto;
  background-color: #fff;
  color: #000;
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  margin: auto;
}

#app-modal-title {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

#app-modal-body * {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: .5px;
  text-align: left;
}

.ul-paren > li::before {
  content: none;
}

.ul-paren {
  counter-reset: n;
}

.ul-paren > li {
  counter-increment: n;
  position: relative;
  padding-left: 1.8em;
}

.ul-paren > li::before {
  content: "(" counter(n) ") ";
  position: absolute;
  left: 6px;
  top: 0;
}

.ul-kome > li::before {
  content: '※';
}