@charset "UTF-8";
@media (min-width: 1200px) {
  .pc_none {
    display: none !important;
  }
}
@media (max-width: 520px) {
  .sp_none {
    display: none !important;
  }
}
/* まずはリセット */
* {
  margin: 0;
  padding: 0;
  color: #393939;
}

html {
  scroll-behavior: smooth;
}

.bg_black.open {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  transition: all 0.8s;
}

body {
  overflow-x: hidden;
  color: #393939;
  line-height: 1.6;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

a {
  text-decoration: none;
}

header {
  height: 70px;
}
header .wrap {
  position: relative;
  display: flex;
  justify-content: space-between;
  height: 100%;
  background: rgb(255, 255, 255);
  z-index: 2;
}
header .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: bold;
  font-size: clamp(16px, 16px + (28 - 16) * (100vw - 320px)/(520 - 320), 28px);
  letter-spacing: 0.05em;
  margin-left: 20px;
  transition: all 0.3s;
}
header .logo:hover {
  opacity: 0.65;
}
header .menu {
  position: absolute;
  flex-direction: column;
  left: -200%;
  width: 0;
  overflow: hidden;
  width: 100%;
  padding: 0;
  background-color: #f5f5f5;
  transition: all 0.3s;
}
header .menu.open {
  position: fixed;
  width: 100vw;
  left: 0;
}
header .menu .menu_item {
  display: block;
  font-size: 14px;
  text-decoration: none;
  color: #393939;
  padding: 20px 36px;
  transition: all 0.3s;
}
header .menu .menu_item:hover {
  background-color: #f2ece2;
}
header .sp_menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 70px;
  margin-right: 30px;
  cursor: pointer;
  z-index: 1;
}
header .sp_menu span {
  width: 100%;
  height: 2px;
  border-radius: 4px;
  background-color: #393939;
  position: relative;
  transition: all 0.3s;
}
header .sp_menu span::before, header .sp_menu span::after {
  content: "";
  height: 2px;
  border-radius: 4px;
  background-color: #393939;
  position: absolute;
  transition: all 0.3s;
}
header .sp_menu span::before {
  transform: translateY(-8px);
  width: 100%;
}
header .sp_menu span::after {
  transform: translateY(8px);
  width: 50%;
}
header .sp_menu span:hover {
  opacity: 0.65;
}
header .sp_menu.open span {
  background-color: transparent;
}
header .sp_menu.open span::before {
  transform: rotate(45deg);
}
header .sp_menu.open span::after {
  transform: rotate(-45deg);
  width: 100%;
}

.pagination {
  text-align: center;
  margin: 80px auto 0;
  font-size: 22px;
}
@media (min-width: 1200px) {
  .pagination {
    font-size: 32px;
  }
}
.pagination a {
  color: #58c3e0;
  margin: 0 8px;
}
@media (min-width: 521px) {
  .pagination a {
    margin: 0 1em;
  }
}
.pagination a span {
  color: #58c3e0;
}
.pagination a:hover {
  opacity: 0.65;
}

.nf404 p {
  color: #58c3e0;
  font-size: 24px;
  text-align: center;
  margin: 100px auto;
}

footer div {
  text-align: center;
  margin: 80px auto;
}
footer div a {
  font-size: 2em;
  transition: all 0.3s;
}
footer div a:hover {
  opacity: 0.65;
}/*# sourceMappingURL=style.css.map */