/* 英字装飾の書体。自前で持つので外部への往復が要らない */
@font-face {
  font-family: "Saira Condensed";
  src: url("../fonts/saira-condensed-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Saira Condensed";
  src: url("../fonts/saira-condensed-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* リセット */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

html {
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
  /* アンカーで飛んだ見出しがヘッダーに隠れないようにする */
  scroll-padding-top: var(--omp-header-h);
}

/* 要素の初期値 */
body {
  font-family: var(--omp-ff-base);
  color: var(--omp-c-text);
  line-height: var(--omp-lh-base);
  /* 日本語を文節単位で折り返す */
  word-break: auto-phrase;
  overflow-wrap: anywhere;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  letter-spacing: inherit;
}

/* 容器 */
.omp-wrap {
  width: 100%;
  padding-inline: var(--omp-pad-x);
}

.omp-container {
  width: 100%;
  max-width: var(--omp-w-container);
  margin-inline: auto;
  min-width: 0;
}

.omp-inner {
  width: 100%;
  max-width: var(--omp-w-inner);
  margin-inline: auto;
  min-width: 0;
}
