html {
  font-size: 62.5%;
  height: 100%;
}

body {
  height: 100%;
}

.red-text {
  color: red;
}

.none {
  display: none;
}

input[type=date]::-webkit-calendar-picker-indicator {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
}

input[type=date]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input[type=date]::-webkit-clear-button {
  -webkit-appearance: none;
}

input[type=date] {
  position: relative;
}

.main {
  margin: 0 auto 40px;
  width: 1080px;
  background: #fff;
  border: #b65757 solid 1px;
  color: #333;
}
.main .tab {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.main .tab > .tab-label {
  flex: 1 1;
  order: -1;
  min-width: 70px;
  padding: 20px 0 20px 0;
  background-color: #f5f5f5;
  font-size: 1.6rem;
  color: #999;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
}
.main .tab > .tab-label:hover {
  opacity: 0.8;
}
.main .tab > div {
  display: none;
  width: 100%;
  padding: 1.5em 1em;
  background-color: #fff;
}
.main .tab .tab-label:has(:checked) {
  border-bottom: 6px solid #b65757;
  color: #b65757;
}
.main .tab .tab-label:has(:checked) + div {
  display: block;
}

.form form {
  width: 800px;
  margin: 0 auto;
}
.form form p {
  font-size: 1.8rem;
  margin: 40px 0 4px 0;
  font-weight: bold;
}
.form form p span {
  font-weight: lighter;
  font-size: 1.6rem;
}
.form form .text-box {
  width: 100%;
  height: 34px;
  text-align: left;
}
.form form .calendar {
  display: flex;
  align-items: center;
}
.form form .calendar p {
  line-height: 0;
  display: block;
  margin: 0;
}
.form form .calendar .date {
  height: 36px;
  width: 40%;
}
.form form .calendar .radio {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  margin: 0 0 0 20px;
  cursor: pointer;
}
.form form .calendar .radio label {
  padding: 0 12px 0 12px;
}
.form form .button {
  display: block;
  width: 40%;
  aspect-ratio: 6/1;
  margin: 60px auto 80px;
  border: none;
  font-weight: bold;
  font-size: 1.6rem;
  cursor: pointer;
  background: #b65757;
  color: #fff;
  transition: all 0.1s;
}
.form form .button:active {
  width: 38%;
  transition: all 0.1s;
  opacity: 0.8;
}

.thanks h1 {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-top: 30vh;
}
.thanks .button {
  display: block;
  width: 400px;
  text-align: center;
  padding: 20px 0 20px 0;
  margin: 60px auto 80px;
  text-decoration: none;
  border: none;
  font-weight: bold;
  font-size: 2rem;
  cursor: pointer;
  background: #b65757;
  color: #fff;
}/*# sourceMappingURL=style.css.map */