@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/

/* フォーム全体 */
.cf7-simple-form {
  max-width: 600px;
  margin: 0 auto;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", sans-serif;
}

/* フィールド */
.cf7-field {
  margin-bottom: 18px;
}

.cf7-field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #222;
}

.cf7-field .required {
  color: #d32f2f;
  margin-left: 4px;
}

/* 入力欄 */
.cf7-simple-form input[type="text"],
.cf7-simple-form input[type="email"],
.cf7-simple-form input[type="tel"] {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* フォーカス時 */
.cf7-simple-form input:focus {
  outline: none;
  border-color: #066aab;
  box-shadow: 0 0 0 2px rgba(6, 106, 171, 0.15);
}

/* 送信ボタン */
.cf7-submit input[type="submit"] {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background-color: #066aab;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

/* hover */
.cf7-submit input[type="submit"]:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* スマホ対応 */
@media (max-width: 480px) {
  .cf7-simple-form {
    padding: 0 12px;
  }
}
