@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: 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;
}
#broad-outline {
    width: 500px;
    margin: auto;
	padding-bottom: 5rem;
    background-color: #fdf9db;
	position: relative;
}
.cta {
    width: 90%;
    margin: auto;
}
.cta a {
    margin-top: 2rem;
    display: block;
}
/* ボタンの基本スタイル */
.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.1);
}

/* 画像がはみ出さないように設定 */
.floating-line-btn img {
  width: 100%;
  height: auto;
  display: block;
}
footer ul {
    display: flex;
    width: 90%;
	margin: auto;
}
footer li {
    width: 30%;
    margin-bottom: 5px;
    font-size: 0.6rem;
}
.li-bor {
	width: 70%;
}
/* 日時表示ボックス（赤グラデーション） */
.standby-box {
    background: linear-gradient(135deg, #faeb01 0%, #f9e708 100%);
    padding: 0px;
    border-radius: 10px;
    animation: glow 2s ease-in-out infinite;
    position: absolute;
    top: 0;
    right: 10px;
    border: 1px solid black;
}
    .standby-text {
      color: #000000;
      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;
    }

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

    /* 待機中バッジ */
    .status-badge {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      background: #f9e707;
      color: #333;
      padding: 1px 9px;
      border-radius: 20px;
      font-size: 0.7rem;
    }

    /* 緑のドット（パルスアニメーション） */
    .status-badge .dot {
      width: 10px;
      height: 10px;
      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 10px rgba(34, 197, 94, 0); 
      }
    }