/* 共通スタイル */
html {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
}

/* ナビゲーション用の装飾 */
@layer components {
  .fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 40;
    gap: 1.5rem;
  }
}

.fullscreen-menu a {
  font-size: 1.25rem;
  margin: 0.5rem 0;
  color: #6B6E70;
  text-decoration: none;
}

.fullscreen-menu a:hover {
  color: #5AC8FA;
}

body.menu-open {
  overflow: hidden;
}

/* スマホ用メニュー表示中の背景スクロール防止 */
.overflow-hidden {
  overflow: hidden;
}
/* よくある質問セクション Qマーク装飾 */
summary::before {
    content: "Q. ";
    color: #5AC8FA;
    font-weight: bold;
}
