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

Reset.css

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

html {
  font-size: 62.5%;
}

body {
  color: #333;
}
body * {
  font-family: "Zen Old Mincho", serif;
  font-size: 2rem;
  font-weight: 400;
  font-style: normal;
}

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

a {
  color: #333;
  outline: none;
  text-decoration: none;
  transition: 0.3s;
}

a:hover img {
  transform: translateY(-5px);
}

a img {
  border-style: none;
  transition: 0.3s;
}

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

/* media query */
@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: 960px) {
  .pc {
    display: none;
  }
}
@media screen and (max-width: 668px) {
  .ns {
    display: none;
  }
}
@media all and (max-width: 1200px) {
  .np {
    display: none;
  }
}
.bx-wrapper {
  box-shadow: none !important;
  border: 0 !important;
  background: transparent !important;
}

#wrapper {
  overflow: hidden;
}

header {
  display: flex;
  justify-content: space-between;
  padding: 40px 50px;
  border-bottom: 1px solid #eee;
}
@media screen and (max-width: 960px) {
  header {
    padding: 20px 30px;
  }
}
@media screen and (max-width: 668px) and (orientation: portrait) {
  header {
    padding: 15px 20px;
  }
}
header h1 {
  width: 300px;
}
@media screen and (max-width: 960px) {
  header h1 {
    width: 200px;
  }
}
header p {
  width: 75px;
}
@media screen and (max-width: 960px) {
  header p {
    width: 50px;
  }
}

.pageTit {
  padding: 100px 50px 80px;
  border-bottom: 1px solid #eee;
}
@media screen and (max-width: 960px) {
  .pageTit {
    padding: 50px 30px 40px;
  }
}
@media screen and (max-width: 668px) and (orientation: portrait) {
  .pageTit {
    padding: 40px 20px 30px;
  }
}
.pageTit h2 {
  font-size: 7rem;
  line-height: 120%;
}
@media screen and (max-width: 960px) {
  .pageTit h2 {
    font-size: 4rem;
  }
}
@media screen and (max-width: 668px) and (orientation: portrait) {
  .pageTit h2 {
    font-size: 3rem;
  }
}

.linkBtn a {
  max-width: 320px;
  display: block;
  border: 1px solid #333;
  font-size: 1.8rem;
  padding: 30px 40px 30px 30px;
  line-height: 120%;
  position: relative;
}
@media screen and (max-width: 668px) and (orientation: portrait) {
  .linkBtn a {
    max-width: 280px;
    padding: 20px 25px 20px 20px;
    font-size: 1.6rem;
  }
}
.linkBtn a::before, .linkBtn a::after {
  content: "";
  position: absolute;
  transition: 0.5s;
}
.linkBtn a::before {
  background-color: #f5f5f5;
  width: 100%;
  height: 100%;
  left: 7px;
  top: 7px;
  z-index: -1;
}
.linkBtn a::after {
  width: 70px;
  height: 1px;
  border-bottom: 1px solid #333;
  right: -35px;
  top: 50%;
}
@media screen and (max-width: 668px) and (orientation: portrait) {
  .linkBtn a::after {
    width: 50px;
    right: -25px;
  }
}
.linkBtn a:hover::before {
  left: -7px;
  top: -7px;
  background-color: #F7FF85;
}
.linkBtn a:hover::after {
  right: -40px;
}

footer {
  padding: 0 30px 30px;
}
@media screen and (max-width: 668px) and (orientation: portrait) {
  footer {
    padding: 0 20px 20px;
  }
}
footer ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 70px;
}
footer ul li {
  margin: 0 20px;
}
@media screen and (max-width: 668px) and (orientation: portrait) {
  footer ul li:not(:last-child) {
    width: 50%;
    margin: 0;
    text-align: center;
  }
}
footer ul li a {
  display: inline-block;
  font-size: 1.8rem;
  padding: 5px 0;
}
footer ul li a:hover {
  transform: translateY(-5px);
}
footer h6 {
  text-align: center;
  margin-bottom: 70px;
}
footer p.copy {
  text-align: center;
  font-size: 1.8rem;
}

input[type=text],
input[type=button],
input[type=email],
input[type=submit],
textarea,
select {
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background-color: transparent;
}
input[type=text]:focus,
input[type=button]:focus,
input[type=email]:focus,
input[type=submit]:focus,
textarea:focus,
select:focus {
  outline: none;
}/*# sourceMappingURL=layout.css.map */