@charset "UTF-8";
/* Compiled from SCSS using Live Sass Compiler */
:root {
  /* ---- フォント ---- */
  --font-family: "Zen Old Mincho", serif;
  /* ---- カラー（主要なもののみ変数とする） ---- */
  --color-base-black: #000;
  --color-primary: #fdd876;
  --color-secondary: #17436e;
  /* ---- z-index（全て変数とする） ---- */
  --z-micromodal_overlay: 1100;
  --z-site-nav: 1000;
  --z-site-header: 900;
  --z-page-bottom: 900;
  --z-object_img-case: 200;
  --z-inner: 100;
  --z-member_img: 100;
  --z-section-title-text: 100;
  --z-splide__arrow: 100;
  /* ---- デザインカンプのサイズ（比率計算で使用） ---- */
  --comp-sp: 390;
  --comp-pc: 1366;
  /* ---- その他 ---- */
  --default-header-height: 58px;
}
@media screen and (min-width: 768px) {
  :root {
    --default-header-height: 68px;
  }
}

/* ---- Webフォント ---- */
@font-face {
  font-family: "Zen Old Mincho";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/share/sp/ma-ya/font/ZenOldMincho/ZenOldMincho-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Zen Old Mincho";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/share/sp/ma-ya/font/ZenOldMincho/ZenOldMincho-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "Zen Old Mincho";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("/share/sp/ma-ya/font/ZenOldMincho/ZenOldMincho-Black.woff2") format("woff2");
}
@font-face {
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/share/sp/ma-ya/font/NotoSerifJP/NotoSerifJP-Bold.woff2") format("woff2");
}
/* ---- 既存スタイルのリセット&ベーススタイル ---- */
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height, var(--default-header-height));
}
body {
  width: auto;
  background-color: #fff !important;
}
body:has(.site-header_button[aria-expanded=true]) {
  overflow: hidden;
  padding-right: var(--scrollbar-width);
}
body:has(.micromodal[aria-hidden=false]) {
  padding-right: var(--scrollbar-width);
}

#contents {
  padding: 0;
}

#main-contents {
  position: relative;
  color: var(--color-base-black);
  font-family: var(--font-family);
  font-size: 16px !important;
  line-height: normal !important;
  word-wrap: break-word;
  overflow-wrap: break-word;
  padding: 0 !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}
@media screen and (min-width: 768px) {
  #main-contents {
    font-size: 22px !important;
  }
}
#main-contents *,
#main-contents *::before,
#main-contents *::after {
  box-sizing: border-box;
}
#main-contents .wapper-special {
  max-width: none;
  font-size: inherit;
  line-height: normal;
  border: none;
  margin: 0;
  padding: 0;
}

:where(#main-contents) img {
  image-rendering: -webkit-optimize-contrast; /* chromeの画像ぼやけ対策 */
  vertical-align: middle !important;
  max-width: 100%;
  height: auto;
}

:where(#main-contents, .micromodal) button {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  -webkit-appearance: none !important;
     -moz-appearance: none !important;
          appearance: none !important;
  background: none;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  margin: 0;
  padding: 0;
}

:where(#main-contents) a {
  color: inherit;
}
@media (any-hover: hover) {
  :where(#main-contents) a:is(:hover, :focus-visible) {
    text-decoration: none;
  }
}

nav a,
header a {
  color: var(--color-base-black);
}

#page-bottom {
  z-index: var(--z-page-bottom);
}

/* ---- ユーティリティ ---- */
@media (max-width: 767px) {
  .u-pc {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .u-sp {
    display: none !important;
  }
}

.u-fade-in-right {
  opacity: 0;
  visibility: hidden;
  translate: 30px 0;
}

.u-fade-in-left {
  opacity: 0;
  visibility: hidden;
  translate: -30px 0;
}

.u-font-noto-serif-jp {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
}

/* ---- ラップ ---- */
.main-wrap {
  --padding-inline: 10px;
  max-width: calc(1286px + var(--padding-inline) * 2);
  margin: 0 auto;
  padding: 0 var(--padding-inline);
}
@media screen and (min-width: 768px) {
  .main-wrap {
    --padding-inline: 40px;
  }
}

.main-wrap_inner {
  --border-width: 2px;
  border-color: var(--color-secondary);
  border-style: solid;
  border-width: 0 var(--border-width) var(--border-width);
  background-image: url("/share/sp/ma-ya/img/bg_sp.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .main-wrap_inner {
    --border-width: 3px;
    background-image: url("/share/sp/ma-ya/img/bg_pc.webp");
  }
}

/* ---- インナー ---- */
.inner {
  position: relative;
  z-index: var(--z-inner);
  padding: 0 18px;
}
/* ---- セクションタイトル ---- */
.section-title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto !important;
}
.section-title_text {
  position: relative;
  z-index: var(--z-section-title-text);
  color: var(--color-secondary);
  display: grid;
  place-items: center;
  width: 40px;
  aspect-ratio: 1;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  background-color: #fff;
  border: 1px solid;
  margin-left: -1px;
  padding-bottom: 1px;
}
@media screen and (min-width: 768px) {
  .section-title_text {
    width: 56px;
    font-size: 40px;
    border-width: 2px;
    margin-left: -2px;
    padding-bottom: 2px;
  }
}

/* ---- ヘッダー ---- */
.site-header {
  --padding-inline: 10px;
  position: sticky;
  z-index: var(--z-site-header);
  top: 0;
  text-align: center !important;
  background-color: #fff;
  padding: 0 var(--padding-inline);
}
@media screen and (min-width: 768px) {
  .site-header {
    --padding-inline: 40px;
    max-width: calc(1286px + var(--padding-inline) * 2);
    margin: 0 auto;
  }
}

.site-header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 2px solid var(--color-secondary);
}
@media screen and (min-width: 768px) {
  .site-header_inner {
    display: block;
    border-width: 3px;
  }
}

.site-header_logo {
  display: block;
  width: 210px;
  line-height: 0;
}
.site-header_logo-img {
  width: 100%;
}

.site-header_button {
  --width: 44;
  position: relative;
  width: calc(var(--width) * 1px);
  height: 54px;
  margin-right: -10px;
}
.site-header_button-line {
  --distance: 7px;
  position: absolute;
  inset: 0;
  width: calc(24 / var(--width) * 100%);
  height: 2px;
  font-size: 0;
  background-color: var(--color-secondary);
  margin: auto;
}
.site-header_button-line::before, .site-header_button-line::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: inherit;
}
.site-header_button-line::before {
  translate: 0 calc(var(--distance) * -1);
}
.site-header_button-line::after {
  translate: 0 var(--distance);
}

.site-header_backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.85);
  visibility: hidden;
  opacity: 0;
}

/* ---- グローバルナビ ---- */
.site-nav {
  position: fixed;
  z-index: var(--z-site-nav);
  top: 0;
  right: 0;
  bottom: 0;
  display: grid;
  place-items: center;
  width: calc(260 / var(--comp-sp) * 100%);
  background-color: #fff;
  translate: 100% 0;
}
@media screen and (min-width: 768px) {
  .site-nav {
    position: static;
    width: auto;
    translate: 0;
  }
}

.site-nav_button {
  position: fixed;
  top: 10px;
  right: 0;
  width: 35px;
  min-width: 0;
  aspect-ratio: 1;
}

.site-nav_button-line {
  position: absolute;
  inset: 0;
  width: 24px;
  height: 2px;
  font-size: 0;
  background-color: var(--color-secondary);
  margin: auto;
  rotate: -30deg;
}
.site-nav_button-line::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: inherit;
  rotate: 60deg;
}

.site-nav_list {
  width: 100%;
  max-height: 100vh;
  overflow: auto;
  overscroll-behavior: contain;
  padding: 50px 0;
}
@media screen and (min-width: 768px) {
  .site-nav_list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0;
  }
}

.site-nav_link {
  --hover-opacity: 0.6;
  display: block;
  font-size: 18px;
  font-weight: 900;
  background: none !important;
  padding: 1.1em 1em;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .site-nav_link {
    font-size: clamp(14px, 18 / var(--comp-pc) * 100vw, 18px);
    padding: 1.1em 0.5em;
  }
}
.site-nav_link:focus-visible {
  opacity: var(--hover-opacity);
}
@media (any-hover: hover) {
  .site-nav_link:hover {
    opacity: var(--hover-opacity);
  }
}

/* ---- ヒーロー ---- */
.hero {
  position: relative;
}
.hero_title {
  line-height: 0;
}
.hero_img {
  width: 100%;
}
.hero_link {
  --hover-opacity: 0.6;
  position: absolute;
  right: 3%;
  bottom: 17.1%;
  width: 38.5%;
  clip-path: polygon(50% 0, 100% 24%, 100% 76%, 50% 100%, 0 76%, 0 24%);
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .hero_link {
    right: auto;
    left: 3.2%;
    bottom: 6%;
    width: 17.35%;
  }
}
.hero_link:focus-visible {
  opacity: var(--hover-opacity);
}
@media (any-hover: hover) {
  .hero_link:hover {
    opacity: var(--hover-opacity);
  }
}

.hero_badge {
  width: 100%;
}
/* ---- あらすじ ---- */
.about {
  position: relative;
  padding: 34px 0 20px;
}
@media screen and (min-width: 768px) {
  .about {
    padding: 60px 0 30px;
  }
}

.about_body {
  display: grid;
  gap: 26px;
  margin-top: 19px;
}
@media screen and (min-width: 768px) {
  .about_body {
    gap: 41px;
    margin-top: 32px;
  }
}

.about_text {
  font-weight: 700;
  line-height: 1.7 !important;
}
@media screen and (min-width: 768px) {
  .about_text {
    line-height: 1.8 !important;
    text-align: center !important;
  }
}

/* ---- 著者紹介 ---- */
.author {
  position: relative;
  padding: 19px 0 76px;
}
@media screen and (min-width: 768px) {
  .author {
    padding: 30px 0;
  }
}

.author_body {
  margin-top: 24px !important;
}
@media screen and (min-width: 768px) {
  .author_body {
    margin-top: 37px !important;
  }
}

.author_name {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3 !important;
}
@media screen and (min-width: 768px) {
  .author_name {
    font-size: 26px;
    text-align: center !important;
  }
}

.author_text {
  font-weight: 700;
  line-height: 1.7 !important;
  margin-top: 2px !important;
}
@media screen and (min-width: 768px) {
  .author_text {
    line-height: 1.8 !important;
    text-align: center !important;
    margin-top: 5px !important;
  }
}

/* ---- media ---- */
.media {
  position: relative;
  padding: 20px 0;
}
@media screen and (min-width: 768px) {
  .media {
    flex: 1;
    padding: 30px 0;
  }
}

.media_body {
  border: 1px solid #000;
  background-color: #fff;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .media_body {
    max-width: 736px;
    margin: 30px auto 0;
  }
}

.media_text-fixed {
  font-size: 15px;
  line-height: 1.5 !important;
  padding: 20px 28px 15px 16px !important;
}
@media screen and (min-width: 768px) {
  .media_text-fixed {
    padding: 24px 42px 24px 20px !important;
    font-size: 16px;
  }
}
.media_text-fixed a {
  --hover-opacity: 0.6;
  color: var(--color-secondary);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity 0.3s;
}
.media_text-fixed a:focus-visible {
  opacity: var(--hover-opacity);
}
@media (any-hover: hover) {
  .media_text-fixed a:hover {
    opacity: var(--hover-opacity);
  }
}

.media_box {
  max-height: 250px;
  overflow-y: auto;
  overscroll-behavior: contain;
}
@media screen and (min-width: 768px) {
  .media_box {
    max-height: 402px;
  }
}
.media_box::-webkit-scrollbar {
  width: 14px;
}
.media_box::-webkit-scrollbar-thumb {
  background-color: var(--color-primary);
}
.media_box::-webkit-scrollbar-track {
  background-color: #ccc;
}

.media_list {
  padding: 0 16px 10px;
}
@media screen and (min-width: 768px) {
  .media_list {
    padding: 0 20px 20px;
  }
}

.media_item {
  display: grid;
  gap: 6px;
  padding: 8px 0;
}
@media screen and (min-width: 768px) {
  .media_item {
    display: flex;
    flex-wrap: wrap;
    -moz-column-gap: 23px;
         column-gap: 23px;
    padding: 9px 0;
  }
}
.media_item:first-child {
  padding-top: 0;
}
.media_time {
  font-size: 15px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .media_time {
    min-width: 90px;
    font-size: 16px;
    align-self: start;
  }
}

.media_text {
  font-size: 15px;
  line-height: normal !important;
}
@media screen and (min-width: 768px) {
  .media_text {
    flex: 1 1 70%;
    font-size: 16px;
  }
}
.media_text a {
  --hover-opacity: 0.6;
  color: var(--color-secondary);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity 0.3s;
}
.media_text a:focus-visible {
  opacity: var(--hover-opacity);
}
@media (any-hover: hover) {
  .media_text a:hover {
    opacity: var(--hover-opacity);
  }
}

/* ---- メンバー紹介 ---- */
.member {
  position: relative;
  padding: 20px 0;
}
@media screen and (min-width: 768px) {
  .member {
    padding: 30px 0;
  }
}

.member_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 14px;
       column-gap: 14px;
  row-gap: 12px;
  margin-top: 19px;
}
@media screen and (min-width: 768px) {
  .member_list {
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    max-width: 1032px;
    margin: 30px auto 0;
  }
}

.member_button {
  --hover-opacity: 0.6;
  transition: opacity 0.3s;
  width: 100%;
}
.member_button:focus-visible {
  opacity: var(--hover-opacity);
}
@media (any-hover: hover) {
  .member_button:hover {
    opacity: var(--hover-opacity);
  }
}

.member_figure {
  position: relative;
  display: block;
  background-color: #fff;
}
.member_figure::before {
  --distance: 7px;
  --border-width: 1px;
  content: "";
  position: absolute;
  top: var(--distance);
  left: var(--distance);
  width: calc(100% - var(--distance) * 2);
  height: calc(100% - var(--distance) * 2);
  background-color: var(--color-primary);
  border-radius: 5px;
  border: var(--border-width) solid #000;
}
@media screen and (min-width: 768px) {
  .member_figure::before {
    --distance: 15px;
    --border-width: 2px;
    border-radius: 10px;
  }
}

.member_img {
  position: relative;
  z-index: var(--z-member_img);
  width: 100%;
}
.member_caption {
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 6px;
}
@media screen and (min-width: 768px) {
  .member_caption {
    font-size: 20px;
    margin-top: 9px;
  }
}

.member_job {
  display: block;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .member_job {
    font-size: 16px;
  }
}

/* ---- 相関図 ---- */
.diagram {
  position: relative;
  padding: 20px 0;
}
@media screen and (min-width: 768px) {
  .diagram {
    padding: 30px 0;
  }
}
.diagram .splide__arrow {
  position: absolute;
  z-index: var(--z-splide__arrow);
  top: 0;
  bottom: 0;
  width: min(24 / var(--comp-sp) * 100vw, 35px);
  min-width: 0;
  aspect-ratio: 1;
  background-color: var(--color-secondary);
  border-radius: 50%;
  margin: auto;
  transition-property: opacity, visibility;
  transition-duration: 0.2s;
}
.diagram .splide__arrow::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: min(8 / var(--comp-sp) * 100vw, 12px);
  height: min(14 / var(--comp-sp) * 100vw, 20px);
  background-image: url("/share/sp/ma-ya/img/ico_arrow_white.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin: auto;
}
.diagram .splide__arrow:disabled {
  opacity: 0;
  visibility: hidden;
}
.diagram .splide__arrow.splide__arrow--prev {
  right: -20px;
}
.diagram .splide__arrow.splide__arrow--prev::before {
  scale: -1 1;
  right: min(7 / var(--comp-sp) * 100vw, 10px);
}
.diagram .splide__arrow.splide__arrow--next {
  left: -20px;
}
.diagram .splide__arrow.splide__arrow--next::before {
  left: min(7 / var(--comp-sp) * 100vw, 10px);
}

.diagram_body {
  margin-top: 20px;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .diagram_body {
    max-width: 666px;
    margin: 30px auto 0;
    padding: 0;
  }
}

.diagram_img {
  width: 100%;
}
/* ---- 紹介マンガ ---- */
.comic {
  position: relative;
  padding: 17px 0 20px;
}
@media screen and (min-width: 768px) {
  .comic {
    padding: 30px 0 40px;
  }
}
.comic .splide {
  margin-top: 18px;
}
@media screen and (min-width: 768px) {
  .comic .splide {
    margin-top: 30px;
  }
}
.comic .splide__arrow {
  position: absolute;
  z-index: var(--z-splide__arrow);
  top: 0;
  bottom: 0;
  width: min(24 / var(--comp-sp) * 100vw, 35px);
  min-width: 0;
  aspect-ratio: 1;
  background-color: var(--color-secondary);
  border-radius: 50%;
  margin: auto;
  transition-property: opacity, visibility;
  transition-duration: 0.2s;
}
.comic .splide__arrow::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: min(8 / var(--comp-sp) * 100vw, 12px);
  height: min(14 / var(--comp-sp) * 100vw, 20px);
  background-image: url("/share/sp/ma-ya/img/ico_arrow_white.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin: auto;
}
.comic .splide__arrow:disabled {
  opacity: 0;
  visibility: hidden;
}
.comic .splide__arrow.splide__arrow--prev {
  right: -20px;
}
.comic .splide__arrow.splide__arrow--prev::before {
  scale: -1 1;
  right: min(7 / var(--comp-sp) * 100vw, 10px);
}
.comic .splide__arrow.splide__arrow--next {
  left: -20px;
}
.comic .splide__arrow.splide__arrow--next::before {
  left: min(7 / var(--comp-sp) * 100vw, 10px);
}

.comic_body {
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .comic_body {
    max-width: 1032px;
    margin: 0 auto;
    padding: 0;
  }
}

.comic_img {
  width: 100%;
}

.comic_text {
  font-size: 12px;
  text-align: right !important;
  line-height: normal !important;
  margin-top: 5px !important;
}
@media screen and (min-width: 768px) {
  .comic_text {
    font-size: 14px;
    margin-top: 10px !important;
  }
}

/* ---- 応援コメント ---- */
.comment {
  position: relative;
  padding: 17px 0 10px;
}
@media screen and (min-width: 768px) {
  .comment {
    padding: 20px 0 17px;
  }
}
.comment .splide {
  margin-top: 19px;
}
@media screen and (min-width: 768px) {
  .comment .splide {
    margin-top: 30px;
  }
}
.comment .splide__slide {
  background-color: #fff;
  border: 1px solid #000;
  outline: 1px solid #000;
  outline-offset: -6px;
  padding: 16px 16px 21px;
}
@media screen and (min-width: 768px) {
  .comment .splide__slide {
    padding: 20px 18px;
  }
}
.comment .splide__pagination {
  gap: 10px;
  margin-top: 14px;
}
@media screen and (min-width: 768px) {
  .comment .splide__pagination {
    margin-top: 14px;
  }
}
.comment .splide__pagination li {
  line-height: 0;
}
.comment .splide__pagination__page {
  width: 10px;
  min-width: 0;
  aspect-ratio: 1;
  background-color: #d9d9d9;
  border-radius: 50%;
}
.comment .splide__pagination__page.is-active {
  background-color: var(--color-primary);
}

.comment_name {
  font-weight: 700;
  line-height: 1.5 !important;
}
@media screen and (min-width: 768px) {
  .comment_name {
    font-size: 16px;
  }
}

.comment_position {
  font-size: 14px;
}

.comment_text {
  line-height: 1.5 !important;
  margin-top: 20px !important;
}
@media screen and (min-width: 768px) {
  .comment_text {
    font-size: 16px;
  }
}

/* ---- バナー ---- */
.banner {
  position: relative;
  padding: 16px 0;
}
@media screen and (min-width: 768px) {
  .banner {
    padding: 17px 0 30px;
  }
}

.banner_inner {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 13px;
  padding: 0 13px;
}
@media screen and (min-width: 768px) {
  .banner_inner {
    --padding-inline: 18px;
    flex-direction: row;
    gap: 24px;
    max-width: calc(1100px + var(--padding-inline) * 2);
    margin: 0 auto;
    padding: 0 var(--padding-inline);
  }
}

.banner_link {
  --hover-opacity: 0.6;
  display: block;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .banner_link {
    flex: 1;
    max-width: 538px;
  }
}
.banner_link:focus-visible {
  opacity: var(--hover-opacity);
}
@media (any-hover: hover) {
  .banner_link:hover {
    opacity: var(--hover-opacity);
  }
}

.banner_img {
  width: 100%;
}

/* ---- 書誌情報 ---- */
.book {
  position: relative;
  padding: 24px 0 117px;
}
@media screen and (min-width: 768px) {
  .book {
    padding: 30px 0 78px;
  }
}

.book_body {
  display: grid;
  gap: 24px;
  margin-top: 20px;
  padding: 0 15px;
}
@media screen and (min-width: 768px) {
  .book_body {
    gap: 30px;
    max-width: 736px;
    margin: 30px auto 0;
    padding: 0;
  }
}

.book_box {
  display: grid;
  gap: 13px;
  background-color: #fff;
  border: 1px solid #000;
  padding: 19px;
}
@media screen and (min-width: 768px) {
  .book_box {
    grid-template: "figure info" auto "figure button" auto "figure store" 1fr/200px 1fr;
    -moz-column-gap: 22px;
         column-gap: 22px;
    row-gap: 18px;
    padding: 23px;
  }
}

.book_figure {
  width: 48.5%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .book_figure {
    grid-area: figure;
    width: auto;
  }
}

.book_img {
  width: 100%;
  border: 1px solid #000;
}
@media screen and (min-width: 768px) {
  .book_info {
    grid-area: info;
  }
}

.book_name {
  font-size: 20px;
  font-weight: 700;
  line-height: normal !important;
}
@media screen and (min-width: 768px) {
  .book_name {
    font-size: 24px;
  }
}

.book_author {
  font-weight: 700;
  line-height: normal !important;
  margin-top: 2px !important;
}
@media screen and (min-width: 768px) {
  .book_author {
    font-size: 18px;
    margin-top: 6px !important;
  }
}

.book_detail {
  font-size: 15px;
  line-height: 1.5 !important;
  margin-top: 13px !important;
}
@media screen and (min-width: 768px) {
  .book_detail {
    font-size: 18px;
    margin-top: 15px !important;
  }
}

.book_button {
  --hover-opacity: 0.6;
  display: block;
  width: 100%;
  max-width: 258px;
  font-size: 15px;
  font-weight: 700;
  border: 1px solid #000;
  margin: 0 auto;
  padding: 1em 2em;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .book_button {
    grid-area: button;
    align-self: start;
    max-width: 300px;
    font-size: 16px;
    margin: 0;
    padding: 0.9em 2em;
  }
}
.book_button:focus-visible {
  opacity: var(--hover-opacity);
}
@media (any-hover: hover) {
  .book_button:hover {
    opacity: var(--hover-opacity);
  }
}
.book_button span {
  position: relative;
  padding: 0 0 2px 16px;
}
@media screen and (min-width: 768px) {
  .book_button span {
    padding-left: 17px;
  }
}
.book_button span::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 10px;
  height: 11px;
  clip-path: polygon(100% 50%, 0 0, 0 100%);
  background-color: #000;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .book_button span::before {
    width: 11px;
    height: 12px;
  }
}

.book_sns {
  --hover-opacity: 0.6;
  display: grid;
  place-items: center;
  width: 44px;
  aspect-ratio: 1;
  background-color: #000;
  border-radius: 50%;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .book_sns {
    grid-area: sns;
  }
}
.book_sns:focus-visible {
  opacity: var(--hover-opacity);
}
@media (any-hover: hover) {
  .book_sns:hover {
    opacity: var(--hover-opacity);
  }
}

.book_sns-img {
  width: 47.7272727273%;
}
.book_store {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .book_store {
    grid-area: store;
    grid-template-columns: repeat(3, 1fr);
  }
}

.book_store-link {
  --hover-opacity: 0.6;
  display: block;
  transition: opacity 0.3s;
}
.book_store-link:focus-visible {
  opacity: var(--hover-opacity);
}
@media (any-hover: hover) {
  .book_store-link:hover {
    opacity: var(--hover-opacity);
  }
}

.book_store-img {
  width: 100%;
}
/* ---- 小物 ---- */
.object {
  position: absolute;
}
.object.-desk {
  top: -64px;
  right: -97px;
  width: 118px;
}
@media screen and (min-width: 768px) {
  .object.-desk {
    top: -67px;
    right: 30px;
    width: min(316 / var(--comp-pc) * 100vw, 316px);
  }
}
.object.-card {
  top: -9px;
  left: -84px;
  width: 65px;
}
@media screen and (min-width: 768px) {
  .object.-card {
    top: min(300 / var(--comp-pc) * 100vw, 300px);
    left: min(57 / var(--comp-pc) * 100vw, 57px);
    width: min(200 / var(--comp-pc) * 100vw, 200px);
  }
}
@media screen and (min-width: 992px) {
  .object.-card {
    top: min(249 / var(--comp-pc) * 100vw, 249px);
    width: min(288 / var(--comp-pc) * 100vw, 288px);
  }
}
.object.-barrette {
  top: -2px;
  right: -61px;
  width: 49px;
}
@media screen and (min-width: 768px) {
  .object.-barrette {
    top: 14px;
    right: -141px;
    width: 89px;
  }
}
.object.-document {
  right: 22px;
  bottom: 20px;
  width: 108px;
}
@media screen and (min-width: 768px) {
  .object.-document {
    right: 51px;
    bottom: max(-20 / var(--comp-pc) * 100vw, -20px);
    width: min(254 / var(--comp-pc) * 100vw, 254px);
  }
}
.object.-case {
  z-index: var(--z-object_img-case);
  bottom: -24px;
  left: -7px;
  width: 116px;
}
@media screen and (min-width: 768px) {
  .object.-case {
    bottom: -32px;
    left: 30px;
    width: 131px;
  }
}

.object_img {
  width: 100%;
}

/* ---- バナー ---- */
.banner-bottom {
  padding: 40px 0;
}
@media screen and (min-width: 768px) {
  .banner-bottom {
    padding: 60px 0;
  }
}

.banner-bottom_inner {
  display: grid;
  gap: 20px;
  padding: 0 15px;
}
@media screen and (min-width: 768px) {
  .banner-bottom_inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0;
  }
}

.banner-bottom_link {
  --hover-opacity: 0.6;
  display: block;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .banner-bottom_link {
    flex: 1;
    max-width: 538px;
  }
}
.banner-bottom_link:focus-visible {
  opacity: var(--hover-opacity);
}
@media (any-hover: hover) {
  .banner-bottom_link:hover {
    opacity: var(--hover-opacity);
  }
}

.banner-bottom_img {
  width: 100%;
}

/* ---- モーダル ---- */
.micromodal {
  display: none;
  box-sizing: border-box;
}
.micromodal.is-open {
  display: block;
}
.micromodal * {
  box-sizing: border-box;
}

.micromodal_overlay {
  position: fixed;
  z-index: var(--z-micromodal_overlay);
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.85);
  padding: 0 45px;
  will-change: transform;
}
.micromodal[aria-hidden=false] .micromodal_overlay {
  animation: mmfadeIn 0.3s ease-out;
}
.micromodal[aria-hidden=true] .micromodal_overlay {
  animation: mmfadeOut 0.3s ease-out;
}

@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.micromodal_container {
  position: relative;
  width: 100%;
  max-width: 500px;
  will-change: transform;
}
@media screen and (min-width: 768px) {
  .micromodal_container {
    max-width: 730px;
  }
}

/* ---- モーダルコンテント ---- */
.modal-content {
  position: relative;
  max-height: calc(100vh - 110px);
  max-height: calc(100dvh - 110px);
  font-family: var(--font-family);
  background-color: #fff;
  border: 2px solid var(--color-secondary);
  overflow-y: auto;
  padding: 23px 21px;
}
@media screen and (min-width: 768px) {
  .modal-content {
    display: grid;
    grid-template: "figure name" auto "figure list" auto/auto 1fr;
    -moz-column-gap: 58px;
         column-gap: 58px;
    row-gap: 14px;
    padding: 26px 46px 30px;
  }
}

.modal-content_figure {
  line-height: 0;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .modal-content_figure {
    grid-area: figure;
    align-self: center;
  }
}
#modal-takamiya .modal-content_figure {
  max-width: 94px;
}
#modal-amae .modal-content_figure {
  max-width: 98px;
}
#modal-onga .modal-content_figure {
  max-width: 114px;
}
#modal-kuwamori .modal-content_figure {
  max-width: 104px;
}
#modal-hirai .modal-content_figure {
  max-width: 122px;
}
#modal-konishi .modal-content_figure {
  max-width: 84px;
}
#modal-nagase .modal-content_figure {
  max-width: 130px;
}
#modal-watanuki .modal-content_figure {
  max-width: 70px;
}
#modal-saotome .modal-content_figure {
  max-width: 119px;
}

.modal-content_img {
  width: 100%;
  height: auto;
}

.modal-content_name {
  color: var(--color-secondary);
  font-size: 24px;
  font-weight: 900;
  line-height: normal;
  text-align: center;
  margin-top: 14px;
}
@media screen and (min-width: 768px) {
  .modal-content_name {
    grid-area: name;
    font-size: 30px;
    text-align: left;
    margin-top: 0;
    padding-top: 2px;
  }
}

.modal-content_age {
  color: var(--color-secondary);
  font-size: 16px;
  margin-left: 5px;
}
@media screen and (min-width: 768px) {
  .modal-content_age {
    font-size: 18px;
    margin-left: 7px;
  }
}

.modal-content_list {
  display: grid;
  gap: 15px;
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .modal-content_list {
    grid-area: list;
    gap: 9px;
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .modal-content_item {
    display: grid;
    grid-template-columns: 128px 1fr;
    gap: 26px;
  }
}

.modal-content_term {
  color: var(--color-base-black);
  font-size: 15px;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .modal-content_term {
    font-size: 16px;
  }
}

.modal-content_desc {
  color: var(--color-base-black);
  font-size: 15px;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .modal-content_desc {
    font-size: 16px;
  }
}

.modal-content_close {
  position: absolute;
  top: 2px;
  right: 0;
  width: 58px;
  height: 40px;
}
@media screen and (min-width: 768px) {
  .modal-content_close {
    top: 0;
    width: 68px;
    height: 52px;
  }
}

.modal-content_close-line {
  position: absolute;
  inset: 0;
  width: 36px;
  height: 1px;
  font-size: 0;
  background-color: var(--color-secondary);
  margin: auto;
  rotate: -30deg;
}
@media screen and (min-width: 768px) {
  .modal-content_close-line {
    width: 44px;
  }
}
.modal-content_close-line::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: inherit;
  transition: inherit;
  rotate: 60deg;
}