/* ═══ 内部ページヘッダー ═══ */
.l-header__inner {
  filter: none !important;
}

/* ═══ Contact Description ═══ */
.inq-desc {
  padding: 60px 0 60px;
  background: #fff;
}
.inq-desc__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}
.inq-desc__text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #444;
  line-height: 1.9;
  letter-spacing: 0.04em;
}

/* ═══ TEL Box ═══ */
.inq-tel {
  display: flex;
  justify-content: center;
  padding: 40px 0;
  background: #fff;
}
.inq-tel__box {
  border: 2px solid #1e4681;
  padding: 24px 50px;
  text-align: center;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
.inq-tel__number {
  font-family: 'Noto Sans JP', sans-serif;
  color: #14327d;
  letter-spacing: 0.08em;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.inq-tel__number-label {
  font-size: 24px;
  font-weight: 400;
}
.inq-tel__number-value {
  font-size: 30px;
  font-weight: 700;
}
.inq-tel__hours {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14.8px;
  font-weight: 400;
  color: #14327d;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* ═══ Form Container ═══ */
.inq-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px 80px;
  background: #fff;
}
.inq-container {
  width: 100%;
  background: #e8eef6;
  border-radius: 9px;
  padding: 60px 140px 80px;
}
.inq-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #1a4a8a;
  text-align: center;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.inq-subtitle {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 350;
  color: #333;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.8;
  margin-bottom: 40px;
}

/* ═══ Form Fields ═══ */
.inq-field {
  margin-bottom: 24px;
}
.inq-field__head {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 16px;
  color: #333;
  font-family: 'Noto Sans JP', sans-serif;
}
.inq-field__req {
  background: #eb2b64;
  border-radius: 4px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  display: inline-block;
  margin-left: 12px;
  padding: 1px 6px;
}
.inq-field__body {
  width: 100%;
}
.inq-field__body--half {
  max-width: 300px;
}
.inq-input {
  width: 100%;
  min-height: 64px;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  padding: 0.5em 1em;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  color: #1c1f22;
  background: #fff;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.inq-input:focus {
  border-color: #4a9fd9;
  box-shadow: 0 0 0 3px rgba(74,159,217,0.15);
}
.inq-input::placeholder {
  color: #bbb;
}
.inq-textarea {
  height: 220px;
  resize: vertical;
  line-height: 1.7;
}

/* ═══ Radio buttons ═══ */
.inq-radios {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 4px;
}
.inq-radio {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #1c1f22;
  cursor: pointer;
}
.inq-radio input[type="radio"] {
  width: 20px;
  height: 20px;
  accent-color: #4a9fd9;
  cursor: pointer;
}

/* ═══ Privacy & Submit ═══ */
.inq-privacy {
  margin-top: 36px;
  padding-top: 24px;
  text-align: center;
}
.inq-privacy__head {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin-bottom: 16px;
}
.inq-privacy__check {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.inq-privacy__check input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #4a9fd9;
  cursor: pointer;
}
.inq-privacy__check label {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #333;
  cursor: pointer;
}
.inq-privacy__link {
  text-decoration: underline;
  color: #4a9fd9;
  font-weight: 700;
}
.inq-submit {
  margin-top: 36px;
}
.inq-submit__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 600px;
  height: 56px;
  margin: 0 auto;
  background: #1a4a8a;
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 9px;
  cursor: pointer;
  opacity: 0.4;
  transition: opacity 0.3s, background 0.3s;
}
.inq-submit__btn.is-active {
  opacity: 1;
}
.inq-submit__btn.is-active:hover {
  opacity: 0.85;
}
.inq-submit__btn:disabled {
  cursor: not-allowed;
}
.inq-submit {
  text-align: center;
}
.inq-submit__arrow {
  display: inline-flex;
  align-items: center;
}

/* ═══ Recruit & Contact CTA (既存維持) ═══ */
.rc-section {
  padding: 60px 0;
}
.rc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.rc-block {
  background: rgba(74, 159, 217, 0.14);
  border-radius: 20px;
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.rc-block::after {
  content: '';
  position: absolute;
  right: -5%;
  bottom: -10%;
  width: 80%;
  height: 90%;
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}
.rc-block > * {
  position: relative;
  z-index: 1;
}
.rc-block__label {
  font-size: 0.85rem;
  color: #4a9fd9;
  display: block;
  margin-bottom: 8px;
}
.rc-block__en {
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  font-weight: 700;
  color: #111;
  line-height: 1.6;
  margin-bottom: 8px;
}
.rc-block__dots {
  font-size: 1.5rem;
  color: #4a9fd9;
  letter-spacing: 0.3em;
  margin-bottom: 16px;
  display: block;
}
.rc-block__desc {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 32px;
}
.rc-block__tel {
  margin-bottom: 32px;
}
.rc-block__tel-number {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: #111;
  margin: 0;
}
.rc-minicards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(3, auto);
  gap: 10px;
  margin-bottom: 32px;
}
.rc-minicard {
  background: #fff;
  border-radius: 10px;
  padding: 14px 18px;
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s;
}
.rc-minicard:hover {
  background: #f0f4f8;
}
.rc-minicard__title {
  font-size: 0.85rem;
  font-weight: 600;
  color: #111;
}
.rc-minicard__arrow {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #4a9fd9;
  border-radius: 6px;
  color: #4a9fd9;
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: background 0.3s, color 0.3s;
}
.rc-minicard:hover .rc-minicard__arrow {
  background: #4a9fd9;
  color: #fff;
}
.rc-block__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  background: #4a9fd9;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
}
.rc-block__btn:hover {
  background: #3a8bc5;
  transform: translateY(-2px);
}

/* ═══ Responsive ═══ */
@media (max-width: 1024px) {
  .inq-container { padding: 60px 40px 60px; }
}
@media (max-width: 768px) {
  .inq-container { padding: 40px 20px; }
  .inq-field__head { font-size: 14px; }
  .inq-input { min-height: 50px; }
  .inq-radios { flex-direction: column; gap: 12px; }
  .inq-field__body--half { max-width: 100%; }
  .inq-tel__box { padding: 20px 24px; }
  .inq-tel__number-value { font-size: 24px; }
  .rc-grid { grid-template-columns: 1fr; }
}
