/* CSS Document */
/* -------------------------------------------------

Reset.css

------------------------------------------------- */
@media print {
  html,
  body {
    zoom: 0.8;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}

html {
  font-size: 62.5%;
}

body {
  color: #222;
  font-size: clamp(14px, 1.5vw, 18px);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 2;
}
body * {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  line-height: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
}

img {
  width: 100%;
  vertical-align: middle;
}

a {
  color: #222;
  outline: none;
  text-decoration: none;
  transition: 0.3s;
  display: inline-block;
}
a:hover {
  transform: translateY(-5px);
}
a img {
  border-style: none;
  transition: 0.3s;
}

@media screen {
  .fade__0 {
    opacity: 0;
    transition: 1s;
  }
  .fade__B {
    opacity: 0;
    transition: 1s;
    transform: translate(0, 30px);
  }
  .fade__L {
    opacity: 0;
    transition: 1s;
    transform: translate(-20px, 0);
  }
  .fadeReset {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@media all and (min-width: 669px) {
  .sp {
    display: none;
  }
}
@media all and (min-width: 801px) {
  .md {
    display: none;
  }
}
@media all and (min-width: 961px) {
  .tb {
    display: none;
  }
}
@media screen and (max-width: 668px) and (orientation: portrait) {
  .sp_p {
    display: none;
  }
}
@media screen and (max-width: 960px) {
  .pc {
    display: none;
  }
}
@media screen and (max-width: 668px) {
  .ns {
    display: none;
  }
}
@media screen and (max-width: 1200px) {
  .np {
    display: none;
  }
}
#wrapper .btn a {
  background-color: #FE6FA5;
  color: #fff;
  display: block;
  max-width: 400px;
  text-align: center;
  margin: 0 auto;
  border-radius: 50px;
  font-size: 2.3rem;
  padding: 30px 10px;
  box-shadow: 5px 5px 0px 0px rgba(51, 51, 51, 0.1);
}
@media screen and (max-width: 960px) {
  #wrapper .btn a {
    font-size: 2rem;
    padding: 25px 10px;
    max-width: 320px;
  }
}
@media screen and (max-width: 668px) {
  #wrapper .btn a {
    font-size: 1.6rem;
    padding: 20px 10px;
    max-width: 280px;
  }
}
#wrapper .btn.w a {
  background-color: #fff;
  color: #FE6FA5;
}