@charset "UTF-8";
.c-modal.is-show {
    visibility: visible;
    opacity: 1;
}
.c-modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    visibility: hidden;
    opacity: 0;
    transition: 0.4s;
}
.c-modal__bg {
    width: 100%;
    height: 100%;
    background-color: rgba(30, 30, 30, 0.9);
}
@media (width >= 768px) {
    .c-modal__wrapper {
        width: 74.074074%;
        height: 52.537313%;
        padding: 10px 30px;
    }
}
.c-modal__wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    place-items: center;
    width: 90%;
    max-width: 500px;
    height: 80%;
    max-height: 36rem;
    padding: 1.5rem 1rem;
    overflow: auto;
    font-size: 1.4rem;
    line-height: 1.5;
    text-align: center;
    background-color: #fff;
    transform: translate(-50%, -50%);
}
@media (width >=768px) {
  .c-modal__wrapper {
    width: 74.074074%;
    height: 52.537313%;
    padding: 10px 30px;
  }
}
.c-modal__close {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  cursor: pointer;
}
.c-modal__button {
    display: grid;
    place-items: center;
    width: 11.5rem;
    height: 5rem;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff !important;
    cursor: pointer;
    text-decoration: none;
}
.c-modal__buttons li {
  margin: 0;
  padding: 0;
  content: none;
}
.c-modal__buttons li:before {
  content: none !important;
}
.c-modal__buttons {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 0.5rem;
    justify-content: center;
    margin-top: 3.1875rem;
    padding: 0;
}
.c-modal__button {
  text-decoration: none;
}
.c-modal__button.c-modal__button--yes {
    background-color: #1255a3;
}
.c-modal__button.c-modal__button--no {
    background-color: #000;
}
.c-modal__contents p,
.c-modal__question p {
  margin-bottom: 0;
}
@media (width >= 768px) {
    .c-modal__buttons {
        gap: 3rem;
    }
}
@media (width >= 375px) {
    .c-modal__buttons {
        gap: 5rem;
    }
}
.c-modal__question {
  font-weight: 700;
}
.c-modal__contents > .c-modal__question + .c-modal__buttons {
    margin-top: 3.1875rem;
}
