/* ============================================================
   BETRS corporate site - common stylesheet
   PC-first / breakpoints: 1200px, 960px, 568px
============================================================ */

:root {
  --c_white: #ffffff;
  --c_bg_alt: #f7f7f6;
  --c_black: #030302;
  --c_dark: #211f1d;
  --c_text: #4f4d49;
  --c_text_strong: #353230;
  --c_label: #74716e;
  --c_accent: #726a3d;
  --c_gold: #9d6600;
  --c_border: #c5c4c1;
  --c_border_light: #dfdedc;
  --c_muted: #9a9895;
  --c_footer_bg: #5a532a;
  --font_base: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  --header_height: 86px;
  --l_max: 1280px;
  --l_gutter: 40px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ------------------------------------------------------------
   Reset / base
------------------------------------------------------------ */
@font-face {
  font-family: "BodoniModa";
  font-style: bold;
  font-weight: 700;
  src: url("../fonts/BodoniModa_9pt-Regular.woff2") format("woff2"), url("../fonts/BodoniModa_9pt-Regular.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "BodoniModa";
  font-style: medium;
  font-weight: 500;
  src: url("../fonts/BodoniModa_18pt-Regular.woff2") format("woff2"), url("../fonts/BodoniModa_18pt-Regular.woff") format("woff");
  font-display: swap;
}
a:hover img {
  filter: alpha(opacity=85);
  -moz-opacity: 0.85;
  opacity: 0.85;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font_base);
  font-size: 16px;
  color: var(--c_text);
  background: var(--c_white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  word-break: break-word;
}
@media (max-width: 568px) {
  body { font-size: 15px; }
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol, dl, dd { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p, figure { margin: 0; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
iframe { border: 0; display: block; width: 100%; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  /* animation-iteration-count: 1 matters for "infinite" animations
     (e.g. .hero_scroll_bar_inner) - without it, a near-zero duration
     doesn't stop the loop, it just replays it thousands of times a
     second, which reads as random flicker instead of reduced motion. */
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* English-only text (labels, headings, nav, etc.) */
.en_txt {
  font-family: "BodoniModa", sans-serif;
  letter-spacing: 0.15em;
}
/*===============================================
 *	br
===============================================*/
@media screen and (min-width:1021px){
.br-pc{display:block;}
.br-tb{display:none;}
.br-sp{display:none;}
}
@media screen and (min-width:481px) and (max-width: 1020px) {
.br-pc{display:none;}
.br-tb{display:block;}
.br-sp{display:none;}
}
@media screen and (max-width: 480px) {
.br-pc{display:none;}
.br-tb{display:none;}
.br-sp{display:block;}
}
/* ------------------------------------------------------------
   Layout utilities
------------------------------------------------------------ */
.l_container {
  max-width: var(--l_max);
  margin: 0 auto;
  padding: 0 var(--l_gutter);
}
@media (max-width: 1200px) {
  .l_container { padding: 0 48px; }
}
@media (max-width: 960px) {
  .l_container { padding: 0 32px; }
}
@media (max-width: 568px) {
  .l_container { padding: 0 24px; }
}

.section_label {
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--c_label);
  margin: 0 0 24px;
}
.section_heading {
  font-size: 60px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: var(--c_accent);
  margin: 0 0 16px;
}
.section_lead {
  font-size: 20px;
  letter-spacing: 0.05em;
  color: var(--c_text_strong);
  margin: 0;
}
.subsection_heading {
  font-size: 30px;
  font-weight: 500;
  color: var(--c_black);
  letter-spacing: 0.03em;
  margin: 0;
}
.section_head { margin-bottom: 112px; }
.section_head-center { text-align: center; }
@media (max-width: 1200px) {
  .section_heading { font-size: 48px; }
  .section_head { margin-bottom: 88px; }
}
@media (max-width: 960px) {
  .section_heading { font-size: 40px; }
  .section_head { margin-bottom: 64px; }
  .section_lead { font-size: 17px; }
}
@media (max-width: 568px) {
  .section_heading { font-size: 32px; }
  .section_label { margin-bottom: 16px; }
  .section_head { margin-bottom: 48px; }
}

.btn_outline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--c_muted);
  color: var(--c_dark);
  font-size: 14px;
  letter-spacing: 0.15em;
  padding: 17px 33px;
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.btn_outline:hover { background: var(--c_accent); color: var(--c_white); border-color: var(--c_accent); }
.btn_outline-light { border-color: rgba(255, 255, 255, 0.6); color: var(--c_white); }
.btn_outline-light:hover { background: var(--c_white); color: var(--c_footer_bg); }

.icon_arrow {
  position: relative;
  display: inline-block;
  width: 14px;
  height: 10px;
  flex-shrink: 0;
}
.icon_arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: translateY(-50%);
}
.icon_arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg) translateX(-1px);
}
.icon_arrow-up { transform: rotate(-90deg); }
.icon_arrow-left { transform: rotate(180deg); }

.icon_pin {
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 2px solid var(--c_text);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  flex-shrink: 0;
}

.footer_social_icon {
  display: block;
  width: 36px;
  height: 36px;
}

/* Scroll reveal animation
   Visible by default so content is never hidden for no-JS browsers,
   crawlers, or if IntersectionObserver fails to fire. Only animates
   once JS has confirmed itself via the html.has_js class. */
.js_reveal { opacity: 1; }
html.has_js .js_reveal {
  opacity: 0;
  transform: translateX(-48px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
html.has_js .js_reveal.is_visible {
  opacity: 1;
  transform: translateX(0);
}

/* ------------------------------------------------------------
   Header / Global navigation / Hamburger
------------------------------------------------------------ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header_height);
  z-index: 1000;
  background: rgba(90, 83, 42, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background-color 0.3s var(--ease);
}
.header_inner {
  max-width: var(--l_max);
  margin: 0 auto;
  height: 100%;
  padding: 0 var(--l_gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header_logo a {
  display: inline-flex;
  align-items: center;
}
.header_logo_img {
  display: block;
  height: 32px;
  width: auto;
}

.gnav_list {
  display: flex;
  align-items: center;
  gap: 40px;
}
.gnav_link {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--c_white);
  opacity: 0.85;
  transition: opacity 0.3s var(--ease);
}
.gnav_link:hover { opacity: 1; }
.gnav_link-cta {
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 11px 25px;
  letter-spacing: 0.15em;
  opacity: 1;
}
.gnav_link-cta:hover { background: var(--c_white); color: var(--c_black); }

.gnav_link_sns {
  display: inline-flex;
  align-items: center;
  opacity: 0.85;
  transition: opacity 0.3s var(--ease);
}
.gnav_link_sns:hover { opacity: 1; }
.gnav_icon_instagram {
  display: block;
  width: 30px;
  height: 30px;
}

.gnav_overlay {
  position: fixed;
  inset: 0;
  background: rgba(90, 83, 42, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
  z-index: 998;
}
.gnav_overlay.is_active { opacity: 1; visibility: visible; }

.hamburger {
  display: none;
  position: relative;
  width: 32px;
  height: 32px;
  z-index: 1001;
}
.hamburger_box {
  position: relative;
  display: block;
  width: 24px;
  height: 16px;
  margin: 8px auto 0;
}
.hamburger_line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--c_white);
  border-radius: 1px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), top 0.3s var(--ease);
}
.hamburger_line:nth-child(1) { top: 0; }
.hamburger_line:nth-child(2) { top: 7px; }
.hamburger_line:nth-child(3) { top: 14px; }
.hamburger.is_active .hamburger_line:nth-child(1) { top: 7px; transform: rotate(45deg); }
.hamburger.is_active .hamburger_line:nth-child(2) { opacity: 0; }
.hamburger.is_active .hamburger_line:nth-child(3) { top: 7px; transform: rotate(-45deg); }

@media (max-width: 960px) {
  :root { --header_height: 64px; }
  .header_inner { padding: 0 32px; }
  .hamburger { display: block; }

  .gnav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 82vw);
    height: 100vh;
    background: var(--c_footer_bg);
    padding: calc(var(--header_height) + 40px) 40px 40px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    overflow-y: auto;
    z-index: 999;
  }
  .gnav.is_active { transform: translateX(0); }
  .gnav_list {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }
  .gnav_link { font-size: 15px; letter-spacing: 0.1em; }
  .gnav_item-cta { margin-top: 12px; }
  .gnav_link-cta { display: inline-block; }

  body.is_menu_open { overflow: hidden; }
}
@media (max-width: 568px) {
  :root { --header_height: 56px; }
  .header_logo_img { height: 24px; }
  .gnav { width: 100vw; padding: calc(var(--header_height) + 32px) 24px 32px; }
}

/* ------------------------------------------------------------
   Hero
------------------------------------------------------------ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  background: var(--c_black);
}
.hero_slider {
  position: absolute;
  left: 0;
  top: -15%;
  width: 100%;
  height: 130%;
  will-change: transform;
}
/* Slick (fade:true, see js/top.js) owns slide transitions/positioning
   from here down; .hero_slide only needs to fill the .slick-slide
   wrapper it ends up nested in. */
.hero_slider .slick-list,
.hero_slider .slick-track,
.hero_slider .slick-slide {
  height: 100%;
}
/* Slick applies its fade transition as a plain (non-!important) inline
   style right before flipping opacity. Our sitewide
   "@media (prefers-reduced-motion: reduce) { * { transition-duration:
   0.01ms !important } }" rule (see reset section above) is more
   specific than that inline style for this one sub-property and wins,
   collapsing the fade to an instant cut whenever that OS/browser
   preference is on. Re-assert the intended duration here - being a
   class selector, it still beats the universal "*" rule even though
   both are !important. */
.hero_slider .slick-slide {
  transition: opacity 2200ms ease !important;
}
.hero_slide { height: 100%; }
.hero_slide picture { display: block; width: 100%; height: 100%; }
.hero_slide_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero_overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0.5));
}
.hero_body {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  text-align: center;
}
.hero_inner { max-width: 1024px; }

/* Hero copy: visible by default (no-JS/no-motion fallback), fades up
   with a staggered delay once html.has_js is set (see inline script
   in index.html <head>). Uses a keyframe animation rather than a
   class-toggled transition so the reveal always plays on load,
   independent of JS timing. */
@keyframes hero_fade_up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
html.has_js .hero_eyebrow,
html.has_js .hero_title,
html.has_js .hero_lead,
html.has_js .hero_cta {
  opacity: 0;
  animation: hero_fade_up 2.6s ease-in-out forwards;
}
html.has_js .hero_eyebrow { animation-delay: 0.3s; }
html.has_js .hero_title { animation-delay: 0.6s; }
html.has_js .hero_lead { animation-delay: 0.9s; }
html.has_js .hero_cta { animation-delay: 1.2s; }

.hero_eyebrow {
  font-size: 20px;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0 40px;
}
.hero_title {
  font-size: 96px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: var(--c_white);
  margin: 0 0 40px;
}
.hero_lead {
  font-size: 20px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 56px;
}
.hero_cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  letter-spacing: 0.2em;
  padding: 17px 33px;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease), background-color 0.3s var(--ease);
}
.hero_cta:hover { background: var(--c_white); color: var(--c_black); border-color: var(--c_white); }

.hero_scroll {
  position: absolute;
  left: 50%;
  bottom: 56px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hero_scroll_text {
  font-size: 9px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.3);
}
.hero_scroll_bar {
  position: relative;
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  overflow: hidden;
}
.hero_scroll_bar_inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  /* Shorter than the track (was 100%, which meant the moving piece
     briefly filled the whole bar solid white as it passed through -
     read as a "blink" rather than a streak flowing down it). */
  height: 40%;
  background: var(--c_white);
  animation: scroll_bar_move 1.8s ease-in-out infinite;
  /* Under prefers-reduced-motion, animation-iteration-count is forced
     to 1 (see reset section above) so the loop actually stops instead
     of restarting thousands of times a second. Without "forwards",
     finishing that single run reverts to this rule's own un-animated
     "top: 0" (no transform) - i.e. sitting fully visible at the top of
     the track - instead of holding the animation's own end state
     (fully hidden below, past the track). */
  animation-fill-mode: forwards;
}
@keyframes scroll_bar_move {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(250%); }
}

.hero_indicator {
  position: absolute;
  left: 0;
  bottom: 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.hero_indicator_btn {
  width: 24px;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
  transition: width 0.3s var(--ease), background-color 0.3s var(--ease);
}
.hero_indicator_btn.is_active { width: 48px; background: var(--c_white); }

@media (max-width: 1200px) {
  .hero_title { font-size: 76px; }
}
@media (max-width: 960px) {
  .hero_title { font-size: 56px; }
  .hero_lead { font-size: 17px; margin-bottom: 40px; }
  .hero_eyebrow { margin-bottom: 28px; }
}
@media (max-width: 568px) {
  .hero { min-height: 560px; }
  .hero_title { font-size: 38px; margin-bottom: 28px; }
  .hero_lead { font-size: 15px; margin-bottom: 32px; }
  .hero_cta { padding: 14px 24px; }
  .hero_scroll { bottom: 40px; }
}

/* ------------------------------------------------------------
   Concept
------------------------------------------------------------ */
.concept { padding: 160px 0; background: var(--c_white); }
.concept_inner {
  display: flex;
  align-items: flex-start;
  gap: 128px;
}
.concept_media { width: 512px; flex-shrink: 0; overflow: hidden; }
.concept_media img { width: 100%; height: 683px; object-fit: cover; }
.concept_body { flex: 1; padding-top: 80px; }
.concept_subheading {
  font-size: 30px;
  font-weight: 500;
  color: var(--c_dark);
  letter-spacing: 0.03em;
  margin: 0 0 32px;
}
.concept_text { margin: 0 0 40px; display: flex; flex-direction: column; gap: 16px; }
.concept_text p { letter-spacing: 0.04em; margin: 0; }

@media (max-width: 1200px) {
  .concept { padding: 120px 0; }
  .concept_inner { gap: 64px; }
  .concept_media { width: 420px; }
  .concept_media img { height: 560px; }
}
@media (max-width: 960px) {
  .concept_inner { flex-direction: column; }
  .concept_media { width: 100%; }
  .concept_media img { height: 60vw; max-height: 420px; }
  .concept_body { padding-top: 48px; width: 100%; }
}
@media (max-width: 568px) {
  .concept { padding: 80px 0; }
  .concept_subheading { font-size: 24px; margin-bottom: 24px; }
  .concept_body { padding-top: 32px; }
}

/* ------------------------------------------------------------
   Brand / Material
------------------------------------------------------------ */
.brand { padding: 160px 0; background: var(--c_bg_alt); }
.brand_feature {
  display: flex;
  gap: 100px;
  align-items: flex-start;
}
.brand_feature + .brand_feature { margin-top: 128px; }
.brand_feature-reverse { flex-direction: row-reverse; }
.brand_feature_media { width: 512px; flex-shrink: 0; overflow: hidden; }
.brand_feature_media img { width: 100%; height: 384px; object-fit: cover; }
.brand_feature_body { flex: 1; padding-top: 40px; }
.feature_title {
  font-size: 36px;
  font-weight: 500;
  color: var(--c_black);
  letter-spacing: 0.03em;
  margin: 0 0 8px;
}
.feature_subtitle {
  font-size: 14px;
  letter-spacing: 0.15em;
  color: var(--c_label);
  margin: 0 0 32px;
}
.feature_text { display: flex; flex-direction: column; gap: 24px; margin: 0 0 24px; }
.feature_text p { letter-spacing: 0.04em; margin: 0; }
.feature_stats {
  display: flex;
  gap: 24px;
  border-top: 1px solid var(--c_border);
  padding-top: 32px;
  margin-top: 40px;
}
.feature_stat { width: 244px; }
.feature_stat_value {
  font-size: 36px;
  font-weight: 500;
  color: var(--c_black);
  margin: 0 0 4px;
}
.feature_stat_label { font-size: 13px; letter-spacing: 0.15em; color: var(--c_label); margin: 0; }
.feature_tags { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.feature_tags li {
  border: 1px solid var(--c_border);
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--c_text);
  padding: 9px 17px;
}

@media (max-width: 1200px) {
  .brand { padding: 120px 0; }
  .brand_feature { gap: 64px; }
  .brand_feature_media { width: 420px; }
  .brand_feature_media img { height: 320px; }
}
@media (max-width: 960px) {
  .brand_feature { flex-direction: column; }
  .brand_feature + .brand_feature { margin-top: 80px; }
  .brand_feature_media { width: 100%; }
  .brand_feature_media img { height: 60vw; max-height: 420px; }
  .brand_feature_body { padding-top: 40px; width: 100%; }
}
@media (max-width: 568px) {
  .brand { padding: 80px 0; }
  .brand_feature { gap: 0; }
  .feature_title { font-size: 28px; }
  .feature_stats { flex-direction: column; gap: 24px; }
  .feature_stat { width: 100%; }
}

/* ------------------------------------------------------------
   Business / Partnership
------------------------------------------------------------ */
.business { padding: 160px 0; background: var(--c_white); }
.business_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.business_item { display: flex; flex-direction: column; }
.business_card {
  position: relative;
  display: block;
  aspect-ratio: 381 / 508;
  overflow: hidden;
}
.business_card_img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.business_card:hover .business_card_img { transform: scale(1.05); }
.business_card_overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3) 50%, transparent);
}
.business_card_body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
}
.business_card_label {
  font-size: 13px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 12px;
}
.business_card_title {
  font-size: 30px;
  font-weight: 500;
  color: var(--c_white);
  letter-spacing: 0.03em;
  line-height: 1.2;
  margin-bottom: 16px;
}
.business_card_text {
  font-size: 14px;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
}
.business_card_more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.4);
}

.business_step {
  border-top: 1px solid var(--c_border);
  margin-top: 24px;
  padding-top: 24px;
}
.business_step_no { display: block; font-size: 13px; letter-spacing: 0.2em; color: var(--c_label); margin-bottom: 16px; }
.business_step_title { font-size: 18px; font-weight: 500; color: var(--c_black); letter-spacing: 0.03em; margin: 0 0 12px; }
.business_step_text { letter-spacing: 0.03em; margin: 0; }

@media (max-width: 1200px) {
  .business { padding: 120px 0; }
  .business_grid { gap: 32px; }
}
@media (max-width: 960px) {
  .business_grid { grid-template-columns: repeat(2, 1fr); row-gap: 56px; }
  .business_item:last-child { grid-column: span 2; }
}
@media (max-width: 568px) {
  .business { padding: 80px 0; }
  .business_grid { grid-template-columns: 1fr; row-gap: 48px; }
  .business_item:last-child { grid-column: auto; }
  .business_card_body { padding: 28px; }
  .business_card_title { font-size: 24px; }
}

/* ------------------------------------------------------------
   Global / World
------------------------------------------------------------ */
.global { padding: 160px 0; background: var(--c_bg_alt); }
.global_caption {
  text-align: center;
  font-size: 30px;
  font-weight: 500;
  color: var(--c_black);
  letter-spacing: 0.08em;
  margin: 0 0 48px;
}
.global_map {
  aspect-ratio: 1152 / 648;
  margin-bottom: 40px;
  overflow: hidden;
}
.global_map img { width: 100%; height: 100%; object-fit: cover; }
.global_points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
  margin-bottom: 112px;
}
.global_point_label { font-size: 13px; letter-spacing: 0.2em; color: var(--c_label); margin: 0 0 8px; }
.global_point_text { letter-spacing: 0.03em; color: var(--c_text_strong); margin: 0; }

.global_statement { text-align: center; margin-bottom: 80px; }
.global_statement_title {
  font-size: 36px;
  font-weight: 500;
  color: var(--c_black);
  letter-spacing: 0.04em;
  margin: 0 0 16px;
}
.global_statement_text {
  letter-spacing: 0.04em;
  max-width: 576px;
  margin: 0 auto;
}

.global_markets_head { text-align: center; margin-bottom: 40px; }
.global_markets_head .section_label { margin-bottom: 16px; }
.global_markets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 100px;
}
.market_card { position: relative; aspect-ratio: 381 / 238; overflow: hidden; }
.market_card_img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.market_card_overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2) 50%, transparent);
}
.market_card_body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}
.market_card_label { font-size: 13px; letter-spacing: 0.2em; color: rgba(255, 255, 255, 0.8); margin-bottom: 4px; }
.market_card_title { font-size: 24px; font-weight: 500; color: var(--c_white); letter-spacing: 0.03em; margin-bottom: 8px; }
.market_card_text { letter-spacing: 0.05em; color: rgba(255, 255, 255, 0.8); }

@media (max-width: 1200px) {
  .global { padding: 120px 0; }
  .global_points { margin-bottom: 88px; }
  .global_markets { gap: 60px; }
}
@media (max-width: 960px) {
  .global_points { grid-template-columns: 1fr; gap: 24px; margin-bottom: 64px; }
  .global_markets { grid-template-columns: 1fr; }
  .global_statement_title { font-size: 28px; }
  .global_markets {
    gap: 40px;
  }
}
@media (max-width: 568px) {
  .global { padding: 80px 0; }
  .global_caption { font-size: 22px; }
  .global_statement { margin-bottom: 56px; }
  .global_markets {
    gap: 20px;
  }
}

/* ------------------------------------------------------------
   Message / People
------------------------------------------------------------ */
.people { padding: 160px 0; background: var(--c_white); }
.people_feature { display: flex; gap: 128px; align-items: flex-start; }
.people_media { width: 427px; flex-shrink: 0; overflow: hidden; }
.people_media img { width: 100%; height: 569px; object-fit: cover; }
.people_body { flex: 1; padding-top: 32px; }
.people_quote_mark {
  font-size: 120px;
  color: var(--c_border);
  line-height: 1;
  margin: 0 0 -24px -8px;
}
.people_quote {
  font-size: 36px;
  font-weight: 500;
  color: var(--c_black);
  letter-spacing: 0.02em;
  margin: 0 0 16px;
}
.people_quote_jp { font-size: 18px; letter-spacing: 0.05em; color: var(--c_text_strong); margin: 0 0 32px; }
.people_text { margin: 0 0 48px; }
.people_text p { letter-spacing: 0.04em; margin: 0; }
.people_profile {
  display: flex;
  align-items: center;
  gap: 24px;
  border-top: 1px solid var(--c_border);
  padding-top: 24px;
}
.people_profile_name { font-weight: 500; color: var(--c_black); margin: 0; }
.people_profile_name span { display: block; font-weight: 400; color: var(--c_text); margin-top: 4px; }
.people_profile_divider { width: 1px; height: 32px; background: var(--c_border); flex-shrink: 0; }
.people_profile_role { color: var(--c_text); margin: 0; }
.people_profile_role span { display: block; color: var(--c_label); margin-top: 4px; }

@media (max-width: 1200px) {
  .people { padding: 120px 0; }
  .people_feature { gap: 64px; }
  .people_media { width: 340px; }
  .people_media img { height: 460px; }
}
@media (max-width: 960px) {
  .people_feature { flex-direction: column; }
  .people_media { width: 100%; }
  .people_media img { height: 70vw; max-height: 480px; }
  .people_body { padding-top: 40px; width: 100%; }
}
@media (max-width: 568px) {
  .people { padding: 80px 0; }
  .people_quote { font-size: 26px; }
  .people_profile { flex-wrap: wrap; gap: 16px; }
}

/* ------------------------------------------------------------
   News
------------------------------------------------------------ */
.news { padding: 160px 0; background: var(--c_bg_alt); }
.news_head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 96px;
}
.news_heading { font-size: 48px; font-weight: 500; color: var(--c_accent); letter-spacing: 0.04em; margin: 0; }
.news_view_all { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; letter-spacing: 0.1em; color: var(--c_text); }

.news_featured {
  display: flex;
  gap: 48px;
  margin-bottom: 80px;
}
.news_featured_media { width: 552px; flex-shrink: 0; overflow: hidden; }
.news_featured_media img { width: 100%; height: 368px; object-fit: cover; }
.news_featured_body { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.news_meta { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.news_date { font-size: 13px; letter-spacing: 0.05em; color: var(--c_label); }
.news_tag { border: 1px solid var(--c_border); font-size: 13px; letter-spacing: 0.05em; color: var(--c_text_strong); padding: 5px 13px; }
.news_featured_title { font-size: 30px; font-weight: 500; color: var(--c_black); letter-spacing: 0.02em; margin: 0 0 16px; }
.news_featured_text { letter-spacing: 0.03em; margin: 0 0 24px; }
.news_more { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; letter-spacing: 0.1em; color: var(--c_label); }

.news_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.news_card_media { width: 100%; aspect-ratio: 357 / 238; overflow: hidden; margin-bottom: 20px; }
.news_card_media img { width: 100%; height: 100%; object-fit: cover; }
.news_card_title { font-weight: 500; color: var(--c_black); letter-spacing: 0.02em; margin: 8px 0; }
.news_card_text { font-size: 14px; letter-spacing: 0.02em; margin: 0; }

@media (max-width: 1200px) {
  .news { padding: 120px 0; }
  .news_head { margin-bottom: 64px; }
  .news_featured_media { width: 420px; }
}
@media (max-width: 960px) {
  .news_featured { flex-direction: column; }
  .news_featured_media { width: 100%; }
  .news_featured_media img { height: 60vw; max-height: 380px; }
  .news_grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 568px) {
  .news { padding: 80px 0; }
  .news_head { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 48px; }
  .news_heading { font-size: 36px; }
  .news_grid { grid-template-columns: 1fr; gap: 40px; }
  .news_featured_title { font-size: 22px; }
}

/* ------------------------------------------------------------
   Company
------------------------------------------------------------ */
.company { padding: 160px 0; background: var(--c_white); }
.company_grid {
  display: flex;
  gap: 96px;
}
.company_media { width: 528px; flex-shrink: 0; margin: 0; }
.company_media img { width: 100%; height: 396px; object-fit: cover; margin-bottom: 16px; }
.company_media_caption { font-size: 14px; letter-spacing: 0.05em; color: var(--c_label); }

.company_info { flex: 1; min-width: 0; }
.company_table { display: flex; flex-direction: column; }
.company_row {
  display: flex;
  gap: 32px;
  padding: 33px 0;
  border-bottom: 1px solid var(--c_border_light);
}
.company_row-noborder { border-bottom: 0; }
.company_row dt { width: 140px; flex-shrink: 0; font-size: 13px; letter-spacing: 0.1em; color: var(--c_label); }
.company_row dd { margin: 0; letter-spacing: 0.03em; color: var(--c_black); }
.company_row dd span { display: block; color: var(--c_label); }

.company_map { margin-top: 56px; }
.company_map_frame { width: 100%; aspect-ratio: 528 / 231; overflow: hidden; }
.company_map_frame iframe { width: 100%; height: 100%; }
.company_map_note {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}
.company_map_note p { font-size: 14px; color: var(--c_text); margin: 0; }
.company_map_note p span { display: block; color: var(--c_label); margin-top: 2px; }

.company_cta { margin-top: 96px; text-align: center; }

@media (max-width: 1200px) {
  .company { padding: 120px 0; }
  .company_grid { gap: 56px; }
  .company_media { width: 420px; }
}
@media (max-width: 960px) {
  .company_grid { flex-direction: column; }
  .company_media { width: 100%; }
  .company_media img { height: 60vw; max-height: 420px; }
  .company_info { width: 100%; }
}
@media (max-width: 568px) {
  .company { padding: 80px 0; }
  .company_row { flex-direction: column; gap: 8px; padding: 24px 0; }
  .company_row dt { width: auto; }
  .company_cta { margin-top: 64px; }
}

/* ------------------------------------------------------------
   Footer
------------------------------------------------------------ */
.footer { background: var(--c_footer_bg); padding: 144px 0; color: var(--c_white); }
.footer_head { text-align: center; margin-bottom: 48px; }
.footer_title { font-size: 60px; font-weight: 500; letter-spacing: 0.02em; margin: 0 0 24px; }
.footer_subtitle { font-size: 30px; font-weight: 500; color: rgba(255, 255, 255, 0.6); letter-spacing: 0.03em; margin: 0; }
.footer_cta { text-align: center; margin-bottom: 48px; }
.footer_lead {
  text-align: center;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.5);
  max-width: 480px;
  margin: 0 auto 96px;
}

.footer_nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 64px;
  margin-bottom: 96px;
}
.footer_nav_title { font-size: 13px; letter-spacing: 0.2em; margin: 0 0 32px; }
.footer_nav_title_btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  cursor: default;
}
.footer_nav_toggle {
  display: none;
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid rgba(255, 255, 255, 0.6);
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.6);
  transform: rotate(45deg);
  transition: transform 0.3s var(--ease);
}
.footer_nav_col.is_open .footer_nav_toggle { transform: rotate(225deg); }

.footer_nav_list_wrap { display: grid; grid-template-rows: 1fr; }
.footer_nav_list_inner { overflow: hidden; }
.footer_nav_list { display: flex; flex-direction: column; gap: 12px; }
.footer_nav_list a { font-size: 14px; letter-spacing: 0.03em; color: rgba(255, 255, 255, 0.6); transition: color 0.3s var(--ease); }
.footer_nav_list a:hover { color: var(--c_white); }

.footer_social { display: flex; align-items: center; justify-content: center; gap: 40px; margin-bottom: 80px; }

.footer_bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 41px;
}
.footer_logo { margin: 0; }
.footer_logo_img { display: block; height: 22px; width: auto; }
.footer_copy { display: flex; align-items: center; gap: 32px; font-size: 14px; letter-spacing: 0.03em; color: rgba(255, 255, 255, 0.4); }
.footer_copy a:hover { color: var(--c_white); }

@media (max-width: 1200px) {
  .footer { padding: 112px 0; }
  .footer_title { font-size: 48px; }
}
@media (max-width: 960px) {
  .footer_nav { grid-template-columns: repeat(2, 1fr); gap: 48px; row-gap: 48px; }
  .footer_lead { margin-bottom: 64px; }
}
@media (max-width: 568px) {
  .footer { padding: 80px 0; }
  .footer_title { font-size: 28px; }
  .footer_subtitle { font-size: 20px; }
  .footer_nav { grid-template-columns: 1fr; gap: 0; }
  .footer_social { gap: 24px; margin-bottom: 56px; }
  .footer_bottom { flex-direction: column; gap: 16px; text-align: center; }

  .footer_nav_col { border-bottom: 1px solid rgba(255, 255, 255, 0.15); }
  .footer_nav_col:first-child { border-top: 1px solid rgba(255, 255, 255, 0.15); }
  .footer_nav_title { margin: 0; }
  .footer_nav_title_btn { padding: 20px 0; cursor: pointer; }
  .footer_nav_toggle { display: block; }
  .footer_nav_list { padding: 0 0 20px; }
.footer_nav_list a { font-size: 14px; display: block; padding: 5px 10px;}

  html.has_js .footer_nav_list_wrap {
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s var(--ease);
  }
  html.has_js .footer_nav_col.is_open .footer_nav_list_wrap { grid-template-rows: 1fr; }
}

/* ------------------------------------------------------------
   Page top button
------------------------------------------------------------ */
.pagetop {
  position: fixed;
  right: 32px;
  bottom: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--c_black);
  color: var(--c_white);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s var(--ease);
  z-index: 900;
}
.pagetop.is_visible { opacity: 1; visibility: visible; transform: translateY(0); }

@media (max-width: 568px) {
  .pagetop { right: 16px; bottom: 16px; width: 44px; height: 44px; }
}


/* =========================================================
   モーダルウィンドウ
   ========================================================= */
/* =========================================================
   Modal
   ========================================================= */

.partnership-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 30px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.45s var(--ease),
    visibility 0.45s;
}

.partnership-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.partnership-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(156, 111, 15, 0.68);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.partnership-modal__container {
  position: relative;
  z-index: 1;
  width: min(1080px, 100%);
  min-height: 600px;
  display: grid;
  grid-template-columns: 42% 58%;
  overflow: hidden;
  background: var(--modal-bg);
  box-shadow: 0 30px 90px rgba(114, 67, 14, 0.24);

  transform: translateY(25px) scale(0.97);
  opacity: 0;
  transition:
    transform 0.6s var(--ease),
    opacity 0.45s ease;
}

.partnership-modal.is-open .partnership-modal__container {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* =========================================================
   Visual
   ========================================================= */

.partnership-modal__visual {
  position: relative;
  min-height: 600px;
  overflow: hidden;

  /* BETRSのメイン画像に差し替え可能 */
  background:
    linear-gradient(145deg, rgba(197, 139, 32, 0.08), rgba(172, 108, 35, 0.48)),
    radial-gradient(circle at 70% 25%, rgba(255,255,255,.28), transparent 30%),
    linear-gradient(135deg, #b6b0a6 0%, #706b63 46%, #242321 100%);
}

.partnership-modal__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 82%, rgba(255,255,255,.12) 82.2%, transparent 82.5%),
    linear-gradient(0deg, transparent 0 78%, rgba(255,255,255,.08) 78.2%, transparent 78.5%);
  mix-blend-mode: screen;
}

.visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.04) 0%,
    rgba(0,0,0,0.08) 50%,
    rgba(0,0,0,0.45) 100%
  );
}

.visual-copy {
  position: absolute;
  z-index: 2;
  left: 48px;
  bottom: 48px;
  color: #fff;
}

.visual-copy__eyebrow {
  display: block;
  margin-bottom: 15px;
  font-size: 11px;
  letter-spacing: 0.24em;
}

.visual-copy__title {
  display: block;
  font-size: clamp(38px, 4vw, 62px);
  line-height: 0.92;
  font-weight: 500;
  letter-spacing: -0.045em;
}

/* =========================================================
   Content
   ========================================================= */

.partnership-modal__content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px 72px 58px;
  background: #fff;
}

.partnership-modal__top {
  position: absolute;
  top: 34px;
  left: 72px;
  right: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.partnership-logo {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.22em;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
}

.language-switcher__button {
  appearance: none;
  border: 0;
  padding: 4px 0;
  background: transparent;
  color: #8a8a8a;
  font: inherit;
  font-size: 10px;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: color .25s ease;
}

.language-switcher__button:hover,
.language-switcher__button.is-active {
  color: #171717;
}

.language-switcher__button.is-active {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.language-switcher__divider {
  color: #b0b0b0;
  font-size: 10px;
}

.language-content {
  display: none;
  animation: contentFade .35s ease;
}

.language-content.is-active {
  display: block;
}

@keyframes contentFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.partnership-label {
  display: inline-block;
  margin-bottom: 25px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.language-content h2 {
  max-width: 610px;
  margin: 0;
  font-size: clamp(27px, 3vw, 35px);
  line-height: 1.12;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.language-content h2 span {
  display: inline;
}

.language-content p {
  max-width: 570px;
  margin: 28px 0 0;
  color: var(--modal-muted);
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0.01em;
}

.partnership-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  max-width: 570px;
  margin-top: 38px;
}

.partnership-button {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 17px 13px 20px;
  text-decoration: none;
  font-size: 10px;
  line-height: 1.35;
  letter-spacing: 0.12em;
  transition:
    background .25s ease,
    color .25s ease,
    transform .25s ease;
}

.partnership-button i {
  font-style: normal;
  font-size: 14px;
  transition: transform .25s ease;
}

.partnership-button:hover i {
  transform: translate(3px, -3px);
}

.partnership-button--primary {
  background: #726a2b;
  color: #fff;
}

.partnership-button--primary:hover {
  background: #333;
}

.partnership-button--outline {
  border: 1px solid #726a2b;
  color: #726a2b;
}

.partnership-button--outline:hover {
  background: #fff;
}

.partnership-note {
  margin: 34px 0 0 !important;
  font-size: 9px !important;
  line-height: 1.5 !important;
  color: #999 !important;
  letter-spacing: 0.04em !important;
}

/* =========================================================
   Close
   ========================================================= */

.partnership-modal__close {
  position: absolute;
  z-index: 5;
  top: 19px;
  right: 19px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  cursor: pointer;
}

.partnership-modal__close span {
  position: absolute;
  width: 14px;
  height: 1px;
  background: #171717;
}

.partnership-modal__close span:first-child {
  transform: rotate(45deg);
}

.partnership-modal__close span:last-child {
  transform: rotate(-45deg);
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 900px) {
  .partnership-modal {
    padding: 18px;
  }

  .partnership-modal__container {
    min-height: 0;
    grid-template-columns: 1fr;
    max-height: calc(100vh - 36px);
    overflow-y: auto;
  }

  .partnership-modal__visual {
    min-height: 240px;
  }

  .visual-copy {
    left: 30px;
    bottom: 28px;
  }

  .visual-copy__title {
    font-size: 38px;
  }

  .partnership-modal__content {
    min-height: 450px;
    padding: 70px 34px 40px;
  }

  .partnership-modal__top {
    top: 25px;
    left: 34px;
    right: 34px;
  }

  .language-content h2 {
    font-size: 25px;
  }

  .partnership-modal__close {
    top: 15px;
    right: 15px;
  }
}

@media (max-width: 568px) {
  .partnership-modal {
    padding: 10px;
  }

  .partnership-modal__container {
    max-height: calc(100vh - 20px);
  }

  .partnership-modal__visual {
    min-height: 185px;
  }

  .visual-copy {
    left: 23px;
    bottom: 20px;
  }

  .visual-copy__eyebrow {
    margin-bottom: 8px;
    font-size: 9px;
  }

  .visual-copy__title {
    font-size: 30px;
  }

  .partnership-modal__content {
    min-height: 0;
    padding: 67px 22px 30px;
  }

  .partnership-modal__top {
    top: 22px;
    left: 22px;
    right: 22px;
  }

  .partnership-logo {
    font-size: 13px;
  }

  .language-content h2 {
    font-size: 22px;
    line-height: 1.18;
  }

  .language-content p {
    margin-top: 20px;
    font-size: 13px;
    line-height: 1.8;
  }

  .partnership-actions {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .partnership-button {
    min-height: 56px;
  }

  .partnership-note {
    display: none;
  }
}

/* モーダル表示中は背景スクロールを止める */
body.modal-open {
  overflow: hidden;
}
