/* リセット＆ベース */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: 'Noto Sans JP', sans-serif;
    background-color: #f4f6fa;
    color: #333;
    line-height: 1.7;
    letter-spacing: 0.02em;
    padding: 40px 20px;
  }

  /* コンテナ */
  .container {
    max-width: 820px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 48px 36px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  }

  /* 見出し */
  h1 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #2a3f54;
    text-align: center;
    margin-bottom: 24px;
    position: relative;
  }

  h1::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #4c8bf5;
    margin: 12px auto 0;
    border-radius: 2px;
  }

  h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2a3f54;
    margin-top: 32px;
    margin-bottom: 12px;
    border-left: 4px solid #4c8bf5;
    padding-left: 12px;
  }

  /* テキスト */
  p {
    margin-bottom: 16px;
    font-weight: 300;
  }

  /* リスト */
  ul,
  ol {
    margin-left: 20px;
    margin-bottom: 16px;
  }

  ul li {
    list-style-type: disc;
    margin-bottom: 8px;
  }

  ol li {
    list-style-type: decimal;
    margin-bottom: 8px;
  }

  /* 区切り線 */
  hr {
    border: none;
    border-top: 1px solid #e2e8f0;
    margin: 32px 0;
  }

  /* リンク */
  a {
    color: #4c8bf5;
    text-decoration: none;
    transition: color 0.2s ease;
  }

  a:hover {
    color: #2a3f54;
  }

  /* フッター */
  .footer {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9rem;
    color: #777;
  }

.header {
  position: relative;        /* 相対配置を指定して、子要素の絶対配置を許可 */
  height: 64px;              /* ヘッダーの高さはお好みで */
  border-bottom: 1px solid #e0e0e0;
  background-color: #fff;
}

/* タイトルを中央に固定 */
.header h1 {
  position: absolute;        /* 親 .header 内で絶対配置 */
  left: 50%;                 /* コンテナ幅の 50% に配置 */
  top: 50%;                  /* 高さの 50% に配置 */
  transform: translate(-50%, -50%);
  margin: 0;
  font-size: 1.8rem;
  font-weight: 700;
  color: #2a3f54;
}

/* 「戻る」ボタンを右端に固定 */
.back-button {
  position: absolute;
  right: 16px;               /* 右からの余白 */
  top: 50%;                  /* 垂直方向は中央 */
  transform: translateY(-50%);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background-color: #4c8bf5;
  padding: 8px 16px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.back-button:hover {
  background-color: #357ae8;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  transform: translateY(-50%) translateY(-2px);
}


.Clockbutton{
  background-color: #fff;
  border: solid 2px #2f4f4f;
  color: #2f4f4f;
  padding: 10px 30px;
  text-decoration: none;
  font-size: 1em;
font-family: "Noto Sans JP, sans-serif,MS Pゴシック" ;
}
.Clockbutton:hover {
  color: #2f4f4f;
  background-color: #b0e0e6;
}