@charset "UTF-8";
/* Compiled from SCSS using Live Sass Compiler */
:root {
  /* ---- フォント ---- */
  --font-family: "Noto Sans JP", sans-serif;
  --font-YakuHanJPs-Noto-Sans-JP: YakuHanJPs, "Noto Sans JP", sans-serif;
  /* ---- カラー（主要なもののみ変数とする） ---- */
  --color-base-black: #000;
  --color-primary: #00a73c;
  --color-secondary: #00806f;
  --color-tertiary: #ed6c00;
  /* ---- z-index（全て変数とする） ---- */
  --z-pagetop: 1000;
  --z-site-header: 1000;
  --z-u-cover-hover_before: 100;
  --z-inner: 100;
  --z-new_tagline: 100;
  --z-section: 100;
  --z-new: 100;
  --z-hero_nav: 100;
  --z-film_box: 100;
  --z-footer: 100;
  --z-lineup: 100;
  --z-shop: 100;
  --z-pagetop_after: 200;
  --z-pagetop_before: 100;
  /* ---- デザインカンプのサイズ（比率計算で使用） ---- */
  --comp-sp: 390;
  --comp-pc: 1366;
  /* ---- その他 ---- */
  --default-header-height: calc(98 / var(--comp-sp) * 100vw);
}
@media screen and (min-width: 768px) {
  :root {
    --default-header-height: calc(112 / var(--comp-pc) * 100vw);
  }
}

@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/share/sp/bunko-fair2025/font/NotoSansJP/NotoSansJP-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/share/sp/bunko-fair2025/font/NotoSansJP/NotoSansJP-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/share/sp/bunko-fair2025/font/NotoSansJP/NotoSansJP-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("/share/sp/bunko-fair2025/font/NotoSansJP/NotoSansJP-Black.woff2") format("woff2");
}
@media (max-width: 767px) {
  .u-pc {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .u-sp {
    display: none !important;
  }
}

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

.u-sr {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.u-cover-hover {
  --transition-duration: 0.3s;
  position: relative;
}
.u-cover-hover::before {
  content: "";
  position: absolute;
  z-index: var(--z-u-cover-hover_before);
  inset: 0;
  margin: auto;
  display: block;
  width: 30%;
  min-width: 0;
  aspect-ratio: 1;
  border: 1px solid #fff;
  border-radius: 50%;
  background-position: 52.85% 50%;
  background-size: 28.6%;
  background-repeat: no-repeat;
  background-image: url("/share/sp/bunko-fair2025/img2/ico_arrow.svg");
  opacity: 0;
  transition: opacity var(--transition-duration) ease-out;
}
.u-cover-hover:focus-visible::before {
  opacity: 1;
}
@media (any-hover: hover) {
  .u-cover-hover:hover::before {
    opacity: 1;
  }
}
.u-cover-hover img {
  transition: filter var(--transition-duration) ease-out;
}
.u-cover-hover:focus-visible > img:nth-child(1) {
  filter: brightness(0.6);
}
@media (any-hover: hover) {
  .u-cover-hover:hover > img:nth-child(1) {
    filter: brightness(0.6);
  }
}

.u-section-bg {
  position: relative;
}
.u-section-bg::before {
  content: "";
  position: absolute;
  top: var(--section-bg-top, 0);
  left: 0;
  width: 100%;
  height: var(--section-bg-height);
  background-color: var(--section-bg-color);
  margin-block: auto;
  transform: skewY(-20deg);
}

/* ---- 既存スタイルのリセット&ベーススタイル ---- */
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height, var(--default-header-height));
}
body {
  background-color: var(--color-secondary);
}
@media screen and (min-width: 768px) {
  body::before {
    content: "";
    position: fixed;
    top: calc(190 / var(--comp-pc) * 100vw);
    left: 0;
    width: 100%;
    height: calc(500 / var(--comp-pc) * 100vw);
    background-color: #3e3a39;
    transform: skewY(-20deg);
  }
}

#contents {
  padding: 0;
}
@media screen and (min-width: 768px) {
  #contents {
    display: flex;
    flex-flow: column;
    min-height: 100vh;
  }
}
@media screen and (min-width: 768px) {
  #contents > article {
    flex: 1;
    display: grid;
  }
}
#contents > footer {
  position: relative;
  z-index: var(--z-footer);
}
#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 {
    display: grid;
    font-size: calc(18 / var(--comp-pc) * 100vw) !important;
  }
}
#main-contents *,
#main-contents *::before,
#main-contents *::after {
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  #main-contents .special {
    display: grid;
  }
}
#main-contents .wapper-special {
  max-width: none;
  font-size: inherit;
  line-height: normal;
  border: none;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 768px) {
  #main-contents .wapper-special {
    display: grid;
  }
}

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

:where(#main-contents) 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);
}

ruby {
  ruby-align: center;
}
ruby rt {
  display: ruby-text;
}

.pagetop {
  z-index: var(--z-pagetop);
  border-radius: 0;
  background-color: transparent;
  background-image: none;
  background-size: 100%;
  width: 40px;
  min-width: 0;
  height: auto;
  aspect-ratio: 1;
  border: 1px solid #000;
  transition-duration: 0.3s;
  transition-property: background-image;
  transition-timing-function: ease-out;
}
@media screen and (min-width: 768px) {
  .pagetop {
    width: calc(50 / var(--comp-pc) * 100vw);
  }
}
.pagetop::before, .pagetop::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
}
.pagetop::before {
  --hover-opacity: 1;
  z-index: var(--z-pagetop_before);
  background-color: #ffffff;
  opacity: 0.5;
  transition: opacity 0.3s ease-out;
}
.pagetop::after {
  z-index: var(--z-pagetop_after);
  width: 14px;
  height: 13px;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  background-color: #000;
}
@media screen and (min-width: 768px) {
  .pagetop::after {
    width: calc(17 / var(--comp-pc) * 100vw);
    height: calc(15 / var(--comp-pc) * 100vw);
  }
}
.pagetop:focus-visible::before {
  opacity: var(--hover-opacity);
}
@media (any-hover: hover) {
  .pagetop:hover::before {
    opacity: var(--hover-opacity);
  }
}

/* ---- .inner ---- */
.inner {
  --padding-inline: 14px;
  position: relative;
  padding-inline: var(--padding-inline);
}
@media screen and (min-width: 768px) {
  .inner {
    --padding-inline: calc(55 / var(--comp-pc) * 100vw);
  }
}

/* ---- .section ---- */
.section {
  position: relative;
  z-index: var(--z-section);
  display: flex;
  align-items: flex-start;
}
.section[data-direction=reverse] {
  flex-direction: row-reverse;
}

.section_label {
  display: grid;
  place-items: center;
}
.section > :where(.section_label) {
  flex: 1;
}
.section > .section_label {
  flex: 1;
}

.section_body {
  padding-top: 30px;
}
@media screen and (min-width: 768px) {
  .section_body {
    padding-top: calc(54 / var(--comp-pc) * 100vw);
  }
}
.section > :where(.section_body) {
  flex: 5.72;
}

/* ---- .page-title ---- */
.page-title {
  color: #fff;
  line-height: 1.3;
  padding-block: 14px;
}
@media screen and (min-width: 768px) {
  .page-title {
    padding-block: calc(18 / var(--comp-pc) * 100vw);
  }
}
#main-contents .page-title {
  font-size: 30px;
  font-weight: 900;
}
@media screen and (min-width: 768px) {
  #main-contents .page-title {
    font-size: calc(40 / var(--comp-pc) * 100vw);
  }
}

/* ---- .section-title ---- */
.section-title {
  color: #fff;
}
#main-contents .section-title {
  font-size: 30px;
  font-weight: 900;
}
@media screen and (min-width: 768px) {
  #main-contents .section-title {
    font-size: calc(40 / var(--comp-pc) * 100vw);
  }
}

/* ---- .section-label ---- */
.section-label {
  max-width: 34px;
}
@media screen and (min-width: 768px) {
  .section-label {
    max-width: none;
    width: calc(76 / var(--comp-pc) * 100vw);
  }
}

.section-label_img {
  width: 100%;
}
/* ---- .book-item ---- */
.book-item {
  display: grid;
  grid-template-columns: var(--book-img-width, 88px) 1fr;
  gap: 10px;
  align-items: start;
}
@media screen and (min-width: 768px) {
  .book-item {
    grid-template-columns: auto 1fr;
    gap: calc(20 / var(--comp-pc) * 100vw);
  }
}
@media screen and (min-width: 768px) {
  .book-item[data-pc-direction=column] {
    grid-template-columns: none;
    gap: calc(12 / var(--comp-pc) * 100vw);
  }
}
@media screen and (min-width: 768px) {
  .energy_item[data-highlight=true] .book-item {
    gap: calc(28 / var(--comp-pc) * 100vw);
  }
}

.book-item_figure {
  position: relative;
}
@media screen and (min-width: 768px) {
  .book-item_figure {
    justify-self: center;
  }
}
.book-item_link {
  display: block;
}
@media screen and (min-width: 768px) {
  .book-item_link {
    position: relative;
    width: calc(168 / var(--comp-pc) * 100vw);
  }
}

.book-item_img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .book-item[data-pc-direction=column] .book-item_img {
    aspect-ratio: 168/243;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.book-item_tagline {
  position: relative;
  z-index: var(--z-new_tagline);
  display: block;
  width: 80px;
  margin-top: -22px;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .book-item_tagline {
    position: absolute;
    bottom: var(--book-tagline-bottom, calc(-27 / var(--comp-pc) * 100vw));
    left: var(--book-tagline-left, calc(-26 / var(--comp-pc) * 100vw));
    width: calc(120 / var(--comp-pc) * 100vw);
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .book-item[data-pc-direction] .book-item_tagline {
    right: calc(-68 / var(--comp-pc) * 100vw);
    bottom: calc(-17 / var(--comp-pc) * 100vw);
    left: auto;
  }
}

@media screen and (min-width: 768px) {
  .book-item_detail {
    padding-top: calc(4 / var(--comp-pc) * 100vw);
  }
}

.book-item_title {
  font-size: 20px;
  font-weight: 900;
}
@media screen and (min-width: 768px) {
  .book-item_title {
    font-size: calc(24 / var(--comp-pc) * 100vw);
  }
}
@media screen and (min-width: 768px) {
  .book-item_title[data-mh] {
    display: grid;
    place-items: center;
  }
}
#main-contents .book-item_title {
  line-height: 1.3;
}
#main-contents .book-item_title:has(.book-item_title-sub) {
  line-height: 1;
}
@media screen and (min-width: 768px) {
  #main-contents .wapper-special .book-item[data-pc-direction=column] .book-item_title {
    text-align: center;
  }
}

.book-item_title-sub {
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .book-item_title-sub {
    font-size: calc(16 / var(--comp-pc) * 100vw);
  }
}

.book-item_author {
  color: var(--color-tertiary);
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .book-item_author {
    font-size: calc(20 / var(--comp-pc) * 100vw);
  }
}
#main-contents .book-item_author {
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  #main-contents .book-item_author {
    line-height: 1.5;
  }
}
#main-contents .wapper-special .book-item_author {
  margin-top: 3px;
}
@media screen and (min-width: 768px) {
  #main-contents .wapper-special .book-item_author {
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  #main-contents .wapper-special .book-item[data-pc-direction=column] .book-item_author {
    text-align: center;
  }
}

.book-item_price {
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .book-item_price {
    font-size: calc(16 / var(--comp-pc) * 100vw);
  }
}
.book-item_price::before {
  content: "●";
  color: var(--color-bullet);
}
#main-contents .book-item_price {
  line-height: 1;
}
#main-contents .wapper-special .book-item_price {
  margin-top: 7px;
}
@media screen and (min-width: 768px) {
  #main-contents .wapper-special .book-item_price {
    margin-top: calc(3 / var(--comp-pc) * 100vw);
  }
}
@media screen and (min-width: 768px) {
  #main-contents .wapper-special .book-item[data-pc-direction=column] .book-item_price {
    text-align: center;
  }
}

.book-item_text {
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .book-item_text {
    font-size: calc(16 / var(--comp-pc) * 100vw);
  }
}
#main-contents .book-item_text {
  line-height: 1.5;
}
#main-contents .wapper-special .book-item_text {
  margin-top: 14px;
}
@media screen and (min-width: 768px) {
  #main-contents .wapper-special .book-item_text {
    margin-top: calc(17 / var(--comp-pc) * 100vw);
  }
}

/* ---- .site-frame ---- */
.site-frame {
  background-color: var(--color-primary);
  min-width: 0;
}
@media screen and (min-width: 768px) {
  .site-frame {
    width: calc(1246 / var(--comp-pc) * 100vw);
    border-color: #000;
    border-style: solid;
    border-width: 0 1px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 768px) {
  .site-frame[data-page=sub] {
    display: grid;
    grid-template-rows: auto auto 1fr;
  }
}

/* ---- .site-header ---- */
.site-header {
  position: fixed;
  z-index: var(--z-site-header);
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-primary);
  margin: 0 auto;
  padding-block: 12px;
  translate: 0 -100%;
  transition: translate 0.5s ease-out;
}
@media screen and (min-width: 768px) {
  .site-header {
    width: calc(1246 / var(--comp-pc) * 100vw);
    border-color: #000;
    border-style: solid;
    border-width: 0 1px;
    padding-block: calc(24 / var(--comp-pc) * 100vw);
  }
}
.site-header[aria-hidden=false] {
  translate: 0;
}

.site-header_inner {
  padding-inline: calc(12 / var(--comp-sp) * 100vw);
}
@media screen and (min-width: 768px) {
  .site-header_inner {
    padding-inline: calc(23 / var(--comp-pc) * 100vw);
  }
}

.site-header_body {
  display: grid;
  gap: 5px;
}
@media screen and (min-width: 768px) {
  .site-header_body {
    grid-template-columns: 505fr 1244fr;
    align-items: end;
    gap: 0;
  }
}

.site-header_title {
  width: 56.3%;
  max-width: 290px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .site-header_title {
    width: 100%;
    max-width: none;
  }
}

.site-header_link {
  --hover-opacity: 0.6;
  display: block;
  transition: opacity 0.3s ease-out;
}
.site-header_link:focus-visible {
  opacity: var(--hover-opacity);
}
@media (any-hover: hover) {
  .site-header_link:hover {
    opacity: var(--hover-opacity);
  }
}

.site-header_img {
  width: 100%;
}
/* ---- .site-nav ---- */
@media screen and (min-width: 768px) {
  .site-nav {
    justify-self: end;
  }
}

.site-nav_list {
  display: flex;
  justify-content: center;
  gap: calc(10 / var(--comp-sp) * 100vw);
}
@media screen and (min-width: 768px) {
  .site-nav_list {
    gap: calc(20 / var(--comp-pc) * 100vw);
  }
}

.site-nav_link {
  --hover-color: #fff;
  --hover-background-color: #000;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  background-image: none;
  border-bottom: 1px solid;
  padding: 0.4em 0.23em;
  transition-duration: 0.3s;
  transition-property: color, background-color;
  transition-timing-function: ease-out;
}
@media (min-width: 376px) {
  .site-nav_link {
    font-size: min(13 / var(--comp-sp) * 100vw, 18px);
  }
}
@media screen and (min-width: 768px) {
  .site-nav_link {
    font-size: calc(18 / var(--comp-pc) * 100vw);
    padding: 0.45em 0.19em;
  }
}
.site-nav_link[aria-current=page] {
  color: #fff;
  background-color: #000;
}
.site-nav_link:focus-visible {
  color: var(--hover-color);
  background-color: var(--hover-background-color);
}
@media (any-hover: hover) {
  .site-nav_link:hover {
    color: var(--hover-color);
    background-color: var(--hover-background-color);
  }
}

/* ---- .hero ---- */
.hero {
  position: relative;
}
.hero_nav {
  padding: calc(13 / var(--comp-sp) * 100vw) calc(12 / var(--comp-sp) * 100vw);
}
@media screen and (min-width: 768px) {
  .hero_nav {
    position: absolute;
    z-index: var(--z-hero_nav);
    top: calc(24 / var(--comp-pc) * 100vw);
    left: calc(25 / var(--comp-pc) * 100vw);
    padding: 0;
  }
}

.hero_img {
  width: 100%;
  clip-path: polygon(49% 0, 100% 0, 100% 66.93%, 0 100%, 0 16.17%);
}
@media screen and (min-width: 768px) {
  .hero_img {
    clip-path: polygon(37% 0, 100% 0, 100% 48.47%, 0 100%, 0 19.07%);
  }
}
[data-page=sub] .hero_img {
  clip-path: polygon(49% 0, 100% 0, 100% 39.34%, 0 100%, 0 29.73%);
}
@media screen and (min-width: 768px) {
  [data-page=sub] .hero_img {
    clip-path: polygon(37% 0, 100% 0, 100% 21.6%, 0 100%, 0 29.03%);
  }
}

.hero_text {
  position: absolute;
  top: 16%;
  right: 5%;
  width: 11.4%;
}
@media screen and (min-width: 768px) {
  .hero_text {
    width: calc(74 / var(--comp-pc) * 100vw);
    top: calc(80 / var(--comp-pc) * 100vw);
    right: calc(72 / var(--comp-pc) * 100vw);
  }
}
[data-page=sub] .hero_text {
  top: 27%;
  width: 6.5%;
}
@media screen and (min-width: 768px) {
  [data-page=sub] .hero_text {
    top: calc(35 / var(--comp-pc) * 100vw);
    width: calc(51 / var(--comp-pc) * 100vw);
  }
}

.hero_text-img {
  width: 100%;
}
.hero_logo {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .hero_logo {
    width: calc(304 / var(--comp-pc) * 100vw);
    right: auto;
    bottom: calc(140 / var(--comp-pc) * 100vw);
    left: calc(25 / var(--comp-pc) * 100vw);
  }
}
[data-page=sub] .hero_logo {
  width: 32.3%;
  right: auto;
  bottom: 10px;
  left: 14px;
}
@media screen and (min-width: 768px) {
  [data-page=sub] .hero_logo {
    width: calc(204 / var(--comp-pc) * 100vw);
    bottom: calc(155 / var(--comp-pc) * 100vw);
    left: calc(25 / var(--comp-pc) * 100vw);
  }
}

.hero_logo-img {
  width: 54%;
}
@media screen and (min-width: 768px) {
  .hero_logo-img {
    width: 100%;
  }
}
[data-page=sub] .hero_logo-img {
  width: 100%;
}

/* ---- .hero-nav ---- */
.hero-nav_list {
  display: flex;
  justify-content: center;
  gap: calc(10 / var(--comp-sp) * 100vw);
}
@media screen and (min-width: 768px) {
  .hero-nav_list {
    display: grid;
    gap: calc(14 / var(--comp-pc) * 100vw);
  }
}

.hero-nav_link {
  --hover-color: #fff;
  --hover-background-color: #000;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border-style: solid;
  border-width: 0 0 1px 0;
  padding: 0.4em 0.23em;
  transition-duration: 0.3s;
  transition-property: color, background-color;
  transition-timing-function: ease-out;
}
@media (min-width: 376px) {
  .hero-nav_link {
    font-size: min(13 / var(--comp-sp) * 100vw, 18px);
  }
}
@media screen and (min-width: 768px) {
  .hero-nav_link {
    color: #000;
    border-color: #000;
    font-size: calc(18 / var(--comp-pc) * 100vw);
    padding: 0.45em 0.22em;
  }
}
.hero-nav_link[aria-current=page] {
  color: #fff;
  background-color: #000;
}
@media screen and (min-width: 768px) {
  .hero-nav_link[aria-current=page] {
    border-color: #000;
  }
}
.hero-nav_link:focus-visible {
  color: var(--hover-color);
  background-color: var(--hover-background-color);
}
@media (any-hover: hover) {
  .hero-nav_link:hover {
    color: var(--hover-color);
    background-color: var(--hover-background-color);
  }
}

/* ---- .news-wrap ---- */
.news-wrap {
  padding-block: 32px 15px;
}
@media screen and (min-width: 768px) {
  .news-wrap {
    padding-block: calc(25 / var(--comp-pc) * 100vw);
    margin-top: calc(-93 / var(--comp-pc) * 100vw);
  }
}

.news-wrap_inner {
  display: grid;
  gap: 31px;
}
@media screen and (min-width: 768px) {
  .news-wrap_inner {
    grid-template-columns: 664fr 433fr;
    gap: calc(40 / var(--comp-pc) * 100vw);
  }
}

/* ---- .news ---- */
.news_title {
  position: relative;
  color: #fff;
  text-align: left;
  line-height: 1;
}
#main-contents .news_title {
  font-size: 22px;
  font-weight: 900;
}
@media screen and (min-width: 768px) {
  #main-contents .news_title {
    font-size: calc(34 / var(--comp-pc) * 100vw);
  }
}

.news_body {
  max-height: 120px;
  overflow-y: auto;
  overscroll-behavior: contain;
  margin-top: 17px;
}
@media screen and (min-width: 768px) {
  .news_body {
    max-height: calc(173 / var(--comp-pc) * 100vw);
    margin-top: calc(25 / var(--comp-pc) * 100vw);
  }
}
.news_body::-webkit-scrollbar {
  width: 12px;
}
@media screen and (min-width: 768px) {
  .news_body::-webkit-scrollbar {
    width: calc(12 / var(--comp-pc) * 100vw);
  }
}
.news_body::-webkit-scrollbar-track {
  background-color: #57d384;
}
.news_body::-webkit-scrollbar-thumb {
  background-color: var(--color-secondary);
}
.news_list {
  display: grid;
  gap: 10px;
  padding-right: 28px;
}
@media screen and (min-width: 768px) {
  .news_list {
    gap: calc(20 / var(--comp-pc) * 100vw);
    padding-right: calc(20 / var(--comp-pc) * 100vw);
  }
}

.news_item {
  display: grid;
  gap: 4px;
}
@media screen and (min-width: 768px) {
  .news_item {
    display: grid;
    grid-template-columns: 90fr 508fr;
    align-items: start;
    gap: calc(34 / var(--comp-pc) * 100vw);
  }
}

.news_time {
  color: #fff;
  font-size: 14px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .news_time {
    font-size: calc(16 / var(--comp-pc) * 100vw);
    line-height: 1.5;
  }
}

.news_text {
  color: #fff;
  font-size: 14px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .news_text {
    font-size: calc(16 / var(--comp-pc) * 100vw);
  }
}
#main-contents .news_text {
  line-height: 1.5;
}
.news_text a {
  --hover-opacity: 0.6;
  text-decoration: underline;
  transition: opacity 0.3s ease-out;
}
.news_text a:focus-visible {
  opacity: var(--hover-opacity);
}
@media (any-hover: hover) {
  .news_text a:hover {
    opacity: var(--hover-opacity);
  }
}

/* ---- .promo ---- */
.promo_link {
  --hover-opacity: 0.6;
  position: relative;
  display: block;
  border: 1px solid #000;
  background-color: #fff;
  padding: 16px 13px;
  transition: opacity 0.3s ease-out;
}
@media screen and (min-width: 768px) {
  .promo_link {
    padding: calc(16 / var(--comp-pc) * 100vw) calc(17 / var(--comp-pc) * 100vw) calc(19 / var(--comp-pc) * 100vw);
  }
}
.promo_link:focus-visible {
  opacity: var(--hover-opacity);
}
@media (any-hover: hover) {
  .promo_link:hover {
    opacity: var(--hover-opacity);
  }
}
.promo_link::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 14px;
  min-width: 0;
  aspect-ratio: 1;
  background-color: var(--color-tertiary);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
@media screen and (min-width: 768px) {
  .promo_link::before {
    width: calc(20 / var(--comp-pc) * 100vw);
  }
}

.promo_title {
  color: var(--color-primary);
  font-family: var(--font-YakuHanJPs-Noto-Sans-JP);
  font-size: 18px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .promo_title {
    font-size: calc(20 / var(--comp-pc) * 100vw);
  }
}
#main-contents .wapper-special .promo_title {
  line-height: 1.25;
  text-align: center;
}

.promo_list {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .promo_list {
    gap: calc(14 / var(--comp-pc) * 100vw);
    margin-top: calc(13 / var(--comp-pc) * 100vw);
  }
}

.promo_item {
  position: relative;
  font-family: var(--font-YakuHanJPs-Noto-Sans-JP);
  font-size: 14px;
  letter-spacing: -0.05em;
  line-height: 1.5;
  text-align: left;
  padding-left: 52px;
  counter-increment: count;
}
@media screen and (min-width: 768px) {
  .promo_item {
    font-size: calc(14 / var(--comp-pc) * 100vw);
    padding-left: calc(52 / var(--comp-pc) * 100vw);
  }
}
.promo_item em {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .promo_item em {
    font-size: calc(16 / var(--comp-pc) * 100vw);
  }
}
.promo_item span {
  font-weight: 700;
}
.promo_item::before {
  content: counter(count, upper-alpha) "賞";
  position: absolute;
  top: -0.1em;
  left: 0;
  color: #fff;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  background-color: var(--color-tertiary);
  padding: 0.23em 0.47em;
}
@media screen and (min-width: 768px) {
  .promo_item::before {
    font-size: calc(16 / var(--comp-pc) * 100vw);
    padding: 0.22em 0.47em;
  }
}

/* ---- .video ---- */
.video {
  padding-block: 15px;
}
@media screen and (min-width: 768px) {
  .video {
    padding-block: calc(25 / var(--comp-pc) * 100vw);
  }
}

.video_iframe {
  --border-width: 8px;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  border: var(--border-width) solid #fff;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .video_iframe {
    --border-width: calc(10 / var(--comp-pc) * 100vw);
    width: calc(741 / var(--comp-pc) * 100vw);
  }
}

/* ---- .new ---- */
.new {
  --color-bullet: var(--color-primary);
  position: relative;
  z-index: var(--z-new);
  padding-block: 20px;
}
@media screen and (min-width: 768px) {
  .new {
    padding-block: calc(20 / var(--comp-pc) * 100vw);
  }
}

.new_body {
  background-color: #fff;
  margin-top: 18px;
  padding: 4px 14px;
}
@media screen and (min-width: 768px) {
  .new_body {
    margin-top: calc(21 / var(--comp-pc) * 100vw);
    padding: calc(40 / var(--comp-pc) * 100vw);
  }
}

@media screen and (min-width: 768px) {
  .new_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: calc(40 / var(--comp-pc) * 100vw);
  }
}

.new_item {
  --book-img-width: 100px;
  padding-block: 20px;
}
@media screen and (min-width: 768px) {
  .new_item {
    --book-img-width: calc(168 / var(--comp-pc) * 100vw);
    padding: 0;
  }
}
.new_item + .new_item {
  border-top: 1px solid var(--color-primary);
}
@media screen and (min-width: 768px) {
  .new_item + .new_item {
    border: none;
  }
}

/* ---- .energy ---- */
.energy {
  --color-bullet: var(--color-primary);
  --section-bg-top: 0.9%;
  --section-bg-height: 110%;
  --section-bg-color: #c1dc8d;
  padding-block: 20px;
}
@media screen and (min-width: 768px) {
  .energy {
    --section-bg-top: 2.5%;
    padding-block: calc(60 / var(--comp-pc) * 100vw) calc(40 / var(--comp-pc) * 100vw);
  }
}

.energy_list {
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .energy_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: calc(35 / var(--comp-pc) * 100vw);
         column-gap: calc(35 / var(--comp-pc) * 100vw);
    row-gap: calc(40 / var(--comp-pc) * 100vw);
    padding: calc(40 / var(--comp-pc) * 100vw);
  }
}

.energy_item {
  padding: 20px 13px 9px;
}
@media screen and (min-width: 768px) {
  .energy_item {
    --book-tagline-bottom: calc(-19 / var(--comp-pc) * 100vw);
    --book-tagline-left: calc(-34 / var(--comp-pc) * 100vw);
    padding: 0;
  }
}
.energy_item + .energy_item {
  padding-top: 9px;
}
@media screen and (min-width: 768px) {
  .energy_item + .energy_item {
    padding: 0;
  }
}
.energy_item:has(+ [data-highlight=true]) {
  padding-bottom: 25px;
}
@media screen and (min-width: 768px) {
  .energy_item:has(+ [data-highlight=true]) {
    padding: 0;
  }
}
.energy_item[data-highlight=true] {
  background-color: rgba(0, 128, 111, 0.1);
  padding-block: 20px;
}
@media screen and (min-width: 768px) {
  .energy_item[data-highlight=true] {
    grid-column: 1/-1;
    padding: calc(30 / var(--comp-pc) * 100vw) calc(111 / var(--comp-pc) * 100vw);
  }
}

/* ---- .story ---- */
.story {
  --color-bullet: #46b2e7;
  --section-bg-top: 1.3%;
  --section-bg-height: 120%;
  --section-bg-color: #c7e8fa;
  padding-block: 20px;
}
@media screen and (min-width: 768px) {
  .story {
    --section-bg-top: -8%;
    padding-block: calc(40 / var(--comp-pc) * 100vw);
  }
}

.story_list {
  background-color: #fff;
  padding-block: 11px;
}
@media screen and (min-width: 768px) {
  .story_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: calc(30 / var(--comp-pc) * 100vw);
         column-gap: calc(30 / var(--comp-pc) * 100vw);
    row-gap: calc(40 / var(--comp-pc) * 100vw);
    padding: calc(40 / var(--comp-pc) * 100vw);
  }
}

.story_item {
  padding: 9px 13px;
}
@media screen and (min-width: 768px) {
  .story_item {
    padding: 0;
  }
}

/* ---- .real ---- */
.real {
  --color-bullet: #fabe00;
  --section-bg-top: 0.5%;
  --section-bg-height: 110%;
  --section-bg-color: #ffedd5;
  padding-block: 20px;
}
@media screen and (min-width: 768px) {
  .real {
    --section-bg-top: 3%;
    padding-block: calc(40 / var(--comp-pc) * 100vw);
  }
}

.real_list {
  background-color: #fff;
  padding-block: 11px;
}
@media screen and (min-width: 768px) {
  .real_list {
    display: grid;
    grid-template-columns: 1fr calc(30 / var(--comp-pc) * 100vw) 1fr calc(35 / var(--comp-pc) * 100vw) 1fr calc(30 / var(--comp-pc) * 100vw) 1fr calc(35 / var(--comp-pc) * 100vw) 1fr calc(30 / var(--comp-pc) * 100vw) 1fr;
    row-gap: calc(35 / var(--comp-pc) * 100vw);
    padding: calc(40 / var(--comp-pc) * 100vw);
  }
}

.real_item {
  padding: 9px 13px;
}
@media screen and (min-width: 768px) {
  .real_item {
    padding: 0;
  }
}
@media screen and (min-width: 768px) {
  .real_item:nth-child(1) {
    grid-column: 1/4;
  }
}
@media screen and (min-width: 768px) {
  .real_item:nth-child(2) {
    grid-column: 5/8;
  }
}
@media screen and (min-width: 768px) {
  .real_item:nth-child(3) {
    grid-column: 9/12;
  }
}
@media screen and (min-width: 768px) {
  .real_item:nth-child(4) {
    grid-column: 1/6;
  }
}
@media screen and (min-width: 768px) {
  .real_item:nth-child(5) {
    grid-column: 7/12;
  }
}

/* ---- .thrill ---- */
.thrill {
  --color-bullet: #c490bf;
  --section-bg-top: 0.5%;
  --section-bg-height: 100.7%;
  --section-bg-color: #c7c7c7;
  padding-block: 20px;
}
@media screen and (min-width: 768px) {
  .thrill {
    --section-bg-top: 3.5%;
    --section-bg-height: 103.5%;
    padding-block: calc(40 / var(--comp-pc) * 100vw);
  }
}

.thrill_list {
  background-color: #fff;
  padding-block: 11px 55px;
}
@media screen and (min-width: 768px) {
  .thrill_list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: calc(35 / var(--comp-pc) * 100vw);
    padding: calc(40 / var(--comp-pc) * 100vw) calc(40 / var(--comp-pc) * 100vw) calc(50 / var(--comp-pc) * 100vw);
  }
}

.thrill_item {
  padding: 9px 13px;
}
@media screen and (min-width: 768px) {
  .thrill_item {
    padding: 0;
  }
}
@media screen and (min-width: 768px) {
  .thrill_item:nth-child(-n+3) {
    grid-column: span 2;
  }
}
@media screen and (min-width: 768px) {
  .thrill_item:nth-child(4) {
    grid-column: 2/4;
  }
}
@media screen and (min-width: 768px) {
  .thrill_item:nth-child(5) {
    grid-column: 4/6;
  }
}

/* ---- .interview ---- */
.interview {
  position: relative;
  padding-top: 17px;
}
@media screen and (min-width: 768px) {
  .interview {
    padding: calc(77 / var(--comp-pc) * 100vw) calc(55 / var(--comp-pc) * 100vw) 0;
  }
}

.interview_inner {
  position: relative;
  background-color: #fff;
  margin-top: 92px;
  padding-bottom: 34px;
}
@media screen and (min-width: 768px) {
  .interview_inner {
    margin-top: calc(22 / var(--comp-pc) * 100vw);
    padding-bottom: calc(62 / var(--comp-pc) * 100vw);
  }
}
.interview_inner::before {
  content: "";
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  width: 100%;
  height: calc(447 / var(--comp-sp) * 100vw);
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .interview_inner::before {
    height: calc(301 / var(--comp-pc) * 100vw);
  }
}

.interview_body {
  display: grid;
  grid-template: "figure . text" auto ". . ." 27px "content content content" auto ". . ." 34px "profile profile profile" auto ". . ." 30px "styled-by styled-by styled-by" auto/222fr 20px 120fr;
}
@media screen and (min-width: 768px) {
  .interview_body {
    grid-template: "figure . content" auto ". . content" calc(40 / var(--comp-pc) * 100vw) "text . content" 1fr ". . ." calc(60 / var(--comp-pc) * 100vw) "profile profile profile" auto ". . ." calc(50 / var(--comp-pc) * 100vw) "styled-by styled-by styled-by" auto/255fr calc(54 / var(--comp-pc) * 100vw) 641fr;
  }
}

.interview_figure {
  margin: -75px 0 0 -14px;
}
@media screen and (min-width: 768px) {
  .interview_figure {
    margin: calc(-117 / var(--comp-pc) * 100vw) 0 0 calc(-110 / var(--comp-pc) * 100vw);
  }
}
.interview_body > :where(.interview_figure) {
  grid-area: figure;
  align-self: start;
}

.interview_figure-img {
  width: 100%;
}
.interview_text {
  padding-top: 36px;
}
@media screen and (min-width: 768px) {
  .interview_text {
    padding: 0;
    width: calc(219 / var(--comp-pc) * 100vw);
  }
}
.interview_body > :where(.interview_text) {
  grid-area: text;
}
@media screen and (min-width: 768px) {
  .interview_body > :where(.interview_text) {
    justify-self: end;
    align-self: start;
  }
}

.interview_text-img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .interview_content {
    padding-top: calc(50 / var(--comp-pc) * 100vw);
  }
}
.interview_body > :where(.interview_content) {
  grid-area: content;
}

.interview_q {
  color: var(--color-primary);
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .interview_q {
    font-size: calc(18 / var(--comp-pc) * 100vw);
    line-height: 1.7;
  }
}
.interview_q::before {
  content: "――";
}
.interview_a + .interview_q {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .interview_a + .interview_q {
    margin-top: calc(24 / var(--comp-pc) * 100vw);
  }
}

.interview_a {
  margin-top: 14px;
}
@media screen and (min-width: 768px) {
  .interview_a {
    margin-top: calc(16 / var(--comp-pc) * 100vw);
  }
}

.interview_comment {
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .interview_comment {
    font-size: calc(18 / var(--comp-pc) * 100vw);
  }
}
.interview_comment::before {
  font-weight: 700;
}
#main-contents .interview_comment {
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  #main-contents .interview_comment {
    line-height: 1.7;
  }
}
.interview_comment[data-speaker=m]::before {
  content: "南　";
}
.interview_comment[data-speaker=d]::before {
  content: "出口　";
}
#main-contents .wapper-special .interview_comment + .interview_comment {
  margin-top: 12px;
}
@media screen and (min-width: 768px) {
  #main-contents .wapper-special .interview_comment + .interview_comment {
    margin-top: calc(17 / var(--comp-pc) * 100vw);
  }
}

.interview_styled-by {
  font-size: 13px;
}
@media screen and (min-width: 768px) {
  .interview_styled-by {
    font-size: calc(13 / var(--comp-pc) * 100vw);
  }
}
.interview_body > :where(.interview_styled-by) {
  grid-area: styled-by;
}
#main-contents .interview_styled-by {
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  #main-contents .wapper-special .interview_styled-by {
    padding-inline: calc(58 / var(--comp-pc) * 100vw);
  }
}

/* ---- .profile ---- */
@media screen and (min-width: 768px) {
  .profile {
    padding-inline: calc(58 / var(--comp-pc) * 100vw);
  }
}
.interview_body > :where(.profile) {
  grid-area: profile;
}

.profile_list {
  display: grid;
  gap: 28px;
}
@media screen and (min-width: 768px) {
  .profile_list {
    grid-template-columns: repeat(2, 1fr);
    gap: calc(50 / var(--comp-pc) * 100vw);
  }
}

.profile_item {
  display: grid;
  grid-template-columns: 140fr 210fr;
  align-items: start;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .profile_item {
    grid-template-columns: none;
    grid-template-rows: auto 1fr;
    gap: calc(16 / var(--comp-pc) * 100vw);
  }
}

@media screen and (min-width: 768px) {
  .profile_figure {
    width: calc(264 / var(--comp-pc) * 100vw);
    margin-inline: auto;
  }
}

.profile_img {
  width: 100%;
}
.profile_name {
  font-size: 18px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .profile_name {
    font-size: calc(20 / var(--comp-pc) * 100vw);
  }
}
#main-contents .profile_name {
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  #main-contents .wapper-special .profile_name {
    text-align: center;
  }
}

.profile_bio {
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .profile_bio {
    font-size: calc(16 / var(--comp-pc) * 100vw);
  }
}
#main-contents .profile_bio {
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  #main-contents .profile_bio {
    line-height: 1.6;
  }
}
#main-contents .wapper-special .profile_bio {
  margin-top: 5px;
}
@media screen and (min-width: 768px) {
  #main-contents .wapper-special .profile_bio {
    margin-top: calc(9 / var(--comp-pc) * 100vw);
  }
}

/* ---- .film ---- */
@media screen and (min-width: 768px) {
  .film_inner {
    padding-inline: calc(54 / var(--comp-pc) * 100vw);
  }
}

.film_box {
  position: relative;
  z-index: var(--z-film_box);
  display: grid;
  grid-template: "header header header" auto ". . ." 12px "figure figure figure" auto ". . ." 12px "detail . book" auto/209fr 18px 108fr;
  background-color: var(--color-primary);
  padding: 14px;
}
@media screen and (min-width: 768px) {
  .film_box {
    grid-template: "header header header header header" auto ". . . . ." calc(21 / var(--comp-pc) * 100vw) "figure . detail . book" auto/400fr calc(26 / var(--comp-pc) * 100vw) 328fr calc(22 / var(--comp-pc) * 100vw) 168fr;
    padding: calc(30 / var(--comp-pc) * 100vw) calc(53 / var(--comp-pc) * 100vw) calc(26 / var(--comp-pc) * 100vw) calc(30 / var(--comp-pc) * 100vw);
  }
}

.film_box > :where(.film_header) {
  grid-area: header;
}

.film_header-title {
  color: #fff;
  font-size: clamp(20px, 22 / var(--comp-sp) * 100vw, 22px);
  font-weight: 900;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .film_header-title {
    font-size: calc(24 / var(--comp-pc) * 100vw);
  }
}
.film_header-title span {
  font-size: clamp(13px, 14 / var(--comp-sp) * 100vw, 14px);
}
@media screen and (min-width: 768px) {
  .film_header-title span {
    font-size: calc(24 / var(--comp-pc) * 100vw);
  }
}
#main-contents .film_header-title {
  line-height: 1.6;
}

.film_header-info {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .film_header-info {
    font-size: calc(20 / var(--comp-pc) * 100vw);
  }
}
#main-contents .film_header-info {
  line-height: 1.6;
}
#main-contents .wapper-special .film_header-info {
  margin-top: 5px;
}
@media screen and (min-width: 768px) {
  #main-contents .wapper-special .film_header-info {
    margin-top: 0;
  }
}

.film_header-lead {
  color: #fff100;
  font-size: 17px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .film_header-lead {
    font-size: calc(22 / var(--comp-pc) * 100vw);
  }
}
#main-contents .film_header-lead {
  line-height: 1.5;
}
#main-contents .wapper-special .film_header-lead {
  margin-top: 6px;
}
@media screen and (min-width: 768px) {
  #main-contents .wapper-special .film_header-lead {
    margin-top: calc(8 / var(--comp-pc) * 100vw);
  }
}

.film_box > :where(.film_figure) {
  grid-area: figure;
  align-self: start;
}

.film_img {
  width: 100%;
}
.film_box > :where(.film_detail) {
  grid-area: detail;
}

.film_credits {
  text-align: left;
}
.film_credits-role {
  font-size: 15px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .film_credits-role {
    font-size: calc(18 / var(--comp-pc) * 100vw);
  }
}
.film_credits-name + .film_credits-role {
  margin-top: 8px;
}

.film_credits-name {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  margin-top: 3px;
}
@media screen and (min-width: 768px) {
  .film_credits-name {
    font-size: calc(18 / var(--comp-pc) * 100vw);
  }
}

#main-contents .film_url {
  line-height: 1;
}
#main-contents .wapper-special .film_url {
  margin-top: 13px;
}

.film_url-link {
  --hover-opacity: 0.6;
  color: #fff;
  font-size: 14px;
  text-decoration: underline;
  line-height: 1.5;
  transition: opacity 0.3s ease-out;
}
@media screen and (min-width: 768px) {
  .film_url-link {
    font-size: calc(14 / var(--comp-pc) * 100vw);
  }
}
.film_url-link:focus-visible {
  opacity: var(--hover-opacity);
  text-decoration: underline;
}
@media (any-hover: hover) {
  .film_url-link:hover {
    opacity: var(--hover-opacity);
    text-decoration: underline;
  }
}

.film_sns {
  display: grid;
  grid-template-columns: repeat(2, 32px);
  gap: 24px;
  margin-top: 23px;
}
@media screen and (min-width: 768px) {
  .film_sns {
    grid-template-columns: repeat(2, calc(32 / var(--comp-pc) * 100vw));
    gap: calc(24 / var(--comp-pc) * 100vw);
    margin-top: calc(23 / var(--comp-pc) * 100vw);
  }
}

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

.film_sns-img {
  width: 100%;
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
}
.film_sns-item[data-type=x] .film_sns-img {
  filter: brightness(0) invert(1);
}

.film_book {
  position: relative;
}
.film_box > :where(.film_book) {
  grid-area: book;
  align-self: start;
}

.film_book-link {
  display: block;
}
.film_book-img {
  width: 100%;
  border: 1px solid #fff;
}
.film_book-tagline {
  position: absolute;
  right: 0;
  bottom: -27%;
  width: 78%;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .film_book-tagline {
    right: calc(-28 / var(--comp-pc) * 100vw);
    bottom: calc(-24 / var(--comp-pc) * 100vw);
    width: calc(120 / var(--comp-pc) * 100vw);
  }
}

.film_copyright {
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .film_copyright {
    font-size: calc(14 / var(--comp-pc) * 100vw);
  }
}
#main-contents .film_copyright {
  line-height: 1.5;
}
/* ---- .sns ---- */
.sns {
  padding-block: 52px 50px;
}
@media screen and (min-width: 768px) {
  .sns {
    padding-block: calc(50 / var(--comp-pc) * 100vw);
  }
}
[data-page=sub] .sns {
  padding-block: 40px 50px;
}
@media screen and (min-width: 768px) {
  [data-page=sub] .sns {
    padding-block: calc(50 / var(--comp-pc) * 100vw);
  }
}
.sns_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}
@media screen and (min-width: 768px) {
  .sns_list {
    gap: calc(30 / var(--comp-pc) * 100vw);
  }
}

.sns_link {
  --hover-opacity: 0.6;
  display: block;
  line-height: 0;
  background-color: #fff;
  border-radius: 4px;
  padding: 10px;
  transition: opacity 0.3s ease-out;
}
@media screen and (min-width: 768px) {
  .sns_link {
    border-radius: calc(4 / var(--comp-pc) * 100vw);
    padding: calc(10 / var(--comp-pc) * 100vw);
  }
}
.sns_link:focus-visible {
  opacity: var(--hover-opacity);
}
@media (any-hover: hover) {
  .sns_link:hover {
    opacity: var(--hover-opacity);
  }
}

.sns_img {
  width: 32px;
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 768px) {
  .sns_img {
    width: calc(32 / var(--comp-pc) * 100vw);
  }
}

/* ---- .lineup ---- */
.lineup {
  position: relative;
  z-index: var(--z-lineup);
  padding-top: 5px;
}
@media screen and (min-width: 768px) {
  .lineup {
    margin-top: calc(-210 / var(--comp-pc) * 100vw);
    padding: 0;
  }
}

/* ---- .lineup-tab ---- */
.lineup-tab {
  border-color: #000;
  border-style: solid;
  border-width: 1px 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.lineup-tab_inner {
  display: flex;
  overflow-x: auto;
}
@media screen and (min-width: 768px) {
  .lineup-tab_inner {
    margin: 0;
  }
}
@media screen and (min-width: 768px) {
  .lineup-tab_inner::before {
    content: "";
    flex-shrink: 0;
    width: calc(20 / var(--comp-pc) * 100vw);
  }
}
.lineup-tab_inner::after {
  content: "";
  flex-shrink: 0;
  width: calc(20 / var(--comp-pc) * 100vw);
}
@media screen and (min-width: 768px) {
  .lineup-tab_inner > *:first-child {
    margin-left: auto;
  }
}
@media screen and (min-width: 768px) {
  .lineup-tab_inner > *:last-child {
    margin-right: auto;
  }
}

.lineup-tab_title {
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 16px;
  padding: 12px 30px 12px 16px;
}
@media screen and (min-width: 768px) {
  .lineup-tab_title {
    font-size: calc(16 / var(--comp-pc) * 100vw);
    padding: calc(12 / var(--comp-pc) * 100vw) calc(30 / var(--comp-pc) * 100vw) calc(12 / var(--comp-pc) * 100vw) 0;
  }
}
.lineup-tab_inner > :where(.lineup-tab_title) {
  flex-shrink: 0;
}

.lineup-tab_list {
  display: flex;
}
.lineup-tab_inner > :where(.lineup-tab_list) {
  flex-shrink: 0;
}

.lineup-tab_button {
  --active-color: #000;
  --active-background-color: #fff;
  --active-opacity: 1;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  opacity: 0.6;
  padding: 14px 20px;
  transition-duration: 0.3s;
  transition-property: opacity, background-color;
  transition-timing-function: ease-out;
}
@media screen and (min-width: 768px) {
  .lineup-tab_button {
    font-size: calc(15 / var(--comp-pc) * 100vw);
    padding: calc(14 / var(--comp-pc) * 100vw) calc(20 / var(--comp-pc) * 100vw);
  }
}
.lineup-tab_list > :where(.lineup-tab_button) {
  flex-shrink: 0;
}
.lineup-tab_button:focus-visible {
  color: var(--active-color);
  background-color: var(--active-background-color);
  opacity: var(--active-opacity);
}
@media (any-hover: hover) {
  .lineup-tab_button:hover {
    color: var(--active-color);
    background-color: var(--active-background-color);
    opacity: var(--active-opacity);
  }
}
.lineup-tab_button[data-current=true] {
  color: #000;
  background-color: var(--active-background-color);
  opacity: var(--active-opacity);
}

/* ---- .lineup-body ---- */
.lineup-body_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-right: 1px;
}
@media screen and (min-width: 768px) {
  .lineup-body_list {
    grid-template-columns: repeat(5, 1fr);
    margin-inline: -1px 0;
  }
}

.lineup-body_item {
  border: 1px solid #000;
  margin: -1px -1px 0 0;
}
.lineup-body_item[aria-hidden=true] {
  display: none;
}

.lineup-body_link {
  display: block;
  height: 100%;
  background-color: #c1dc8d;
  padding: 10px 7px;
}
@media screen and (min-width: 768px) {
  .lineup-body_link {
    padding: calc(18 / var(--comp-pc) * 100vw) calc(14 / var(--comp-pc) * 100vw);
  }
}

.lineup-body_figure {
  width: 94.1%;
  max-width: 150px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .lineup-body_figure {
    width: calc(146 / var(--comp-pc) * 100vw);
    max-width: none;
  }
}

.lineup-body_img {
  width: 100%;
}

.lineup-body_title {
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .lineup-body_title {
    font-size: calc(18 / var(--comp-pc) * 100vw);
  }
}
#main-contents .lineup-body_title {
  line-height: 1.1;
}
@media screen and (min-width: 768px) {
  #main-contents .lineup-body_title {
    line-height: 1.3;
  }
}
#main-contents .wapper-special .lineup-body_title {
  text-align: center;
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  #main-contents .wapper-special .lineup-body_title {
    margin-top: calc(12 / var(--comp-pc) * 100vw);
  }
}

.lineup-body_author {
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .lineup-body_author {
    font-size: calc(16 / var(--comp-pc) * 100vw);
  }
}
#main-contents .lineup-body_author {
  line-height: 1.3;
}
#main-contents .wapper-special .lineup-body_author {
  text-align: center;
  margin-top: 3px;
}
@media screen and (min-width: 768px) {
  #main-contents .wapper-special .lineup-body_author {
    margin-top: calc(5 / var(--comp-pc) * 100vw);
  }
}

/* ---- タブ非表示 ---- */
[role=tabpanel][aria-hidden=true] {
  display: none;
}

/* ---- .shop ---- */
.shop {
  position: relative;
  z-index: var(--z-shop);
  padding-top: 5px;
}
@media screen and (min-width: 768px) {
  .shop {
    margin-top: calc(-210 / var(--comp-pc) * 100vw);
    padding: 0;
  }
}

/* ---- .shop-tab ---- */
.shop-tab {
  background-color: rgba(0, 0, 0, 0.5);
}

.shop-tab_inner {
  overflow-x: auto;
}
@media screen and (min-width: 768px) {
  .shop-tab_inner {
    margin: 0 auto;
  }
}

.shop-tab_list {
  display: flex;
}
@media screen and (min-width: 768px) {
  .shop-tab_list {
    padding: 0;
  }
}
.shop-tab_list::before, .shop-tab_list::after {
  content: "";
  flex-shrink: 0;
  width: 9px;
  background-color: transparent;
}
@media screen and (min-width: 768px) {
  .shop-tab_list::before, .shop-tab_list::after {
    width: calc(25 / var(--comp-pc) * 100vw);
  }
}
@media screen and (min-width: 768px) {
  .shop-tab_list > *:first-child {
    margin-left: auto;
  }
}
@media screen and (min-width: 768px) {
  .shop-tab_list > *:last-child {
    margin-right: auto;
  }
}

.shop-tab_button {
  --active-background-color: var(--color-tertiary);
  position: relative;
  min-width: 110px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 19px 11px;
  opacity: 0.6;
  transition-property: opacity, background-color;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}
@media screen and (min-width: 768px) {
  .shop-tab_button {
    min-width: calc(110 / var(--comp-pc) * 100vw);
    font-size: calc(18 / var(--comp-pc) * 100vw);
    padding: calc(20 / var(--comp-pc) * 100vw) calc(11 / var(--comp-pc) * 100vw);
  }
}
.shop-tab_list > :where(.shop-tab_button) {
  flex-shrink: 0;
}
.shop-tab_button:focus-visible {
  opacity: 1;
}
.shop-tab_button:focus-visible::before {
  background-color: var(--active-background-color);
}
.shop-tab_button:focus-visible::after {
  background-color: var(--active-background-color);
}
@media (any-hover: hover) {
  .shop-tab_button:hover {
    opacity: 1;
  }
  .shop-tab_button:hover::before {
    background-color: var(--active-background-color);
  }
  .shop-tab_button:hover::after {
    background-color: var(--active-background-color);
  }
}
@media screen and (min-width: 768px) {
  .shop-tab_button[data-width=wide] {
    min-width: calc(130 / var(--comp-pc) * 100vw);
  }
}
.shop-tab_button[aria-selected=true] {
  opacity: 1;
}
.shop-tab_button::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 93%;
  height: 10px;
  clip-path: polygon(0 60%, 42.6% 60%, 50% 0, 57.4% 60%, 100% 60%, 100% 100%, 0 100%);
  background-color: transparent;
  margin: auto;
  transition-property: color, background-color;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}
@media screen and (min-width: 768px) {
  .shop-tab_button::before {
    height: calc(10 / var(--comp-pc) * 100vw);
  }
}
.shop-tab_button[aria-selected=true]::before {
  background-color: var(--active-background-color);
}

/* ---- .shop-body ---- */
.shop-body_prefecture {
  display: flex;
  border-color: #000;
  border-style: solid;
  border-width: 1px 0;
  overflow-x: auto;
  background-color: rgba(0, 0, 0, 0.5);
}
@media screen and (min-width: 768px) {
  .shop-body_prefecture {
    margin: 0;
    padding: 0;
  }
}
.shop-body_prefecture::before, .shop-body_prefecture::after {
  content: "";
  flex-shrink: 0;
  width: 16px;
  background-color: transparent;
}
@media screen and (min-width: 768px) {
  .shop-body_prefecture::before, .shop-body_prefecture::after {
    width: calc(25 / var(--comp-pc) * 100vw);
  }
}

.shop-body_prefecture-link {
  --hover-background-color: #fff;
  --hover-color: rgb(0 0 0 / 1);
  --hover-opacity: 1;
  min-width: 70px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 20px;
  opacity: 0.6;
  transition-property: color, background-color;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}
@media screen and (min-width: 768px) {
  .shop-body_prefecture-link {
    min-width: calc(70 / var(--comp-pc) * 100vw);
    font-size: calc(15 / var(--comp-pc) * 100vw);
    padding: calc(14 / var(--comp-pc) * 100vw) calc(20 / var(--comp-pc) * 100vw);
  }
}
.shop-body_prefecture > :where(.shop-body_prefecture-link) {
  flex-shrink: 0;
}
.shop-body_prefecture-link:focus-visible {
  color: var(--hover-color);
  background-color: var(--hover-background-color);
  opacity: var(--hover-opacity);
}
@media (any-hover: hover) {
  .shop-body_prefecture-link:hover {
    color: var(--hover-color);
    background-color: var(--hover-background-color);
    opacity: var(--hover-opacity);
  }
}
@media screen and (min-width: 768px) {
  .shop-body_prefecture-link:first-child {
    margin-left: auto;
  }
}
@media screen and (min-width: 768px) {
  .shop-body_prefecture-link:last-child {
    margin-right: auto;
  }
}

.shop-body_block {
  display: grid;
  gap: 20px;
  padding: 24px 14px 0;
}
@media screen and (min-width: 768px) {
  .shop-body_block {
    gap: calc(26 / var(--comp-pc) * 100vw);
    padding: calc(30 / var(--comp-pc) * 100vw) calc(25 / var(--comp-pc) * 100vw) 0;
  }
}

.shop-body_area {
  padding: 4px 14px 20px;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .shop-body_area {
    padding: calc(17 / var(--comp-pc) * 100vw) calc(28 / var(--comp-pc) * 100vw) calc(28 / var(--comp-pc) * 100vw);
  }
}

.shop-body_title {
  font-size: 18px;
  font-weight: 700;
  border-bottom: 1px solid #000;
  padding-block: 12px;
}
@media screen and (min-width: 768px) {
  .shop-body_title {
    font-size: calc(22 / var(--comp-pc) * 100vw);
    padding-block: calc(14 / var(--comp-pc) * 100vw);
  }
}
#main-contents .shop-body_title {
  line-height: normal;
}

.shop-body_list {
  display: grid;
  gap: 16px;
  margin-top: 14px;
}
@media screen and (min-width: 768px) {
  .shop-body_list {
    gap: calc(20 / var(--comp-pc) * 100vw);
    margin-top: calc(17 / var(--comp-pc) * 100vw);
  }
}

@media screen and (min-width: 768px) {
  .shop-body_item {
    display: grid;
    grid-template-columns: 1fr 2.2fr;
    gap: calc(20 / var(--comp-pc) * 100vw);
  }
}

.shop-body_link {
  --hover-opacity: 0.6;
  line-height: 1;
  transition: opacity 0.3s ease-out;
}
@media screen and (min-width: 768px) {
  .shop-body_link {
    font-size: calc(16 / var(--comp-pc) * 100vw);
    line-height: 1.45;
  }
}
.shop-body_link:focus-visible {
  opacity: var(--hover-opacity);
}
@media (any-hover: hover) {
  .shop-body_link:hover {
    opacity: var(--hover-opacity);
  }
}

.shop-body_name {
  font-size: 15px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .shop-body_name {
    font-size: calc(16 / var(--comp-pc) * 100vw);
    font-weight: normal;
  }
}
#main-contents .shop-body_name {
  line-height: 1.45;
}

.shop-body_address {
  font-size: 15px;
}
@media screen and (min-width: 768px) {
  .shop-body_address {
    font-size: calc(15 / var(--comp-pc) * 100vw);
  }
}
#main-contents .shop-body_address {
  line-height: 1;
}
#main-contents .wapper-special .shop-body_address {
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  #main-contents .wapper-special .shop-body_address {
    margin-top: 0;
  }
}

/* ---- スクロールバー非表示 ---- */
.dragscroll {
  -ms-overflow-style: none !important;
  scrollbar-width: none !important;
}

.dragscroll::-webkit-scrollbar {
  display: none;
}