.contact-form {
  max-width: 1000px;
  margin: 0 auto;
}
.contact-form__tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.contact-form__tab {
  padding: 12px 24px;
  background: #FFF9EE;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}
.contact-form__tab:hover, .contact-form__tab.active {
  background: #FFE8B8;
}
.contact-form__field {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 20px;
  align-items: center;
}
@media (max-width: 767px) {
  .contact-form__field {
    margin-top: 40px !important;
  }
  .contact-form__field:first-child {
    margin-top: 0 !important;
  }
}
.contact-form__field--top {
  align-items: start;
}
.contact-form__field--top .contact-form__label {
  padding-top: 0.25em;
}
@media (max-width: 767px) {
  .contact-form__field {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.contact-form__label {
  text-align: right;
}
@media (max-width: 767px) {
  .contact-form__label {
    text-align: left;
    margin-bottom: 1em;
  }
}
.contact-form__input {
  width: 100%;
  padding: 12px 16px;
  background: #FFF9EE;
  border: none;
  border-radius: 8px;
}
.contact-form__input::placeholder {
  color: #CCC;
}
.contact-form__input--short {
  max-width: 300px;
}
.contact-form__select {
  width: 100%;
  max-width: 300px;
  padding: 12px 16px;
  background: #FFF9EE;
  border: none;
  border-radius: 8px;
  color: #666;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23E9A726' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.contact-form__textarea {
  width: 100%;
  min-height: 240px;
  padding: 12px 16px;
  background: #FFF9EE;
  border: none;
  border-radius: 8px;
  font-family: inherit;
  resize: vertical;
}
.contact-form__textarea::placeholder {
  color: #CCC;
}
.contact-form__checkbox-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.contact-form__checkbox-item {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.contact-form__checkbox-item input[type=checkbox] {
  appearance: none;
  width: 20px;
  height: 20px;
  background: #FDF6E6;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
}
.contact-form__checkbox-item input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: #E9A726;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.contact-form__checkbox-item span {
  color: #666;
  font-size: 14px;
}


.wpcf7-radio {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.wpcf7-radio input[type=checkbox] {
  appearance: none;
  width: 20px;
  height: 20px;
  background: #FDF6E6;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
}
.wpcf7-radio input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: #E9A726;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.wpcf7-radio .contact-form__radio {
  color: #666;
  font-size: 14px;
  margin-right: 20px;
}

.contact-form__label span{
  color: #E9A726;
}

.wpcf7-not-valid-tip{
  color: #E9A726;
  font-size: 80%;
  display: block;
}

.contact-form__radio-group {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.contact-form__child {
  display: flex;
  gap: 30px;
}
@media (max-width: 767px) {
  .contact-form__child.mt-60 {
    justify-content: center;
  }
}
.contact-form__radio {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.contact-form__radio input[type=radio] {
  appearance: none;
  width: 20px;
  height: 20px;
  background: #FDF6E6;
  border-radius: 3px;
  cursor: pointer;
  position: relative;
}
.contact-form__radio input[type=radio]:checked::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: #E9A726;
  border-radius: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.contact-form__radio span {
  color: #666;
}
.contact-form__privacy {
  text-align: center;
  margin-top: 60px;
}
.contact-form__checkbox {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.contact-form__checkbox input[type=checkbox] {
  appearance: none;
  width: 20px;
  height: 20px;
  background: #FDF6E6;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
}
.contact-form__checkbox input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: #E9A726;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.contact-form__checkbox-item {
  margin-right: 25px;
}
.contact-form__checkbox span {
  color: #666;
}
.contact-form__checkbox span a {
  color: #666;
  text-decoration: underline;
}
.contact-form__submit {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .contact-form__submit {
    text-align: center;
  }
}
.contact-form__button {
  padding: 18px 80px;
  background: #FFF;
  border: 2px solid #E9A726;
  border-radius: 50px;
  color: #E9A726;
  cursor: pointer;
  transition: all 0.3s;
}
.contact-form__button:hover {
  background: #E9A726;
  color: #FFF;
}

@media (max-width: 767px) {
  .news {
    padding: 0 20px !important;
  }
}

.news__inner.flex-container {
  flex-wrap: nowrap;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .news__inner.flex-container {
    flex-direction: column;
    gap: 0 !important;
  }
}

.news__header {
  flex-shrink: 0;
  width: 280px;
}
@media (max-width: 767px) {
  .news__header {
    width: auto;
    flex: 0 !important;
  }
}

.news__list.faq {
  flex: 1;
  position: relative;
}
.news__list.faq::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: calc(-50vw + 50%);
  bottom: 0;
  background: #FDF6E6;
  border-radius: 64px 0 0 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .news__list.faq::after {
    border-radius: 32px 0 0 0;
  }
}

.faq__item {
  border-top: 1px solid #E0E0E0;
}
.faq__item:last-child {
  border-bottom: 1px solid #E0E0E0;
}
.faq__question {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.faq__number {
  color: #E9A726;
  width: 2.25em;
  flex-shrink: 0;
  line-height: 1;
  font-family: "Sora", sans-serif;
}
.faq__answer {
  padding-left: 70px;
}
@media (max-width: 767px) {
  .faq__answer {
    padding-left: 0;
  }
}
.faq__answer p {
  color: #666;
  font-size: 14px;
  line-height: 1.8;
}



/* 2025 10/28追記 編集者:master */
/* Contact Form 7 レスポンスメッセージのカスタムスタイル */
.wpcf7 .screen-reader-response {
  position: absolute !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  border: 0 !important;
  word-wrap: normal !important;
}

.wpcf7 form .wpcf7-response-output {
  margin: 2em 0 1em !important;
  padding: 1em 1.5em !important;
  border-radius: 8px !important;
  font-size: 16px !important;
  line-height: 1.6 !important;
}

.wpcf7 form.sent .wpcf7-response-output {
  background: #E8F5E9 !important;
  border: 2px solid #4CAF50 !important;
  color: #2E7D32 !important;
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
  background: #FFEBEE !important;
  border: 2px solid #F44336 !important;
  color: #C62828 !important;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
  background: #FFF3E0 !important;
  border: 2px solid #FF9800 !important;
  color: #E65100 !important;
}

.wpcf7 form.init .wpcf7-response-output,
.wpcf7 form.submitting .wpcf7-response-output,
.wpcf7 form.resetting .wpcf7-response-output {
  display: none !important;
}

.hidden-fields-container {
  display: none !important;
}

.wpcf7-response-output{
  display: none;
}