/* ==========================
   Reset CSS (UI / iframe向け)
   ========================== */

/* box-sizing を全体に */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* マージン・パディング初期化 */
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
dl,
dt,
dd,
figure,
figcaption,
blockquote,
pre,
table,
th,
td,
form,
fieldset,
legend,
input,
textarea,
button,
header,
footer,
main,
section,
article,
aside,
nav {
  margin: 0;
  padding: 0;
}

/* リスト */
ul,
ol {
  list-style: none;
}

/* テーブル */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 画像・SVG */
img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

/* フォーム系 */
button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

/* ボタン */
button {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
}

/* リンク */
a {
  color: inherit;
  text-decoration: none;
}

/* HTML5要素 */
article,
aside,
footer,
header,
main,
nav,
section {
  display: block;
}

/* body 基本 */
html {
  -webkit-text-size-adjust: 100%;
}

body {
  line-height: 1.5;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* フォーカス（キーボード操作用・不要なら削除可） */
:focus-visible {
  outline: 2px solid #4c37ff;
  outline-offset: 2px;
}

img.prct-img {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  user-drag: none;
  pointer-events: none;
}