/* ===============================
   0. Reset / Base
================================*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

/* ===== スクロールバーを“見えなく”する（スクロールはできる） ===== */

/* Firefox 
html, body {
  scrollbar-width: none;
}*/

/* IE/旧Edge 
html, body {
  -ms-overflow-style: none;
}*/

/* Chrome / Safari / Edge(Chromium) 
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 0;
  height: 0;
}*/

body {
  margin: 0;
  font-family:
    "Noto Sans JP",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Helvetica Neue",
    Arial,
    sans-serif;
  color: #222;
  background-color: #fff;
  line-height: 1.6;
}

/* 英語だけ */
:lang(en) {
  font-family:
    "Roboto",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Helvetica Neue",
    Arial,
    sans-serif;
}

img {
  max-width: 100%;
  height: auto;
  border-style: none;
}

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

/* ===== 表示切り替えユーティリティ ===== */

/* PC（768px〜）で表示 / SPで非表示 */
.u-only-pc {
  display: none;
}

@media (min-width: 768px) {
  .u-only-pc {
    display: inline;
  }
}

/* SP（〜768px）で表示 / PCで非表示 */
.u-only-sp {
  display: inline;
}

@media (min-width: 768px) {
  .u-only-sp {
    display: none;
  }
}

.u-visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* 全幅テキスト左の中央寄せ */
.u-text-c-l {
  width: 100%;
}

.u-text-c-l__inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: left;
}

.u-text-c-l__inner p {
  font-weight: bold;
}

/* SP　全幅テキスト左の中央寄せ */
@media screen and (max-width: 768px) {
  .u-text-c-l__inner {
    max-width: none;
    margin: 0;
  }
}