@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;
  --form-area-width: 342px;
  --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;
  --z-form-area: 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-xl);
  --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-mockup-max-width-mobile: 400px;
  --kv-mockup-max-width-desktop: 600px;

  /* Form Variables */
  --form-bg: var(--neutral-light);
  --form-border: var(--neutral-light);
  --form-border-focus: var(--neutral-gentle);
  --form-border-error: var(--primary);
  --form-text: var(--neutral-gentle);
  --form-button-bg: var(--primary);
  --form-button-bg-hover: var(--red-medium);
  --form-error-bg: var(--primary);
  --form-error-text: var(--white);
  --form-padding: 10px;
  --form-margin: 15px;
  --form-radius: var(--radius-xs);
  --form-button-radius: var(--radius-md);
  --form-button-height: 66px;
  --form-font-weight-normal: 600;

  /* 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;
}


/* =======================================================
   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', 'Roboto', 'Helvetica Neue', 'Arial', 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;
}

.br-desktop {
  display: none;
}

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

  .br-desktop {
    display: inline;
  }
}

/* =======================================================
   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: 768px) {
  #wrapper {
    padding-right: var(--form-area-width);
  }
} 

@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-md);
  }
}

/* =======================================================
   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;
  position: relative;
  z-index: 1;
}

.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: 768px) {
  .header {
    width: calc(100% - 342px); 
  }
}

@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: var(--space-xs);
  }
  
  .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__bg-sp {
  display: block;
}


.kv__bg-pc {
  display: none;
}

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

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

.kv__title {
  display: block;
}
    
.kv__maintitle {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.kv__maintitle span {
  font-size: var(--text-xxxxl);
}

.kv__subtitle {
  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-xl);
}

.kv__mockup {
  margin: 0 auto var(--space-lg) ;
}

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

.kv .cta-area__actions {
  position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
}

.cta-area__actions {
  display: flex;
  flex-direction: column-reverse;
  gap: var(--space-xs);
  z-index: 1;
}

.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: var(--space-xxxxl) 0 var(--space-xxxxl) var(--space-xl);
  flex-direction: row;
  }
  
  .kv__content {
    display: flex;
    align-items: flex-start;
    margin: 0 auto;
  }

  .kv__bg-sp {
  display: none;
  }

  .kv__bg-pc {
  display: block;
  }

  .kv__maintitle {
    margin-bottom: var(--space-md);
    font-size: var(--text-xxxl);
  }

  .kv__maintitle span {
    font-size: var(--text-xxxxl);
  }

  .kv__title {
  margin-right: var(--space-md);
  margin-top: var(--space-md);
  }
  .kv__subtitle {
  margin-bottom: var(--space-xxxxxl);
  }

  .kv__subtitle-text {
  font-size: var(--text-xl);
  }
  
  .kv__mockup {
    margin-bottom: 0;
    width: 600px;
    height: 100%;
    overflow: visible;
  }
  
  .kv__mockup img {
    width: 100%;
    height: 100%;
  }
  
  .kv .cta-area__actions {
    /* position: absolute;
    bottom: 93px; */
    position: relative;
    bottom: 0;
    left: 50%;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-end;
    gap: var(--space-xs);
  }

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

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

}

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

}

@media (min-width: 1366px) {

}

/* =======================================================
   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 {
  position: relative;
  background: var(--neutral-pale);
  padding: var(--space-xxxxl) 0 var(--space-xxxxxl);
}

.risk__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xxxxs);
  margin-bottom: var(--space-xl);
}

.risk__header .section__title {
  margin-bottom: var(--space-xxxs);
}

.risk__title-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-xxxxs);
}

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

.risk__subtitle-underline {
  text-decoration: underline;
  text-decoration-color: var(--red-light);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.risk__subtitle-line {
  display: flex;
  align-items: baseline;
  gap: 2px;
  flex-wrap: wrap;
  justify-content: center;
}

.risk__subtitle-line--second {
  gap: -2px;
}

.risk__subtitle-text {
  font-size: var(--text-md);
  font-weight: 600;
  color: var(--black);
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.risk__subtitle-text--small {
  font-size: var(--text-sm);
}

.risk__card-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  align-items: center;
}

.risk__card {
  width: 100%;
  max-width: 342px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.risk__card-header {
  display: flex;
  justify-content: center;
  align-items: center;
}

.risk__card-tag {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: var(--white);
  border: 2px solid var(--neutral-soft);
  border-radius: var(--radius-full);
  padding: var(--space-xxxxs) var(--space-sm);
  font-size: var(--text-md);
  font-weight: 600;
  color: var(--black);
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.risk__card-image {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
}

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

.risk__card-content {
  background: var(--neutral-regular);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-xxs) var(--space-md);
  display: flex;
  flex-direction: column;
  height: auto;
}

.risk__card-title-wrapper {
  display: flex;
  justify-content: stretch;
  align-items: stretch;
  padding-bottom: var(--space-xs);
  border-bottom: 2px solid var(--neutral-airy);
}

.risk__card-title {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--white);
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.04em;
  margin: 0;
  width: 100%;
}

.risk__card-description {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--neutral-pale);
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: left;
  margin: 0;
  padding-top: var(--space-xs);
}

    .risk__arrow {
  width: 48px;
  height: 60px;
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

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

/* Media Queries for Risk Section */
@media (min-width: 768px) and (max-width: 1279px) {
  .risk__card-tag {
  font-size: var(--text-sm);
  }
  .risk__card-title {
  font-size: var(--text-md);
  }
}

/* Media Queries for Risk Section */
@media (min-width: 1200px) and (max-width: 1365px) {
  .risk__card {
    max-width: 246px;
  }
}

@media (min-width: 1280px) {
      .risk__card-title {
    font-size: var(--text-lg);
  }
}

@media (min-width: 1200px) {
  .risk {
    padding: var(--space-xxxl) 0 var(--space-xxxxxl) 0;
  }

  .risk__header {
    margin-bottom: var(--space-xxl);
  }

  .risk__subtitle {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: var(--space-xxxxs);
  }

  .risk__subtitle-line {
    flex-wrap: nowrap;
  }
  
  .risk__subtitle-text {
    font-size: var(--text-xxl);
  }

  .risk__subtitle-text--small {
  font-size: var(--text-xl);
}
  
  .risk__card-container {
    flex-direction: row;
    justify-content: center;
    align-items: baseline;
    gap: var(--space-sm);
    max-width: 1024px;
    margin: 0 auto;
  }
  
  .risk__card {
    flex: 1;
    max-width: none;
  }
  
  .risk__card-description {
    font-size: var(--text-md);
  }
  .risk__card-content {
    height: 236px;
  }
}

@media (min-width: 1366px) {
  .risk__card-container {
    max-width: 944px;
  }
}

/* Scene Section */
.scene {
  position: relative;
  background: var(--neutral-pale);
  padding: var(--height-mobile) 0 0;
}

.scene__title {
  font-size: var(--text-xxl);
  font-weight: 600;
  text-align: center;
  margin-bottom: var(--space-md);
  color: var(--black);
  line-height: 1.5;
  padding: 0 var(--space-md);
}
.scene__content-wrapper {
  max-width: 100%;
}

/* タブナビゲーション */
.scene__tabs {
  display: flex;
  align-items: end;
  gap: 2px;
  margin-bottom: 0;
  padding: 0 var(--space-xs);
  height: 68px; 
}

.scene__tab {
  flex: 1;
  padding: var(--space-xxs) var(--space-xxxs);
  background: var(--red-bright);
  border: none;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--red-medium);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  height: 58px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
}

.scene__tab-subtext {
  font-size: var(--text-xs);
}

.scene__tab:hover {
  background: #FFB8C0;
}

.scene__tab--active {
  background: var(--white);
  color: var(--red-medium);
  height: 68px;
}

.scene__tab--active:hover {
  background: var(--white);
}

/* タブコンテンツエリア */
.scene__content {
  background: var(--white);
  padding: var(--space-xl) var(--space-md) var(--space-xxxxxl);
  display: none;
}

.scene__content--active {
  display: block;
}

.scene__context {
  background: var(--neutral-pale);
  border-radius: var(--radius-sm);
  padding: var(--space-lg) var(--space-xs);
  margin-bottom: var(--space-xxs);
  text-align: center;
}

.scene__context-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--space-xxxs);
  margin-bottom: var(--space-xxs);
}

.scene__context-icon {
  width: 2rem;
  height: 2rem;
}

.scene__context-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.scene__context-title {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--black);
}

/* 業務フロー */
.scene__workflow {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.scene__workflow-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-direction: column;
}

.scene__workflow-label {
  padding: 0;
  flex-shrink: 0;
  width: 100%;
  text-align: left;
}

.scene__workflow-label-text {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--neutral-regular);
  white-space: nowrap;
}

.scene__tasks {
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  gap: var(--space-xs) 0;
  width: fit-content; 
}

.scene__task {
  padding: var(--space-xxxs);
  background: var(--white);
  border: 2px solid var(--neutral-bright);
  border-radius: var(--radius-sm);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--neutral-regular);
  text-align: center;
  white-space: nowrap;
  line-height: 1.5;
  min-height: 41px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scene__task-sub {
  display: none;
}

.scene__task--highlight {
  background: var(--primary);
  border: none;
  color: var(--white);
  padding: var(--space-xxs) var(--space-xxxs) var(--space-xxxs);
  position: relative;
  min-width: 110px;
}

.scene__task-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--primary);
  border-radius: var(--radius-full);
  padding: 2px var(--space-xxxs);
  font-size: var(--text-xxs);
  font-weight: 600;
  color: var(--red-medium);
  white-space: nowrap;
}

.scene__arrow {
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--space-xxxxs);
  flex-shrink: 0;
}

.scene__arrow svg {
  width: 8px;
  height: auto;
}

/* プロセスステップ */
.scene__processes {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: var(--space-lg);
}

.scene__process {
  width: 342px;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  padding: var(--space-lg) 0;
  border-bottom: 2px solid var(--neutral-dark);
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

.scene__process.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.scene__process:last-child {
  border-bottom: none;
}

.scene__process:first-child {
  padding-top: var(--space-lg);
}

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

.scene__process-header {
  display: flex;
  flex-direction: column;
  gap: var(--space-xxxxs);
}

.scene__process-task {
  display: inline-block;
  padding: var(--space-xxxs);
  background: var(--primary);
  border-radius: var(--radius-sm);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--white);
  width: fit-content;
  line-height: 1.5;
}

.scene__process-title-wrapper {
  display: flex;
  align-items: center;
  gap: var(--space-xxxs);
}

.scene__process-title {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--black);
  line-height: 1.5;
}

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

.scene__process-description {
  font-size: var(--text-md);
  font-weight: 600;
  color: var(--neutral-regular);
  line-height: 1.5;
}

.scene__process-tip {
  display: flex;
  gap: var(--space-xxxxs);
  padding: 5px var(--space-xxs) var(--space-xxxs) var(--space-xxxs);
  background: var(--neutral-pale);
  border-radius: var(--radius-xs);
  align-items: flex-start;
}

.scene__process-tip-icon {
  width: 24px;
  height: 24px;
  margin-bottom: 2px;
}

.scene__process-tip-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scene__process-tip-text {
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: var(--neutral-regular);
  width: fit-content;
  padding-top: 3px;
}

.scene__process-image {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}

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

/* ケーススタディ */
.scene__case-section {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.scene__case-label {
  border-left: 4px solid var(--primary);
  padding: var(--space-xxxxs) 0 var(--space-xxxxs) var(--space-xs);
}

.scene__case-label-text {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--black);
  line-height: 1.5;
}

.scene__case {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  padding: var(--space-md);
  background: var(--white);
  border: 2px solid var(--neutral-dark);
  border-radius: var(--radius-md);
}

.scene__case-logo {
  width: 100%;
  padding-bottom: var(--space-xs);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-xxs);
}

.scene__case-logo-company {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--black);
}

.scene__case-logo-img {
  width: 100%;
  height: 48px;
  display: flex;
  align-items: center;
}

.scene__case-logo-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.scene__case-divider {
  display: none;
}

.scene__case-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.scene__case-title {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--red-medium);
  line-height: 1.5;
}

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

.scene__case-effect-label {
  display: inline-block;
  background: #FFE8E8;
  padding: 2px var(--space-xxxs);
  border-radius: var(--radius-xs);
  font-size: var(--text-sm);
  font-weight: 600;
  color: #D30030;
  width: fit-content;
}

.scene__case-effect-item {
  display: flex;
  gap: var(--space-xxxxs);
}

.scene__case-effect-bullet {
  width: 6px;
  height: 6px;
  background: var(--red-light);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: var(--space-xxxs);
}

.scene__case-effect-text {
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: var(--black);
}

/* レスポンシブ: PC (min-width: 1200px) */
@media (min-width: 1200px) {
  .scene {
    padding:var(--space-xxxxxxl) 0;
  }

  .scene__title {
    font-size: var(--text-xxxl);
    margin-bottom: var(--space-lg);
    padding: 0 var(--space-xl);
  }

  .scene__content-wrapper {
    max-width: 880px;
    margin: 0 auto;
  }

  .scene__tabs {
    padding: 0;
  }

  .scene__tab {
    font-size: var(--text-xl);
    height: 54px;
    padding: var(--space-xxs) var(--space-xs);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
      flex-direction: row;
  }
  .scene__tab-subtext {
    font-size: var(--text-xl);
  }


  .scene__tab--active {
    height: 64px;
  }

  .scene__content {
    padding: var(--space-xxl) var(--space-xxl) var(--space-xxxxl);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }

  .scene__context {
    padding: var(--space-xl) var(--space-md);
    margin-bottom: var(--space-lg);
    max-width: 100%;
  }

  .scene__context-header {
    gap: var(--space-xxxxs);
    margin-bottom: var(--space-md);
    justify-content: center;
  }

  .scene__context-icon {
    width: 3rem;
    height: 3rem;
  }

  .scene__context-title {
    font-size: var(--text-xxl);
    font-weight: 700;
  }

  .scene__workflow {
    gap: var(--space-md);
  }

  .scene__workflow-row {
    flex-direction: row;
    justify-content: center;
  }

  .scene__workflow-label {
    padding: var(--space-xxxs) var(--space-xxxxs) var(--space-xxxs) 0;
    width: fit-content;
  }
  .scene__workflow-tasks {
    display: flex;
    flex-direction: row;
    width: fit-content;
  }

  .scene__tasks {
    display: inline-flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--space-md) 0;
    justify-content: center;
    width: fit-content;
  }

  .scene__workflow-label-text {
  font-size: var(--text-sm);
  }

  .scene__task {
    padding: var(--space-xxs);
    font-size: var(--text-sm);
  }
  

  .scene__task-sub {
    display: flex;
  }

  .scene__task-badge {
    font-size: var(--text-xs);
  }

  .scene__task--highlight {
    padding: var(--space-xxs) var(--space-xxxs) 6px var(--space-xxxs);
  }

  .scene__process {
    width: auto;
    flex-direction: row;
    gap: var(--space-xl);
    padding: var(--space-lg) 0;
  }

  .scene__process:first-child {
    padding-top: var(--space-sm);
  }

  .scene__process-content {
    gap: var(--space-xxs);
  }

  .scene__process-title {
    font-size: var(--text-xl);
  }

  .scene__process-description {
    font-size: var(--text-md);
  }
  

  .scene__process-task {
    font-size: var(--text-sm);
  }

  .scene__process-tip-text {
    font-size: var(--text-sm);
  }

  .scene__process-image {
    width: 320px;
    height: 200px;
    aspect-ratio: unset;
  }

  .scene__case-section {
    gap: var(--space-sm);
  }

  .scene__case-label {
    padding: var(--space-xxxxs) 0 var(--space-xxxxs) var(--space-md);
    border-left-width: 6px;
  }

  .scene__case-label-text {
    font-size: var(--text-xl);
  }

  .scene__case {
    flex-direction: row;
    padding: var(--space-md);
    gap: var(--space-md);
  }

  .scene__case-logo {
    width: 220px;
    gap: var(--space-lg);
    justify-content: center;
  }

  .scene__case-logo-img {
    height: 54px;
    justify-content: center;
  }

  .scene__case-logo-company {
    text-align: center;
  }

  .scene__case-divider {
    display: block;
    width: 2px;
    background: var(--neutral-dark);
    flex-shrink: 0;
  }

  .scene__case-content {
    gap: var(--space-xs);
  }

  .scene__case-title {
    font-size: var(--text-xl);
  }
}

/* レスポンシブ: タブレット (768px ~ 1199px) */
@media (min-width: 768px) and (max-width: 1199px) {
  .scene__case-section {
    max-width: 640px;
    margin: 0 auto;
  }

  .scene__context-section {
    max-width: 640px;
    margin: 0 auto;
  }

  .scene__context {
    padding: var(--space-xxl) var(--space-md);
  }
}



/* =======================================================
    Feature Section
    ======================================================= */
.feature {
  background: linear-gradient(180deg, #FFF5F6 0%, #FFEBED 100%);
  padding: var(--space-xxxxl) 0px var(--space-xxl);
}

.feature__card-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.feature__card {
  background: var(--white);
  border-radius: 8px;
  width: 342px;
  overflow: hidden;
}

.feature__card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 20px;
  gap: 32px;
}

.feature__card-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  gap: 24px;
}

.feature__card-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: center;
  color: var(--black);
  margin: 0;
  width: 100%;
}

.feature__card-image {
  width: 302px;
  height: auto;
  flex-shrink: 0;
}

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

.feature__card-content {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  gap: 8px;
}

.feature__card-item {
  display: flex;
  gap: var(--space-xxxxs);
}

.feature__card-bullet {
  width: 5px;
  height: 5px;
  background: var(--red-light);
  border-radius: var(--radius-full);
  flex-shrink: 0;
  margin-top: 9px;
}

.feature__card-text {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: var(--text-dark);
  margin: 0;
  flex: 1;
}

/* Media Queries for Feature Section */
@media (min-width: 1200px) {
  .container {
    padding: 0 40px;
    max-width: 1024px;
  }

  .feature {
    padding: var(--space-xxxxl) 0;
  }

  .feature__card-container {
    max-width: 1024px;
    margin: 0 auto;
  }
  .feature__card-inner {
    padding: 24px 20px 32px;
  }
}

/* Accessibility */
.feature__card:focus-within {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* =======================================================
    CTA Area Section
    ======================================================= */
.cta-area {
  padding: 48px 24px;
  position: relative;
  overflow: hidden;
  background-color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

/* Show Animation Images on PC */
.cta-area__animation-image {
  position: absolute;
  display: block;
  opacity: 0;
  transition: opacity 0.6s ease-out, transform 1.2s ease-out;
}

.cta-area__animation-image--left {
  left: -140px;
  top: -140px;
  width: auto;
  height: 320px;
}

.cta-area__animation-image--right {
  right: 700px;
  top: 120px;
  width: auto;
  height: 320px;
}

.cta-area__animation-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  display: block;
  /* overflow: hidden; */
}

.cta-area__animation-group {
  position: absolute;
  z-index: -1;
}

/* SP: Left Animation Group */
.cta-area__animation-group--left {
  left: 0px;
  top: 0;
  width: 100%;
  height: 320px;
}

/* SP: Right Animation Group */
.cta-area__animation-group--right {
  right: 0px;
  bottom: 0;
        width: 100%;
  height: 320px;
}

/* Individual Animation Images - Common */
.cta-area__animation-image {
  position: absolute;
  width: auto;
  height: 100px;
  opacity: 0;
  transform: scale(0);
  pointer-events: none;
  transition: opacity 0.2s ease-out, transform 0.2s ease-out;
}

/* SP: Left Group Image Positions (Figmaデザイン基準) */
.cta-area__animation-group--left .cta-area__animation-image:nth-child(1) {
  top: -120px;
  left: 20px;
  transform: scale(0);
}

.cta-area__animation-group--left .cta-area__animation-image:nth-child(2) {
  top: -85px;
  left: 94px;
  
}

.cta-area__animation-group--left .cta-area__animation-image:nth-child(3) {
  top: -47px;
  left: 135px;
  
}

.cta-area__animation-group--left .cta-area__animation-image:nth-child(4) {
  top: -10px;
  left: -7px;
  opacity: 0.75;
  
}

.cta-area__animation-group--left .cta-area__animation-image:nth-child(5) {
  top: 27px;
  left: -120px;
  
}

.cta-area__animation-group--left .cta-area__animation-image:nth-child(6) {
  top: 57px;
  left: -94px;
  opacity: 0.75
  
}

.cta-area__animation-group--left .cta-area__animation-image:nth-child(7) {
  top: 101px;
  left: -18px;
  opacity: 0.75;
  
}

/* SP: Right Group Image Positions (Figmaデザイン基準) */
.cta-area__animation-group--right .cta-area__animation-image:nth-child(1) {
  bottom: -110px;
  right: 55px;
  opacity: 0.75;
}

.cta-area__animation-group--right .cta-area__animation-image:nth-child(2) {
  bottom: -68px;
  right: 130px;
  opacity: 0.75;

}

.cta-area__animation-group--right .cta-area__animation-image:nth-child(3) {
  bottom: -72px;
  right: -38px;
}

.cta-area__animation-group--right .cta-area__animation-image:nth-child(4) {
  bottom: -1px;
  right: 43px;
  opacity: 0.75;
}

.cta-area__animation-group--right .cta-area__animation-image:nth-child(5) {
  bottom: 36px;
  right: -98px;
}

.cta-area__animation-group--right .cta-area__animation-image:nth-child(6) {
  bottom: 75px;
  right: -58px;

}

.cta-area__animation-group--right .cta-area__animation-image:nth-child(7) {
  bottom: 110px;
  right: 16px;
  opacity: 0.75;
}

/* Animation Delays for Sequential Effect */
.cta-area__animation-image:nth-child(1) {
  transition-delay: 0s;
}

.cta-area__animation-image:nth-child(2) {
  transition-delay: 0.1s;
}

.cta-area__animation-image:nth-child(3) {
  transition-delay: 0.2s;
}

.cta-area__animation-image:nth-child(4) {
  transition-delay: 0.3s;
}

.cta-area__animation-image:nth-child(5) {
  transition-delay: 0.4s;
}

.cta-area__animation-image:nth-child(6) {
  transition-delay: 0.5s;
}

.cta-area__animation-image:nth-child(7) {
  transition-delay: 0.6s;
}

/* Text Content */
.cta-area__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
  z-index: 1;
}

.cta-area__title {
  font-weight: 600;
  font-size: 24px;
  line-height: 1.5em;
  letter-spacing: 0.04em;
  color: var(--black);
}

.cta-area__subtitle {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5em;
  letter-spacing: 0.04em;
  color: var(--black);
}

.cta-area__animation-image.is-visible {
  opacity: 1;
  transform: translateX(0);
}  

/* PC Layout (1200px+) */
@media (min-width: 1200px) {
  .cta-area {
    padding: 56px 40px;
    gap: 48px;
  }

  .cta-area__animation-image--left {
    left: -120px;
    top: -120px;
    transform: translateX(-50px);
  }

  .cta-area__animation-image--right {
    top: 120px;
    left: 700px;
    transform: translateX(50px);
  }

  .cta-area__content {
    gap: 8px;
  }

  .cta-area__title {
    font-size: 32px;
  }

  .cta-area__subtitle {
    font-size: 20px;
  }

  .cta-area .cta-area__actions {
    position: relative;
    flex-direction: row;
    align-items: flex-end;
    gap: var(--space-xs);
    bottom: 0;
  }
}



/* =======================================================
   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;
}

body.nav-open .header__logo {
  z-index: calc(var(--z-global-nav) + 2);
}

.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 var(--space-sm) 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-md) 0 var(--space-xl) 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;
  }
}

@media (min-width: 768px) and (max-width: 1365px) {
  .hamburger {
  right: calc(var(--space-md) + 342px);
  }
  .js-global-nav.open .hamburger {
  right: var(--space-md);
  }
}

/* =======================================================
   Form Area Component
   ======================================================= */
.form-area {
  position: fixed;
  top: 0;
  right: 0;
  z-index: var(--z-form-area);
  width: var(--form-area-width);
  height: 100%;
  background: var(--white);
  /*シャドウいらない*/
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-area .form-wrapper {
  height: 100%;
  overflow-y: auto;
}

.form-area .form-container {
  padding:  var(--space-xl) var(--space-xxs) var(--space-xxxxxl) var(--space-xs);
  background: var(--white);
}

.form-area .form-container h2 {
  margin: 0 0 var(--space-sm) 0;
  font-size: var(--text-xl);
  font-weight: 600;
  text-align: center;
}

.form-area .form-container h2 span {
  color: var(--text-default-brand);
}

.form-area .form-container .form-inner {
  font-family: 'Noto Sans JP', sans-serif;
}

@media (max-width: 767px) {
  .form-area {
    display: none;
  }
}

/* =======================================================
   Marketo Form Styles
   ======================================================= */
.form-container .form-inner .mktoForm {
  width: 100% !important;
  height: 100% !important;
  overflow-x: hidden !important;
}


/* フォーム要素の基本スタイル */
.form-container .form-inner .mktoForm input[type="text"],
.form-container .form-inner .mktoForm input[type="url"],
.form-container .form-inner .mktoForm input[type="email"],
.form-container .form-inner .mktoForm input[type="tel"],
.form-container .form-inner .mktoForm input[type="number"],
.form-container .form-inner .mktoForm input[type="date"],
.form-container .form-inner .mktoForm select.mktoField,
.form-container .form-inner .mktoForm textarea.mktoField {
  width: 100% !important;
  padding: 10px 16px;
  margin-bottom: var(--form-margin);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: var(--text-sm);
  line-height: 1;
  background: var(--form-bg);
  border: 1px solid var(--form-border);
  border-radius: var(--form-radius);
  transition: border-color var(--transition-fast);
}

/* フォーカス状態 */
.form-container .form-inner .mktoForm input[type="text"]:focus,
.form-container .form-inner .mktoForm input[type="url"]:focus,
.form-container .form-inner .mktoForm input[type="email"]:focus,
.form-container .form-inner .mktoForm input[type="tel"]:focus,
.form-container .form-inner .mktoForm input[type="number"]:focus,
.form-container .form-inner .mktoForm input[type="date"]:focus,
.form-container .form-inner .mktoForm select.mktoField:focus,
.form-container .form-inner .mktoForm textarea.mktoField:focus {
  border-color: var(--form-border-focus);
  outline: none;
}

/* mktoErrorが出る場合 */
.form-container .form-inner .mktoForm .mktoFieldWrap:has(.mktoError) input[type="text"],
.form-container .form-inner .mktoForm .mktoFieldWrap:has(.mktoError) input[type="url"],
.form-container .form-inner .mktoForm .mktoFieldWrap:has(.mktoError) input[type="email"],
.form-container .form-inner .mktoForm .mktoFieldWrap:has(.mktoError) input[type="tel"],
.form-container .form-inner .mktoForm .mktoFieldWrap:has(.mktoError) input[type="number"],
.form-container .form-inner .mktoForm .mktoFieldWrap:has(.mktoError) input[type="date"],
.form-container .form-inner .mktoForm .mktoFieldWrap:has(.mktoError) select.mktoField,
.form-container .form-inner .mktoForm .mktoFieldWrap:has(.mktoError) textarea.mktoField {
  border-color: var(--form-border-error) !important;
}

/* ラベル */
.form-container .form-inner .mktoForm .mktoRequiredField label.mktoLabel,
.form-container .form-inner .mktoForm label.mktoLabel {
  width: auto !important;
  font-weight: var(--form-font-weight-normal);
}

.form-container .form-inner .mktoForm.mktoLayoutAbove .mktoLabel {
  position: relative;
  width: 100%;
  padding-top: 0;
  padding-bottom: var(--space-xxxxs);
  font-size: var(--text-sm);
  line-height: 1.4;
}

/* オフセット */
.form-container .form-inner .mktoForm .mktoOffset {
  width: 0 !important;
}

/* 注釈 */
.form-container .form-inner .mktoForm .mktoHtmlText {
  width: 100% !important;
  font-size: var(--text-xs);
  color: var(--text-subdued);
  margin-top: -0.75rem;
  margin-bottom: var(--form-margin);
}

.form-container .form-inner .mktoForm .mktoHtmlText a {
  text-decoration: underline !important;
}

.form-container .form-inner .mktoForm .mktoHtmlText a:hover {
  opacity: 0.6;
}

/* フォーム行とカラム */
.form-container .form-inner .mktoForm .mktoFormRow {
  display: flex;
  margin: 0;
  gap: var(--space-xxxs);
  align-items: flex-end;
}

.form-container .form-inner .mktoForm .mktoFormCol {
  float: none;
  width: 100%;
}

.form-container .form-inner .mktoForm .mktoFieldWrap {
  position: relative;
  float: none;
}

/* ボタン行 */
.form-area .form-container .form-inner .mktoButtonRow {
  width: 100%;
  margin-top: 0;
  z-index: 0;
  bottom: 0;
  left: 0;
}

.form-area .form-container .form-inner .mktoButtonRow .mktoButtonWrap {
  display: block;
  padding-bottom: var(--space-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, rgba(255, 255, 255, 0.70) 25%, #FFF 100%);
  margin: 0;
  height: 100px;
  width: 100%;
  position: fixed;
  bottom: 0;
}

/* ボタンスタイル */
.form-container .form-inner .mktoForm .mktoButtonWrap.mktoMinimal .mktoButton,
.form-container .form-inner .mktoForm .mktoButton {
  position: fixed;
  right: 1.5rem;
  bottom: 1rem;
  margin: 0 auto;
  padding: var(--space-xs) var(--space-sm);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--white);
  background: var(--form-button-bg);
  border: none;
  border-radius: var(--form-button-radius);
  cursor: pointer;
  transition: var(--transition-fast);
}

.form-container .form-inner .mktoForm .mktoButtonWrap.mktoMinimal .mktoButton:hover,
.form-container .form-inner .mktoForm .mktoButton:hover {
  box-shadow: inset 0 0 0 3px var(--primary);
  color: var(--text-default-brand);
  background-color: #FFE8E8;
}

.form-container .form-inner .mktoForm .mktoButtonWrap.mktoMinimal .mktoButton:disabled,
.form-container .form-inner .mktoForm .mktoButton:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.form-area .form-container .form-inner .mktoButtonRow .mktoNative {
  margin-left: 0 !important;
}

/* 必須フィールドのアスタリスク */
.form-container .form-inner .mktoForm.mktoLayoutAbove .mktoRequiredField .mktoAsterix {
  padding: 0;
}

.form-container .form-inner .mktoForm .mktoRequiredField .mktoAsterix {
  width: 0;
}

.form-container .form-inner .mktoForm .mktoAsterix {
  color: transparent;
}

.form-container .form-inner .mktoForm .mktoAsterix::after {
  content: "";
  position: absolute;
  top: 2.5px;
  right: -10px;
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--primary);
  border-radius: 50%;
}

.form-container .form-inner .mktoForm .mktoFormCol:nth-child(2) .mktoAsterix::after {
  display: none;
}


/* エラーメッセージ */
.form-container .form-inner .mktoForm .mktoError {
  position: absolute;
  bottom: -11px !important;
  left: 0;
}

.form-container .form-inner .mktoFormRow:nth-child(2) .mktoError {
  bottom: -28px !important;
}


.form-container .form-inner .mktoForm .mktoError .mktoErrorMsg {
  display: inline-block;
  left: 1rem;
  max-width: 100%;
  margin-top: 7px;
  padding: var(--space-xxxxs) var(--space-xxxs);
  font-size: 14px;
  color: var(--form-error-text);
  background-color: var(--form-error-bg);
  background-image: none;
  border: 1px solid var(--form-error-bg);
  border-radius: 4px;
  box-shadow: none;
  text-shadow: none;
}

.form-container .form-inner .mktoForm .mktoError .mktoErrorArrow {
  display: inline-block;
  width: 1rem;
  height: var(--space-xs);
  margin-top: 5px;
  background-color: var(--form-error-bg);
  border: 1px solid var(--form-error-bg);
  border-right: none;
  border-bottom: none;
  transform: rotate(45deg);
}

/* 非表示フィールド */
.form-container .form-inner .mktoForm .mktoFormRow[style*="display: none"],
.form-container .form-inner .mktoForm .mktoFormRow[style*="display:none"] {
  display: none !important;
}

/* 選択リストのスタイリング */
.form-container .form-inner .mktoForm select.mktoField {
  appearance: none;
  background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill="%23666" d="M4 6l4 4 4-4H4z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
}

/* テキストエリアの調整 */
.form-container .form-inner .mktoForm textarea.mktoField {
  min-height: 80px;
  resize: vertical;
}

/* =======================================================
   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%;
  }
}