@charset "UTF-8";
@media screen and (max-width: 767px) {
  .empty {
    display: none;
  }
}
.single-news-card-wrapper {
  min-height: calc(100vh - 100px - 220px - 220px);
}
@media screen and (max-width: 999px) {
  .single-news-card-wrapper {
    min-height: calc(100vh - 100px - 220px - 100px);
  }
}
@media screen and (max-width: 399px) {
  .single-news-card-wrapper {
    min-height: 60vh;
  }
}

.news-card-wrapper {
  min-height: calc(100vh - 100px - 220px - 480px);
}
@media screen and (max-width: 999px) {
  .news-card-wrapper {
    min-height: calc(100vh - 100px - 220px - 400px);
  }
}
@media screen and (max-width: 399px) {
  .news-card-wrapper {
    min-height: unset;
  }
}

.download .wrapper {
  min-height: calc(100vh - 100px - 220px - 340px);
}
@media screen and (max-width: 999px) {
  .download .wrapper {
    min-height: calc(100vh - 100px - 220px - 280px);
  }
}
@media screen and (max-width: 399px) {
  .download .wrapper {
    min-height: 60vh;
  }
}

.bookstore_events-card-wrapper {
  min-height: calc(100vh - 100px - 220px - 350px);
  align-content: center;
  width: 80%;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.5019607843);
}
@media screen and (max-width: 999px) {
  .bookstore_events-card-wrapper {
    min-height: 50vh;
  }
}
@media screen and (max-width: 767px) {
  .bookstore_events-card-wrapper {
    width: 100%;
    margin: 10% 0;
  }
}

img {
  width: 100%;
  height: auto;
}

html, body {
  overflow-x: hidden;
}

header .container, footer .container, main .container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}
@media screen and (max-width: 1399px) {
  header .container, footer .container, main .container {
    max-width: 85%;
    margin: 0 auto;
  }
}

body {
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  body {
    padding-top: 60px;
  }
}

header {
  background-color: #fff;
  position: fixed;
  width: 100%;
  height: 100px;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  z-index: 999;
}
@media screen and (max-width: 767px) {
  header {
    height: 60px;
  }
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .container .wrapper {
  display: flex;
  width: 45%;
  justify-content: space-between;
}
@media screen and (max-width: 1199px) {
  header .container .wrapper {
    display: none;
  }
}
header .container .wrapper .thumb img {
  height: 27px;
  width: auto;
  vertical-align: middle;
}
@media screen and (max-width: 1399px) {
  header .container .wrapper .thumb img {
    height: 25px;
  }
}
header .container .wrapper nav ul li {
  padding-right: 4rem;
}
@media screen and (max-width: 1399px) {
  header .container .wrapper nav ul li {
    font-size: 14px;
  }
}

/* ハンバーガーボタン */
.hamburger {
  display: none;
  position: relative;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}
.hamburger .bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #1A1311;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease, bottom 0.25s ease;
}
.hamburger .bar:nth-child(1) {
  top: 0;
}
.hamburger .bar:nth-child(2) {
  top: 9px;
}
.hamburger .bar:nth-child(3) {
  bottom: 0;
}
.hamburger.is-open .bar:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
}
.hamburger.is-open .bar:nth-child(2) {
  opacity: 0;
}
.hamburger.is-open .bar:nth-child(3) {
  bottom: auto;
  top: 9px;
  transform: rotate(-45deg);
}
@media screen and (max-width: 1199px) {
  .hamburger {
    display: flex;
  }
}

/* ドロワー */
.sp-drawer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
}
.sp-drawer.is-open {
  display: block;
}
.sp-drawer__backdrop {
  position: absolute;
  inset: 0 50% 0 0;
  background: rgba(0, 0, 0, 0.4);
}
.sp-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(520px, 60vw);
  height: 100vh;
  background: #fff;
  padding-top: 60px;
  box-shadow: -8px 0 24px rgba(0, 0, 0, 0.08);
  transform: translateX(100%);
  transition: transform 0.35s ease;
}
.sp-drawer.is-open .sp-drawer__panel {
  transform: translateX(0%);
}
.sp-drawer__nav {
  padding: 3rem;
}
.sp-drawer__nav p {
  padding-bottom: 1rem;
  margin-top: 2rem;
  border-bottom: 1px solid rgba(26, 19, 17, 0.5019607843);
  line-height: 1.5em;
}
.sp-drawer__nav ul {
  display: flex;
  flex-direction: column;
}
.sp-drawer__nav li a {
  display: block;
  font-size: 16px;
}
.sp-drawer__sns {
  margin-top: 2rem;
}
.sp-drawer__sns img {
  height: 27px;
  width: auto;
}
@media screen and (min-width: 1200px) {
  .sp-drawer {
    display: none !important;
  }
}

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

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

main {
  max-width: 1920px;
  display: flex;
  justify-content: center;
}
main article {
  width: 100%;
}
main section {
  width: 100%;
  margin: 0 auto;
  padding: 3.5% 0;
}
@media screen and (max-width: 1199px) {
  main section {
    padding: 7% 0;
  }
}
@media screen and (max-width: 767px) {
  main section {
    padding: 10% 0;
  }
}

.card {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 3.5%;
}
@media screen and (max-width: 767px) {
  .card {
    display: block;
  }
}
.card:last-child {
  padding-bottom: 0;
}
.card .thumb {
  width: 48%;
}
@media screen and (max-width: 767px) {
  .card .thumb {
    width: 100%;
  }
}
.card .description {
  width: 48%;
}
@media screen and (max-width: 767px) {
  .card .description {
    width: 100%;
  }
}

footer {
  height: 220px;
  align-content: center;
}
@media screen and (max-width: 767px) {
  footer {
    height: 300px;
  }
}
footer .container .wrapper p {
  text-align: center;
  padding: 1rem 0;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  footer .container .wrapper p {
    font-size: 12px;
  }
}/*# sourceMappingURL=layout.css.map */