@charset "UTF-8";
/* ================================
  　フォントの設定方法
    step1:サイトで使うフォントをすべて洗い出し、Google Fontsにアクセスして"Get font"
    step2:"Get font"したhtmlのコードをheadに貼る
    step3:"Get font"したcssのコードを_variables.scss(このファイル)に貼り、変数名を付ける
    step4:デフォルト以外のフォントを使いたい場面では定義した変数名を呼び出す
   ================================ */
.nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 255px;
  padding: 15px 0;
  font-family:
    "Noto Sans JP",
    sans-serif,
    -apple-system,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  border-top: 1px dashed black;
}
.nav-link:last-child {
  border-bottom: 1px dashed black;
}
.nav-link__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 14px;
}
.nav-link__icon svg,
.nav-link__deco svg {
  display: block;
}
.nav-link__icon svg {
  width: 24px;
  height: 24px;
}
.nav-link__deco svg {
  width: 14px;
  height: 14px;
}
.nav-link:hover {
  text-decoration: none;
}

.button {
  position: relative;
  display: block;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 24px;
  background: #fff;
  color: #1391e6;
  font-weight: 500;
  line-height: 1.5;
  border-style: solid;
  border: 1px solid #1391e6;
  padding: 10px 45px;
  font-size: 14px;
}
.button::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: url("../../images/front/arrow-hover.png") no-repeat center
    center/contain;
  -webkit-transition: right 0.6s;
  transition: right 0.6s;
}
.button:hover {
  background: #1391e6;
  color: #fff;
  text-decoration: none;
}
.button:hover::after {
  background: url("../../images/front/arrow-hover-trans.png") no-repeat center
    center/contain;
  right: 6px;
}

/* =====================================
    トップに戻るボタン

===================================== */
.pagetop {
  position: fixed;
  right: 10px;
  bottom: 140px;
  z-index: 59;
  width: 52px;
  height: 52px;
  opacity: 0.8;
}
.pagetop img {
  width: 100%;
}
.pagetop {
  opacity: 1;
  visibility: hidden;
  -webkit-transition:
    opacity 0.3s,
    visibility 0.3s;
  transition:
    opacity 0.3s,
    visibility 0.3s;
}
.pagetop.is-show {
  opacity: 1;
  visibility: visible;
}
@media screen and (min-width: 768px) {
  .pagetop {
    right: 20px;
    bottom: 40px;
  }
}

/* =====================================
    タイトル（英語・日本語セット）

===================================== */
.title--type1 .title-en {
  color: #1391e6;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
@media screen and (min-width: 768px) {
  .title--type1 .title-en {
    margin-bottom: 24px;
  }
}
.title--type1 .title-jp {
  color: #393939;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1.6px;
}
@media screen and (min-width: 768px) {
  .title--type1 .title-jp {
    font-size: 28px;
    letter-spacing: 2.24px;
  }
}

/* =====================================
    タイトル（日本語＋左右装飾）

===================================== */
.section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 14px;
  gap: 16px;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .section-title {
    padding-inline: 95px;
    font-size: 28px;
    letter-spacing: 2.24px;
    margin-bottom: 60px;
  }
}
.section-title .section-title__line {
  width: 60px;
  height: 6px;
  background: radial-gradient(circle, #1391e6 2px, transparent 3px) repeat-x;
  background-size: 12px 6px;
}

.tag {
  display: block;
  color: #fff;
  border-radius: 999px;
  background: #1391e6;
  padding: 2px 8px;
  font-size: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.tag.tag--love {
  background: #b58c91;
}
.tag.tag--human {
  background: #7d8b8c;
}
.tag.tag--history {
  background: #8c715b;
}
.tag.tag--comedy {
  background: #a8a07e;
}
.tag.tag--suspense {
  background: #5a5a5a;
}
.tag.tag--action {
  background: #4f6f7f;
}
.tag.tag--fantasy {
  background: #6c2562;
}
.genre-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 6px;
}

.sub-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag--sub {
  background: #f3f5f7;
  color: #555;
  border: 1px solid #d8dee5;
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 12px;
  line-height: 1.4;
}

/* =====================================
    breadcrumb

===================================== */
.breadcrumb-inner {
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .breadcrumb-inner {
    max-width: 1280px;
    padding-inline: 60px;
    margin-inline: auto;
  }
}

.breadcrumb {
  margin-bottom: 32px;
  font-size: 12px;
  color: #888888;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
@media screen and (min-width: 768px) {
  .breadcrumb {
    margin-bottom: 80px;
  }
}
.breadcrumb ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.breadcrumb li[aria-current="page"] {
  color: #393939;
}

.breadcrumb li + li::before {
  content: ">";
  margin: 0 8px;
}

/* =====================================
    main-body--two-columns
    （サイドバー付の時の本文レイアウト）

===================================== */
.main-body.main-body--two-columns {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .main-body.main-body--two-columns {
    padding-bottom: 160px;
    max-width: 1080px;
    padding-inline: 40px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    gap: 30px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.section--article {
  padding-bottom: 0;
}

.section--two-columns {
  padding-bottom: 0;
}

/* =====================================
    pagination
    数字
===================================== */
.pagination .pagination__list {
  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;
  gap: 10px;
}

.pagination .pagination__item {
  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;
  width: 30px;
  height: 30px;
  border-radius: 4px;
  border: 1px solid #1391e6;
  color: #1391e6;
  font-size: 12px;
}

@media screen and (min-width: 768px) {
  .pagination .pagination__item {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}

.pagination .pagination__item.is-current {
  color: #fff;
  background: #1391e6;
}

.pagination .pagination__item--prev,
.pagination .pagination__item--next {
  width: 71px;
  color: #fff;
  background: #1391e6;
  font-size: 11px;
}

@media screen and (min-width: 768px) {
  .pagination .pagination__item--prev,
  .pagination .pagination__item--next {
    width: 82px;
    font-size: 14px;
  }
}

.pagination .pagination__item--prev a,
.pagination .pagination__item--next a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
}

@media screen and (min-width: 768px) {
  .pagination .pagination__item--prev a,
  .pagination .pagination__item--next a {
    gap: 10px;
    font-size: 14px;
  }
}

.pagination .pagination__item--prev a .pagination__icon,
.pagination .pagination__item--next a .pagination__icon {
  display: block;
  width: 14px;
  height: 14px;
}

@media screen and (min-width: 768px) {
  .pagination .pagination__item--prev a .pagination__icon,
  .pagination .pagination__item--next a .pagination__icon {
    width: 16px;
    height: 16px;
  }
}

.pagination .pagination__item--prev a .pagination__icon svg,
.pagination .pagination__item--next a .pagination__icon svg {
  width: 100%;
  height: 100%;
}

/* =====================================
    pagination
    記事一覧（注意：「数字」ページネーションの上書き）
===================================== */
.pagination--article .pagination__item {
  width: 76px;
  height: 36px;
  font-size: 12px;
}

@media screen and (min-width: 768px) {
  .pagination--article .pagination__item {
    width: 84px;
    height: 36px;
    font-size: 14px;
  }
}

.pagination--article .pagination__item--prev,
.pagination--article .pagination__item--next {
  width: 114px;
  font-size: 12px;
}

@media screen and (min-width: 768px) {
  .pagination--article .pagination__item--prev,
  .pagination--article .pagination__item--next {
    width: 124px;
    font-size: 14px;
  }
}

/* 記事ページネーションの前後ボタン本体
   a と disabled span の両方に同じ見た目を当てる */
.pagination--article .pagination__item--prev a,
.pagination--article .pagination__item--next a,
.pagination--article .pagination__item--prev .pagination__link--disabled,
.pagination--article .pagination__item--next .pagination__link--disabled {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 768px) {
  .pagination--article .pagination__item--prev a,
  .pagination--article .pagination__item--next a,
  .pagination--article .pagination__item--prev .pagination__link--disabled,
  .pagination--article .pagination__item--next .pagination__link--disabled {
    gap: 10px;
    font-size: 14px;
  }
}

/* 記事ページネーションのアイコン */
.pagination--article .pagination__item--prev .pagination__icon,
.pagination--article .pagination__item--next .pagination__icon {
  display: block;
  width: 14px;
  height: 14px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media screen and (min-width: 768px) {
  .pagination--article .pagination__item--prev .pagination__icon,
  .pagination--article .pagination__item--next .pagination__icon {
    width: 16px;
    height: 16px;
  }
}

.pagination--article .pagination__item--prev .pagination__icon svg,
.pagination--article .pagination__item--next .pagination__icon svg {
  width: 100%;
  height: 100%;
}

/* 無効時の見た目 */
.pagination--article .pagination__link--disabled {
  opacity: 0.4;
  pointer-events: none;
}
/* =====================================
  記事の見出し・本文・リスト


===================================== */
.article__header {
  margin-bottom: 40px;
}
.article__header h1 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1.6px;
  margin-bottom: 10px;
}
.article__header .post-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
}
.article__header .post-meta .post-meta__main {
  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;
  gap: 6px;
  color: #1391e6;
}
.article__header .post-meta .post-meta__icon {
  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;
  width: 14px;
  height: 14px;
}
.article__header .post-meta .post-meta__icon svg {
  width: 100%;
  height: 100%;
}
.article__header .post-meta .post-meta__tag {
  color: #fff;
  font-size: 11px;
  line-height: 1.5;
  border-radius: 999px;
  background: #1391e6;
  padding: 6px 12px;
}

.article__body {
  margin-bottom: 40px;
}
.article__body h2,
.article__body h3,
.article__body h4 {
  color: #1391e6;
  font-weight: 700;
  margin-bottom: 14px;
}
.article__body h2 {
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 1.44px;
  border-left: 6px solid #1391e6;
  padding-left: 16px;
}
.article__body h3 {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 1.28px;
  border-bottom: 1px solid #1391e6;
  padding-bottom: 4px;
}
.article__body h4 {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 1.12px;
}
.article__body p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 28px;
}
.article__body p:has(+ p),
.article__body p:has(+ ul),
.article__body p:has(+ ol) {
  margin-bottom: 14px;
}
.article__body ul,
.article__body ol {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 28px;
}
.article__body ul:has(+ p),
.article__body ul:has(+ ul),
.article__body ul:has(+ ol),
.article__body ol:has(+ p),
.article__body ol:has(+ ul),
.article__body ol:has(+ ol) {
  margin-bottom: 14px;
}
.article__body ul {
  list-style: disc;
  padding-left: 1.5em;
}
.article__body ol {
  list-style: decimal;
  padding-left: 1.5em;
}
.article__body a {
  color: #1391e6;
  font-size: 14px;
  line-height: 1.7;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

@media screen and (min-width: 768px) {
  .article__header {
    margin-bottom: 40px;
  }
  .article__header h1 {
    font-size: 28px;
    letter-spacing: 2.24px;
  }
  .article__body {
    margin-bottom: 72px;
  }
  .article__body h2 {
    font-size: 24px;
    letter-spacing: 1.92px;
  }
  .article__body h3 {
    font-size: 20px;
    letter-spacing: 1.6px;
  }
  .article__body h4 {
    font-size: 16px;
    letter-spacing: 1.28px;
  }
}
:root {
  --falling-image: url("../images/common/season/sakura.png");
}

.season--spring {
  --falling-image: url("../images/common/season/sakura.png");
}

.season--autumn {
  --falling-image: url("../images/common/season/kaede.png");
}

.sakura {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* クリックを邪魔しない */
  overflow: hidden;
  z-index: -1; /* 背景扱いにする場合 */
}

.sakura span {
  position: absolute;
  top: -50px;
  width: 30px;
  height: 30px;
  background-image: var(--site-falling-image);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-animation-name: fall;
  animation-name: fall;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  opacity: 0.8;
  will-change: transform;
}

/* それぞれ位置・スピード・揺れを変える */
.sakura span:nth-child(1) {
  left: 5%;
  -webkit-animation-duration: 8s;
  animation-duration: 8s;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.sakura span:nth-child(2) {
  left: 15%;
  -webkit-animation-duration: 10s;
  animation-duration: 10s;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.sakura span:nth-child(3) {
  left: 25%;
  -webkit-animation-duration: 9s;
  animation-duration: 9s;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.sakura span:nth-child(4) {
  left: 35%;
  -webkit-animation-duration: 11s;
  animation-duration: 11s;
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.sakura span:nth-child(5) {
  left: 45%;
  -webkit-animation-duration: 12s;
  animation-duration: 12s;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.sakura span:nth-child(6) {
  left: 55%;
  -webkit-animation-duration: 10s;
  animation-duration: 10s;
  -webkit-animation-delay: 2.5s;
  animation-delay: 2.5s;
}

.sakura span:nth-child(7) {
  left: 65%;
  -webkit-animation-duration: 9s;
  animation-duration: 9s;
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

.sakura span:nth-child(8) {
  left: 75%;
  -webkit-animation-duration: 11s;
  animation-duration: 11s;
  -webkit-animation-delay: 3.2s;
  animation-delay: 3.2s;
}

.sakura span:nth-child(9) {
  left: 85%;
  -webkit-animation-duration: 12s;
  animation-duration: 12s;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.sakura span:nth-child(10) {
  left: 95%;
  -webkit-animation-duration: 10s;
  animation-duration: 10s;
  -webkit-animation-delay: 2.8s;
  animation-delay: 2.8s;
}

/* 花びら落下アニメーション */
@-webkit-keyframes fall {
  0% {
    -webkit-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(100vh) rotate(360deg) translateX(20px);
    transform: translateY(100vh) rotate(360deg) translateX(20px);
    opacity: 0;
  }
}
@keyframes fall {
  0% {
    -webkit-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(100vh) rotate(360deg) translateX(20px);
    transform: translateY(100vh) rotate(360deg) translateX(20px);
    opacity: 0;
  }
}
/* ----------------------
   fvのimgをbgとして使う型
---------------------- */
.fv-page {
  margin-bottom: 12px;
}

.fv-page .inner {
  padding-top: 20px;
}

@media screen and (min-width: 768px) {
  .fv-page .inner {
    padding-inline: 60px;
    padding-top: 40px;
  }
}

.fv-page .fv__bg {
  position: relative;
  height: 320px;
  border-radius: 16px;
  overflow: hidden;
}

.fv-page .fv__bg picture,
.fv-page .fv__bg img {
  display: block;
  width: 100%;
  height: 100%;
}

.fv-page .fv__bg img {
  object-fit: cover;
  object-position: center center;
}

.fv-page .fv__bg::after {
  position: absolute;
  content: "";
  z-index: 1;
  inset: 0;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.fv-page .fv__head {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  padding: 12px 20px;
  width: max-content;
  max-width: calc(100% - 40px);
}

.fv-page .fv__head .fv__title-jp {
  color: #fff;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 4.8px;
  margin-bottom: 14px;
}

.fv-page .fv__head .fv__title-en {
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

@media screen and (min-width: 768px) {
  .fv-page .fv__head .fv__title-jp {
    font-size: 32px;
    letter-spacing: 3.2px;
    margin-bottom: 17px;
  }

  .fv-page .fv__head .fv__title-en {
    font-size: 14px;
    letter-spacing: 1.4px;
  }
}

@media screen and (max-width: 767px) {
  .fv-page .fv__bg {
    height: 220px;
  }

  .fv-page .fv__head {
    background: none;
    padding: 0;
    width: auto;
    max-width: calc(100% - 32px);
  }

  .fv-page .fv__head .fv__title-jp {
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
  }

  .fv-page .fv__head .fv__title-en {
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
  }
}
/* ================================
   Header Layout
   ================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 65;
  margin: 0 auto;
  color: #fff;
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  /* Header Background Layer */
}
.site-header .header__bg {
  position: absolute;
  inset: 0;
  background: #fff;
  z-index: -1;
}

/* 管理バーがある場合のヘッダー位置調整 */
body.admin-bar .site-header {
  top: 46px;
}

@media screen and (min-width: 783px) {
  body.admin-bar .site-header {
    top: 32px;
  }
}

/* ================================
   Header Bar
   ================================ */
.header-bar.inner--flex {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 8px;
  padding-block: 14px;
}
@media screen and (min-width: 768px) {
  .header-bar.inner--flex {
    padding-block: 8px;
  }
}

/* ================================
   Brand
   ================================ */
.header-bar .brand {
  width: 100%;
  font-weight: 700;
  color: black;
  font-size: 18px;
}
.header-bar .brand .brand__img {
  width: 110px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .header-bar .brand .brand__img {
    width: 245px;
    height: 60px;
  }
}
.header-bar .brand .brand__img img {
  width: 100%;
  height: auto;
}

/* ================================
   Desktop navigation
   ================================ */
.desktop-nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .desktop-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 16px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 32px;
  }
  .desktop-nav .nav-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: clamp(2px, 2vw, 24px);
  }
  .desktop-nav .nav-link {
    position: relative;
    border: none;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0;
    color: #393939;
    padding-bottom: 6px;
    padding-top: 8px;
  }
  .desktop-nav .nav-link__main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 6px;
  }
  .desktop-nav .nav-link__text {
    font-size: 11px;
    white-space: nowrap;
  }
  .desktop-nav .nav-link__deco svg {
    display: none;
  }
  .desktop-nav .nav-link::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 20px;
    width: 20px;
    height: 2px;
    background: #1391e6;
    -webkit-transform: translateX(-50%) scaleX(0);
    transform: translateX(-50%) scaleX(0);
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transition: -webkit-transform 0.4s ease;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition:
      transform 0.4s ease,
      -webkit-transform 0.4s ease;
  }
  .desktop-nav .nav-link--current,
  .desktop-nav .nav-link:hover {
    color: #1391e6;
  }
  .desktop-nav .nav-link--current::after,
  .desktop-nav .nav-link:hover::after {
    -webkit-transform: translateX(-50%) scaleX(1);
    transform: translateX(-50%) scaleX(1);
  }
}

.desktop-nav .contact-info__tel .tel-time {
  color: #393939;
  text-align: right;
}

/* ================================
   CTA Web予約はこちら
   ================================ */
.cta-reservation {
  display: none;
}
@media screen and (min-width: 768px) {
  .cta-reservation {
    display: block;
    position: fixed;
    top: 170px;
    right: 0;
    width: 92px;
    height: 120px;
    border-radius: 20px 0 0 20px;
    background: url("../../images/common/pc/cta-reservation.png") no-repeat
      center center/contain;
    -webkit-transition: background-image 0.6s;
    transition: background-image 0.6s;
  }
  .cta-reservation:hover {
    background: url("../../images/common/pc/cta-reservation-hover.png")
      no-repeat center center/contain;
  }
}

/* ================================
   ハンバーガーメニュー(drawer-icon__bar)
   ================================ */
/* ================================
   Sidebar
   sidebarがない案件はhtmlの'<aside class="sidebar">'をコメントアウトする。
   page.scss(style.scss)の.main-bodyのflex-directionを変更することで
   レイアウトを変えることができます。

   注意）
   sidebarの内容が多すぎる場合、親の高さ(main.bodyのmin-height:100vh)を
   超えてしまうため、position:sticky;が効かなくなります。
   また、sidebarの祖先にoverflow:hidden;は禁止。
   ================================ */
.sidebar {
  display: block;
  padding-inline: 20px;
  padding-bottom: 100px;
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .sidebar {
    padding-inline: 0;
    padding-bottom: 0;
    margin-top: 0;
  }
  .sidebar .sidebar__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
  }
  .sidebar {
    display: block;
    width: 250px;
    position: sticky;
    top: 80px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}
@media (max-width: 480px) {
  .sidebar .sidebar-section--intro p {
    line-height: 1.8;
  }
}

/* ================================
   Sidebar詳細
   ================================ */
.sidebar-section {
  margin-bottom: 60px;
}
.sidebar-section:last-child {
  margin-bottom: 0;
}
.sidebar-section .sidebar__img {
  margin-bottom: 20px;
  width: 100%;
  max-width: 220px;
  margin-inline: auto;
  border: 1px solid #000;
}
.sidebar-section .sidebar__img img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .sidebar-section .admin-card__avatar {
    max-width: 160px;
  }
}
@media (max-width: 480px) {
  .sidebar-section .admin-card__avatar {
    max-width: 140px;
  }
}
.sidebar-section h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 10px;
}
.sidebar-section p strong {
  font-weight: 700;
}
.sidebar-section p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 10px;
}
.sidebar-section .sidebar-link {
  color: #1391e6;
  font-size: 14px;
  line-height: 1.5;
}

.sidebar-section .sidebar-link:hover {
  text-decoration: underline;
}

.sidebar-head {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  padding-bottom: 8px;
  border-bottom: 1px solid #393939;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.sidebar-head .sidebar-head__icon {
  width: 24px;
  height: 24px;
}
.sidebar-head .sidebar-head__icon svg {
  width: 100%;
  height: 100%;
}

.sidebar-section--new .cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: flex-start;
}

.sidebar-section--new .card--split {
  display: flex;
  gap: 10px;
  height: 105px;
  overflow: hidden;
}

.sidebar-section--new .card--split .card__media {
  width: 70px;
  height: 105px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}

.sidebar-section--new .card--split .card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s;
}

.sidebar-section--new .card--split .card__inner {
  min-width: 0;
  padding-block: 2px;
  padding-right: 4px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  justify-content: flex-start;
  overflow: hidden;
}

.sidebar-section--new .card--split .card__inner .genre-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 6px;
  max-height: 16px;
  overflow: hidden;
}

.sidebar-section--new .card--split .card__inner span.tag {
  display: block;
  color: #fff;
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 10px;
  width: fit-content;
  line-height: 1.2;
  white-space: nowrap;
}

.sidebar-section--new .card--split .card__inner .card__drama-title {
  text-align: left;
  font-size: 10px;
  line-height: 1.3;
  color: #666;
  margin: 0;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.sidebar-section--new .card--split .card__inner h3 {
  text-align: left;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 500;
  margin: 0;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.sidebar-section--new .card--split .card__inner .card__writer {
  font-size: 11px;
  line-height: 1.3;
  color: #666;
  margin: 0;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.sidebar-section--new .card--split .card__inner .card__excerpt {
  display: none;
}

.sidebar-section--new .card--split .card__inner time {
  text-align: left;
  color: #888888;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.2;
  margin-top: auto;
}

.card--split:hover .card__media img {
  transform: scale(1.1);
}

@media screen and (min-width: 768px) {
  .sidebar-section--new .card--split .card__inner .card__drama-title {
    font-size: 11px;
  }

  .sidebar-section--new .card--split .card__inner h3 {
    font-size: 13px;
  }

  .sidebar-section--new .card--split .card__inner .card__writer {
    font-size: 11px;
  }

  .sidebar-section--new .card--split .card__inner time {
    font-size: 10px;
  }
}

/* ----------------------
   Sidebar Search Links
---------------------- */
.sidebar-search-links {
  margin-bottom: 32px;
}

.sidebar-link-list {
  display: grid;
  gap: 12px;
  padding-inline: 20px;
  margin: 0;
  list-style: none;
}

.sidebar-link-list__item a {
  position: relative;
  display: block;
  padding-left: 12px;
  color: #333;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
}

.sidebar-link-list__item a::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 6px;
  height: 12px;
  background: url("../images/common/footer-head.png") no-repeat center center /
    contain;
}

.sidebar-link-list__item a:hover {
  color: #1391e6;
}

.sidebar-section--category nav ul {
  padding-inline: 20px;
}
.sidebar-section--category nav ul > :last-child {
  margin-bottom: 0;
}
.sidebar-section--category nav li {
  position: relative;
  font-size: 16px;
  line-height: 1.5;
  padding-left: 12px;
  margin-bottom: 12px;
}
.sidebar-section--category nav li::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 6px;
  height: 12px;
  background: url("../images/common/footer-head.png") no-repeat center
    center/contain;
}

.sidebar-more {
  margin-top: 16px;
  text-align: right;
}

.sidebar-more__link {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid #1391e6;
  border-radius: 999px;
  color: #1391e6;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.sidebar-more__link:hover {
  background: #1391e6;
  color: #fff;
}

/* ================================
   footer
   ================================ */
.site-footer {
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.site-footer .footer__bg {
  position: absolute;
  inset: 0;
  background: #dff1fd;
  z-index: -1;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
  background: #dff1fd;
  background-size: cover;
}
.site-footer .inner--footer {
  padding-inline: 10px;
  padding-top: 22px;
  padding-bottom: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 42px;
}
@media screen and (min-width: 768px) {
  .site-footer .inner--footer {
    max-width: 1080px;
    padding-inline: 40px;
    padding-block: 56px;
    gap: 43px;
  }
}
.contact-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #fff;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  padding: 32px 10px 20px;
}
@media screen and (min-width: 768px) {
  .contact-info {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-radius: 20px;
    padding: 40px 49px;
  }
  .contact-info .contact-info__wrapper {
    -ms-flex-preferred-size: 477px;
    flex-basis: 477px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .contact-info .contact-info__map {
    -ms-flex-preferred-size: 385px;
    flex-basis: 385px;
  }
}

.contact-info__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .contact-info__wrapper {
    gap: 19px;
  }
}

.contact-info__address .brand {
  width: 100%;
  max-width: 309px;
  height: auto;
  margin-bottom: 7px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .contact-info__address .brand {
    max-width: 405px;
  }
}
.contact-info__address p {
  font-size: 14px;
}

.contact-info__tel {
  color: #1391e6;
}
.contact-info__tel .tel-no {
  position: relative;
  padding-left: 32px;
  font-size: 32px;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.64px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.contact-info__tel .tel-no::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: url("../../images/front/icon_tel.png") no-repeat center
    center/contain;
}
.contact-info__tel .tel-time {
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
}

.contact-info__buttons {
  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;
  gap: 15px;
}

.footer-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  text-align: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 6px 5px;
  border-radius: 30px;
  width: 150px;
  font-size: 14px;
  border: 1px solid #1391e6;
  background: #1391e6;
  color: #fff;
  -webkit-transition:
    color 0.6s,
    background-color 0.6s;
  transition:
    color 0.6s,
    background-color 0.6s;
}
@media screen and (min-width: 768px) {
  .footer-button {
    padding: 15px 9px;
    width: 220px;
    font-size: 16px;
  }
}
.footer-button .footer-button__icon {
  width: 17px;
  height: 17px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.footer-button .footer-button__icon svg {
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .footer-button .footer-button__icon {
    width: 24px;
    height: 24px;
  }
}
.footer-button .footer-button__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3px;
}
.footer-button .footer-button__text span {
  line-height: 1;
}
.footer-button .footer-button__text span:nth-child(1) {
  font-size: 16px;
}
.footer-button .footer-button__text span:nth-child(2) {
  font-size: 12px;
}
.footer-button--type2 {
  background: #fff;
  color: #1391e6;
  -webkit-transition:
    color 0.6s,
    background-color 0.6s;
  transition:
    color 0.6s,
    background-color 0.6s;
}

.footer-button:hover {
  background: #0060a0;
}

.footer-button--type2:hover {
  background: #1391e6;
  color: #fff;
}

.contact-info__timetable {
  border-radius: 12px;
  background: #fff;
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  overflow: hidden;
}

.contact-info__map {
  width: 100%;
  aspect-ratio: 1/1;
  max-width: 315px;
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  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;
  padding: 10px;
}
/* .contact-info__map span {
  font-size: 16px;
  color: #888888;
} */

.contact-info__message {
  color: #888888;
  text-align: center;
  line-height: 1.9;
}

.contact-info__message-head {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #555555;
}

.contact-info__link {
  margin-top: 20px;
}

.contact-info__link a {
  color: #1391e6;
  text-decoration: underline;
  font-weight: 700;
}

.contact-info__message-head {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #555555;
}

.contact-info__link {
  margin-top: 20px;
}

.contact-info__link a {
  color: #1391e6;
  text-decoration: underline;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .contact-info__map {
    max-width: none;
  }
}
.contact-info__map iframe {
  width: 100%;
  height: 100%;
}

.footer-nav {
  padding-inline: 10px;
  text-align: left;
  font-size: 16px;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .footer-nav {
    max-width: 912px;
    margin-inline: auto;
    text-align: left;
  }
}
.footer-nav .footer-nav__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .footer-nav .footer-nav__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.footer-nav a:hover {
  opacity: 0.8;
}

.footer-nav__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 18px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  font-weight: 700;
}
.footer-nav__head .footer-nav-ul__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  gap: 20px;
}
.footer-nav__head ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 18px;
}
.footer-nav__head li {
  position: relative;
  padding-left: 12px;
  font-weight: 500;
}
.footer-nav__head li::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 6px;
  height: 12px;
  background: url("../../images/common/footer-head.png") no-repeat center
    center/contain;
}

.footer-meta {
  background: #1391e6;
  color: #fff;
  padding: 13px 70px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .footer-meta {
    padding-block: 17px;
  }
}

/* ===============================
  固定フッター
================================ */
.site-footer__fixed {
  display: none;
  position: fixed;
  width: 100%;
  border-top: 1px solid #1391e6;
  height: 60px;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 70;
}
.site-footer__fixed .footer-fixed__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #fff;
}
.site-footer__fixed .footer-fixed__inner {
  padding-block: 6.5px;
}

.footer-fixed__CTA {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
}

.footer-fixed__CTA .contact-info__tel .tel-no {
  font-size: 20px;
  line-height: 1.3;
  padding-left: 22px;
}
.footer-fixed__CTA .contact-info__tel .tel-no::after {
  width: 18px;
  height: 18px;
}
.footer-fixed__CTA .contact-info__tel .tel-time {
  color: #393939;
  text-align: center;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.5;
}

.footer-fixed__CTA .footer-button {
  border-radius: 8px;
  padding: 6.5px 5px;
  gap: 10px;
}
.footer-fixed__CTA .footer-button .footer-button__icon {
  width: 46px;
  height: 28px;
}
@media screen and (min-width: 1120px) {
  .site-footer__main {
    margin-bottom: 0;
  }
  .site-footer__fixed {
    display: none;
  }
}
/* ================================
   説明：spのドロワーの設定方法
   step1 _variables.scssで$drawer-widthを設定する。
   step2 ドロワーのタイプ(A or B)によってstep-(A)または(B)を選定する。
   Step3 選定した方のドロワーの中身を編集する。(クラス名が別々なので選定していない方は無視でOK)
   Step4 オーバーレイの確認(通常は特に何もすることなし)
   ================================ */
/* ================================
   step2-(A)
   in-header:ヘッダーに属するドロワー

   ================================ */
/* ================================
   step2-(B)
   out-of-header:ヘッダーに属さない
   （独立した）ドロワー
   ================================ */
.drawer-icon--out-of-header {
  position: relative;
  width: 32px;
  height: 32px;
}

.drawer-icon--out-of-header .drawer-icon__bar {
  position: absolute;
  left: 3px;
  width: 27px;
  height: 2px;
  border-radius: 3px;
  background: #1391e6;
  transition:
    transform 0.3s linear,
    top 0.3s linear;
}

.drawer-icon--out-of-header .drawer-icon__bar:nth-of-type(1) {
  top: 8px;
}

.drawer-icon--out-of-header .drawer-icon__bar:nth-of-type(2) {
  top: 15px;
}

.drawer-icon--out-of-header .drawer-icon__bar:nth-of-type(3) {
  top: 22px;
}

/* ここを削除 or コメントアウト */
/* .drawer-icon--out-of-header.is-checked {
  display: none;
} */

.drawer-icon--out-of-header.is-checked .drawer-icon__bar {
  background: #1391e6;
  left: 4px;
}

.drawer-icon--out-of-header.is-checked .drawer-icon__bar:nth-of-type(1) {
  top: 15px;
  transform: rotate(45deg);
}

.drawer-icon--out-of-header.is-checked .drawer-icon__bar:nth-of-type(2) {
  display: none;
}

.drawer-icon--out-of-header.is-checked .drawer-icon__bar:nth-of-type(3) {
  top: 15px;
  transform: rotate(-45deg);
}

@media screen and (min-width: 768px) {
  .drawer-icon--out-of-header {
    display: none;
  }
}

.drawer-close-icon {
  position: relative;
  width: 32px;
  height: 32px;
}

.drawer-close-icon .drawer-icon__bar {
  position: absolute;
  left: 3px;
  top: 15px;
  width: 27px;
  height: 2px;
  border-radius: 3px;
  background: #1391e6;
}

.drawer-close-icon .drawer-icon__bar:nth-of-type(1) {
  transform: rotate(45deg);
}

.drawer-close-icon .drawer-icon__bar:nth-of-type(2) {
  display: none;
}

.drawer-close-icon .drawer-icon__bar:nth-of-type(3) {
  transform: rotate(-45deg);
}

.drawer-content--out-of-header {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 62;
  width: 100%;
  height: 100%;
  background-color: #f7f7f7;
  text-align: left;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition:
    transform 0.3s linear,
    -webkit-transform 0.3s linear;
}
.drawer-content--out-of-header .brand {
  width: 110px;
}
.drawer-content--out-of-header.is-checked {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.drawer-content--out-of-header.is-checked
  .drawer-icon--out-of-header
  .drawer-icon__bar {
  background: #1391e6;
  left: 4px;
}
.drawer-content--out-of-header.is-checked
  .drawer-icon--out-of-header
  .drawer-icon__bar:nth-of-type(1) {
  top: 15px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.drawer-content--out-of-header.is-checked
  .drawer-icon--out-of-header
  .drawer-icon__bar:nth-of-type(2) {
  display: none;
}
.drawer-content--out-of-header.is-checked
  .drawer-icon--out-of-header
  .drawer-icon__bar:nth-of-type(3) {
  top: 15px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* ================================
   Step3 
   Drawer Navigation (Mobile)
   ================================ */
.drawer-nav {
  height: calc(100% - 60px);
  padding-bottom: 60px;
  -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;
  gap: 20px;
}
.drawer-nav .nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 255px;
  padding: 15px 0;
  font-family:
    "Noto Sans JP",
    sans-serif,
    -apple-system,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  color: #3f3a38;
  border-top: 1px dashed #e6dcd6;
}
.drawer-nav .nav-link:last-child {
  border-bottom: 1px dashed #e6dcd6;
}
.drawer-nav .nav-link__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 14px;
}
.drawer-nav .nav-link__icon svg,
.drawer-nav .nav-link__deco svg {
  display: block;
}
.drawer-nav .nav-link__icon svg {
  width: 24px;
  height: 24px;
}
.drawer-nav .nav-link__deco svg {
  width: 14px;
  height: 14px;
  color: #1391e6;
}

/* ================================
   Step4 
   Drawer Overlay
   ================================ */
/*
  - HTMLの構造としてはheader の外に配置
  - header / footer より上または下(z-index調整)
  - drawer-content より下
*/
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
}
.drawer-overlay--in-header {
  z-index: 59;
}
.drawer-overlay--out-of-header {
  z-index: 61;
}
.drawer-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

body.is-checked {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

/* ----------------------
   Cast Index Page
---------------------- */
.cast-index-section {
  padding-block: 40px 80px;
}

.cast-index-section .section-heading {
  text-align: center;
  margin-bottom: 32px;
}

.cast-index-section .section-heading__en {
  color: #1e9bec;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.cast-index-section .section-heading__ja {
  position: relative;
  display: inline-block;
  color: #333;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.cast-index-section .section-heading__ja::before,
.cast-index-section .section-heading__ja::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 56px;
  height: 6px;
  background-image: radial-gradient(circle, #1e9bec 2px, transparent 2.5px);
  background-size: 12px 6px;
  background-repeat: repeat-x;
  transform: translateY(-50%);
}

.cast-index-section .section-heading__ja::before {
  right: calc(100% + 20px);
}

.cast-index-section .section-heading__ja::after {
  left: calc(100% + 20px);
}

.cast-index-lead {
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: 32px;
  padding: 20px 24px;
  border-radius: 16px;
  background: #f7fbff;
  color: #333;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.9;
}

.cast-index-lead p + p {
  margin-top: 6px;
}

.cast-index-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.cast-index-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid #1e9bec;
  border-radius: 999px;
  background: #fff;
  color: #1e9bec;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.cast-index-nav a:hover {
  background: #1e9bec;
  color: #fff;
  transform: translateY(-2px);
}

.cast-index-list {
  max-width: 960px;
  margin-inline: auto;
}

.cast-index-group {
  padding-block: 28px;
  border-top: 1px solid #e5edf3;
}

.cast-index-group:last-child {
  border-bottom: 1px solid #e5edf3;
}

.cast-index-group__title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  margin-bottom: 18px;
  padding: 8px 16px;
  border-radius: 999px;
  background: #1e9bec;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.cast-index-group__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, 180px);
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.cast-index-group__item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 180px;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #e1edf6;
  border-radius: 12px;
  background: #fff;
  color: #333;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(30, 155, 236, 0.06);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.cast-index-group__item a:hover {
  border-color: #1e9bec;
  box-shadow: 0 6px 16px rgba(30, 155, 236, 0.14);
  transform: translateY(-2px);
}

.cast-index-group__name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cast-index-group__count {
  flex-shrink: 0;
  padding: 3px 8px;
  border-radius: 999px;
  background: #eef7fe;
  color: #1e9bec;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

/* SP */
@media screen and (max-width: 767px) {
  .cast-index-section {
    padding-block: 32px 64px;
  }

  .cast-index-section .section-heading {
    margin-bottom: 24px;
  }

  .cast-index-section .section-heading__ja {
    font-size: 22px;
  }

  .cast-index-section .section-heading__ja::before,
  .cast-index-section .section-heading__ja::after {
    width: 36px;
  }

  .cast-index-section .section-heading__ja::before {
    right: calc(100% + 12px);
  }

  .cast-index-section .section-heading__ja::after {
    left: calc(100% + 12px);
  }

  .cast-index-lead {
    margin-bottom: 28px;
    padding: 18px;
    font-size: 14px;
  }

  .cast-index-nav {
    justify-content: flex-start;
    gap: 8px;
    margin-bottom: 32px;
  }

  .cast-index-nav a {
    min-width: 56px;
    min-height: 38px;
    padding: 8px 12px;
    font-size: 13px;
  }

  .cast-index-list {
    max-width: none;
    width: 100%;
  }

  .cast-index-group {
    padding-block: 24px;
  }

  .cast-index-group__title {
    min-width: 64px;
    font-size: 16px;
  }

  .cast-index-group__list {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 10px;
  }

  .cast-index-group__item {
    width: 100%;
  }

  .cast-index-group__item a {
    width: 100%;
    min-height: 48px;
    font-size: 14px;
  }
}

/* ----------------------
   Cast Archive Page
---------------------- */
.cast-archive-section {
  padding-block: 40px 80px;
}

.cast-archive-section .section-heading {
  text-align: center;
  margin-bottom: 28px;
}

.cast-archive-lead {
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: 32px;
  padding: 20px 24px;
  border-radius: 16px;
  background: #f7fbff;
  color: #333;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.9;
}

.cast-archive-lead p + p {
  margin-top: 6px;
}

.cast-archive-back {
  margin-top: 40px;
  text-align: center;
}

.cast-archive-back a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 20px;
  border: 1px solid #1e9bec;
  border-radius: 999px;
  background: #fff;
  color: #1e9bec;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.cast-archive-back a:hover {
  background: #1e9bec;
  color: #fff;
  transform: translateY(-2px);
}

@media screen and (max-width: 767px) {
  .cast-archive-section {
    padding-block: 32px 64px;
  }

  .cast-archive-lead {
    margin-bottom: 28px;
    padding: 18px;
    font-size: 14px;
  }
}
