@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Noto+Sans+JP:wght@400;700&display=swap');

:root {
  --color-def: #000;
}

html {
  font-size: 62.5%;
  color: var(--color-def);
  -webkit-text-size-adjust: 100%;
}

body {
  position: static;
  word-break: break-all;
  font-size: 160%;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", Meiryo, "メイリオ", sans-serif;
}

canvas {
  vertical-align: top;
}

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

a {
  text-decoration: none;
  color:  var(--color-def);;
  transition: all .3s;
}
a:hover,
a:active {
  opacity: .7;
}

img {
  height: auto;
  width: 100%;
  vertical-align: bottom;
}
img[src$=".svg"] {
  width: 100%;
}

i {
  font-style: normal;
}

button {
  border: none;
  border-color: none;
  background: none;
  cursor: pointer;
  transition: all .3s;
}

div {
  line-height: 1.5;
  letter-spacing: 0.1em;
}

p {
  font-size: inherit;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

label {
  font-size: inherit;
  line-height: 1.3;
  letter-spacing: 0.05em;
}

input::placeholder {
  font-size: inherit;
}

table {
  width: 100%;
  border-collapse: collapse;
}

main {
  display: block;
}

/* ======================
  共通パーツ
====================== */
.is-pc {
  display: block !important;
}

.is-pc-flex {
  display: flex !important;
}

.is-sp {
  display: none !important;
}

.fw-bold {
  font-weight: bold;
}

.font-s {
  font-size: 10px;
}

@media screen and (max-width: 768px) {
  .is-pc,
  .is-pc-flex {
    display: none !important;
  }

  .is-sp {
    display: block !important;
  }
}
