@charset "utf-8";
/* =========================================================
   Reset by meyerweb (v2.0)
========================================================= */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section { display: block; }
ol, ul { list-style: none; }
blockquote, q { quotes: none; }
blockquote::before, blockquote::after,
q::before, q::after { content: ''; }
table { border-collapse: collapse; border-spacing: 0; }

/* =========================================================
   Base
========================================================= */
:root {
  --blue: #1a6cb4;
  --blue-dark: #0e4a7a;
  --blue-light: #e8f4fd;
  --yellow: #ffd814;
  --red: #e30e03;
  --text: #333;
  --bg: #fff;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
body {
  line-height: 1.6;
  color: var(--text);
  background: #fff;
  overflow-x: hidden !important;
  -webkit-text-size-adjust: 100%;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  max-width: 750px;
  margin: 0 auto;
}

a {
  text-decoration: none !important;
  color: var(--text) !important;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.screen-reader-text {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px,1px,1px,1px);
  white-space: nowrap;
}

/* =========================================================
   FV（ファーストビュー）
========================================================= */
.fv {
  position: relative;
}
.fv img {
  width: 100%;
  height: auto;
}

/* =========================================================
   スタッフ待機中バッジ（FV右上）
========================================================= */
.standby-box {
  background: linear-gradient(135deg, #faeb01 0%, #f9e708 100%);
  padding: 4px 10px;
  border-radius: 10px;
  animation: glow 2s ease-in-out infinite;
  position: absolute;
  top: 0;
  right: 10px;
  border: 1px solid #000;
  z-index: 10;
}
.standby-text {
  color: #000;
  font-weight: bold;
  text-align: center;
  line-height: 1.6;
  font-size: 0.6rem;
}
.datetime {
  color: #ff0000;
  font-size: 0.9rem;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  font-weight: bold;
}
.blinking {
  animation: blink 1s ease-in-out infinite;
}
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
@keyframes glow {
  0%, 100% { box-shadow: 0 0 5px rgba(250, 235, 1, 0.5); }
  50% { box-shadow: 0 0 15px rgba(250, 235, 1, 0.9); }
}

/* =========================================================
   CTA ボタン（btn / line）
========================================================= */
.cta-btn,
.cta-line {
  padding: 0 2rem;
}
.cta-btn {
margin-top: 2rem;
}
.cta-line {
margin-top: 1rem;
margin-bottom: 2rem;
}
#cta-btn2 .cta-btn {
margin-top: 0rem;
}
#cta-btn2 .cta-line {
margin-bottom: 0rem;
}
.cta-btn a,
.cta-line a {
  display: block;
}
.cta-btn img,
.cta-line img {
  width: 100%;
  height: auto;
}
#cta-btn2 {
    background-color: #002261;
    padding: 2rem 0;
}
/* =========================================================
   よくある質問（FAQ アコーディオン）
========================================================= */
.faq {
  background-color: #fdf8e8;
  padding: 0 0 24px;
}

.faq-title {
  padding: 0;
}
.faq-title img {
  width: 100%;
}

.faq-list {
  padding: 0 16px;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 16px;
  border: none;
  background: #fff;
  cursor: pointer;
  text-align: left;
  gap: 12px;
  font-size: 15px;
  font-weight: bold;
  color: var(--text);
  line-height: 1.5;
  position: relative;
}

.faq-q-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
}
.faq-q-icon img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.faq-q-text {
  flex: 1;
}

.faq-toggle {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
}
.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  background: #999;
  border-radius: 2px;
  transition: transform 0.3s ease;
}
/* 横線 */
.faq-toggle::before {
  top: 50%;
  left: 2px;
  right: 2px;
  height: 2px;
  transform: translateY(-50%);
}
/* 縦線（開くとき回転で消える） */
.faq-toggle::after {
  top: 2px;
  bottom: 2px;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
}

.faq-question[aria-expanded="true"] .faq-toggle::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  padding: 0 16px 16px 68px;
  font-size: 14px;
  line-height: 1.8;
  color: #555;
}
.faq-answer p {
  margin: 0;
}

/* =========================================================
   会社情報（NAP）
========================================================= */
#company {
  width: 100%;
  background-color: var(--blue);
  padding: 24px 0 60px;
  font-size: 0.5rem;
  color: #fff;
}
#company table {
  width: 92%;
  margin: 0 auto;
}
#company th,
#company td {
  padding: 0px;
  text-align: left;
  color: #fff;
  vertical-align: top;
}
#company th {
  width: 30%;
  font-weight: bold;
  white-space: nowrap;
}
#company a {
  color: #fff !important;
  text-decoration: underline !important;
}

/* =========================================================
   フローティング電話ボタン（スクロールで表示）
========================================================= */
.floating-line-btn {
  position: fixed;
  bottom: 10px;
  right: 0;
  left: 0;
  z-index: 999;
  width: 93%;
  margin: auto;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s ease;
}
.floating-line-btn.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.floating-line-btn:hover {
  transform: scale(1.05);
}
.floating-line-btn img {
  width: 100%;
  height: auto;
  display: block;
}