@charset "UTF-8";
body {
  line-height: 1.7;
  color: var(--color-text-black);
  font-family: "Noto Sans JP", "Noto Sans", sans-serif;
  font-weight: 400;
}

h1 {
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: 0.25rem;
}

h2 {
  font-size: 2.56rem;
  font-weight: 800;
  letter-spacing: 0.2rem;
}

h3 {
  font-size: 2.1333rem;
  font-weight: 800;
  letter-spacing: 0.2rem;
}

h4 {
  font-size: 1.8286rem;
  font-weight: 800;
  letter-spacing: 0.2rem;
}

p {
  font-size: 1.6rem;
  line-height: 3rem;
  letter-spacing: 0.09rem;
}

a {
  color: var(--color-blue300);
  text-decoration: underline;
  transition: 0.2s ease;
}
a:hover {
  color: var(--color-blue200);
  text-decoration: none;
}

ol li,
ul li {
  font-size: 1.6rem;
  line-height: 2.4rem;
  letter-spacing: 0.07rem;
}

blockquote {
  font-size: 1.4222rem;
  color: var(--color-text-gray);
  line-height: 2.4rem;
  letter-spacing: 0.07rem;
}

table thead th {
  font-size: 1.4222rem;
  line-height: 2.1rem;
}
table tbody th {
  font-size: 1.4222rem;
}
table td {
  font-size: 1.4222rem;
}

:root {
  --color-white: #fff;
  --color-gray50: #fafafa;
  --color-gray100: #f4f4f4;
  --color-gray200: #e0e0e0;
  --color-gray300: #cccccc;
  --color-gray400: #999999;
  --color-red300: #ec5040;
  --color-red200: #f08070;
  --color-red100: #f6a79a;
  --color-red50: #fde7e3;
  --color-red10: #fef3f2;
  --color-blue300: #0075e1;
  --color-blue200: #4fa8eb;
  --color-blue100: #85c2ff;
  --color-blue50: #cce5ff;
  --color-blue10: #e6f3ff;
  --color-zeimu-bule: #0093d4;
  --color-romu300: #f17a00;
  --color-romu200: #ffb554;
  --color-romu100: #ffd89a;
  --color-romu50: #ffe4b2;
  --color-romu10: #fff4e6;
  --color-ai-red-300: #ad5565;
  --color-ai-red-200: #d16c7b;
  --color-ai-red-100: #d98995;
  --color-ai-red-50: #f5bac3;
  --color-ai-red-10: #fff0f2;
  --color-ai-blue-300: #4a516f;
  --color-ai-blue-200: #636c8e;
  --color-ai-blue-100: #7b819a;
  --color-ai-blue-50: #c5cbe1;
  --color-ai-blue-10: #f6f8ff;
  --shadow-dark: 0 2rem 6rem rgba(0, 0, 0, 0.3);
  --shadow-light: 0 2rem 5rem rgba(0, 0, 0, 0.06);
  --line: 1px solid var(--color-grey-light-2);
  --color-back-black: #271d1d;
  --color-text-black: #333;
  --color-text-white: #fff;
  --color-text-gray: #757575;
  --btn-gradient: linear-gradient(90deg, #5ed5b3 0%, #94bfff 100%);
  --start-color: rgba(250, 250, 240, 0.2); /* #FAFAF0 + 透明度0.2 */
  --end-color: rgba(225, 122, 0, 0.2); /* #E17A00 + 透明度0.2 */
  --gradient: linear-gradient(
    to bottom right,
    var(--start-color),
    var(--end-color)
  );
  --gradient-colors: #ffd89a, #fff4e6;
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
}
@media (max-width: 1200px) {
  html {
    font-size: 56.25%;
  }
}
@media (max-width: 900px) {
  html {
    font-size: 50%;
  }
}
@media (min-width: 1800px) {
  html {
    font-size: 75%;
  }
}

body {
  box-sizing: border-box;
}
@media (max-width: 900px) {
  body {
    padding: 0;
  }
}

p {
  margin-bottom: 2rem;
}

.grecaptcha-badge {
  visibility: hidden;
}

a:hover,
a:hover img,
a:hover svg {
  filter: none !important;
}

.container p {
  line-break: strict;
  word-break: auto-phrase;
}

main {
  padding-top: 8rem;
}

a,
button {
  -webkit-tap-highlight-color: transparent; /* より個別に対応 */
  outline: none;
}

.form-section {
  padding: 8rem 2rem;
}
@media (max-width: 600px) {
  .form-section {
    padding: 4rem 1.5rem;
  }
}

.form-card {
  max-width: 82rem;
  margin: 0 auto;
  padding: 5rem 6.4rem 7.2rem;
  background: #fff;
  border-radius: 24px;
}
@media (max-width: 600px) {
  .form-card {
    padding: 3rem 2rem 4rem;
  }
}

.form-title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 40px;
}

.contact-note {
  font-size: 14px;
  margin-bottom: 12px;
}

.required {
  color: #e94b3c;
  margin-left: 4px;
}

.wpcf7-radio {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
}
.wpcf7-radio label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  cursor: pointer;
}
.wpcf7-radio input[type=radio] {
  accent-color: #e94b3c;
  width: 16px;
  height: 16px;
}

.form-group {
  margin-bottom: 24px;
}
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1.3rem 1.2rem;
  background: #f4f4f4;
  border: none;
  border-radius: 0.3rem;
  font-size: 1.8286rem;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  background: #fff;
  box-shadow: 0 0 0 1px #e94b3c;
}
.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: end;
}
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.wpcf7-checkbox {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 16px;
  margin-top: 8px;
}
.wpcf7-checkbox label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  cursor: pointer;
}
.wpcf7-checkbox input[type=checkbox] {
  width: 16px;
  height: 16px;
  accent-color: #e94b3c;
}
@media (max-width: 600px) {
  .wpcf7-checkbox {
    grid-template-columns: repeat(2, 1fr);
  }
}

.privacy a {
  color: #1a73e8;
  text-decoration: underline;
}

.wpcf7-acceptance {
  font-size: 14px;
  margin-bottom: 32px;
}
.wpcf7-acceptance label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.wpcf7-acceptance input {
  width: 16px;
  height: 16px;
  accent-color: #e94b3c;
}

.wpcf7-submit,
.wp-block-button__link {
  width: 100%;
  padding: 18px;
  background: #e94b3c;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease;
  text-decoration: none;
  min-width: 30rem;
}
.wpcf7-submit:hover,
.wp-block-button__link:hover {
  background: rgb(229.8976958525, 49.6175115207, 32.5023041475);
  color: #fff !important;
  text-decoration: none;
}

.download-preview {
  display: none;
  margin: 24px 0 32px;
  text-align: center;
}
.download-preview img {
  border-radius: 8px;
  max-height: 30rem;
}
.download-preview.is-visible {
  display: block;
  animation: fadeIn 0.25s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.wpcf7-form-control-wrap > .wpcf7-not-valid-tip {
  display: none;
  margin-top: 10px;
}
.wpcf7-form-control-wrap.is-show > .wpcf7-not-valid-tip {
  display: inline-block;
}

article ul {
  margin: 3rem 0;
  padding: 1.5rem 5rem;
  list-style: none;
  background: var(--color-ai-red-10);
}

article ul li {
  position: relative;
  padding-left: 2.5rem; /* ここがインデント幅 */
  font-size: 1.6rem;
  line-height: 3.2rem;
}

article ul li::before {
  content: "●";
  color: var(--color-ai-red-200);
  position: absolute;
  left: 0;
  font-size: 1.0666rem;
}

h3.form-group__h3 {
  margin-top: 1rem;
  padding: 0.8rem 1.2rem;
  background: var(--color-ai-blue-50);
  border-left: 6px solid var(--color-ai-blue-300);
  border-radius: 6px;
  color: var(--color-ai-blue-300);
  margin: 3rem 0;
}
@media (max-width: 600px) {
  h3.form-group__h3 {
    margin: 1.2rem 0;
  }
}

.wpcf7 form.invalid .wpcf7-response-output {
  border: none;
  color: #e94b3c;
}

.form-error-summary {
  display: none;
  margin-top: 2rem;
  padding: 1.5rem;
  background: #fff4f4;
  border: 1px solid #e94b3c;
  border-radius: 6px;
}

.form-error-summary__title {
  font-weight: bold;
  margin-bottom: 0.8rem;
  color: #c53030;
}

.form-error-summary__list {
  margin: 0;
  padding-left: 1.2rem;
}

.form-error-summary__list li {
  color: #c53030;
  font-size: 0.95rem;
}

.cf7-error-slot .wpcf7-not-valid-tip {
  font-size: 11px;
  margin-left: 0px;
  display: inline-flex;
}

.wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  display: none !important;
}

.wpcf7-form label.form-label {
  display: inline-flex !important;
  align-items: baseline !important;
  gap: 10px !important;
  width: 100%;
}

.form-title2 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

/* form-head の中に勝手に入る p の改行ルールを無効化 */
.wpcf7-form .form-head p {
  word-break: normal !important;
  overflow-wrap: normal !important;
  line-break: auto !important;
  margin: 0 !important;
}

/* form-head 内は1行に固定 */
.wpcf7-form .form-head {
  display: flex !important;
  align-items: baseline !important;
  justify-content: space-between !important;
  gap: 12px !important;
  width: 100% !important;
  flex-wrap: nowrap !important;
}

/* 右側スロットを右寄せ */
.wpcf7-form .form-head .cf7-error-slot {
  margin-left: auto !important;
  display: inline-flex !important;
  align-items: baseline !important;
}

/* ここが重要：tipが block だと必ず段落になるので inline にする */
.wpcf7-form .form-head .cf7-error-slot .wpcf7-not-valid-tip {
  display: inline !important;
  margin-left: 8px !important;
  white-space: nowrap !important;
}

.wpcf7 form .wpcf7-response-output {
  margin: 0;
  padding: 0;
}

.wpcf7 form.invalid .wpcf7-response-output {
  border: none;
  color: #e94b3c;
  font-size: 16px;
}

/* privacy だけ 1カラムに戻す */
.form-card p.privacy .wpcf7-checkbox {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 8px;
}

.privacy .wpcf7-not-valid-tip {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  color: #c00;
}

span.small-text {
  font-size: 10px;
}

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