/* FAQ Section Customization */
.faq-section {
  background: #f5f7f9;
  padding: var(--spacing-5xl) 0;
}

@media screen and (max-width:768px) {
  .faq-section {
    padding: var(--spacing-xxl) 0;
  }
}

@media screen and (max-width: var(--device-sm)) {
  .faq-section {
    padding: var(--spacing-xl) 0;
  }
}

:root {
  --font-din-pro: 'D-DIN-PRO', 'DIN', 'Arial', 'sans-serif';
  /* _media queries */
  --device-xxs: 375px;
  --device-xs: 480px;
  --device-sm: 767px;
  --device-md: 1079px;
  --device-xl: 1920px;
}

/* colors */
:root {
  --white: #fff;
  --gmo-blue-700: #005BAC;
  --gmo-blue-900: #003767;
  --gray-500: #CDCDCD;
  --trust-navy-50: #F5F7F9;
}

/* radius */
:root {
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 24px;
}

/* typography */
:root {
  --typo-fz-xxs: 10px;
  --typo-fz-xs: 12px;
  --typo-fz-sm: 14px;
  --typo-fz-md: 16px;
  --typo-fz-lg: 18px;
  --typo-fz-xl: 20px;
  --typo-fz-xxl: 24px;
  --typo-fz-3xl: 32px;
  --typo-fz-4xl: 40px;
  --typo-fz-5xl: 42px;
  --typo-fz-6xl: 56px;
}

/* spacing */
:root {
  --spacing-3xs: 2px;
  --spacing-xxs: 4px;
  --spacing-xs: 8px;
  --spacing-sm: 12px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-xxl: 40px;
  --spacing-3xl: 56px;
  --spacing-4xl: 64px;
  --spacing-5xl: 80px;
}

@media screen and (max-width:768px) {
  :root {
    --typo-fz-xxs: 10px;
    --typo-fz-xs: 12px;
    --typo-fz-sm: 14px;
    --typo-fz-md: 16px;
    --typo-fz-lg: 16px;
    --typo-fz-xl: 18px;
    --typo-fz-xxl: 20px;
    --typo-fz-3xl: 28px;
    --typo-fz-4xl: 40px;
    --typo-fz-5xl: 48px;
    --typo-fz-6xl: 56px;
  }
}

@media screen and (max-width: var(--device-sm)) {
  :root {
    --typo-fz-xxs: 10px;
    --typo-fz-xs: 10px;
    --typo-fz-sm: 12px;
    --typo-fz-md: 14px;
    --typo-fz-lg: 16px;
    --typo-fz-xl: 18px;
    --typo-fz-xxl: 20px;
    --typo-fz-3xl: 24px;
    --typo-fz-4xl: 32px;
    --typo-fz-5xl: 42px;
    --typo-fz-6xl: 42px;
  }
}

:root {
  --gradiention-01: linear-gradient(90deg, var(--gmo-blue-700) 0%, #0093AF 100%);
  --text-gradiention: linear-gradient(90deg, var(--gmo-blue-700) 0%, #3AAFC5 100%);
  --innovative-green: #3AAFC5;
  --footer-gradient: linear-gradient(90deg, #005bac 0%, #0093af 100%);
}

/* spacer */
.spacer {
  display: block;
}

.spacer.xs {
  height: var(--spacing-xs);
}

.spacer.sm {
  height: var(--spacing-sm);
}

.spacer.md {
  height: var(--spacing-md);
}

.spacer.lg {
  height: var(--spacing-lg);
}

.spacer.xl {
  height: var(--spacing-xl);
}

.spacer.xxl {
  height: var(--spacing-xxl);
}

.spacer.xxxl {
  height: var(--spacing-3xl);
}

.spacer.xxxxl {
  height: var(--spacing-4xl);
}

.spacer.xxxxxl {
  height: var(--spacing-5xl);
}

/* text-gradation */
.text-gradation {
  text-align: center;
  -webkit-text-stroke-width: 0;
  -webkit-text-stroke-color: transparent;
  font-style: normal;
  background: var(--text-gradation, linear-gradient(90deg, var(--Color-PrimitiveColor-GMOBlue-GMOBlue-700, #005BAC) 0%, var(--Color-PrimitiveColor-InnovativeGreen-InnovativeGreen-600, #3AAFC5) 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* heading */
.heading {
  font-weight: bold;
  line-height: 1.4em;
  letter-spacing: 0.04em;
  white-space: pre-line;
}

.h2 {
  font-size: var(--typo-fz-3xl);
}

.kv {}


.cv {
  background: var(--gradiention-01);
  text-align: center;
  color: var(--white);
}

/* button */
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--radius-md);
  font-size: var(--typo-fz-lg);
  font-weight: 700;
  text-align: center;
  height: 65px;
  padding: 0 var(--spacing-md);
  box-sizing: border-box;
}

.button.tertiary {
  background: var(--white);
  min-width: 280px;
  color: var(--gmo-blue-700);
  background-color: var(--white);
  border: 2px solid var(--gmo-blue-700);

}

.button.tertiary:hover {
  border: 1px solid var(--white);
  background: linear-gradient(90deg, var(--gmo-blue-900) 0%, var(--gmo-blue-700) 100%);
  color: var(--white);
}

.container {
  max-width: 1112px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
  box-sizing: border-box;
}

.overview-navigation {
  display: flex;
  flex-flow: wrap;
  background: #fff;
  width: 100%;
  justify-content: center;
  border-top: 1px solid #CDCDCD;
  border-bottom: 1px solid #CDCDCD;
  padding-top: 16px;
  padding-bottom: 16px;
}

.overview-navigation>a {
  width: calc(20% - 21px);
  min-width: 205px;
  text-align: center;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 20px;
  padding-top: 12px;
  border-left: 1px solid #cdcdcd;
  border-right: 1px solid #cdcdcd;
  position: relative;
  letter-spacing: 0.9px;
  font-weight: bold;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
}

.overview-navigation>a::after {
  position: absolute;
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #005bac;
  bottom: 0;
  left: calc(50% - 10px);
  transition: 0.35s cubic-bezier(0.4, 0, 0, 1);
  transform: rotate(90deg);
}

.overview-navigation>a:hover::after {
  bottom: -5px;
  transition: 0.35s cubic-bezier(0.4, 0, 0, 1);
}

/* FAQ Styles */
.faq-section h2.text-gradation,
.faq-section h2.h2.heading.text-gradation {
  color: #000000 !important;
  background: none !important;
  background-image: none !important;
  -webkit-background-clip: initial !important;
  -webkit-text-fill-color: #000000 !important;
}

/* FAQ Accordion Styles - Based on Figma Design */
.faq-accordion {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--gray-500);
  margin-bottom: 0;
}

.faq-item:last-child {
  border-bottom: 1px solid var(--gray-500);
}

.faq-question-row {
  box-sizing: border-box;
  display: flex;
  align-items: flex-start;
  padding: var(--spacing-lg) var(--spacing-md);
  gap: var(--spacing-md);
  cursor: pointer;
  background: transparent;
  border: none;
  width: 100%;
}

.faq-q-label {
  color: var(--gmo-blue-700);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'D-DIN-PRO', sans-serif;
  font-weight: bold;
  font-size: 32px;
  letter-spacing: 1.28px;
  flex-shrink: 0;
  line-height: 1;
}

.faq-question-text {
  flex: 1;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: var(--typo-fz-md);
  font-weight: bold;
  color: var(--gmo-blue-700);
  line-height: 1.8;
  letter-spacing: 0.64px;
  margin-top: 2px;
}

.faq-toggle-btn {
  width: 36px;
  height: 36px;
  border: 2px solid var(--gmo-blue-700);
  border-radius: 8px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.3s ease;
  position: relative;
  margin-top: var(--spacing-xxs);
}

.faq-toggle-btn:hover {
  background: var(--gmo-blue-700);
}

.faq-toggle-btn:hover .faq-icon {
  stroke: white;
}

.faq-icon {
  width: 16px;
  height: 16px;
  transition: all 0.3s ease;
}

.faq-minus-icon {
  display: none;
}

.faq-item.is-open .faq-plus-icon {
  display: none;
}

.faq-item.is-open .faq-minus-icon {
  display: block;
}

/* FAQ Answer Styles */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-item.is-open .faq-answer {
  max-height: 500px;
  transition: max-height 0.3s ease-in;
}

.faq-answer-content {
  display: flex;
  align-items: flex-start;
  padding: 0 var(--spacing-md) var(--spacing-lg) var(--spacing-md);
  gap: var(--spacing-md);
}

.faq-a-label {
  color: #DD3700;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'D-DIN-PRO', sans-serif;
  font-weight: bold;
  font-size: 32px;
  letter-spacing: 1.28px;
  flex-shrink: 0;
  line-height: 1;
}

.faq-answer-text {
  flex: 1;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: var(--typo-fz-md);
  font-weight: normal;
  color: #101D32;
  line-height: 1.8;
  letter-spacing: 0.64px;
  margin-top: 2px;
}

.faq-answer-text p:first-child {
  margin-bottom: 16px;
}

/* FAQ Responsive Design */
@media screen and (max-width:768px) {
  .overview-navigation>a {
    border: none;
    border-bottom: 1px solid #cdcdcd;
  }

  .overview-navigation>a:last-child {
    border: none;
    border-bottom: none;
  }

  .faq-question-row {
    padding: var(--spacing-md);
    gap: var(--spacing-sm);
  }

  .faq-answer-content {
    padding: 0 var(--spacing-md) var(--spacing-md) var(--spacing-md);
    gap: var(--spacing-sm);
  }

  .faq-q-label,
  .faq-a-label {
    width: 32px;
    height: 32px;
    font-size: 28px;
  }

  .faq-question-text,
  .faq-answer-text {
    font-size: var(--typo-fz-sm);
  }

  .faq-toggle-btn {
    width: 32px;
    height: 32px;
  }
}

@media screen and (max-width: var(--device-sm)) {
  .faq-question-row {
    padding: var(--spacing-sm);
    gap: var(--spacing-xs);
  }

  .faq-answer-content {
    padding: 0 var(--spacing-sm) var(--spacing-sm) var(--spacing-sm);
    gap: var(--spacing-xs);
  }

  .faq-q-label,
  .faq-a-label {
    width: 28px;
    height: 28px;
    font-size: 24px;
  }

  .faq-question-text,
  .faq-answer-text {
    font-size: var(--typo-fz-xs);
  }

  .faq-toggle-btn {
    width: 28px;
    height: 28px;
  }

  .faq-icon {
    width: 14px;
    height: 14px;
  }
}

/* Hero Section Styles */
.hero-section {
  position: relative;
  height: 450px;
  overflow: hidden;
  background: #FFF;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #E6EAF1 0%, #FFF 100%);
  clip-path: polygon(0 0, 100% 0, 100% 53.1%, 0 113.8%);
  z-index: 0;
}

.hero-shape-1 {
  position: absolute;
  top: -20px;
  right: 146px;
  width: 365px;
  height: 365px;
  background: #005BAC;
  border-radius: 100px;
  transform: rotate(60deg);
  opacity: 0.9;
  z-index: 2;
}

.hero-shape-2 {
  position: absolute;
  bottom: -70px;
  right: 30px;
  width: 180px;
  height: 180px;
  background: #3AAFC5;
  border-radius: 50px;
  transform: rotate(60deg);
  opacity: 0.9;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.hero-copy {
  margin-left: 96px;
  flex: 1;
  max-width: 500px;
}

.hero-subtitle {
  font-size: var(--typo-fz-xxl);
  font-weight: bold;
  color: #101d32;
  margin: 0 0 16px 0;
  line-height: 1.5;
}

.hero-title {
  font-size: var(--typo-fz-6xl);
  font-weight: bold;
  line-height: 1.4;
  margin: 0;
  margin-left: -32px;
  letter-spacing: 0.04em;
}

.hero-date-badge {
  position: absolute;
  top: 82.27px;
  left: 47%;
  transform: translateX(-50%);
  z-index: 4;
  fill: #FFF;
}

.date-circle {
  width: 125.58px;
  height: 125.58px;
  background: white;
  border: 2px solid #005BAC;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.date-text {
  text-align: center;
  color: var(--gmo-blue-700);
}

.date-year {
  font-size: 16px;
  font-weight: bold;
  margin: 0;
  line-height: 1;
}

.date-month-day {
  font-size: 16px;
  margin: 2px 0;
  line-height: 1;
  letter-spacing: -1px;
}

.date-month-day .number {
  font-weight: bold;
  font-family: 'D-DIN-PRO', sans-serif;
  font-size: 20px;
}

.date-month-day .day {
  letter-spacing: -7.83px;
}

.date-month-day .week-day {
  font-weight: 700;
}

.date-label {
  font-size: 16px;
  font-weight: 500;
  margin: 2px 0 0 0;
  line-height: 1.1;
}

.hero-devices {
  position: absolute;
  right: 0px;
  top: 5px;
  width: 690px;
  height: 500px;
  pointer-events: none;
  z-index: 2;
}

.hero-devices img {
  width: 100%;
  height: auto;
}

.device-pc {
  position: absolute;
  right: 50px;
  top: 80px;
  width: 420px;
  height: 280px;
  z-index: 1;
}

.device-pc img {
  width: 100%;
  height: 100%;
  /* object-fit: contain; */
}

.device-mobile {
  position: absolute;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.device-mobile img {
  /* width: 100%;
  height: 100%;
  object-fit: cover; */
}

.device-mobile-1 {
  right: 150px;
  top: 20px;
  /* width: 90px;
  height: 190px; */
  /* transform: rotate(15deg); */
  z-index: 3;
}

.device-mobile-2 {
  right: 40px;
  top: 280px;
  /* width: 90px;
  height: 190px;
  transform: rotate(15deg); */
  z-index: 2;
}

/* Responsive Design */
@media screen and (max-width:1250px) {

  .hero-date-badge {
    left: 50%;
  }
}

@media screen and (max-width:1160px) {
  .hero-devices {
    width: 600px;
  }

  .hero-date-badge {
    left: 55%;
  }
}

@media screen and (max-width:1100px) {
  .hero-copy {
    margin-left: 20px;
  }

  .hero-devices {
    width: 500px;
  }

  .hero-shape-1 {
    width: 300px;
    height: 300px;
    right: 100px;
  }

  .hero-shape-2 {
    bottom: 0px;
    right: -22px;
  }

  .hero-date-badge {
    left: 55%;
  }
}

@media screen and (max-width:900px) {
  .hero-copy {
    margin-left: 0;
  }

  .hero-date-badge {
    left: 10%;
    top: 300px;
  }

  .hero-devices {
    width: 440px
  }
}

@media screen and (max-width:768px) {
  .breadcrumbs {
    margin: 0 !important;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-title {
    margin-left: 0;
  }

  .hero-subtitle {
    margin-bottom: 0;
    margin-top: 55px;
  }

  .hero-section {
    /* height: 400px; */
    margin-top: 20px;
  }

  .hero-content {
    padding: 0 16px;
    flex-direction: column;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-date-badge {
    left: 40%;
    transform: translateX(-50%);
    top: 150px;
  }

  .date-circle {
    width: 100px;
    height: 100px;
  }

  .date-month-day {
    font-size: 14px;
  }

  .date-label {
    font-size: 14px;
  }

  .date-month-day .number {
    font-size: 19px;
  }

  .hero-devices {
    width: 440px;
    height: 350px;
    right: 25%;
    top: 172px;
    /* transform: translateX(-50%); */

  }

  .device-pc {
    width: 350px;
    height: 230px;
    right: 50px;
    top: 80px;
  }

  .device-mobile-1 {
    width: 80px;
    height: 170px;
    right: 120px;
    top: 30px;
  }

  .device-mobile-2 {
    width: 80px;
    height: 170px;
    right: 40px;
    top: 200px;
  }

  .hero-shape-1 {
    width: 220px;
    height: 220px;
    border-radius: 50px;
    right: 120px;
    top: 181px;
  }

  .hero-shape-2 {
    width: 110px;
    height: 110px;
    right: 30px;
    bottom: -30px;
    border-radius: 25px;
  }
}

@media screen and (max-width: 500px) {
  .hero-devices {
    width: 440px;
    height: 350px;
    right: -52%;
    top: 172px;
    transform: translateX(-50%);

  }

  .hero-date-badge {
    left: 20%;
    transform: translateX(-50%);
    top: 150px;
  }
}

@media screen and (max-width: var(--device-sm)) {
  .hero-section {
    height: 550px;
  }

  .hero-content {
    flex-direction: column;
    justify-content: flex-start;
    text-align: center;
    padding-top: 40px;
    display: flex;
    align-items: center;
  }

  .hero-copy {
    max-width: none;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 3;
    order: 2;
  }

  .hero-subtitle {
    font-size: var(--typo-fz-md);
    margin-bottom: 12px;
  }

  .hero-title {
    font-size: var(--typo-fz-3xl);
    margin-bottom: 20px;
  }

  .hero-date-badge {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    z-index: 5;
    margin-bottom: 20px;
    display: block;
    order: 1;
  }

  .date-circle {
    width: 90px;
    height: 90px;
  }

  .date-year {
    font-size: 12px;
  }

  .date-month-day {
    font-size: 14px;
    margin: 1px 0;
  }

  .date-label {
    font-size: 12px;
  }

  .hero-devices {
    position: relative;
    width: 100%;
    height: 250px;
    top: auto;
    right: auto;
    transform: none;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .device-pc {
    position: absolute;
    right: 10px;
    top: 40px;
    width: 200px;
    height: 130px;
    transform: rotate(8deg);
    z-index: 1;
  }

  .device-mobile-1 {
    position: absolute;
    right: 80px;
    top: 10px;
    width: 60px;
    height: 120px;
    transform: rotate(8deg);
    z-index: 3;
  }

  .device-mobile-2 {
    position: absolute;
    right: 20px;
    top: 150px;
    width: 60px;
    height: 120px;
    transform: rotate(8deg);
    z-index: 2;
  }

  .hero-shape-1 {
    top: 100px;
    right: -150px;
    width: 300px;
    height: 300px;
    opacity: 0.05;
  }

  .hero-shape-2 {
    top: 350px;
    right: -80px;
    width: 180px;
    height: 180px;
    opacity: 0.03;
  }
}

/* About Section Styles */
.about-section {
  background: white;
  padding: var(--spacing-5xl) 0;
}

.about-content {
  max-width: 894px;
  margin: 0 auto;
  text-align: center;
}

.about-header {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.h-logo img {
  width: 196.331px;
  height: 46.445px;
}

.gmo-logo {
  display: flex;
  align-items: center;
}

.about-title-suffix {
  font-size: var(--typo-fz-xxl);
  font-weight: bold;
  color: #101d32;
  margin: 0;
  line-height: 1;
}

.about-title {
  font-size: var(--typo-fz-3xl);
  font-weight: bold;
  line-height: 1.4;
  margin: 0 0 var(--spacing-lg) 0;
  letter-spacing: 0.04em;
}

.about-description {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  text-align: center;
}

.about-description p {
  margin: 0;
  font-size: var(--typo-fz-md);
  line-height: 1.8;
  color: #101d32;
  letter-spacing: 0.04em;
}

.plan-highlight {}

.plan-names {
  color: var(--gmo-blue-700);
  font-weight: bold;
}

.about-mission {}

.about-note {
  font-size: var(--typo-fz-sm) !important;
  color: #606060 !important;
}

/* Responsive Design for About Section */
@media screen and (max-width:768px) {
  .about-section {
    padding: var(--spacing-xxl) 0;
  }

  .about-header {
    /* flex-direction: column;
    gap: var(--spacing-sm); */
  }

  .gmo-logo svg {
    width: 150px;
    height: 35px;
  }

  .about-title-suffix {
    font-size: var(--typo-fz-xl);
  }

  .about-title {
    /* font-size: var(--typo-fz-4xl); */
  }
}

@media screen and (max-width: var(--device-sm)) {
  .about-section {
    padding: var(--spacing-xl) 0;
  }

  .about-content {
    text-align: left;
  }

  .about-header {
    text-align: center;
  }

  .gmo-logo svg {
    width: 120px;
    height: 28px;
  }

  .about-title-suffix {
    font-size: var(--typo-fz-lg);
  }

  .about-title {
    font-size: var(--typo-fz-3xl);
    text-align: center;
  }

  .about-description {
    text-align: left;
    gap: var(--spacing-sm);
  }

  .about-description p {
    font-size: var(--typo-fz-sm);
  }
}

/* Points Section Styles */
.points-section {
  background: linear-gradient(135deg, #F8FBFF 0%, #F0F9FF 100%);
  padding: var(--spacing-5xl) 0;
}

.points-title {
  font-size: var(--typo-fz-3xl);
  font-weight: bold;
  color: #101d32;
  text-align: center;
  margin: 0;
}

.points-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-xl);
  margin-top: var(--spacing-lg);
  box-sizing: border-box;
}

.point-card {
  background: white;
  border-radius: var(--radius-md);
  padding: var(--spacing-lg);
  text-align: center;
  border-radius: 8px;
  border: 1px solid #CDCDCD;
  background: #FFF;
  box-sizing: border-box;
}

.card-illustration {
  height: 194px;
  margin-bottom: var(--spacing-lg);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
}

.point-image {
  width: 90%;
  height: 90%;
  object-fit: contain;
}

.card-title {
  font-size: var(--typo-fz-lg);
  font-weight: bold;
  color: #101d32;
  line-height: 1.6;
  margin: 0 0 var(--spacing-md) 0;
}

.card-description {
  font-size: var(--typo-fz-sm);
  line-height: 1.8;
  color: #101d32;
  margin: 0;
  text-align: left;
}

/* Illustration 1: Search & Documents */
.illustration-1 {
  background: linear-gradient(135deg, #E8F4FF 0%, #F0F9FF 100%);
}

.search-elements {
  position: relative;
  width: 100%;
  height: 100%;
}

.search-box {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 50px;
  background: var(--innovative-green);
  border-radius: var(--radius-sm);
}

.search-magnifier {
  position: absolute;
  top: 25%;
  right: 20%;
  width: 40px;
  height: 40px;
  border: 4px solid #101d32;
  border-radius: 50%;
  background: transparent;
}

.search-magnifier::after {
  content: '';
  position: absolute;
  bottom: -15px;
  right: -8px;
  width: 4px;
  height: 20px;
  background: #101d32;
  border-radius: 2px;
  transform: rotate(45deg);
}

.document-stack {
  position: absolute;
  bottom: 20%;
  left: 15%;
}

.doc {
  width: 40px;
  height: 50px;
  background: #B8E0FF;
  border-radius: var(--radius-xs);
  position: absolute;
}

.doc-1 {
  transform: rotate(-10deg);
  z-index: 3;
}

.doc-2 {
  left: 15px;
  top: 5px;
  transform: rotate(5deg);
  z-index: 2;
  background: #D4EDFF;
}

.doc-3 {
  left: 30px;
  top: 10px;
  transform: rotate(15deg);
  z-index: 1;
  background: #E8F4FF;
}

.person {
  position: absolute;
  width: 20px;
  height: 35px;
  background: #005BAC;
  border-radius: 10px 10px 4px 4px;
}

.person::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: #FFE4B5;
  border-radius: 50%;
}

.person-1 {
  bottom: 15%;
  left: 25%;
}

.person-2 {
  bottom: 15%;
  right: 25%;
}

/* Illustration 2: Screen & Gears */
.illustration-2 {
  background: linear-gradient(135deg, #F8FBFF 0%, #E8F4FF 100%);
}

.screen-elements {
  position: relative;
  width: 100%;
  height: 100%;
}

.screen-frame {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 80px;
  background: white;
  border: 3px solid #101d32;
  border-radius: var(--radius-sm);
}

.gmo-logo-screen {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  font-weight: bold;
  color: var(--gmo-blue-700);
}

.gear {
  position: absolute;
  background: var(--innovative-green);
  border-radius: 50%;
}

.gear::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  border: 2px solid white;
  border-radius: 50%;
}

.gear-1 {
  top: 15%;
  right: 15%;
  width: 30px;
  height: 30px;
  animation: rotate 3s linear infinite;
}

.gear-2 {
  top: 50%;
  right: 25%;
  width: 20px;
  height: 20px;
  animation: rotate-reverse 2s linear infinite;
}

.person-3 {
  bottom: 20%;
  left: 20%;
}

.person-4 {
  bottom: 20%;
  right: 35%;
}

/* Illustration 3: Cost & Charts */
.illustration-3 {
  background: linear-gradient(135deg, #F0F9FF 0%, #E8F7FA 100%);
}

.cost-elements {
  position: relative;
  width: 100%;
  height: 100%;
}

.chart-bars {
  position: absolute;
  top: 30%;
  left: 20%;
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.bar {
  width: 20px;
  background: var(--innovative-green);
  border-radius: 2px 2px 0 0;
}

.bar-1 {
  height: 40px;
}

.bar-2 {
  height: 60px;
}

.bar-3 {
  height: 30px;
}

.calculator {
  position: absolute;
  top: 20%;
  right: 20%;
  width: 60px;
  height: 80px;
  background: var(--gmo-blue-700);
  border-radius: var(--radius-sm);
}

.calc-screen {
  background: #003367;
  color: white;
  font-size: 10px;
  font-weight: bold;
  text-align: center;
  padding: 4px;
  margin: 4px;
  border-radius: 2px;
}

.calc-buttons {
  margin: 8px 4px;
  height: 50px;
  background: repeating-linear-gradient(90deg,
      white 0px,
      white 2px,
      transparent 2px,
      transparent 4px);
}

.arrow-down {
  position: absolute;
  bottom: 25%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 20px solid var(--innovative-green);
}

.person-5 {
  bottom: 15%;
  right: 30%;
}

/* Animations */

/* Responsive Design for Points Section */
@media screen and (max-width:768px) {
  .points-cards {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .points-title {
    /* font-size: var(--typo-fz-4xl); */
  }

  .card-illustration {
    height: 160px;
  }
}

@media screen and (max-width: var(--device-sm)) {
  .points-section {
    padding: var(--spacing-xxl) 0;
  }

  .points-title {
    font-size: var(--typo-fz-3xl);
  }

  .point-card {
    padding: var(--spacing-md);
  }

  .card-illustration {
    height: 140px;
  }

  .card-title {
    font-size: var(--typo-fz-md);
  }

  .card-description {
    font-size: var(--typo-fz-xs);
  }
}

/* Footer CV Section */
.footer-cv {
  background: var(--footer-gradient);
  position: relative;
  overflow: hidden;
  padding: var(--spacing-5xl) 0;
}

.cv-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.cv-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 450px;
  height: 273.5px;
  background-image: url('/lp/newplan/img/musubi.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  mix-blend-mode: screen;
}

.cv-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-lg);
  text-align: center;
  color: var(--white);
}

.cv-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: bold;
  font-size: var(--typo-fz-3xl);
  line-height: 1.4;
  letter-spacing: 1.28px;
  color: var(--white);
  margin: 0;
}

.cv-description {
  padding-bottom: 16px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: bold;
  font-size: var(--typo-fz-xl);
  line-height: 1.4;
  letter-spacing: 0.8px;
  color: var(--white);
  text-shadow: rgba(17, 17, 17, 0.4) 0px 0px 6px, rgba(0, 0, 0, 0.2) 0px 0px 2px;
  margin: 0;
}

.cv-button-wrapper {
  position: relative;
  width: 280px;
}

.cv-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--gmo-blue-700);
  border: 2px solid var(--gmo-blue-700);
  border-radius: var(--radius-md);
  padding: var(--spacing-md) var(--spacing-xl);
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: bold;
  font-size: var(--typo-fz-md);
  line-height: 1.1;
  letter-spacing: 0.64px;
  text-decoration: none;
  transition: all 0.3s ease;
  height: 50px;
  box-sizing: border-box;
  width: 100%;
}

.cv-button:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

/* Responsive Design for Footer CV */
@media screen and (max-width:768px) {
  .footer-cv {
    padding: var(--spacing-4xl) 0;
  }

  .cv-content {
    gap: var(--spacing-lg);
  }

  .cv-title {
    font-size: var(--typo-fz-xxl);
  }

  .cv-description {
    font-size: var(--typo-fz-lg);
  }

  .cv-pattern {
    right: 0px;
    width: 400px;
    height: 245px;
    background-size: contain;
  }
}

@media screen and (max-width: var(--device-sm)) {
  .footer-cv {
    padding: var(--spacing-xl) 0;
  }

  .cv-title {
    font-size: var(--typo-fz-lg);
  }

  .cv-description {
    font-size: var(--typo-fz-md);
  }

  .cv-button-wrapper {
    width: 100%;
    max-width: 280px;
  }

  .cv-pattern {
    display: none;
  }
}

/* Plan Changes Section */
.plan-changes-section {
  padding: 48px 0;
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
  width: 100%;
}

.plan-changes-title-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.plan-changes-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: bold;
  font-size: var(--typo-fz-3xl);
  line-height: 1.4;
  letter-spacing: 1.28px;
  color: #101d32;
  text-align: center;
  margin: 0;
  white-space: pre;
}

/* Current Plans */
.current-plans {}

.current-plans-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: bold;
  font-size: var(--typo-fz-xxl);
  line-height: 1.4;
  letter-spacing: 0.96px;
  color: #101d32;
  text-align: center;
  margin: 0 0 var(--spacing-xl) 0;
}

.current-plans-cards {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  max-width: 832px;
  margin: 0 auto;
  padding: 0;
}

.current-plans-cards .current-plans-cards {
  height: auto;
}

.current-plans-cards .plan-body {
  height: auto;
}

.current-plans-cards .plan-card {
  height: auto;
  flex: inherit;
}

@media screen and (max-width: 850px) {
  .current-plans-cards {
    flex-direction: column;
    margin: auto;
    align-items: center;
  }
}

/* Plan Card Styles */
.plan-card {
  background: white;
  border: 1px solid #cdcdcd;
  border-radius: 8px;
  overflow: hidden;
  width: 400px;
  flex: 0 0 400px;
  display: flex;
  flex-direction: column;
  position: relative;
  height: 512px;
}

.plan-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border: 1px solid #cdcdcd;
  border-radius: 9px;
  pointer-events: none;
}

.plan-header {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding-top: 12px;
  padding-bottom: 12px;
}

.plan-header h4 {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: bold;
  font-size: var(--typo-fz-md);
  line-height: 1.4;
  letter-spacing: 0.8px;
  color: white;
  margin: 0;
  white-space: nowrap;
  overflow: visible;
  min-width: max-content;
}

.free-plan .plan-header {
  height: 67px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  box-sizing: border-box;
  border-radius: 8px 8px 0 0;
  background: #7d7d7d;
}

.contract-plan .plan-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  box-sizing: border-box;
  border-radius: 8px 8px 0 0;
  background: #005bac;
  height: 67px;
}

.plan-subtitle {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: bold;
  font-size: var(--typo-fz-sm);
  line-height: 1.6;
  letter-spacing: 0.56px;
  color: white;
  margin: 4px 0 0 0;
}

.gray-header {
  background: #7d7d7d;
  border-radius: 8px 8px 0 0;
}

.blue-header {
  background: #005bac;
  border-radius: 8px 8px 0 0;
}

.contract-plan .plan-body {
  padding: 16px 0;
  border-radius: 0 0 8px 8px;

}

.navy-header {
  background: #003767;
  white-space: nowrap;
  overflow: visible;
}

.plan-body {
  background: white;
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border-radius: 0 0 8px 8px;
  min-height: 88px;
  height: 457px;
}

.plan-price-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  width: 100%;
}

.tax-info-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.plan-price,
.price-display {
  display: flex;
  align-items: center;
  gap: 7px;
  justify-content: center;
  margin: auto;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  color: #101d32;
  text-wrap: nowrap;
}

.plan-price {}

.current-plans .plan-card:nth-child(2) .plan-price {
  padding: 0 62px;
  gap: 3px;
}

.price-label {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: bold;
  font-size: var(--typo-fz-sm);
  line-height: 24.5px;
  color: #101d32;
  height: 25px;
  width: 84.33px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.price-value {
  font-family: "D-DIN-PRO-ExtraBold", "Noto Sans CJK JP", "Noto Sans JP",
    sans-serif !important;
  font-weight: bold;
  font-size: var(--typo-fz-3xl);
  line-height: 1;
  color: #101d32;
  white-space: pre;
}

.price-unit {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #101d32;
  height: 24px;
  width: 24.344px;
  font-weight: 700;
  /* display: flex; */
  align-items: center;
  justify-content: center;
}

.tax-info {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: normal;
  font-size: var(--typo-fz-sm);
  line-height: 1.6;
  letter-spacing: 0.56px;
  color: #606060;
  text-align: center;
  margin: 0;
  white-space: pre;
}

/* Plan Arrow */
.plan-arrow {
  display: flex;
  justify-content: center;
  margin: var(--spacing-xl) 0;
  position: relative;
}

.arrow-icon {
  width: 0;
  height: 0;
  border-left: 135px solid transparent;
  border-right: 135px solid transparent;
  border-top: 55px solid #D9E0EC;
}

/* New Plans */
.new-plans {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: #cdcdcd transparent;
}

.new-plans::-webkit-scrollbar {
  height: 8px;
}

.new-plans::-webkit-scrollbar-track {
  background: transparent;
}

.new-plans::-webkit-scrollbar-thumb {
  background-color: #cdcdcd;
  border-radius: 4px;
}

@media screen and (max-width: 768px) {
  .new-plans {
    flex-direction: column;
    gap: 20px;
  }

  .new-plans-section {
    /* flex: none; */
    box-sizing: border-box;
    width: 100%;
    min-width: auto !important;
  }

  .free-plan-new {
    flex: none;
    width: 100%;
  }
}

.new-plans-section {
  min-width: 845px;
}

.new-plans-header {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: var(--spacing-xl);
}

.no-change-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 203px;
}

.no-change-label {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: bold;
  font-size: var(--typo-fz-md);
  line-height: 1.8;
  letter-spacing: 0.64px;
  color: #606060;
  margin-bottom: 4px;
  margin-top: 8.5px;
}

.free-plan-new {
  flex: 0 0 203px;
  width: 203px;
  min-height: 512px;
  border: 2px solid #ebebeb;
}

.free-plan-new .plan-price {
  min-height: 180px;
  flex-direction: column;
}

.plan-description {
  text-align: center;
  padding-bottom: var(--spacing-sm);
}

.plan-description p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: var(--typo-fz-md);
  line-height: 1.6;
  letter-spacing: 0.64px;
  color: #101d32;
  margin: 0;
  height: 75px;
  display: flex;
  align-items: center;
  text-align: left;
}

.plan-features {
  padding-top: var(--spacing-xs);
  width: 100%;
  min-height: 129px;
  display: flex;
  align-items: center;
}

.plan-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plan-features li {
  position: relative;
  padding-left: var(--spacing-lg);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: var(--typo-fz-sm);
  line-height: 1.8;
  color: #101d32;
  margin-bottom: var(--spacing-xs);
}

.plan-features li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: #101d32;
}

.plan-features li:last-child {
  margin-bottom: 0;
}

/* New Plans Title */
.new-plans-title-wrapper {
  position: relative;
  width: 845px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
}

.new-plans-title {
  background: var(--text-gradiention);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: bold;
  font-size: var(--typo-fz-xxl);
  line-height: 1.4;
  letter-spacing: 0.96px;
  text-align: center;
  margin: 0;
  position: relative;
  z-index: 2;
  padding: 0 20px;
  background-color: white;
}

.gradient-lines {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  transform: translateY(-50%);
  z-index: 1;
}

.gradient-line {
  position: absolute;
  top: 0;
  height: 2px;
}

.gradient-line.left {
  left: 2px;
  width: 359px;
  background: linear-gradient(90deg, var(--gmo-blue-700) 0%, var(--gmo-blue-700) 100%);
}

.gradient-line.right {
  right: 0;
  width: 364px;
  background: linear-gradient(90deg, #3aafc5 0%, #3aafc5 100%);
  transform: rotate(180deg) scaleY(-1);
}

/* 装飾ラインの両端の縦線 */
.gradient-lines::before,
.gradient-lines::after {
  content: '';
  position: absolute;
  top: 0px;
  width: 2px;
  height: 14px;
  background: var(--gmo-blue-700);
}

.gradient-lines::before {
  left: 0;
}

.gradient-lines::after {
  right: 0;
  background: #3aafc5;
}

/* New Plans Cards */
.new-plans-cards {
  display: flex;
  gap: 14px;
  justify-content: flex-start;
  height: 512px;
  flex-wrap: nowrap;
}

.new-plans-cards .plan-card {
  flex: 1;
  min-width: 197px;
  max-width: 197px;
  height: 512px;
  border: 2px solid #ebebeb;
  border-radius: 8px;
}

.plan-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: var(--spacing-md);
}

.plan-body>div {
  border-top: 1px solid #cdcdcd;
}

.plan-body>div:first-child {
  border-top: none
}

.plan-pricing {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  text-align: center;
  height: 180px;
  padding-top: 12px;
  width: 100%;
}

.pricing-option {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.price-type {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: bold;
  font-size: var(--typo-fz-sm);
  line-height: 1.8;
  letter-spacing: 0.56px;
  color: #101d32;
}

.contact-pricing {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
  width: 100%;
}

.contact-pricing p {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: bold;
  font-size: var(--typo-fz-md);
  line-height: 1.8;
  letter-spacing: 0.64px;
  color: #101d32;
  text-align: center;
  margin: 0;
  width: 100%;
}

.divider-line {
  height: 1px;
  background: #7d7d7d;
  margin: 0;
}

/* Responsive Design for Plan Changes */
@media screen and (max-width: 768px) {
  .no-change-section {
    width: 100%;
    overflow: visible;
  }

  .new-plans-title-wrapper {
    width: 100%;
  }

  .new-plans-title-wrapper .gradient-lines {
    height: 0;
  }

  .gradient-line.left,
  .gradient-line.right {
    width: 0;
  }

  .gradient-lines::before,
  .gradient-lines::after {

    width: 0;
  }

  .current-plans-cards {
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-lg);
  }

  .plan-card {
    width: 100%;
    max-width: 400px;
    flex: none;
  }

  .new-plans {
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-lg);
    overflow: inherit
  }

  .new-plans-header {
    flex-direction: column;
    align-items: center;
  }

  .new-plans-section {
    overflow-x: auto;
    width: 100%;
    padding-bottom: 10px;
  }

  .new-plans-cards {
    display: flex;
    gap: var(--spacing-md);
    min-width: max-content;
    padding: 0 10px;
  }

  .new-plans-cards .plan-card {
    min-width: 280px;
  }

  .free-plan-new .plan-price {
    min-height: 80px;
  }

  .plan-card.free-plan-new {
    min-height: inherit;
    max-height: 383px;
  }
}

@media screen and (max-width: var(--device-sm)) {
  .plan-changes-section {
    padding: var(--spacing-4xl) 0;
  }

  .plan-changes-title {
    font-size: var(--typo-fz-xxl);
  }

  .current-plans-title {
    font-size: var(--typo-fz-lg);
  }

  .new-plans-title {
    font-size: var(--typo-fz-lg);
  }

  .new-plans-cards {
    grid-template-columns: 1fr;
    max-width: 300px;
  }

  .new-plans-cards .plan-card {
    max-width: none;
    height: auto;
    min-height: 400px;
  }

  .gradient-lines {
    display: none;
  }
}

/* Feature Comparison Section */
.feature-comparison-section {
  padding: var(--spacing-5xl) 0;
}

.feature-comparison-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: bold;
  font-size: var(--typo-fz-3xl);
  line-height: 1.4;
  letter-spacing: 1.28px;
  color: #101d32;
  text-align: center;
  margin: 0;
}

table {
  margin: 0 auto;
}

.comparison-table-wrapper {
  overflow-x: auto;
}

.comparison-table {
  min-width: 1050px;
  width: 100%;
}


.comparison-table td,
.comparison-table th {
  font-weight: 700;
  /* width: 100%; */
  border-collapse: collapse;
  font-family: 'Noto Sans JP', sans-serif;
  /* background: white; */
}

/* Table Headers */
.table-header {
  max-width: 144px;
  box-sizing: border-box;
  background: #003767;
  color: white;
  font-weight: bold;
  font-size: var(--typo-fz-md);
  line-height: 1.4;
  letter-spacing: 0.8px;
  text-align: center;
  padding: var(--spacing-xs) 0;
  border: 1px solid #cdcdcd;
}

.free-header {
  background: #7d7d7d;
}

.table-category {
  background: white;
  border-bottom: 1px solid #cdcdcd;
  border-right: 1px solid #cdcdcd;
  border-top: none;
}

.table-category:first-child {
  border-right: none;
}

/* Table Cells */
.category-cell {
  box-sizing: border-box;
  background: #E6EAF1;
  color: #101d32;
  font-weight: bold;
  font-size: var(--typo-fz-sm);
  line-height: 1.8;
  letter-spacing: 0.56px;
  text-align: center;
  vertical-align: middle;
  padding: var(--spacing-md) var(--spacing-xs);
  border: 1px solid #cdcdcd;
  text-orientation: mixed;
  min-width: 160px;
  border-left: none;
}



.feature-label-cell,
.sub-category-cell {
  background: #f8f9fa;
  color: #101d32;
  font-size: var(--typo-fz-sm);
  line-height: 1.8;
  letter-spacing: 0.56px;
  text-align: left;
  padding: var(--spacing-md) var(--spacing-md);
  border: 1px solid #cdcdcd;
  min-width: 185px;
  box-sizing: border-box;
}

.feature-label-cell {
  border-left: none;
}

.sub-category-cell {
  max-width: 200px;
  vertical-align: middle;
}

.sub-category-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sub-text {
  font-size: var(--typo-fz-sm);
  color: #101d32;
}

.feature-cell {
  background: white;
  color: #101d32;
  font-size: var(--typo-fz-sm);
  line-height: 1.8;
  letter-spacing: 0.56px;
  text-align: center;
  vertical-align: middle;
  padding: var(--spacing-md) var(--spacing-xs);
  border: 1px solid #cdcdcd;
  width: 144px;
}


.pricing-inner {}

.price {
  font-size: var(--typo-fz-sm);
  color: #101d32;
}

.tax-price {
  font-size: 14px;
  color: #606060;
  font-weight: normal;
}

.feature-cell.available {
  color: #101d32;
  font-weight: bold;
}

.feature-cell.unavailable .unavailable-icon {
  font-weight: 700;
  font-size: var(--typo-fz-md);
}

.feature-cell.option {
  color: #101d32;
}

.limit-text {
  display: block;
  line-height: 1.4;
}

/* Download Section */
.download-section {
  display: flex;
  justify-content: center;
}

.download-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #003767;
  color: white;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: bold;
  font-size: var(--typo-fz-md);
  line-height: 1.4;
  letter-spacing: 0.64px;
  text-decoration: none;
  padding: var(--spacing-lg) var(--spacing-xxl);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  height: 65px;
  box-sizing: border-box;
  min-width: 348px;
}

.download-button:hover {
  background: #0056a3;
  transform: translateY(-1px);
}

.pdf-icon {
  margin-left: 2px;
  display: inline-flex;
  align-items: center;
}

.pdf-icon img {
  width: 16px;
  height: 16px;
}

/* Responsive Design for Feature Comparison */
@media screen and (max-width:768px) {
  .feature-comparison-section {
    padding: var(--spacing-4xl) 0;
  }

  .feature-comparison-title {
    font-size: var(--typo-fz-xxl);
  }

  .comparison-table-wrapper {
    margin: 0 -10px;
    padding: 0 10px;
  }

  .table-header {
    font-size: var(--typo-fz-lg);
    padding: var(--spacing-sm) var(--spacing-xxs);
  }

  .category-cell {
    font-size: var(--typo-fz-xs);
    padding: var(--spacing-sm) var(--spacing-xxs);
    width: 100px;
    min-width: 100px;
  }

  .feature-label-cell,
  .sub-category-cell {
    font-size: var(--typo-fz-xs);
    padding: var(--spacing-sm) var(--spacing-sm);
    width: 100px;
    min-width: 100px;
  }

  .feature-cell {
    font-size: var(--typo-fz-xs);
    padding: var(--spacing-sm) var(--spacing-xxs);
    min-width: 100px;
    width: 100px;
  }

  .download-button {
    font-size: var(--typo-fz-sm);
    padding: var(--spacing-md) var(--spacing-lg);
    min-width: 280px;
    min-height: 50px;
  }
}

@media screen and (max-width: var(--device-sm)) {
  .feature-comparison-section {
    padding: var(--spacing-xl) 0;
  }

  .feature-comparison-title {
    font-size: var(--typo-fz-lg);
  }

  .comparison-table-wrapper {
    margin: 0 -5px;
    padding: 0 5px;
  }

  .table-header {
    font-size: var(--typo-fz-md);
    writing-mode: horizontal-tb;
    text-orientation: mixed;
  }

  .category-cell {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    width: auto;
    min-width: 80px;
  }

  .feature-label-cell,
  .sub-category-cell {
    min-width: 120px;
  }

  .feature-cell {
    min-width: 80px;
    width: 80px;
  }

  .download-button {
    width: 100%;
    max-width: 300px;
  }
}