/* =========================
   スマホ専用LP — レスポンシブ補正
========================= */

/* PC幅でもLP幅を制限 */
@media screen and (min-width: 751px) {
  body {
    max-width: 750px;
    margin: 0 auto !important;
    box-shadow: 0 0 30px rgba(0,0,0,0.08);
  }
}

/* PC幅ではフローティングボタンを右下固定 */
@media screen and (min-width: 560px) {
  .floating-line-btn {
    right: 10px !important;
    left: inherit !important;
    width: 30% !important;
  }
}

/* 小さめのスマホ */
@media screen and (max-width: 375px) {
  .standby-box {
    right: 5px;
    padding: 2px 6px;
  }
  .standby-text {
    font-size: 0.55rem;
  }
  .datetime {
    font-size: 0.75rem;
  }
  .faq-question {
    padding: 12px;
    font-size: 14px;
    gap: 8px;
  }
  .faq-q-icon,
  .faq-q-icon img {
    width: 32px;
    height: 32px;
  }
  .faq-answer {
    padding-left: 52px;
    font-size: 13px;
  }
  #company {
    font-size: 0.8rem;
  }
}