@charset "UTF-8";
/* media query */
/* -------------------------------------------------

Reset.css

------------------------------------------------- */
@media print {
  html,
  body {
    zoom: 0.8;
  }
}
* {
  margin: 0;
  padding: 0;
  font-style: normal;
  font-weight: normal;
  line-height: 180%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  list-style: none;
}

html {
  font-size: 62.5%;
}

body {
  color: #222;
}

body * {
  font-family: "UD新ゴ M", sans-serif;
  font-size: 1.7rem;
  font-weight: 500;
  font-style: normal;
}

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

a {
  color: #222;
  outline: none;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a img {
  border-style: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.pc {
  display: block;
}
@media screen and (max-width: 668px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 668px) {
  .sp {
    display: block;
  }
}

#wrapper {
  overflow: hidden;
}
#wrapper img {
  width: 100%;
  vertical-align: middle;
}

header {
  width: 100%;
  padding: 20px 0;
  z-index: 20;
  -webkit-transition: 1s;
  transition: 1s;
  background: #fff;
}
@media screen and (max-width: 668px) {
  header {
    padding: 10px 0;
  }
}
header .header {
  max-width: 1280px;
  width: calc(100% - 30px);
  margin: 0 auto;
}
header .header h1 {
  width: 200px;
}
@media screen and (max-width: 668px) {
  header .header h1 {
    width: 150px;
  }
}

main {
  -webkit-transition: 1s;
  transition: 1s;
}

footer {
  width: 100%;
  padding: 40px;
  background: #f1f1f1;
}
@media screen and (max-width: 668px) {
  footer {
    padding: 30px;
  }
}
footer .copy {
  color: #055f8c;
  text-align: center;
  line-height: 140%;
}
@media screen and (max-width: 668px) {
  footer .copy {
    text-align: left;
    padding-left: 15;
  }
}

.pagetop {
  display: block;
  position: fixed;
  right: 10px;
  bottom: 30px;
  line-height: 100%;
  z-index: 20;
}
@media screen and (max-width: 668px) {
  .pagetop {
    bottom: 10px;
  }
}

.pagetop a {
  display: block;
  color: #222;
  text-align: center;
  line-height: 100%;
  font-size: 1.4rem;
}

.pagetop a::before {
  content: "";
  margin: 0 auto 5px;
  display: block;
  width: 25px;
  height: 25px;
  background: url("../../common/images/icon_left.svg") no-repeat center/contain;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

@media screen and (max-width: 668px) and (orientation: portrait) {
  .pagetop a::before {
    width: 20px;
    height: 20px;
  }
}
.pagetop a:hover {
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
}
