@charset "UTF-8";
/*
Theme Name: VOZEL2026
Theme URI: https://vozel.jp
Author: 戸田涼太
Description: 
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: my-classic-theme
*/
/* --- 1. 基本設定の読み込み --- */
/* Modern CSS Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

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

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

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

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

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}
/* --- 2. パーツ（モジュール）の読み込み --- */
#sandstorm {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
  will-change: transform;
}

#header.header_section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1200;
  padding: 16px 24px;
  pointer-events: none;
  contain: layout style;
  /* --- Glass Container --- */
  /* --- Logo --- */
  /* --- PC Navigation --- */
  /* --- Actions (CTA & Hamburger) --- */
}
@media (max-width: 768px) {
  #header.header_section {
    padding: 0;
  }
}
#header.header_section .header_glass {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1360px;
  width: 100%;
  margin: 0 auto;
  padding: 10px 24px;
  background: rgba(20, 20, 20, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 99px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), backdrop-filter 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-radius 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: background-color, backdrop-filter;
}
@media (max-width: 768px) {
  #header.header_section .header_glass {
    border-radius: 0;
    background: rgba(0, 0, 0, 0.6);
    padding: 14px 20px;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}
#header.header_section .header_logo {
  margin: 0;
  line-height: 1;
  display: flex;
  align-items: center;
  transition: opacity 0.3s;
  will-change: opacity;
}
#header.header_section .header_logo img {
  height: 32px;
  width: auto;
  display: block;
  transition: opacity 0.3s;
}
@media (min-width: 1024px) {
  #header.header_section .header_logo img {
    height: 36px;
  }
}
#header.header_section .header_logo a:hover img {
  opacity: 0.8;
}
#header.header_section .header_nav.pc_only {
  transition: opacity 0.3s;
}
@media (max-width: 1024px) {
  #header.header_section .header_nav.pc_only {
    display: none;
  }
}
#header.header_section .header_nav.pc_only .nav_list {
  display: flex;
  gap: 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}
#header.header_section .header_nav.pc_only .nav_list li a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.3rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.05em;
  position: relative;
  padding: 8px 0;
  transition: color 0.3s;
}
#header.header_section .header_nav.pc_only .nav_list li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scale(0);
  width: 4px;
  height: 4px;
  background: #c90017;
  border-radius: 50%;
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  will-change: transform;
}
#header.header_section .header_nav.pc_only .nav_list li a:hover {
  color: #fff;
}
#header.header_section .header_nav.pc_only .nav_list li a:hover::after {
  transform: translateX(-50%) scale(1);
}
#header.header_section .header_actions {
  display: flex;
  align-items: center;
  gap: 16px;
  /* ENTRY Button (PC) */
  /* Hamburger Menu */
}
#header.header_section .header_actions .btn_header_cta.pc_only {
  background: #fff;
  color: #000;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 99px;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}
@media (max-width: 1024px) {
  #header.header_section .header_actions .btn_header_cta.pc_only {
    display: none;
  }
}
#header.header_section .header_actions .btn_header_cta.pc_only:hover {
  background: #c90017;
  color: #fff;
}
#header.header_section .header_actions .hamburger {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
  width: 44px;
  height: 44px;
  justify-content: center;
  position: relative;
  z-index: 1101;
}
#header.header_section .header_actions .hamburger .bar {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: width 0.4s ease, transform 0.4s ease;
  will-change: transform, width;
}
#header.header_section .header_actions .hamburger .bar:nth-child(1) {
  width: 24px;
}
#header.header_section .header_actions .hamburger .bar:nth-child(2) {
  width: 16px;
}
#header.header_section .header_actions .hamburger .label {
  font-size: 0.8rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: 4px;
  opacity: 0.8;
  transition: opacity 0.3s;
}
#header.header_section .header_actions .hamburger:hover .bar:nth-child(2) {
  width: 24px;
}
#header.header_section .header_actions .hamburger.active .bar:nth-child(1) {
  width: 24px;
  transform: translateY(3.5px) rotate(45deg);
}
#header.header_section .header_actions .hamburger.active .bar:nth-child(2) {
  width: 24px;
  transform: translateY(-3.5px) rotate(-45deg);
}
#header.header_section .header_actions .hamburger.active .label {
  display: none;
}

body.body--menu-open {
  overflow: hidden;
  height: 100dvh;
  position: fixed;
  width: 100%;
}
body.body--menu-open #header .header_glass {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
body.body--menu-open #header .header_logo,
body.body--menu-open #header .header_nav,
body.body--menu-open #header .btn_header_cta {
  opacity: 0;
  pointer-events: none;
}

.menu_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  z-index: 1050;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s, visibility 0.4s;
  will-change: opacity, visibility;
  contain: layout style;
  /* Navigation Links */
  /* Side Contents */
}
.menu_overlay.is-open {
  visibility: visible;
  opacity: 1;
}
.menu_overlay.is-open .overlay_inner {
  transform: translateY(0);
  opacity: 1;
}
.menu_overlay .overlay_bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  will-change: backdrop-filter;
}
.menu_overlay .overlay_container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 100px 24px 60px;
  padding-bottom: calc(60px + env(safe-area-inset-bottom));
}
.menu_overlay .overlay_inner {
  width: 100%;
  max-width: 1000px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  transform: translateY(20px);
  opacity: 0;
  will-change: transform, opacity;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.1s, opacity 0.5s ease 0.1s;
}
@media (max-width: 768px) {
  .menu_overlay .overlay_inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    align-content: center;
  }
}
.menu_overlay .nav_overlay .overlay_nav_list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.menu_overlay .nav_overlay .overlay_nav_list li a {
  display: block;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  line-height: 1.1;
  transition: color 0.3s, transform 0.3s;
  will-change: transform;
}
.menu_overlay .nav_overlay .overlay_nav_list li a:hover {
  color: #fff;
  transform: translateX(10px);
}
.menu_overlay .overlay_side {
  display: flex;
  flex-direction: column;
  gap: 40px;
  contain: layout;
}
@media (max-width: 768px) {
  .menu_overlay .overlay_side {
    align-items: center;
    gap: 32px;
  }
}
.menu_overlay .overlay_side .nav_cta .cta_label {
  font-size: 1.1rem;
  color: #888;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.1em;
}
.menu_overlay .overlay_side .nav_cta .cta_buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.menu_overlay .overlay_side .nav_cta .btn_overlay {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 320px;
  padding: 18px 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 700;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}
.menu_overlay .overlay_side .nav_cta .btn_overlay .arrow {
  transition: transform 0.3s;
}
.menu_overlay .overlay_side .nav_cta .btn_overlay:hover {
  background: #fff;
  color: #000;
}
.menu_overlay .overlay_side .nav_cta .btn_overlay:hover .arrow {
  transform: translateX(5px);
}
.menu_overlay .overlay_side .nav_cta .btn_overlay.btn_secondary {
  background: #c90017;
  border-color: #c90017;
}
.menu_overlay .overlay_side .nav_cta .btn_overlay.btn_secondary:hover {
  background: #fff;
  color: #c90017;
}
.menu_overlay .overlay_side .nav_social {
  display: flex;
  gap: 32px;
}
.menu_overlay .overlay_side .nav_social a {
  opacity: 0.6;
  transition: opacity 0.3s, transform 0.3s;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu_overlay .overlay_side .nav_social a:hover {
  opacity: 1;
  transform: scale(1.1);
}
.menu_overlay .overlay_side .nav_social a img {
  width: 100%;
  height: auto;
}

/* ----------------------------------
   2026 Style Footer (Optimized)
---------------------------------- */
#footer.footer_section {
  color: #fff;
  background-color: transparent;
  padding: clamp(60px, 8vw, 100px) 0 40px;
  content-visibility: auto;
  contain-intrinsic-size: 1px 400px;
  contain: layout paint;
  /* --- Main Content (Grid Layout) --- */
  /* --- Brand Area (Left) --- */
  /* --- Navigation Area (Right) --- */
  /* --- Bottom Area (Copyright) --- */
}
#footer.footer_section .footer_inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}
#footer.footer_section .footer_main {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: start;
  margin-bottom: clamp(60px, 8vw, 80px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 40px;
}
@media (max-width: 768px) {
  #footer.footer_section .footer_main {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
#footer.footer_section .footer_brand {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
#footer.footer_section .footer_brand .footer_logo a {
  display: inline-block;
  transition: opacity 0.3s;
}
#footer.footer_section .footer_brand .footer_logo a:hover {
  opacity: 0.7;
}
#footer.footer_section .footer_brand .footer_logo img {
  width: 160px;
  height: auto;
}
#footer.footer_section .footer_brand .footer_sns {
  display: flex;
  gap: 20px;
}
#footer.footer_section .footer_brand .footer_sns a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: border-color 0.3s ease, opacity 0.3s ease;
}
#footer.footer_section .footer_brand .footer_sns a img {
  width: 18px;
  height: auto;
}
#footer.footer_section .footer_brand .footer_sns a:hover {
  border-color: #fff;
}
#footer.footer_section .footer_nav .footer_nav_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 560px) {
  #footer.footer_section .footer_nav .footer_nav_list {
    grid-template-columns: repeat(2, 1fr);
  }
}
#footer.footer_section .footer_nav .footer_nav_list li a {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  color: #ccc;
  text-decoration: none;
  padding: 4px 0;
  position: relative;
  transition: color 0.3s, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
#footer.footer_section .footer_nav .footer_nav_list li a:hover {
  color: #fff;
  transform: translateX(6px);
}
#footer.footer_section .footer_bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  contain: layout;
}
@media (max-width: 768px) {
  #footer.footer_section .footer_bottom {
    justify-content: center;
    text-align: center;
  }
}
#footer.footer_section .footer_bottom .footer_copy {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.05em;
}

/* ----------------------------------
   2026 Style Single Post (Optimized & iOS Ready)
---------------------------------- */
/* 読了率プログレスバー (GPU最適化) */
.reading_progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #c90017;
  z-index: 9999;
  transform-origin: 0 0;
  transform: scaleX(0);
  transition: transform 0.1s ease-out;
  will-change: transform;
}

.post_page {
  background-color: transparent;
  color: #fff;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}

/* ── 1. Post Hero ── */
.post_hero {
  contain: layout;
}
.post_hero .inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 max(24px, env(safe-area-inset-right)) 0 max(24px, env(safe-area-inset-left));
}
.post_hero .hero_content {
  margin: 40px 0 60px;
  text-align: center;
}
.post_hero .hero_meta_top {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}
.post_hero .hero_meta_top .post_category {
  color: #fff;
  background: #c90017;
  padding: 4px 12px;
  border-radius: 99px;
  text-decoration: none;
  font-weight: 700;
}
.post_hero .hero_meta_top .post_date {
  color: #aaa;
}
.post_hero .post_title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.post_hero .post_thumbnail_wide {
  width: 100%;
  height: auto;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16/9;
  background-color: #222;
}
.post_hero .post_thumbnail_wide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  content-visibility: auto;
  display: block;
}

/* ── 2. Content Container (Grid) ── */
.post_container {
  padding: 60px 0 100px;
  content-visibility: auto;
  contain-intrinsic-size: 1000px;
  /* Sticky Sidebar */
}
.post_container .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 max(24px, env(safe-area-inset-right)) 0 max(24px, env(safe-area-inset-left));
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 60px;
}
@media (max-width: 1024px) {
  .post_container .inner {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
@media (max-width: 1024px) {
  .post_container .post_sidebar {
    display: none;
  }
}
.post_container .post_sidebar .sticky_wrapper {
  position: sticky;
  top: calc(120px + env(safe-area-inset-top));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  will-change: position;
}
.post_container .post_sidebar .share_heading {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
  color: #aaa;
}
.post_container .post_sidebar .sidebar_share {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.post_container .post_sidebar .sidebar_share .share_icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, background-color 0.3s;
  -webkit-tap-highlight-color: transparent;
}
.post_container .post_sidebar .sidebar_share .share_icon img {
  width: 20px;
  height: 20px;
}
.post_container .post_sidebar .sidebar_share .share_icon:hover {
  border-color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
}

/* ── Content Body ── */
.post_content_wrapper {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.post_content {
  font-size: 1.6rem;
  line-height: 2;
  color: #eee;
  contain: layout;
}
.post_content p {
  margin-bottom: 2.5em;
}
.post_content h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 800;
  margin: 60px 0 30px;
  padding-bottom: 10px;
  border-bottom: 2px solid #42a5f5;
  line-height: 1.4;
}
.post_content h3 {
  font-size: clamp(1.8rem, 2.5vw, 2.2rem);
  font-weight: 700;
  margin: 50px 0 20px;
  padding-left: 16px;
  border-left: 4px solid #c90017;
}
.post_content figure.alignwide,
.post_content img.alignwide {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  max-width: 100vw;
  width: 100vw;
  height: auto;
}
@media (min-width: 1200px) {
  .post_content figure.alignwide,
  .post_content img.alignwide {
    margin-left: -100px;
    margin-right: -100px;
    max-width: calc(100% + 200px);
    width: auto;
    border-radius: 8px;
  }
}
.post_content a {
  color: #42a5f5;
  text-decoration: underline;
  -webkit-tap-highlight-color: rgba(66, 165, 245, 0.2);
  transition: color 0.2s;
}
.post_content a:hover {
  text-decoration: none;
  color: rgb(114.4371859296, 188.0653266332, 247.5628140704);
}
.post_content ul,
.post_content ol {
  margin-bottom: 2.5em;
  padding-left: 1.5em;
}
.post_content ul li,
.post_content ol li {
  margin-bottom: 0.8em;
}

/* SP Share Bottom */
.post_share_bottom.sp_only {
  display: none;
  margin-top: 60px;
  padding-top: 40px;
  padding-bottom: env(safe-area-inset-bottom);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  contain: content;
}
@media (max-width: 1024px) {
  .post_share_bottom.sp_only {
    display: block;
  }
}
.post_share_bottom.sp_only .share_label {
  display: block;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: #aaa;
  margin-bottom: 20px;
}
.post_share_bottom.sp_only .share_buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.post_share_bottom.sp_only .share_buttons .share_btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 99px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  -webkit-tap-highlight-color: transparent;
}
.post_share_bottom.sp_only .share_buttons .share_btn img {
  width: 16px;
  height: 16px;
}

/* ── 3. Footer Nav (Next/Prev) ── */
.post_footer_nav {
  background: #0a0a0a;
  padding: 80px 0;
  padding-bottom: max(80px, 40px + env(safe-area-inset-bottom));
  content-visibility: auto;
  contain-intrinsic-size: 500px;
}
.post_footer_nav .inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 max(24px, env(safe-area-inset-right)) 0 max(24px, env(safe-area-inset-left));
}
.post_footer_nav .nav_heading {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: #aaa;
  margin-bottom: 30px;
  text-align: center;
}
.post_footer_nav .nav_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 768px) {
  .post_footer_nav .nav_grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.post_footer_nav .nav_card {
  display: block;
  text-decoration: none;
  color: #fff;
  -webkit-tap-highlight-color: transparent;
}
.post_footer_nav .nav_card .nav_thumb {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
  background: #222;
}
.post_footer_nav .nav_card .nav_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.post_footer_nav .nav_card .nav_body .nav_label {
  font-size: 1rem;
  font-weight: 700;
  color: #c90017;
  letter-spacing: 0.1em;
}
.post_footer_nav .nav_card .nav_body .nav_title {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 8px 0;
  transition: color 0.3s;
}
.post_footer_nav .nav_card .nav_body .nav_date {
  font-size: 1.2rem;
  color: #666;
}
.post_footer_nav .nav_card:hover .nav_thumb img {
  transform: scale(1.05);
}
.post_footer_nav .nav_card:hover .nav_title {
  color: #c90017;
}
.post_footer_nav .back_list {
  margin-top: 60px;
  text-align: center;
}
.post_footer_nav .back_list .btn_back {
  display: inline-block;
  padding: 12px 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 99px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: background-color 0.3s, color 0.3s;
  -webkit-tap-highlight-color: transparent;
}
.post_footer_nav .back_list .btn_back:hover {
  background: #fff;
  color: #000;
}

/* ----------------------------------
   2026 Style Archive Page (Optimized)
---------------------------------- */
.topics_archive {
  background-color: #f8f9fa;
  min-height: 80vh;
  padding-bottom: clamp(60px, 8vw, 100px);
  text-rendering: optimizeLegibility;
}
.topics_archive .inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Archive Hero (Page Header) --- */
.archive_hero {
  padding: clamp(60px, 8vw, 100px) 0;
  text-align: center;
  contain: content;
}
.archive_hero .archive_title {
  font-size: clamp(3.2rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  color: #111;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.archive_hero .archive_desc {
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* --- Topics Grid System --- */
.topics_list_section .topics_grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: clamp(24px, 4vw, 40px);
  content-visibility: auto;
  contain-intrinsic-size: 1000px;
}
@media (max-width: 600px) {
  .topics_list_section .topics_grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* --- Topic Card Design --- */
.topic_card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  will-change: transform, box-shadow;
  height: 100%;
  contain: layout;
  /* Thumbnail Area */
  /* Text Body */
}
.topic_card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}
.topic_card:hover .card_img {
  transform: scale(1.08);
}
.topic_card:hover .icon_arrow {
  transform: translateX(4px);
  color: #c90017;
}
.topic_card:hover .read_more {
  color: #c90017;
}
.topic_card .card_link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
.topic_card .card_thumb_wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  margin: 0;
  overflow: hidden;
  background: #eee;
}
.topic_card .card_thumb_wrapper .card_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  will-change: transform;
  content-visibility: auto;
}
.topic_card .card_thumb_wrapper .card_cat_label {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  color: #111;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 99px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 2;
}
.topic_card .card_body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.topic_card .card_meta {
  margin-bottom: 12px;
}
.topic_card .card_meta .card_date {
  font-size: 1.2rem;
  color: #888;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.topic_card .card_meta .card_date::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background: #c90017;
  border-radius: 50%;
}
.topic_card .card_title {
  font-size: clamp(1.6rem, 2vw, 1.8rem);
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 24px;
  color: #111;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.topic_card .card_footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid #eee;
}
.topic_card .card_footer .read_more {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  transition: color 0.3s;
}
.topic_card .card_footer .icon_arrow {
  font-size: 1.6rem;
  transition: transform 0.3s, color 0.3s;
}

/* --- Pagination --- */
.pagination_nav {
  margin-top: 80px;
  contain: content;
}
.pagination_nav .pagination_list {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
  flex-wrap: wrap;
}
.pagination_nav .pagination_list .pagination_item .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  color: #111;
  background: #fff;
  border: 1px solid transparent;
  transition: background-color 0.3s, color 0.3s;
}
.pagination_nav .pagination_list .pagination_item .page-numbers svg {
  width: 20px;
  height: 20px;
}
.pagination_nav .pagination_list .pagination_item .page-numbers:not(.current):hover {
  background: #e0e0e0;
}
.pagination_nav .pagination_list .pagination_item .page-numbers.current {
  background: #111;
  color: #fff;
  pointer-events: none;
}
.pagination_nav .pagination_list .pagination_item .page-numbers.dots {
  background: transparent;
  pointer-events: none;
}

/* --- No Posts --- */
.no_posts {
  text-align: center;
  padding: 80px 0;
  contain: content;
}
.no_posts p {
  font-size: 1.6rem;
  color: #666;
  margin-bottom: 30px;
}
.no_posts .btn_back {
  display: inline-block;
  padding: 12px 32px;
  background: #111;
  color: #fff;
  text-decoration: none;
  border-radius: 99px;
  font-weight: 700;
  transition: opacity 0.3s;
}
.no_posts .btn_back:hover {
  opacity: 0.8;
}

/* ----------------------------------
   2026 Style Breadcrumb (Optimized)
---------------------------------- */
.breadcrumb {
  position: relative;
  width: 100%;
  z-index: 10;
  margin-top: 100px;
  padding: 10px 0;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: #fff;
  contain: layout paint style;
}
.breadcrumb .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.breadcrumb .inner::-webkit-scrollbar {
  display: none;
}
.breadcrumb ol {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
  list-style: none;
  white-space: nowrap;
}
.breadcrumb ol li {
  display: flex;
  align-items: center;
  line-height: 1;
}
.breadcrumb ol li::after {
  content: "/";
  margin: 0 12px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 300;
  speak: none;
}
.breadcrumb ol li:last-child::after {
  display: none;
}
.breadcrumb ol li .crumb_link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.breadcrumb ol li .crumb_link:hover {
  color: #fff;
  border-bottom-color: #fff;
}
.breadcrumb ol li .crumb_current {
  color: #fff;
  font-weight: 700;
}
@media (max-width: 768px) {
  .breadcrumb {
    margin-top: 80px;
  }
  .breadcrumb .inner {
    padding: 0 20px;
  }
  .breadcrumb ol li::after {
    margin: 0 10px;
  }
}

/* ----------------------------------
   Form Styles (Optimized & SP Fixed 320px)
---------------------------------- */
/* 変数定義 */
/* --- Form Container --- */
.form_container {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
  will-change: transform, opacity;
  contain: layout;
}
.form_container .section_sub_title {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 24px;
  text-align: center;
  color: #111;
}
.form_container .form_intro {
  text-align: center;
  margin-bottom: 50px;
  color: #666;
  font-size: 1.4rem;
  line-height: 1.8;
}
.form_container .form_intro .required {
  color: #c90017;
  font-weight: bold;
}

/* 表示・非表示切り替え用ブロック */
.form_block {
  display: block;
  contain: content;
}
.form_block.is-active {
  display: block;
  animation: fadeIn 0.6s ease-out;
}

/* --- CF7 Structure Overrides --- */
.wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* フォームセクション (グルーピング) */
.form-section {
  margin-bottom: 60px;
  contain: content;
}
.form-section .form-section-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #111;
  border-bottom: 2px solid #c90017;
  padding-bottom: 10px;
  margin-bottom: 30px;
  letter-spacing: 0.05em;
}
.form-section .form-note {
  font-size: 1.2rem;
  color: #888;
  margin-bottom: 20px;
}

/* グリッドレイアウト */
.form-grid {
  display: grid;
  gap: 24px;
  margin-bottom: 24px;
}
.form-grid.col-2 {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 600px) {
  .form-grid.col-2 {
    grid-template-columns: 1fr;
  }
}
.form-grid.col-3 {
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 768px) {
  .form-grid.col-3 {
    grid-template-columns: 1fr;
  }
}

/* 各入力グループ */
.form-group {
  margin-bottom: 24px;
  contain: layout;
  /* 入力フィールド共通 */
  /* テキストエリア */
  /* セレクトボックス */
  /* ファイルアップロードボックス */
}
.form-group label {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #111;
  letter-spacing: 0.05em;
}
.form-group label .required {
  color: #c90017;
  font-size: 1.2rem;
  margin-left: 4px;
}
.form-group input:not([type=submit]):not([type=checkbox]):not([type=radio]),
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  font-size: 1.6rem;
  color: #111;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fff;
  box-sizing: border-box;
  appearance: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-group input:not([type=submit]):not([type=checkbox]):not([type=radio]):focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #000;
  outline: none;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05);
}
.form-group input:not([type=submit]):not([type=checkbox]):not([type=radio])::placeholder,
.form-group textarea::placeholder,
.form-group select::placeholder {
  color: #ccc;
}
.form-group textarea {
  min-height: 160px;
  resize: vertical;
  line-height: 1.6;
}
.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-group.file-upload-box {
  overflow: hidden;
  width: 100%;
}
.form-group.file-upload-box input[type=file] {
  padding: 30px 20px;
  background: #fafafa;
  border: 2px dashed #ccc;
  text-align: center;
  cursor: pointer;
  height: auto;
  transition: background-color 0.3s, border-color 0.3s;
  width: 100%;
}
@media (max-width: 600px) {
  .form-group.file-upload-box input[type=file] {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
    padding: 15px 5px;
    font-size: 1.1rem;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.form-group.file-upload-box input[type=file]:hover {
  background: #f0f0f0;
  border-color: #999;
}

/* フッターエリア（同意・送信） */
.form-footer {
  text-align: center;
  margin-top: 40px;
  /* 送信ボタン */
}
.form-footer .wpcf7-acceptance-wrapper {
  margin-bottom: 40px;
}
.form-footer .wpcf7-acceptance-wrapper label {
  font-size: 1.4rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}
.form-footer .wpcf7-acceptance-wrapper label input[type=checkbox] {
  width: 20px;
  height: 20px;
  accent-color: #c90017;
  margin: 0;
}
.form-footer .wpcf7-acceptance-wrapper a {
  color: #c90017;
  text-decoration: underline;
}
.form-footer .wpcf7-acceptance-wrapper a:hover {
  text-decoration: none;
}
.form-footer .wpcf7-submit {
  width: 100%;
  max-width: 400px;
  padding: 20px;
  background: #111;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  border: none;
  border-radius: 99px;
  cursor: pointer;
  letter-spacing: 0.1em;
  transition: background-color 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, box-shadow;
}
.form-footer .wpcf7-submit:hover {
  background: #c90017;
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(201, 0, 23, 0.2);
}
.form-footer .wpcf7-submit:disabled {
  background: #ccc;
  transform: none;
  box-shadow: none;
}

/* Turnstile */
.wpcf7-turnstile {
  margin: 0 auto 30px;
  display: flex;
  justify-content: center;
}

/* Spinner Hidden */
.wpcf7-spinner {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
}

/* Animation */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* --- Response Output --- */
.wpcf7-response-output {
  margin: 40px 0 0 !important;
  padding: 24px !important;
  border: none !important;
  border-radius: 12px;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInResponse 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  will-change: transform, opacity;
}
.wpcf7-response-output.wpcf7-display-none.wpcf7-mail-sent-ok {
  display: block !important;
  background-color: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0 !important;
}
.wpcf7-response-output.wpcf7-display-none.wpcf7-mail-sent-ok::before {
  content: "✓";
  display: block;
  font-size: 2rem;
  margin-bottom: 8px;
  color: #22c55e;
}
.wpcf7-response-output.wpcf7-validation-errors, .wpcf7-response-output.wpcf7-acceptance-missing {
  background-color: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca !important;
}
.wpcf7-response-output.wpcf7-validation-errors::before, .wpcf7-response-output.wpcf7-acceptance-missing::before {
  content: "!";
  display: inline-block;
  width: 20px;
  height: 20px;
  line-height: 20px;
  background: #ef4444;
  color: #fff;
  border-radius: 50%;
  margin-right: 8px;
  font-size: 1.4rem;
}
.wpcf7-response-output.wpcf7-spam-blocked, .wpcf7-response-output.wpcf7-mail-sent-ng {
  background-color: #fffbeb;
  color: #92400e;
  border: 1px solid #fde68a !important;
}

@keyframes fadeInResponse {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero_area {
  position: relative;
  width: 100%;
  height: 100svh;
  background-color: #111;
  overflow: hidden;
  color: #fff;
  contain: layout;
  /* --- 1. Visual Layer --- */
  /* --- 2. UI Layer --- */
  /* Center Copy */
  /* Bottom Left: Scroll */
  /* Bottom Right: SNS */
}
.hero_area .hero_visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: transform;
}
.hero_area .hero_visual .hero_slide_item {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 2s ease-in-out, visibility 2s;
  will-change: opacity, transform;
}
.hero_area .hero_visual .hero_slide_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 8s linear;
  content-visibility: auto;
}
.hero_area .hero_visual .hero_slide_item.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.hero_area .hero_visual .hero_slide_item.is-active img {
  transform: scale(1.1);
}
.hero_area .hero_visual .hero_grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 2;
}
.hero_area .hero_visual .hero_overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 3;
}
.hero_area .hero_ui_container {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
  pointer-events: none;
  display: grid;
  grid-template-rows: 1fr auto;
  grid-template-columns: 1fr 1fr;
  padding: 0 40px 40px;
}
@media (max-width: 768px) {
  .hero_area .hero_ui_container {
    padding: 0 20px 30px;
  }
}
.hero_area .hero_main_copy {
  grid-column: 1/-1;
  grid-row: 1/2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero_area .hero_main_copy .copy_wrapper {
  opacity: 0;
  animation: heroFadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
  will-change: transform, opacity;
}
.hero_area .hero_main_copy .copy_wrapper img {
  width: 100%;
  max-width: 600px;
  height: auto;
}
@media (max-width: 768px) {
  .hero_area .hero_main_copy .copy_wrapper img {
    max-width: 80vw;
  }
}
.hero_area .hero_scroll {
  grid-column: 1/2;
  grid-row: 2/3;
  display: flex;
  align-items: center;
  gap: 16px;
  pointer-events: auto;
}
.hero_area .hero_scroll .scroll_line {
  display: block;
  width: 60px;
  height: 1px;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.hero_area .hero_scroll .scroll_line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #c90017;
  transform: translateX(-100%);
  animation: scrollLine 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
  will-change: transform;
}
.hero_area .hero_scroll .scroll_text {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  font-weight: 700;
}
.hero_area .hero_sns {
  grid-column: 2/3;
  grid-row: 2/3;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
  pointer-events: auto;
}
.hero_area .hero_sns a {
  display: block;
  transition: opacity 0.3s, transform 0.3s;
}
.hero_area .hero_sns a:hover {
  opacity: 0.7;
  transform: translateY(-3px);
}
.hero_area .hero_sns a img {
  display: block;
  width: 24px;
  height: auto;
}
@media (max-width: 768px) {
  .hero_area .hero_sns {
    gap: 16px;
  }
}

/* Animations */
@keyframes heroFadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes scrollLine {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
#top_news.news_section {
  padding: clamp(60px, 8vw, 120px) 0;
  background-color: #f8f9fa;
  overflow: hidden;
  content-visibility: auto;
  contain-intrinsic-size: 600px;
  /* --- Header Area --- */
  /* --- Button: VIEW ALL --- */
  /* --- Scroll Container --- */
  /* --- Card Design --- */
}
#top_news.news_section .inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}
#top_news.news_section .news_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  gap: 20px;
}
#top_news.news_section .news_header .header_left .section_title {
  font-size: clamp(3.2rem, 5vw, 4.8rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #111;
  margin-bottom: 8px;
}
#top_news.news_section .news_header .header_left .section_subtitle {
  font-size: 1.4rem;
  color: #666;
  font-weight: 500;
  margin-left: 4px;
}
#top_news.news_section .btn_view_all {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  border: 1px solid #111;
  border-radius: 999px;
  font-size: 1.3rem;
  font-weight: 700;
  color: #111;
  text-decoration: none;
  background: transparent;
  transition: background-color 0.3s, color 0.3s;
}
#top_news.news_section .btn_view_all svg {
  transition: transform 0.3s ease;
}
#top_news.news_section .btn_view_all:hover {
  background: #111;
  color: #fff;
}
#top_news.news_section .btn_view_all:hover svg {
  transform: translateX(4px);
}
@media (max-width: 768px) {
  #top_news.news_section .btn_view_all {
    padding: 8px 16px;
    font-size: 1.1rem;
  }
  #top_news.news_section .btn_view_all svg {
    width: 14px;
    height: 14px;
  }
}
#top_news.news_section .news_scroll_container {
  margin-right: -24px;
}
@media (min-width: 1328px) {
  #top_news.news_section .news_scroll_container {
    margin-right: 0;
  }
}
#top_news.news_section .news_list {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 20px 0 40px 0;
  padding-right: 24px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
#top_news.news_section .news_list::-webkit-scrollbar {
  display: none;
}
#top_news.news_section .news_list .news_item {
  flex: 0 0 320px;
  scroll-snap-align: start;
  list-style: none;
  contain: layout;
}
@media (max-width: 768px) {
  #top_news.news_section .news_list .news_item {
    flex: 0 0 280px;
  }
}
#top_news.news_section .news_card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  will-change: transform, box-shadow;
}
#top_news.news_section .news_card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}
#top_news.news_section .news_card:hover .news_card__thumb img {
  transform: scale(1.08);
}
#top_news.news_section .news_card__thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 3/2;
  margin: 0;
  overflow: hidden;
  background: #eee;
}
#top_news.news_section .news_card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  will-change: transform;
  content-visibility: auto;
}
#top_news.news_section .news_card__cat {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  color: #111;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 99px;
  z-index: 2;
}
#top_news.news_section .news_card__body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
#top_news.news_section .news_card__meta {
  margin-bottom: 12px;
}
#top_news.news_section .news_card__meta time {
  font-size: 1.2rem;
  color: #888;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 6px;
}
#top_news.news_section .news_card__meta time::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background: #c90017;
  border-radius: 50%;
}
#top_news.news_section .news_card__title {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
  margin: 0;
  color: #111;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#vozel_sns {
  padding: 30px 0;
  content-visibility: auto;
  contain-intrinsic-size: 150px;
}
#vozel_sns .sns_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0px, 5vw, 60px);
  flex-wrap: wrap;
}
#vozel_sns .sns_wrapper h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: #fff;
}
#vozel_sns .sns_wrapper .sns_list {
  display: flex;
  gap: 40px;
}
#vozel_sns .sns_wrapper .sns_list a {
  width: clamp(30px, 5vw, 50px);
  transition: opacity 0.3s;
}
#vozel_sns .sns_wrapper .sns_list a:hover {
  opacity: 0.7;
}
#vozel_sns .sns_wrapper .sns_list a img {
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  #vozel_sns .sns_wrapper {
    flex-direction: column;
    gap: 20px;
  }
}

.mission_section {
  position: relative;
  background-color: #fff;
  padding: clamp(100px, 12vw, 180px) 0;
  overflow: hidden;
  color: #111;
  content-visibility: auto;
  contain-intrinsic-size: 800px;
  /* 背景の装飾 */
}
.mission_section .mission_bg_deco {
  position: absolute;
  top: -10%;
  right: -10%;
  width: clamp(400px, 60vw, 800px);
  height: clamp(400px, 60vw, 800px);
  z-index: 0;
  opacity: 0.04;
  pointer-events: none;
  will-change: transform;
}
.mission_section .mission_bg_deco .circle_text {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border: 1px solid #000;
  border-radius: 50%;
  font-size: clamp(4rem, 8vw, 10rem);
  font-weight: 900;
  animation: rotateText 60s linear infinite;
}
.mission_section .inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
@media (max-width: 900px) {
  .mission_section .inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}
.mission_section .mission_col_visual .mission_big_en {
  font-size: clamp(4.2rem, 7vw, 11rem);
  line-height: 0.9;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  margin: 0;
}
.mission_section .mission_col_visual .mission_big_en .line {
  display: block;
}
.mission_section .mission_col_content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 20px;
}
.mission_section .mission_col_content .mission_sub_jp {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 40px;
}
.mission_section .mission_col_content .mission_sub_jp .small {
  font-size: 0.6em;
  font-weight: 400;
  margin: 0 4px;
  color: #c90017;
}
.mission_section .mission_col_content .mission_body {
  font-size: clamp(1.4rem, 1.8vw, 1.6rem);
  line-height: 2;
  color: #333;
  margin-bottom: 48px;
  text-align: justify;
}
.mission_section .mission_col_content .mission_body strong {
  background: linear-gradient(transparent 70%, rgba(201, 0, 23, 0.2) 0%);
  font-weight: 700;
}
.mission_section .mission_col_content .btn_view_more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: fit-content;
  padding: 12px 32px;
  border: 1px solid #111;
  border-radius: 999px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #111;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
  background: #fff;
}
.mission_section .mission_col_content .btn_view_more svg {
  transition: transform 0.3s ease;
}
.mission_section .mission_col_content .btn_view_more:hover {
  background: #111;
  color: #fff;
}
.mission_section .mission_col_content .btn_view_more:hover svg {
  transform: translateX(4px);
}

@keyframes rotateText {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.scroll-marquee {
  overflow: hidden;
  background: #fff;
  color: #000;
  height: 200px;
  display: flex;
  align-items: center;
  contain: strict;
  content-visibility: auto;
}
.scroll-marquee__inner {
  display: inline-block;
  white-space: nowrap;
  will-change: transform;
}
.scroll-marquee__inner span {
  padding: 0 2rem;
  font-size: clamp(6rem, 15vw, 10rem);
  font-weight: bold;
}

.section_head {
  text-align: center;
  margin-bottom: 60px;
}
.section_head .section_title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: bold;
  color: #111;
}
.section_head .section_desc {
  font-size: 1.4rem;
  color: #666;
  margin-top: 10px;
}

.more_link {
  margin-top: 40px;
  text-align: center;
}
.more_link a {
  display: inline-block;
  padding: 12px 32px;
  font-size: 1.3rem;
  font-weight: 600;
  color: #000;
  border: 1px solid #000;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}
.more_link a:hover {
  background-color: #000;
  color: #fff;
}

#vozel_talents.talent_section {
  padding: clamp(80px, 10vw, 140px) 0;
  background-color: #fff;
  overflow: hidden;
  content-visibility: auto;
  contain-intrinsic-size: 700px;
  /* --- Header --- */
  /* --- VIEW ALL Link --- */
  /* --- Scroll Container --- */
  /* --- Card Design --- */
}
#vozel_talents.talent_section .inner {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}
#vozel_talents.talent_section .section_head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
#vozel_talents.talent_section .section_head .head_content .section_title {
  font-size: clamp(3rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
#vozel_talents.talent_section .section_head .head_content .section_desc {
  font-size: 1.3rem;
  color: #666;
  font-weight: 500;
  margin-left: 4px;
}
@media (max-width: 768px) {
  #vozel_talents.talent_section .section_head {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
  }
  #vozel_talents.talent_section .section_head .head_content .section_desc {
    margin-left: 0;
  }
}
#vozel_talents.talent_section .link_view_all {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid #111;
  padding-bottom: 4px;
  transition: color 0.3s, border-color 0.3s;
}
#vozel_talents.talent_section .link_view_all:hover {
  color: #c90017;
  border-color: #c90017;
}
@media (max-width: 768px) {
  #vozel_talents.talent_section .link_view_all.pc_only {
    display: none;
  }
}
#vozel_talents.talent_section .footer_link.sp_only {
  display: none;
  margin-top: 30px;
  text-align: center;
}
@media (max-width: 768px) {
  #vozel_talents.talent_section .footer_link.sp_only {
    display: block;
  }
}
#vozel_talents.talent_section .talent_scroll_wrapper {
  margin-right: -24px;
}
@media (min-width: 1488px) {
  #vozel_talents.talent_section .talent_scroll_wrapper {
    margin-right: 0;
  }
}
#vozel_talents.talent_section .talent_list {
  display: flex;
  gap: 20px;
  padding: 10px 0 40px;
  padding-right: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
#vozel_talents.talent_section .talent_list::-webkit-scrollbar {
  display: none;
}
#vozel_talents.talent_section .talent_list .talent_item {
  flex: 0 0 280px;
  scroll-snap-align: start;
  list-style: none;
  contain: layout;
}
@media (min-width: 1024px) {
  #vozel_talents.talent_section .talent_list .talent_item {
    flex: 0 0 340px;
  }
}
#vozel_talents.talent_section .talent_card {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 3/4.2;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  will-change: transform;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#vozel_talents.talent_section .talent_card:hover {
  transform: translateY(-10px);
}
#vozel_talents.talent_section .talent_card:hover .talent_visual img {
  transform: scale(1.1);
}
#vozel_talents.talent_section .talent_card:hover .talent_specs {
  opacity: 1;
}
#vozel_talents.talent_section .talent_card .talent_visual {
  position: absolute;
  inset: 0;
  margin: 0;
  background: #222;
}
#vozel_talents.talent_section .talent_card .talent_visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  will-change: transform;
  content-visibility: auto;
}
#vozel_talents.talent_section .talent_card .talent_visual::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  pointer-events: none;
}
#vozel_talents.talent_section .talent_card .talent_specs {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}
#vozel_talents.talent_section .talent_card .talent_specs span {
  font-size: 1.1rem;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.6);
  padding: 4px 8px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}
#vozel_talents.talent_section .talent_card .talent_specs .view_label {
  background: #c90017;
  font-size: 0.9rem;
}
#vozel_talents.talent_section .talent_card .talent_info {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
#vozel_talents.talent_section .talent_card .talent_info .talent_name_jp {
  font-size: clamp(1.6rem, 2vw, 2rem);
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}
#vozel_talents.talent_section .talent_card .talent_info .talent_name_en {
  font-size: 1.2rem;
  font-weight: 300;
  opacity: 0.8;
  margin-top: 4px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.section_news_topics {
  padding: clamp(80px, 10vw, 140px) 0;
  background-color: #f4f4f4;
  content-visibility: auto;
  contain-intrinsic-size: 800px;
  /* --- Header --- */
  /* --- Link Button --- */
  /* --- Bento Grid Layout --- */
  /* --- Card Design --- */
}
.section_news_topics .inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}
.section_news_topics .section_head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.section_news_topics .section_head .head_content .section_title {
  font-size: clamp(3rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.section_news_topics .section_head .head_content .section_desc {
  font-size: 1.3rem;
  color: #666;
  font-weight: 500;
  margin-left: 4px;
}
@media (max-width: 768px) {
  .section_news_topics .section_head {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }
  .section_news_topics .section_head .head_content .section_desc {
    margin-left: 0;
  }
}
.section_news_topics .link_view_all {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid #111;
  padding-bottom: 4px;
  transition: color 0.3s, border-color 0.3s;
}
.section_news_topics .link_view_all:hover {
  color: #c90017;
  border-color: #c90017;
}
@media (max-width: 768px) {
  .section_news_topics .link_view_all.pc_only {
    display: none;
  }
}
.section_news_topics .footer_link.sp_only {
  display: none;
  margin-top: 30px;
  text-align: center;
}
@media (max-width: 768px) {
  .section_news_topics .footer_link.sp_only {
    display: block;
  }
}
.section_news_topics .topics_bento_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .section_news_topics .topics_bento_grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.section_news_topics .topic_card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  will-change: transform, box-shadow;
}
.section_news_topics .topic_card.is-feature {
  grid-column: span 2;
}
@media (max-width: 768px) {
  .section_news_topics .topic_card.is-feature {
    grid-column: span 1;
  }
}
.section_news_topics .topic_card.is-feature .card_thumb {
  aspect-ratio: 16/9;
}
.section_news_topics .topic_card.is-feature .card_title {
  font-size: clamp(1.8rem, 2.5vw, 2.2rem);
}
.section_news_topics .topic_card.is-standard .card_thumb {
  aspect-ratio: 3/2;
}
.section_news_topics .topic_card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}
.section_news_topics .topic_card:hover .card_thumb img {
  transform: scale(1.08);
}
.section_news_topics .topic_card:hover .icon_arrow {
  transform: translateX(4px);
  color: #c90017;
}
.section_news_topics .topic_card:hover .read_text {
  color: #c90017;
}
.section_news_topics .topic_card .card_link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.section_news_topics .topic_card .card_thumb {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: #eee;
}
.section_news_topics .topic_card .card_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  will-change: transform;
  content-visibility: auto;
}
.section_news_topics .topic_card .card_thumb .card_cat {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.95);
  color: #111;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 2;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.section_news_topics .topic_card .card_content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.section_news_topics .topic_card .card_content .card_meta {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #888;
  letter-spacing: 0.05em;
}
.section_news_topics .topic_card .card_content .card_title {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.section_news_topics .topic_card .card_content .card_excerpt {
  font-size: 1.4rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .section_news_topics .topic_card .card_content .card_excerpt {
    display: none;
  }
}
.section_news_topics .topic_card .card_content .card_footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid #eee;
}
.section_news_topics .topic_card .card_content .card_footer .read_text {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  transition: color 0.3s;
}
.section_news_topics .topic_card .card_content .card_footer .icon_arrow {
  font-size: 1.4rem;
  transition: transform 0.3s, color 0.3s;
}

.entry_section {
  position: relative;
  width: 100%;
  padding: clamp(100px, 15vw, 160px) 24px;
  overflow: hidden;
  color: #fff;
  content-visibility: auto;
  contain-intrinsic-size: 500px;
  /* --- Background & Overlay --- */
  /* --- Glassmorphism Card --- */
  /* --- Typography --- */
  /* --- Action Buttons --- */
}
.entry_section .entry_bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
  will-change: transform;
}
.entry_section .entry_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: bgZoom 30s infinite alternate linear;
  content-visibility: auto;
}
.entry_section .entry_overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
}
.entry_section .inner {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
}
.entry_section .entry_card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: clamp(40px, 8vw, 80px);
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.entry_section .entry_header {
  margin-bottom: 50px;
}
.entry_section .entry_header .entry_title_en {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 10px;
}
.entry_section .entry_header .entry_title_jp {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 24px;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.entry_section .entry_header .entry_desc {
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}
@media (max-width: 768px) {
  .entry_section .entry_header .entry_desc .pc_only {
    display: none;
  }
}
.entry_section .entry_actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 768px) {
  .entry_section .entry_actions {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.entry_section .action_btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s;
  will-change: transform, box-shadow;
  position: relative;
  overflow: hidden;
}
.entry_section .action_btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}
.entry_section .action_btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
.entry_section .action_btn:hover::before {
  left: 100%;
}
.entry_section .action_btn .btn_content {
  text-align: left;
  display: flex;
  flex-direction: column;
}
.entry_section .action_btn .btn_content .btn_label_en {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  opacity: 0.8;
  margin-bottom: 4px;
}
.entry_section .action_btn .btn_content .btn_label_jp {
  font-size: clamp(1.6rem, 2vw, 1.8rem);
  font-weight: 700;
}
.entry_section .action_btn .btn_icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}
.entry_section .action_btn .btn_icon svg {
  width: 20px;
  height: 20px;
}
.entry_section .action_btn:hover .btn_icon {
  transform: rotate(45deg);
}
.entry_section .action_btn.btn_client {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}
.entry_section .action_btn.btn_client:hover {
  background: rgba(255, 255, 255, 0.2);
}
.entry_section .action_btn.btn_talent {
  background: #c90017;
  color: #fff;
  border: 1px solid #c90017;
}
.entry_section .action_btn.btn_talent .btn_icon {
  background: rgba(0, 0, 0, 0.2);
}
.entry_section .action_btn.btn_talent:hover {
  background: rgb(226.5, 0, 25.9179104478);
}

/* Background Zoom Animation */
@keyframes bgZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
/* ----------------------------------
   2026 Style ABOUT Page (Optimized)
---------------------------------- */
.about_page {
  background-color: transparent;
  color: #fff;
  -webkit-text-size-adjust: 100%;
}

/* --- 1. HERO AREA --- */
.about_hero {
  position: relative;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 24px;
  will-change: transform;
}
.about_hero .hero_bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.about_hero .hero_content {
  position: relative;
  z-index: 1;
  text-align: center;
  text-rendering: optimizeLegibility;
}
.about_hero .hero_content .hero_title {
  font-size: clamp(4rem, 10vw, 12rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 24px;
}
.about_hero .hero_content .hero_title .line {
  display: block;
}
.about_hero .hero_content .hero_title .text_stroke {
  color: transparent;
  -webkit-text-stroke: 1px #fff;
}
@media (min-width: 768px) {
  .about_hero .hero_content .hero_title .text_stroke {
    -webkit-text-stroke: 2px #fff;
  }
}
.about_hero .hero_content .hero_sub {
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.7);
}
.about_hero .scroll_indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
}
.about_hero .scroll_indicator span {
  font-size: 1rem;
  letter-spacing: 0.2em;
  font-weight: 700;
}
.about_hero .scroll_indicator .line {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}
.about_hero .scroll_indicator .line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: #fff;
  animation: dropLine 2s infinite;
  will-change: transform;
}

@keyframes dropLine {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(200%);
  }
}
/* --- 2. PHILOSOPHY --- */
.philosophy_section {
  padding: clamp(100px, 15vw, 200px) 0;
  background: #fff;
  color: #111;
  content-visibility: auto;
  contain-intrinsic-size: 1px 1000px;
}
.philosophy_section .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: clamp(80px, 12vw, 160px);
}
.philosophy_section .phil_block {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .philosophy_section .phil_block {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.philosophy_section .phil_block .phil_label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: sticky;
  top: 100px;
  will-change: position;
}
.philosophy_section .phil_block .phil_label .en {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #c90017;
}
.philosophy_section .phil_block .phil_label .jp {
  font-size: 2.4rem;
  font-weight: 900;
}
.philosophy_section .phil_block .phil_body .phil_heading {
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 40px;
}
.philosophy_section .phil_block .phil_body .phil_heading .accent {
  font-size: 0.6em;
  color: #c90017;
  font-weight: 400;
  margin: 0 4px;
  vertical-align: middle;
}
.philosophy_section .phil_block .phil_body .phil_desc {
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  line-height: 2;
  color: #444;
  max-width: 720px;
}

/* --- 3. CORE VALUES --- */
.values_section {
  padding: clamp(100px, 15vw, 160px) 0;
  background: #f4f4f4;
  color: #111;
  content-visibility: auto;
  contain-intrinsic-size: 1px 800px;
}
.values_section .inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}
.values_section .section_header {
  text-align: center;
  margin-bottom: 80px;
}
.values_section .section_header .section_title {
  font-size: clamp(3rem, 6vw, 4.8rem);
  font-weight: 900;
  margin-bottom: 16px;
}
.values_section .section_header .section_subtitle {
  font-size: 1.4rem;
  color: #666;
}
.values_section .values_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .values_section .values_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .values_section .values_grid {
    grid-template-columns: 1fr;
  }
}
.values_section .value_card {
  background: #fff;
  padding: 40px 32px;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform, box-shadow;
}
.values_section .value_card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.values_section .value_card .value_num {
  display: block;
  font-size: 3rem;
  font-weight: 900;
  color: #f0f0f0;
  line-height: 1;
  margin-bottom: 20px;
}
.values_section .value_card .value_en {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.values_section .value_card .value_jp {
  font-size: 1.4rem;
  font-weight: 700;
  color: #c90017;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eee;
}
.values_section .value_card .value_desc {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #666;
}

/* --- 4. COMPANY OVERVIEW --- */
.company_section {
  padding: clamp(100px, 15vw, 160px) 0;
  background: transparent;
  color: #fff;
  content-visibility: auto;
  contain-intrinsic-size: 1px 600px;
}
.company_section .inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}
.company_section .company_container {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 60px;
}
@media (max-width: 768px) {
  .company_section .company_container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.company_section .company_head .section_title {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.company_section .company_head .section_subtitle {
  font-size: 1.2rem;
  color: #888;
}
.company_section .info_list {
  display: flex;
  flex-direction: column;
}
.company_section .info_list .info_row {
  display: grid;
  grid-template-columns: 140px 1fr;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
}
.company_section .info_list .info_row:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 500px) {
  .company_section .info_list .info_row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px 0;
  }
}
.company_section .info_list .info_row dt {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.3rem;
}
.company_section .info_list .info_row dd {
  font-size: 1.5rem;
  line-height: 1.6;
  margin: 0;
}

/* ----------------------------------
   Contact Page Layout (Optimized)
---------------------------------- */
.contact_page {
  background-color: #fff;
  color: #111;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.contact_section {
  padding: clamp(80px, 10vw, 120px) 24px;
  contain: layout paint;
  /* Page Header */
}
.contact_section .inner {
  max-width: 800px;
  margin: 0 auto;
}
.contact_section .page_header {
  text-align: center;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  will-change: transform, opacity;
}
.contact_section .page_header .page_title {
  font-size: clamp(3.2rem, 6vw, 4.8rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.1;
  color: #111;
}
.contact_section .page_header .page_desc {
  font-size: 1.4rem;
  color: #666;
  line-height: 1.8;
}
.contact_section .page_header .page_desc .sp_only {
  display: none;
}
@media (max-width: 768px) {
  .contact_section .page_header .page_desc .sp_only {
    display: inline;
  }
}

/* Entry Guide Card */
.entry_guide_card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
  color: #fff;
  padding: 40px;
  border-radius: 16px;
  margin-bottom: 60px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
  will-change: transform, opacity;
}
@media (max-width: 768px) {
  .entry_guide_card {
    flex-direction: column;
    text-align: center;
    padding: 30px 24px;
    gap: 24px;
  }
}
.entry_guide_card .guide_content .guide_title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: #fff;
}
.entry_guide_card .guide_content .guide_text {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}
.entry_guide_card .guide_btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #000;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 99px;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.entry_guide_card .guide_btn svg {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.entry_guide_card .guide_btn:hover {
  background: #c90017;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201, 0, 23, 0.3);
}
.entry_guide_card .guide_btn:hover svg {
  transform: translateX(4px);
}

/* Tab UI */
.contact_tabs_wrapper {
  margin-bottom: 50px;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
  will-change: transform, opacity;
}
.contact_tabs_wrapper .tabs_label {
  font-size: 1.3rem;
  font-weight: 700;
  color: #888;
  margin-bottom: 16px;
}
.contact_tabs_wrapper .contact_tabs {
  display: inline-flex;
  background: #f0f0f0;
  padding: 6px;
  border-radius: 99px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.03);
}
@media (max-width: 600px) {
  .contact_tabs_wrapper .contact_tabs {
    display: flex;
    width: 100%;
    border-radius: 12px;
  }
}
.contact_tabs_wrapper .contact_tabs .tab_item {
  position: relative;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 600px) {
  .contact_tabs_wrapper .contact_tabs .tab_item {
    flex: 1;
  }
}
.contact_tabs_wrapper .contact_tabs .tab_item input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.contact_tabs_wrapper .contact_tabs .tab_item input:checked + .tab_text {
  background: #fff;
  color: #000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  font-weight: 800;
}
.contact_tabs_wrapper .contact_tabs .tab_item .tab_text {
  display: block;
  padding: 14px 40px;
  border-radius: 99px;
  font-size: 1.4rem;
  font-weight: 600;
  color: #666;
  text-align: center;
  transition: background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), font-weight 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (max-width: 600px) {
  .contact_tabs_wrapper .contact_tabs .tab_item .tab_text {
    padding: 12px 10px;
    font-size: 1.2rem;
    border-radius: 8px;
  }
}

.form_block {
  display: none;
  contain: content;
}
.form_block.is-active {
  display: block;
  animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ----------------------------------
   Talent Entry Page Layout (Optimized)
---------------------------------- */
.entry_page {
  background-color: #fff;
  color: #111;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.talent_entry_section {
  padding: clamp(80px, 10vw, 120px) 24px;
  contain: layout;
  /* Page Header */
}
.talent_entry_section .inner {
  max-width: 800px;
  margin: 0 auto;
}
.talent_entry_section .page_header {
  text-align: center;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  will-change: transform, opacity;
}
.talent_entry_section .page_header .page_title {
  font-size: clamp(3.2rem, 6vw, 4.8rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.1;
  color: #111;
}
.talent_entry_section .page_header .page_desc {
  font-size: 1.4rem;
  color: #666;
  line-height: 1.8;
}

/* Requirements List */
.entry_requirements {
  margin-bottom: 80px;
  background: #f8f9fa;
  padding: 60px;
  border-radius: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
  will-change: transform, opacity;
  contain: content;
}
@media (max-width: 768px) {
  .entry_requirements {
    padding: 30px 20px;
    border-radius: 16px;
  }
}
.entry_requirements .section_sub_title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 40px;
  text-align: center;
  letter-spacing: 0.05em;
  color: #111;
}
.entry_requirements .requirements_list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.entry_requirements .requirements_list .req_row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding-bottom: 30px;
  contain: layout;
}
.entry_requirements .requirements_list .req_row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
@media (max-width: 600px) {
  .entry_requirements .requirements_list .req_row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-bottom: 24px;
  }
}
.entry_requirements .requirements_list .req_row dt {
  font-weight: 700;
  color: #111;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
}
.entry_requirements .requirements_list .req_row dt::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 1.2em;
  background: #c90017;
  margin-right: 12px;
  border-radius: 2px;
}
.entry_requirements .requirements_list .req_row dd {
  font-size: 1.5rem;
  line-height: 1.8;
  margin: 0;
  color: #444;
}
.entry_requirements .requirements_list .req_row dd ul,
.entry_requirements .requirements_list .req_row dd ol {
  padding-left: 1.5em;
  margin: 0;
}
.entry_requirements .requirements_list .req_row dd ul li,
.entry_requirements .requirements_list .req_row dd ol li {
  margin-bottom: 0.5em;
}

/* ----------------------------------
   2026 Style Privacy Policy (Optimized)
---------------------------------- */
/* 変数定義 */
.privacy_page {
  background-color: #fff;
  color: #111;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.privacy_section {
  padding: clamp(80px, 10vw, 120px) 24px;
  contain: layout;
  /* --- Page Header --- */
  /* --- Privacy Content --- */
}
.privacy_section .inner {
  max-width: 800px;
  margin: 0 auto;
}
.privacy_section .page_header {
  text-align: center;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  will-change: transform, opacity;
}
.privacy_section .page_header .page_title {
  font-size: clamp(3.2rem, 6vw, 4.8rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.1;
  color: #111;
}
.privacy_section .page_header .page_desc {
  font-size: 1.4rem;
  color: #666;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
.privacy_section .privacy_content {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
  will-change: transform, opacity;
  font-size: 1.5rem;
  color: #333;
  line-height: 1.9;
  /* リード文 */
  /* 各セクションブロック */
  /* リストスタイル */
  /* お問い合わせ窓口の強調 */
  /* 最終更新日 */
}
.privacy_section .privacy_content .lead_text {
  margin-bottom: 60px;
  font-weight: 500;
}
.privacy_section .privacy_content .policy_block {
  margin-bottom: 60px;
  contain: layout;
}
.privacy_section .privacy_content .policy_block h2 {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #000;
  margin: 0 0 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid #eee;
  letter-spacing: 0.05em;
}
.privacy_section .privacy_content .policy_block p {
  margin-bottom: 24px;
}
.privacy_section .privacy_content ol,
.privacy_section .privacy_content ul {
  margin: 0 0 24px 0;
  padding-left: 1.5em;
}
.privacy_section .privacy_content ol li,
.privacy_section .privacy_content ul li {
  margin-bottom: 12px;
}
.privacy_section .privacy_content ol li::marker,
.privacy_section .privacy_content ul li::marker {
  color: #c90017;
  font-weight: bold;
}
.privacy_section .privacy_content ol li ul,
.privacy_section .privacy_content ul li ul {
  margin-top: 12px;
  margin-bottom: 12px;
}
.privacy_section .privacy_content ol li ul li,
.privacy_section .privacy_content ul li ul li {
  font-size: 1.4rem;
  color: #555;
}
.privacy_section .privacy_content ol li ul li::marker,
.privacy_section .privacy_content ul li ul li::marker {
  color: #888;
}
.privacy_section .privacy_content .contact_info {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 12px;
  contain: paint layout;
}
.privacy_section .privacy_content .contact_info ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}
.privacy_section .privacy_content .contact_info ul li {
  margin-bottom: 12px;
}
.privacy_section .privacy_content .contact_info ul li:last-child {
  margin-bottom: 0;
}
.privacy_section .privacy_content .contact_info ul li a {
  color: #c90017;
  text-decoration: underline;
  font-weight: 700;
  transition: color 0.3s;
}
.privacy_section .privacy_content .contact_info ul li a:hover {
  text-decoration: none;
  color: rgb(252, 0, 28.8358208955);
}
.privacy_section .privacy_content .policy_updated {
  text-align: right;
  font-size: 1.2rem;
  color: #999;
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

/* Animation Keyframes */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ----------------------------------
   2026 Style Talent Single (Optimized)
---------------------------------- */
#single_talent {
  background: transparent;
  color: #fff;
  min-height: 100vh;
  text-rendering: optimizeLegibility;
}

/* Split Layout */
.talent_split_layout {
  display: flex;
  width: 100%;
  contain: layout;
}
@media (max-width: 1024px) {
  .talent_split_layout {
    flex-direction: column;
  }
}

/* --- Left: Visual (Top Image) --- */
.talent_dvisual {
  width: 50%;
  height: 100vh;
  position: sticky;
  top: 0;
  overflow: hidden;
  z-index: 1;
  background: transparent;
  will-change: transform;
}
@media (max-width: 1024px) {
  .talent_dvisual {
    width: 100%;
    height: auto;
    min-height: 60vh;
    position: relative;
    top: auto;
    will-change: auto;
  }
}
.talent_dvisual .visual_inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  /* 3:4比率固定フレーム */
}
@media (max-width: 1024px) {
  .talent_dvisual .visual_inner {
    padding: 0;
  }
}
.talent_dvisual .visual_inner .visual_frame {
  width: 100%;
  max-width: 600px;
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
  background-color: #111;
}
@media (max-width: 1024px) {
  .talent_dvisual .visual_inner .visual_frame {
    max-width: 100%;
    aspect-ratio: 3/4;
  }
}
.talent_dvisual .visual_inner .visual_frame .main_visual {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  content-visibility: auto;
}

/* --- Right: Info (Scroll) --- */
.talent_dinfo {
  width: 50%;
  position: relative;
  z-index: 2;
  background: transparent;
  contain: layout;
}
@media (max-width: 1024px) {
  .talent_dinfo {
    width: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 10%);
    margin-top: -80px;
    padding-top: 40px;
  }
}
.talent_dinfo .info_inner {
  padding: 120px 80px 160px;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .talent_dinfo .info_inner {
    padding: 0 24px 100px;
  }
}

/* Header */
.talent_header {
  margin-bottom: 60px;
  contain: content;
}
.talent_header .talent_tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.talent_header .talent_tags .tag {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
}
.talent_header .name_group {
  margin-bottom: 24px;
}
.talent_header .name_group .talent_name_jp {
  font-size: clamp(3.2rem, 5vw, 6rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 8px;
}
.talent_header .name_group .talent_name_en {
  font-size: 1.4rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.talent_header .affiliation_note {
  font-size: 1.3rem;
  color: #ccc;
  margin-bottom: 30px;
}
.talent_header .header_sns_links {
  display: flex;
  gap: 24px;
  margin-top: 30px;
}
.talent_header .header_sns_links .sns_icon {
  width: 32px;
  opacity: 0.8;
  transition: opacity 0.3s, transform 0.3s;
}
.talent_header .header_sns_links .sns_icon:hover {
  opacity: 1;
  transform: translateY(-2px);
}
.talent_header .header_sns_links .sns_icon img {
  width: 100%;
  height: auto;
}

/* Specs */
.talent_specs_minimal {
  margin-bottom: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  contain: content;
}
.talent_specs_minimal .spec_list .spec_row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 1.4rem;
}
.talent_specs_minimal .spec_list .spec_row dt {
  color: rgba(255, 255, 255, 0.5);
  width: 30%;
}
.talent_specs_minimal .spec_list .spec_row dd {
  width: 70%;
  text-align: right;
}
.talent_specs_minimal .spec_list .spec_row .shoes {
  font-size: 0.9em;
  color: rgba(255, 255, 255, 0.7);
  margin-left: 10px;
}
.talent_specs_minimal .text_link_composite {
  display: inline-block;
  margin-top: 30px;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  transition: color 0.3s, border-color 0.3s;
}
.talent_specs_minimal .text_link_composite:hover {
  color: #fff;
  border-color: #fff;
}

/* Section Common */
.talent_dsection {
  margin-bottom: 100px;
  contain: layout;
}
.talent_dsection .section_title_en {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}
.talent_dsection .section_title_en::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 1px;
  background: #c90017;
}

/* Works Accordion */
.works_accordion .accordion_item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  contain: layout;
}
.works_accordion .accordion_item .accordion_header {
  padding: 24px 0;
  font-size: 1.5rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  list-style: none;
}
.works_accordion .accordion_item .accordion_header::-webkit-details-marker {
  display: none;
}
.works_accordion .accordion_item .accordion_header .icon_toggle {
  position: relative;
  width: 14px;
  height: 14px;
}
.works_accordion .accordion_item .accordion_header .icon_toggle::before, .works_accordion .accordion_item .accordion_header .icon_toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  transition: transform 0.3s;
}
.works_accordion .accordion_item .accordion_header .icon_toggle::before {
  width: 100%;
  height: 1px;
}
.works_accordion .accordion_item .accordion_header .icon_toggle::after {
  width: 1px;
  height: 100%;
}
.works_accordion .accordion_item[open] .accordion_header .icon_toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.works_accordion .accordion_item .accordion_content {
  padding-bottom: 30px;
  font-size: 1.4rem;
  line-height: 2;
  color: rgba(255, 255, 255, 0.75);
  animation: slideDown 0.3s ease-out;
}

/* Gallery Masonry (Original Ratio) */
.gallery_masonry {
  column-count: 2;
  column-gap: 24px;
  content-visibility: auto;
  contain-intrinsic-size: 500px;
}
@media (max-width: 600px) {
  .gallery_masonry {
    column-count: 2;
    column-gap: 16px;
  }
}
.gallery_masonry .masonry_item {
  break-inside: avoid;
  margin-bottom: 24px;
  contain: layout;
}
.gallery_masonry .masonry_item a {
  display: block;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
}
.gallery_masonry .masonry_item a img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
  will-change: transform;
  content-visibility: auto;
}
.gallery_masonry .masonry_item a:hover img {
  transform: scale(1.03);
}

/* Video Grid */
.video_grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  content-visibility: auto;
  contain-intrinsic-size: 16/9 500px;
}
.video_grid .video_item {
  aspect-ratio: 16/9;
  background: #000;
}
.video_grid .video_item iframe {
  width: 100%;
  height: 100%;
}

/* Footer Action */
.talent_footer_actions {
  margin-top: 120px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.talent_footer_actions .btn_action_primary {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 240px;
  padding: 16px 40px;
  background: #fff;
  color: #000;
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 99px;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s, transform 0.3s;
  will-change: transform;
}
.talent_footer_actions .btn_action_primary:hover {
  background: #c90017;
  color: #fff;
  transform: translateY(-2px);
}
.talent_footer_actions .btn_action_text {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s;
}
.talent_footer_actions .btn_action_text:hover {
  color: #fff;
  text-decoration: underline;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ----------------------------------
   2026 Style Talent Archive (Optimized)
---------------------------------- */
#archive_talent {
  background: #fff;
  color: #111;
  font-family: "Helvetica Neue", Arial, sans-serif;
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* Page Header */
.page_header {
  text-align: center;
  padding: 60px 20px 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
  contain: content;
}
.page_header .page_title {
  font-size: clamp(3.2rem, 5vw, 4.8rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1;
}
.page_header .page_desc {
  font-size: 1.4rem;
  color: #666;
}

/* Layout Container (Sidebar + Main) */
.archive_container {
  display: flex;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px 120px;
  gap: 60px;
  position: relative;
  contain: layout;
}
@media (max-width: 1024px) {
  .archive_container {
    flex-direction: column;
    gap: 40px;
    padding: 0 20px 80px;
  }
}

/* --- Sidebar Filter --- */
.filter_sidebar {
  width: 280px;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .filter_sidebar {
    width: 100%;
    display: none;
  }
  .filter_sidebar.is-open {
    display: block;
    animation: slideDown 0.3s;
  }
}
.filter_sidebar .filter_inner {
  position: sticky;
  top: 100px;
  will-change: position;
}
@media (max-width: 1024px) {
  .filter_sidebar .filter_inner {
    position: static;
  }
}
.filter_sidebar .filter_heading {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 30px;
  letter-spacing: 0.1em;
  border-bottom: 2px solid #000;
  padding-bottom: 10px;
}
.filter_sidebar .filter_group {
  margin-bottom: 40px;
  contain: content;
  /* Tags Style (Category & Area) */
  /* Select Style (Height) */
  /* 50音 Index */
}
.filter_sidebar .filter_group .group_title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #888;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.filter_sidebar .filter_group .filter_tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.filter_sidebar .filter_group .filter_tags .filter_tag {
  font-size: 1.2rem;
  color: #333;
  background: #f0f0f0;
  padding: 6px 12px;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}
.filter_sidebar .filter_group .filter_tags .filter_tag:hover {
  background: #e0e0e0;
}
.filter_sidebar .filter_group .filter_tags .filter_tag.is-active {
  background: #000;
  color: #fff;
}
.filter_sidebar .filter_group .select_wrapper {
  position: relative;
}
.filter_sidebar .filter_group .select_wrapper select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1.3rem;
  cursor: pointer;
  appearance: none;
  background: #fff;
}
.filter_sidebar .filter_group .select_wrapper select:focus {
  outline: none;
  border-color: #000;
}
.filter_sidebar .filter_group .select_wrapper::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  border: 4px solid transparent;
  border-top-color: #333;
  pointer-events: none;
}
.filter_sidebar .filter_group .kana_list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.filter_sidebar .filter_group .kana_list .kana_item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  font-size: 1.2rem;
  color: #333;
  border-radius: 50%;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}
.filter_sidebar .filter_group .kana_list .kana_item:hover {
  background: #f0f0f0;
}
.filter_sidebar .filter_group .kana_list .kana_item.is-active {
  background: #000;
  color: #fff;
}

/* Mobile Filter Toggle Button */
.filter_toggle_btn {
  display: none;
}
@media (max-width: 1024px) {
  .filter_toggle_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: calc(100% - 40px);
    margin: 0 auto 30px;
    padding: 12px;
    background: #000;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
  }
}

/* --- Main Content (Talent List) --- */
.talent_list_area {
  flex: 1;
  position: relative;
  contain: layout;
}
.talent_list_area .archive_current_title {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .talent_list_area .archive_current_title {
    font-size: 2rem;
    margin-bottom: 24px;
  }
}
.talent_list_area .loading_overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.8);
  z-index: 10;
  display: none;
  justify-content: center;
  padding-top: 100px;
  contain: strict;
}
.talent_list_area .loading_overlay .spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #000;
  border-radius: 50%;
  will-change: transform;
  animation: spin 1s linear infinite;
}

/* Grid Layout */
.talent_archive_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 24px;
  content-visibility: auto;
  contain-intrinsic-size: 1000px;
}
@media (max-width: 1200px) {
  .talent_archive_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .talent_archive_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 12px;
  }
}

/* Talent Card (Clean & Visual) */
.talent_card {
  contain: layout style;
}
.talent_card .card_link {
  display: block;
  text-decoration: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}
.talent_card .card_link:hover .card_visual img {
  transform: scale(1.05);
}
.talent_card .card_link:hover .visual_overlay {
  opacity: 1;
}
.talent_card .card_link:hover .name_jp {
  color: #c90017;
}
.talent_card .card_visual {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
  background: #f0f0f0;
}
.talent_card .card_visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
  content-visibility: auto;
}
.talent_card .card_visual .visual_overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  will-change: opacity;
}
.talent_card .card_visual .visual_overlay .view_profile {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  border: 1px solid #fff;
  padding: 8px 16px;
  border-radius: 99px;
  letter-spacing: 0.1em;
}
.talent_card .card_info .name_jp {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 4px;
  transition: color 0.3s;
}
.talent_card .card_info .name_jp .note {
  font-size: 1.1rem;
  color: #888;
  font-weight: normal;
  margin-left: 4px;
}
.talent_card .card_info .name_en {
  font-size: 1.2rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.talent_card .card_info .card_sns {
  display: flex;
  gap: 8px;
}
.talent_card .card_info .card_sns .icon {
  width: 20px;
  height: 20px;
  background-color: #ccc;
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
}
.talent_card .card_info .card_sns .icon.inst {
  mask-image: url("img/sns/Instagram.png");
  background-color: #000;
}
.talent_card .card_info .card_sns .icon.tiktok {
  mask-image: url("img/sns/tiktok.svg");
  background-color: #000;
}
.talent_card .card_info .card_sns .icon.youtube {
  mask-image: url("img/sns/youtube.svg");
  background-color: #000;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ----------------------------------
   2026 Style 404 Page (Optimized)
---------------------------------- */
#page_404 {
  background: transparent;
  color: #fff;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  contain: layout;
  /* 巨大な404タイポグラフィ */
  /* メッセージエリア */
  /* アクションボタン */
}
#page_404 .error_inner {
  width: 100%;
  padding: 0 24px;
  text-align: center;
}
#page_404 .error_content {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
  will-change: transform, opacity;
}
#page_404 .error_huge_text {
  font-size: clamp(8rem, 25vw, 30rem);
  font-weight: 900;
  line-height: 0.8;
  margin: 0 0 40px;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.2);
  user-select: none;
  pointer-events: none;
  display: flex;
  justify-content: center;
  gap: 1vw;
}
#page_404 .error_huge_text span {
  display: inline-block;
  animation: floatText 3s ease-in-out infinite alternate;
  will-change: transform;
}
#page_404 .error_huge_text span:nth-child(2) {
  animation-delay: 0.2s;
}
#page_404 .error_huge_text span:nth-child(3) {
  animation-delay: 0.4s;
}
#page_404 .error_message_box {
  margin-bottom: 60px;
  text-rendering: optimizeLegibility;
}
#page_404 .error_message_box .msg_en {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-bottom: 16px;
  color: #c90017;
}
#page_404 .error_message_box .msg_jp {
  font-size: 1.4rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
}
#page_404 .error_actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
#page_404 .error_actions a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 16px 40px;
  border-radius: 99px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  transition: background-color 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
#page_404 .error_actions .btn_action_primary {
  background: #fff;
  color: #000;
}
#page_404 .error_actions .btn_action_primary:hover {
  background: #c90017;
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(201, 0, 23, 0.3);
}
#page_404 .error_actions .btn_action_sub {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}
#page_404 .error_actions .btn_action_sub:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

/* Animations */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes floatText {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(0, -10px, 0);
  }
}
/* SP調整 */
@media (max-width: 768px) {
  #page_404 {
    min-height: 70vh;
  }
  #page_404 .error_huge_text {
    -webkit-text-stroke-width: 1px;
    margin-bottom: 30px;
  }
  #page_404 .error_actions {
    flex-direction: column;
    gap: 16px;
  }
  #page_404 .error_actions a {
    width: 100%;
    max-width: 280px;
  }
}
/* --- 3. メインコンテンツのスタイル --- */
html {
  background-color: #111;
  font-size: clamp(55.5%, 1.2vw, 62.5%);
  height: 100%;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  min-height: 100vh;
  width: 100%;
  -webkit-text-size-adjust: 100%;
  font-family: "Noto sans JP", sans-serif;
  font-weight: normal;
  font-size: 1.4rem;
  line-height: 1.6;
  letter-spacing: 1.5px;
  color: #000;
}
@media (max-width: 768px) {
  body {
    font-size: 1.6rem;
  }
}

main {
  padding-top: 70px;
}