@charset "UTF-8";
/**
 * ダスキンお問い合わせフォーム用SCSS
 * Contact Form 7のフォームスタイル
 */
.container {
  max-width: 800px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
}

.wpcf7 {
  max-width: 800px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 5px;
}
@media (max-width: 768px) {
  .wpcf7 {
    padding: 15px;
  }
}
.wpcf7 h1 {
  font-size: 24px;
  text-align: center;
  margin-bottom: 30px;
  color: #333;
}
@media (max-width: 768px) {
  .wpcf7 h1 {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.wpcf7 label {
  display: block;
  margin-bottom: 20px;
}
.wpcf7 label > span:first-child {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #555;
}
.wpcf7 .wpcf7-form-control-wrap {
  display: block;
  margin-top: 8px;
}
.wpcf7 input[type=text],
.wpcf7 input[type=email],
.wpcf7 input[type=tel],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  box-sizing: border-box;
  transition: all 0.3s ease;
}
.wpcf7 input[type=text]:focus,
.wpcf7 input[type=email]:focus,
.wpcf7 input[type=tel]:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
  border-color: #56a2db;
  outline: none;
  box-shadow: 0 0 5px rgba(86, 162, 219, 0.3);
}
.wpcf7 input[type=text]::placeholder,
.wpcf7 input[type=email]::placeholder,
.wpcf7 input[type=tel]::placeholder,
.wpcf7 select::placeholder,
.wpcf7 textarea::placeholder {
  color: #999;
  font-size: 14px;
}
.wpcf7 textarea {
  height: 150px;
  min-height: 150px;
  resize: vertical;
  font-family: inherit;
  line-height: 1.5;
}
.wpcf7 select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg fill="black" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 20px;
  cursor: pointer;
}
.wpcf7 input[type=submit] {
  background-color: #4CAF50;
  color: white;
  border: none;
  padding: 12px 24px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 10px 0;
  cursor: pointer;
  border-radius: 4px;
  width: 100%;
  transition: background-color 0.3s;
}
.wpcf7 input[type=submit]:hover {
  background-color: #449d48;
}
.wpcf7 input[type=submit]:active {
  transform: translateY(1px);
}
@media (max-width: 768px) {
  .wpcf7 input[type=submit] {
    padding: 10px 20px;
  }
}
.wpcf7 .wpcf7-not-valid-tip {
  color: #f44336;
  font-size: 14px;
  margin-top: 5px;
}
.wpcf7 .wpcf7-response-output {
  margin: 20px 0;
  padding: 15px;
  border-radius: 4px;
}
.wpcf7 .wpcf7-validation-errors {
  border: 1px solid #f44336;
  background-color: #ffebee;
  color: #f44336;
}
.wpcf7 .wpcf7-mail-sent-ok {
  border: 1px solid #4CAF50;
  background-color: #e8f5e9;
  color: #4CAF50;
}

.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 16px;
  font-weight: 600;
  color: #333;
}
.form-group select,
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  transition: all 0.3s ease;
}
.form-group select:focus,
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3498db;
  box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}
.form-group textarea {
  min-height: 150px;
  resize: vertical;
  font-size: 16px;
  font-family: inherit;
  line-height: 1.5;
}
.form-group__text {
  font-size: 12px;
  color: #666;
  margin: 8px 0;
  line-height: 1.4;
}
.form-group .required {
  position: absolute;
  top: 2.6rem;
  right: 2rem;
  color: #f44336;
  font-size: 14px;
  font-weight: bold;
}
@media screen and (max-width: 1025px) {
  .form-group .required {
    top: 2.3rem;
    right: 1rem;
  }
}

.attention-section {
  margin-top: 30px;
  padding: 20px;
  background-color: #f5f5f5;
  border-radius: 5px;
}
.attention-section h3 {
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 16px;
  color: #333;
}
.attention-section div {
  line-height: 1.5;
  font-size: 12px;
  color: #666;
}
.attention-section div br {
  margin-bottom: 5px;
}

.Page__contact__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}
.Page__contact__container__flex {
  display: flex;
  gap: 40px;
}
@media (max-width: 768px) {
  .Page__contact__container__flex {
    flex-direction: column;
    gap: 20px;
  }
}
.Page__contact__container__flex__form {
  flex: 1;
}
.Page__contact__container__flex__form .form-group {
  margin-bottom: 15px;
  position: relative;
}
.Page__contact__container__flex__form .form-group .required {
  position: absolute;
  top: 2.6rem;
  right: 2rem;
  color: #f44336;
  font-size: 12px;
}
@media screen and (max-width: 1025px) {
  .Page__contact__container__flex__form .form-group .required {
    top: 2.3rem;
    right: 1rem;
  }
}
.Page__contact__container__flex__info {
  flex: 0 0 300px;
}
@media (max-width: 768px) {
  .Page__contact__container__flex__info {
    flex: 1;
  }
}

.text-required {
  color: #f44336;
  font-size: 12px;
}
.text-required::before {
  content: "※ ";
}

.form-description {
  font-size: 14px;
  color: #777;
  margin-top: -5px;
  margin-bottom: 8px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.wpcf7-response-output {
  animation: fadeIn 0.3s ease;
}

.wpcf7 input[type=checkbox],
.wpcf7 input[type=radio] {
  margin-right: 5px;
  vertical-align: middle;
}
.wpcf7 .wpcf7-list-item {
  display: block;
  margin-bottom: 5px;
}
.wpcf7 .wpcf7-list-item label {
  display: inline;
  font-weight: normal;
  margin-bottom: 0;
}

.wpcf7 input[type=file] {
  padding: 5px;
  border: 1px solid #ddd;
  border-radius: 4px;
  width: 100%;
  background-color: white;
}/*# sourceMappingURL=contact.css.map */