@charset "UTF-8";
/* CSS Document */

.modal-overlay {
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadein 0.3s;
}
@keyframes fadein {
  from { opacity: 0;}
  to { opacity: 1;}
}
.modal-content {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 0 32px 0 rgba(0,0,0,0.25);
  position: relative;
}
.modal-close {
  position: absolute;
  right: 1.2rem;
  top: 1.2rem;
  background: transparent;
  border: none;
  font-size: 2rem;
  cursor: pointer;
}
.caution-btn {
  background: #f5695f;
  color: #fff;
  padding: 0.7em 1.8em;
  border-radius: 0.7em;
  border: none;
  font-size: 1.2em;
  cursor: pointer;
}
.caution-section h2{
	font-size: 20px;
}
.caution-section h3{
	margin: 10px 0;
}

.caution-section ol li {
  list-style-type: none;
  counter-increment: cnt;
  position: relative;
  padding-left: 35px;
  margin-bottom: 5px;
}

.caution-section ol li::before {
  content: "("counter(cnt)")";
  position: absolute;
  left: 0;
}
.caution-section .note{
	font-size: 12px;
}
.caution-section strong,.caution-section p{
	margin-bottom: 5px;
}