/* -----------------------------
   modern-css-reset (by Andy Bell)
------------------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  font-family:
    "游ゴシック Medium", "Yu Gothic Medium", YuGothicM, 游ゴシック体, YuGothic,
    "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo,
    sans-serif;
  background: #e9e5e2;
}

.font-open-sans-bold {
  font-family:
    "Open Sans",
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
  font-weight: 700;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

/* UNUSED (not in index.html)
#root,
#__next {
  isolation: isolate;
}
END UNUSED */

/* -----------------------------
   header
------------------------------ */

header {
  /* position: fixed;
  top: 0; */
  width: 100%;
  z-index: 20;
}

header.is-hide {
  transform: translateY(-100%);
}
.header__drama {
  background: #f36bbd;
  color: #000;
  text-align: center;
  font-size: 1.25rem;
  padding: 10px 0;
}
@media (max-width: 768px) {
  .header__drama {
    line-height: 1;
  }
}
.header__drama-title {
  font-size: 1.125rem;
  font-weight: bold;
}
.header__drama-text {
  font-size: 0.75rem;
  font-weight: bold;
}

/* SP用ハンバーガーボタン */
.nav-toggle {
  display: none;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: auto;
    margin: 12px 5% 0 auto;
    padding: 5px;
    border: 2px solid #000;
    border-radius: 10px;
    background: #fff;
    color: #000;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: -30px;
    position: fixed;
    top: 60px;
    right: 10px;
    z-index: 1000;
  }

  .nav-toggle__icon {
    width: 20px;
    height: 14px;
    position: relative;
    display: inline-block;
  }

  .nav-toggle__icon::before,
  .nav-toggle__icon::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: #000;
    border-radius: 2px;
  }

  .nav-toggle__icon::before {
    top: 0;
    box-shadow: 0 6px 0 #000;
  }

  .nav-toggle__icon::after {
    bottom: 0;
  }
}

.globalnavi {
  display: flex;
  align-items: center;
  justify-content: center;
  /* height: 50px; */
  /* background: #a5d4ad; */
  /* width: calc(100% - 40px); */
  border-radius: 5px;
  font-size: 1rem;
  border-radius: 10px;
  position: fixed;
  top: 65px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  margin: 0;
  padding: 12px 20px;

  border-radius: 10px;
  transition: all 0.4s ease;
  width: auto;
}

.globalnavi.is-fixed {
  transition: all 0.4s ease;
  background: #a5d4ad;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  top: 15px;
}
@media (max-width: 768px) {
  /* SP: 初期は非表示、ボタンで開閉 */
  .site-nav .globalnavi {
    display: none;
    gap: 10px;
    transform: none;
    flex-direction: column;
    align-items: flex-start;
    position: static;
    top: auto;
    left: auto;
    z-index: auto;
    width: 90%;
    padding: 10px;
    background: #a5d4ad;
    border-radius: 35px;
  }

  /* aria-expanded でも開閉できるように（兄弟構造に依存） */
  .nav-toggle[aria-expanded="true"] + .site-nav .globalnavi {
    display: flex !important;
  }

  .site-nav.is-open .globalnavi {
    display: flex !important;
  }
}
.globalnavi__list {
  padding: 0 10px;
}
.globalnavi__list + .globalnavi__list {
  border-left: 1px solid #000;
}
@media (max-width: 768px) {
  .globalnavi__list {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .globalnavi__list::before {
    content: "▼";
    font-size: 0.75em;
    line-height: 1;
  }

  .globalnavi__list + .globalnavi__list {
    border-left: none;
  }
}

.globalnavi__list a {
  font-weight: bold;
  white-space: nowrap;
}

@media (min-width: 769px) {
  a.scroll-link {
    position: relative;
    display: inline-block;
  }

  a.scroll-link::after {
    content: "▼";
    position: absolute;
    left: 50%;
    bottom: -1.1em;
    transform: translate(-50%, -4px);
    opacity: 0;
    pointer-events: none;
    font-size: 0.75em;
    line-height: 1;
    transition:
      opacity 0.15s ease,
      transform 0.15s ease;
  }

  a.scroll-link:hover::after,
  a.scroll-link:focus-visible::after {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}
nav {
  z-index: 10;
}
@media (max-width: 768px) {
  nav {
    margin-top: 10px;
    width: 90%;
    background: #fff;
    margin-left: auto;
    border: none;
    border-radius: 10px;
    margin-left: 5%;
    /* display: none; */
    position: fixed;
    top: 80px;
    right: 5%;
    z-index: 100;
  }

  nav.is-open {
    border: 2px solid #000;
  }
  nav.is-open .globalnavi {
    background: #fff;
  }
}

nav a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
}

nav a:hover {
  text-decoration: underline;
}

/* -----------------------------
   main
------------------------------ */
.mainvisual {
  position: relative;
  overflow: hidden;
  padding-left: 36%;
  padding-top: 75px;
}
@media (max-width: 768px) {
  .mainvisual {
    padding-left: 0;
    padding-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

.mainvisual__container {
  position: absolute;
  top: 15%;
  left: 5%;
  height: auto;
  width: 38%;
  z-index: 1000;
  opacity: 0;
  filter: blur(10px);
  animation: mainvisualFadeIn 0.8s ease forwards;
  animation-delay: 0.75s;
}

@media (max-width: 768px) {
  .mainvisual__container {
    position: static;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 1000;
    order: 3;
  }
  .mainvisual__logo {
    right: -3%;
    height: 85%;
    top: 7%;
  }
}

@keyframes logoFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mainvisual__logo-image {
  width: auto;
  height: 100%;
  display: block;
}
@media (max-width: 768px) {
  .mainvisual__logo-image {
    width: 80%;
    height: auto;
    margin: 0 auto;
    text-align: center;
  }
}
.mainvisual__image img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0;
  filter: blur(10px);
  animation: mainvisualFadeIn 0.8s ease forwards 0.25s;
}

@keyframes mainvisualFadeIn {
  to {
    opacity: 1;
    filter: blur(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .mainvisual__image img {
    animation: none;
    opacity: 1;
    filter: none;
  }

  .mainvisual__container,
  .mainvisual__drama-text {
    animation: none;
    opacity: 1;
    filter: none;
  }
}

.mainvisual__image picture {
  display: block;
  width: 100%;
}

.mainvisual__name {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-top: 10%;
}
@media (max-width: 768px) {
  .mainvisual__name {
    font-size: 1.5rem;
    margin-top: 2.5%;
  }
}
.mainvisual__illustration-name {
  font-size: 0.875rem;
  text-align: right;
  padding-right: 20px;
  z-index: 10;
}

@media (max-width: 768px) {
  .mainvisual__illustration-name {
    width: 100%;
    padding: 0 10px 10px 10px;
    text-align: right;
  }
}
.mainvisual__subtitle-container {
  text-align: center;
  margin: 20px auto 0;
  padding: 0 10px 2.55%;
}

.mainvisual__subtitle {
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.2;

  /* 文字の下1/4程度だけ背景色を入れる（下線風） */
  display: inline;
  padding: 0 0.12em 0.06em;
  background-image: linear-gradient(to bottom, transparent 75%, #a5d4ad 0);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

@media (max-width: 768px) {
  .mainvisual__subtitle {
    font-size: 1.4rem;
  }
}
.mainvisual__drama-text {
  position: absolute;
  top: 60px;
  right: 8%;
  width: 10%;
  height: auto;
  z-index: 10;
  opacity: 0;
  filter: blur(10px);
  animation: mainvisualFadeIn 0.8s ease forwards;
  animation-delay: 1s;
}

.mainvisual__drama-text img {
  display: block;
  width: auto;
  height: auto;
}
@media (max-width: 768px) {
  .mainvisual__drama-text {
    position: static;
    top: 0;
    left: 0;
    width: 70%;
    height: auto;
    margin: 0 auto;
    text-align: center;
    padding: 20px 0;
  }
  .mainvisual__drama-text img {
    display: block;
    width: 80%;
    height: auto;
    margin: 0 auto;
    text-align: center;
  }
}
.content {
  background: url(/design_items/pc/img/musholin/il02.png) no-repeat center top
    #fff;
  background-size: cover;

  padding: 40px 0;
  overflow-y: auto;
}
@media (max-width: 768px) {
  .content {
    padding: 20px 0 0;
  }
}
.content__inner {
  width: 900px;
  padding: 0 20px;
  margin: 0 auto 40px;
}
@media (max-width: 768px) {
  .content__inner {
    width: 100%;
    padding: 0 10px;
  }
}
.content__paragraph {
  text-align: left;
  font-size: 1.5rem;
  line-height: 2.4;
  margin-bottom: 40px;
  background: url(/design_items/pc/img/musholin/il01.png) no-repeat right top;
  background-size: 250px;
}
@media (max-width: 768px) {
  .content__paragraph {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    background-image: none;
  }
}
.content__paragraph-bold {
  font-weight: bold;
}
/* UNUSED (not in index.html)
.content__image {
  margin: 0 auto 80px;
}
@media (max-width: 768px) {
  .content__image {
    margin: 0 auto 40px;
  }
}
END UNUSED */
.content__person-list {
  border: 3px solid #a5d4ad;
  background: #fff;
  padding: 20px;
}
.content__person-paragraph {
  border-bottom: 2px solid #a5d4ad;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.content__person-list + .content__person-list {
  margin-top: 20px;
}
.content__person-paragraph {
  font-size: 1.25rem;
}
@media (max-width: 768px) {
  .content__person-paragraph {
    font-size: 1rem;
  }
}
.content__person-name {
  font-size: 1.25rem;
  font-weight: bold;
}
.content__person-name-sub {
  font-size: 0.75rem;
  font-weight: normal;
}
/* -----------------------------
   heading
------------------------------ */

.heading__il-block {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 0 20px 20px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .heading__il-block {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
}

.heading__il-block.column {
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  /* recipe見出し（il04 → h3 の順、il03は非表示） */
  .recipe .heading__il-block {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .recipe .heading__il-block > img:first-of-type {
    display: none;
  }

  .recipe .heading__il-block > img:last-of-type {
    order: 0;
  }

  .recipe .heading__il-block > .heading__sub {
    order: 1;
  }
}

/* -----------------------------
   slider (Splide)
------------------------------ */
.slider {
  display: flex;
  padding: 0 20px 0 0;
  background: #fff;
}
@media (max-width: 768px) {
  .slider {
    padding: 0 10px 0 0;
    flex-direction: column;
  }
}
.slider__splide.splide {
  max-width: 75%;
  padding: 20px 20px 20px 0;
  background: #efefef;
}

/* Splide本体（ドラッグできる箇所）を手カーソルに */
#book-slider .splide__track {
  cursor: grab;
}

#book-slider .splide__track:active {
  cursor: grabbing;
}
.splide__list {
  padding: 20px;
}

.slider__splide.splide .splide__slide img {
  max-width: 450px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.slider__splide.splide .splide__slide img:hover {
  border: 2px solid #ddd;
  max-width: 450px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.splide__slide.is-active.is-visible img {
  border: 2px solid #666;
}
.splide__slide.is-active.is-visible {
}

.slider__pagination {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 25%;
  border: 2px solid #000;
  background: #fff;
  margin-left: 20px;
  padding: 20px;
  text-align: center;
  order: 2;
}
@media (max-width: 768px) {
  .slider__pagination {
    order: 1;
    width: 100%;
    margin-left: 0;
    border: none;
  }
  .slider__pagination .heading__sub {
    border: 1px solid #000;
    display: inline-block;
    width: auto;
    padding: 10px;
  }
}
.slider__pagination-image {
  text-align: center;
  width: 100%;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .slider__pagination-image {
    display: none;
  }
}
.slider__pagination-image img {
  width: 60%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Splideのデフォルト矢印は absolute 配置なので、
   右側のカスタム枠内では通常フローに戻して表示する */
.slider__pagination-number {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.slider__pagination-number .splide__arrow {
  position: static;
  transform: none;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.15s ease;
}

.slider__pagination-number .splide__arrow:hover,
.slider__pagination-number .splide__arrow:focus-visible {
  transform: scale(1.15);
}

.slider__pagination-number .splide__arrow svg {
  width: 40px;
  height: 40px;
  color: #000;
}

.slider__pagination-number .splide__arrow--prev svg {
  transform: scaleX(-1);
}

/* book slider: 最後のスライドだけ左余白 */
#book-slider .splide__slide:last-child {
  padding-left: 20px;
}
@media (max-width: 768px) {
  .slider__splide.splide {
    max-width: 100%;
  }
  .slider__splide.splide .splide__slide img {
    width: 80vw;
    max-width: 420px;
  }
  .slider__splide {
    order: 2;
  }
}

.slider__page-count {
  color: #666;
  font-size: 2rem;
}

.slider__page-count-large {
  font-size: 2.6rem;
  color: #000;
  font-weight: bold;
}
/* -----------------------------
   recipe
------------------------------ */
.recipe {
  background: #fff;
  padding: 20px 0 40px;
}
.recipe__list {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding-bottom: 40px;
  padding: 20px;
}

/* recipe slider (SPのみSplideで有効化) */
#recipe-slider {
  position: relative;
  visibility: visible; /* Splideの初期CSS(visibility:hidden)対策 */
}

#recipe-slider .recipe__arrows {
  display: none;
}
.recipe__item img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.recipe__item .recipe__memo img {
  margin: 0;
}
@media (max-width: 768px) {
  /* SPでは1枚ずつ */
  #recipe-slider .recipe__arrows {
    display: block;
  }

  #recipe-slider .splide__track {
    overflow: hidden;
  }

  /* Splideが付けるtransformと干渉しないよう、ここではgap/paddingを外す */
  #recipe-slider.is-initialized .recipe__list {
    gap: 0;
    padding: 0;
    padding-bottom: 0;
  }

  #recipe-slider.is-initialized .recipe__item {
    flex: none;
    width: auto;
  }

  #recipe-slider .splide__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #000;
    background: #fff;
    color: #000;
    font-size: 14px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: transform 0.15s ease;
  }

  #recipe-slider .splide__arrow:hover,
  #recipe-slider .splide__arrow:focus-visible {
    transform: translateY(-50%) scale(1.15);
  }

  #recipe-slider .splide__arrow--prev {
    left: -15px;
  }

  #recipe-slider .splide__arrow--next {
    right: -15px;
  }
}

@media (min-width: 769px) {
  /* PCに戻した時にSplideの残り影響で崩れないように明示的に戻す */
  #recipe-slider .splide__track {
    overflow: visible;
  }

  #recipe-slider .recipe__list {
    display: flex;
  }
}
.recipe__inner {
  max-width: 900px;
  padding: 0 20px;
  margin: 0 auto;
}
.recipe__item {
  padding: 20px;
  border-radius: 10px;
  flex: 0 0 calc((100% - 40px) / 3); /* gap(20px)*2 を引いて3等分 */
  min-width: 0;
}
.recipe__item:nth-child(1) {
  background-color: rgba(230, 225, 184, 0.4); /* #e6e1b8 at 40% */
}

.recipe__item:nth-child(2) {
  background-color: rgba(227, 193, 168, 0.4); /* #e3c1a8 at 40% */
}

.recipe__item:nth-child(3) {
  background-color: rgba(224, 183, 198, 0.4); /* #e0b7c6 at 40% */
}

.recipe__item-text {
  text-align: left;
  margin-top: 12px;
  line-height: 1.8;
  display: none; /* 初期状態は閉じる */
}

.recipe__item-text.is-open {
  display: block;
}

.recipe__toggle {
  background: #fff;
  border: 3px solid #000;
  color: #000;
  font-weight: bold;
  padding: 5px 12px;
  width: 100%;
  margin: 12px auto 0;
  cursor: pointer;
  display: block;

  border-radius: 50px;
  transition: background-color 0.15s ease;
}

.recipe__toggle[aria-expanded="true"] {
  background-color: transparent;
}

.recipe__toggle:hover,
.recipe__toggle:focus-visible {
  background: #000;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.recipe__toggle:focus-visible {
  outline: 3px solid #000;
  outline-offset: 3px;
}

.recipe__item-text-heading {
  margin-top: 10px;
  font-weight: bold;
}
.recipe__item-title {
  font-size: 1.25rem;
  margin-top: 10px;
}

.recipe__ingredients-group {
  margin-top: 10px;
  font-weight: bold;
}

.recipe__ingredients {
  margin: 6px 0 10px;
}

.recipe__ingredient {
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 16px;
  align-items: baseline;
  padding: 0 0 0 20px;
}

.recipe__ingredient-amount {
  justify-self: end;
  white-space: nowrap;
}

/* resetで消えている番号をレシピだけ復活させる */
.recipe__steps {
  padding-left: 1.4em;
  margin: 6px 0 0;
}

.recipe__steps li {
  list-style: decimal; /* reset の li { list-style: none; } を上書き */
  margin: 4px 0;
}

.recipe__memo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-weight: bold;
}

.recipe__memo-icon {
  width: 1.2em;
  height: 1.2em;
  flex: 0 0 auto;
}

.recipe__memo {
  border-bottom: 1px solid #000;
  margin-bottom: 10px;
}

.recipe__item-text .recipe__memo {
  width: 100%;
  justify-content: flex-start;
  text-align: left;
}

@media (max-width: 768px) {
  .manga__all {
    width: 90%;
    margin: 0 auto;
  }
}

.author {
  background: #fff;
  padding: 20px;
}

.author__block {
  display: grid;
  grid-template-columns: minmax(240px, 300px) 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
  align-items: stretch;
}

.author__left,
.author__right {
  min-width: 0;
}

.author__left {
  display: flex;
}

.author__box--left {
  flex: 1;
}

.author__right {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}

.author__box {
  background: #fff;
  min-height: 180px;
}

.author__box--left img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .author__block {
    grid-template-columns: 1fr;
  }
  .author__box--left {
    width: 60%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    margin: 0 auto;
    min-height: 0;
    flex: none;
    border-radius: 10px;
  }
  .author__box--left img {
    width: 100%;
    height: 100%;
    display: block;
    object-position: top center;
  }
}

.author__box.author__box--right-top {
  background: #fffee6;
  padding: 20px;
}
.author__box.author__box--right-bottom {
  padding: 20px;
}

.author__box-name {
  font-weight: bold;
  font-size: 1.25rem;
}

/* book */
#Books {
  background: #fff;
  padding: 40px 20px;
}
.books_image {
  text-align: center;
}
.books_image img {
  width: 100%;
  height: auto;
}
.books_inner {
  background-image: url("/design_items/pc/img/musholin/il08.png");
  background-position: 95% 95%;
  background-repeat: no-repeat;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  border: 2px solid #000;
  display: flex;
  gap: 20px;
}

@media (max-width: 768px) {
  .books_inner {
    flex-direction: column;
    padding-bottom: 70%;
    background-position: 98% 98%;
  }
}
.books_text-title {
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: bold;
  line-height: 1.2;
}

.books_text-title-sub {
  font-size: 1rem;
  margin-bottom: 10px;
}

a.books_text-button {
  display: inline-block;
  background: #c4452f;
  color: #fff;
  width: auto;
  text-align: center;
  margin-top: 20px;
  border-radius: 50px;
  text-decoration: none;
  padding: 5px 15px;
}
a.books_text-button:hover {
  background: #000;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.books_text-author {
  background: #fff;
}

#Comics {
  background: #fff;
  padding: 40px 20px;
}
.comics_inner {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px 40px 40px;
  z-index: 0;
  text-align: center;
}
.comics_inner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 90%;
  background: #efefef;
  z-index: -1;
}
@media (max-width: 768px) {
  .comics_inner {
    padding: 0 10px 10px 10px;
  }
}

.comics_photo {
  text-align: center;
  margin-bottom: 20px;
}
.comics_photo img {
  margin: 0 auto;
}

@media (max-width: 768px) {
  .comics_photo {
    width: 100%;
  }
}
.comics_text-title {
  font-weight: bold;
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .comics_text-title {
    font-size: 1.25rem;
  }
}
.comics_text-subtitle {
  font-size: 1rem;
  margin-top: 10px;
  font-weight: bold;
}

#Drama {
  background: #fff;
  border-bottom: 1px solid #efefef;
  padding: 20px 0 60px;
}

.drama-text {
  text-align: center;
  font-weight: bold;
  font-size: 1.5rem;
  margin-top: 20px;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #666;
  padding: 10px 20px;
}
/* UNUSED (not in index.html)
.manga__list {
  opacity: 0;
  transform: translateY(50px);
  animation: logoFadeUp 0.6s ease-out forwards;
  animation-delay: 0.5s;
}

.manga__list img {
  margin: 0 auto 20px;
}

.book {
  text-align: center;
  padding-top: 60px;
}
.book__text {
  text-align: left;
  flex: 1;
  min-width: 0;
}
.book__detail {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 960px;
  margin: 0 auto 80px;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .book__detail {
    flex-flow: column;
    width: 100%;
    padding: 20px;
    margin-bottom: 0;
  }
}
.book__detail-title {
  color: #bf2733;
  font-size: 3rem;
}
@media screen and (max-width: 768px) {
  .book__detail-title {
    font-size: 2rem;
  }
}
.book__detail-name {
  font-size: 1.5rem;
  font-weight: bold;
  padding: 20px 0;
}
.book__detail-text {
  font-size: 1.125rem;
}
.book__button {
  max-width: 325px;
  height: 75px;
  border-radius: 50px;
  background: #bf2733;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px auto;
  font-weight: bold;
  font-size: 1.25rem;
}

.book__photo {
  max-width: 300px;
}
@media screen and (max-width: 768px) {
  .book__photo {
    margin: auto;
  }
}
END UNUSED */

/* UNUSED (not in index.html)
.profile,
.pre {
  width: 645px;
  margin: 0 auto;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .profile,
  .pre {
    width: 100%;
    padding: 0 20px;
  }
}

.profile__heading {
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  border-top: 4px solid #bf2733;
  border-bottom: 4px solid #bf2733;
  padding: 5px 0;
  margin-bottom: 40px;
}

.profile__name {
  text-align: left;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.profile__text {
  text-align: left;
  font-size: 1.25rem;
  margin-bottom: 40px;
}

.profile__message {
  margin-bottom: 40px;
}

.pre__icon {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: bold;
  border: 4px solid #000;
  margin-bottom: 10px;
  padding: 7px;
  line-height: 1;
  margin-bottom: 20px;
}

.pre__title {
  font-size: 2.125rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .pre__title {
    font-size: 1.5rem;
  }
}

.pre__attention {
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.pre__images {
  margin-bottom: 80px;
}
END UNUSED */

/* UNUSED (not in index.html)
.reviews {
  background: url("/design_items/pc/img/fukushu/mainbg.jpg");
  text-align: center;
  padding: 80px 0 40px;
}

.reviews__heading {
  max-width: 760px;
  margin: 0 auto 40px;
  display: inline-block;
}

.reviews__all {
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
  width: 1000px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .reviews__all {
    width: 100%;
    padding: 0 20px;
  }
}

.reviews__list {
  width: 49%;
  margin-bottom: 16px;
  padding: 10px;
  background: #000;
  border: solid 2px #d4207c;
  color: #fff;
  text-align: left;
  font-size: 1rem;
  display: none;
}

@media screen and (max-width: 768px) {
  .reviews__list {
    width: 100%;
  }
}

最初の要素だけ幅100%にする
.reviews__list:first-child {
  width: 100%;
  font-size: 1.25rem;
}

.reviews__list.visible {
  display: list-item;
}

.reviews__text .large {
  font-size: 140%;
}

.reviews__name {
  margin-top: 20px;
  text-align: right;
}

.reviews__name .large {
  font-size: 140%;
}

.reviews__button {
  width: 325px;
  height: 75px;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px auto;
  font-weight: bold;
  font-size: 1.25rem;
  background: #d4207c;
  color: #fff;
  cursor: pointer;
}

.reviews__button:hover {
  text-decoration: underline;
}
END UNUSED */

footer {
  background: #fff;
  text-align: center;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

footer p {
  margin-bottom: 20px;
  font-size: 0.8rem;
}
footer a {
  text-align: center;
}
footer img {
  margin: 0 auto;
}

/*******************************
共通
*******************************/

/* -----------------------------
   見出し
------------------------------ */
.heading__sub {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  padding: 0 10px 20px;
  padding-bottom: 20px;
}
/* UNUSED (not in index.html)
.heading__dot {
  color: #fff;
  font-size: 3.25rem;
  padding: 60px 0 100px;
  position: relative;
  z-index: 0;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}

.heading__dot:before {
  content: "";
  display: inline-block;
  width: 20%;
  padding-top: 12.5%;
  background: url(/design_items/pc/img/fukushu/dot.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 12%;
  left: 5%;
  right: 0;
  margin: auto;
  z-index: -1;
  opacity: 0;
  transition: all 0.3s;
}
.heading__dot.is-show:before {
  opacity: 1;
  transition: all 0.3s;
}

@media (max-width: 768px) {
  .heading__dot {
    font-size: 2rem;
    padding: 30px 0 50px;
  }
  .heading__dot:before {
    top: 15%;
    width: 30%;
    padding-top: 17%;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
END UNUSED */

.sp-only,
.pc-only {
  display: none;
}

/* スマホ（768px以下）のとき表示するクラス */
@media (max-width: 768px) {
  .sp-only {
    display: block;
  }
}

/* PC（769px以上）のとき表示するクラス */
@media (min-width: 769px) {
  .pc-only {
    display: block;
  }
}
