@charset "UTF-8";
main.page-contact {
  background-color: #DFF7FF;
}

#contact-hero .viewport-wrap {
  background-image: var(--contact-hero-bg, none);
}

#contact-faq .wrapper {
  padding: 160px 0;
}
#contact-faq .inner-box.accordion {
  border: 3px solid rgb(0, 134, 237);
  background-color: rgb(255, 255, 255);
}
#contact-faq .faq-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
#contact-faq .faq-item {
  margin: 0;
}
#contact-faq .faq-item:not(:last-child) {
  border-bottom: 1px solid rgb(81, 85, 89);
}
#contact-faq .accordion-trigger {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 30px 40px;
  gap: 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.2s;
}
#contact-faq .accordion-trigger:hover {
  background-color: rgb(224, 240, 255);
}
#contact-faq .accordion-q {
  flex-shrink: 0;
  width: 28px;
  font-size: 1.3125rem;
  font-weight: 700;
  color: rgb(0, 134, 237);
}
#contact-faq .accordion-question {
  flex: 1;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.9;
  color: #252525;
}
#contact-faq .accordion-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
}
#contact-faq .accordion-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: rgb(0, 134, 237);
  transform: translateY(-50%);
}
#contact-faq .accordion-icon::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  background-color: rgb(0, 134, 237);
  transform: translateX(-50%);
  transition: opacity 0.2s;
}
#contact-faq .accordion-trigger[aria-expanded=true] .accordion-icon::before {
  opacity: 0;
}
#contact-faq .accordion-content {
  padding: 15px 40px 30px 40px;
}
#contact-faq .accordion-content[hidden] {
  display: none;
}
#contact-faq .accordion-body {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
#contact-faq .accordion-a {
  flex-shrink: 0;
  width: 28px;
  font-size: 1.3125rem;
  font-weight: 400;
  color: #FF6B6B;
}
#contact-faq .accordion-answer {
  flex: 1;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.9;
  color: #252525;
}

#contact-form .wrapper {
  padding: 0 0 160px;
}
#contact-form h2 {
  font-size: 4.5rem;
  font-weight: 700;
  color: rgb(0, 134, 237);
  text-align: center;
  margin-bottom: 80px;
}
#contact-form .form-errors {
  margin-bottom: 80px;
  padding: 20px 30px;
  border: 2px solid #FF6B6B;
  background-color: rgba(255, 107, 107, 0.05);
  color: #FF6B6B;
}
#contact-form .form-errors ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#contact-form .form-errors ul li {
  font-size: 1rem;
  line-height: 1.9;
}
#contact-form .form-errors ul li::before {
  content: "・";
}
#contact-form .form-group {
  margin-bottom: 60px;
}
#contact-form .form-label-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 12px;
}
#contact-form .form-label {
  font-size: 1.3125rem;
  font-weight: 700;
  color: #252525;
  line-height: 1.54;
}
#contact-form .form-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 60px;
  height: 30px;
  border-radius: 5px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  background-color: rgb(255, 255, 255);
}
#contact-form .form-badge--required {
  border: 2px solid #FF6B6B;
  color: #FF6B6B;
}
#contact-form .form-badge--optional {
  border: 2px solid rgb(0, 134, 237);
  color: rgb(0, 134, 237);
}
#contact-form .form-input,
#contact-form .form-select,
#contact-form .form-textarea {
  display: block;
  width: 100%;
  height: 60px;
  padding: 0 20px;
  border: 2px solid rgb(0, 134, 237);
  background-color: rgb(255, 255, 255);
  font-size: 1rem;
  font-family: "Noto Sans JP", YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  color: #252525;
  border-radius: 0;
  outline: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}
#contact-form .form-input::-moz-placeholder, #contact-form .form-select::-moz-placeholder, #contact-form .form-textarea::-moz-placeholder {
  color: rgb(226, 227, 228);
}
#contact-form .form-input::placeholder,
#contact-form .form-select::placeholder,
#contact-form .form-textarea::placeholder {
  color: rgb(226, 227, 228);
}
#contact-form .form-input:focus,
#contact-form .form-select:focus,
#contact-form .form-textarea:focus {
  border-color: rgb(8, 104, 200);
  box-shadow: 0 0 0 3px rgba(0, 134, 237, 0.18);
}
#contact-form .form-input--half {
  width: 490px;
}
#contact-form .form-textarea {
  height: 300px;
  padding: 15px 20px;
  resize: vertical;
}
#contact-form .form-select-wrap {
  position: relative;
  width: 100%;
}
#contact-form .form-select-wrap::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid rgb(0, 134, 237);
  border-bottom: 2px solid rgb(0, 134, 237);
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}
#contact-form .form-select-wrap .form-select {
  cursor: pointer;
}
#contact-form .form-radio-group {
  display: flex;
  gap: 50px;
  align-items: center;
  flex-wrap: wrap;
}
#contact-form .form-radio {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 1rem;
  color: #252525;
}
#contact-form .form-radio input[type=radio] {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  accent-color: rgb(0, 134, 237);
  cursor: pointer;
}
#contact-form .form-tel-group {
  display: flex;
  align-items: center;
  gap: 10px;
}
#contact-form .form-tel-group .form-input--tel {
  width: 150px;
  text-align: center;
}
#contact-form .form-tel-group .form-tel-sep {
  font-size: 1.3125rem;
  font-weight: 700;
  color: #252525;
  flex-shrink: 0;
}
#contact-form .form-submit {
  display: flex;
  justify-content: center;
  margin-top: 120px;
}

#contact-confirm .wrapper {
  padding: 160px 0;
}
#contact-confirm h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: rgb(0, 134, 237);
  letter-spacing: 3px;
  line-height: 1.67;
  margin-bottom: 20px;
}
#contact-confirm .confirm-subtitle {
  font-size: 1.3125rem;
  font-weight: 700;
  color: rgb(0, 134, 237);
  margin-bottom: 80px;
}
#contact-confirm .confirm-table {
  width: 100%;
  border-top: 1px solid rgb(226, 227, 228);
  margin-bottom: 80px;
}
#contact-confirm .confirm-row {
  display: flex;
  align-items: flex-start;
  min-height: 100px;
  padding: 25px 0;
  border-bottom: 1px solid rgb(226, 227, 228);
  gap: 40px;
}
#contact-confirm .confirm-label {
  flex-shrink: 0;
  width: 280px;
  font-size: 1.3125rem;
  font-weight: 700;
  color: #252525;
  line-height: 1.9;
}
#contact-confirm .confirm-value {
  flex: 1;
  font-size: 1rem;
  color: #252525;
  line-height: 1.9;
  white-space: pre-wrap;
}
#contact-confirm .confirm-notice {
  border: 1px solid #252525;
  padding: 30px 40px;
  margin-bottom: 80px;
}
#contact-confirm .confirm-notice .confirm-notice-title {
  font-size: 1.3125rem;
  font-weight: 700;
  color: #252525;
  margin-bottom: 15px;
}
#contact-confirm .confirm-notice .confirm-notice-list {
  list-style: disc;
  padding-left: 1.5em;
  margin-bottom: 20px;
}
#contact-confirm .confirm-notice .confirm-notice-list li {
  font-size: 1rem;
  color: #252525;
  line-height: 1.9;
}
#contact-confirm .confirm-notice .confirm-notice-agree {
  font-size: 1rem;
  color: #252525;
  line-height: 1.9;
}
#contact-confirm .confirm-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin-top: 120px;
}
#contact-confirm .confirm-buttons .button--back {
  background-color: #cccccc;
  border: 2px solid rgb(255, 255, 255);
  color: rgb(255, 255, 255);
}
#contact-confirm .confirm-buttons .button--back:hover {
  background-color: rgb(137, 141, 146);
  color: rgb(255, 255, 255);
  box-shadow: none;
}
#contact-confirm .confirm-buttons form {
  display: contents;
}

#contact-complete .wrapper {
  padding: 160px 0;
}
#contact-complete h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: rgb(0, 134, 237);
  text-align: center;
  letter-spacing: 3px;
  line-height: 1.67;
  margin-bottom: 80px;
}
#contact-complete .complete-body {
  font-size: 1.3125rem;
  color: #252525;
  text-align: center;
  line-height: 2;
  margin-bottom: 30px;
}
#contact-complete .complete-notice {
  font-size: 1rem;
  color: #d92e0b;
  text-align: center;
  line-height: 1.9;
  margin-bottom: 80px;
}
#contact-complete .confirm-buttons {
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 1080px) {
  #contact-faq .wrapper {
    padding: 40px 0;
  }
  #contact-faq .accordion-trigger {
    padding: 20px 25px;
    gap: 15px;
  }
  #contact-faq .accordion-q {
    width: 24px;
    font-size: 1rem;
  }
  #contact-faq .accordion-question {
    font-size: 1rem;
  }
  #contact-faq .accordion-content {
    padding: 0 25px 20px 25px;
  }
  #contact-faq .accordion-a {
    width: 24px;
    font-size: 1rem;
  }
  #contact-form .wrapper {
    padding: 0 0 40px;
  }
  #contact-form h2 {
    font-size: 2.5rem;
    letter-spacing: 4px;
    margin-bottom: 40px;
  }
  #contact-form .form-group {
    margin-bottom: 50px;
  }
  #contact-form .form-label {
    font-size: 1rem;
  }
  #contact-form .form-label-wrap {
    padding: 0 10px;
  }
  #contact-form .form-badge {
    width: 50px;
    height: 25px;
    font-size: 0.75rem;
  }
  #contact-form .form-input--half {
    width: 100%;
  }
  #contact-form .form-tel-group .form-input--tel {
    width: 85px;
  }
  #contact-form .form-submit {
    margin-top: 40px;
  }
  #contact-form .form-submit .button {
    min-width: 0;
    width: 100%;
    max-width: 300px;
  }
}