@charset "UTF-8";

/*=========================================== 
 ページ設定
=========================================== */
* {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP";
  line-height: unset;
}

html,
body {
  position: relative;
  width: 100%;
  color: #222;
  box-sizing: border-box;
  font-family: "Noto Sans JP";
  -webkit-text-size-adjust: 100%;
  font-weight: 500;
}

body {
  width: 100%;
  -webkit-text-size-adjust: 100%;
  position: relative;
}

html {
  font-size: 0.732vw;
}
@media (max-width: 767px) {
  html {
    font-size: 2.667vw;
  }
}

a:hover,
a:link,
a:active {
  text-decoration: none;
}
a:hover {
  transition: 0.3s all;
}

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

img {
  display: block;
  max-width: 100%;
}

.pc-only1 {
  display: block;
}
@media (max-width: 767px) {
  .pc-only1 {
    display: none;
  }
}

.sp-only1 {
  display: none;
}
@media (max-width: 767px) {
  .sp-only1 {
    display: block;
  }
}

.pc-only2 {
  display: block;
}
@media (max-width: 520px) {
  .pc-only2 {
    display: none;
  }
}

.sp-only2 {
  display: none;
}
@media (max-width: 520px) {
  .sp-only2 {
    display: block;
  }
}

.pc-only3 {
  display: block;
}
@media (max-width: 960px) {
  .pc-only3 {
    display: none;
  }
}

.sp-only3 {
  display: none;
}
@media (max-width: 960px) {
  .sp-only3 {
    display: block;
  }
}

/* font-size
=========================================== */
html {
  font-size: 62.5%;
}

body,
p {
  line-height: 2.2;
}
@media (max-width: 767px) {
  body,
  p {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

/* iOS
=========================================== */
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

input[type="submit"]:-webkit-search-decoration,
input[type="button"]:-webkit-search-decoration {
  display: none;
}

input[type="submit"]:focus,
input[type="button"]:focus {
  outline-offset: -2px;
}
