@charset "utf-8";
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
    color: rgb(105, 104, 104);
	width:100%;
	overflow-x: hidden !important;
}
ol, ul {
	list-style: none;
}
a {
    text-decoration: none !important;
    color: #212529 !important;
}
a:hover{
opacity:0.8;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* ==============================
ここから
============================== */
img {
	vertical-align: bottom;
}

/* LP全体 */
.lp-wrap {
  max-width: 500px;
  margin: 0 auto;
}

/* ヘッダー：ロゴ + 待機中 */
.lp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  background: #fff;
}

.lp-logo {
  flex-shrink: 0;
}

.lp-logo img {
  height: 50px;
  width: auto;
  display: block;
}

/* 日時表示ボックス */
.standby-box {
  background: linear-gradient(135deg, #ff3c4b 0%, #e60011 100%);
  padding: 4px 10px;
  border-radius: 8px;
  border: 2px solid #f9e707;
  animation: glow 2s ease-in-out infinite;
  flex-shrink: 0;
}

.standby-text {
  color: #ffffff;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
  font-size: 0.6rem;
}

.datetime {
  color: #f9e607;
  font-size: 0.85rem;
  text-shadow: 0 0 10px rgb(255 215 0 / 88%);
  font-weight: bold;
}

.blinking {
  animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #f9e707;
  color: #333;
  padding: 1px 8px;
  border-radius: 20px;
  font-size: 0.65rem;
}

.status-badge .dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
  }
}

.lp-section img {
  display: block;
  width: 100%;
  height: auto;
}

/* CTAセクション */
.cta-section {
  position: relative;
}

.cta-bg {
  display: block;
  width: 100%;
  height: auto;
}

.cta-buttons {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3%;
}

.cta-tel,
.cta-line {
  display: block;
  width: 100%;
}

.cta-tel img,
.cta-line img {
  display: block;
  width: 100%;
  height: auto;
}

/* QAセクション */
.qa-section {
  background: #f0f6fb;
  padding: 40px 5% 50px;
}

.qa-header {
  text-align: center;
  margin-bottom: 30px;
}

.qa-header-sub {
  font-size: 14px;
  color: #2a7de1;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 5px;
}

.qa-header-title {
  font-size: 32px;
  font-weight: 900;
  color: #2a7de1;
  letter-spacing: 3px;
}

.qa-list {
  max-width: 700px;
  margin: 0 auto;
}

.qa-item {
  margin-bottom: 12px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.qa-question {
  background: #2a7de1;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 16px 18px;
  cursor: pointer;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.5;
  transition: background 0.2s;
}

.qa-question:hover {
  background: #1e6cc7;
}

.qa-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: #fff;
  color: #2a7de1;
  font-weight: 900;
  font-size: 16px;
  margin-right: 14px;
}

.qa-a-icon {
  background: #2a7de1;
  color: #fff;
}

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

.qa-toggle {
  font-size: 22px;
  margin-left: 10px;
  transition: transform 0.3s;
  min-width: 22px;
  text-align: center;
}

.qa-item.open .qa-toggle {
  transform: rotate(45deg);
}

.qa-answer {
  background: #fff;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  display: flex;
  align-items: flex-start;
  padding: 0 18px;
  font-size: 14px;
  line-height: 1.8;
  color: #333;
}

.qa-item.open .qa-answer {
  max-height: 300px;
  padding: 18px;
}

.qa-a-text {
  flex: 1;
  padding-top: 4px;
}

/* フローティングボタン */
.floating-bar {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  width: 500px;
  display: flex;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.floating-bar.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.floating-btn {
  flex: 1;
  display: block;
}

.floating-btn img {
  display: block;
  width: 100%;
  height: auto;
}

/* フローティング分の下余白 */
.lp-wrap {
  padding-bottom: 80px;
}