/* main-visual */
.main-visual {
  position: relative;
  height: 100vh;
  background: url("/ado/images/main/main_banner.png") no-repeat center center /
    cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.main-visual__overlay {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-visual__title {
  font-size: 54px;
  font-weight: 600;
  line-height: 64px;
}

.main-visual__desc {
  margin-top: 25px;
  font-size: 24px;
  font-weight: 500;
  line-height: 34px;
  color: #fff;
}

.main-visual__btn {
  margin-top: 35px;
  display: inline-block;
  background-color: #e1fc76;
  color: #000;
  padding: 15px 42px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.main-visual__btn:hover {
  background-color: #c0f000;
}

@media (max-width: 1024px) {
  .main-visual__title {
    font-size: 26px;
    line-height: 36px;
  }

  .main-visual_title {
    max-width: 300px;
  }

  .main-visual__desc {
    margin-top: 15px;
    font-size: 14px;
    line-height: 24px;
  }

  .main-visual__btn {
    margin-top: 25px;
    padding: 5px 12px;
    font-size: 14px;
    line-height: 24px;
    border-radius: 4px;
  }
}

@media (max-width: 425px) {
  .main-visual {
    background: url("/ado/images/main/main_banner_mo.png") no-repeat center
      center / cover;
  }
}

/* section01 */
.section01 {
  padding: 120px 0;
  max-width: 1440px;
  margin: 0 auto;
  text-align: center;
}

.section01__top {
  margin-bottom: 80px;
}

.section01__title {
  font-size: 34px;
  font-weight: 600;
  line-height: 42px;
  word-break: keep-all;
}

.section01__desc {
  margin-top: 20px;
  font-size: 20px;
  line-height: 28px;
}

.section01__btn {
  display: inline-block;
  margin-top: 40px;
  background-color: #e1fc76;
  color: #000;
  padding: 15px 35px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.section01__btn:hover {
  background-color: #c0f000;
}

.section01__question {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 60px;
}

.section01__features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.feature-box {
  flex: 1;
  background-color: #f8f8f8;
  padding: 35px 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.feature-label {
  display: inline-block;
  background-color: #e1fc76;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 16px;
  margin-bottom: 25px;
}

.feature-icon {
  align-self: center;
  margin-bottom: 25px;
}

.feature-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}

.feature-desc {
  font-size: 18px;
  line-height: 26px;
  text-align: left;
  word-break: keep-all;
}

@media (max-width: 1440px) {
  .section01 {
    max-width: 1024px;
  }
}

@media (max-width: 1024px) {
  .section01__features {
    flex-direction: column;
    padding: 0 25px;
  }
}

@media (max-width: 768px) {
  .section01 {
    padding: 80px 0;
  }

  .section01__top {
    padding: 0 25px;
    margin-bottom: 60px;
  }

  .section01__title {
    font-size: 24px;
    line-height: 32px;
  }

  .section01__desc {
    margin-top: 15px;
    font-size: 16px;
    line-height: 26px;
  }

  .section01__btn {
    margin-top: 25px;
    padding: 5px 26px;
    font-size: 14px;
    line-height: 24px;
    border-radius: 4px;
  }

  .section01__question {
    font-size: 24px;
    margin-bottom: 45px;
  }

  .feature-box {
    padding: 20px;
    border-radius: 20px;
  }

  .feature-label {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .feature-icon {
    margin-bottom: 15px;
  }

  .feature-icon img {
    max-width: 100px;
  }

  .feature-title {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .feature-desc {
    font-size: 14px;
    line-height: 24px;
  }
}

/* mid-banner */
.mid-banner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mid_banner-pc {
  display: block;
}

.mid_banner-m {
  display: none;
}

@media (max-width: 425px) {
  .mid-banner img {
    width: 100%;
  }

  .mid_banner-pc {
    display: none;
  }
  .mid_banner-m {
    display: block;
  }
}

/* section02 */
.section02 {
  background-color: #f8f8f8;
  padding: 120px 0;
}

.section02__title {
  text-align: center;
  margin-bottom: 80px;
}

.section02__title h2 {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 20px;
}

.section02__title p {
  font-size: 22px;
}

.section02__inner {
  display: flex;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  justify-content: space-between;
}

.section02__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section02__left h3 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 15px;
}

.section02__left p {
  font-size: 16px;
}

.section02__right {
  flex: 1;
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  font-size: 14px;
  margin-bottom: 10px;
}

.contact-form input,
.contact-form textarea {
  padding: 10px 15px;
  font-size: 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 25px;
}

.tennis-options {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 10px;
}

.checkbox-btn {
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 6px;
  padding: 9px 10px;
  font-size: 14px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  margin-bottom: 0 !important;
}

.checkbox-btn input[type="checkbox"] {
  display: none;
}

.checkbox-btn:hover {
  background-color: rgba(0, 0, 0, 0.3);
}

.checkbox-btn input[type="checkbox"]:checked + span,
.checkbox-btn:has(input[type="checkbox"]:checked) {
  background-color: #e1fc76;
  font-weight: 600;
}

.form-hint {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.5);
  margin-top: 6px;
}

.radio-group {
  margin-bottom: 20px;
  border: none;
  padding: 0;
}

.radio-options {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.radio-btn {
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 6px;
  flex: 1;
  font-size: 14px;
  line-height: 36px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: 0 !important;
}

.radio-btn input[type="radio"] {
  display: none;
}

.radio-btn:has(input[type="radio"]:checked) {
  background-color: #d8ff4e;
  font-weight: 600;
}

.form-buttons {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.btn-cancel,
.btn-submit {
  flex: 1;
  line-height: 48px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
}

.btn-cancel {
  background-color: #f8f8f8;
  border: 1px solid #000;
}

.btn-submit {
  background-color: #d8ff4e;
  border: 1px solid transparent;
}

.btn-submit:hover {
  background-color: #c0f000;
}

@media (max-width: 1024px) {
  .section02 {
    padding: 80px 0;
  }

  .section02__title {
    margin-bottom: 45px;
  }

  .section02__title h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .section02__title p {
    font-size: 16px;
    line-height: 24px;
  }

  .section02__inner {
    flex-direction: column;
    padding: 0 25px;
  }

  .section02__left {
    margin-bottom: 30px;
  }

  input[type="date"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: white;
    height: 38px;
  }
}
