html {
  scroll-behavior: smooth;
}
/*html::-webkit-scrollbar {
  display: none;
}*/
body {
  padding: 0;
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #000;
  font-family: YuGothic, 'Yu Gothic', 'ヒラギノ角ゴシック', 'Hiragino Sans', sans-serif;
}
* {
  box-sizing: border-box;
}
@media screen and (max-width: 568px) {
  body {
    font-size: 14px;
  }
}
/*font*/
h1 {
  margin: 0;
  padding: 0;
  font-size: 42px;
  font-weight: bold;
}
h2 {
  margin: 0;
  padding: 0;
  font-size: 34px;
  font-weight: bold;
}
h3,
h4,
h5 {
  margin: 0;
  padding: 0;
}
p {
  margin: 0;
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
  opacity: 0.8;
  cursor: pointer;
}
.font-YGothic {
  font-family: YuGothic, 'Yu Gothic', 'ヒラギノ角ゴシック', 'Hiragino Sans', sans-serif;
}
.font-NotoSans {
  font-family: 'Noto Sans JP', sans-serif;
}
.font-Oswald {
  font-family: 'Oswald', sans-serif;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
@media screen and (max-width: 1100px) {
  h1 {
    font-size: 40px;
  }
  h2 {
    font-size: 30px;
  }
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 36px;
  }
  h2 {
    font-size: 26px;
  }
}
@media screen and (max-width: 568px) {
  h1 {
    font-size: 32px;
  }
  h2 {
    font-size: 20px;
  }
}
/*list・date*/
ol,
ul,
li {
  padding: 0;
  margin: 0;
  list-style: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/*img*/
img {
  max-width: 100%;
  max-height: 100%;
  vertical-align: bottom;
}
/*form*/
input[type="text"] {
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
}
input[type="radio"] {
  display: none;
}
input[type="radio"]:checked + label {
  background: #ff0000;
}
/*input[type="checkbox"] {
  display: none;
}*/
input[type="checkbox"]:checked + label {
  /*background: #ff0000;*/
}
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
}
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  resize: none;
  padding: 0;
  border: 0;
  outline: none;
  background: transparent;
}
button,
input[type="submit"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
  cursor: pointer;
}
/*responsive*/
.dis-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .dis-pc {
    display: none;
  }
  .dis-sp {
    display: block;
  }
}
/*page*/
.scorll-target {
  padding-top: 64px;
  margin-top: -64px;
}
.page-breadth {
  max-width: 1120px;
  margin: 0 auto;
}