@font-face {
  font-family: "Yomogi";
  src: url("./assets/fonts/Yomogi-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --ink: #101010;
  --paper: #fffdf8;
  --red: #ed2b13;
  --red_dark: #a91409;
  --blue: #0868d7;
  --yellow: #ffd600;
  --cream: #fff4d2;
  --line: #171717;
  --muted: #5e5b56;
  --content: 1180px;
  --header_home_height_mobile: 64px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color: var(--ink);
  background: var(--paper);
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

header,
nav,
main,
section,
article,
aside,
footer,
figure,
figcaption,
search,
hgroup,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: inherit;
  font-weight: inherit;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

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

.page_home {
  min-height: 100vh;
  overflow: hidden;
  background: var(--paper);
}

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

.header_home {
  position: relative;
  z-index: 50;
  background: rgba(255, 253, 248, 0.97);
}

.header_layout_outer {
  width: min(calc(100% - 40px), var(--content));
  min-height: 76px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand_home {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  color: var(--ink);
  text-decoration: none;
}

.brand_home_mark {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.brand_home_wordmark {
  display: block;
  width: 210px;
  height: auto;
  object-fit: contain;
}

.global_nav_outer {
  display: flex;
  align-items: center;
  gap: 24px;
}

.global_nav_link,
.global_nav_cta {
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.global_nav_link {
  border-bottom: 2px solid transparent;
}

.global_nav_link:hover,
.global_nav_link:focus-visible {
  border-color: var(--red);
}

.global_nav_cta {
  padding: 10px 18px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  color: #fff;
  background: var(--red);
  box-shadow: 3px 3px 0 var(--ink);
  transition: color 140ms ease, background-color 140ms ease, transform 140ms ease, box-shadow 140ms ease;
}

.global_nav_cta:hover,
.global_nav_cta:focus-visible {
  color: #fff;
  background: var(--blue);
  transform: translate(1px, 1px);
  box-shadow: 2px 2px 0 var(--ink);
}

.nav_toggle {
  display: none;
  width: 46px;
  height: 42px;
  padding: 0;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ink);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
}

.nav_toggle_slot {
  display: none;
}

.nav_toggle_icon,
.nav_toggle_icon::before,
.nav_toggle_icon::after {
  display: block;
  width: 22px;
  height: 3px;
  border-radius: 2px;
  background: currentColor;
}

.nav_toggle_icon {
  position: relative;
}

.nav_toggle_icon::before,
.nav_toggle_icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav_toggle_icon::before {
  top: -7px;
}

.nav_toggle_icon::after {
  top: 7px;
}

.hero_home {
  position: relative;
  background:
    radial-gradient(circle at 76% 28%, rgba(255, 214, 0, 0.28), transparent 28%),
    linear-gradient(135deg, #fffdf8 0%, #fffdf8 55%, #fff4d2 100%);
}

.hero_home::before,
.hero_home::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.hero_home::before {
  inset: 0;
  opacity: 0.1;
  background-image: radial-gradient(var(--red) 1.15px, transparent 1.15px);
  background-size: 9px 9px;
  mask-image: linear-gradient(90deg, transparent 12%, #000 65%);
}

.hero_home::after {
  width: 360px;
  height: 360px;
  right: -130px;
  bottom: 30px;
  border: 34px solid var(--red);
  border-radius: 50%;
  opacity: 0.08;
}

.hero_columns_outer {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), var(--content));
  min-height: 670px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.92fr);
  align-items: center;
  gap: clamp(34px, 6vw, 88px);
  padding-block: 72px 78px;
}

.hero_copy {
  position: relative;
  z-index: 3;
}

.spoiler_note {
  display: inline-block;
  margin: 0 0 28px;
  padding: 7px 13px;
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  background: var(--yellow);
  font-size: 0.84rem;
  font-weight: 900;
  transform: rotate(-1deg);
}

.hero_eyebrow,
.section_kicker,
.closing_eyebrow {
  margin: 0 0 10px;
  font-size: 0.94rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.hero_eyebrow::after,
.section_kicker::after {
  content: "";
  display: inline-block;
  width: 68px;
  height: 4px;
  margin-left: 12px;
  vertical-align: 0.25em;
  background: var(--red);
  transform: skewX(-24deg);
}

.heading_hero {
  max-width: 650px;
}

.heading_hero {
  font-size: clamp(2.75rem, 4.3vw, 4.55rem);
  font-weight: 1000;
  line-height: 1.07;
  letter-spacing: -0.08em;
}

.heading_hero span {
  display: block;
  color: var(--red);
  font-size: 1.16em;
  text-shadow: 3px 3px 0 #fff, 5px 5px 0 rgba(16, 16, 16, 0.12);
}

.hero_lead {
  max-width: 580px;
  margin: 26px 0 0;
  color: #34312e;
  font-size: clamp(1rem, 1.7vw, 1.15rem);
  font-weight: 700;
}

.hero_action_outer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 22px;
  margin-top: 34px;
}

.button_primary {
  display: inline-flex;
  min-height: 58px;
  padding: 13px 24px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 3px solid var(--ink);
  border-radius: 9px;
  color: #fff;
  background: var(--red);
  box-shadow: 6px 6px 0 var(--ink);
  font-size: clamp(1rem, 2vw, 1.18rem);
  font-weight: 900;
  text-decoration: none;
  transition: color 120ms ease, background-color 120ms ease, transform 120ms ease, box-shadow 120ms ease;
}

.button_primary span {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 1.3em;
  line-height: 1;
}

.button_primary:hover,
.button_primary:focus-visible {
  color: #fff;
  background: var(--blue);
  transform: translate(3px, 3px);
  box-shadow: 3px 3px 0 var(--ink);
}

.hero_action_note {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 800;
}

.hero_action_note span {
  color: var(--red);
}

.hero_visual {
  position: relative;
  min-height: 540px;
}

.speed_lines {
  position: absolute;
  inset: 10% -10% 0 -15%;
  opacity: 0.16;
  background: repeating-conic-gradient(from 70deg at 58% 58%, transparent 0deg 4deg, var(--red) 4.4deg 4.9deg);
  clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 95%);
}

.phone_mockup {
  position: absolute;
  z-index: 2;
  top: 2%;
  left: 16%;
  width: min(69%, 338px);
  padding: 15px 10px 16px;
  border: 4px solid #050505;
  border-radius: 42px;
  background: #161616;
  box-shadow: 22px 24px 0 rgba(16, 16, 16, 0.14);
  transform: rotate(5deg);
}

.phone_speaker {
  position: absolute;
  z-index: 2;
  top: 7px;
  left: 50%;
  width: 72px;
  height: 8px;
  border-radius: 999px;
  background: #050505;
  transform: translateX(-50%);
}

.phone_cover {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 28px;
  object-fit: cover;
}

.ranking_card {
  position: absolute;
  z-index: 4;
  right: -2%;
  bottom: 4%;
  width: min(73%, 350px);
  padding: 17px 18px;
  border: 3px solid var(--ink);
  border-radius: 12px;
  background: rgba(255, 253, 248, 0.97);
  box-shadow: 8px 8px 0 var(--ink);
  transform: rotate(-3deg);
}

.ranking_card_title {
  margin: 0 0 8px;
  font-size: 0.8rem;
  font-weight: 900;
  text-align: center;
}

.ranking_row_outer {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  border-top: 1px dashed #b8b0a4;
  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1.25;
}

.ranking_badge {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.55);
  font-weight: 1000;
}

.ranking_badge_gold {
  background: linear-gradient(135deg, #fff4a8, #f4b900);
}

.ranking_badge_silver {
  background: linear-gradient(135deg, #fff, #a9bdc7);
}

.ranking_badge_bronze {
  background: linear-gradient(135deg, #ffd0a0, #b55b1a);
}

.hero_footer_strip {
  position: relative;
  z-index: 2;
  padding: 18px 20px;
  color: #fff;
  background: var(--ink);
  text-align: center;
  transform: skewY(-1deg);
  transform-origin: left center;
}

.hero_footer_text {
  margin: 0;
  transform: skewY(1deg);
}

.hero_footer_strip strong {
  margin-right: 24px;
  font-size: clamp(1.25rem, 3vw, 2rem);
}

.hero_footer_strip strong::after {
  content: "";
  display: inline-block;
  width: 88px;
  height: 5px;
  margin-left: 8px;
  background: var(--red);
  vertical-align: 0.15em;
}

.hero_footer_strip span {
  color: #d8d8d8;
  font-size: 0.9rem;
}

.hero_home {
  padding: 0;
  background: #fffdf8;
}

.hero_home::before,
.hero_home::after {
  content: none;
}

.hero_accessible {
  position: relative;
}

.hero_art_outer {
  width: 100%;
  margin-inline: auto;
}

.hero_art_inner {
  --hero_black_start: 61.1%;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    to bottom,
    #fffaf0 0 var(--hero_black_start),
    #080808 var(--hero_black_start) 100%
  );
}

.hero_art_inner::before,
.hero_art_inner::after {
  content: none;
}

.hero_art_stage {
  position: relative;
  z-index: 1;
  width: min(100%, 1278px);
  aspect-ratio: 864 / 1150;
  margin-inline: auto;
  overflow: hidden;
  box-shadow: none;
}

.hero_art_image {
  display: block;
  width: 100%;
}

.hero_art_image {
  height: 100%;
  background-image: url("./assets/home/hero_home_desktop_003.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% auto;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0 6.15%, #000 6.2% 100%);
  mask-image: linear-gradient(to bottom, transparent 0 6.15%, #000 6.2% 100%);
}

.hero_foreground_image {
  display: none;
}

.hero_spoiler_overlay {
  position: absolute;
  z-index: 3;
  top: 7.8%;
  left: 4.2%;
  margin: 0;
  padding: 6px 11px;
  border: 2px solid var(--ink);
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 3px 3px 0 var(--ink);
  font-size: clamp(0.62rem, 1.25vw, 0.86rem);
  font-weight: 1000;
  line-height: 1.3;
  transform: rotate(-1deg);
}

.hero_art_cta {
  position: absolute;
  z-index: 4;
  top: 48.5%;
  left: 4.2%;
  width: 36.5%;
  height: 6.6%;
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

.hero_art_cta::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  border-radius: inherit;
  background-image: url("./assets/home/hero_cta_desktop_blue_001.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease;
}

.hero_art_cta:hover::before,
.hero_art_cta:focus-visible::before {
  opacity: 1;
}

.hero_art_cta:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.hero_art_cta_label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  opacity: 0;
  color: #fff;
  font-size: clamp(0.72rem, 1.55vw, 1.28rem);
  font-weight: 1000;
  line-height: 1;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.18);
  white-space: nowrap;
  pointer-events: none;
  transition: opacity 120ms ease;
}

.hero_art_cta:hover .hero_art_cta_label,
.hero_art_cta:focus-visible .hero_art_cta_label {
  opacity: 0;
}

.hero_art_cta_label b {
  display: grid;
  width: 1.35em;
  height: 1.35em;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 1.08em;
  line-height: 1;
}

.hero_steps_cta {
  display: none;
}

.hero_ellipsis_patch {
  position: absolute;
  z-index: 5;
  top: 93.1%;
  right: 3.7%;
  width: 6.2%;
  height: 2.2%;
  border-radius: 10px;
  background: #fffaf0;
  pointer-events: none;
}

.header_home {
  position: absolute;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 253, 248, 0.98);
}

.header_layout_outer {
  width: min(calc(100% - 40px), var(--content));
  min-height: 82px;
}

.new_series {
  position: relative;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(255, 214, 0, 0.14), transparent 35%),
    var(--red);
  box-shadow: inset 0 14px 0 var(--ink);
}

.new_series::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: repeating-linear-gradient(135deg, transparent 0 16px, #fff 16px 18px);
}

.new_series_layout_outer {
  position: relative;
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.72fr);
  align-items: center;
  gap: clamp(48px, 5vw, 72px);
  padding-block: 100px;
}

.section_kicker_light {
  color: var(--yellow);
}

.section_kicker_light::after {
  background: #fff;
}

.heading_new_series,
.heading_how_to,
.heading_next_issue,
.heading_closing {
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  font-weight: 1000;
  line-height: 1.2;
  letter-spacing: -0.06em;
}

.heading_new_series {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
}

.heading_new_series_line {
  white-space: nowrap;
}

.heading_new_series_emphasis {
  color: var(--yellow);
  text-shadow: 3px 3px 0 var(--ink);
}

.new_series_lead {
  max-width: 650px;
  margin: 24px 0 0;
  font-weight: 700;
}

.genre_flow_outer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.genre_flow_outer span {
  padding: 7px 12px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.16);
  font-size: 0.82rem;
  font-weight: 900;
}

.genre_flow_outer strong {
  font-size: 1.8rem;
}

.genre_flow_outer .genre_flow_result {
  border-color: var(--ink);
  border-radius: 8px;
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 4px 4px 0 var(--ink);
  line-height: 1.25;
  text-align: center;
}

.editor_voice {
  margin: 26px 0 0;
  padding: 14px 17px;
  border-left: 6px solid var(--yellow);
  background: rgba(0, 0, 0, 0.24);
  font-size: 0.9rem;
  font-weight: 800;
}

.new_series_visual {
  position: relative;
  justify-self: center;
}

.new_series_cover_frame {
  width: min(100%, 330px);
  padding: 8px;
  border: 4px solid var(--ink);
  background: #fff;
  box-shadow: 14px 14px 0 var(--ink);
  transform: rotate(3deg);
}

.new_series_cover {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.new_series_stamp {
  position: absolute;
  right: -35px;
  bottom: 38px;
  display: grid;
  width: 96px;
  height: 96px;
  place-items: center;
  border: 5px solid #fff;
  border-radius: 50%;
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 0 0 0 5px var(--ink);
  font-size: 1.1rem;
  font-weight: 1000;
  line-height: 1.1;
  text-align: center;
  transform: rotate(-10deg);
}

.how_to_outer {
  position: relative;
  background: var(--paper);
}

.how_to_outer::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -70px;
  top: 65px;
  border: 24px solid var(--yellow);
  border-radius: 50%;
  background:
    linear-gradient(var(--ink), var(--ink)) center / 2px 54% no-repeat,
    linear-gradient(90deg, var(--ink), var(--ink)) center / 54% 2px no-repeat,
    radial-gradient(circle, var(--ink) 0 5px, transparent 6px);
  opacity: 0.48;
}

.how_to_inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
  padding-block: 100px;
  text-align: center;
}

.how_to_lead {
  max-width: 720px;
  margin: 18px auto 0;
  color: var(--muted);
  font-weight: 700;
}

.steps_outer {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.steps_inner {
  min-width: 0;
}

.step_cell {
  min-width: 0;
}

.step_card {
  position: relative;
  height: 100%;
  min-height: 330px;
  padding: 46px 28px 30px;
  border: 3px solid var(--ink);
  background: #fff;
  box-shadow: 8px 8px 0 var(--ink);
}

.step_number {
  position: absolute;
  top: -20px;
  left: 50%;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 3px solid var(--ink);
  border-radius: 50%;
  color: #fff;
  background: var(--red);
  font-size: 1.4rem;
  font-weight: 1000;
  transform: translateX(-50%);
}

.step_icon {
  width: 130px;
  height: 105px;
  margin: 0 auto 22px;
}

.step_icon_books_outer {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 6px;
}

.step_icon_books_inner {
  display: block;
  width: 30px;
  border: 3px solid var(--ink);
  border-radius: 3px;
  box-shadow: 4px 4px 0 var(--ink);
}

.step_icon_books_outer .book_red {
  height: 76px;
  background: var(--red);
  transform: rotate(-7deg);
}

.step_icon_books_outer .book_yellow {
  height: 92px;
  background: var(--yellow);
}

.step_icon_books_outer .book_blue {
  height: 68px;
  background: #43c7dc;
  transform: rotate(8deg);
}

.step_icon_rank_outer {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 6px;
}

.step_icon_rank_inner {
  display: grid;
  width: 35px;
  place-items: center;
  border: 3px solid var(--ink);
  border-bottom: 0;
  font-weight: 1000;
}

.step_icon_rank_outer .podium_gold {
  position: relative;
  height: 98px;
  background: var(--yellow);
}

.step_icon_rank_outer .podium_gold::before {
  content: "👑";
  position: absolute;
  top: -39px;
  left: 50%;
  font-size: 2.15rem;
  line-height: 1;
  filter: drop-shadow(0 2px 0 #8b5700) drop-shadow(0 0 5px #fff2a3);
  transform: translateX(-50%);
}

.step_icon_rank_outer .podium_gold::after {
  content: "✦";
  position: absolute;
  top: -34px;
  left: calc(50% - 29px);
  color: #fff4a3;
  font-size: 0.9rem;
  line-height: 1;
  text-shadow: 43px 5px 0 #ffd600, 23px -9px 0 #fff;
}

.step_icon_rank_outer .podium_silver {
  height: 72px;
  background: #d7dfe3;
}

.step_icon_rank_outer .podium_bronze {
  height: 52px;
  background: #dd8848;
}

.step_icon_cover {
  display: grid;
  place-items: center;
  border: 4px solid var(--ink);
  color: #fff;
  padding-top: 9px;
  background: linear-gradient(to bottom, var(--yellow) 0 14px, var(--red) 14px 100%);
  box-shadow: 8px 8px 0 var(--ink);
  font-size: 1.25rem;
  font-weight: 1000;
  line-height: 1.05;
}

.heading_step {
  font-size: 1.3rem;
  font-weight: 1000;
}

.step_text {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  text-align: left;
}

.editor_judgement_outer {
  width: min(100%, 980px);
  margin: 64px auto 42px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  overflow: hidden;
  border: 3px solid var(--ink);
  background: var(--ink);
  box-shadow: 10px 10px 0 var(--red);
  text-align: left;
}

.editor_judgement_inner {
  min-width: 0;
  padding: clamp(28px, 4vw, 46px);
}

.editor_judgement_copy {
  color: #fff;
  background:
    repeating-linear-gradient(135deg, transparent 0 14px, rgba(255, 255, 255, 0.045) 14px 16px),
    var(--ink);
}

.editor_judgement_kicker {
  margin: 0 0 10px;
  color: var(--yellow);
  font-size: 0.86rem;
  font-weight: 900;
}

.heading_editor_judgement {
  font-size: clamp(1.65rem, 3.2vw, 2.7rem);
  font-weight: 1000;
  line-height: 1.18;
  letter-spacing: -0.06em;
}

.editor_judgement_lead {
  margin: 18px 0 0;
  font-size: 0.92rem;
  font-weight: 700;
}

.editor_judgement_result {
  color: var(--ink);
  background: var(--yellow);
}

.editor_judgement_metrics_outer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.editor_judgement_metrics_inner {
  display: flex;
  min-width: 0;
  padding: 13px 10px;
  flex-direction: column;
  border: 2px solid var(--ink);
  background: #fff;
  text-align: center;
}

.editor_judgement_metrics_inner small {
  font-size: 0.72rem;
  font-weight: 900;
}

.editor_judgement_metrics_inner strong {
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  font-weight: 1000;
  line-height: 1.25;
}

.editor_judgement_voice {
  margin: 18px 0 0;
  padding: 16px;
  border: 2px solid var(--ink);
  background: #fff4d2;
  box-shadow: 5px 5px 0 var(--ink);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.55;
}

.editor_judgement_note {
  margin: 17px 0 0;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.5;
}

.how_to_action {
  margin-top: 50px;
}

.next_issue {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 84% 38%, rgba(237, 43, 19, 0.32), transparent 34%),
    #101010;
}

.next_issue_layout_outer {
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(45px, 7vw, 90px);
  padding-block: 105px;
}

.heading_next_issue {
  color: var(--yellow);
}

.next_issue_lead {
  margin: 22px 0 0;
  color: #e1dfda;
  font-weight: 700;
}

.next_issue_points {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.next_issue_point {
  position: relative;
  margin-top: 10px;
  padding-left: 25px;
  font-size: 0.92rem;
  font-weight: 900;
}

.next_issue_point::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--yellow);
}

.issue_shelf_outer {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: end;
  gap: 16px;
  perspective: 1200px;
}

.issue_cell {
  min-width: 0;
}

.issue_cell_one {
  transform: translateY(20px) rotate(-4deg);
}

.issue_cell_two {
  transform: translateY(4px) rotate(-1deg);
}

.issue_cell_three {
  transform: translateY(4px) rotate(1deg);
}

.issue_cell_four {
  transform: translateY(20px) rotate(4deg);
}

.issue_cover {
  padding: 5px;
  border: 3px solid #fff;
  background: #fff;
  box-shadow: 8px 10px 0 rgba(237, 43, 19, 0.78);
}

.issue_cover_image {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.issue_label {
  margin-top: 16px;
  color: var(--yellow);
  font-weight: 1000;
  text-align: center;
}

.editor_voice_bubble {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  width: clamp(150px, 15vw, 230px);
  min-height: 92px;
  padding: 19px 22px;
  border: 4px solid var(--ink);
  border-radius: 54% 46% 48% 52% / 46% 55% 45% 54%;
  color: var(--ink);
  background: #fffef8;
  box-shadow: 6px 7px 0 rgba(16, 16, 16, 0.38);
  font-family: "Yomogi", "Yu Gothic", "YuGothic", cursive;
  font-size: clamp(0.92rem, 1.25vw, 1.18rem);
  font-weight: 700;
  line-height: 1.42;
  text-align: center;
  pointer-events: none;
}

.editor_voice_bubble::before,
.editor_voice_bubble::after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 0;
  height: 0;
  margin-left: -13px;
  border-style: solid;
  background: transparent;
}

.editor_voice_bubble::after {
  z-index: 3;
  margin-left: -9px;
}

.editor_voice_bubble p {
  margin: 0;
}

.editor_voice_next_top {
  --tail_left: 23%;
  top: 7%;
  right: 6%;
  transform: rotate(3deg);
}

.editor_voice_next_top::after {
  left: var(--tail_left);
  bottom: -15px;
  border-width: 12px 9px 0;
  border-color: #fffef8 transparent transparent;
}

.editor_voice_next_top::before {
  left: var(--tail_left);
  bottom: -25px;
  border-width: 18px 13px 0;
  border-color: var(--ink) transparent transparent;
}

.editor_voice_next_bottom {
  --tail_left: 78%;
  left: 31%;
  bottom: 6%;
  transform: rotate(-3deg);
}

.editor_voice_next_bottom::after {
  left: var(--tail_left);
  top: -15px;
  border-width: 0 9px 12px;
  border-color: transparent transparent #fffef8;
}

.editor_voice_next_bottom::before {
  left: var(--tail_left);
  top: -25px;
  border-width: 0 13px 18px;
  border-color: transparent transparent var(--ink);
}

.editor_voice_next_side {
  --tail_left: 22%;
  right: 4%;
  bottom: 4%;
  transform: rotate(4deg);
}

.editor_voice_next_side::after {
  left: var(--tail_left);
  top: -15px;
  border-width: 0 9px 12px;
  border-color: transparent transparent #fffef8;
}

.editor_voice_next_side::before {
  left: var(--tail_left);
  top: -25px;
  border-width: 0 13px 18px;
  border-color: transparent transparent var(--ink);
}

.closing_outer {
  position: relative;
  color: #fff;
  background: var(--red);
  text-align: center;
}

.editor_voice_closing_top {
  --tail_left: 76%;
  top: 7%;
  left: 4%;
  transform: rotate(-4deg);
}

.editor_voice_closing_top::after {
  left: var(--tail_left);
  bottom: -15px;
  border-width: 12px 9px 0;
  border-color: #fffef8 transparent transparent;
}

.editor_voice_closing_top::before {
  left: var(--tail_left);
  bottom: -25px;
  border-width: 18px 13px 0;
  border-color: var(--ink) transparent transparent;
}

.editor_voice_closing_bottom {
  --tail_left: 77%;
  left: 6%;
  bottom: 5%;
  transform: rotate(3deg);
}

.editor_voice_closing_bottom::after {
  left: var(--tail_left);
  top: -15px;
  border-width: 0 9px 12px;
  border-color: transparent transparent #fffef8;
}

.editor_voice_closing_bottom::before {
  left: var(--tail_left);
  top: -25px;
  border-width: 0 13px 18px;
  border-color: transparent transparent var(--ink);
}

.editor_voice_closing_side {
  --tail_left: 22%;
  right: 5%;
  bottom: 6%;
  transform: rotate(-3deg);
}

.editor_voice_closing_side::after {
  left: var(--tail_left);
  top: -15px;
  border-width: 0 9px 12px;
  border-color: transparent transparent #fffef8;
}

.editor_voice_closing_side::before {
  left: var(--tail_left);
  top: -25px;
  border-width: 0 13px 18px;
  border-color: transparent transparent var(--ink);
}

.closing_outer::before,
.closing_outer::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 100%;
  top: 0;
  opacity: 0.18;
  background: repeating-linear-gradient(75deg, transparent 0 8px, #fff 8px 10px);
}

.closing_outer::before {
  left: 0;
}

.closing_outer::after {
  right: 0;
  transform: scaleX(-1);
}

.closing_inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), 840px);
  margin-inline: auto;
  padding-block: 90px;
}

.closing_eyebrow {
  color: var(--yellow);
}

.heading_closing {
  text-shadow: 3px 3px 0 var(--ink);
}

.closing_lead {
  margin: 18px 0 0;
  font-weight: 700;
}

.button_primary_light {
  margin-top: 30px;
  color: var(--ink);
  background: var(--yellow);
}

.closing_note {
  display: block;
  margin-top: 24px;
  color: #ffe3de;
}

.footer_layout_outer {
  display: flex;
  width: min(calc(100% - 40px), var(--content));
  min-height: 98px;
  margin-inline: auto;
  align-items: center;
  gap: 22px;
  color: #605c56;
  font-size: 0.78rem;
}

.footer_brand {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 1000;
  text-decoration: none;
}

.footer_summary {
  margin: 0;
}

.footer_contact {
  margin-left: auto;
}

@media (min-width: 1279px) {
  .hero_art_inner::before,
  .hero_art_inner::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    pointer-events: none;
  }

  .hero_art_inner::before {
    z-index: 0;
    top: 0;
    height: var(--hero_black_start);
    background-image:
      linear-gradient(
        to bottom,
        #fffaf0 0 9.72%,
        #ed2b13 9.72% 10.04%,
        transparent 10.04% 100%
      ),
      url("./assets/home/hero_effect_background_001.png");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% 100%, cover;
  }

  .hero_art_inner::after {
    z-index: 3;
    top: calc(var(--hero_black_start) - clamp(21px, 1.7vw, 32px));
    height: clamp(42px, 3.4vw, 64px);
    background-image: url("./assets/home/hero_brush_stroke_002.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
  }

  .hero_art_image {
    -webkit-mask-image: linear-gradient(
      to bottom,
      transparent 0 62%,
      #000 62.05% 100%
    );
    mask-image: linear-gradient(
      to bottom,
      transparent 0 62%,
      #000 62.05% 100%
    );
  }

  .hero_foreground_image {
    display: block;
    position: absolute;
    z-index: 2;
    inset: 0;
    pointer-events: none;
  }

  .hero_copy_image,
  .hero_phone_image,
  .hero_ranking_image {
    position: absolute;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }

  .hero_copy_image {
    z-index: 1;
    top: 10.8%;
    left: 2.2%;
    width: 46%;
    aspect-ratio: 679 / 909;
    background-image: url("./assets/home/hero_copy_desktop_001.png");
  }

  .hero_phone_image {
    z-index: 2;
    top: 6.1%;
    left: 47.5%;
    width: 40.5%;
    aspect-ratio: 541 / 946;
    background-image: url("./assets/home/hero_phone_desktop_001.png");
  }

  .hero_ranking_image {
    z-index: 3;
    top: 24.5%;
    right: 1.8%;
    width: 30.5%;
    aspect-ratio: 797 / 915;
    background-image: url("./assets/home/hero_ranking_desktop_001.png");
  }

  .hero_art_cta {
    top: 46.3%;
    left: 4.1%;
    width: 35.2%;
    height: 6%;
  }

  .hero_art_cta::before {
    background-image: url("./assets/home/hero_cta_wide_blue_001.png");
  }
}

@media (max-width: 900px) {
  .editor_voice_bubble {
    display: none;
  }

  .header_home {
    width: 100%;
  }

  .header_layout_outer {
    width: 100%;
    min-height: 64px;
    padding-inline: 20px;
    justify-content: flex-start;
    gap: 0;
  }

  .hero_home {
    padding-top: max(0px, calc(var(--header_home_height_mobile) - 8.2vw));
  }

  .brand_home {
    gap: 6px;
  }

  .brand_home_mark {
    width: 38px;
    height: 38px;
  }

  .brand_home_wordmark {
    width: clamp(145px, 45vw, 190px);
  }

  .has_js .nav_toggle_slot {
    display: block;
    margin-left: auto;
  }

  .nav_slot {
    width: 0;
  }

  .has_js .nav_toggle {
    display: flex;
  }

  .global_nav_outer {
    position: absolute;
    top: calc(100% + 3px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 20px;
    border-bottom: 3px solid var(--ink);
    background: var(--paper);
  }

  .has_js .global_nav_outer {
    display: none;
  }

  .has_js .global_nav_outer.is_open {
    display: flex;
  }

  .has_js .global_nav_outer.is_open .global_nav_link,
  .has_js .global_nav_outer.is_open .global_nav_cta {
    opacity: 1;
  }

  .global_nav_link,
  .global_nav_cta {
    padding: 12px 10px;
    text-align: center;
  }

  .global_nav_cta {
    margin-top: 6px;
  }

  .hero_columns_outer {
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
    padding-block: 52px 65px;
  }

  .hero_visual {
    width: min(100%, 560px);
    min-height: 510px;
    margin-inline: auto;
  }

  .new_series_layout_outer,
  .next_issue_layout_outer {
    grid-template-columns: minmax(0, 1fr);
  }

  .new_series_copy,
  .next_issue_copy {
    max-width: 720px;
  }

  .new_series_visual {
    width: min(100%, 380px);
  }

  .steps_outer {
    grid-template-columns: minmax(0, 1fr);
    max-width: 560px;
    margin-inline: auto;
    gap: 48px;
  }

  .editor_judgement_outer {
    grid-template-columns: minmax(0, 1fr);
  }

  .step_card {
    min-height: 0;
  }

  .issue_shelf_outer {
    width: min(100%, 680px);
  }
}

@media (max-width: 560px) {
  .header_layout_outer,
  .hero_columns_outer,
  .new_series_layout_outer,
  .how_to_inner,
  .next_issue_layout_outer,
  .closing_inner,
  .footer_layout_outer {
    width: min(calc(100% - 28px), var(--content));
  }

  .brand_home_mark {
    width: 38px;
    height: 38px;
  }

  .brand_home_wordmark {
    width: clamp(138px, 44vw, 175px);
  }

  .header_layout_outer {
    width: 100%;
    padding-inline: 18px;
  }

  .hero_home {
    padding-top: max(0px, calc(var(--header_home_height_mobile) - 9.5vw));
  }

  .hero_art_stage {
    aspect-ratio: 816 / 1250;
  }

  .hero_art_image {
    background-image: url("./assets/home/hero_home_mobile_003.png");
  }

  .hero_spoiler_overlay {
    display: block;
    top: 7.7%;
    left: 4.2%;
    padding: 4px 7px;
    font-size: 0.54rem;
  }

  .hero_art_cta {
    top: 39.2%;
    left: 4.2%;
    width: 41%;
    height: 6.4%;
  }

  .hero_art_cta::before {
    background-image: url("./assets/home/hero_cta_mobile_blue_001.png");
  }

  .hero_steps_cta {
    position: absolute;
    z-index: 6;
    top: 93.55%;
    left: 17.7%;
    display: grid;
    width: 64.7%;
    height: 4.55%;
    place-items: center;
    overflow: hidden;
    border-radius: 999px;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
  }

  .hero_steps_cta::before {
    position: absolute;
    z-index: 0;
    inset: 0;
    border-radius: inherit;
    background-image: url("./assets/home/hero_steps_cta_mobile_blue_001.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    content: "";
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease;
  }

  .hero_steps_cta:hover::before,
  .hero_steps_cta:focus-visible::before {
    opacity: 1;
  }

  .hero_steps_cta:focus-visible {
    outline: 3px solid var(--yellow);
    outline-offset: -3px;
  }

  .hero_steps_cta_label {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.55em;
    opacity: 0;
    color: #fff;
    font-size: clamp(0.72rem, 3.6vw, 1rem);
    font-weight: 1000;
    line-height: 1;
    text-shadow: 0 2px 0 rgba(0, 0, 0, 0.18);
    white-space: nowrap;
    pointer-events: none;
    transition: opacity 120ms ease;
  }

  .hero_steps_cta:hover .hero_steps_cta_label,
  .hero_steps_cta:focus-visible .hero_steps_cta_label {
    opacity: 0;
  }

  .hero_steps_cta_label b {
    display: grid;
    width: 1.35em;
    height: 1.35em;
    place-items: center;
    border: 2px solid currentColor;
    border-radius: 50%;
    font-size: 1.08em;
    line-height: 1;
  }

  .hero_ellipsis_patch {
    top: 90.35%;
    right: 25.2%;
    width: 8.5%;
    height: 2.3%;
  }

  .spoiler_note {
    margin-bottom: 24px;
    font-size: 0.75rem;
  }

  .heading_hero {
    font-size: clamp(2.15rem, 9.5vw, 2.65rem);
  }

  .hero_action_outer {
    align-items: stretch;
    flex-direction: column;
  }

  .button_primary {
    width: 100%;
  }

  .hero_action_note {
    text-align: center;
  }

  .hero_visual {
    min-height: 425px;
  }

  .phone_mockup {
    left: 7%;
    width: 67%;
    border-radius: 34px;
  }

  .phone_cover {
    border-radius: 21px;
  }

  .ranking_card {
    right: 1%;
    bottom: 2%;
    width: 70%;
    padding: 12px;
  }

  .ranking_row_outer {
    grid-template-columns: 31px minmax(0, 1fr);
    gap: 7px;
    font-size: 0.68rem;
  }

  .ranking_badge {
    width: 27px;
    height: 27px;
  }

  .hero_footer_strip {
    padding-block: 20px;
  }

  .hero_footer_strip strong,
  .hero_footer_strip span {
    display: block;
  }

  .hero_footer_strip strong {
    margin: 0;
  }

  .hero_footer_strip strong::after {
    display: block;
    margin: 7px auto 9px;
  }

  .new_series_layout_outer,
  .how_to_inner,
  .next_issue_layout_outer {
    padding-block: 76px;
  }

  .heading_new_series,
  .heading_how_to,
  .heading_next_issue,
  .heading_closing {
    font-size: clamp(1.85rem, 9vw, 2.7rem);
  }

  .heading_new_series {
    font-size: 1.78rem;
  }

  .heading_new_series_line {
    white-space: normal;
  }

  .editor_judgement_outer {
    margin-top: 56px;
  }

  .editor_judgement_inner {
    padding: 28px 22px;
  }

  .editor_judgement_metrics_outer {
    grid-template-columns: minmax(0, 1fr);
  }

  .heading_how_to {
    font-size: 1.73rem;
  }

  .genre_flow_outer strong {
    width: 100%;
    text-align: center;
    transform: rotate(90deg);
  }

  .genre_flow_outer .genre_flow_result {
    width: 100%;
  }

  .new_series_cover_frame {
    width: 82%;
    margin-inline: auto;
  }

  .new_series_stamp {
    right: 2px;
    width: 82px;
    height: 82px;
    font-size: 0.96rem;
  }

  .issue_shelf_inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 16px;
  }

  .issue_cell_one,
  .issue_cell_two,
  .issue_cell_three,
  .issue_cell_four {
    transform: none;
  }

  .footer_layout_outer {
    min-height: 150px;
    padding-block: 28px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
  }

  .footer_contact {
    margin-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button_primary,
  .global_nav_cta,
  .hero_art_cta,
  .hero_art_cta::before,
  .hero_art_cta_label,
  .hero_steps_cta,
  .hero_steps_cta::before,
  .hero_steps_cta_label {
    transition: none;
  }
}
