body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 100vh;
  color: #444;
  font-family: sans-serif;
  font-size: 14px;
}

.l-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 50px;
}
@media screen and (max-width: 767px) {
  .l-header {
    justify-content: center;
    display: none;
  }
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 12px;
}

.section {
  max-width: min(800px, 90%);
  margin: 0 auto;
}
.section-title {
  margin: 70px 0 50px;
  font-weight: bold;
  font-size: 32px;
  text-align: center;
}
.section-subtitle {
  display: block;
  margin-top: 17px;
  color: #aaa;
  font-size: 18px;
}

.text {
  margin: 50px 0;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
}

.form-horizontal {
  display: flex;
  gap: 15px;
}
.form-horizontal-item {
  flex-grow: 1;
}
.form-item {
  margin-top: 30px;
}
.form-label {
  display: block;
  margin-left: 5px;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 14px;
}
.form-label-required::after {
  content: "*";
  color: #d32;
}
.form-input {
  width: 100%;
  padding: 5px 10px;
  border: 2px solid #888;
  border-radius: 5px;
  line-height: 1;
}
.form-input-select {
  padding: 10px 8px;
}
.form-input-textarea {
  resize: vertical;
  padding: 15px 10px;
  height: 300px;
}
.form-termsLink {
  display: block;
  margin: 50px 0 20px;
  text-align: center;
  text-decoration: underline;
  cursor: pointer;
}
.form-termsCheck {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .form-horizontal {flex-direction: column;}
}

.button {
  display: block;
  width: max-content;
  margin: 50px auto;
  padding: 12px 80px;
  border-radius: 45px;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, .16);
  font-size: 18px;
  /* font-weight: bold; */
  text-align: center;
  color: #fff;
}
.button-orange {background: #E49108;}
.button-gray {background: #555;}

.modal {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: .4s;
}
.modal.isShow {
  visibility: visible;
  opacity: 1;
}
.modal-bg {
  width: 100%;
  height: 100%;
  background-color: rgba(200, 200, 200, .8);
}
.modal-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  max-width: 900px;
  padding: 60px 60px 0;
  border-radius: 30px;
  background-color: #fff;
}
.modal-title {
  font-size: 21px;
  margin-top: 20px;
  margin-bottom: 50px;
  font-weight: bold;
  text-align: center;
  color: #E49108;
}
.modal-content {
  max-height: 70vh;
  overflow-y : scroll;
}
.modal-heading {
  font-size: 15px;
  margin: 2em 0 1em;
  color: #E49108;
}
.modal-text {
  margin: 1em 0;
  font-size: 14px;
  line-height: 2;
  letter-spacing: .05em;
}
.modal-separator {
  margin: 30px 0;
  border-color: #ddd;
}
.modal-box {
  margin-bottom: 40px;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.05em;
}
.modal-box-title {
  margin: 15px 0 28px;
  font-weight: bold;
}
.modal-close {
  position: absolute;
  top: 25px;
  right: 50px;
  cursor: pointer;
  font-size: 35px;
  color: #E49108;
  font-weight: bold;
}

.indentList {
  padding-left: 4em;
}
.indentList-item::first-letter {
  margin-left: -3.15em;
}
.indentList-ol {
  list-style: decimal;
  padding-left: 10px;
}

.message {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
  margin-bottom: -90px;
}
.message-text {
  margin: 10px;
  color: 555;
  text-align: center;
}

.l-footer .foot_body {
  background-color: #fff;
  margin-top: 90px;
  padding-bottom: 20px;
  text-align: center;
}
.l-footer .foot_nav {
  display: flex;
  justify-content: center;
  text-transform: uppercase;
  margin-bottom: 70px;
  flex-wrap: wrap;
}
.l-footer .foot_nav li {
  padding: 0 25px;
}
.l-footer .foot_nav a {
  color: #333;
}
.l-footer .foot_logo {
  width: 288px;
  margin: 0 auto 25px;
}
.l-footer .foot_address {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 70px;
}
.l-footer .copyright {
  color: #D99423;
}
@media screen and (max-width: 767px) {
  .l-footer .foot_nav {
    flex-direction: column;
    line-height: 2;
  }
}