/* ========================================
   Foundation
   ======================================== */
html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ========================================
   Animation
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.c-fv__en,
.c-title__en {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.c-fv__en.is-visible,
.c-title__en.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.c-fv__copy,
.c-title__ja {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out 0.2s, transform 0.8s ease-out 0.2s;
}

.c-fv__copy.is-visible,
.c-title__ja.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.c-worry-list__item,
.c-features-list__item,
.c-skill-card,
.c-voice-list__item,
.c-support-list__item,
.c-flow-list__item,
.c-faq-list__item,
.c-advisor,
.c-comparison-table,
.c-cta-list__item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.c-worry-list__item.is-visible,
.c-features-list__item.is-visible,
.c-skill-card.is-visible,
.c-voice-list__item.is-visible,
.c-support-list__item.is-visible,
.c-flow-list__item.is-visible,
.c-faq-list__item.is-visible,
.c-advisor.is-visible,
.c-comparison-table.is-visible,
.c-cta-list__item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.c-btn {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

body {
  font-family: 'Noto Sans JP', sans-serif;
  background-color: #120308;
  color: #FFFFFF;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ========================================
   Layout
   ======================================== */
.l-wrapper {
  width: 100%;
}

.l-section {
  padding: 20px 0 64px;
  position: relative;

}

.l-section--fv {
  padding: 84px 0 38px;
  position: relative;
  width: 100%;
  margin-top: 0;
}

.l-section--service {
  padding: 30px 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 20.435%, rgba(0, 0, 0, 0) 34.783%),
    linear-gradient(180deg, rgba(18, 3, 8, 0) 0%, rgba(18, 3, 8, 0.3) 19.765%, #120308 39.531%);
}

.l-section--worry {
  padding: 48px 0;
}

.l-section--what-you-get::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 1) 100%);
}

.l-container {
  width: 100%;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.l-container--fv {
  padding: 0 24px;
}

.l-bg {
  position: absolute;
  width: 100%;
  height: auto;
  left: 0;
  z-index: 0;
  overflow: hidden;
}

.l-bg img {
  width: 100%;
}

.l-bg--01 {
  top: 0;
  max-height: 730px;
}

.l-bg--02 {
  top: 171px;
}

.l-bg--03 {
  top: -177px;
}

.l-bg--04 {
  top: -26px;
}

.l-bg--05 {
  top: 434px;
}

.l-bg--06 {
  top: 384px;
}

.l-bg--07 {
  top: -65px;
}

/* ========================================
   Component - Header
   ======================================== */
.c-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 1000;
  background-color: transparent;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.c-header.is-scrolled {
  background-color: rgba(18, 3, 8, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
  .c-header.is-scrolled {
    background-color: transparent;
  }
}

.c-header__logo {
  font-family: 'Rajdhani', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #FFFFFF;
}

.c-header__menu-icon {
  width: 20px;
  height: 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
  position: relative;
}

.c-header__menu-icon-line {
  width: 100%;
  height: 2px;
  background-color: #FFFFFF;
  transition: all 0.3s ease;
  display: block;
}

.c-header__menu-icon.is-open .c-header__menu-icon-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.c-header__menu-icon.is-open .c-header__menu-icon-line:nth-child(2) {
  opacity: 0;
}

.c-header__menu-icon.is-open .c-header__menu-icon-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Header Navigation */
.c-header__nav {
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  height: calc(100vh - 60px);
  background-color: rgba(18, 3, 8, 0.8);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 999;
}

.c-header__nav.is-open {
  transform: translateX(0);
}

.c-header__nav-list {
  list-style: none;
  padding: 20px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.c-header__nav-link {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  text-decoration: none;
  display: block;
  padding: 12px 0;
  transition: opacity 0.3s ease;
}

.c-header__nav-link:hover {
  opacity: 0.7;
}

@media (min-width: 768px) {
  .c-header__nav {
    position: fixed;
    top: 50%;
    left: auto;
    right: 0;
    width: 300px;
    height: auto;
    background-color: transparent;
    transform: translate(100%, -50%);
    transition: transform 0.3s ease;
    z-index: 1001;
  }

  .c-header__nav.is-open {
    transform: translate(0, -50%);
  }

  .c-header__nav-list {
    flex-direction: column;
    gap: 24px;
  }

  .c-header__nav-link {
    font-size: 18px;
    padding: 12px 0;
  }
}

/* PC Layout */
@media (min-width: 768px) {
  body {
    background-image: url('../img/pc-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    padding: 90px 0;
  }

  body>.l-wrapper {
    max-width: 450px;
    margin: 0 auto;
    background-color: #120308;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.4);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
  }

  .c-header {
    left: 0;
    transform: none;
    width: 100%;
    padding: 20px 40px;
    height: auto;
    justify-content: space-between;
  }

  .c-header .l-wrapper {
    display: none;
  }

  .c-header__logo {
    font-size: 44px;
  }

  .c-header__menu-icon {
    width: 84px;
    height: 84px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    padding: 0;
    position: relative;
  }

  .c-header__menu-icon-line {
    width: 30px;
    height: 3px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .c-header__menu-icon-line:nth-child(1) {
    top: 30px;
  }

  .c-header__menu-icon-line:nth-child(2) {
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .c-header__menu-icon-line:nth-child(3) {
    bottom: 30px;
  }

  .c-header__menu-icon.is-open .c-header__menu-icon-line:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .c-header__menu-icon.is-open .c-header__menu-icon-line:nth-child(2) {
    opacity: 0;
  }

  .c-header__menu-icon.is-open .c-header__menu-icon-line:nth-child(3) {
    bottom: auto;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .l-container {
    max-width: 450px;
    margin: 0 auto;
    padding: 0 16px;
  }
}

/* ========================================
   Component - Title
   ======================================== */
.c-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  padding-bottom: 8px;
  margin-bottom: 16px;
}

.c-title--features {
  margin-bottom: 8px;
}

.c-title--game-career {
  margin-bottom: 24px;
}

.c-title--what-you-get {
  margin-bottom: 8px;
}

.c-title__en {
  font-family: 'DM Sans', sans-serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
  color: #FFFFFF;
  margin: 0;
}

.c-title__en--split {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin-bottom: 10px;
}

.c-title__en--multiline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.c-title__en--multiline p {
  margin: 0;
  line-height: 1.2;
}

.c-title__arrow {
  width: 17px;
  height: 8px;
  object-fit: contain;
}

.c-title__ja {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.8;
  margin: 0;
}

.c-title__ja--flow {
  font-size: 17px;
}

.c-title__ja--why-us {
  font-size: 17px;
}

.c-title__ja--voice {
  font-size: 17px;
}

.c-title__ja--cta {
  font-size: 17px;
  line-height: 1.5;
}

.c-title__ja--faq {
  font-size: 17px;
}

.c-title__ja--company {
  font-size: 17px;
}

.c-title__ja--final-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  font-size: 17px;
  line-height: 1.5;
}

.c-title__ja--final-cta p {
  margin: 0;
}

/* ========================================
   Component - Button
   ======================================== */
.c-btn {
  border: 1px solid #FFFFFF;
  border-radius: 96px;
  padding: 0 24px;
  height: 60px;
  width: 301px;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.3s;
}

.c-btn:hover {
  opacity: 0.9;
}

.c-btn--gradient,
a.c-btn--gradient {
  background: linear-gradient(44.4deg, #AC08C9 8.457%, #E3006A 42.723%, #FF001B 91.543%);
  border-radius: 96px;
  height: 60px;
  width: 301px;
  max-width: 1240px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 22.4px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #FFFFFF;
  cursor: pointer;
}

.c-btn--outline,
a.c-btn--outline {
  background: transparent;
  border: 1px solid #FFFFFF;
  border-radius: 2px;
  height: 56px;
  width: 181px;
  padding: 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
}

/* ========================================
   Component - FV
   ======================================== */
.c-fv {
  position: relative;
  z-index: 1;
}

.c-fv__en {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(20px, 15.5vw, 66px);
  font-weight: 900;
  color: #FFFFFF;
  text-align: left;
  line-height: 1.1;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
}

.c-fv__copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
}

.c-fv__copy p {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: clamp(16px, 4.8vw, 20px);
  font-weight: 700;
  line-height: 1.5;
  color: #FFFFFF;
  margin: 0;
}



/* ========================================
   Component - Service
   ======================================== */
.c-service {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.c-service__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  color: #FFFFFF;
}

.c-service__text p:not(.c-service__logo) {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
}

.c-service__logo {
  font-family: 'Rajdhani', sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: normal;
  margin: 0;
}


/* ========================================
   Component - Worry List
   ======================================== */
.c-worry-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.c-worry-arrow {
  transform: translateX(-50%);
  width: 1px;
  height: 30px;
  background: linear-gradient(0deg, #FFF 0%, #999 100%);
  z-index: 1;
}

.c-worry-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 343px;
  max-width: 100%;
}

.c-worry-list__item {
  background: linear-gradient(to right, rgba(229, 229, 229, 0.09), rgba(238, 238, 238, 0.14));
  border: 0.8px solid #FFFFFF;
  padding: 8px;
  display: flex;
  gap: 4px;
  align-items: flex-start;
}

.c-worry-list__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.c-worry-list__text {
  flex: 1;
  min-width: 0;
}

.c-worry-list__text p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.3;
  color: #FFFFFF;
  margin: 0;
}

/* ========================================
   Component - Features
   ======================================== */
.c-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.c-features__image {
  width: 100%;
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
}

.c-features__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.c-features-list__item {
  border: 1px solid #FFFFFF;
  padding: 8px 16px;
  display: flex;
  gap: 16px;
  align-items: center;
  width: 323px;
  max-width: 100%;
}


.c-features-list__item:first-child .c-features-list__icon-wrapper {
  height: 34px;
}

.c-features-list__item:nth-child(2) .c-features-list__icon-wrapper {
  height: 26px;
  flex-direction: column;
}

.c-features-list__item:nth-child(3) .c-features-list__icon-wrapper {
  height: 38px;
  flex-direction: column;
}

.c-features-list__icon {
  width: 40px;
  height: auto;
  object-fit: contain;
}

.c-features-list__text {
  flex: 1;
  min-width: 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: #FFFFFF;
}

.c-features-list__text p {
  margin: 0;
}

.c-features-list__text--bold {
  font-size: 18px;
  font-weight: 900;
  line-height: 1.6;
}

/* ========================================
   Component - Game Career
   ======================================== */
.c-game-career {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  gap: 0;
}

.c-game-career__icon {
  width: 43.125px;
  height: 43.125px;
}

.c-game-career__text {
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  color: #FFFFFF;
  white-space: nowrap;
}

.c-game-career__text p {
  margin: 0;
}

.c-skill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  justify-content: center;
  padding: 12px 0;
  width: 343px;
  max-width: 100%;
  margin: 0 auto;
}

.c-skill-card {
  width: 163.5px;
  padding: 8px 0;
  text-align: center;
}

.c-skill-card__title {
  position: relative;
  border: 2px solid #EE2E1C;
  height: 51px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.36px;
  padding: 4px 0 6px;
}

.c-skill-card__corner {
  position: absolute;
  width: 6px;
  height: 6px;
  z-index: 1;
}

.c-skill-card__corner--top-right {
  top: -3px;
  right: -3px;
  background: linear-gradient(to bottom, #EE2E1C 0, #EE2E1C 1px, transparent 1px),
    linear-gradient(to left, #EE2E1C 0, #EE2E1C 1px, transparent 1px);
  background-size: 6px 6px, 6px 6px;
  background-position: top right, top right;
  background-repeat: no-repeat;
}

.c-skill-card__corner--top-left {
  top: -3px;
  left: -3px;
  background: linear-gradient(to bottom, #EE2E1C 0, #EE2E1C 1px, transparent 1px),
    linear-gradient(to right, #EE2E1C 0, #EE2E1C 1px, transparent 1px);
  background-size: 6px 6px, 6px 6px;
  background-position: top left, top left;
  background-repeat: no-repeat;
}

.c-skill-card__corner--bottom-right {
  bottom: -3px;
  right: -3px;
  background: linear-gradient(to top, #EE2E1C 0, #EE2E1C 1px, transparent 1px),
    linear-gradient(to left, #EE2E1C 0, #EE2E1C 1px, transparent 1px);
  background-size: 6px 6px, 6px 6px;
  background-position: bottom right, bottom right;
  background-repeat: no-repeat;
}

.c-skill-card__corner--bottom-left {
  bottom: -3px;
  left: -3px;
  background: linear-gradient(to top, #EE2E1C 0, #EE2E1C 1px, transparent 1px),
    linear-gradient(to right, #EE2E1C 0, #EE2E1C 1px, transparent 1px);
  background-size: 6px 6px, 6px 6px;
  background-position: bottom left, bottom left;
  background-repeat: no-repeat;
}

.c-skill-card__arrow {
  margin: 6px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-skill-card__arrow img {
  width: 11px;
  height: 5.176px;
}

.c-skill-card__desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  color: #FFFFFF;
}

.c-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  padding: 16px 0;
}

.c-message__chevrons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.c-message__chevron {
  width: 19.125px;
  height: 21.376px;
  background-image: url('../img/ico-chevron.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.c-message__text {
  background: linear-gradient(27.99deg, #AC08C9 8.457%, #E3006A 42.723%, #FF001B 91.543%);
  padding: 2px 8px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.44px;
  line-height: 1.5;
  margin: 0;
}

.c-message__text:last-child {
  background: linear-gradient(29.75deg, #AC08C9 8.457%, #E3006A 42.723%, #FF001B 91.543%);
}

/* ========================================
   Component - Support List
   ======================================== */
.c-support-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 343px;
  max-width: 100%;
  margin: 0 auto 16px;
}

.c-support-list__item {
  border: 1px solid #FFFFFF;
  height: 60px;
  display: flex;
  gap: 16px;
  align-items: center;
}

.c-support-list__number {
  width: 56px;
  height: 100%;
  background: rgba(255, 255, 255, 0.27);
  border-right: 1px solid #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.5;
  text-align: center;
  flex-shrink: 0;
}

.c-support-list__text {
  flex: 1;
  min-width: 0;
  padding: 6px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 48px;
}

.c-support-list__text p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  color: #FFFFFF;
  margin: 0;
}

.c-support-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding-top: 16px;
  margin-bottom: 0;
  text-align: center;
}

.c-support-footer .c-btn {
  margin-top: 0;
}

.c-support-footer__free {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
}

.c-support-footer__note {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #FFFFFF;
  margin-bottom: 10px;
}

/* ========================================
   Component - Advisor
   ======================================== */
.c-advisor {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.c-advisor__quote {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding-bottom: 8px;
  width: 100%;
}

.c-advisor__quote p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  color: #FFFFFF;
  text-align: center;
  margin: 0;
}

.c-advisor__image {
  width: 100%;
  aspect-ratio: 205/132;
  position: relative;
  overflow: hidden;
}

.c-advisor__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-advisor__info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
  padding: 6px 0;
  width: 100%;
}

.c-advisor__info-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.c-advisor__info-text p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: #FFFFFF;
  text-align: center;
  margin: 0;
}

.c-advisor__line {
  width: 75.5px;
  height: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

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

.c-advisor__message {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-left: 8px;
}

.c-advisor__message p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: #FFFFFF;
  text-align: center;
  margin: 0;
}

/* ========================================
   Component - Flow List
   ======================================== */
.c-flow-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 343px;
  max-width: 100%;
  margin: 0 auto;
}

.c-flow-list__item {
  border: 1px solid #FFFFFF;
  width: 343px;
  max-width: 100%;
  height: 99px;
  padding: 16px 24px;
  display: flex;
  gap: 20px;
  align-items: center;
}

.c-flow-list__item--step4 {
  height: 104px;
}

.c-flow-list__icon {
  width: 60px;
  height: 56px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-flow-list__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.c-flow-list__content {
  flex: 1;
}

.c-flow-list__number {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.35;
  margin-bottom: 4px;
  height: 20px;
}

.c-flow-list__text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  color: #FFFFFF;
}

.c-flow-list__item--step4 .c-flow-list__text {
  font-size: 0;
  line-height: 0;
}

.c-flow-list__item--step4 .c-flow-list__text span {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  line-height: 1.35;
  color: #FFFFFF;
  display: block;
}

.c-flow-list__item--step4 .c-flow-list__text span:first-child {
  font-size: 16px;
}

.c-flow-list__item--step4 .c-flow-list__text span:last-child {
  font-size: 18px;
}

.c-flow-list__connector {
  width: 1px;
  height: 12px;
  background: #FFFFFF;
}

.c-flow-note {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 16px;
}

.c-flow-note p {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  line-height: 1.6;
  color: #FFFFFF;
  margin: 0;
}

.c-flow-note p:first-child {
  font-size: 22px;
}

.c-flow-note p:last-child {
  font-size: 18px;
}

/* ========================================
   Component - Comparison Table
   ======================================== */
.c-comparison-table {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  padding: 2px;
}

.c-comparison-table__column {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.c-comparison-table__column--other {
  background: rgba(42, 42, 42, 0.55);
  gap: 2px;
  margin-bottom: 4px;
}

.c-comparison-table__column--us {
  background: rgba(45, 45, 45, 0.22);
}

.c-comparison-table__cell {
  background: rgba(255, 255, 255, 0.69);
  padding: 8px 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
}

.c-comparison-table__cell--other {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #141414;
  letter-spacing: 0.24px;
  line-height: 1.5;
}

.c-comparison-table__cell--header p {
  margin: 0;
}

.c-comparison-table__cell:not(.c-comparison-table__cell--header) {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #141414;
  line-height: 1.5;
}

.c-comparison-table__cell:not(.c-comparison-table__cell--header) p {
  margin: 0;
}

.c-comparison-table__column--other .c-comparison-table__cell:nth-child(2) {
  height: 89px;
}

.c-comparison-table__column--other .c-comparison-table__cell:nth-child(n+3) {
  height: 67px;
}

.c-comparison-table__cell--us {
  background: rgba(220, 0, 4, 0.34);
  border-bottom: 2px solid #DC0004;
  border-left: 4px solid #DC0004;
  border-right: 4px solid #DC0004;
  flex-direction: column;
  gap: 6px;
  color: #FFFFFF;
  box-sizing: border-box;
}

.c-comparison-table__cell--us.c-comparison-table__cell--header {
  border-top: 4px solid #DC0004;
  height: 55px;
  flex-direction: row;
  position: relative;
  margin-top: -8px;
  z-index: 1;
}

.c-comparison-table__cell--us.c-comparison-table__cell--header p {
  font-family: 'Rajdhani', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: normal;
}

.c-comparison-table__cell--us:last-child {
  border-bottom: 4px solid #DC0004;
}

.c-comparison-table__cell--us img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.c-comparison-table__cell--us p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: #FFFFFF;
  margin: 0;
}

.c-comparison-table__text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.c-comparison-table__text p {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  line-height: 1.5;
  color: #FFFFFF;
  margin: 0;
}

.c-comparison-table__text p:first-child {
  font-size: 15px;
}

.c-comparison-table__text p:last-child {
  font-size: 13px;
}

/* ========================================
   Component - Voice List
   ======================================== */
.c-voice-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
}

.c-voice-list__item {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid #FFFFFF;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.c-voice-list__profile {
  display: flex;
  gap: 20px;
  align-items: center;
}

.c-voice-list__avatar {
  width: 75px;
  height: 75px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.c-voice-list__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-voice-list__info {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.35;
  color: #FFFFFF;
}

.c-voice-list__info p {
  margin: 0;
}

.c-voice-list__text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  color: #FFFFFF;
  margin: 0;
}

.c-voice-note {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 16px;
}

.c-voice-note p {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  line-height: 1.6;
  color: #FFFFFF;
  margin: 0;
}

.c-voice-note p:first-child {
  font-size: 22px;
}

.c-voice-note p:last-child {
  font-size: 22px;
}

/* ========================================
   Component - CTA List
   ======================================== */
.c-cta-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 8px;
  margin: 24px auto 0;
  max-width: fit-content;
}

.c-cta-list__item {
  display: flex;
  gap: 6px;
  align-items: center;
}

.c-cta-list__item img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.c-cta-list__item p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: normal;
  color: #FFFFFF;
  margin: 0;
  flex: 1 0 0;
}

/* ========================================
   Component - FAQ List
   ======================================== */
.c-faq-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.c-faq-list__item {
  display: flex;
  flex-direction: column;
}

.c-faq-list__q,
.c-faq-list__a {
  display: flex;
  gap: 8px;
  align-items: baseline;
  padding: 4px 0;
}

.c-faq-list__q {
  align-items: baseline;
}

.c-faq-list__a {
  align-items: center;
}

.c-faq-list__divider {
  height: 1px;
  width: 100%;
  margin: 0;
  background: rgba(255, 255, 255, 0.68);
}

.c-faq-list__label {
  width: 32px;
  height: 32px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  line-height: 32px;
  flex-shrink: 0;
}

.c-faq-list__q .c-faq-list__label {
  font-weight: 600;
  color: #FFFFFF;
}

.c-faq-list__a .c-faq-list__label {
  font-weight: 400;
  color: #FFFEFA;
}

.c-faq-list__q p,
.c-faq-list__a p {
  flex: 1 0 0;
  min-width: 0;
  line-height: 1.5;
  color: #FFFFFF;
  margin: 0;
}

.c-faq-list__q p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.32px;
}

.c-faq-list__a p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 400;
}

/* ========================================
   Component - Company Logos
   ======================================== */
.c-company-logos {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: flex-end;
}

.c-company-logos__item {
  width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  justify-content: center;
  gap: 8px;
}

.c-company-logos__image {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-company-logos__item:first-child .c-company-logos__image {
  width: 101px;
}

.c-company-logos__item:last-child .c-company-logos__image {
  width: 42px;
}

.c-company-logos__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.c-company-logos__text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #FFFFFF;
  text-align: center;
  white-space: nowrap;
}

.c-company-logos__text p {
  margin: 0;
}

.c-company-logos__text p:last-child {
  font-weight: 700;
}

/* ========================================
   Component - Final CTA
   ======================================== */
.c-final-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding-top: 24px;
}

.c-final-cta__image {
  display: block;
  width: 181px;
  height: 56px;
  text-decoration: none;
}

.c-final-cta__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-btn--outline img {
  width: 27.417px;
  height: 27.417px;
  flex-shrink: 0;
}

/* ========================================
   Component - Footer
   ======================================== */
.c-footer {
  padding: 30px 0 10px;
  border-top: 1px solid #FFFFFF;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 20.435%, rgba(0, 0, 0, 0) 34.783%),
    linear-gradient(180deg, rgba(18, 3, 8, 0) 0%, rgba(18, 3, 8, 0.3) 19.765%, #120308 39.531%);
}

.c-footer__logo {
  font-family: 'Rajdhani', sans-serif;
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 32px;
}

.c-footer__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.c-footer__nav a,
.c-footer__nav span,
.c-footer__nav button {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: normal;
  color: #FFFFFF;
  text-decoration: none;
}

.c-footer__nav button {
  background: transparent;
  border: none;
  cursor: pointer;
  appearance: none;
}

.c-footer__social {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-bottom: 32px;
}

.c-footer__social a {
  display: block;
  text-decoration: none;
}

.c-footer__social img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.c-footer__social a:first-child img {
  width: 21px;
  height: 22px;
}

.c-footer__social a:last-child img {
  width: 28px;
  height: 28px;
}

.c-footer__info {
  background: rgba(255, 255, 255, 0.2);
  padding: 24px 20px;
  margin-bottom: 32px;
  max-width: 335px;
  margin-left: auto;
  margin-right: auto;
}

.c-footer__company {
  font-family: 'Noto Sans JP', sans-serif;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: #FFFFFF;
  margin-bottom: 9.5px;
  width: 140px;
  margin-left: auto;
  margin-right: auto;
}

.c-footer__details {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 295px;
}

.c-footer__detail-item {
  padding: 8px 0 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.c-footer__detail-item:first-child {
  padding-top: 0;
  border-top: none;
}

.c-footer__detail-label {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 28px;
  color: #FFFFFF;
  height: 22px;
  display: flex;
  align-items: center;
  margin: 0;
}

.c-footer__detail-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.c-footer__detail-content p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.35;
  color: #FFFFFF;
  margin: 0;
}

.c-footer__copyright {
  font-family: 'Noto Sans JP', sans-serif;
  text-align: center;
  font-size: 10px;
  font-weight: 400;
  line-height: normal;
  color: #FFFFFF;
  margin: 0;
}
/* ========================================
   Modal
   ======================================== */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}
.modal.is-open { display: block; }

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}

.modal__panel {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  max-width: 920px;
  width: min(920px, calc(100% - 32px));
  max-height: min(80vh, 760px);
  margin: 10vh auto 0;
  background: #fff;
  border-radius: 12px;
  overflow: auto;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  font-family: 'Noto Sans JP', sans-serif;
  color: #120308;
}

.modal__close {
  position: sticky;
  top: 0;
  display: block;
  border: 0;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

body.modal-lock {
  overflow: hidden;
}

.modal__body {
  margin-top: 20px;
}
.modal__body h3 {
  margin: 24px 0 6px;
  font-size: 16px;
}
.modal__body h4 {
  margin-top: 12px;
  font-size: 14px;
}
.modal__body p {
  line-height: 1.5;
  font-size: 14px;
  font-weight: 500;
}
.modal__body ul,
.modal__body ol {
  margin: 0.5em 0 1em;
  padding-left: 1.5em;
  font-size: 14px;
  font-weight: 500;
  font-family: 'Noto Sans JP', sans-serif;
}
.modal__body ul.none,
.modal__body ul.none li {
  list-style: none;
  padding-left: 0;
}
.modal__body p + p {
  margin-top: 1em;
}