@charset "utf-8";

/***
* reset
**************************************/
*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
  padding: 0;
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-style: normal;
  /* font-family: YakuHanJP, Noto Sans JP, ヒラギノ角ゴ Pro W3, Hiragino Kaku Gothic Pro, Osaka, メイリオ, Meiryo, ＭＳ\ Ｐゴシック, sans-serif; */
}
body {
  font-style: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}
img,
picture,
video,
canvas,
svg {
  display: block;
  vertical-align: middle;
  width: 100%;
  height: auto;
}
input,
button,
textarea,
select {
  font: inherit;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
  font-size: 100%;
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-style: normal;
  /* font-family: YakuHanJP, Noto Sans JP, ヒラギノ角ゴ Pro W3, Hiragino Kaku Gothic Pro, Osaka, メイリオ, Meiryo, ＭＳ\ Ｐゴシック, sans-serif; */
}
#root,
#__next {
  isolation: isolate;
}
li {
  list-style-type: none;
}

/***
* root
**************************************/
:root {
  --windowW: 375;
  --winW: calc(100vw / var(--windowW));
}
@media screen and (min-width: 769px) {
  :root {
    --windowW: 1440;
    --winW: calc(100vw / var(--windowW));
  }
}

html {
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-style: normal;
	/* font-family: YakuHanJP, Noto Sans JP, ヒラギノ角ゴ Pro W3, Hiragino Kaku Gothic Pro, Osaka, メイリオ, Meiryo, ＭＳ\ Ｐゴシック, sans-serif; */
}

/***
* common
**************************************/
a {
  text-decoration: none;
}

.is-sp {
  display: block;
}
.is-pc {
  display: none;
}

@media only screen and (min-width: 769px) {
  .is-sp {
    display: none;
  }
  .is-pc {
    display: block;
  }
}
