/* 枠 */
.confirm__explanation {
    background-color: white;
    padding: 15px;
    border-radius: 10%;
    border: solid 3px #f57a7a;
    font-weight: 500;
}

/* タイトル */
.title__wrapper {
  border: 1px solid black;
	padding: 10px;
	text-align: center;
  margin: 1em;
}

.confirm-title {
  font-size: clamp(1.0rem, 1.0rem + 1.25vw, 1.2rem);
  margin: 1rem 0;
}

/* サブタイトル */
.subtitle__wrapper {
	padding: clamp(1.0rem, 1.0rem + 0.25vw, 2rem) 0;
	text-align: center;
  margin: 0;
}

.confirmform-footer {
  margin-top: 2em;
  text-align: center;
}

.confirmform-button {
    width: 20%;
    min-width: 100px;
    padding: 10px;
    margin: auto;
    margin-top: 1em;
    color: #333;
    font-size: 18px;
    font-weight: 700;
    background-color: #cccccc;
    text-align: center;
    cursor: pointer;
    transition: 0.2s;
}
.confirmform-button:hover {
    box-shadow: 0px 5px 15px 0px rgba(105, 105, 105, 0.35);
}