@charset "UTF-8";
/* 
 * Contact Page Styles
 * お問い合わせページ固有のスタイル
 */
.contact-form-section {
  padding: 80px 0;
  background: #fafafa;
}

.contact-intro {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
}

.contact-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 24px;
}

.contact-section-text {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #555;
}

.contact-form-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 60px;
  border-radius: 16px;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-info-section {
  padding: 80px 0;
}

.contact-info-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info-item {
  padding: 32px;
  background: white;
  border-radius: 12px;
  -webkit-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.contact-info-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}

.contact-info-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
}

/* ===================================
   Contact Form 7 完全スタイル
=================================== */
/* フォーム全体 */
.wpcf7 {
  max-width: 100%;
}

/* hidden-fields-container は非表示 */
.hidden-fields-container {
  display: none;
}

/* フォームグループ */
.form-group {
  margin-bottom: 28px;
}

/* ラベル */
.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: #333;
  font-size: 0.9375rem;
  line-height: 1.5;
}

/* 必須マーク */
.form-group .required {
  color: #ff4444;
  font-size: 0.75rem;
  margin-left: 6px;
  font-weight: 600;
}

/* wpcf7-form-control-wrap */
.wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

/* 入力フィールド共通スタイル */
.form-control,
.wpcf7-form-control.form-control {
  width: 100% !important;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  -webkit-transition: border-color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: border-color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
  font-family: inherit;
  background: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* フォーカス時 */
.form-control:focus,
.wpcf7-form-control.form-control:focus {
  outline: none;
  border-color: #60e772;
  -webkit-box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.1);
          box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.1);
}

/* テキストエリア */
textarea.form-control,
textarea.wpcf7-form-control.form-control {
  min-height: 150px;
  resize: vertical;
  line-height: 1.6;
}

/* セレクトボックス */
select.form-control,
select.wpcf7-form-control.form-control {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

/* プレースホルダー */
.form-control::-webkit-input-placeholder,
.wpcf7-form-control.form-control::-webkit-input-placeholder {
  color: #999;
  opacity: 1;
}
.form-control:-ms-input-placeholder,
.wpcf7-form-control.form-control:-ms-input-placeholder {
  color: #999;
  opacity: 1;
}
.form-control::-ms-input-placeholder,
.wpcf7-form-control.form-control::-ms-input-placeholder {
  color: #999;
  opacity: 1;
}
.form-control::placeholder,
.wpcf7-form-control.form-control::placeholder {
  color: #999;
  opacity: 1;
}

/* プライバシーポリシー同意 */
.privacy-policy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  margin-bottom: 32px;
}

.privacy-policy .wpcf7-form-control-wrap {
  width: -webkit-fit-content !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
}

.privacy-checkbox,
.wpcf7-acceptance .wpcf7-list-item input[type="checkbox"] {
  margin: 4px 0 0 0 !important;
  width: 18px;
  height: 18px;
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.privacy-policy label {
  margin: 0;
  font-weight: 500;
  font-size: 0.9375rem;
  cursor: pointer;
  line-height: 1.6;
}

.privacy-policy a {
  color: #60e772;
  text-decoration: underline;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.privacy-policy a:hover {
  color: #0097a7;
}

/* 送信ボタン */
.form-submit {
  text-align: center;
  margin-top: 40px;
}

.btn-submit,
.wpcf7-submit.btn-submit {
  display: inline-block;
  background: linear-gradient(135deg, #60e772, #00a8cc);
  color: white;
  border: none;
  padding: 16px 48px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-box-shadow: 0 4px 16px rgba(0, 188, 212, 0.3);
          box-shadow: 0 4px 16px rgba(0, 188, 212, 0.3);
  min-width: 200px;
}

.btn-submit:hover:not(:disabled),
.wpcf7-submit.btn-submit:hover:not(:disabled) {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 8px 24px rgba(0, 188, 212, 0.4);
          box-shadow: 0 8px 24px rgba(0, 188, 212, 0.4);
}

/* 無効状態 */
.btn-submit:disabled,
.wpcf7-submit.btn-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  -webkit-transform: none !important;
          transform: none !important;
}

/* スピナー */
.wpcf7-spinner {
  margin-left: 16px;
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(0, 188, 212, 0.3);
  border-top-color: #60e772;
  border-radius: 50%;
  -webkit-animation: wpcf7-spin 0.8s linear infinite;
          animation: wpcf7-spin 0.8s linear infinite;
}

@-webkit-keyframes wpcf7-spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes wpcf7-spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

/* エラーメッセージ */
.wpcf7-not-valid-tip {
  color: #ff4444;
  font-size: 0.875rem;
  margin-top: 6px;
  display: block;
  font-weight: 500;
}

/* バリデーションエラー */
.wpcf7-validation-errors {
  background: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: 8px;
  padding: 16px 20px;
  margin: 20px 0;
  color: #856404;
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* 送信完了メッセージ */
.wpcf7-mail-sent-ok {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  border-radius: 8px;
  padding: 16px 20px;
  margin: 20px 0;
  color: #155724;
  font-size: 0.9375rem;
  line-height: 1.6;
  font-weight: 600;
}

/* 送信エラーメッセージ */
.wpcf7-mail-sent-ng,
.wpcf7-aborted {
  background: #f8d7da;
  border: 1px solid #f5c6cb;
  border-radius: 8px;
  padding: 16px 20px;
  margin: 20px 0;
  color: #721c24;
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* レスポンスアウトプット */
.wpcf7-response-output {
  margin: 20px 0;
  padding: 0;
  border: none;
}

.wpcf7-response-output[aria-hidden="true"] {
  display: none;
}

/* 入力エラー時のフィールド */
.wpcf7-not-valid {
  border-color: #ff4444 !important;
}

/* screen-reader-response */
.screen-reader-response {
  position: absolute;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  word-wrap: normal;
}

/* wpcf7-list-item（チェックボックス・ラジオボタン用） */
.wpcf7-list-item {
  display: inline-block;
  margin: 0;
}

/* acceptance用の調整 */
.wpcf7-acceptance {
  display: inline-block;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
  .contact-info-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-form-wrapper {
    padding: 40px 24px;
  }
  .contact-section-title {
    font-size: 1.5rem;
  }
  .form-control,
  .wpcf7-form-control.form-control {
    padding: 12px 14px;
    font-size: 0.9375rem;
  }
  .btn-submit,
  .wpcf7-submit.btn-submit {
    padding: 14px 36px;
    font-size: 0.9375rem;
    min-width: 180px;
  }
  .privacy-policy {
    padding: 16px;
    gap: 10px;
  }
  .form-group {
    margin-bottom: 24px;
  }
}
/*# sourceMappingURL=contact.css.map */