@charset "UTF-8";
/* ============================================================
   contact-custom.css — FAQ・お問い合わせページ固有
============================================================ */

/* FAQ アコーディオン */
.ace-faq { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.ace-faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.ace-faq__q {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ink);
  list-style: none;
}
.ace-q-mark {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.ace-faq__q-text { flex: 1; }
.ace-faq__toggle {
  width: 24px; height: 24px;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}
.ace-faq__toggle::before,
.ace-faq__toggle::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 14px; height: 2px;
  background: var(--red);
  transform: translate(-50%, -50%);
}
.ace-faq__toggle::after { transform: translate(-50%, -50%) rotate(90deg); }
.ace-faq__item.open .ace-faq__toggle { transform: rotate(45deg); }
.ace-faq__a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.ace-faq__item.open .ace-faq__a { max-height: 600px; }
.ace-faq__a-inner { padding: 0 24px 22px 68px; font-size: 1.5rem; color: var(--ink-soft); line-height: 2; }

/* お問い合わせ 2カラム */
.ace-contact__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: start;
}
.ace-form__row { margin-bottom: 22px; }
.ace-form__label { display: block; font-size: 1.45rem; font-weight: 700; margin-bottom: 8px; color: var(--ink); }
.ace-form__label .req {
  display: inline-block;
  font-size: 1.1rem;
  background: var(--red);
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 8px;
  vertical-align: middle;
}
.ace-form textarea.form-input { min-height: 160px; resize: vertical; }
.ace-form__note { font-size: 1.3rem; color: var(--ink-soft); margin: 6px 0 22px; }

/* サイド：LINE誘導パネル＋情報 */
.ace-cs-line {
  background: linear-gradient(135deg, #06c755, #04a948);
  color: #fff;
  border-radius: 20px;
  padding: 30px 26px;
  text-align: center;
  margin-bottom: 24px;
}
.ace-cs-line h3 { font-size: 1.8rem; font-weight: 700; margin-bottom: 8px; }
.ace-cs-line p { font-size: 1.4rem; opacity: 0.95; margin-bottom: 20px; line-height: 1.8; }
.ace-cs-line .ace-line-btn { background: #fff; color: #06a94c; box-shadow: none; }
.ace-cs-line .ace-line-btn:hover { background: rgba(255,255,255,0.9); }
.ace-cs-info {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 30px 26px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.ace-cs-info h4 {
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 16px;
  padding-bottom: 14px;
  position: relative;
}
.ace-cs-info h4::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 0;
  transform: translateX(-50%);
  width: 40px; height: 2px;
  background: var(--red);
}
.ace-cs-info p { font-size: 1.4rem; color: var(--ink-soft); line-height: 1.95; }
.ace-cs-info .ace-mail { color: var(--red); font-weight: 700; word-break: break-all; }

@media (max-width: 896px) {
  .ace-contact__grid { grid-template-columns: 1fr; }
}
