/* -------------------------------------------------

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 {
  background-color: #DDE673;
  color: #000;
  font-size: clamp(13px, 1.3333333333vw, 16px);
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  line-height: 1.5;
}
body * {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  line-height: inherit;
}

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

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

img {
  max-width: 100%;
}

@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: 650px) and (orientation: landscape) {
  .sp_p {
    display: none;
  }
}
@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: 960px) {
  .pc {
    display: none;
  }
}
@media screen and (max-width: 668px) {
  .ns {
    display: none;
  }
}
@media screen and (max-width: 1200px) {
  .np {
    display: none;
  }
}
@media all and (orientation: landscape) {
  .port {
    display: none;
  }
}
@media all and (orientation: portrait) {
  .land {
    display: none;
  }
}
.pageTitle {
  padding-top: 80px;
}
@media screen and (max-width: 960px) {
  .pageTitle {
    padding-top: 60px;
  }
}

.skip {
  margin: 0;
}
.skip a {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-100%);
  padding: 10px 15px;
  font-size: 12px;
  background: #000;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  z-index: 2000;
  transition: transform 0.2s ease;
  border-radius: 0 0 10px 0;
}
.skip a:focus {
  transform: translateY(0);
  outline: 2px solid #fff;
}

header {
  background-color: #DDE673;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;
  padding: 0 max(3vw, 20px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.5s;
}
@media screen and (max-width: 960px) {
  header {
    height: 60px;
  }
}
header.shadow {
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.07);
}
header h1 {
  line-height: 100%;
}
@media screen and (max-width: 960px) {
  header h1 {
    width: 200px;
  }
}
header p {
  line-height: 100%;
}
header p::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  vertical-align: text-top;
  background-color: #FFF100;
  border: 3px solid #000;
  border-radius: 50%;
  margin: 5px 5px 0 0;
}
header p a {
  letter-spacing: 1px;
  line-height: 100%;
  padding-bottom: 3px;
  background-image: linear-gradient(#000, #000);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 0 2px;
  transition: background-size 0.3s;
}
header p a:hover {
  background-position: bottom left;
  background-size: 100% 2px;
}

footer {
  padding: 100px 25px 30px;
  text-align: center;
}
footer h6 {
  margin: 0 auto 10px;
}
footer p.copy {
  font-size: 12px;
}