@charset "UTF-8";

/* =======================================================
   CSS Variables
   ======================================================= */
:root {
  /* Core Colors */
  --primary: #F72A48;
  --black: #191919;
  --white: #FFFFFF;
  --neutral-light: #F5F5F5;
  --neutral-dark: #CBCBCB;
  
  /* Color Spectrum */
  --red-pale: #FFEBED;
  --red-bright: #FFD5D7;
  --red-light: #FF98A0;
  --red-regular: #F72A48;
  --red-medium: #E6103D;
  
  --neutral-pale: #F2F2F2;
  --neutral-bright: #DFDFDF;
  --neutral-airy: #9B9B9B;
  --neutral-gentle: #818181;
  --neutral-soft: #656565;
  --neutral-regular: #363636;
  --neutral-medium: #191919;
  
  /* Text Colors */
  --text-subdued: #6F6F6F;
  --text-link: #2666BF;
  --text-alert: #FF5722;
  --text-inverse: #FFFFFF;
  --text-default-black: #191919;
  --text-default-brand: #E6103D;
  --text-gray: #6F6F6F;
  --text-dark-gray: #363636;
  
  /* Border Colors */
  --border-default: #363636;
  --border-subtle: #E5E5E5;
  --border-alert: #FF5722;
  --border-inverse: #FFFFFF;
  --border-light: #E5E5E5;
  
  /* Typography */
  --text-xxs: 0.625rem;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-md: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-xxl: 1.5rem;
  --text-xxxl: 2rem;
  --text-xxxxl: 2.5rem;
  --text-xxxxxl: 3rem;
  --text-xxxxxxl: 3.5rem;

  /* Spacing */
  --space-xxxxs: 0.25rem;
  --space-xxxs: 0.5rem;
  --space-xxs: 0.75rem;
  --space-xs: 1rem;
  --space-sm: 1.25rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 2.5rem;
  --space-xxl: 3rem;
  --space-xxxl: 3.5rem;
  --space-xxxxl: 4rem;
  --space-xxxxxl: 5rem;
  --space-xxxxxxl: 6rem;
  --space-xxxxxxxl: 7.5rem;

  /* Layout Variables */
  --container-max-width: 944px;
  --height-mobile: 64px;
  --height-desktop: 80px;
  --hamburger-size: 40px;

  /* Border Radius */
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 14px;
  --radius-xxl: 16px;
  --radius-full: 999px;

  /* Animation & Transitions */
  --transition-fast: 0.3s ease;
  --transition-normal: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --animation-duration: 30s;

  /* Z-Index */
  --z-header: 998;
  --z-hamburger: 1002;
  --z-global-nav: 1000;
  --z-global-nav-wrapper: 1001;
  --z-sticky-cta: 100;

  /* Button Variables */
  --btn-height: 56px;
  --btn-m-padding-x: var(--space-sm);
  --btn-m-padding-y: var(--space-xs);
  --btn-s-padding: var(--space-xxs);
  --btn-border-width: 2px;
  --btn-font-size: var(--text-md);
  --btn-font-weight: 600;
  --btn-icon-size: 24px;

  /* Header Variables */
  --header-padding-mobile: 0px 24px;
  --header-padding-desktop: 0px 40px;
  --header-nav-gap: 24px;

  /* KV Variables */
  --kv-bg-gradient: linear-gradient(135deg, var(--primary) 0%, #FF6B8A 100%);
  --kv-mockup-max-width-mobile: 400px;
  --kv-mockup-max-width-desktop: 600px;

  /* Component Specific Values */
  --hamburger-top: 16px;
  --hamburger-right: 24px;
  --hamburger-line-height: 2px;
  --hamburger-gap: 8px;
  --sticky-cta-max-width: 390px;
  --sticky-cta-padding: 8px 16px 16px;
  --sticky-cta-gap: 12px;
  --logo-clients-height: 48px;
  --logo-clients-gap: 40px;
  --swiper-pagination-bottom: -64px;
  --swiper-button-size: 44px;
  --swiper-button-font-size: 16px;
  --swiper-bullet-size: 8px;
}


/* =======================================================
   Font Face Declarations
   ======================================================= */
@font-face {
  font-family: 'Shorai Sans';
  src: url('../fonts/ShoraiSansStdN-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Shorai Sans';
  src: url('../fonts/ShoraiSansStdN-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Shorai Sans';
  src: url('../fonts/ShoraiSansStdN-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Shorai Sans';
  src: url('../fonts/ShoraiSansStdN-Demi.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* =======================================================
   Base Styles
   ======================================================= */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Shorai Sans', 'Noto Sans JP', sans-serif;
  font-size: var(--text-md);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--black);
  background-color: var(--white);
}

img {
  max-width: 100%;
  height: 100%;
  vertical-align: middle;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity var(--transition-fast);
  cursor: pointer;
}

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

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* Media Queries for Base Styles */
@media (max-width: 1279px) {
  body {
    font-size: var(--text-sm);
  }
}

/* =======================================================
   Utility Classes
   ======================================================= */

.pc-view {
  display: none;
}

.sp-view {
  display: block;
}

.br-mobile {
  display: inline;
}

/* Media Queries for Utility Classes */
@media (min-width: 1200px) {
  .pc-view {
    display: block;
  }
  
  .sp-view {
    display: none;
  }
  
  .br-mobile {
    display: none;
  }
}

/* =======================================================
   Layout Components
   ======================================================= */
.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--space-md);
  max-width: 767px;
}



#wrapper {
  width: 100%;
  position: relative;
  overflow: hidden;
}


@media (min-width: 1200px) {
  .container {
    padding: 0 var(--space-xl);
    max-width: 1024px;
  }
}

/* =======================================================
   Button Components
   ======================================================= */
.btn-primary_m {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--btn-m-padding-y) var(--btn-m-padding-x);
  background-color: var(--primary);
  color: var(--white);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  width: 240px;
  font-size: var(--text-xl);
}

.btn-primary_s {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 var(--space-xxs);
  background-color: var(--primary);
  color: var(--white);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  width: 190px;
  font-size: var(--text-md);
}

.btn-secondary_m {
  display: none;
  padding: var(--btn-m-padding-y) var(--btn-m-padding-x);
  background-color: #FFE8E8;
  color: #D30030;
  box-shadow: inset 0 0 0 3px var(--primary);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  width: 240px;
  font-size: var(--text-xl);
}

.btn-secondary_s {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-xxxs) var(--space-xxs);
  background-color: #FFE8E8;
  color: #D30030;
  border: 3px solid var(--primary);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  width: 190px;
  font-size: var(--text-md);
}

.btn-download {
  padding: var(--space-xxs);
  background: var(--red-pale);
  box-shadow: inset 0 0 0 2px var(--primary);
  border-radius: var(--radius-md);
  color: var(--red-medium);
  font-weight: var(--btn-font-weight);
  font-size: var(--text-md);
  text-align: center;
  transition: all var(--transition-fast);
}

.btn-trial {
  padding: var(--space-xxs);
  background: var(--primary);
  border-radius: var(--radius-md);
  color: var(--white);
  font-weight: var(--btn-font-weight);
  font-size: var(--text-md);
  text-align: center;
  transition: all var(--transition-fast);
}

/* Button Icons */
.btn-primary-icon {
  width: var(--btn-icon-size);
  height: var(--btn-icon-size);
  display: inline-block;
  background-image: url('../images/icon_trial_wh.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all var(--transition-fast);
}

.btn-secondary-icon {
  width: var(--btn-icon-size);
  height: var(--btn-icon-size);
  display: inline-block;
  background-image: url('../images/icon_download_red.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all var(--transition-fast);
}

.btn-icon {
  width: var(--btn-icon-size);
  height: var(--btn-icon-size);
  flex-shrink: 0;
}

.btn-primary-text,
.btn-secondary-text {
  display: inline-block;
  width: 100%;
  font-weight: var(--btn-font-weight);
  font-size: var(--btn-font-size);
  text-align: center;
}

/* Button Hover States */
.btn-primary_m:hover,
.btn-primary_s:hover,
.btn-primary_m:focus,
.btn-primary_s:focus {
  background-color: var(--white);
  box-shadow: inset 0 0 0 3px var(--primary);
  color: var(--text-default-brand);
}

.btn-primary_m:hover .btn-primary-icon,
.btn-primary_m:focus .btn-primary-icon,
.btn-primary_s:hover .btn-primary-icon,
.btn-primary_s:focus .btn-primary-icon  {
  background-image: url('../images/icon_trial_red.svg');
}

.btn-secondary_m:hover,
.btn-secondary_s:hover,
.btn-secondary_m:focus,
.btn-secondary_s:focus {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.btn-secondary_m:hover .btn-secondary-icon,
.btn-secondary_m:focus .btn-secondary-icon,
.btn-secondary_s:hover .btn-secondary-icon,
.btn-secondary_s:focus .btn-secondary-icon  {
  background-image: url('../images/icon_download_wh.svg');
}

.btn-download:hover,
.btn-download:focus {
  background: var(--red-medium);
  color: var(--white);
}

.btn-trial:hover,
.btn-trial:focus {
  background: var(--white);
  box-shadow: inset 0 0 0 2px var(--primary);
  color: var(--text-default-brand);
}

/* Media Queries for Button Components */
@media (min-width: 1200px) {
  .btn-secondary_m {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

.cta-area .btn-secondary_m {
  display: flex;
}

/* =======================================================
   Section Titles
   ======================================================= */
.section__title {
  font-size: var(--text-xxl);
  font-weight: 600;
  color: var(--black);
  text-align: center;
  margin-bottom: var(--space-md);
}

.title--red {
  color: var(--text-default-brand);
}

.text--red {
  color: var(--text-default-brand);
}

/* Media Queries for Section Titles */
@media (min-width: 1200px) {
  .section__title {
    font-size: var(--text-xxxl);
    margin-bottom: var(--space-lg);
  }
}

/* =======================================================
   Header Component
   ======================================================= */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: var(--white);
  z-index: var(--z-header);
  border-bottom: 1px solid var(--neutral-dark);
}

.header__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--header-padding-mobile);
  margin: 0 auto;
}

.header__logo {
  height: 64px;
  width: auto;
}

.header__logo:hover {
  opacity: 0.6;
}

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

.header__nav-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
}

.header__nav--pc ul {
  display: flex;
  gap: var(--header-nav-gap);
}

.header__nav--pc a {
  font-weight: 600;
  font-size: var(--text-sm);
  transition: opacity var(--transition-fast);
}

.header__nav--pc a:hover,
.header__nav--pc a:focus {
  color: var(--text-default-brand);
  transition: var(--transition-fast);
}

.header__cta-buttons {
  display: none;
}

/* Media Queries for Header Component */
@media (min-width: 1200px) {
  
  .header__wrap {
    padding: var(--header-padding-desktop);
    max-width: 1366px;
  }
  
  .header__logo {
    height: 80px;
  }
  
  .header__cta-buttons {
    display: flex;
    gap: var(--space-xs);
  }
}

/* =======================================================
   Sticky CTA Section
   ======================================================= */
.sticky-cta-section {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--neutral-dark);
  z-index: var(--z-sticky-cta);
  transform: translateY(100%);
  transition: transform var(--transition-fast);
  display: block;
}

.sticky-cta-section.show {
  transform: translateY(0%);
}

.sticky-cta-section__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-xxxxs);
  padding: var(--sticky-cta-padding);
  width: 100%;
  max-width: var(--sticky-cta-max-width);
  margin: 0 auto;
}

.sticky-cta-section__trial-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-xxxxs);
  padding: var(--space-xxs) var(--space-xs);
  background: var(--red-pale);
  border: var(--btn-border-width) solid var(--red-medium);
  border-radius: var(--radius-md);
  color: var(--red-medium);
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: var(--btn-font-weight);
  flex: 1;
  transition: all var(--transition-fast);
}

.sticky-cta-section__trial-button:hover {
  background: var(--red-medium);
  color: var(--white);
}

.sticky-cta-section__trial-icon {
  width: var(--space-xs);
  height: var(--space-xs);
  flex-shrink: 0;
}

.sticky-cta-section__badge-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xxxxs);
  width: 165px;
  flex-shrink: 0;
}

.sticky-cta-section__free-badge {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--black);
  font-size: var(--text-sm);
  font-weight: var(--btn-font-weight);
  line-height: 1.8;
  position: relative;
  width: 100%;
}

.sticky-cta-section__free-badge::before,
.sticky-cta-section__free-badge::after {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--black);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.sticky-cta-section__free-badge::before {
  left: var(--space-xxxs);
}

.sticky-cta-section__free-badge::after {
  right: var(--space-xxxs);
}

.sticky-cta-section__download-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-xxxxs);
  padding: var(--space-xs);
  background: var(--primary);
  border: none;
  border-radius: var(--radius-md);
  color: var(--white);
  text-decoration: none;
  font-size: var(--text-md);
  font-weight: var(--btn-font-weight);
  width: 100%;
  transition: all var(--transition-fast);
}

.sticky-cta-section__download-button:hover {
  background: #d91d3a;
}

.sticky-cta-section__download-icon {
  width: var(--space-xs);
  height: var(--space-xs);
  flex-shrink: 0;
}

/* Media Queries for Sticky CTA Section */
@media (min-width: 768px) {
  .sticky-cta-section {
    display: none;
  }
}

@media (max-width: 480px) {
  .sticky-cta-section__inner {
    padding: 6px var(--space-xxs) var(--space-xxs);
  }
  
  .sticky-cta-section__trial-button {
    font-size: 13px;
    padding: 10px var(--space-xxs);
  }
  
  .sticky-cta-section__download-button {
    font-size: 15px;
    padding: var(--text-sm);
  }
  
  .sticky-cta-section__badge-area {
    width: 140px;
  }
  
  .sticky-cta-section__free-badge {
    font-size: 13px;
  }
}

@media (max-width: 360px) {
  .sticky-cta-section__trial-button {
    font-size: var(--text-xxs);
    padding: var(--space-xxxs) 10px;
  }
  
  .sticky-cta-section__download-button {
    font-size: var(--text-sm);
    padding: var(--space-xxs);
  }
  
  .sticky-cta-section__badge-area {
    width: 120px;
  }
  
  .sticky-cta-section__free-badge {
    font-size: var(--text-xxs);
  }
  
  .sticky-cta-section__trial-icon,
  .sticky-cta-section__download-icon {
    width: var(--text-sm);
    height: var(--text-sm);
  }
}

/* =======================================================
   KV Section
   ======================================================= */
.kv {
  position: relative;
  background: #FAFAFA;
  overflow: hidden;
  padding-top: var(--height-mobile);
  display: flex;
  flex-direction: column;
}

.kv__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.kv__bg img {
  position: absolute;
  top: 0;
  right: 0;
  width: auto;
  height: 100%;
  object-fit: cover;
  object-position: right top;
}

.kv__container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  padding: var(--space-xl) var(--space-md) var(--space-xxxxxxl)  ;
}



.kv__content {
  margin: 0 auto var(--space-md) auto;
}

.kv__title {
  display: block;
}

.kv__maintitle {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: var(--space-xxxxs);
}

.kv__subtitle {
  margin-bottom: var(--space-xxs);
  display: flex;
  flex-direction: column;
  gap: var(--space-xxxxs);
}

.kv__subtitle-text {
  font-size: var(--text-xl);
  color: var(--black);
  font-weight: 600;
}

.kv__subtitle-highlight-text {
  font-size: var(--text-xxl);
}

.kv__subtitle-highlight-text-red {
  font-size: var(--text-xxl);
  color: var(--text-default-brand);
}

.kv__mockup {
  margin-bottom: var(--space-xs);
}

.kv__mockup img {
  width: 100%;
  width: var(--kv-mockup-max-width-mobile);
  height: auto;
}

.cta-area__actions {
  position: absolute;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column-reverse;
  gap: var(--space-xs);
}

.cta-area__container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-area__microcopy {
  display: flex;
  align-items: baseline;
}

.cta-area__microcopy img {
  width: 16px;
  height: auto;
}

.cta-area__microcopy-text {
  font-weight: 600;
  font-size: var(--text-md);
}

.cta-area__microcopy-number {
  font-weight: 600;
  font-size: var(--text-xxl);
  color: var(--text-default-brand);
}

/* Media Queries for KV Section */
@media (min-width: 1200px) {
  .kv {
    padding-top: var(--height-desktop);
    flex-direction: row;
  }
  

  .kv__container {
  margin: 0 auto;
  padding: 0 var(--space-md);
  padding-top: var(--space-xxxxl);
    padding-bottom: var(--space-xxxl);
}
  
  .kv__content {
    display: flex;
    align-items: center;
    margin: 0 auto;
  }

  .kv__title {
  margin-right: var(--space-xxl);
  }

  .kv__maintitle {
  font-size: var(--text-xxxxxl);
  margin-bottom: var(--space-xxs);
  text-wrap: nowrap;
  }
  
  .kv__subtitle {
  margin-bottom: var(--space-lg);
  }

  
  .kv__mockup {
    margin-bottom: 0;
    width: var(--kv-mockup-max-width-desktop);
    overflow: visible;
  }
  
  .kv__mockup img {
    width: 100%;
    transform: translateX(-16px);
  }
  
  .cta-area__actions {
    position: relative;
    bottom: 0;
    left: 50%;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-end;
    gap: var(--space-xs);
  }
}

@media (min-width: 1200px) and (max-width: 1365px) {
  

  
  .kv__subtitle-highlight-text,
  .kv__subtitle-highlight-text-red {
    font-size: var(--text-xxl);
  }
}

/* =======================================================
   Logo Section
   ======================================================= */
.logo {
  background: var(--white);
  padding: var(--space-md) 0;
}

.logo__content {
  text-align: center;
}

.logo__stats {
  margin-bottom: var(--space-sm);
}

.logo__stats-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-xxxxs);
}

.logo__stats-item img {
  width: 24px;
  height: 24px;
}

.logo__stats-text {
  display: flex;
  align-items: baseline;
  gap: var(--space-xxxxs);
  font-weight: 600;
}

.logo__stats-label {
  font-size: var(--text-sm);
  color: var(--black);
}

.logo__stats-number {
  font-size: var(--text-xxl);
  font-weight: 600;
  color: var(--text-default-brand);
}

.logo__stats-unit {
  font-size: var(--text-sm);
  color: var(--black);
}

.logo__stats-highlight {
  font-weight: 600;
  background: var(--red-pale);
  padding: var(--space-xxxxs);
  border-radius: var(--radius-xs);
  margin: 0 auto;
  width: 210px;
}

.logo__stats-highlight-text {
  font-size: var(--text-sm);
  color: var(--black);
  margin-bottom: -4px;
  display: block;
}

.logo__stats-highlight-main {
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.logo__stats-highlight-number {
  font-size: var(--text-xxl);
  color: var(--text-default-brand);
}

.logo__stats-highlight-percent {
  font-size: var(--text-sm);
  color: var(--text-default-brand);
}

.logo__stats-highlight-desc {
  font-size: var(--text-sm);
  color: var(--black);
}

.logo__clients {
  overflow: hidden;
  width: 100%;
}

.logo__clients-scroll {
  display: flex;
  animation: scrollLeft var(--animation-duration) linear infinite;
  width: fit-content;
}

/* 無限ループのためのキーフレーム調整 */
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    /* -50%にして、複製されたコンテンツ分のスクロールを実現 */
    transform: translateX(-50%);
  }
}

.logo__clients-list {
  display: flex;
  align-items: center;
  gap: var(--logo-clients-gap);
  min-width: 100%;
  flex-shrink: 0;
}

.logo__clients-list img {
  height: var(--logo-clients-height);
  width: auto;
  transition: all var(--transition-fast);
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Media Queries for Logo Section */
@media (min-width: 1200px) {
  .logo {
    padding: var(--space-lg) 0;
  }
  
  .logo__stats {
    margin-bottom: var(--space-md);
  }
  
  .logo__stats-item img {
    width: 40px;
    height: 24px;
  }
  
  .logo__stats-label {
    font-size: var(--text-xl);
  }
  
  .logo__stats-number {
    font-size: var(--text-xxxxl);
    font-weight: 600;
  }
  
  .logo__stats-unit {
    font-size: var(--text-xl);
    color: var(--black);
  }
  
  .logo__stats-highlight {
    display: flex;
    align-items: baseline;
    background: var(--red-pale);
    padding: var(--space-xxxxs);
    border-radius: var(--radius-xs);
    margin: 0 auto;
    width: 515px;
  }
  
  .logo__stats-highlight-text {
    font-size: var(--text-xl);
  }
  
  .logo__stats-highlight-number {
    font-size: var(--text-xxl);
  }
  
  .logo__stats-highlight-percent {
    font-size: var(--text-xl);
  }
  
  .logo__stats-highlight-desc {
    font-size: var(--text-xl);
  }
}

/* =======================================================
   Risk Section
   ======================================================= */
.risk {
  background: linear-gradient(180deg, #363636 -9.29%, #656565 100%);
  padding: var(--height-mobile) 0;
  position: relative;
}

.risk .section__title {
  color: var(--white);
}

.risk__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xs);
  width: 100%;
  margin: 0 auto;
}

.risk__card {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 2px solid var(--neutral-gentle);
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform var(--transition-fast);
  width: 304px;
  margin: 0 auto;
}

.risk__card-content {
  padding: var(--space-xxs);
  background: var(--neutral-regular);
}

.risk__card-text {
  font-size: var(--text-md);
  color: var(--white);
  text-align: center;
}

.risk__card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

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

.risk__arrow {
  text-align: center;
  position: absolute;
  bottom: -3%;
  left: 50%;
  transform: translateX(-50%);
}

.risk__arrow img {
  width: 48px;
  height: auto;
}

/* Media Queries for Risk Section */
@media (min-width: 1200px) {
  .risk {
    padding: var(--height-desktop) 0;
  }
  .risk__arrow {
  bottom: -4%;
}
}

@media (min-width: 1200px) and (max-width: 1365px) {
  .risk__cards {
    grid-template-columns: repeat(2, minmax(304px, max-content));
    gap: 20px;
    justify-content: center;
  }
}

@media (min-width: 1366px) {
  .risk__cards {
    grid-template-columns: repeat(3, minmax(304px, max-content));
    gap: 20px;
    justify-content: center;
  }
}

/* =======================================================
   Solution Section
   ======================================================= */
.solution {
  background: var(--neutral-light);
  padding: var(--height-mobile) 0;
}

.solution__brand-name{
  font-size: var(--text-xxxl);
  font-weight: 600;
  color: var(--text-default-brand);
}

.solution__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
  max-width: 100%;
}

.solution-card {
  background: var(--white);
  border: 2px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  width: 300px;
  height: 460px;
  margin: 0 auto;
  overflow: hidden;
}

.solution-card__content {
  padding: var(--space-lg) var(--space-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.solution-card__header {
  padding-bottom: var(--space-xxxs);
  border-bottom: 2px solid var(--neutral-light);
  height: 102px;
    display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.solution-card__title-wrapper {
  display: flex;
  align-items: center;
  gap: var(--space-xxxxs);
}

.solution-card__icon {
  width: var(--space-md);
  height: var(--space-md);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution-card__category {
  font-size: var(--text-xl);
  color: var(--primary);
}

.solution-card__main-title {
  font-size: var(--text-md);
  font-weight: 600;
  color: var(--black);
  margin: 0;
  padding-bottom: var(--space-xxxs);
}

.solution-card__description {
  font-size: var(--text-sm);
  color: var(--neutral-regular);
  padding: var(--space-xs) 0 var(--space-xxxs) 0;
}

.solution-card__image {
  width: 100%;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.solution-card__image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

/* Support Section */
.support {
  position: relative;
  background: var(--red-pale);
  margin-top: var(--space-xxxl);
  border: 2px solid var(--red-light);
  border-radius: 20px;
  padding: var(--space-xs) var(--space-xxs) var(--space-xl);
}

.support__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
}

.support__subtitle {
  position: relative;
  top: -2rem;
  left: calc(50% - 150px);
  display: inline-block;
  width: 300px;
  text-align: center;
  font-size: var(--text-sm);
  color: var(--white);
  margin-bottom: var(--space-xs);
  padding: var(--space-xxs) var(--space-xxxxs);
  background: var(--primary);
  border-radius: var(--radius-full);
}

.support__subtitle::after {
  content: "";
  position: absolute;
  top: 2.5rem;
  left: 50%;
  width: 20px;
  height: 20px;
  background-image: url('../images/support__subtitle_acc.svg');
  transform: translateX(-50%);
}

.support__title {
  font-size: var(--text-xl);
  font-weight: 600;
  text-align: center;
  color: var(--black);
  margin-bottom: var(--space-xs);
  padding: var(--space-xxxxs) var(--space-md);
}

.support__content {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
}

.support__item {
  display: flex;
  flex-direction: column;
  gap: var(--space-xxxs);
}

.support__text {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xxxxs);
  font-size: var(--text-md);
  color: var(--black);
}

.support__check-icon {
  width: var(--space-md);
  height: auto;
  flex-shrink: 0;
  margin-top: var(--space-xxxxs);
}

.support__check-icon img {
  width: 100%;
  height: 100%;
}

.support__image {
  max-width: 310px;
  margin: 0 auto;
}

.support__image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
}

/* Media Queries for Solution Section */
@media (min-width: 1200px) {
  .solution {
    padding: var(--height-desktop) 0;
  }
  
  .support {
    padding: var(--space-xs) var(--space-lg) var(--space-xs);
    max-width: 944px;
    margin: var(--space-xxxxxl) auto 0;
  }
  
  .support__container {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  
  .support__subtitle {
    top: -2rem;
    margin: 0;
    left: 0;
    font-size: var(--text-xl);
    padding: var(--space-xxs) var(--space-md);
    position: relative;
    display: inline;
    min-width: 300px;
    margin-bottom: var(--space-xs);
  }
  .support__subtitle::after {
  top: 3.15rem;
  }
  .support__title {
    font-size: var(--text-xxxl);
    font-weight: 600;
    text-align: left;
    padding: 0;
    margin-bottom: var(--space-lg);
  }
  
  .support__content {
    display: block;
  }
  
  .support__text {
    align-items: center;
    gap: var(--space-xxxs);
    font-size: var(--text-md);
  }
  
  .support__item {
    display: flex;
    flex-direction: column;
    gap: var(--space-xxxs);
  }
}

@media (min-width: 1200px) and (max-width: 1365px) {
  .solution__cards {
    grid-template-columns: repeat(2, minmax(300px, max-content));
    gap: 20px;
    justify-content: center;
  }
}

@media (min-width: 1366px) {
  .solution__cards {
    grid-template-columns: repeat(3, minmax(300px, max-content));
    gap: 20px;
    justify-content: center;
  }
}

/* =======================================================
   Scene Section
   ======================================================= */
.scene {
  padding: var(--height-mobile) 0;
  background-color: var(--white);
}

.scene__container-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}

.scene__missions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  width: 100%;
}

.mission-card {
  background: var(--white);
  width: 337px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mission-card__label {
  background: var(--primary);
  color: var(--white);
  font-size: var(--text-sm);
  font-weight: 600;
  text-align: center;
  padding: var(--space-xxxxs) 48px;
  border-radius: var(--radius-full);
  width: 100%;
  margin-bottom: 0;
}

.mission-card__content {
  padding: var(--space-xs) var(--space-xxs);
  width: 100%;
}

.mission-card__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xxxs);
  padding: var(--space-xxs) 0;
  border-bottom: 1px solid var(--border-light);
}

.mission-card__item:last-child {
  border-bottom: none;
}

.mission-card__icon {
  width: var(--space-xxl);
  height: var(--space-xxl);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mission-card__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-xxxxs);
}

.mission-card__title {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--black);
}

.mission-card__description {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--neutral-soft);
}

/* Table Section */
.scene__table-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.scene__table-header {
  display: flex;
  align-items: center;
  gap: var(--space-xxxs);
  width: 100%;
}

.scene__table-header-icon {
  width: var(--space-xl);
  height: var(--space-xl);
  flex-shrink: 0;
}

.scene__table-title {
  font-size: var(--text-md);
  font-weight: 600;
  line-height: 1.5;
  color: var(--black);
  margin: 0;
  padding: var(--space-xxxxs) 0;
}


.scroll_area {
      background-color: #ffffff;
      padding: 0 0 20px 0;
      overflow-x: scroll;
      -ms-overflow-style: none;
      scrollbar-width: none;
    }
    .scroll_area::-webkit-scrollbar {
      display: none;
    }
    .scroll_content_area {
      display: flex;
      justify-content: center;
      min-width: 680px;
    }
    
    .simplebar-scrollbar::before {
      background: var(--neutral-dark);
      border-radius: var(--radius-full)!important;
      height: 6px !important;
      /* margin-left: 2px;
      margin-top: 3px; */
    }
    .simplebar-scrollbar.simplebar-visible::before {
      opacity: 1;
    }
    .simplebar-track {
      background: var(--neutral-light);
      height: 10px !important;
      border-radius: var(--radius-full)!important;
    }


@media (min-width: 1200px) {
  .mission-card__label {
  width: auto;
}

.scene__table-title {
  font-size: var(--text-xxl);
}

  .scene__missions {
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  }
}

@media (min-width: 768px) and (max-width: 1365px) {
  /* 中間レイアウト */
  .scene__missions {
  display: grid;
  grid-template-columns: repeat(2, minmax(337px, max-content));
  justify-content: center;
}
}

/* =======================================================
   Scene Section 
   ======================================================= */

.scene__table-container {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  position: relative;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.scene__table-container::-webkit-scrollbar {
  display: none;
}

.scene__table-wrapper {
  width: auto;
  min-width: 680px;
  overflow: hidden;
}

.scene__table-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* デスクトップ表示時の調整 */
@media (min-width: 1200px) {
  .scene__table-container {
    overflow-x: visible;
  }

  .scene__table-section {
    /* width: auto; */
  }
  
  .scene__table-image {
    max-width: 944px;
    height: auto;
  }

}


/* =======================================================
   Case Section
   ======================================================= */
.case {
  background: var(--neutral-light);
  padding: var(--height-mobile) 0 68px 0;
}

.case__header {
  text-align: center;
  margin-bottom: var(--space-xxs);
  padding: 0 var(--space-md);
}

.case__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-bottom: var(--space-xxs);
}

.case__tag {
  background: var(--white);
  border: 2px solid var(--neutral-gentle);
  border-radius: var(--radius-full);
  padding: var(--space-xxxxs) var(--space-xxs);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--black);
}


.case__card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  width: 300px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-fast);
}

.case__card-category {
  background: linear-gradient(109deg, var(--red-regular) 25.74%, var(--red-medium) 64.84%);
  color: var(--white);
  padding: var(--space-xxxs) var(--space-xxs);
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.case__card-content {
  padding: var(--space-md) var(--space-xxs);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.case__card-logo {
  padding-bottom: var(--space-xs);
  border-bottom: 2px solid var(--neutral-light);
}

.case__card-logo img {
  height: 54px;
  width: auto;
}

.case__card-logo h3 {
  font-size: var(--text-sm);
  color: var(--black);
  margin: 0 0 var(--space-xxxs) 0;
}

.case__card-body {
  flex: 1;
  padding-top: var(--space-xs);
}

.case__card-catch {
  font-size: var(--text-md);
  font-weight: 600;
  color: var(--text-default-brand);
  margin: 0 0 var(--space-xs) 0;
}

.case__card-effect-label {
  background: var(--primary);
  color: var(--white);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: 2px var(--space-xxxxs);
  border-radius: var(--radius-xs);
  display: inline-block;
  margin-bottom: var(--space-xxxs);
}

.case__card-effect-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.case__card-effect-list li {
  font-size: var(--text-sm);
  color: var(--black);
  position: relative;
  padding-left: var(--space-xxs);
  margin-bottom: var(--space-xxxs);
}

.case__card-effect-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 5px;
  height: 5px;
  background: var(--primary);
  border-radius: 50%;
}

/* Media Queries for Case Section */
@media (min-width: 1200px) {
  .case {
    padding: var(--height-desktop) 0;
  }
  .case__header {
  padding: 0 var(--space-xl);
}
}

/* =======================================================
   CTA Area Section
   ======================================================= */
.cta-area {
  padding: var(--space-lg) 0;
}

.cta-area .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cta-area__content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-area__title {
  font-weight: 600;
  font-size: var(--text-xxl);
  text-align: center;
  color: var(--black);
  margin-bottom: var(--space-xxxxs);
}

.cta-area__character {
  width: 200px;
  height: auto;
  margin-top: var(--space-lg);
}

.cta-area__character img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cta-area .cta-area__actions {
  position: relative;
  margin: 0 auto;
  bottom: 0;
  left: 0;
  transform: translateX(0%);
}

.cta-area .cta-area__microcopy-text {
  font-size: var(--text-xl);
}

.cta-area .cta-area__microcopy-number {
  font-size: var(--text-xxxl);
}

/* Media Queries for CTA Area Section */
@media (min-width: 1200px) {
  .cta-area {
    padding: var(--space-md) var(--space-lg);
  }
  
  .cta-area .container {
    flex-direction: row-reverse;
    gap: var(--space-lg);
  }
  
  .cta-area__content {
    text-align: left;
    align-items: flex-start;
  }
  
  .cta-area__title {
    font-size: var(--text-xxxl);
    text-align: left;
    margin-bottom: var(--space-xxxs);
  }
}

/* =======================================================
   FAQ Section
   ======================================================= */
.faq {
  background-color: var(--neutral-light);
  padding: var(--height-mobile) 0;
}

.faq__card-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xxs);
  width: 100%;
}

.faq__card {
  background: var(--white);
  border-radius: var(--radius-xxl);
  padding: var(--space-sm);
  width: 100%;
}

.faq__qa {
  display: flex;
  flex-direction: column;
  gap: var(--space-xxs);
}

.faq__question {
  display: flex;
  gap: var(--space-xxxs);
}

.faq__q-label {
  font-size: var(--text-xxl);
  font-weight: var(--btn-font-weight);
  line-height: 1;
  color: var(--red-medium);
}

.faq__q-text {
  font-size: var(--text-md);
  font-weight: 600;
  color: var(--black);
}

.faq__answer {
  display: flex;
  flex-direction: column;
  gap: var(--space-xxs);
}

.faq__answer-text {
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: 1.8;
  color: var(--neutral-regular);
}

.faq__answer-note {
  font-size: var(--text-xs);
  font-weight: var(--btn-font-weight);
  color: var(--neutral-soft);
}

.faq__answer-link,
.faq__answer-note-link {
  color: var(--neutral-regular);
  text-decoration: underline;
}

.faq__answer-link {
  font-size: var(--text-sm);
}

.faq__answer-note-link {
  font-size: var(--text-xs);
  color: var(--neutral-soft);
}

.faq__answer-link:hover,
.faq__answer-link:focus,
.faq__answer-note-link:hover,
.faq__answer-note-link:focus {
  opacity: 0.6;
}

/* Media Queries for FAQ Section */
@media (min-width: 1200px) {
  .faq {
  padding: var(--height-desktop) 0;
}
  .faq__card-container {
  max-width: 944px;
  margin: 0 auto;
}
  .faq__card {
    padding: var(--space-lg);
  }
  
  .faq__qa {
    gap: var(--space-sm);
  }
}

/* =======================================================
   Footer Section
   ======================================================= */
.footer {
  background: var(--white);
  border-top: 1px solid var(--neutral-dark);
  width: 100%;
  margin: 0 auto;
}

.footer__container {
  padding: var(--space-lg) 0 var(--space-md) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.footer__main {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.footer__nav {
  margin-top: var(--space-xs);
}

.footer__logo {
  height: 80px;
}

.footer__logo img {
  height: 100%;
  width: auto;
  transition: opacity 0.3s ease;
}

.footer__logo:hover img {
  opacity: 0.6;
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
}

.footer__nav-item {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--black);
  transition: color 0.3s ease;
  padding-bottom: var(--space-md);
}

.footer__nav-link:hover,
.footer__nav-link:focus {
  color: var(--primary);
  transition: var(--transition-fast);
}

.footer__nav-link--active {
  color: var(--primary);
}

.footer__sub-nav-list {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: var(--space-xxs);
}

.footer__sub-nav-item {
  display: flex;
  padding: 0;
  border-right: none;
}

.footer__sub-nav-link {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--neutral-gentle);
  text-align: center;
  transition: color 0.3s ease;
}

.footer__sub-nav-link:hover,
.footer__sub-nav-link:focus {
  color: var(--neutral-soft);
}

.footer__copyright-text {
  font-size: var(--text-xs);
  font-weight: 600;
  width: 100%;
  text-align: center;
  color: var(--neutral-gentle);
}

/* Media Queries for Footer Section */
@media (min-width: 1200px) {
  .footer__container {
    padding: var(--space-lg) 0 var(--space-md) 0;
    gap: var(--space-md);
  }
  
  .footer__main {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  
  .footer__logo-nav {
    flex-direction: row;
    align-items: center;
    gap: var(--space-xxl);
  }
  
  .footer__nav-list {
    flex-direction: row;
    gap: var(--space-xs);
    align-items: center;
  }
  
  .footer__nav-link {
    text-align: center;
  }
  
  .footer__sub-nav-list {
    flex-direction: row;
    justify-content: center;
    gap: 0;
  }
  
  .footer__sub-nav-item {
    padding: 0 var(--space-xxs);
    border-right: none;
  }
  
  .footer__sub-nav-item:not(:last-child) {
    border-right: 1px solid var(--neutral-gentle);
  }
  
  .footer__sub-nav-link {
    text-align: center;
  }
}


/* =======================================================
   Hamburger Menu Component
   ======================================================= */
body.nav-open {
  overflow: hidden;
}

.js-global-nav {
  position: relative;
  z-index: var(--z-global-nav-wrapper);
}

.global__nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--neutral-pale);
  transform: translateX(100%);
  transition: transform var(--transition-normal);
  z-index: var(--z-global-nav);
  display: flex;
  flex-direction: column;
  padding-top: var(--height-mobile);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.global__nav.open,
.js-global-nav.open .global__nav {
  transform: translateX(0);
}

.global__nav .inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0 var(--space-md);
  position: relative;
}

.global__nav .inner ul {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: var(--space-sm) 0 0 0;
}

.global__nav .inner ul li {
  position: relative;
  margin: 0;
  border-bottom: none;
}

.global__nav .inner ul li a {
  display: flex;
  justify-content: left;
  align-items: center;
  color: var(--black);
  font-size: var(--text-md);
  font-weight: var(--btn-font-weight);
  padding: var(--space-xxs) 0;
  transition: all var(--transition-fast);
  transform: translateY(var(--space-xl));
}

.global__nav.open .inner ul li a {
  transform: translateY(0);
}

.global__nav.open .inner ul li:nth-child(1) a {
  transition-delay: 0.1s;
}

.global__nav.open .inner ul li:nth-child(2) a {
  transition-delay: 0.2s;
}

.global__nav.open .inner ul li:nth-child(3) a {
  transition-delay: 0.3s;
}

.global__nav.open .inner ul li:nth-child(4) a {
  transition-delay: 0.4s;
}

.global__nav .inner ul li a:hover,
.global__nav .inner ul li a:focus {
  color: var(--text-default-brand);
}

.global__nav .cta-area {
  transform: translateY(var(--space-xl));
  transition: all var(--transition-fast) 0.5s;
  margin-top: var(--space-lg);
}

.global__nav.open .cta-area {
  transform: translateY(0);
}

.micro-cta {
  position: relative;
  overflow: hidden;
  padding: var(--space-xxs) 0 var(--space-xs) 0;
}

.cta-buttons {
  display: flex;
  align-items: flex-end;
  gap: var(--space-xxs);
  width: 100%; 
}

.cta-buttons .btn-download,
.cta-buttons .trial-area {
  flex: 1 1 50%; 
}

.cta-buttons .trial-area .btn-trial {
  width: 100%;
}

.trial-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xxxxs);
}

.trial-area__microcopy {
  display: flex;
  align-items: center;
  gap: var(--space-xxxxs);
  color: var(--black);
  font-weight: var(--btn-font-weight);
  font-size: var(--text-sm);
  line-height: 1.8;
}

.trial-area__microcopy img {
  width: 12px;
  height: auto;
}

.trial-badge {
  color: var(--black);
  font-weight: var(--btn-font-weight);
  font-size: var(--text-sm);
  line-height: 1.8;
}



.hamburger {
  position: fixed;
  top: var(--hamburger-top);
  right: var(--space-md);
  width: var(--hamburger-size);
  height: var(--hamburger-size);
  cursor: pointer;
  z-index: var(--z-hamburger);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--hamburger-gap);
}

.hamburger span {
  display: block;
  width: 100%;
  height: var(--hamburger-line-height);
  background-color: var(--black);
  border-radius: var(--radius-full);
  transition: all var(--transition-normal);
  transform-origin: center;
}

.js-global-nav.open .hamburger span:nth-child(1) {
  transform: translateY(5px) rotate(30deg);
  background-color: var(--primary);
}

.js-global-nav.open .hamburger span:nth-child(2) {
  transform: translateY(-5px) rotate(-30deg);
  background-color: var(--primary);
}

.global__nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: opacity var(--transition-fast);
  pointer-events: none;
  z-index: -1;
}

.global__nav.open::before {
  opacity: 1;
}

/* Media Queries for Hamburger Menu */
@media (min-width: 1200px) {
  .js-global-nav {
    display: none;
  }
  
  .hamburger {
    display: none;
  }
}

/* =======================================================
   Swiper/Slider Component
   ======================================================= */

.case .container {
  padding: 0;
}

.swiper__container {
  position: relative;
  margin-bottom: var(--space-md);
}

.swiper {
  overflow: hidden;
}

.swiper-wrapper {
    width: 100%;
  display: flex;
  align-items: stretch;
}

.swiper-slide {
  width: auto;
  height: 465px;
  flex-shrink: 0;
}

.swiper-slide .case__card {
  width: 300px;
  max-width: 90vw;
}


.swiper-pagination-bullet {
  width: var(--swiper-bullet-size);
  height: var(--swiper-bullet-size);
  background-color: var(--neutral-dark);
  opacity: 1;
  transition: var(--transition-fast);
}

.swiper-pagination-bullet-active {
  background-color: var(--primary);
}

.swiper-pagination {
  bottom: -3.25rem !important;
}

.swiper-button-prev,
.swiper-button-next {
  top: auto;
  bottom: var(--swiper-pagination-bottom);
  width: var(--swiper-button-size);
  height: var(--swiper-button-size);
  margin-top: 0;
  background: transparent;
  color: var(--neutral-soft);
  transition: opacity var(--transition-fast), color var(--transition-fast);
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  color: var(--primary);
}

.swiper-button-prev {
  left: 16%;
}

.swiper-button-next {
  right: 16%;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: var(--swiper-button-font-size);
}

.swiper-button-disabled {
  opacity: 0.3;
}

/* Media Queries for Swiper */
@media (min-width: 1200px) {
  .swiper-button-prev {
    left: calc(50% - 120px);
  }

  .swiper-button-next {
    right: calc(50% - 120px);
  }
}



/* =======================================================
   Focus Management & Accessibility
   ======================================================= */
.focus-visible {
  outline: var(--btn-border-width) solid var(--primary);
  outline-offset: var(--btn-border-width);
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: var(--btn-border-width) solid var(--primary);
  outline-offset: var(--btn-border-width);
}

.scene__table-container:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* =======================================================
   Anchor Positioning
   ======================================================= */
.anchor-position {
  scroll-margin-top: var(--header-desktop);
}

@media (max-width: 1023px) {
  .anchor-position {
    scroll-margin-top: var(--height-mobile);
  }
}

/* =======================================================
   High Contrast Mode Support
   ======================================================= */
@media (prefers-contrast: high) {
  :root {
    --primary: #D30030;
    --text-subdued: #000000;
    --border-subtle: #000000;
    --neutral-light: #F0F0F0;
  }
}

/* =======================================================
   Reduced Motion Support
   ======================================================= */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
    transition-duration: 0.01ms;
    scroll-behavior: auto;
  }

  .logo__clients-scroll {
    animation: none;
  }

  .global__nav .inner ul li a {
    transition-delay: 0s;
  }
}

/* =======================================================
   Print Styles
   ======================================================= */
@media print { 
  .scene__table-container {
    overflow: visible;
  }
  
  .scene__table-wrapper {
    min-width: unset;
    width: 100%;
  }
}