@charset "UTF-8";
/*ContactForm7カスタマイズ*/


/* ===== CF7 Dark Modern Style ===== */


.page_contact {
  main {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
}

.cf7-wrap {
  max-width: 720px;
  margin: 0px auto;
  background: transparent;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.cf7-field {
  margin-bottom: 28px;
}

.cf7-field label {
  color: #fff;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: .05em;
  font-size: 14px;
  display: flex;
}

.required {
  font-size: 11px;
  color: #ff3b3b;
  background-color: #fff;
  border-radius: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3px;
  margin-left: 10px;
}

.cf7-wrap input,
.cf7-wrap textarea {
  width: 100%;
  padding: 14px 16px;
  background: #1c1c1c;
  border: 1px solid #333;
  color: #fff;
  border-radius: 6px;
  font-size: 14px;
  transition: 0.3s;
}

.cf7-wrap input:focus,
.cf7-wrap textarea:focus {
  outline: none;
  border-color: #f1ba22; /* サッカー感のあるレッド */
  box-shadow: 0 0 0 2px rgba(225,6,0,.2);
}

.cf7-wrap textarea {
  min-height: 180px;
  resize: vertical;
}

.cf7-submit {
  text-align: center;
  margin-top: 40px;
}

.cf7-submit input[type="submit"] {
  background: #f1ba22;
  color: #fff;
  border: none;
  padding: 16px 48px;
  font-weight: bold;
  letter-spacing: .1em;
  border-radius: 50px;
  cursor: pointer;
  transition: .3s;
}

.cf7-submit input[type="submit"]:hover {
  background: #ff2a2a;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(225,6,0,.4);
}


/* レスポンシブ */
@media (max-width: 768px) {
  .cf7-wrap {
    padding: 30px 20px;
  }
}


/*# sourceMappingURL=contact.css.map */