@charset "UTF-8";
/* 全体設定 */
:root {
  --yellow: #FFFF64;
  --red: #ff3898;
  --blue: #02C9F7;
  --gray: #e0e0e0;
  --black: #030201;
  --white: #f9f9f3;
  --font-jp: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  --font-en: "itc-avant-garde-gothic-pro", "Helvetica", "Arial", sans-serif;
  scroll-behavior: smooth;
}

body {
  background-color: var(--black);
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-family: var(--font-en), var(--font-jp);
  font-size: 16px;
  line-height: 1.7;
  color: var(--black);
  overflow-x: hidden;
}
body img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body .inner {
  max-width: 1500px;
  margin: 0 auto;
}
body .title {
  font-family: "Kaisei Tokumin", serif;
  font-size: 38px;
  letter-spacing: -0.1rem;
}
@media screen and (max-width: 768px) {
  body :root {
    font-size: clamp(8px, 2vw + 1rem, 14px);
  }
}
@media (hover: hover) and (pointer: fine) {
  body a:hover {
    opacity: 0.8;
  }
}

/* ヘッダー */
header {
  height: 100px;
  text-align: center;
  background: url(../img/hondana.png) repeat top center/contain;
}
header .top {
  margin: 0 auto;
  padding: 1rem 0;
  height: 100px;
  --r: 50px;
  aspect-ratio: 4.5;
  border-radius: 20px;
  background: var(--white);
  -webkit-mask: radial-gradient(var(--r) at var(--r), rgba(0, 0, 0, 0) calc(100% - 1px), #000) calc(-1 * var(--r));
          mask: radial-gradient(var(--r) at var(--r), rgba(0, 0, 0, 0) calc(100% - 1px), #000) calc(-1 * var(--r));
}
header .top .site-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: -1rem;
  max-width: 100vw;
}
header .top .site-title .logo {
  width: 50px;
}
@media screen and (max-width: 768px) {
  header .top {
    aspect-ratio: 3.5;
    border-radius: 10px;
  }
}

/* スクロールバー */
body {
  --sb-track-color: #030201;
  --sb-thumb-color: #ffff64;
  --sb-size: 14px;
}
body ::-webkit-scrollbar {
  width: var(--sb-size);
}
body ::-webkit-scrollbar-track {
  background: var(--sb-track-color);
  border-radius: 1px;
}
body ::-webkit-scrollbar-thumb {
  background: var(--sb-thumb-color);
  border-radius: 1px;
}
@supports not selector(::-webkit-scrollbar) {
  body {
    scrollbar-color: var(--sb-thumb-color) var(--sb-track-color);
  }
}

/* gnav・ハンバーガーメニュー */
.gnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  width: 100%;
  background-color: var(--black);
  z-index: 1000;
  position: relative;
}
.gnav .gnav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  padding: 1rem;
  color: var(--white);
  font-size: 18px;
  width: 100%;
  gap: 2rem;
}
.gnav .gnav-list a {
  color: var(--white);
  font-weight: bold;
  letter-spacing: 0.1rem;
  word-break: keep-all;
}
.gnav .gnav-list a:hover {
  color: var(--yellow);
}

/* 無限スクロール */
.headline {
  background-color: var(--black);
}

.carousel,
.carousel2 {
  white-space: nowrap;
  padding: 0.1em;
}

.article-title {
  font-size: 18px;
  overflow: hidden;
  text-overflow: ellipsis;
  border: 1px solid var(--black);
  border-radius: 50px;
  padding: 0 0.5em;
  text-align: center;
}
.article-title:nth-child(4n) {
  background-color: var(--yellow);
}
.article-title:nth-child(4n-1) {
  background-color: var(--red);
}
.article-title:nth-child(4n+1) {
  background-color: var(--blue);
}
.article-title:nth-child(4n-2) {
  background-color: var(--white);
}

.carousel3 img {
  height: 300px;
  width: auto;
  margin: 4em 1em;
  border: 1px solid var(--white);
}
.carousel3 img:hover {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .carousel3 img {
    height: 200px;
    width: 100%;
    margin: 2em;
  }
  .article-title {
    font-size: 12px;
  }
}
/* グリッド */
.news .title-wrapper {
  position: relative;
  overflow: hidden;
}
.news h2 {
  text-align: center;
  z-index: 99;
  font-size: 55px;
  padding: 100px;
  background: url(../img/news-title.png) no-repeat center center/contain;
  position: relative;
}
.news h2 span {
  font-size: 16px;
  letter-spacing: 0.1rem;
  top: 30%;
  left: 10%;
  -webkit-transform: rotate(-10deg);
          transform: rotate(-10deg);
  position: absolute;
}
.news .parent {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: 20px repeat(7, minmax(100px, 1fr));
  max-height: 1000px;
  margin: 0 auto;
  padding: 1rem;
  gap: 1rem;
}
.news .parent .item1 {
  grid-area: 1/1/5/5;
}
.news .parent .item2 {
  grid-area: 1/5/3/6;
}
.news .parent .item3 {
  grid-area: 1/6/3/7;
}
.news .parent .item4 {
  grid-area: 3/5/5/7;
}
.news .parent .item5 {
  grid-area: 1/7/5/9;
}
.news .parent .item6 {
  grid-area: 5/1/7/2;
}
.news .parent .item7 {
  grid-area: 5/2/7/4;
}
.news .parent .item8 {
  grid-area: 7/1/9/3;
}
.news .parent .item9 {
  grid-area: 7/3/8/4;
}
.news .parent .item10 {
  grid-area: 8/3/9/4;
}
.news .parent .item11 {
  grid-area: 5/4/9/6;
}
.news .parent .item12 {
  grid-area: 5/6/7/9;
}
.news .parent .item13 {
  grid-area: 7/6/9/8;
}
.news .parent .item14 {
  grid-area: 7/8/9/9;
}
.news .parent .article {
  margin: 0;
}
.news .parent figure {
  position: relative;
}
.news .parent figure figcaption {
  font-weight: bold;
  position: absolute;
  background-color: var(--yellow);
  top: 0;
  border: 1px solid var(--black);
  line-height: 1.1;
  padding: 0.2em;
}
@media screen and (max-width: 768px) {
  .news .parent figure figcaption {
    padding: 0.3em 0.8em;
    font-size: 18px;
  }
}
.news .parent .item1 figcaption,
.news .parent .item5 figcaption,
.news .parent .item8 figcaption,
.news .parent .item11 figcaption {
  font-size: 20px;
  background-color: var(--white);
}
@media screen and (max-width: 768px) {
  .news .parent .item1 figcaption,
  .news .parent .item5 figcaption,
  .news .parent .item8 figcaption,
  .news .parent .item11 figcaption {
    padding: 0.3em 0.8em;
    font-size: 18px;
  }
}
.news .parent .item2 figcaption,
.news .parent .item6 figcaption,
.news .parent .item9 figcaption,
.news .parent .item13 figcaption {
  font-size: 14px;
  background-color: var(--blue);
}
@media screen and (max-width: 768px) {
  .news .parent .item2 figcaption,
  .news .parent .item6 figcaption,
  .news .parent .item9 figcaption,
  .news .parent .item13 figcaption {
    padding: 0.3em 0.8em;
    font-size: 18px;
  }
}
.news .parent .item3 figcaption,
.news .parent .item10 figcaption,
.news .parent .item12 figcaption {
  font-size: 15px;
  background-color: var(--red);
}
@media screen and (max-width: 768px) {
  .news .parent .item3 figcaption,
  .news .parent .item10 figcaption,
  .news .parent .item12 figcaption {
    padding: 0.3em 0.8em;
    font-size: 18px;
  }
}
.news .parent .item12 figcaption {
  font-size: 21px;
}
@media screen and (max-width: 768px) {
  .news .parent .item12 figcaption {
    padding: 0.3em 0.8em;
    font-size: 18px;
  }
}

@media screen and (max-width: 768px) {
  .news .parent {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-height: initial;
  }
  .parent .article {
    height: 300px;
  }
  .news .parent figcaption {
    padding: 0.3em 0.8em;
    font-size: 18px;
  }
  .item6 figcaption {
    background-color: var(--white);
  }
}
/* トップへ戻る */
.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 30vh;
}
.button .page-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #090909;
  padding: 0.7em 1.7em;
  cursor: pointer;
  font-size: 18px;
  border-radius: 0.5em;
  background: #e8e8e8;
  border: 1px solid #e8e8e8;
  -webkit-box-shadow: 6px 6px 12px #c5c5c5, -6px -6px 12px #ffffff;
          box-shadow: 6px 6px 12px #c5c5c5, -6px -6px 12px #ffffff;
}
.button .page-top .title {
  font-size: 35px;
}
.button .page-top .logo {
  height: 38px;
}
.button .page-top:hover {
  -webkit-box-shadow: 12px 12px 12px #c5c5c5, -6px -6px 12px #ffffff;
          box-shadow: 12px 12px 12px #c5c5c5, -6px -6px 12px #ffffff;
}

@media screen and (max-width: 768px) {
  .page-top .title {
    font-size: 25px;
  }
}
/* フッター */
footer {
  background-color: var(--black);
  text-align: center;
  font-size: 14px;
  padding: 1rem;
  color: var(--white);
}

/* ===============================================
# シングルページ
=============================================== */
.single {
  background-color: var(--white);
  padding: 2rem;
  margin-top: 62.59px;
}
.single h1 {
  text-align: center;
  font-size: 40px;
  padding: 2rem;
}
.single .content {
  padding: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 2;
}
.single .content img {
  margin: 0 auto;
  text-align: center;
}
.single .content h3 {
  text-align: center;
  margin-bottom: 1rem;
}
.single .content h4 {
  text-align: left;
}
.single .content p {
  margin: 2rem 0;
}
.single .content dl {
  margin: 2.8rem 0;
}
.single .content dl dt {
  font-weight: bold;
}
.single .content .line {
  border: 1px solid var(--gray);
  margin: 1rem 0 100px;
}
.single .content .book_information {
  margin: 80px 0;
}
.single .breadcrumbs {
  padding: 0.5rem 1rem;
}
.single .post-navigation {
  text-align: center;
  margin: 0 auto;
}
.single .post-navigation .nav-links {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 1rem;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .single .post-navigation .nav-links {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.single .post-navigation .nav-links .nav-previous {
  color: var(--red);
}
.single .post-navigation .nav-links .nav-next {
  color: var(--blue);
}

/* ===============================================
# アーカイブphp
=============================================== */
.archive {
  background-color: var(--white);
  padding-bottom: 100px;
  margin-top: 62.59px;
}
.archive h1 {
  text-align: center;
  font-size: 40px;
  padding: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-transform: uppercase;
}
.archive h1 .category-name {
  font-size: 20px;
  letter-spacing: 3px;
  margin-bottom: -1rem;
}
.archive .archive-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  height: auto;
  width: 100%;
}
.archive .post-title {
  font-size: 21px;
}
.archive .post-meta {
  font-size: 12px;
  text-align: center;
  margin: 0 auto;
}
.archive .archive-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 1rem;
  padding: 1rem;
  border: 1px solid var(--black);
  border-radius: 20px;
  background-color: var(--yellow);
  color: var(--black);
  text-align: center;
  line-height: 2;
  cursor: pointer;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 35vw;
  max-width: 300px;
  height: 400px;
}
.archive .archive-item:hover {
  opacity: 0.8;
}
.archive .archive-item:nth-child(3n+1) {
  background-color: var(--blue);
}
.archive .archive-item:nth-child(3n+2) {
  background-color: var(--yellow);
}
.archive .archive-item:nth-child(3n) {
  background-color: var(--red);
}
.archive .archive-item .post-img {
  aspect-ratio: 6/4;
  width: 100%;
  height: 60%;
}
@media screen and (max-width: 768px) {
  .archive .archive-item .post-img {
    width: 100%;
  }
}
.archive .archive-item .post-img img {
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid var(--black);
  border-radius: 8px;
}
@media screen and (max-width: 768px) {
  .archive .archive-item {
    width: 90vw;
  }
}/*# sourceMappingURL=style.css.map */