@charset "UTF-8";

:root {
  --color_white: #ffffff;
  --color_text: #333333;
  --color_blue: #008fd1;
  --color_drawer_blue: #0796cf;
  --color_blue_dark: #0079b8;
  --color_blue_light: #b8dfef;
  --color_border: #008fd1;
  --color_title_sub: #ffffff;
  --color_bg_section: #b8dfef;
  --color_line: rgba(0, 143, 209, 0.22);
  --section_space: 144px;
  --section_space_sm: 96px;
  --margin_xl: 100px;
  --margin_l: 80px;
  --margin_m: 60px;
  --margin_s: 40px;
  --margin_xs: 26px;
  --header_height: 0px;
  --gap_lg: 72px;
  --gap_md: 40px;
  --gap_sm: 20px;
  --button_w: 270px;
  --button_h: 56px;
  --hero_height: 720px;
  --anchor_offset: 80px;
  --hero_pc_w: 1342;
  --hero_pc_h: 720;
  --font_jp: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  --font_jp_tb: "TBGothic-B", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  --font_en: "DIN Bold", "Arial Narrow", Arial, sans-serif;
}

.section_coming_soon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80svh;
  padding: 120px 24px;
  background: var(--color_bg_section);
}

.coming_soon_inner {
  text-align: center;
}

.coming_soon_name {
  font-family: var(--font_jp_tb);
  font-size: clamp(18px, calc((22 / 1440) * 100vw), 24px);
  letter-spacing: 0.08em;
  color: var(--color_blue_dark);
}

.coming_soon_title {
  margin-top: 20px;
  padding-top: 24px;
  border-top: 2px solid var(--color_border);
  display: inline-block;
  font-family: var(--font_jp_tb);
  font-size: clamp(24px, calc((36 / 1440) * 100vw), 40px);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--color_text);
}

.coming_soon_text {
  margin-top: 28px;
  font-size: clamp(14px, calc((16 / 1440) * 100vw), 17px);
  line-height: 1.9;
  color: var(--color_text);
}

@font-face {
  font-family: "TBGothic-B";
  src: url("../font/TBGB_subset.woff2") format("woff2"),
       url("../font/TBGB_subset.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DIN Bold";
  src: url("../font/DIN_Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* PC でのみ有効な改行 */
.br_pc {
  display: none;
}

@media (min-width: 1025px) {
  .br_pc {
    display: inline;
  }
}

@media (max-width: 980px) {
  :root {
    --margin_xl: 60px;
    --margin_l: 48px;
    --margin_m: 36px;
    --margin_s: 24px;
    --margin_xs: 16px;
  }
}

body {
  min-width: 320px;
  background: var(--color_white);
  color: var(--color_text);
  font-family: var(--font_jp);
  font-feature-settings: "palt";
  letter-spacing: 0.06em;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--anchor_offset);
}

.wrapper {
  overflow-x: hidden;
  overflow-y: visible;
}

.main {
  margin: 0;
}

.js_fadeup {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}

.js_fadeup.is_fadein {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .js_fadeup {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* =========================================================
  Header
========================================================= */
.header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  transform: translateY(-100%);
  transition: transform 0.72s ease;
}

.header.is_visible {
  transform: translateY(0);
}

.header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 80px;
  padding: 0 74px;
  background: var(--color_drawer_blue);
  pointer-events: auto;
}

.logo_header,
.nav_global {
  color: var(--color_white);
}

.logo_header {
  display: grid;
  gap: 6px;
}

.text_header_position {
  font-family: var(--font_jp_tb);
  font-size: clamp(14px, calc((15 / 1440) * 100vw), 18px);
  line-height: 1;
  font-weight: 700;
}

.text_header_name {
  font-family: var(--font_jp_tb);
  font-size: clamp(20px, calc((24 / 1440) * 100vw), 28px);
  line-height: 1;
  font-weight: 700;
}

.nav_list {
  display: flex;
  align-items: center;
  gap: clamp(34px, calc((52 / 1440) * 100vw), 70px);
}

.nav_item a {
  display: block;
  color: var(--color_white);
  font-size: clamp(14px, calc((15 / 1440) * 100vw), 18px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: opacity 0.24s ease;
}

.nav_item a:hover,
.nav_item a:focus-visible {
  opacity: 0.68;
}

.button_menu {
  position: fixed;
  z-index: 31;
  top: 0;
  right: 0;
  display: none;
  width: 82px;
  height: 82px;
  background: var(--color_drawer_blue);
  border-radius: 0 0 0 26px;
  pointer-events: auto;
}

.button_menu_line {
  position: absolute;
  left: 23px;
  width: 36px;
  height: 3px;
  background: var(--color_white);
  transition: transform 0.28s ease, opacity 0.2s ease, top 0.28s ease;
}

.button_menu.is_active .button_menu_line {
  background: var(--color_white);
}

.button_menu_line:nth-child(1) {
  top: 27px;
}

.button_menu_line:nth-child(2) {
  top: 40px;
}

.button_menu_line:nth-child(3) {
  top: 53px;
}

.button_menu.is_active .button_menu_line:nth-child(1) {
  top: 40px;
  transform: rotate(45deg);
}

.button_menu.is_active .button_menu_line:nth-child(2) {
  opacity: 0;
}

.button_menu.is_active .button_menu_line:nth-child(3) {
  top: 40px;
  transform: rotate(-45deg);
}

.nav_drawer {
  position: fixed;
  z-index: 30;
  right: 0;
  bottom: 0;
  top: 0;
  width: min(100%, 500px);
  height: 100vh;
  height: 100svh;
  height: 100dvh;
  padding: 92px 38px 49px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: var(--color_drawer_blue);
  border-radius: 44px 0 0 44px;
  box-shadow: -12px 0 28px rgba(0, 0, 0, 0.16);
  pointer-events: auto;
  transform: translateX(calc(100% + 40px));
  transition: transform 0.34s ease;
}

.nav_drawer.is_active {
  transform: translateX(0);
}

.nav_drawer_profile {
  color: var(--color_white);
}

.text_drawer_position {
  font-family: var(--font_jp_tb);
  font-size: clamp(18px, calc((24 / 1440) * 100vw), 24px);
  line-height: 1.3;
  font-weight: 800;
}

.text_drawer_name {
  margin-top: 8px;
  font-family: var(--font_jp_tb);
  font-size: clamp(23px, calc((33 / 1440) * 100vw), 33px);
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.nav_drawer_list {
  display: grid;
  justify-items: start;
  gap: 49px;
  width: max-content;
  margin: 60px auto 0;
  color: var(--color_white);
}

.nav_drawer_item a {
  display: block;
  color: var(--color_white);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.02em;
  transition: opacity 0.24s ease;
}

.nav_drawer_item a:hover,
.nav_drawer_item a:focus-visible {
  opacity: 0.68;
}

.nav_drawer_social {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  width: max-content;
  max-width: 100%;
  margin: 76px auto 0;
}

.link_social {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  width: 70px;
  max-width: 100%;
  border-radius: 50%;
  background: var(--color_white);
}

.link_social img {
  width: 68%;
  height: auto;
}

@media (max-width: 968px) {
  .header {
    transform: none;
    transition: none;
  }

  .header_inner {
    height: 0;
    padding: 0;
    background: transparent;
    pointer-events: none;
  }

  .logo_header,
  .nav_global {
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 1px;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .button_menu {
    display: block;
    width: 64px;
    height: 64px;
    border-radius: 0 0 0 18px;
    opacity: 0;
    transform: translateY(-100%);
    transition: transform 0.72s ease, opacity 0.3s ease;
  }

  .button_menu_line {
    left: 18px;
    width: 28px;
    height: 2px;
  }

  .button_menu_line:nth-child(1) {
    top: 22px;
  }

  .button_menu_line:nth-child(2) {
    top: 32px;
  }

  .button_menu_line:nth-child(3) {
    top: 42px;
  }

  .button_menu.is_active .button_menu_line:nth-child(1),
  .button_menu.is_active .button_menu_line:nth-child(3) {
    top: 32px;
  }

  .header.is_visible .button_menu {
    opacity: 1;
    transform: translateY(0);
  }

  .nav_drawer {
    padding-top: 84px;
    padding-bottom: 42px;
  }

  .nav_drawer_list {
    gap: 34px;
    margin-top: 44px;
  }

  .nav_drawer_item a {
    font-size: 22px;
  }

  .nav_drawer_social {
    margin-top: 48px;
  }
}

@media (max-width: 428px) {
  .nav_drawer {
    inset: 0;
    width: 100%;
    height: 100vh;
    height: 100svh;
    height: 100dvh;
    padding: 92px 32px 44px;
    border-radius: 42px;
    box-shadow: none;
  }

  .nav_drawer_list {
    gap: 32px;
    margin-top: 42px;
  }

  .nav_drawer_item a {
    font-size: 21px;
  }

  .nav_drawer_social {
    gap: 26px;
    margin-top: 44px;
  }

  .link_social {
    width: 62px;
  }
}

/* =========================================================
  Button
========================================================= */
.button_contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 48px;
  color: var(--color_white);
  background: var(--color_blue);
  font-family: var(--font_en);
  font-size: clamp(15px, calc((16 / 1440) * 100vw), 16px);
  font-weight: 700;
}

/* =========================================================
  Page Top
========================================================= */

/* section_hero
--------------------------------------------------------- */
.section_hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--color_bg_section);
}

.image_hero_main {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.image_hero_main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero_copy {
  position: absolute;
  z-index: 1;
  top: 33.7%;
  left: 7.15%;
  color: var(--color_blue);
}

.heading_hero {
  display: grid;
  gap: 8px;
  font-family: var(--font_jp_tb);
  letter-spacing: 0.08em;
  font-size: clamp(34px, calc((86 / 1440) * 100vw), 90px);
  line-height: 1.22;
  font-weight: 800;
}

.heading_hero_line {
  display: block;
}

.text_hero_name {
  position: absolute;
  z-index: 1;
  top: 73.5%;
  left: 7.2%;
  color: var(--color_blue);
  font-family: var(--font_en);
  font-size: clamp(18px, calc((38 / 1440) * 100vw), 40px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.text_hero_site {
  position: absolute;
  z-index: 1;
  top: 80.1%;
  left: 7.2%;
  color: var(--color_blue);
  font-family: var(--font_en);
  font-size: clamp(14px, calc((20 / 1440) * 100vw), 24px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.text_hero_lead {
  position: absolute;
  z-index: 1;
  top: 22.5%;
  right: 19.4%;
  color: var(--color_blue);
  font-size: clamp(17px, calc((25 / 1440) * 100vw), 28px);
  line-height: 1.55;
  font-weight: 500;
  writing-mode: vertical-rl;
  letter-spacing: 0.2em;
  line-height: 1.7;
}

.text_hero_lead_line {
  display: inline-block;
}

.text_hero_lead_line_second {
  position: relative;
  top: 2em;
}

@media (max-width: 1024px) {
  .section_hero {
    min-height: 100svh;
  }

  .image_hero_main img {
    object-position: center center;
  }

  .hero_copy {
    top: 19.2%;
    left: 6.4%;
  }

  .heading_hero {
    display: flex;
    flex-direction: row-reverse;
    gap: 2px;
    letter-spacing: 0.08em;
    font-size: clamp(50px, calc((64 / 1440) * 100vw), 64px);
    line-height: 1.08;
  }

  .heading_hero_line {
    display: block;
    writing-mode: vertical-rl;
  }

  .text_hero_name,
  .text_hero_site {
    left: 32px;
    color: var(--color_white);
  }

  .text_hero_name {
    top: auto;
    bottom: 83px;
    font-size: clamp(21px, calc((25 / 1440) * 100vw), 25px);
    line-height: 1;
  }

  .text_hero_site {
    top: auto;
    bottom: 50px;
    font-size: clamp(22px, calc((24 / 1440) * 100vw), 24px);
    line-height: 1;
  }

  .text_hero_lead {
    top: 8.8%;
    right: 8.1%;
    font-size: clamp(22px, calc((28 / 1440) * 100vw), 28px);
    line-height: 1.45;
  }
}

/* FV ロードアニメーション（文字: fadeInUp ／ 背景画像: 初回のみ微スケール）
--------------------------------------------------------- */
@keyframes smf_fv_fadeup {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

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

@keyframes smf_fv_zoom {
  from {
    transform: scale(1.06);
  }

  to {
    transform: scale(1);
  }
}

.image_hero_main img {
  animation: smf_fv_zoom 1.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.heading_hero_line,
.text_hero_lead,
.text_hero_name,
.text_hero_site {
  animation: smf_fv_fadeup 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.heading_hero_line:nth-child(1) {
  animation-delay: 0.35s;
}

.heading_hero_line:nth-child(2) {
  animation-delay: 0.47s;
}

.text_hero_lead {
  animation-delay: 0.6s;
}

.text_hero_name {
  animation-delay: 0.74s;
}

.text_hero_site {
  animation-delay: 0.84s;
}

@media (prefers-reduced-motion: reduce) {
  .image_hero_main img,
  .heading_hero_line,
  .text_hero_lead,
  .text_hero_name,
  .text_hero_site {
    animation: none;
  }
}

/* section_message
--------------------------------------------------------- */
.section_message {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 96px 0 108px;
  background: var(--color_white);
}

.message_row {
  display: grid;
  align-items: start;
}

.message_row_first {
  grid-template-columns: 50vw 50vw;
}

.message_row_second {
  grid-template-columns: 50vw 50vw;
  margin-top: 84px;
  align-items: center;
}

.message_text_first {
  grid-column: 1;
  justify-self: center;
  width: min(clamp(482px, 34vw, 640px), calc(100% - 64px));
}

.image_message_first {
  grid-column: 2;
}

.image_message_second {
  grid-column: 1;
}

.message_text_second {
  grid-column: 2;
  justify-self: center;
  width: min(clamp(476px, 34vw, 640px), calc(100% - 64px));
}

.image_message {
  margin: 0;
}

.image_message img {
  width: 100%;
  height: auto;
}

.section_title_en {
  color: var(--color_blue);
  font-family: var(--font_en);
  font-size: clamp(18px, calc((30 / 1440) * 100vw), 38px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.heading_message {
  margin-top: 39px;
  color: var(--color_blue);
  font-family: var(--font_jp_tb);
  font-size: clamp(27px, calc((43 / 1440) * 100vw), 56px);
  line-height: 1.62;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.heading_message_sub {
  color: var(--color_blue);
  font-size: clamp(24px, calc((39 / 1440) * 100vw), 52px);
  line-height: 1.45;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.heading_message_line_sub {
  font-size: 0.82em;
}

.message_text_second .heading_message {
  line-height: 1.35;
}

.text_message_body {
  margin-top: 43px;
  color: var(--color_text);
  font-size: clamp(15px, calc((20 / 1440) * 100vw), 24px);
  line-height: 1.68;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.message_text_second .text_message_body {
  margin-top: 30px;
}

@media (max-width: 1024px) {
  .section_message {
    padding: 16px 0 64px;
  }

  .message_row {
    display: contents;
  }

  .section_message {
    display: flex;
    flex-direction: column;
  }

  .image_message_first {
    order: 1;
    width: calc(100% - 47px);
    margin-left: auto;
  }

  .message_text_first {
    order: 2;
    width: calc(100% - 32px);
    margin: 44px 16px 0;
  }

  .image_message_second {
    order: 3;
    width: 81.2%;
    margin-top: 54px;
  }

  .message_text_second {
    order: 4;
    width: calc(100% - 32px);
    margin: 33px 16px 0;
    padding-top: 0;
  }

  .section_title_en {
    font-size: clamp(20px, calc((22 / 1440) * 100vw), 22px);
    letter-spacing: 0.16em;
  }

  .heading_message {
    margin-top: 24px;
    font-size: clamp(28px, calc((32 / 1440) * 100vw), 32px);
    line-height: 1.45;
    letter-spacing: 0.06em;
  }

  .heading_message_sub {
    font-size: clamp(28px, calc((32 / 1440) * 100vw), 32px);
    line-height: 1.45;
    letter-spacing: 0.06em;
  }

  .heading_message_line_sub {
    font-size: 1em;
  }

  .text_message_body {
    margin-top: 38px;
    font-size: clamp(15px, calc((15 / 1440) * 100vw), 15px);
    font-weight: 500;
    letter-spacing: 0.01em;
  }

  .message_text_second .text_message_body {
    margin-top: 39px;
  }
}

/* message_history（MESSAGE 最下部の HISTORY タイトル・リード）
--------------------------------------------------------- */
.message_history {
  margin-top: clamp(64px, calc((110 / 1440) * 100vw), 130px);
  padding: 0 clamp(24px, calc((130 / 1440) * 100vw), 130px);
}

.heading_history {
  color: var(--color_blue);
  font-family: var(--font_en);
  font-size: clamp(44px, calc((72 / 1440) * 100vw), 92px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.text_history {
  margin-top: clamp(20px, calc((32 / 1440) * 100vw), 36px);
  color: var(--color_text);
  font-size: clamp(14px, calc((18 / 1440) * 100vw), 20px);
  line-height: 2;
  font-weight: 500;
  letter-spacing: 0.06em;
}

@media (max-width: 1024px) {
  .message_history {
    order: 5;
    margin-top: 88px;
    padding: 0 16px;
  }

  .heading_history {
    font-size: clamp(40px, calc((56 / 1440) * 100vw), 56px);
  }

  .text_history {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.9;
    letter-spacing: 0.02em;
  }
}

/* section_scroll_view
--------------------------------------------------------- */
.section_scroll_view {
  position: relative;
  z-index: 1;
  height: 220vh;
  margin-top: -50svh;
  overflow: visible;
  background: transparent;
}

.scroll_view_pin {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  width: 100vw;
  height: 100svh;
  overflow: hidden;
  pointer-events: none;
  background: transparent;
}

.scroll_view_pin.is_fixed {
  position: fixed;
}

.scroll_view_pin.is_after {
  top: auto;
  bottom: 0;
}

.scroll_view_track {
  position: absolute;
  top: 50%;
  left: 0;
  display: flex;
  align-items: center;
  gap: clamp(0px, calc((28 / 1440) * 100vw), 36px);
  width: max-content;
  padding: 0;
  will-change: transform;
  transform: translate3d(100vw, -50%, 0);
}

.scroll_view_item {
  flex: 0 0 auto;
  margin: 0;
  transform: scale(0.68);
  transform-origin: center center;
  will-change: transform;
}

.scroll_view_item img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.scroll_view_trigger:hover img,
.scroll_view_trigger:focus-visible img {
  transform: scale(1.08);
  filter: brightness(1.12);
}

@media (prefers-reduced-motion: reduce) {
  .scroll_view_item img {
    transition: none;
  }
}

.scroll_view_item_01 {
  z-index: 10;
  width: clamp(260px, calc((320 / 1440) * 100vw), 415px);
  translate: 0 14%;
}

.scroll_view_item_02 {
  z-index: 9;
  width: clamp(175px, calc((220 / 1440) * 100vw), 285px);
  translate: 0 -16%;
  margin-left: clamp(-72px, calc((-40 / 1440) * 100vw), -28px);
}

.scroll_view_item_03 {
  z-index: 8;
  width: clamp(200px, calc((250 / 1440) * 100vw), 325px);
  translate: 0 12%;
  margin-left: clamp(-64px, calc((-36 / 1440) * 100vw), -25px);
}

.scroll_view_item_04 {
  z-index: 7;
  width: clamp(300px, calc((380 / 1440) * 100vw), 490px);
  translate: 0 -14%;
  margin-left: clamp(-78px, calc((-44 / 1440) * 100vw), -30px);
}

.scroll_view_item_05 {
  z-index: 6;
  width: clamp(380px, calc((480 / 1440) * 100vw), 620px);
  translate: 0 16%;
  margin-left: clamp(-100px, calc((-56 / 1440) * 100vw), -39px);
}

.scroll_view_item_06 {
  z-index: 5;
  width: clamp(270px, calc((340 / 1440) * 100vw), 440px);
  translate: 0 -12%;
  margin-left: clamp(-92px, calc((-52 / 1440) * 100vw), -36px);
}

.scroll_view_item_07 {
  z-index: 4;
  width: clamp(430px, calc((535 / 1440) * 100vw), 690px);
  translate: 0 17%;
  margin-left: clamp(-100px, calc((-56 / 1440) * 100vw), -39px);
}

.scroll_view_item_08 {
  z-index: 3;
  width: clamp(160px, calc((195 / 1440) * 100vw), 252px);
  translate: 0 -30%;
  margin-left: clamp(28px, calc((40 / 1440) * 100vw), 56px);
}

.scroll_view_item_09 {
  z-index: 2;
  width: clamp(230px, calc((270 / 1440) * 100vw), 350px);
  translate: 0 10%;
  margin-left: clamp(-64px, calc((-36 / 1440) * 100vw), -25px);
}

.scroll_view_item_10 {
  z-index: 1;
  width: clamp(250px, calc((301 / 1440) * 100vw), 390px);
  translate: 0 -18%;
  margin-left: clamp(20px, calc((32 / 1440) * 100vw), 44px);
}

@media (max-width: 1024px) {
  .scroll_view_track {
    gap: clamp(0px, calc((20 / 1440) * 100vw), 20px);
  }

  .scroll_view_item_01 {
    width: clamp(170px, calc((230 / 1440) * 100vw), 230px);
    translate: 0 7%;
  }

  .scroll_view_item_02 {
    width: clamp(120px, calc((160 / 1440) * 100vw), 160px);
    translate: 0 -8%;
    margin-left: -16px;
  }

  .scroll_view_item_03 {
    width: clamp(135px, calc((180 / 1440) * 100vw), 180px);
    translate: 0 6%;
    margin-left: -14px;
  }

  .scroll_view_item_04 {
    width: clamp(200px, calc((270 / 1440) * 100vw), 270px);
    translate: 0 -7%;
    margin-left: -18px;
  }

  .scroll_view_item_05 {
    width: clamp(250px, calc((340 / 1440) * 100vw), 340px);
    translate: 0 8%;
    margin-left: -22px;
  }

  .scroll_view_item_06 {
    width: clamp(180px, calc((245 / 1440) * 100vw), 245px);
    translate: 0 -6%;
    margin-left: -20px;
  }

  .scroll_view_item_07 {
    width: clamp(320px, calc((430 / 1440) * 100vw), 430px);
    translate: 0 6%;
    margin-left: -22px;
  }

  .scroll_view_item_08 {
    width: clamp(120px, calc((160 / 1440) * 100vw), 160px);
    margin-left: 18px;
  }

  .scroll_view_item_09 {
    width: clamp(170px, calc((230 / 1440) * 100vw), 230px);
    margin-left: -14px;
  }

  .scroll_view_item_10 {
    width: clamp(180px, calc((250 / 1440) * 100vw), 250px);
    translate: 0 -8%;
    margin-left: 14px;
  }
}

/* section_story_profile
--------------------------------------------------------- */
.section_story_profile {
  position: relative;
  height: 320vh;
  overflow: visible;
  background: var(--color_white);
}

.story_profile_pin {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100svh;
  overflow: hidden;
  background: var(--color_white);
}

.story_profile_pin.is_fixed {
  position: fixed;
}

.story_profile_pin.is_after {
  top: auto;
  bottom: 0;
}

.image_story_profile_bg,
.overlay_story_profile {
  position: absolute;
  inset: 0;
}

.image_story_profile_bg {
  z-index: 0;
}

.image_story_profile_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay_story_profile {
  z-index: 1;
  background: rgba(0, 0, 0, 0.37);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.story_profile_pin.is_fixed .overlay_story_profile,
.story_profile_pin.is_after .overlay_story_profile {
  opacity: 1;
}

.story_profile_content {
  position: relative;
  z-index: 2;
  width: min(38vw, 620px);
  margin-left: auto;
  margin-right: clamp(28px, calc((54 / 1440) * 100vw), 72px);
  padding-top: 19svh;
  color: var(--color_white);
  will-change: transform;
}

.story_panel,
.profile_panel {
  min-height: 100svh;
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.story_panel.is_inview,
.profile_panel.is_inview {
  opacity: 1;
  transform: translateY(0);
}

.profile_panel {
  padding-top: 42svh;
}

.heading_story,
.heading_profile {
  font-family: var(--font_en);
  font-size: clamp(46px, calc((72 / 1440) * 100vw), 88px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.text_story_body {
  width: min(100%, 590px);
  margin-top: 42px;
  font-size: clamp(15px, calc((18 / 1440) * 100vw), 22px);
  line-height: 2.05;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.profile_list {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 15px 68px;
  margin-top: 47px;
  font-size: clamp(15px, calc((17 / 1440) * 100vw), 21px);
  line-height: 1.75;
  font-weight: 500;
}

.profile_item {
  display: contents;
}

.profile_item dt,
.profile_item dd {
  margin: 0;
}

@media (max-width: 1024px) {
  .section_story_profile {
    height: 330vh;
  }

  .story_profile_content {
    width: calc(100% - 48px);
    margin-right: 24px;
    margin-left: 24px;
    padding-top: 54svh;
  }

  .heading_story,
  .heading_profile {
    font-size: clamp(44px, calc((52 / 1440) * 100vw), 52px);
  }

  .text_story_body {
    margin-top: 30px;
    font-size: clamp(15px, calc((16 / 1440) * 100vw), 16px);
    line-height: 1.85;
  }

  .profile_list {
    grid-template-columns: 1fr;
    gap: 4px;
    margin-top: 34px;
    font-size: clamp(15px, calc((16 / 1440) * 100vw), 16px);
    line-height: 1.65;
  }

  .profile_item dd {
    margin-bottom: 12px;
  }
}

/* section_project
--------------------------------------------------------- */
.section_project {
  position: relative;
  height: 260vh;
  overflow: visible;
  background: var(--color_white);
}

.project_pin {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100svh;
  overflow: hidden;
  background: var(--color_white);
}

.project_pin.is_fixed {
  position: fixed;
}

.project_pin.is_after {
  top: auto;
  bottom: 0;
}

.image_project_bg {
  position: absolute;
  inset: 0;
}

.image_project_bg {
  z-index: 0;
  margin: 0;
}

.image_project_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image_project_bg_dark {
  z-index: 1;
  opacity: 0;
  will-change: opacity;
}

.project_title_wrap {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: min(72vw, 760px);
  will-change: transform;
  transform: translate3d(-50%, -50%, 0) scale(1.45);
}

.image_project_title {
  width: 100%;
  height: auto;
}

.project_text {
  position: absolute;
  z-index: 2;
  top: 66%;
  left: 50%;
  width: min(640px, calc(100% - 48px));
  color: var(--color_white);
  text-align: center;
  opacity: 0;
  will-change: transform, opacity;
  transform: translate3d(-50%, 72px, 0);
}

.text_project_body {
  font-size: clamp(15px, calc((18 / 1440) * 100vw), 22px);
  line-height: 1.9;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.project_case_view {
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;
}

.project_case_dots {
  position: absolute;
  top: 50%;
  left: clamp(24px, calc((48 / 1440) * 100vw), 64px);
  display: grid;
  gap: 14px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%);
  transition: opacity 0.4s ease;
}

.project_case_dots.is_visible {
  opacity: 1;
  pointer-events: auto;
}

.button_project_dot {
  display: block;
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid var(--color_white);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.button_project_dot.is_active {
  background: var(--color_white);
  transform: scale(1.35);
}

.project_case {
  position: absolute;
  top: 56%;
  left: clamp(58px, calc((162 / 1440) * 100vw), 210px);
  width: clamp(430px, calc((537 / 1280) * 100vw), 604px);
  opacity: 0;
  transform: translate3d(0, calc(-50% + 220px), 0);
  will-change: opacity, transform;
}

.project_case_card {
  position: relative;
  display: flex;
  flex-direction: column;
  /* 88svh - 208px = カード中心が 56svh 配置のまま、ヘッダー80px・下のボタン約60px・上下余白を引いて収まる上限 */
  height: min(clamp(470px, calc((554 / 1280) * 100vw), 623px), calc(88svh - 208px));
  padding: clamp(42px, calc((52 / 1280) * 100vw), 58px) clamp(42px, calc((52 / 1280) * 100vw), 58px) clamp(34px, calc((44 / 1280) * 100vw), 50px);
  background: var(--color_white);
  border-radius: 15px;
}

.project_case_badge {
  position: absolute;
  z-index: 2;
  top: -48px;
  left: -42px;
  width: 112px;
  height: 112px;
  padding: 10px;
  border-radius: 50%;
  background: var(--color_white);
  object-fit: contain;
}

.heading_project_case {
  color: #2a8ccb;
  flex: 0 0 auto;
  font-size: clamp(26px, calc((36 / 1440) * 100vw), 42px);
  line-height: 1.25;
  font-weight: 800;
  text-align: center;
}

/* 見出し・本文を除いた残り領域いっぱいに画像を表示する */
.image_project_case {
  display: flex;
  flex: 1 1 auto;
  min-height: 0;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: clamp(24px, calc((30 / 1280) * 100vw), 34px) auto 0;
}

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


.text_project_case {
  flex: 0 0 auto;
  margin-top: clamp(26px, calc((34 / 1280) * 100vw), 38px);
  color: #111111;
  font-size: clamp(14px, calc((15 / 1440) * 100vw), 18px);
  line-height: 1.65;
  font-weight: 700;
  text-align: center;
}

.button_project_more {
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, calc((17 / 1440) * 100vw), 18px) clamp(36px, calc((52 / 1440) * 100vw), 58px);
  border-radius: 15px;
  background: #008fd1;
  color: var(--color_white);
  font-family: var(--font_jp_tb);
  font-size: clamp(16px, calc((20 / 1440) * 100vw), 24px);
  line-height: 1;
  font-weight: 800;
  pointer-events: auto;
  transition: background-color 0.24s ease;
  white-space: nowrap;
}

.button_project_more::after {
  content: ">";
  margin-left: 28px;
  font-size: 1.2em;
  line-height: 1;
}

.button_project_more:hover,
.button_project_more:focus-visible {
  background: #007fbd;
}

/* 1440px 以下の PC: 文字・余白を詰めて画像の表示域を確保 */
@media (min-width: 1025px) and (max-width: 1440px) {
  .project_case_card {
    padding: 32px 42px 28px;
  }

  .heading_project_case {
    font-size: 26px;
  }

  .image_project_case {
    margin-top: 20px;
  }

  .text_project_case {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.6;
  }
}

@media (max-width: 1024px) {
  .section_project {
    height: 260vh;
  }

  .project_title_wrap {
    width: min(82vw, 520px);
    transform: translate3d(-50%, -50%, 0) scale(1.12);
  }

  .project_text {
    top: 62%;
  }

  .text_project_body {
    font-size: clamp(15px, calc((15 / 1440) * 100vw), 15px);
    line-height: 1.75;
  }

  .project_case {
    left: 50%;
    width: min(80vw, 380px);
    transform: translate3d(-50%, calc(-50% + 220px), 0);
  }

  .project_case_dots {
    left: 18px;
    gap: 12px;
  }

  .button_project_dot {
    width: 9px;
    height: 9px;
  }

  .project_case_card {
    height: auto;
    min-height: 350px;
    padding: 32px 24px 24px;
  }

  .project_case_badge {
    top: -34px;
    left: -30px;
    width: 82px;
    height: 82px;
    padding: 8px;
  }

  .heading_project_case {
    font-size: clamp(22px, calc((24 / 1440) * 100vw), 24px);
  }

  .text_project_case {
    font-size: 14px;
    line-height: 1.55;
  }

  .image_project_case {
    width: min(88%, 292px);
    margin-top: 18px;
  }

  .project_case_01 .image_project_case {
    width: min(82%, 272px);
  }

  .project_case_02 .image_project_case {
    width: min(90%, 300px);
    padding-block: 10px;
  }

  .project_case_03 .image_project_case {
    width: min(86%, 286px);
    padding-block: 8px;
  }

  .project_case_04 .image_project_case {
    width: min(92%, 306px);
    padding-block: 12px;
  }

  .button_project_more {
    top: calc(100% + 18px);
    left: 50%;
    padding: 19px 44px;
    border-radius: 10px;
    font-size: 16px;
    transform: translateX(-50%);
  }
}

/* section_movie
--------------------------------------------------------- */
.section_movie {
  position: relative;
  z-index: 2;
  padding: clamp(86px, calc((132 / 1440) * 100vw), 164px) 0 clamp(88px, calc((126 / 1440) * 100vw), 150px);
  background: #f2f2f2;
}

.movie_inner {
  width: 80vw;
  margin: 0 auto;
}

.movie_header {
  margin-left: clamp(0px, calc((18 / 1440) * 100vw), 24px);
}

.heading_movie {
  color: #008fd1;
  font-family: var(--font_en);
  font-size: clamp(52px, calc((78 / 1440) * 100vw), 92px);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.heading_movie_jp {
  margin-top: 16px;
  color: #008fd1;
  font-size: clamp(17px, calc((22 / 1440) * 100vw), 26px);
  line-height: 1;
  font-weight: 700;
}

.movie_content {
  display: grid;
  grid-template-columns: minmax(0, calc((675 / 1280) * 100vw)) minmax(240px, calc((240 / 1280) * 100vw));
  gap: calc((109 / 1280) * 100vw);
  align-items: start;
}

.movie_main {
  margin-top: clamp(64px, calc((82 / 1440) * 100vw), 96px);
}

.movie_main {
  position: relative;
  padding-left: 0;
}

.link_movie_main,
.link_movie_item {
  display: block;
  color: #111111;
}

.image_movie_main,
.image_movie_thumb {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: #e9e9e9;
}

.image_movie_main {
  border-radius: 34px;
  aspect-ratio: 848 / 477;
}

.image_movie_thumb {
  border-radius: 10px;
  aspect-ratio: 412 / 232;
}

.image_movie_main img,
.image_movie_thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* movieサムネ中央の再生マーク（YouTube風・赤角丸＋白三角） */
.image_movie_main::after,
.image_movie_thumb::after,
.image_movie_archive_thumb::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 52px;
  height: 37px;
  transform: translate(-50%, -50%);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 68 48'%3E%3Crect width='68' height='48' rx='12' fill='%23ff0000'/%3E%3Cpath d='M27 15 47 24 27 33Z' fill='%23ffffff'/%3E%3C/svg%3E") center / contain no-repeat;
  pointer-events: none;
  z-index: 2;
}

/* メイン動画は枠が大きいので再生マークも大きく */
.image_movie_main::after {
  width: 68px;
  height: 48px;
}

.text_movie_date {
  display: block;
  margin-top: 18px;
  color: #111111;
  font-size: clamp(15px, calc((18 / 1440) * 100vw), 21px);
  line-height: 1.2;
  font-weight: 400;
}

.text_movie_title {
  margin-top: 7px;
  color: #111111;
  font-size: clamp(16px, calc((20 / 1440) * 100vw), 24px);
  line-height: 1.25;
  font-weight: 800;
}

.movie_side {
  display: grid;
  gap: clamp(28px, calc((44 / 1440) * 100vw), 54px);
}

.movie_item .text_movie_date {
  margin-top: 12px;
  font-size: clamp(14px, calc((17 / 1440) * 100vw), 20px);
}

.text_movie_title_side {
  margin-top: 5px;
  font-size: clamp(14px, calc((16 / 1440) * 100vw), 18px);
  line-height: 1.25;
}

.button_movie_more {
  display: flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, calc((17 / 1440) * 100vw), 18px) clamp(36px, calc((52 / 1440) * 100vw), 58px);
  margin: clamp(76px, calc((104 / 1440) * 100vw), 122px) auto 0;
  border-radius: 15px;
  background: #008fd1;
  color: var(--color_white);
  font-family: var(--font_jp_tb);
  font-size: clamp(16px, calc((20 / 1440) * 100vw), 24px);
  line-height: 1;
  font-weight: 800;
  transition: background-color 0.24s ease;
}

.button_movie_more::after {
  content: ">";
  margin-left: 28px;
  font-size: 1.2em;
  line-height: 1;
}

.button_movie_more:hover,
.button_movie_more:focus-visible {
  background: #007fbd;
}

@media (max-width: 1024px) {
  .section_movie {
    padding: 76px 0 56px;
  }

  .movie_inner {
    width: calc(100% - 68px);
  }

  .movie_header {
    margin-left: 0;
    text-align: center;
  }

  .heading_movie {
    font-size: clamp(50px, calc((58 / 1440) * 100vw), 58px);
  }

  .heading_movie_jp {
    margin-top: 10px;
    font-size: clamp(16px, calc((18 / 1440) * 100vw), 18px);
  }

  .movie_content {
    grid-template-columns: 1fr;
    gap: 48px;
    margin-top: 0;
  }

  .movie_main {
    margin-top: 58px;
  }

  .image_movie_main {
    border-radius: 20px;
  }

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

  .movie_item:nth-child(n+3) {
    display: none;
  }

  .image_movie_thumb {
    border-radius: 8px;
  }

  .text_movie_date,
  .movie_item .text_movie_date {
    margin-top: 12px;
    font-size: 14px;
  }

  .text_movie_title {
    margin-top: 14px;
    font-size: clamp(19px, calc((20 / 1440) * 100vw), 20px);
    line-height: 1.45;
  }

  .text_movie_title_side {
    margin-top: 8px;
    font-size: clamp(14px, calc((16 / 1440) * 100vw), 16px);
    line-height: 1.4;
  }

  .button_movie_more {
    padding: 19px 44px;
    margin-top: 50px;
    border-radius: 10px;
    font-size: 16px;
  }
}

/* section_report
--------------------------------------------------------- */
.section_report {
  position: relative;
  z-index: 2;
  padding: clamp(86px, calc((112 / 1440) * 100vw), 140px) 0 clamp(92px, calc((126 / 1440) * 100vw), 150px);
  background: var(--color_white);
}

.report_inner {
  width: min(88vw, 1500px);
  margin: 0 auto;
}

.report_header {
  text-align: center;
}

.heading_report {
  color: #008fd1;
  font-family: var(--font_en);
  font-size: clamp(52px, calc((78 / 1440) * 100vw), 92px);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.heading_report_jp {
  margin-top: 16px;
  color: #008fd1;
  font-size: clamp(17px, calc((22 / 1440) * 100vw), 26px);
  line-height: 1;
  font-weight: 700;
}

.report_tag_list {
  display: none;
}

.report_slider {
  --report_gap: clamp(24px, calc((28 / 1440) * 100vw), 34px);
  --report_card_w: calc((min(88vw, 1500px) - (var(--report_gap) * 2)) / 3);
  position: relative;
  margin-top: clamp(72px, calc((86 / 1440) * 100vw), 104px);
}

.report_content {
  position: relative;
  overflow: hidden;
}

.report_wrapper {
  align-items: flex-start;
}

.report_item {
  height: auto;
}

.link_report_item {
  display: block;
  color: #111111;
}

.image_report_thumb {
  overflow: hidden;
  margin: 0;
  border-radius: 12px;
  aspect-ratio: 510 / 289;
  background: #e9e9e9;
}

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

.text_report_date {
  display: block;
  margin-top: clamp(18px, calc((24 / 1440) * 100vw), 30px);
  color: #111111;
  font-size: clamp(15px, calc((18 / 1440) * 100vw), 21px);
  line-height: 1.2;
  font-weight: 400;
}

.text_report_title {
  margin-top: 12px;
  color: #111111;
  font-size: clamp(16px, calc((20 / 1440) * 100vw), 24px);
  line-height: 1.25;
  font-weight: 800;
}

.button_report_prev,
.button_report_next {
  position: absolute;
  z-index: 3;
  top: calc((var(--report_card_w) * (289 / 510) - 55px) / 2);
  display: block;
  width: 55px;
  height: 55px;
  border: 0;
  border-radius: 50%;
  background: #008fd1;
  color: var(--color_white);
  font-size: 0;
  cursor: pointer;
  transition: background-color 0.24s ease;
}

.button_report_prev {
  left: clamp(-44px, calc((-38 / 1440) * 100vw), -28px);
  right: auto;
}

.button_report_next {
  right: clamp(-44px, calc((-38 / 1440) * 100vw), -28px);
  left: auto;
}

.button_report_prev::before,
.button_report_next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 15px;
  border-top: 3px solid var(--color_white);
  border-right: 3px solid var(--color_white);
}

.button_report_prev::before {
  transform: translate(-38%, -50%) rotate(-135deg);
}

.button_report_next::before {
  transform: translate(-62%, -50%) rotate(45deg);
}

.button_report_prev:hover,
.button_report_prev:focus-visible,
.button_report_next:hover,
.button_report_next:focus-visible {
  background: #007fbd;
}

/* 端に到達して進めない方向（disabled）・全て収まる場合（lock）はそのボタンを隠す */
.button_report_prev.swiper-button-disabled,
.button_report_next.swiper-button-disabled,
.button_report_prev.swiper-button-lock,
.button_report_next.swiper-button-lock {
  display: none;
}

.button_report_more {
  display: flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, calc((17 / 1440) * 100vw), 18px) clamp(36px, calc((52 / 1440) * 100vw), 58px);
  margin: clamp(74px, calc((98 / 1440) * 100vw), 116px) auto 0;
  border-radius: 15px;
  background: #008fd1;
  color: var(--color_white);
  font-family: var(--font_jp_tb);
  font-size: clamp(16px, calc((20 / 1440) * 100vw), 24px);
  line-height: 1;
  font-weight: 800;
  transition: background-color 0.24s ease;
}

.button_report_more::after {
  content: ">";
  margin-left: 28px;
  font-size: 1.2em;
  line-height: 1;
}

.button_report_more:hover,
.button_report_more:focus-visible {
  background: #007fbd;
}

@media (max-width: 1024px) {
  .section_report {
    padding: 48px 0 52px;
  }

  .report_inner {
    width: calc(100% - 72px);
  }

  .heading_report {
    font-size: clamp(40px, calc((48 / 1440) * 100vw), 48px);
  }

  .heading_report_jp {
    margin-top: 14px;
    font-size: clamp(16px, calc((18 / 1440) * 100vw), 18px);
  }

  .report_tag_list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px 8px;
    margin-top: 40px;
  }

  .report_tag_item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    border-radius: 999px;
    background: #008fd1;
    color: var(--color_white);
    font-size: clamp(12px, calc((16 / 1440) * 100vw), 16px);
    line-height: 1;
    font-weight: 500;
    white-space: nowrap;
  }

  .report_slider {
    margin-top: 30px;
  }

  .report_item {
    border: 1px solid #008fd1;
    border-radius: 22px;
    overflow: hidden;
    background: var(--color_white);
  }

  .image_report_thumb {
    border-radius: 0;
  }

  .text_report_date {
    margin: 46px 22px 0;
    font-size: clamp(20px, calc((24 / 1440) * 100vw), 24px);
  }

  .text_report_title {
    margin: 14px 22px 52px;
    font-size: clamp(18px, calc((22 / 1440) * 100vw), 22px);
    line-height: 1.45;
  }

  .button_report_prev,
  .button_report_next {
    display: block;
    top: calc((100vw - 72px) * (289 / 510) / 2 + 30px - 18px);
    width: 36px;
    height: 36px;
  }

  .button_report_prev {
    left: -18px;
    right: auto;
  }

  .button_report_next {
    right: -18px;
    left: auto;
  }

  .button_report_prev::before,
  .button_report_next::before {
    width: 10px;
    height: 10px;
    border-top-width: 2px;
    border-right-width: 2px;
  }

  .button_report_prev::before {
    transform: translate(-38%, -50%) rotate(-135deg);
  }

  .button_report_next::before {
    transform: translate(-62%, -50%) rotate(45deg);
  }

  .button_report_more {
    padding: 19px 44px;
    margin-top: 44px;
    border-radius: 10px;
    font-size: 16px;
  }
}

/* section_footer
--------------------------------------------------------- */
.section_footer {
  position: relative;
  z-index: 2;
  background: #008fd1;
}

.image_footer_main {
  overflow: hidden;
  width: 100%;
  height: clamp(420px, calc((735 / 1440) * 100vw), 760px);
  margin: 0;
}

.image_footer_main img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.footer_sns {
  background: #E0EEEF;
}

.footer_sns_inner {
  display: grid;
  grid-template-columns: minmax(260px, 340px) 1fr;
  gap: clamp(72px, calc((110 / 1440) * 100vw), 138px);
  align-items: center;
  width: min(82vw, 1200px);
  margin: 0 auto;
  padding: clamp(54px, calc((70 / 1440) * 100vw), 82px) 0;
}

.heading_footer_sns {
  color: #008fd1;
  font-family: var(--font_en);
  font-size: clamp(50px, calc((66 / 1440) * 100vw), 78px);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.text_footer_sns {
  margin-top: 20px;
  color: #111111;
  font-size: clamp(15px, calc((18 / 1440) * 100vw), 21px);
  line-height: 1.8;
  font-weight: 500;
}

.footer_sns_list {
  display: flex;
  gap: clamp(44px, calc((64 / 1440) * 100vw), 76px);
  align-items: flex-start;
  justify-content: flex-start;
}

.footer_sns_item {
  flex: 0 0 clamp(96px, calc((126 / 1440) * 100vw), 148px);
}

.link_footer_sns {
  display: grid;
  justify-items: center;
  gap: 18px;
  width: 100%;
  color: #111111;
  font-size: clamp(14px, calc((16 / 1440) * 100vw), 18px);
  line-height: 1.3;
  font-weight: 500;
  white-space: normal;
  text-align: center;
  transition: opacity 0.24s ease;
}

.link_footer_sns:hover,
.link_footer_sns:focus-visible {
  opacity: 0.72;
}

.link_footer_sns img {
  display: block;
  width: clamp(54px, calc((64 / 1440) * 100vw), 72px);
  height: clamp(54px, calc((64 / 1440) * 100vw), 72px);
  object-fit: contain;
  justify-self: center;
}

.link_footer_sns span {
  justify-self: center;
  max-width: 100%;
}

.footer_sns_item:nth-child(3) .link_footer_sns span {
  white-space: nowrap;
}

.footer_nav_area {
  background: #008fd1;
}

.footer_nav_inner {
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(420px, 560px);
  gap: clamp(72px, calc((110 / 1440) * 100vw), 138px);
  align-items: start;
  width: min(82vw, 1200px);
  margin: 0 auto;
  padding: clamp(58px, calc((70 / 1440) * 100vw), 84px) 0 clamp(56px, calc((72 / 1440) * 100vw), 86px);
}

.footer_brand {
  display: grid;
  gap: 20px;
}

.logo_footer {
  display: grid;
  gap: 6px;
  width: max-content;
  max-width: 100%;
  color: var(--color_white);
}

.text_footer_address {
  color: var(--color_white);
  font-style: normal;
  font-size: clamp(13px, calc((15 / 1440) * 100vw), 15px);
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.text_footer_position {
  font-family: var(--font_jp_tb);
  font-size: clamp(15px, calc((18 / 1440) * 100vw), 21px);
  line-height: 1;
  font-weight: 700;
}

.text_footer_name {
  font-family: var(--font_jp_tb);
  font-size: clamp(25px, calc((32 / 1440) * 100vw), 38px);
  line-height: 1;
  font-weight: 700;
}

.nav_footer {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: clamp(82px, calc((110 / 1440) * 100vw), 140px);
}

.nav_footer_list {
  display: grid;
  gap: 18px;
}

.nav_footer_item {
  color: var(--color_white);
  font-size: clamp(15px, calc((18 / 1440) * 100vw), 21px);
  line-height: 1.35;
  font-weight: 700;
}

.nav_footer_item a {
  transition: opacity 0.24s ease;
}

.nav_footer_item a:hover,
.nav_footer_item a:focus-visible {
  opacity: 0.72;
}

@media (max-width: 1024px) {
  .image_footer_main {
    height: 62vw;
    min-height: 280px;
  }

  .footer_sns_inner {
    grid-template-columns: 1fr;
    gap: 36px;
    width: calc(100% - 48px);
    padding: 48px 0;
  }

  .footer_sns_text {
    display: flex;
    align-items: center;
    gap: 22px;
  }

  .heading_footer_sns {
    font-size: clamp(46px, calc((56 / 1440) * 100vw), 56px);
  }

  .text_footer_sns {
    margin-top: 0;
    font-size: 15px;
  }

  .footer_sns_list {
    flex-wrap: wrap;
    gap: 28px 24px;
    justify-content: center;
  }

  .footer_sns_item {
    flex-basis: calc((100% - 24px) / 2);
  }

  .link_footer_sns {
    gap: 12px;
    font-size: 14px;
    white-space: normal;
    text-align: center;
  }

  .link_footer_sns img {
    width: 58px;
    height: 58px;
  }

  .footer_sns_item:nth-child(3) .link_footer_sns span {
    white-space: nowrap;
  }

  .footer_nav_inner {
    grid-template-columns: 1fr;
    gap: 34px;
    width: calc(100% - 48px);
    padding: 48px 0 56px;
  }

  .text_footer_position {
    font-size: 15px;
  }

  .text_footer_name {
    font-size: clamp(26px, calc((30 / 1440) * 100vw), 30px);
  }

  .nav_footer_list {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .nav_footer {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .nav_footer_item {
    font-size: 15px;
  }
}

/* =========================================================
  Page: Policy (page-seisaku)
========================================================= */

/* policy hero
--------------------------------------------------------- */
.section_policy_hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100svh;
  overflow: hidden;
  background: var(--color_bg_section);
}

.image_policy_hero_bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
}

.image_policy_hero_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.policy_hero_inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  padding: 80px 24px;
}

.heading_policy_hero {
  width: min(70vw, 1040px);
  margin: 0;
  transform: translateY(clamp(24px, 6vh, 80px));
}

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

.heading_policy_hero img {
  display: block;
  width: 100%;
  height: auto;
}

/* policy lead
--------------------------------------------------------- */
.section_policy_lead {
  position: relative;
  z-index: 1;
  background: #77bad4;
  padding: clamp(44px, calc((68 / 1440) * 100vw), 80px) 24px 0 24px;
}

.policy_lead_inner {
  width: min(86vw, 900px);
  margin: 0 auto;
  color: var(--color_white);
  text-align: left;
}

.heading_policy_lead {
  font-family: var(--font_jp);
  font-size: clamp(22px, calc((36 / 1440) * 100vw), 42px);
  line-height: 1.4;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.text_policy_lead {
  margin-top: clamp(20px, calc((28 / 1440) * 100vw), 34px);
  font-size: clamp(15px, calc((18 / 1440) * 100vw), 21px);
  line-height: 1.9;
  font-weight: 500;
}

/* policy cards
--------------------------------------------------------- */
.section_policy_cards {
  background: #77bad4;
  padding: clamp(72px, calc((104 / 1440) * 100vw), 140px) 0 clamp(64px, calc((96 / 1440) * 100vw), 130px);
}

.policy_cards_inner {
  display: grid;
  gap: clamp(56px, calc((72 / 1440) * 100vw), 100px);
  width: min(86%, 1200px);
  margin: 0 auto;
}

.policy_card {
  position: relative;
  display: grid;
  grid-template-columns: 42% minmax(0, 1fr);
  align-items: center;
  column-gap: clamp(28px, calc((48 / 1440) * 100vw), 60px);
  min-height: 400px;
  padding: clamp(44px, calc((52 / 1440) * 100vw), 64px) clamp(28px, calc((56 / 1440) * 100vw), 72px) clamp(38px, calc((44 / 1440) * 100vw), 56px);
  background: var(--color_white);
  border-radius: clamp(16px, calc((24 / 1440) * 100vw), 28px);
  scroll-margin-top: calc(var(--anchor_offset) + 24px);
  border: 10px solid #008ED1;
}

.policy_card_badge {
  position: absolute;
  z-index: 2;
  top: clamp(-48px, calc((-40 / 1440) * 100vw), -32px);
  left: clamp(-40px, calc((-32 / 1440) * 100vw), -16px);
  width: clamp(96px, calc((132 / 1440) * 100vw), 144px);
  height: clamp(96px, calc((132 / 1440) * 100vw), 144px);
  padding: 4px;
  border-radius: 50%;
  background: var(--color_white);
  object-fit: contain;
}

.heading_policy_card {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  color: var(--color_blue);
  font-family: var(--font_jp);
  font-size: clamp(24px, calc((38 / 1440) * 100vw), 46px);
  line-height: 1.3;
  font-weight: 800;
  text-align: left;
}

.image_policy_card {
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0;
}

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

.text_policy_card {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  margin-top: clamp(18px, calc((24 / 1440) * 100vw), 30px);
  color: #111111;
  font-size: clamp(15px, calc((17 / 1440) * 100vw), 20px);
  line-height: 1.95;
  font-weight: 500;
  overflow-wrap: anywhere;
}

@media (max-width: 1024px) {
  .section_policy_hero {
    min-height: 100svh;
    align-items: flex-start;
  }

  .image_policy_hero_bg img {
    object-position: center 24%;
  }

  .policy_hero_inner {
    padding: clamp(100px, 22vw, 160px) 24px 80px;
  }

  .heading_policy_hero {
    width: min(72vw, 400px);
    transform: translateX(-5%);
  }

  .section_policy_lead {
    padding: 48px 24px 0 24px;
  }

  .heading_policy_lead {
    font-size: clamp(22px, calc((26 / 1440) * 100vw), 26px);
  }

  .text_policy_lead {
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.85;
  }

  .section_policy_cards {
    padding: 56px 0 64px;
  }

  .policy_cards_inner {
    width: calc(100% - 40px);
    gap: 44px;
  }

  .policy_card {
    grid-template-columns: minmax(0, 1fr);
    column-gap: 0;
    min-height: 0;
    padding: 40px 22px 32px;
    border-radius: 18px;
    border: 6px solid #008ED1;
  }

  .policy_card_badge {
    top: -30px;
    left: -12px;
    width: 88px;
    height: 88px;
  }

  .heading_policy_card {
    grid-column: auto;
    grid-row: auto;
    align-self: auto;
    font-size: clamp(22px, calc((24 / 1440) * 100vw), 26px);
    text-align: center;
  }

  .image_policy_card {
    grid-column: auto;
    grid-row: auto;
    align-self: auto;
    width: min(86%, 300px);
    margin: 24px auto 0;
  }

  .text_policy_card {
    grid-column: auto;
    grid-row: auto;
    align-self: auto;
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.85;
  }
}

/* 下層ページでは共通フッターの大判画像を非表示 */
.page_lower .image_footer_main {
  display: none;
}

/* policy footer image
--------------------------------------------------------- */

.section_policy_footer {
  background: #77bad4;
}

.policy_footer_inner {
  display: flex;
  align-items: center;
  gap: clamp(28px, 5vw, 96px);
  padding: clamp(56px, 6vw, 100px) clamp(24px, 5vw, 80px) 0 10%;
}

.image_policy_footer {
  align-self: flex-end;
  flex: 0 0 auto;
  display: block;
  width: min(40.36vw, 460px);
}

.image_policy_footer img {
  display: block;
  width: 100%;
  height: auto;
}

.policy_stats {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 4vw, 64px);
  padding-bottom: clamp(40px, 5vw, 80px);
  color: var(--color_white);
}

.policy_stat_value {
  display: flex;
  align-items: baseline;
  gap: clamp(8px, 1vw, 14px);
  color: var(--color_white);
  font-family: var(--font_en);
  font-weight: 700;
  line-height: 1;
}

.policy_stat_num {
  font-family: var(--font_jp_tb);
  font-size: clamp(40px, calc((72 / 1440) * 100vw), 80px);
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}

.policy_stat_unit {
  font-family: var(--font_jp);
  font-size: clamp(14px, calc((18 / 1440) * 100vw), 20px);
  font-weight: 700;
}

.policy_stat_label {
  margin-top: clamp(8px, 1vw, 14px);
  color: var(--color_white);
  font-size: clamp(17px, calc((21 / 1440) * 100vw), 23px);
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 0.04em;
}

@media (max-width: 1024px) {
  .policy_footer_inner {
    flex-direction: column-reverse;
    align-items: stretch;
    gap: clamp(24px, 6vw, 40px);
    padding: 40px 24px 0;
  }

  .image_policy_footer {
    align-self: center;
    width: 308px;
  }

  .policy_stats {
    align-items: center;
    gap: 32px;
    padding-top: 8px;
    padding-bottom: 0;
    text-align: center;
  }

  .policy_stat_value {
    justify-content: center;
  }

  .policy_stat_num {
    font-size: clamp(40px, 12vw, 56px);
  }

  .policy_stat_unit,
  .policy_stat_label {
    font-size: 18px;
  }
}

/* =========================================================
  Page: Report archive (page-report)
========================================================= */
.section_report_archive {
  position: relative;
  padding: clamp(118px, calc((150 / 1440) * 100vw), 190px) 0 clamp(80px, calc((110 / 1440) * 100vw), 140px);
  background: var(--color_white) url("../images/report_bg.jpg") center top / cover no-repeat;
}

.report_archive_inner {
  width: min(88vw, 1500px);
  margin: 0 auto;
}

.report_archive_head {
  text-align: center;
}

.report_archive_body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(180px, calc((220 / 1440) * 100vw), 248px);
  gap: clamp(40px, calc((64 / 1440) * 100vw), 92px);
  margin-top: clamp(56px, calc((80 / 1440) * 100vw), 104px);
}

.report_archive_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(40px, calc((52 / 1440) * 100vw), 64px) clamp(22px, calc((32 / 1440) * 100vw), 40px);
}

.report_archive_card {
  position: relative;
  display: block;
  color: #111111;
}

.image_report_archive_thumb {
  overflow: hidden;
  margin: 0;
  border-radius: 12px;
  aspect-ratio: 374 / 210;
  background: #e9e9e9;
}

.image_report_archive_thumb img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.report_archive_card:hover .image_report_archive_thumb img,
.report_archive_card:focus-visible .image_report_archive_thumb img {
  transform: scale(1.04);
  opacity: 0.9;
}

.report_archive_new {
  position: absolute;
  z-index: 1;
  top: -10px;
  left: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  padding: 7px 16px;
  background: var(--color_blue);
  color: var(--color_white);
  font-family: var(--font_en);
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 100vmax;
}

.text_report_archive_date {
  display: block;
  margin-top: clamp(14px, calc((18 / 1440) * 100vw), 22px);
  color: #111111;
  font-size: clamp(14px, calc((16 / 1440) * 100vw), 18px);
  line-height: 1.2;
  font-weight: 400;
}

.text_report_archive_title {
  display: -webkit-box;
  margin-top: 8px;
  overflow: hidden;
  color: #111111;
  font-size: clamp(15px, calc((17 / 1440) * 100vw), 20px);
  line-height: 1.5;
  font-weight: 800;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.report_archive_pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, calc((20 / 1440) * 100vw), 26px);
  margin-top: clamp(48px, calc((64 / 1440) * 100vw), 84px);
  font-family: var(--font_jp);
  font-size: clamp(16px, calc((18 / 1440) * 100vw), 18px);
  font-weight: 700;
}

.report_archive_pager a {
  color: var(--color_blue);
  font-weight: 400;
  transition: opacity 0.2s ease;
}

.report_archive_pager a:hover,
.report_archive_pager a:focus-visible {
  opacity: 0.68;
}

.report_archive_pager_current {
  color: var(--color_blue);
}

.report_archive_pager_next {
  position: relative;
  display: inline-block;
  width: 0.8em;
  height: 0.8em;
}

.report_archive_pager_next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.42em;
  height: 0.42em;
  border-top: 2px solid var(--color_blue);
  border-right: 2px solid var(--color_blue);
  transform: translate(-65%, -50%) rotate(45deg);
  transition: opacity 0.2s ease;
}

.report_archive_pager_next:hover::before,
.report_archive_pager_next:focus-visible::before {
  opacity: 0.68;
}

.report_archive_side {
  border-left: 1px solid var(--color_line);
  padding-left: clamp(28px, calc((48 / 1440) * 100vw), 64px);
}

.heading_report_tag {
  color: var(--color_blue);
  font-family: var(--font_en);
  font-size: clamp(26px, calc((34 / 1440) * 100vw), 40px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.report_archive_side_sub {
  margin-top: 8px;
  color: var(--color_blue);
  font-size: clamp(13px, calc((15 / 1440) * 100vw), 16px);
  line-height: 1;
  font-weight: 700;
}

.report_tag_links {
  display: grid;
  gap: clamp(12px, calc((16 / 1440) * 100vw), 18px);
  margin-top: clamp(22px, calc((30 / 1440) * 100vw), 36px);
}

.report_tag_links a {
  color: var(--color_blue);
  font-size: clamp(14px, calc((16 / 1440) * 100vw), 18px);
  line-height: 1.4;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.report_tag_links a:hover,
.report_tag_links a:focus-visible {
  opacity: 0.68;
}

/* 絞り込み中のタグ（現在表示中） */
.report_tag_links a.is_current,
.report_archive_tag_pills a.is_current {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.report_archive_tag_pills {
  display: none;
}

.report_archive_tag_more {
  display: none;
  width: max-content;
  margin: 16px auto 0;
  padding: 6px 10px;
  border: 0;
  background: none;
  color: var(--color_blue);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.report_archive_tag_more:hover,
.report_archive_tag_more:focus-visible {
  opacity: 0.68;
}

@media (max-width: 1024px) {
  .section_report_archive {
    padding: 96px 0 60px;
    background: var(--color_white);
  }

  .report_archive_inner {
    width: calc(100% - 48px);
  }

  .report_archive_body {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 40px;
  }

  .report_archive_grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .report_archive_card {
    display: grid;
    grid-template-columns: 44% minmax(0, 1fr);
    gap: 16px;
    align-items: start;
  }

  .image_report_archive_thumb {
    border-radius: 10px;
  }

  .report_archive_new {
    top: -8px;
    left: auto;
    right: 10px;
    min-width: 50px;
    padding: 6px 13px;
    font-size: 13px;
  }

  .text_report_archive_date {
    margin-top: 0;
  }

  .text_report_archive_title {
    margin-top: 8px;
    font-size: clamp(14px, calc((16 / 1440) * 100vw), 16px);
    -webkit-line-clamp: 3;
  }

  .report_archive_pager {
    margin-top: 36px;
  }

  .report_archive_side {
    margin-top: 44px;
    padding-top: 40px;
    padding-left: 0;
    border-top: 1px solid var(--color_line);
    border-left: 0;
    text-align: center;
  }

  .heading_report_tag {
    font-size: clamp(28px, calc((34 / 1440) * 100vw), 34px);
  }

  .report_tag_links {
    display: none;
  }

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

  .report_archive_tag_pills a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    border-radius: 999px;
    background: var(--color_blue);
    color: var(--color_white);
    font-size: clamp(12px, calc((16 / 1440) * 100vw), 16px);
    line-height: 1;
    font-weight: 500;
    white-space: nowrap;
  }

  .report_archive_tag_pills.is_collapsed li:nth-child(n + 4) {
    display: none;
  }

  .report_archive_tag_more.is_active {
    display: block;
  }
}

/* =========================================================
  Page: Report single (single-report)
========================================================= */
.section_report_single {
  position: relative;
  padding-top: clamp(118px, calc((150 / 1440) * 100vw), 190px);
  background: var(--color_white);
}

.report_single_inner {
  width: min(86vw, 1000px);
  margin: 0 auto;
}

.report_single_head {
  text-align: center;
}

.report_single_titlebar {
  margin-top: clamp(40px, calc((56 / 1440) * 100vw), 72px);
  padding: clamp(16px, calc((20 / 1440) * 100vw), 26px) clamp(20px, calc((28 / 1440) * 100vw), 36px);
  background: var(--color_blue);
  color: var(--color_white);
  border-radius: 4px;
}

.text_report_single_date {
  display: block;
  font-size: clamp(13px, calc((15 / 1440) * 100vw), 16px);
  line-height: 1;
  font-weight: 500;
  opacity: 0.92;
}

.heading_report_single_title {
  margin-top: 8px;
  font-family: var(--font_jp);
  font-size: clamp(18px, calc((22 / 1440) * 100vw), 26px);
  line-height: 1.5;
  font-weight: 800;
}

.image_report_single_main {
  overflow: hidden;
  max-width: 600px;
  margin: clamp(24px, calc((30 / 1440) * 100vw), 36px) 0 0;
  border-radius: 18px;
  aspect-ratio: 16 / 10;
  background: #e9e9e9;
}

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

.report_single_body {
  margin-top: clamp(26px, calc((34 / 1440) * 100vw), 40px);
}

.heading_report_single_lead {
  color: #111111;
  font-size: clamp(17px, calc((20 / 1440) * 100vw), 22px);
  line-height: 1.7;
  font-weight: 800;
}

.text_report_single_body {
  margin-top: 16px;
  color: #111111;
  font-size: clamp(15px, calc((16 / 1440) * 100vw), 17px);
  line-height: 1.95;
  font-weight: 500;
}

.text_report_single_body + .text_report_single_body {
  margin-top: 1.4em;
}

/* the_content() が出力する本文段落（WP本文用） */
.report_single_body p {
  margin-top: 16px;
  color: #111111;
  font-size: clamp(15px, calc((16 / 1440) * 100vw), 17px);
  line-height: 1.95;
  font-weight: 500;
}

.report_single_body p + p {
  margin-top: 1.4em;
}

.report_single_tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: clamp(24px, calc((30 / 1440) * 100vw), 36px);
}

.report_single_tags a {
  color: var(--color_blue);
  font-size: clamp(14px, calc((16 / 1440) * 100vw), 17px);
  line-height: 1.4;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.report_single_tags a:hover,
.report_single_tags a:focus-visible {
  opacity: 0.68;
}

.report_single_gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, calc((22 / 1440) * 100vw), 24px);
  margin-top: clamp(34px, calc((44 / 1440) * 100vw), 52px);
}

/* 枚数に応じたカラム数（2枚=2カラム / 3枚=3カラム） */
.report_single_gallery_2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

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

.report_single_gallery_item {
  margin: 0;
}

.report_single_gallery_item img {
  display: block;
  width: 100%;
  aspect-ratio: 400 / 264;
  object-fit: cover;
  border-radius: 10px;
  background: #e9e9e9;
}

.report_single_gallery_item figcaption {
  margin-top: 10px;
  color: #333333;
  font-size: clamp(12px, calc((13 / 1440) * 100vw), 14px);
  line-height: 1.5;
  font-weight: 500;
}

.report_single_video {
  max-width: 600px;
  margin-top: clamp(34px, calc((44 / 1440) * 100vw), 52px);
}

.report_single_video_frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  background: #000000;
}

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

.button_video_play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 48px;
  border: 0;
  border-radius: 14px;
  background: #ff0000;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: background-color 0.24s ease;
}

.button_video_play::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 0 9px 16px;
  border-color: transparent transparent transparent #ffffff;
}

.button_video_play:hover,
.button_video_play:focus-visible {
  background: #cc0000;
}

.text_report_single_caption {
  margin-top: 14px;
  color: #333333;
  font-size: clamp(14px, calc((15 / 1440) * 100vw), 16px);
  line-height: 1.7;
  font-weight: 500;
}

.report_single_divider {
  width: min(86vw, 1000px);
  height: 1px;
  margin: clamp(48px, calc((64 / 1440) * 100vw), 80px) auto;
  border: 0;
  background: var(--color_line);
}

.report_single_related {
  padding-bottom: clamp(72px, calc((100 / 1440) * 100vw), 130px);
}

.heading_report_related {
  color: var(--color_blue);
  font-family: var(--font_jp);
  font-size: clamp(20px, calc((28 / 1440) * 100vw), 32px);
  line-height: 1.3;
  font-weight: 800;
  text-align: center;
}

.report_related_view {
  position: relative;
  margin-top: clamp(28px, calc((36 / 1440) * 100vw), 44px);
}

.report_related_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, calc((22 / 1440) * 100vw), 24px);
}

.report_related_card {
  display: block;
  color: #111111;
}

.image_report_related_thumb {
  overflow: hidden;
  margin: 0;
  border-radius: 10px;
  aspect-ratio: 510 / 289;
  background: #e9e9e9;
}

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

.text_report_related_date {
  display: block;
  margin-top: 12px;
  color: #111111;
  font-size: clamp(13px, calc((15 / 1440) * 100vw), 16px);
  line-height: 1.2;
  font-weight: 400;
}

.text_report_related_title {
  display: -webkit-box;
  margin-top: 6px;
  overflow: hidden;
  color: #111111;
  font-size: clamp(14px, calc((16 / 1440) * 100vw), 18px);
  line-height: 1.45;
  font-weight: 800;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.report_related_next {
  position: absolute;
  top: calc((100% - 60px) / 2);
  right: clamp(-40px, calc((-30 / 1440) * 100vw), -20px);
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.report_related_next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  border-top: 3px solid var(--color_blue);
  border-right: 3px solid var(--color_blue);
  transform: translate(-62%, -50%) rotate(45deg);
}

.button_report_back {
  display: flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  padding: clamp(14px, calc((18 / 1440) * 100vw), 19px) clamp(40px, calc((56 / 1440) * 100vw), 64px);
  margin: clamp(48px, calc((64 / 1440) * 100vw), 84px) auto 0;
  border-radius: 999px;
  background: var(--color_blue);
  color: var(--color_white);
  font-family: var(--font_jp);
  font-size: clamp(15px, calc((18 / 1440) * 100vw), 20px);
  line-height: 1;
  font-weight: 800;
  transition: background-color 0.24s ease;
}

.button_report_back::after {
  content: ">";
  margin-left: 24px;
  font-size: 1.1em;
  line-height: 1;
}

.button_report_back:hover,
.button_report_back:focus-visible {
  background: #007fbd;
}

@media (max-width: 1024px) {
  .section_report_single {
    padding-top: 96px;
  }

  .report_single_inner {
    width: calc(100% - 48px);
  }

  .report_single_titlebar {
    width: 100vw;
    margin-right: calc(-50vw + 50%);
    margin-left: calc(-50vw + 50%);
    padding-right: 24px;
    padding-left: 24px;
    border-radius: 0;
  }

  .report_single_gallery {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .report_single_gallery_item img {
    aspect-ratio: 16 / 10;
  }

  .report_single_gallery_item figcaption {
    margin-top: 12px;
    font-size: 13px;
  }

  .report_single_divider {
    width: calc(100% - 48px);
  }

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

  .report_related_card:nth-child(n + 3) {
    display: none;
  }

  .report_related_next {
    display: none;
  }
}

/* =========================================================
  Page: Movie archive (page-movie)
========================================================= */
.section_movie_archive {
  position: relative;
  padding: clamp(96px, calc((128 / 1440) * 100vw), 168px) 0 clamp(80px, calc((110 / 1440) * 100vw), 140px);
  background: var(--color_white);
}

.movie_archive_inner {
  width: min(88vw, 1500px);
  margin: 0 auto;
}

.heading_movie_jp {
  margin-top: 12px;
}

.movie_archive_body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(220px, calc((300 / 1440) * 100vw), 320px);
  gap: clamp(36px, calc((56 / 1440) * 100vw), 76px);
}

.movie_archive_main {
  margin-top: clamp(48px, calc((72 / 1440) * 100vw), 96px);
}

.movie_archive_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(36px, calc((48 / 1440) * 100vw), 60px) clamp(20px, calc((30 / 1440) * 100vw), 36px);
}

.movie_archive_card {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  color: #111111;
  text-align: left;
  cursor: pointer;
}

.image_movie_archive_thumb {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  aspect-ratio: 16 / 9;
  background: #1a1a1a;
}

.image_movie_archive_thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.movie_archive_card:hover .image_movie_archive_thumb img,
.movie_archive_card:focus-visible .image_movie_archive_thumb img {
  transform: scale(1.04);
  opacity: 0.9;
}

.text_movie_archive_date {
  display: block;
  margin-top: clamp(12px, calc((16 / 1440) * 100vw), 20px);
  color: #111111;
  font-size: clamp(13px, calc((15 / 1440) * 100vw), 17px);
  line-height: 1.2;
  font-weight: 400;
}

.text_movie_archive_title {
  display: -webkit-box;
  margin-top: 6px;
  overflow: hidden;
  color: #111111;
  font-size: clamp(14px, calc((16 / 1440) * 100vw), 19px);
  line-height: 1.45;
  font-weight: 800;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.movie_archive_pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, calc((20 / 1440) * 100vw), 26px);
  margin-top: clamp(44px, calc((60 / 1440) * 100vw), 80px);
  font-family: var(--font_jp);
  font-size: clamp(16px, calc((18 / 1440) * 100vw), 18px);
  font-weight: 700;
}

.movie_archive_pager a,
.movie_archive_pager_current {
  color: var(--color_blue);
}

.movie_archive_pager a {
  font-weight: 400;
  transition: opacity 0.2s ease;
}

.movie_archive_pager a:hover,
.movie_archive_pager a:focus-visible {
  opacity: 0.68;
}

.movie_archive_pager_next {
  position: relative;
  display: inline-block;
  width: 0.8em;
  height: 0.8em;
}

.movie_archive_pager_next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.42em;
  height: 0.42em;
  border-top: 2px solid var(--color_blue);
  border-right: 2px solid var(--color_blue);
  transform: translate(-65%, -50%) rotate(45deg);
  transition: opacity 0.2s ease;
}

.movie_archive_pager_next:hover::before,
.movie_archive_pager_next:focus-visible::before {
  opacity: 0.68;
}

.movie_archive_side {
  position: relative;
  align-self: stretch;
  padding: clamp(28px, calc((36 / 1440) * 100vw), 44px) clamp(24px, calc((30 / 1440) * 100vw), 40px) clamp(40px, calc((56 / 1440) * 100vw), 72px);
}

.movie_archive_side > * {        /* 中身を青帯より前面に */
  position: relative;
  z-index: 1;
}

.movie_archive_side::before {    /* 青帯をセクション全高(上下paddingぶん含む)へ */
  content: "";
  position: absolute;
  top: calc(-1 * clamp(96px, calc((128 / 1440) * 100vw), 168px));
  bottom: calc(-1 * clamp(80px, calc((110 / 1440) * 100vw), 140px));
  left: 0;
  width: 100vw;
  background: var(--color_blue);
}

.movie_archive_search {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: clamp(18px, calc((24 / 1440) * 100vw), 30px);
}

.movie_archive_search_input {
  width: 100%;
  height: 44px;
  padding: 0 48px 0 16px;
  border: 0;
  border-radius: 0;
  background: var(--color_white);
  color: var(--color_text);
  font-size: 16px;
}

.movie_archive_search_button {
  position: absolute;
  top: 50%;
  right: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--color_blue);
  cursor: pointer;
  transform: translateY(-50%);
}

.movie_archive_search_button svg {
  width: 22px;
  height: 22px;
}

.heading_movie_archive {
  color: var(--color_white);
  font-family: var(--font_en);
  font-size: clamp(24px, calc((30 / 1440) * 100vw), 34px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.movie_archive_archive_sub {
  margin-top: 8px;
  color: var(--color_white);
  font-size: clamp(13px, calc((15 / 1440) * 100vw), 16px);
  line-height: 1;
  font-weight: 700;
}

/* アーカイブ開閉トグル（PCは非表示、SPのみアコーディオン） */
.movie_archive_toggle {
  display: none;
}

.movie_archive_years {
  display: grid;
  gap: clamp(14px, calc((18 / 1440) * 100vw), 22px);
  margin-top: clamp(22px, calc((30 / 1440) * 100vw), 38px);
}

.movie_archive_years a {
  color: var(--color_white);
  font-family: var(--font_jp);
  font-size: clamp(16px, calc((18 / 1440) * 100vw), 20px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.08em;
  transition: opacity 0.2s ease;
}

.movie_archive_years a:hover,
.movie_archive_years a:focus-visible {
  opacity: 0.72;
}

@media (max-width: 1024px) {
  .section_movie_archive {
    padding: 88px 0 60px;
  }

  .movie_archive_inner {
    width: calc(100% - 48px);
  }

  .movie_archive_head {
    order: 1;
    text-align: left;
  }

  .movie_archive_body {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 0;
  }

  .movie_archive_left,
  .movie_archive_side {
    display: contents;
  }

  .movie_archive_side::before {    /* SPは青帯不要（display:contentsでも::beforeは生成されるため明示的に消す） */
    display: none;
  }

  .movie_archive_search {
    order: 2;
    margin-top: 24px;
  }

  .movie_archive_main {
    order: 3;
    margin-top: 28px;
  }

  .movie_archive_archive_head {
    order: 4;
    margin-top: 44px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--color_line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  .movie_archive_toggle {
    display: block;
    position: relative;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    padding: 0;
    border: 0;
    background: none;
    cursor: pointer;
  }

  .movie_archive_toggle::before,
  .movie_archive_toggle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 2px;
    background: var(--color_blue);
    transform: translate(-50%, -50%);
  }

  .movie_archive_toggle::after {
    transition: opacity 0.25s ease, transform 0.25s ease;
    transform: translate(-50%, -50%) rotate(90deg);
  }

  /* 開いている時は横棒だけ＝「−」、閉じている時は縦棒も出して「＋」 */
  .movie_archive_toggle[aria-expanded="true"]::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(0deg);
  }

  .movie_archive_grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .text_movie_archive_date {
    margin-top: 14px;
    font-size: 14px;
  }

  .text_movie_archive_title {
    margin-top: 8px;
    font-size: clamp(15px, calc((17 / 1440) * 100vw), 17px);
    -webkit-line-clamp: 2;
  }

  .movie_archive_pager {
    margin-top: 36px;
  }

  .movie_archive_search_input {
    height: 48px;
    border: 1px solid var(--color_blue);
  }

  .heading_movie_archive {
    color: var(--color_blue);
  }

  .movie_archive_archive_sub {
    color: var(--color_blue);
  }

  .movie_archive_years {
    order: 5;
    margin-top: 26px;
    grid-template-columns: max-content;
    gap: 22px;
    overflow: hidden;
    max-height: 400px;
    transition: max-height 0.35s ease, opacity 0.3s ease, margin-top 0.35s ease;
  }

  .movie_archive_years.is_collapsed {
    max-height: 0;
    margin-top: 0;
    opacity: 0;
  }

  .movie_archive_years a {
    color: var(--color_blue);
  }
}

/* =========================================================
  Page: Privacy policy (page-privacy)
========================================================= */
.section_privacy {
  padding: clamp(118px, calc((150 / 1440) * 100vw), 190px) 0 clamp(80px, calc((110 / 1440) * 100vw), 140px);
  background: #f2f2f2;
}

.privacy_inner {
  width: min(86vw, 920px);
  margin: 0 auto;
}

.privacy_head {
  text-align: center;
}

.heading_privacy {
  font-size: clamp(52px, calc((68 / 1440) * 100vw), 92px);
  line-height: 0.95;
  letter-spacing: 0.14em;
}

.heading_privacy_jp {
  margin-top: 24px;
  color: var(--color_blue);
  font-size: clamp(17px, calc((22 / 1440) * 100vw), 26px);
  line-height: 1;
  font-weight: 700;
}

.privacy_body {
  margin-top: clamp(48px, calc((80 / 1440) * 100vw), 88px);
}

.privacy_lead_title {
  color: var(--color_text);
  font-size: clamp(16px, calc((20 / 1440) * 100vw), 22px);
  line-height: 1.6;
  font-weight: 700;
}

.privacy_lead .privacy_text {
  margin-top: 18px;
}

.privacy_section {
  margin-top: clamp(40px, calc((52 / 1440) * 100vw), 64px);
}

.privacy_section_title {
  color: var(--color_text);
  font-size: clamp(15px, calc((17 / 1440) * 100vw), 18px);
  line-height: 1.5;
  font-weight: 700;
}

.privacy_text {
  margin-top: 16px;
  color: #666666;
  font-size: clamp(14px, calc((16 / 1440) * 100vw), 18px);
  line-height: 1.95;
  letter-spacing: 0.02em;
}

.privacy_contact_note {
  margin-top: 6px;
  color: #999999;
  font-size: clamp(11px, calc((12 / 1440) * 100vw), 13px);
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.privacy_list {
  margin-top: 16px;
}

.privacy_list li {
  position: relative;
  color: #666666;
  font-size: clamp(13px, calc((14 / 1440) * 100vw), 15px);
  line-height: 1.95;
  letter-spacing: 0.02em;
}

@media (max-width: 1024px) {
  .section_privacy {
    padding: 96px 0 64px;
  }

  .heading_privacy {
    font-size: clamp(40px, calc((48 / 1440) * 100vw), 48px);
  }

  .heading_privacy_jp {
    margin-top: 14px;
    font-size: clamp(16px, calc((18 / 1440) * 100vw), 18px);
  }

  .privacy_inner {
    width: calc(100% - 48px);
  }

  .privacy_body {
    margin-top: 40px;
  }
}

/* =========================================================
  Modal: Video
========================================================= */
body.is_modal_open {
  overflow: hidden;
}

.modal_video {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 4vw, 48px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0s linear 0.35s;
}

.modal_video.is_open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.35s ease, visibility 0s linear 0s;
}

.modal_video_bg {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
}

.modal_video_close {
  position: absolute;
  top: clamp(16px, 3vw, 32px);
  right: clamp(16px, 3vw, 32px);
  z-index: 2;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}

.modal_video_close::before,
.modal_video_close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 2px;
  background: var(--color_white);
}

.modal_video_close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal_video_close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.modal_video_inner {
  position: relative;
  z-index: 1;
  width: min(100%, 900px);
  transform: translateY(16px) scale(0.97);
  transition: transform 0.35s ease;
}

.modal_video.is_open .modal_video_inner {
  transform: none;
}

.modal_video_external {
  position: absolute;
  top: -38px;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: var(--color_white);
  transition: opacity 0.2s ease;
}

.modal_video_external:hover,
.modal_video_external:focus-visible {
  opacity: 0.72;
}

.modal_video_external svg {
  width: 24px;
  height: 24px;
}

.modal_video_frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.modal_video_frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

/* =========================================================
  Modal: Photo（scroll_view の写真拡大表示）
========================================================= */
/* pin は pointer-events:none のため、クリック対象のトリガーだけ有効化する */
.scroll_view_trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
  overflow: hidden;
}

.modal_photo {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 4vw, 48px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0s linear 0.35s;
}

.modal_photo.is_open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.35s ease, visibility 0s linear 0s;
}

.modal_photo_bg {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
}

.modal_photo_close {
  position: absolute;
  top: clamp(16px, 3vw, 32px);
  right: clamp(16px, 3vw, 32px);
  z-index: 2;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}

.modal_photo_close::before,
.modal_photo_close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 2px;
  background: var(--color_white);
}

.modal_photo_close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal_photo_close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* 白いカード（白枠付きの写真＋キャプション） */
.modal_photo_inner {
  position: relative;
  z-index: 1;
  max-width: min(100%, 640px);
  padding: clamp(12px, 1.4vw, 18px);
  background: var(--color_white);
  transform: translateY(16px) scale(0.97);
  transition: transform 0.35s ease;
}

.modal_photo.is_open .modal_photo_inner {
  transform: none;
}

.modal_photo_figure {
  margin: 0;
}

.modal_photo_image {
  display: block;
  max-width: 100%;
  max-height: 72svh;
  width: auto;
  height: auto;
  margin: 0 auto;
}

.modal_photo_caption {
  margin-top: clamp(10px, 1vw, 14px);
  color: var(--color_text);
  font-size: clamp(12px, calc((14 / 1440) * 100vw), 15px);
  line-height: 1.7;
  letter-spacing: 0.04em;
}

.modal_photo_caption:empty {
  display: none;
}
