@charset "UTF-8";
/* ************************************************************************
   ************************************************************************

    COMMON SETTINGS

   ************************************************************************
   ************************************************************************ */
/* ------------------------------
    RESPONSIVE SETTINGS
  ------------------------------ */
/* ------------------------------
    FONT
  ------------------------------ */
.t__min {
  font-family: serif !important;
}

/* ------------------------------
    COLOR SETTINGS
  ------------------------------ */
svg {
  fill: currentColor;
}

/* ------------------------------
    MIXIN
  ------------------------------ */
.contactForm_body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  color: #333;
}
.contactForm_body .contactForm_grid {
  display: grid;
  gap: 1.5rem;
}
@media screen and (min-width: 600px) {
  .contactForm_body .contactForm_grid.grid2 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}
.contactForm_body .contactForm_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 12px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  -webkit-transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.contactForm_body .contactForm_item:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.contactForm_body .contactForm_item dt {
  margin: 0;
}
.contactForm_body .contactForm_item dt .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}
@media screen and (min-width: 320px) {
  .contactForm_body .contactForm_item dt .title {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 600px) {
  .contactForm_body .contactForm_item dt .title {
    font-size: 1.6rem;
  }
}
.contactForm_body .contactForm_item dt .title .icon {
  display: inline-block;
  background: #ff3b30;
  color: #fff;
  font-size: 80%;
  font-weight: bold;
  padding: 0.15rem 0.4rem;
  border-radius: 6px;
}
.contactForm_body .contactForm_item dd {
  margin: 0;
}
.contactForm_body .contactForm_item dd input,
.contactForm_body .contactForm_item dd textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 16px;
  border: 1px solid #dcdcdc;
  border-radius: 10px;
  background: #fff;
  -webkit-transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.contactForm_body .contactForm_item dd input:focus,
.contactForm_body .contactForm_item dd textarea:focus {
  outline: none;
  border-color: #007aff;
  -webkit-box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.15);
          box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.15);
}
.contactForm_body .contactForm_item dd textarea {
  resize: vertical;
  min-height: 120px;
}

.contactForm_submit {
  margin-top: 1.5rem;
  text-align: center;
}
.contactForm_submit input[type=submit],
.contactForm_submit button {
  width: 100%;
  background: #007aff;
  color: #fff;
  font-weight: 700;
  padding: 24px 0;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  -webkit-box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
          box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
  -webkit-transition: background 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: background 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
}
@media screen and (min-width: 320px) {
  .contactForm_submit input[type=submit],
  .contactForm_submit button {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 600px) {
  .contactForm_submit input[type=submit],
  .contactForm_submit button {
    font-size: 1.6rem;
  }
}
.contactForm_submit input[type=submit]:hover,
.contactForm_submit button:hover {
  background: #005bb5;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: 0 6px 14px rgba(0, 122, 255, 0.35);
          box-shadow: 0 6px 14px rgba(0, 122, 255, 0.35);
}
.contactForm_submit input[type=submit]:active,
.contactForm_submit button:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
          box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
}

.contactForm_atten {
  color: #666;
  line-height: 1.5;
  margin-top: 24px;
  text-align: center;
}
@media screen and (min-width: 320px) {
  .contactForm_atten {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 600px) {
  .contactForm_atten {
    font-size: 1.4rem;
  }
}
.contactForm_atten a {
  text-decoration: underline;
}
.contactForm_atten a:hover {
  text-decoration: none;
}

.atten_box {
  background-color: #fff9e6;
  border-left: 4px solid #ffb300;
  padding: 1rem 1.2rem;
  border-radius: 8px;
  margin: 1rem 0;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  color: #333;
  line-height: 1.5;
  margin-bottom: 24px;
}
@media screen and (min-width: 320px) {
  .atten_box {
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 600px) {
  .atten_box {
    font-size: 1.6rem;
  }
}
.atten_boxTitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #d84315;
}
.atten_boxTitle svg {
  display: block;
  width: 24px;
  height: 24px;
}
.atten_boxContent {
  color: #555;
  font-size: 90%;
}

/* CF7 SwiftUI風メッセージ */
.wpcf7-response-output {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.5;
  padding: 1rem 1.25rem;
  margin-top: 1rem;
  border-radius: 0.5rem;
  border: 1px solid transparent;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (min-width: 320px) {
  .wpcf7-response-output {
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 600px) {
  .wpcf7-response-output {
    font-size: 1.6rem;
  }
}
.wpcf7-response-output.wpcf7-mail-sent-ok {
  background-color: #f0fdf4;
  border-color: #bbf7d0;
  color: #166534;
}
.wpcf7-response-output.wpcf7-validation-errors {
  background-color: #fef2f2;
  border-color: #fecaca;
  color: #991b1b;
}
.wpcf7-response-output.wpcf7-mail-sent-ng {
  background-color: #fef3c7;
  border-color: #fde68a;
  color: #92400e;
}
.wpcf7-response-output.wpcf7-spam-blocked {
  background-color: #fef2ff;
  border-color: #fbcfe8;
  color: #7e22ce;
}

/* === CF7 ラジオ（generations）を SwiftUI 風のセグメントに === */
.wpcf7-form-control-wrap[data-name=generations] {
  /* ダークモード配慮 */
  /* 低モーション環境ではアニメを控えめに */
}
.wpcf7-form-control-wrap[data-name=generations] .wpcf7-form-control.wpcf7-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
}
.wpcf7-form-control-wrap[data-name=generations] .wpcf7-list-item {
  margin: 0;
}
.wpcf7-form-control-wrap[data-name=generations] .wpcf7-list-item > label {
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.wpcf7-form-control-wrap[data-name=generations] .wpcf7-list-item input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.wpcf7-form-control-wrap[data-name=generations] .wpcf7-list-item input[type=radio]:focus-visible + .wpcf7-list-item-label {
  -webkit-box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.35), 0 1px 2px rgba(0, 0, 0, 0.06);
          box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.35), 0 1px 2px rgba(0, 0, 0, 0.06);
}
.wpcf7-form-control-wrap[data-name=generations] .wpcf7-list-item .wpcf7-list-item-label {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 12px 16px 12px 44px;
  border-radius: 9999px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
          box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  -webkit-transition: background 160ms ease, border-color 160ms ease, -webkit-box-shadow 160ms ease, -webkit-transform 160ms ease;
  transition: background 160ms ease, border-color 160ms ease, -webkit-box-shadow 160ms ease, -webkit-transform 160ms ease;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease, -webkit-box-shadow 160ms ease, -webkit-transform 160ms ease;
}
.wpcf7-form-control-wrap[data-name=generations] .wpcf7-list-item .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 18px;
  height: 18px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 9999px;
  border: 2px solid #cbd5e1;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#f8fafc));
  background: linear-gradient(#ffffff, #f8fafc);
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  -webkit-transition: border-color 160ms ease, background 160ms ease, -webkit-box-shadow 160ms ease;
  transition: border-color 160ms ease, background 160ms ease, -webkit-box-shadow 160ms ease;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease, -webkit-box-shadow 160ms ease;
}
.wpcf7-form-control-wrap[data-name=generations] .wpcf7-list-item .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 18px;
  height: 18px;
  -webkit-transform: translateY(-50%) scale(0);
          transform: translateY(-50%) scale(0);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  border-radius: 9999px;
  background: radial-gradient(circle at 50% 50%, #3b82f6 0%, #2563eb 60%, #1d4ed8 100%);
  -webkit-box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
          box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
  -webkit-transition: -webkit-transform 160ms ease;
  transition: -webkit-transform 160ms ease;
  transition: transform 160ms ease;
  transition: transform 160ms ease, -webkit-transform 160ms ease;
}
.wpcf7-form-control-wrap[data-name=generations] .wpcf7-list-item label:hover .wpcf7-list-item-label {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.06);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.06);
  border-color: #d1d5db;
}
.wpcf7-form-control-wrap[data-name=generations] .wpcf7-list-item input[type=radio]:checked + .wpcf7-list-item-label {
  border-color: #93c5fd;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#f0f9ff));
  background: linear-gradient(#ffffff, #f0f9ff);
  -webkit-box-shadow: 0 6px 14px rgba(37, 99, 235, 0.12), 0 1px 2px rgba(0, 0, 0, 0.06);
          box-shadow: 0 6px 14px rgba(37, 99, 235, 0.12), 0 1px 2px rgba(0, 0, 0, 0.06);
}
.wpcf7-form-control-wrap[data-name=generations] .wpcf7-list-item input[type=radio]:checked + .wpcf7-list-item-label::before {
  border-color: #60a5fa;
  background: -webkit-gradient(linear, left top, left bottom, from(#eff6ff), to(#dbeafe));
  background: linear-gradient(#eff6ff, #dbeafe);
  -webkit-box-shadow: inset 0 0 0 2px rgba(59, 130, 246, 0.15);
          box-shadow: inset 0 0 0 2px rgba(59, 130, 246, 0.15);
}
.wpcf7-form-control-wrap[data-name=generations] .wpcf7-list-item input[type=radio]:checked + .wpcf7-list-item-label::after {
  -webkit-transform: translateY(-50%) scale(0.55);
          transform: translateY(-50%) scale(0.55);
}
@media (prefers-color-scheme: dark) {
  .wpcf7-form-control-wrap[data-name=generations] .wpcf7-list-item .wpcf7-list-item-label {
    background: #0b1220;
    border-color: #1f2937;
    color: #e5e7eb;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  }
  .wpcf7-form-control-wrap[data-name=generations] .wpcf7-list-item .wpcf7-list-item-label::before {
    border-color: #334155;
    background: -webkit-gradient(linear, left top, left bottom, from(#0b1220), to(#111827));
    background: linear-gradient(#0b1220, #111827);
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  }
  .wpcf7-form-control-wrap[data-name=generations] .wpcf7-list-item input[type=radio]:checked + .wpcf7-list-item-label {
    border-color: #2563eb;
    background: -webkit-gradient(linear, left top, left bottom, from(#0b1220), to(#0b1730));
    background: linear-gradient(#0b1220, #0b1730);
    -webkit-box-shadow: 0 8px 18px rgba(37, 99, 235, 0.25), 0 1px 2px rgba(0, 0, 0, 0.5);
            box-shadow: 0 8px 18px rgba(37, 99, 235, 0.25), 0 1px 2px rgba(0, 0, 0, 0.5);
  }
  .wpcf7-form-control-wrap[data-name=generations] .wpcf7-list-item input[type=radio]:checked + .wpcf7-list-item-label::before {
    border-color: #3b82f6;
    background: -webkit-gradient(linear, left top, left bottom, from(#0b1730), to(#0b1730));
    background: linear-gradient(#0b1730, #0b1730);
    -webkit-box-shadow: inset 0 0 0 2px rgba(59, 130, 246, 0.25);
            box-shadow: inset 0 0 0 2px rgba(59, 130, 246, 0.25);
  }
  .wpcf7-form-control-wrap[data-name=generations] .wpcf7-list-item input[type=radio]:checked + .wpcf7-list-item-label::after {
    -webkit-box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.35);
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.35);
  }
}
@media (prefers-reduced-motion: reduce) {
  .wpcf7-form-control-wrap[data-name=generations] .wpcf7-list-item .wpcf7-list-item-label,
  .wpcf7-form-control-wrap[data-name=generations] .wpcf7-list-item .wpcf7-list-item-label::before,
  .wpcf7-form-control-wrap[data-name=generations] .wpcf7-list-item .wpcf7-list-item-label::after {
    -webkit-transition: none;
    transition: none;
  }
}

/* レイアウトが狭い時の折返し最適化 */
@media (max-width: 480px) {
  .wpcf7-form-control-wrap[data-name=generations] .wpcf7-form-control.wpcf7-radio {
    gap: 10px;
  }
  .wpcf7-form-control-wrap[data-name=generations] .wpcf7-list-item .wpcf7-list-item-label {
    padding: 10px 14px 10px 42px;
  }
}/*# sourceMappingURL=camp_form.css.map */