@charset "UTF-8";
:root {
  --font-round: "秀英にじみ丸ゴシック B", "Zen Maru Gothic", sans-serif;
  --font-body: "新ゴ R", "Noto Sans JP", sans-serif;
  --font-body-bold: "新ゴ B", "Noto Sans JP", sans-serif;
  --font-mincho: "リュウミン R-KL", "Zen Old Mincho", serif;
  --font-mincho-bold: "リュウミン B-KL", "Zen Old Mincho", serif;
  --color-primary: #1ca8cc;
  --color-secondary: #3d8fd1;
  --color-cta: #2bb5b0;
  --color-base: #ffffff;
  --color-bg: #f6f3ea;
  --color-bg-alt: #efefe6;
  --color-dark: #1a1a1a;
  --color-orange: #f2a33c;
  --color-pink: #ef7f9b;
  --color-green: #5fa84e;
  --color-red: #e4506b;
  --color-navy: #4a6fb8;
  --color-text: #333333;
  --color-text-sub: #707070;
  --color-text-inverse: #ffffff;
  --color-border: #bebebe;
  --color-border-light: #e0dcd0;
  --color-border-dash: #d8d4c8;
  --color-border-dark: #3a3a3a;
  --color-tint: #eaf7fa;
  --color-placeholder: #dcd8cc;
  --color-facebook: #1877f2;
  --color-instagram: #e4506b;
  --color-youtube: #e4506b;
  --inner-base: 65rem;
  --gutter: 5rem;
  --header-height: 4.75rem;
  --radius: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-pill: 999px;
  --shadow-menu: 0 6px 24px rgb(51 51 51 / 18%);
  --duration-fast: 0.2s;
  --duration-base: 0.3s;
}

@media screen and (max-width: 767.98px) {
  :root {
    --gutter: 2.5rem;
  }
}
/* 作家紹介と原画 */
.artist {
  padding: 2rem 0 4rem;
}
.artist .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.artist_list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  width: 100%;
}

.artist_item {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.artist_item:not(:first-child) {
  padding-top: 3rem;
  border-top: 1px solid var(--color-border-dash);
}

.artist_body {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  width: 100%;
}

.artist_cnt {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.75rem;
}

.artist_ttl {
  margin: 0;
  font-size: 1.625rem;
  font-weight: 700;
  font-family: var(--font-mincho);
  font-style: normal;
  font-weight: 700;
}

.artist_text {
  margin: 0;
  font-size: 1rem;
  line-height: 2;
  font-family: var(--font-mincho);
  font-style: normal;
  font-weight: 700;
}

.artist_img {
  flex-shrink: 0;
  width: 12.1875rem;
  border: 1px solid var(--color-border-light);
}
.artist_img img {
  display: block;
  width: 100%;
  height: auto;
}

.artist_gallery {
  width: 100%;
}
.artist_gallery img {
  display: block;
  width: 100%;
  height: auto;
}

/* 出版物 */
.books {
  padding-bottom: 5rem;
  background: var(--color-bg);
}
.books .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding-top: 3rem;
  border-top: 2px solid var(--color-cta);
}

.others {
  padding-bottom: 5rem;
}
.others .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding-top: 3rem;
  border-top: 2px solid var(--color-cta);
}

.books_text {
  align-self: flex-start;
  margin: 0;
  font-size: 1rem;
  line-height: 2;
}

.books_note {
  align-self: flex-start;
  margin: 0;
  color: var(--color-text-sub);
  font-size: 0.875rem;
}

.books_list {
  display: grid;
  gap: 2.25rem 1.5rem;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.books_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.books_img {
  width: 100%;
  aspect-ratio: 1;
  padding: 1.25rem;
  overflow: hidden;
  background: var(--color-base);
  border: 1px solid var(--color-border-light);
}
.books_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.books_award {
  margin: 0;
  color: var(--color-text-sub);
  font-size: 0.875rem;
}

.books_ttl {
  margin: 0;
  font-family: var(--font-body-bold);
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
}
.books_ttl a {
  color: var(--color-primary);
}

.books_author {
  margin: 0;
  color: var(--color-text-sub);
  font-size: 0.875rem;
  line-height: 1.7;
  text-align: center;
}

.books_price {
  margin: 0;
  font-size: 0.875rem;
}

/* スマホ */
@media screen and (max-width: 767.98px) {
  .artist_body {
    flex-direction: column;
    gap: 1.25rem;
  }
  .artist_img {
    width: min(12.1875rem, 60%);
  }
  .books_list {
    grid-template-columns: 1fr;
  }
}
/* スマホの縦の余白。1440px 基準の値は 375px では広すぎる */
@media screen and (max-width: 767.98px) {
  .artist {
    padding: 2.5rem 0 3.5rem;
  }
  .books {
    padding-bottom: 4rem;
  }
  .others {
    padding-bottom: 4rem;
  }
}
/*# sourceMappingURL=books.css.map */
