.modal-disclaimer {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  z-index: 1000;
}

.modal-disclaimer .modal-overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.45s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
}

.modal-disclaimer .modal-container {
  max-width: 1100px;
  margin: auto;
  padding: 30px 20px 0 30px;
  background: #fff;
  opacity: 0;
  transition: opacity 0.45s 0.45s ease-in-out;
  position: absolute;
  top: 90px;
  left: 0;
  bottom: 90px;
  right: 0;
}

.modal-disclaimer .modal-body {
  margin-bottom: 5px;
  height: 80%;
  overflow-y: auto;
  padding: 0 40px;
}
@media screen and (max-width: 768px) {
  .modal-disclaimer .modal-body {
    margin-bottom: 0;
    height: 75%;
    padding: 0 7px;
  }
}

.modal-disclaimer .modal-section-title {
  margin-bottom: 15px;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-top: 30px;
}

.modal-disclaimer .modal-list {
  margin-bottom: 40px;
}

.modal-disclaimer .modal-list:last-of-type {
  margin-bottom: 0;
}

.modal-disclaimer .modal-list .item-disc {
  margin-bottom: 10px;
  padding-left: calc(1em + 4px);
  position: relative;
  font-size: 14px;
  line-height: 1.7;
}

.modal-disclaimer .modal-list .item-disc::before {
  content: "・";
  position: absolute;
  left: 0;
}


.modal-disclaimer .modal-list .item {
  margin-bottom: 25px;
  font-size: 14px;
  line-height: 1.7;
}

.modal-disclaimer .modal-btns {
  display: flex;
  padding: 20px 80px;
}
@media screen and (max-width: 768px) {
  .modal-disclaimer .modal-btns {
    flex-direction: column;
    padding: 20px 0;
    gap: 10px;
  }
}

.modal-disclaimer .btn-arrow-left {
  transform: rotate(-135deg);
}

.modal-disclaimer.is-ready {
  display: block;
}

.modal-disclaimer.is-active .modal-overlay {
  opacity: 1;
  transition: opacity 0.45s ease-in-out;
}

.modal-disclaimer.is-active .modal-container {
  opacity: 1;
  transition: opacity 0.45s 0.45s ease-in-out;
}

@media screen and (max-width: 768px) {
  .modal-disclaimer .modal-container {
    margin: 0 10px;
    padding: 15px;
    top: 50px;
    bottom: 50px;
  }
  .modal-disclaimer .modal-section-title {
    font-size: 18px;
  }
  .modal-disclaimer .modal-list .item-disc,
  .modal-disclaimer .modal-list .ttl-num,
  .modal-disclaimer .modal-list .item {
    font-size: 14px;
  }
  
}
