/*!********************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/scss/frontend/frontend.scss ***!
  \********************************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
/**
 * テーマスタイルのインポート
 * 各テーマは独立したファイルとして管理されています
 * 
 * 新しいテーマを追加する場合:
 * 1. themes/ ディレクトリ内に既存のテーマファイル（例: _formal.scss）を複製
 * 2. ファイル名を新しいテーマ名に変更（例: _custom.scss）
 * 3. クラス名を新しいテーマ名に変更（例: .ccf-theme-custom）
 * 4. このファイルに @use './themes/custom'; を追加
 */
/**
 * シンプルテーマ
 * frontend.scssの共通スタイルをそのまま使用
 * 必要に応じて、以下にシンプルテーマ固有のスタイルを追加可能
 */
/**
 * フォーマルテーマ（コーポレート想定）
 * 新しいテーマを作成する場合は、このファイルを複製してカスタマイズしてください
 */
.ccf-theme-formal {
  background: #ffffff;
  border: 1px solid #dfe1e5;
  box-shadow: none;
}
.ccf-theme-formal .ccf-form-container {
  border: 1px solid #dfe1e5;
  box-shadow: none;
}
.ccf-theme-formal .ccf-form-title {
  font-size: 22px;
  font-weight: 700;
  text-align: left;
  border-bottom: 2px solid #dfe1e5;
  padding-bottom: 10px;
}
.ccf-theme-formal .contact-form-wrapper .form-group {
  border: 1px solid #e6e9ef;
  padding: 14px 16px;
  border-radius: 4px;
  background: #f8f9fb;
}
.ccf-theme-formal .ccf-field-label,
.ccf-theme-formal .contact-form-wrapper .form-group label {
  font-weight: 700;
  color: #1f2933;
  text-transform: none;
}
.ccf-theme-formal .ccf-input,
.ccf-theme-formal .ccf-textarea,
.ccf-theme-formal .ccf-select,
.ccf-theme-formal .ccf-file {
  border: 1px solid #cfd4dc;
  border-radius: 4px;
}
.ccf-theme-formal .ccf-submit-button {
  border-radius: 4px;
  font-weight: 700;
}
.ccf-theme-formal .ccf-confirmation-table th,
.ccf-theme-formal .ccf-confirmation-table td {
  border-bottom: 1px solid #e6e9ef;
}
/**
 * モダンテーマ（マテリアル風）
 * 新しいテーマを作成する場合は、このファイルを複製してカスタマイズしてください
 */
.ccf-theme-modern .ccf-form-container {
  border: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
}
.ccf-theme-modern .ccf-form-title {
  font-size: 24px;
  font-weight: 700;
  text-align: left;
  color: #1f2937;
}
.ccf-theme-modern .contact-form-wrapper .form-group {
  border: none;
  padding: 0 0 14px 0;
  border-bottom: 1px solid #edf2f7;
}
.ccf-theme-modern .ccf-input,
.ccf-theme-modern .ccf-textarea,
.ccf-theme-modern .ccf-select,
.ccf-theme-modern .ccf-file {
  border: 1px solid #d6e0f5;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.08);
  transition: transform 0.08s ease, box-shadow 0.12s ease;
}
.ccf-theme-modern .ccf-input:focus,
.ccf-theme-modern .ccf-textarea:focus,
.ccf-theme-modern .ccf-select:focus,
.ccf-theme-modern .ccf-file:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.18);
  transform: translateY(-1px);
}
.ccf-theme-modern .ccf-submit-button {
  border-radius: 999px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border: none;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.28);
}
.ccf-theme-modern .ccf-step-content {
  border-radius: 16px;
  width: 90px;
  height: 66px;
  background: #eef2ff;
  border: 1px solid #c7d2fe;
  color: #1f2937;
}
.ccf-theme-modern .ccf-step-item.ccf-step-active .ccf-step-content,
.ccf-theme-modern .ccf-step-item.ccf-step-completed .ccf-step-content {
  background: #2563eb;
  border-color: #2563eb;
  color: #fff;
}
.ccf-theme-modern .ccf-step-item:not(:last-child)::after {
  background: #d1d5db;
}
/**
 * スタイルなしテーマ（ユーザー独自スタイル用）
 * frontend.scssのスタイルは適用されないため、ユーザーが独自にCSSを追加できる
 * 新しいテーマを作成する場合は、このファイルを複製してカスタマイズしてください
 */
/**
 * Frontend styles for Creating Contact Form
 * 元の public/css/frontend.css をベースにSCSS化
 * 
 * スタイルは.ccf-theme-none以外のすべてのテーマに適用される
 * 新しいテーマを追加しても、このファイルを変更する必要はない
 */
.ccf-form-container:not(.ccf-theme-none) {
  /* Form Container */
  max-width: 700px; /* Increased for Japanese text */
  margin: 0 auto;
  padding: 20px;
  background: #fff;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.ccf-form-container:not(.ccf-theme-none) .ccf-form-title {
  margin: 0 0 15px 0;
  color: #1d2327;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
}
.ccf-form-container:not(.ccf-theme-none) .ccf-form-description {
  margin-bottom: 20px;
  color: #50575e;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
}
.ccf-form-container:not(.ccf-theme-none) {
  /* Messages */
}
.ccf-form-container:not(.ccf-theme-none) .ccf-messages {
  margin-bottom: 20px;
}
.ccf-form-container:not(.ccf-theme-none) .ccf-message {
  padding: 12px 16px;
  margin-bottom: 15px;
  border-radius: 4px;
  font-weight: 500;
}
.ccf-form-container:not(.ccf-theme-none) .ccf-message.success {
  background: #d1e7dd;
  color: #0f5132;
  border: 1px solid #badbcc;
}
.ccf-form-container:not(.ccf-theme-none) .ccf-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c2c7;
}
.ccf-form-container:not(.ccf-theme-none) .ccf-message.warning {
  background: #fff3cd;
  color: #856404;
  border: 1px solid #ffecb5;
}
.ccf-form-container:not(.ccf-theme-none) .ccf-message.info {
  background: #d1ecf1;
  color: #055160;
  border: 1px solid #b8daff;
}
.ccf-form-container:not(.ccf-theme-none) {
  /* Form Fields */
}
.ccf-form-container:not(.ccf-theme-none) .ccf-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ccf-form-container:not(.ccf-theme-none) .ccf-field-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.ccf-form-container:not(.ccf-theme-none) .ccf-field-container:last-child {
  margin-bottom: 0;
}
.ccf-form-container:not(.ccf-theme-none) {
  /* Visual Builder Output */
}
.ccf-form-container:not(.ccf-theme-none) .contact-form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ccf-form-container:not(.ccf-theme-none) .contact-form-wrapper .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding-bottom: 18px;
  border-bottom: 1px solid #f0f0f0;
}
.ccf-form-container:not(.ccf-theme-none) .contact-form-wrapper .form-group:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.ccf-form-container:not(.ccf-theme-none) .ccf-field-label {
  font-weight: 600;
  color: #2c3338;
  font-size: 14px;
  margin-bottom: 5px;
}
.ccf-form-container:not(.ccf-theme-none) .ccf-required {
  color: #d63638;
  font-weight: 600;
}
.ccf-form-container:not(.ccf-theme-none) .contact-form-wrapper .form-group label {
  font-weight: 600;
  color: #2c3338;
  font-size: 14px;
}
.ccf-form-container:not(.ccf-theme-none) .contact-form-wrapper .form-group label .required {
  color: #d63638;
  font-weight: 600;
}
.ccf-form-container:not(.ccf-theme-none) {
  /* Input Fields */
}
.ccf-form-container:not(.ccf-theme-none) .ccf-input,
.ccf-form-container:not(.ccf-theme-none) .ccf-textarea,
.ccf-form-container:not(.ccf-theme-none) .ccf-select,
.ccf-form-container:not(.ccf-theme-none) .ccf-file {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
  font-family: inherit;
  background: #fff;
  color: #333;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  box-sizing: border-box;
}
.ccf-form-container:not(.ccf-theme-none) .ccf-input:focus,
.ccf-form-container:not(.ccf-theme-none) .ccf-textarea:focus,
.ccf-form-container:not(.ccf-theme-none) .ccf-select:focus,
.ccf-form-container:not(.ccf-theme-none) .ccf-file:focus {
  outline: none;
  border-color: #2271b1;
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(34, 113, 177, 0.1);
}
.ccf-form-container:not(.ccf-theme-none) .ccf-textarea {
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
}
.ccf-form-container:not(.ccf-theme-none) .ccf-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 16 16%27%3E%3Cpath fill=%27none%27 stroke=%27%23666%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-width=%272%27 d=%27M2 5l6 6 6-6%27/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.ccf-form-container:not(.ccf-theme-none) .ccf-date-picker-input {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27%3e%3cpath fill=%27none%27 stroke=%27%23666%27 stroke-width=%271.6%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 d=%27M7 4h10M7 7h10M5 4h14c1.1 0 2 .9 2 2v13c0 1.1-.9 2-2 2H5c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2zm0 6h14m-9 4h4%27/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 42px;
}
.ccf-form-container:not(.ccf-theme-none) {
  /* Radio and Checkbox Groups */
}
.ccf-form-container:not(.ccf-theme-none) .ccf-radio-group,
.ccf-form-container:not(.ccf-theme-none) .ccf-checkbox-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.ccf-form-container:not(.ccf-theme-none) .ccf-radio-label,
.ccf-form-container:not(.ccf-theme-none) .ccf-checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  color: #2c3338;
  padding: 8px 0;
  transition: color 0.2s ease;
}
.ccf-form-container:not(.ccf-theme-none) .ccf-radio-label:hover,
.ccf-form-container:not(.ccf-theme-none) .ccf-checkbox-label:hover {
  color: #2271b1;
}
.ccf-form-container:not(.ccf-theme-none) .ccf-radio,
.ccf-form-container:not(.ccf-theme-none) .ccf-checkbox {
  width: 18px;
  height: 18px;
  margin-right: 12px;
  cursor: pointer;
  accent-color: #2271b1;
}
.ccf-form-container:not(.ccf-theme-none) .ccf-radio-text,
.ccf-form-container:not(.ccf-theme-none) .ccf-checkbox-text {
  flex: 1;
  line-height: 1.4;
}
.ccf-form-container:not(.ccf-theme-none) {
  /* Postal Address Field (Postal Code + Address) */
}
.ccf-form-container:not(.ccf-theme-none) .ccf-postal-address-wrapper {
  display: flex;
  flex-direction: column; /* Stack vertically */
  gap: 12px;
  align-items: flex-start;
  width: 100%;
}
.ccf-form-container:not(.ccf-theme-none) .ccf-postal-address-postal-wrapper {
  width: auto; /* Auto width for postal code */
  min-width: 0;
  max-width: 200px; /* Limit max width */
}
.ccf-form-container:not(.ccf-theme-none) .ccf-postal-search-enabled .ccf-postal-address-postal-wrapper {
  width: auto; /* Auto width for postal code with search */
  min-width: 0;
  max-width: 280px; /* Slightly wider for search button */
}
.ccf-form-container:not(.ccf-theme-none) .ccf-postal-address-address-wrapper {
  width: 100%; /* Full width */
  min-width: 0;
}
.ccf-form-container:not(.ccf-theme-none) .ccf-postal-address-postal,
.ccf-form-container:not(.ccf-theme-none) .ccf-postal-address-address {
  width: 100%;
}
.ccf-form-container:not(.ccf-theme-none) .ccf-postal-address-data {
  display: none; /* Hidden field for combined data */
}
.ccf-form-container:not(.ccf-theme-none) {
  /* Postal Code Search Button */
}
.ccf-form-container:not(.ccf-theme-none) .ccf-postal-input-group {
  display: flex;
  gap: 8px;
  align-items: stretch;
}
.ccf-form-container:not(.ccf-theme-none) .ccf-postal-input-group .ccf-postal-address-postal {
  flex: 1;
}
.ccf-form-container:not(.ccf-theme-none) .ccf-postal-search-btn {
  flex-shrink: 0;
  padding: 8px 12px;
  background: #2271b1;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.2s;
  white-space: nowrap;
}
.ccf-form-container:not(.ccf-theme-none) .ccf-postal-search-btn:hover {
  background: #135e96;
}
.ccf-form-container:not(.ccf-theme-none) .ccf-postal-search-btn:disabled {
  background: #a0a5aa;
  cursor: not-allowed;
}
.ccf-form-container:not(.ccf-theme-none) .ccf-postal-search-btn.loading {
  position: relative;
  color: transparent;
}
.ccf-form-container:not(.ccf-theme-none) .ccf-postal-search-btn.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  border: 2px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  animation: ccf-spin 0.8s linear infinite;
}
@keyframes ccf-spin {
  to {
    transform: rotate(360deg);
  }
}
.ccf-form-container:not(.ccf-theme-none) {
  /* Responsive: Adjust layout on small screens */
}
@media (max-width: 600px) {
  .ccf-form-container:not(.ccf-theme-none) .ccf-postal-address-wrapper,
  .ccf-form-container:not(.ccf-theme-none) .contact-form-wrapper .ccf-postal-address-wrapper {
    flex-direction: column; /* Keep vertical layout on mobile */
    gap: 8px; /* Reduce gap on mobile */
  }
  .ccf-form-container:not(.ccf-theme-none) {
    /* Postal code field: smaller width on mobile */
  }
  .ccf-form-container:not(.ccf-theme-none) .ccf-postal-address-postal-wrapper,
  .ccf-form-container:not(.ccf-theme-none) .contact-form-wrapper .ccf-postal-address-postal-wrapper {
    width: auto; /* Auto width on mobile */
    min-width: 0;
    max-width: 160px; /* Limit max width on mobile */
  }
  .ccf-form-container:not(.ccf-theme-none) {
    /* Postal code with search button: slightly wider on mobile */
  }
  .ccf-form-container:not(.ccf-theme-none) .ccf-postal-search-enabled .ccf-postal-address-postal-wrapper,
  .ccf-form-container:not(.ccf-theme-none) .contact-form-wrapper .ccf-postal-search-enabled .ccf-postal-address-postal-wrapper {
    width: auto; /* Auto width on mobile */
    min-width: 0;
    max-width: 220px; /* Slightly wider for search button on mobile */
  }
  .ccf-form-container:not(.ccf-theme-none) {
    /* Address field: full width */
  }
  .ccf-form-container:not(.ccf-theme-none) .ccf-postal-address-address-wrapper,
  .ccf-form-container:not(.ccf-theme-none) .contact-form-wrapper .ccf-postal-address-address-wrapper {
    width: 100%; /* Full width on mobile */
    min-width: 0;
  }
}
.ccf-form-container:not(.ccf-theme-none) {
  /* File Upload */
}
.ccf-form-container:not(.ccf-theme-none):not(.ccf-confirmation-screen) .ccf-file {
  padding: 16px;
  border: 2px dashed #ddd;
  background: #fff;
  color: #333;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease;
}
.ccf-form-container:not(.ccf-theme-none).ccf-confirmation-screen .ccf-file {
  padding: 0;
  border: none;
  cursor: default;
}
.ccf-form-container:not(.ccf-theme-none):not(.ccf-confirmation-screen) .ccf-file:hover {
  border-color: #2271b1;
  background: #f8f9fa;
}
.ccf-form-container:not(.ccf-theme-none):not(.ccf-confirmation-screen) .ccf-file:focus {
  border-style: solid;
  background: #fff;
}
.ccf-form-container:not(.ccf-theme-none) .ccf-file-info {
  margin-top: 8px;
  font-size: 12px;
  color: #50575e;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}
.ccf-form-container:not(.ccf-theme-none) .ccf-file-max-size,
.ccf-form-container:not(.ccf-theme-none) .ccf-file-types {
  background: #f0f0f1;
  color: #50575e;
  padding: 4px 8px;
  border-radius: 3px;
}
.ccf-form-container:not(.ccf-theme-none) {
  /* File Preview */
}
.ccf-form-container:not(.ccf-theme-none) .ccf-file-preview {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  background: #f8f9fa;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-bottom: 8px;
}
.ccf-form-container:not(.ccf-theme-none) .ccf-file-preview-existing {
  margin-bottom: 12px;
}
.ccf-form-container:not(.ccf-theme-none) .ccf-file-icon {
  font-size: 20px;
}
.ccf-form-container:not(.ccf-theme-none) .ccf-file-name {
  font-weight: 500;
  color: #2c3338;
}
.ccf-form-container:not(.ccf-theme-none) .ccf-file-size {
  color: #50575e;
  font-size: 14px;
}
.ccf-form-container:not(.ccf-theme-none) .ccf-file-replace-note {
  margin: 8px 0 0 0;
  padding: 8px 12px;
  background: #e7f3ff;
  border-left: 3px solid #2271b1;
  border-radius: 4px;
  font-size: 14px;
  color: #2c3338;
}
.ccf-form-container:not(.ccf-theme-none) .ccf-file-remove-btn {
  margin-left: auto;
  padding: 4px 12px;
  background: #dc3545;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 13px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.ccf-form-container:not(.ccf-theme-none) .ccf-file-remove-btn:hover {
  background: #c82333;
}
.ccf-form-container:not(.ccf-theme-none) .ccf-file-remove-btn:active {
  background: #bd2130;
}
.ccf-form-container:not(.ccf-theme-none) {
  /* Submit Button */
}
.ccf-form-container:not(.ccf-theme-none) .ccf-submit-container {
  margin-top: 24px;
  text-align: center;
}
.ccf-form-container:not(.ccf-theme-none) .ccf-submit-button,
.ccf-form-container:not(.ccf-theme-none) .contact-form-wrapper .btn,
.ccf-form-container:not(.ccf-theme-none) .contact-form-wrapper button[type=submit] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #2271b1;
  color: #fff;
  border: 1px solid #1e5fa0;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
  min-width: 150px;
  text-decoration: none;
}
.ccf-form-container:not(.ccf-theme-none) .ccf-submit-button:hover,
.ccf-form-container:not(.ccf-theme-none) .contact-form-wrapper .btn:hover,
.ccf-form-container:not(.ccf-theme-none) .contact-form-wrapper button[type=submit]:hover {
  background: #1d5c9b;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}
.ccf-form-container:not(.ccf-theme-none) .ccf-submit-button:active,
.ccf-form-container:not(.ccf-theme-none) .contact-form-wrapper .btn:active,
.ccf-form-container:not(.ccf-theme-none) .contact-form-wrapper button[type=submit]:active {
  background: #184e84;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.ccf-form-container:not(.ccf-theme-none) .ccf-submit-button:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.ccf-form-container:not(.ccf-theme-none) {
  /* Loading State */
}
.ccf-form-container:not(.ccf-theme-none) .ccf-form.loading {
  opacity: 0.6;
  pointer-events: none;
}
.ccf-form-container:not(.ccf-theme-none) .ccf-submit-button.loading {
  position: relative;
  color: transparent;
}
.ccf-form-container:not(.ccf-theme-none) .ccf-submit-button.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid transparent;
  border-top: 2px solid #fff;
  border-radius: 50%;
  animation: ccf-spin 1s linear infinite;
}
@keyframes ccf-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.ccf-form-container:not(.ccf-theme-none) {
  /* Field Validation States */
}
.ccf-form-container:not(.ccf-theme-none) .ccf-field-container.error .ccf-input,
.ccf-form-container:not(.ccf-theme-none) .ccf-field-container.error .ccf-textarea,
.ccf-form-container:not(.ccf-theme-none) .ccf-field-container.error .ccf-select,
.ccf-form-container:not(.ccf-theme-none) .ccf-field-container.error .ccf-file {
  border-color: #dc3545;
  background-color: #fff;
  color: #333;
  box-shadow: 0 0 0 1px rgba(220, 53, 69, 0.15);
}
.ccf-form-container:not(.ccf-theme-none) .contact-form-wrapper .form-group input[aria-invalid=true],
.ccf-form-container:not(.ccf-theme-none) .contact-form-wrapper .form-group textarea[aria-invalid=true],
.ccf-form-container:not(.ccf-theme-none) .contact-form-wrapper .form-group select[aria-invalid=true] {
  border-color: #dc3545;
  background-color: #fff;
  box-shadow: 0 0 0 1px rgba(220, 53, 69, 0.15);
}
.ccf-form-container:not(.ccf-theme-none) .ccf-field-container.success .ccf-input,
.ccf-form-container:not(.ccf-theme-none) .ccf-field-container.success .ccf-textarea,
.ccf-form-container:not(.ccf-theme-none) .ccf-field-container.success .ccf-select,
.ccf-form-container:not(.ccf-theme-none) .ccf-field-container.success .ccf-file {
  border-color: #28a745;
  background-color: #fff;
  color: #333;
}
.ccf-form-container:not(.ccf-theme-none) .ccf-field-error {
  color: #d63638;
  font-size: 14px;
  margin-top: 6px;
  padding: 0;
  background: none;
  border: none;
  display: block;
  line-height: 1.4;
}
.ccf-form-container:not(.ccf-theme-none) .ccf-field-error::before {
  content: none;
}
.ccf-form-container:not(.ccf-theme-none) .ccf-confirm-value {
  display: block;
  padding: 10px 14px;
  background: #f7f7f7;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  font-size: 16px;
  color: #1d2327;
  white-space: pre-wrap;
}
.ccf-form-container:not(.ccf-theme-none) .contact-form-wrapper .form-group .ccf-field-error {
  margin-top: 6px;
}
.ccf-form-container:not(.ccf-theme-none) {
  /* Server-side Validation States */
  /* Invalid state - only show when aria-invalid is explicitly set by server */
}
.ccf-form-container:not(.ccf-theme-none) .ccf-input[aria-invalid=true],
.ccf-form-container:not(.ccf-theme-none) .ccf-textarea[aria-invalid=true],
.ccf-form-container:not(.ccf-theme-none) .ccf-select[aria-invalid=true],
.ccf-form-container:not(.ccf-theme-none) .ccf-file[aria-invalid=true] {
  border-color: #dc3545;
  background-color: #fff5f5;
  color: #333;
}
.ccf-form-container:not(.ccf-theme-none) {
  /* Don't show validation colors on focus */
}
.ccf-form-container:not(.ccf-theme-none) .ccf-input:focus,
.ccf-form-container:not(.ccf-theme-none) .ccf-textarea:focus,
.ccf-form-container:not(.ccf-theme-none) .ccf-select:focus,
.ccf-form-container:not(.ccf-theme-none) .ccf-file:focus {
  border-color: #2271b1 !important;
  background-color: #fff !important;
  color: #333 !important;
  box-shadow: 0 0 0 3px rgba(34, 113, 177, 0.1) !important;
}
.ccf-form-container:not(.ccf-theme-none) {
  /* Remove all browser default validation styling */
}
.ccf-form-container:not(.ccf-theme-none) .ccf-input:invalid,
.ccf-form-container:not(.ccf-theme-none) .ccf-textarea:invalid,
.ccf-form-container:not(.ccf-theme-none) .ccf-select:invalid,
.ccf-form-container:not(.ccf-theme-none) .ccf-file:invalid,
.ccf-form-container:not(.ccf-theme-none) .ccf-input:valid,
.ccf-form-container:not(.ccf-theme-none) .ccf-textarea:valid,
.ccf-form-container:not(.ccf-theme-none) .ccf-select:valid,
.ccf-form-container:not(.ccf-theme-none) .ccf-file:valid {
  box-shadow: none;
}
.ccf-form-container:not(.ccf-theme-none) {
  /* Required field indicator */
  /* Optional: Add a subtle indicator for required fields */
  /* .ccf-input:required, .ccf-textarea:required, .ccf-select:required { } */
  /* Custom validation message styling */
}
.ccf-form-container:not(.ccf-theme-none) .ccf-input:invalid:not(:focus):not(:-moz-placeholder) + .ccf-field-error, .ccf-form-container:not(.ccf-theme-none) .ccf-textarea:invalid:not(:focus):not(:-moz-placeholder) + .ccf-field-error {
  display: flex;
}
.ccf-form-container:not(.ccf-theme-none) .ccf-input:invalid:not(:focus):not(:placeholder-shown) + .ccf-field-error,
.ccf-form-container:not(.ccf-theme-none) .ccf-textarea:invalid:not(:focus):not(:placeholder-shown) + .ccf-field-error,
.ccf-form-container:not(.ccf-theme-none) .ccf-select:invalid:not(:focus) + .ccf-field-error,
.ccf-form-container:not(.ccf-theme-none) .ccf-file:invalid:not(:focus) + .ccf-field-error {
  display: flex;
}
.ccf-form-container:not(.ccf-theme-none) {
  /* Hide browser's default validation bubble */
}
.ccf-form-container:not(.ccf-theme-none) .ccf-input::-webkit-validation-bubble-message,
.ccf-form-container:not(.ccf-theme-none) .ccf-textarea::-webkit-validation-bubble-message,
.ccf-form-container:not(.ccf-theme-none) .ccf-select::-webkit-validation-bubble-message,
.ccf-form-container:not(.ccf-theme-none) .ccf-file::-webkit-validation-bubble-message {
  display: none;
}
.ccf-form-container:not(.ccf-theme-none) {
  /* Responsive Design */
}
@media screen and (max-width: 768px) {
  .ccf-form-container:not(.ccf-theme-none) {
    margin: 0 15px;
    padding: 15px;
    border-radius: 6px;
  }
  .ccf-form-container:not(.ccf-theme-none) .ccf-form-title {
    font-size: 20px;
  }
  .ccf-form-container:not(.ccf-theme-none) .ccf-form-description {
    font-size: 14px;
  }
  .ccf-form-container:not(.ccf-theme-none) .ccf-input,
  .ccf-form-container:not(.ccf-theme-none) .ccf-textarea,
  .ccf-form-container:not(.ccf-theme-none) .ccf-select,
  .ccf-form-container:not(.ccf-theme-none) .ccf-file {
    padding: 10px 12px;
    font-size: 16px; /* Prevent zoom on iOS */
  }
  .ccf-form-container:not(.ccf-theme-none) .ccf-submit-button {
    width: 100%;
    padding: 12px 24px;
  }
  .ccf-form-container:not(.ccf-theme-none) .ccf-radio-group,
  .ccf-form-container:not(.ccf-theme-none) .ccf-checkbox-group {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .ccf-form-container:not(.ccf-theme-none) .ccf-file-info {
    flex-direction: column;
    gap: 8px;
  }
}
@media screen and (max-width: 480px) {
  .ccf-form-container:not(.ccf-theme-none) {
    margin: 0 10px;
    padding: 12px;
  }
  .ccf-form-container:not(.ccf-theme-none) .ccf-form {
    gap: 15px;
  }
  .ccf-form-container:not(.ccf-theme-none) .ccf-field-container {
    gap: 6px;
  }
  .ccf-form-container:not(.ccf-theme-none) .ccf-input,
  .ccf-form-container:not(.ccf-theme-none) .ccf-textarea,
  .ccf-form-container:not(.ccf-theme-none) .ccf-select,
  .ccf-form-container:not(.ccf-theme-none) .ccf-file {
    padding: 8px 10px;
  }
}
.ccf-form-container:not(.ccf-theme-none) {
  /* High Contrast Mode */
}
@media (prefers-contrast: high) {
  .ccf-form-container:not(.ccf-theme-none) {
    border-width: 2px;
    border-color: #000;
  }
  .ccf-form-container:not(.ccf-theme-none) .ccf-input,
  .ccf-form-container:not(.ccf-theme-none) .ccf-textarea,
  .ccf-form-container:not(.ccf-theme-none) .ccf-select,
  .ccf-form-container:not(.ccf-theme-none) .ccf-file {
    border-width: 2px;
    border-color: #000;
  }
  .ccf-form-container:not(.ccf-theme-none) .ccf-submit-button {
    border: 2px solid #000;
  }
}
.ccf-form-container:not(.ccf-theme-none) {
  /* Reduced Motion */
}
@media (prefers-reduced-motion: reduce) {
  .ccf-form-container:not(.ccf-theme-none) .ccf-input,
  .ccf-form-container:not(.ccf-theme-none) .ccf-textarea,
  .ccf-form-container:not(.ccf-theme-none) .ccf-select,
  .ccf-form-container:not(.ccf-theme-none) .ccf-file,
  .ccf-form-container:not(.ccf-theme-none) .ccf-submit-button,
  .ccf-form-container:not(.ccf-theme-none) .ccf-radio-label,
  .ccf-form-container:not(.ccf-theme-none) .ccf-checkbox-label {
    transition: none;
  }
  .ccf-form-container:not(.ccf-theme-none) .ccf-submit-button:hover {
    transform: none;
  }
  .ccf-form-container:not(.ccf-theme-none) .ccf-submit-button.loading::after {
    animation: none;
  }
}
.ccf-form-container:not(.ccf-theme-none) {
  /* Print Styles */
}
@media print {
  .ccf-form-container:not(.ccf-theme-none) {
    box-shadow: none;
    border: 1px solid #000;
  }
  .ccf-form-container:not(.ccf-theme-none) .ccf-submit-button {
    display: none;
  }
  .ccf-form-container:not(.ccf-theme-none) .ccf-messages {
    display: none;
  }
}
.ccf-form-container:not(.ccf-theme-none) {
  /* Confirmation Screen Styles */
}
.ccf-form-container:not(.ccf-theme-none) .ccf-confirmation-screen .ccf-form-container {
  max-width: 700px;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 20px 0;
}
.ccf-form-container:not(.ccf-theme-none) .ccf-confirmation-message {
  background: transparent;
  border: none;
  padding: 0;
  /* margin-top: 25px; */
  margin-bottom: 25px;
  color: #1d2327;
  text-align: center;
  font-size: 16px;
}
.ccf-form-container:not(.ccf-theme-none) .ccf-form-container .ccf-confirmation-message p {
  margin-bottom: 0 !important;
}
.ccf-form-container:not(.ccf-theme-none) .ccf-confirmation-data h3 {
  color: #1d2327;
  margin-bottom: 20px;
  font-size: 18px;
  border-bottom: none;
  padding-bottom: 0;
  font-weight: 600;
}
.ccf-form-container:not(.ccf-theme-none) .ccf-confirmation-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 25px;
  background: #fff;
}
.ccf-form-container:not(.ccf-theme-none) .ccf-confirmation-table th,
.ccf-form-container:not(.ccf-theme-none) .ccf-confirmation-table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #eee;
}
.ccf-form-container:not(.ccf-theme-none) .ccf-confirmation-table th {
  background: transparent;
  font-weight: 600;
  color: #1d2327;
  width: 35%; /* Increased for Japanese text */
  white-space: nowrap;
}
.ccf-form-container:not(.ccf-theme-none) .ccf-confirmation-table td {
  color: #1d2327;
  background: transparent;
}
.ccf-form-container:not(.ccf-theme-none) {
  /* 確認画面でのファイルフィールド: 点線スタイルを削除し、通常のスタイルを適用 */
}
.ccf-form-container:not(.ccf-theme-none) .ccf-confirmation-screen .ccf-file {
  border: 2px solid #ddd;
  padding: 12px 16px;
  text-align: left;
  cursor: default;
}
.ccf-form-container:not(.ccf-theme-none) .ccf-confirmation-screen .ccf-file:hover {
  border-color: #ddd;
  background: #fff;
}
.ccf-form-container:not(.ccf-theme-none) .ccf-confirmation-screen .ccf-file:focus {
  border-style: solid;
  background: #fff;
}
.ccf-form-container:not(.ccf-theme-none) .ccf-confirmation-actions {
  text-align: center;
  padding-top: 25px;
  border-top: none;
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}
.ccf-form-container:not(.ccf-theme-none) .ccf-btn {
  display: inline-block;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  min-width: 140px;
}
.ccf-form-container:not(.ccf-theme-none) .ccf-btn-primary {
  background: #2271b1;
  color: #fff;
}
.ccf-form-container:not(.ccf-theme-none) .ccf-btn-primary:hover {
  background: #1e5a8a;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.ccf-form-container:not(.ccf-theme-none) .ccf-btn-secondary {
  background: #f6f7f7;
  color: #2c3338;
  border: 1px solid #c3c4c7;
}
.ccf-form-container:not(.ccf-theme-none) .ccf-btn-secondary:hover {
  background: #f0f0f1;
  border-color: #8c8f94;
}
.ccf-form-container:not(.ccf-theme-none) {
  /* Completion Screen Styles */
}
.ccf-form-container:not(.ccf-theme-none) .ccf-completion-screen .ccf-form-container {
  max-width: 500px;
  text-align: center;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 20px 0;
}
.ccf-form-container:not(.ccf-theme-none) .ccf-success-message {
  background: transparent;
  border: none;
  padding: 0;
  margin-bottom: 25px;
  text-align: center;
  color: #1d2327;
}
.ccf-form-container:not(.ccf-theme-none) .ccf-success-icon {
  font-size: 32px;
  color: #1d2327;
  margin-bottom: 15px;
  font-weight: normal;
}
.ccf-form-container:not(.ccf-theme-none) .ccf-reference-number {
  margin-top: 15px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  color: #1d2327;
  font-size: 16px;
}
.ccf-form-container:not(.ccf-theme-none) {
  /* Step Indicator Styles */
}
.ccf-form-container:not(.ccf-theme-none) .ccf-step-indicator {
  margin-bottom: 30px;
}
.ccf-form-container:not(.ccf-theme-none) .ccf-step-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 12px 0 0 0;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.ccf-form-container:not(.ccf-theme-none) .ccf-step-number {
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
}
.ccf-form-container:not(.ccf-theme-none) .ccf-step-label {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.2;
}
.ccf-form-container:not(.ccf-theme-none) .ccf-step-item {
  position: relative;
  flex: 0 0 auto;
}
.ccf-form-container:not(.ccf-theme-none) .ccf-step-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -40px;
  width: 40px;
  height: 2px;
  background: #ddd;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
}
.ccf-form-container:not(.ccf-theme-none) .ccf-step-item.ccf-step-completed:not(:last-child)::after {
  background: #2271b1;
}
.ccf-form-container:not(.ccf-theme-none) .ccf-step-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 80px;
  height: 80px;
  background: #f0f0f1;
  color: #50575e;
  border: 1px solid #ddd;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}
.ccf-form-container:not(.ccf-theme-none) .ccf-step-item.ccf-step-active .ccf-step-content {
  background: #2271b1;
  color: #fff;
  border-color: #2271b1;
}
.ccf-form-container:not(.ccf-theme-none) .ccf-step-item.ccf-step-completed .ccf-step-content {
  background: #2271b1;
  color: #fff;
  border-color: #2271b1;
}
.ccf-form-container:not(.ccf-theme-none) {
  /* Responsive Design for Confirmation/Completion */
}
@media (max-width: 768px) {
  .ccf-form-container:not(.ccf-theme-none) .ccf-confirmation-table th,
  .ccf-form-container:not(.ccf-theme-none) .ccf-confirmation-table td {
    padding: 8px;
    font-size: 14px;
  }
  .ccf-form-container:not(.ccf-theme-none) .ccf-confirmation-table th {
    width: 35%;
  }
  .ccf-form-container:not(.ccf-theme-none) .ccf-confirmation-actions {
    flex-direction: column;
    align-items: center;
  }
  .ccf-form-container:not(.ccf-theme-none) .ccf-btn {
    width: 100%;
    max-width: 200px;
  }
  .ccf-form-container:not(.ccf-theme-none) .ccf-step-content {
    width: 60px;
    height: 60px;
    font-size: 12px;
  }
  .ccf-form-container:not(.ccf-theme-none) .ccf-step-number {
    font-size: 14px;
  }
  .ccf-form-container:not(.ccf-theme-none) .ccf-step-label {
    font-size: 12px;
  }
  .ccf-form-container:not(.ccf-theme-none) .ccf-step-item:not(:last-child)::after {
    width: 20px;
    right: -20px;
  }
}
.ccf-form-container:not(.ccf-theme-none) {
  /* Character counter for textarea */
}
.ccf-form-container:not(.ccf-theme-none) .ccf-character-counter {
  margin-top: 5px;
  font-size: 12px;
  color: #666;
  text-align: right;
}
.ccf-form-container:not(.ccf-theme-none) .ccf-character-counter .ccf-character-count {
  font-weight: 600;
}
.ccf-form-container:not(.ccf-theme-none) .ccf-character-counter.ccf-character-counter-warning {
  color: #f59e0b;
}
.ccf-form-container:not(.ccf-theme-none) .ccf-character-counter.ccf-character-counter-error {
  color: #ef4444;
}
.ccf-form-container:not(.ccf-theme-none) .ccf-textarea.ccf-field-error-state {
  border-color: #ef4444;
}
.ccf-form-container:not(.ccf-theme-none) .ccf-field-container.error .ccf-character-counter {
  color: #ef4444;
}

/*# sourceMappingURL=frontend.css.map*/