/* ==========================================================================
   L'irréel cafe — ベーススタイル
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  /* セクション外へはみ出す円の装飾を横方向だけ切る
     （bodyだけだとブラウザによって横スクロールが残るためhtmlにも指定） */
  overflow-x: clip;
}

body {
  overflow-x: clip;
  font-family: var(--font-jp);
  font-size: var(--fs-body);
  font-weight: 700; /* Figmaの和文本文は Shippori Mincho Bold */
  line-height: var(--lh-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

/* 見た目を変えず、支援技術と検索エンジンにページ構造を伝える見出し用 */
.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed !important;
  z-index: 100000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  margin: 0;
  clip: auto;
  overflow: visible;
  color: #fff;
  background: #001f3f;
  white-space: normal;
}

/* ネイビー背景セクションの共通反転 */
.section--dark {
  background-color: var(--color-bg-dark);
  color: var(--color-text-inverse);
}

.section--light {
  background-color: var(--color-bg);
  color: var(--color-text);
}
