html {
  overflow-x: clip;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #2c3e50;
  background-color: #f4f9fd;
  background-image: radial-gradient(ellipse at 10% 20%, rgba(84, 194, 240, 0.15) 0%, transparent 40%), radial-gradient(ellipse at 90% 80%, rgba(41, 181, 178, 0.15) 0%, transparent 40%), radial-gradient(ellipse at 50% 50%, rgba(243, 151, 0, 0.05) 0%, transparent 50%);
  background-attachment: fixed;
  line-height: 1.8;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
  position: relative;
  overflow-x: hidden;
}

/* --- Utility Classes --- */
/* 768px(iPad縦)はSP扱いに揃える */
@media screen and (min-width: 769px) {
  .sp-only {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
}

body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2354c2f0' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  body {
    font-size: 16px;
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  border-radius: 8px;
}

a {
  color: #54c2f0;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #3aa8d6;
}

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

.c-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #f08c33 0%, #e68200 100%);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  height: 52px;
  padding: 0 32px;
  border-radius: 26px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.c-btn:hover {
  color: #fff;
  animation: a-pulse 0.8s infinite;
}

.c-btn--accent {
  background: #8ebe45;
}

.c-btn--accent:hover {
  background: #7eb03e;
}

@keyframes a-pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

.c-btn--large {
  height: 60px;
  font-size: 18px;
  padding: 0 48px;
  border-radius: 30px;
}

@media screen and (max-width: 768px) {
  .c-btn--large {
    height: 54px;
    font-size: 16px;
    padding: 0 24px;
    width: 100%;
    box-sizing: border-box;
  }
}

.c-section-title {
  text-align: center;
  margin-bottom: 60px;
}

.c-section-title__en {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #54c2f0;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
  text-transform: uppercase;
  background: rgba(84, 194, 240, 0.1);
  padding: 4px 16px;
  border-radius: 20px;
}

.c-section-title__ja {
  display: block;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.05em;
  margin: 0;
  color: #2c3e50;
}

@media screen and (max-width: 768px) {
  .c-section-title__ja {
    font-size: 26px;
  }
}

.c-section-title--left {
  text-align: left;
  margin-left: 0;
}

.c-section-title--left .c-section-title__ja {
  text-align: left;
}

.u-asymmetric-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 120px;
}

.u-asymmetric-row:nth-child(even) {
  flex-direction: row-reverse;
}

@media screen and (max-width: 768px) {
  .u-asymmetric-row {
    flex-direction: column !important;
    gap: 40px;
    margin-bottom: 80px;
  }
}

.u-asymmetric-content {
  flex: 1;
}

.u-asymmetric-visual {
  flex: 1.2;
  position: relative;
}

.c-floating-label {
  position: absolute;
  font-family: "Inter", sans-serif;
  font-size: 180px;
  font-weight: 800;
  color: rgba(84, 194, 240, 0.05);
  line-height: 1;
  z-index: -1;
  user-select: none;
  pointer-events: none;
}

.c-floating-label--top-left {
  top: -40px;
  left: -40px;
}

.c-floating-label--bottom-right {
  bottom: -40px;
  right: -40px;
}

.c-floating-label--bottom-right-pro {
  /* PROFESSIONAL は文字数が多く、画面外にはみ出しやすいので横幅を縮める */
  transform-origin: right bottom;
  transform: scaleX(0.9);
}

.c-decorative-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.05);
  border-radius: 12px;
  padding: 60px;
  position: relative;
  overflow: hidden;
}

.c-decorative-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #54c2f0, #f39700);
}

.c-timeline {
  position: relative;
  padding-left: 40px;
}

.c-timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(84, 194, 240, 0.2);
}

.c-timeline__item {
  position: relative;
  margin-bottom: 60px;
}

.c-timeline__item::before {
  content: "";
  position: absolute;
  left: -40px;
  top: 24px;
  width: 18px;
  height: 18px;
  background: #fff;
  border: 4px solid #54c2f0;
  border-radius: 50%;
  z-index: 2;
}

/* Layout Inner Container */
.l-inner {
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .l-inner {
    padding: 0 16px;
  }
}

/* Header General */
.l-header-container {
  width: 100%;
}

/* Top Band (Logo only, non-sticky) */
.l-header-top {
  position: relative;
  width: 100%;
  height: 80px;
  background: #fff;
  z-index: 101;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.l-header-top__inner {
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  box-sizing: border-box;
}

.l-header-top__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.l-header-top__logo img {
  height: 40px;
  width: auto;
  max-width: 250px;
  border-radius: 0 !important;
}

.l-header-top__btns {
  display: flex;
  gap: 15px;
}

/* .c-btn（お問い合わせ .p-contact__inhouse-cta の c-btn--mod-3e8064 ベース）と同サイズ */
.l-header-top__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  height: 52px;
  border-radius: 26px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-sizing: border-box;
}

.l-header-top__btn--standard {
  background: linear-gradient(135deg, #f08c33 0%, #e68200 100%);
  color: #fff;
}

.l-header-top__btn--standard:hover {
  background: #e68200;
  color: #fff !important;
  animation: a-pulse 0.8s infinite;
}

.l-header-top__btn--professional {
  background: #8ebe45;
  color: #fff;
}

.l-header-top__btn--professional:hover {
  background: #7eb03e;
  color: #fff !important;
  animation: a-pulse 0.8s infinite;
}

@media screen and (max-width: 768px) {
  .l-header-top__inner {
    padding: 0 16px;
    height: 60px;
  }

  .l-header-top__logo img {
    height: 32px;
  }

  .l-header-top__btns {
    display: none;
  }
}

/* Floating Nav Band (Sticky) */
.l-header-floating {
  position: fixed;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 1140px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-radius: 40px;
  z-index: 100;
  height: 80px;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
  .l-header-floating {
    position: static;
    width: auto;
    max-width: none;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    box-shadow: none;
    height: auto;
    pointer-events: none;
    z-index: auto;
    transform: none;
    /* Add this to fix fixed child positioning */
  }

  .l-header-floating__inner {
    padding: 0;
    pointer-events: none;
    transform: none;
  }

  .l-header-floating__btn {
    display: none;
    /* Hide desktop version of button on mobile */
  }
}


.l-header-floating__inner {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 20px 0 40px;
}

@media screen and (max-width: 768px) {
  .l-header-floating__inner {
    padding: 0 10px 0 20px;
  }
}

body.is-scrolled .l-header-floating {
  top: 15px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.l-header__nav {
  display: flex;
  align-items: center;
  gap: 35px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .l-header__nav {
    display: none;
  }
}

.l-header__nav-item {
  font-size: 15px;
  font-weight: 600;
  color: #2c3e50;
  transition: color 0.3s ease;
}

.l-header__nav-item:hover {
  color: #54c2f0;
}

.l-header-floating__btn {
  margin-left: auto;
  height: 50px;
  font-size: 15px;
  font-weight: 700;
  padding: 0 40px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .l-header-floating__btn {
    margin: 0;
    width: 100%;
    max-width: 280px;
  }
}

.l-header__hamburger {
  display: none;
  background: transparent;
  border: none;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 101;
  cursor: pointer;
  padding: 0;
}

@media screen and (max-width: 768px) {
  .l-header__hamburger {
    display: block;
    position: relative;
    z-index: 200;
  }
}

.l-header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #2c3e50;
  position: absolute;
  left: 8px;
  transition: all 0.3s ease;
}

.l-header__hamburger span:nth-child(1) {
  top: 12px;
}

.l-header__hamburger span:nth-child(2) {
  top: 19px;
}

.l-header__hamburger span:nth-child(3) {
  top: 26px;
}

.l-header__hamburger.is-active span:nth-child(1) {
  top: 19px;
  transform: rotate(45deg);
}

.l-header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.l-header__hamburger.is-active span:nth-child(3) {
  top: 19px;
  transform: rotate(-45deg);
}

@media screen and (max-width: 768px) {
  .l-header-floating {
    position: static;
    transform: none;
    width: auto;
    height: auto;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    border: none;
    pointer-events: none;
    z-index: auto;
  }

  .l-header__hamburger {
    display: block;
  }

  .l-header-floating__inner {
    padding: 0;
    pointer-events: none;
    transform: none;
  }

  /* --- Mobile Navigation Overlay --- */
  .l-header__nav-sp {
    display: flex !important;
    gap: 20px;
    flex-direction: column;
    align-items: center;
    position: fixed;
    /* ヘッダー(ロゴ＋ハンバーガー)分だけ下げて、先頭リンクが隠れないようにする */
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    height: calc(100dvh - 70px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    transform: translateY(-20px);
    padding: 20px 0 24px;
    overflow-y: auto;
    /* スクロールは可能だがバーは非表示 */
    -ms-overflow-style: none; /* IE/Edge legacy */
    scrollbar-width: none; /* Firefox */
    pointer-events: none;
  }

  .l-header__nav-sp::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
  }

  .l-header__nav-sp.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .l-header__nav-sp-item {
    font-size: 18px;
    font-weight: 700;
    padding: 10px 0;
    text-align: center;
    width: 100%;
    color: #2c3e50;
    text-decoration: none;
  }

  .l-header-floating__btn-sp {
    margin: 0;
    /* width: 100%; */
    max-width: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    padding: 0 40px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 700;
  }

  body.is-menu-open {
    overflow: hidden;
  }

  /* iOS対策: オーバースクロールで背景が動くのを抑止 */
  .l-header__nav-sp {
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
}

/* スマホ/iPad: 下スワイプ(上方向スクロール)でヘッダーを再表示（iOSでも確実に効くよう fixed + transform） */
@media screen and (max-width: 1024px) {
  .l-header-top {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 201;
    transform: translateY(0);
    transition: transform 0.25s ease;
    will-change: transform;
  }

  body.is-header-hidden .l-header-top {
    transform: translateY(-100%);
  }

  /* ヘッダーがfixedになるので本文が潜らないように余白を確保 */
  .l-main {
    padding-top: 70px;
  }
}

.l-main {
  padding-top: 100px;
}

@media screen and (max-width: 768px) {
  .l-main {
    padding-top: 0;
  }

  .l-header-top {
    height: 70px;
  }
}

.p-mv {
  padding: 60px 0 100px;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .p-mv {
    padding: 20px 0 60px;
  }
}

.p-mv__inner {
  max-width: calc(1140px + 15px * 2);
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

@media screen and (max-width: 768px) {
  .p-mv__inner {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
}

.p-mv__content {
  flex: 1;
  position: relative;
  z-index: 2;
}

.p-mv__catch {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
  color: #2c3e50;
  word-break: keep-all;
  overflow-wrap: break-word;
}

@media screen and (max-width: 768px) {
  .p-mv__catch {
    font-size: 28px;
  }
}

.p-mv__line {
  display: inline-block;
}

.p-mv__accent {
  display: inline-block;
  background: linear-gradient(120deg, #54c2f0 0%, #29b5b2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.p-mv__sub {
  font-size: 18px;
  color: #7f8c8d;
  margin-bottom: 40px;
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  .p-mv__sub {
    font-size: 15px;
  }
}

.p-mv__figure {
  flex: 1.1;
  position: relative;
}

.p-mv__img {
  width: 100%;
  aspect-ratio: 4/3;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.05);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #54c2f0;
  font-weight: 600;
  font-size: 18px;
  position: relative;
  z-index: 2;
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  transition: transform 0.5s ease;
}

.p-mv__img:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.p-mv__blob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(84, 194, 240, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: 1;
}

.p-problem {
  padding: 100px 0;
}

@media screen and (max-width: 768px) {
  .p-problem {
    padding: 60px 0;
  }
}

.p-problem__inner {
  max-width: calc(1140px + 15px * 2);
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
}

.p-problem__list {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .p-problem__list {
    flex-direction: column;
  }
}

.p-problem__item {
  flex: 1;
  min-width: 280px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.05);
  border-radius: 12px;
  padding: 50px 30px 40px;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease;
}

.p-problem__item:hover {
  transform: translateY(-5px);
}

.p-problem__item::before {
  content: "";
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23f39700"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z"/></svg>') no-repeat center center/contain;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.p-problem__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  color: #2c3e50;
}

.p-solution {
  position: relative;
  padding: 120px 0;
  margin: 0;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .p-solution {
    padding: 80px 0;
  }
}

.p-solution::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(84, 194, 240, 0.1) 0%, rgba(41, 181, 178, 0.1) 100%);
  transform: skewY(-3deg);
  transform-origin: top left;
  z-index: -1;
}

.p-solution__inner {
  max-width: calc(1140px + 15px * 2);
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
  text-align: center;
}

.p-solution__lead {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #2c3e50;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .p-solution__lead {
    font-size: 20px;
  }
}

.p-merit {
  padding: 100px 0;
}

@media screen and (max-width: 768px) {
  .p-merit {
    padding: 60px 0;
  }
}

.p-merit__inner {
  max-width: calc(1140px + 15px * 2);
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.p-merit__list {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

@media screen and (max-width: 768px) {
  .p-merit__list {
    flex-direction: column;
    align-items: stretch;
  }
}

.p-merit__item {
  flex: 1;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.05);
  border-radius: 12px;
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
}

@media screen and (min-width: 769px) {
  .p-merit__item:nth-child(2) {
    margin-top: 40px;
  }

  .p-merit__item:nth-child(3) {
    margin-top: 80px;
  }
}

.p-merit__item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #54c2f0, #3aa8d6);
}

.p-merit__num {
  font-family: "Inter", sans-serif;
  font-size: 60px;
  color: rgba(84, 194, 240, 0.15);
  font-weight: 800;
  line-height: 1;
  position: absolute;
  top: 20px;
  right: 20px;
}

.p-merit__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #2c3e50;
  position: relative;
  z-index: 2;
}

.p-merit__text {
  font-size: 15px;
  color: #7f8c8d;
  position: relative;
  z-index: 2;
}

.p-cta {
  padding: 120px 0;
  text-align: center;
  position: relative;
}

@media screen and (max-width: 768px) {
  .p-cta {
    padding: 60px 0;
  }
}

.p-cta__inner {
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 40px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.05);
  border-radius: 12px;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .p-cta__inner {
    padding: 60px 16px;
    width: calc(100% - 32px);
    margin-left: 16px;
    margin-right: 16px;
  }
}

.l-footer {
  background-color: #fff;
  padding: 60px 0;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.l-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.l-footer__nav {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.l-footer__nav-link {
  font-size: 16px;
  font-weight: 500;
  color: #2c3e50;
  text-decoration: none;
  transition: color 0.3s;
}

.l-footer__nav-link--sp-ipad {
  display: none;
}

@media screen and (max-width: 1024px) {
  .l-footer__nav-link--sp-ipad {
    display: inline;
  }
}

.l-footer__nav-link:hover {
  color: #f08c33;
}

.l-footer__copy {
  font-size: 14px;
  color: #2c3e50;
  margin-top: 10px;
}


.js-fade-in {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Background Decorations */
.u-bg-decorations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.u-decoration-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.2;
  z-index: -1;
}

.u-decoration-blob--1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #54c2f0 0%, rgba(84, 194, 240, 0) 70%);
  top: -100px;
  right: -100px;
}

.u-decoration-blob--2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #f39700 0%, rgba(243, 151, 0, 0) 70%);
  bottom: -200px;
  left: -150px;
  opacity: 0.1;
}

.u-decoration-blob--3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #29b5b2 0%, rgba(41, 181, 178, 0) 70%);
  top: 20%;
  left: -50px;
}

.u-decoration-dots {
  position: absolute;
  width: 100px;
  height: 100px;
  background-image: radial-gradient(#54c2f0 2px, transparent 2px);
  background-size: 15px 15px;
  opacity: 0.15;
  z-index: -1;
}

.u-decoration-path {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  height: 100%;
  z-index: -1;
}

.u-decoration-path svg {
  width: 100%;
  height: 100%;
}

.u-section-tail {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 20px;
  z-index: 5;
}

.u-section-tail::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #ffffff;
}

.p-problem .u-section-tail::after {
  border-top-color: #ffffff;
}

.p-merit .u-section-tail::after {
  border-top-color: #f08c33;
}


.p-solution .u-section-tail::after {
  border-top-color: #ffffff;
}

/* Specific Section Adjustments for backgrounds */
.p-mv {
  position: relative;
  z-index: 1;
}

.p-problem {
  position: relative;
  z-index: 1;
}

.js-fade-in.is-active {
  opacity: 1;
}

.js-slide-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.js-slide-up.is-active {
  opacity: 1;
  transform: translateY(0);
}

.js-stagger>* {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.js-stagger.is-active>* {
  opacity: 1;
  transform: translateY(0);
}

.js-stagger>*:nth-child(1) {
  transition-delay: 0.1s;
}

.js-stagger>*:nth-child(2) {
  transition-delay: 0.2s;
}

.js-stagger>*:nth-child(3) {
  transition-delay: 0.3s;
}

.js-stagger>*:nth-child(4) {
  transition-delay: 0.4s;
}

.js-stagger>*:nth-child(5) {
  transition-delay: 0.5s;
}

.js-stagger>*:nth-child(6) {
  transition-delay: 0.6s;
}

.p-page-header {
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .p-page-header {
    padding: 60px 0;
  }
}

.p-page-header::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(84, 194, 240, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: -1;
}

.p-page-header__title {
  font-size: 42px;
  font-weight: 800;
  margin: 0;
  color: #2c3e50;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .p-page-header__title {
    font-size: 32px;
  }
}

.p-section {
  padding: 120px 0;
}

@media screen and (max-width: 768px) {
  .p-section {
    padding: 60px 0;
  }
}

.p-section__inner {
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .p-section__inner {
    padding: 0 16px;
  }
}

.p-section__box {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  padding: 50px;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .p-section__box {
    padding: 30px 16px;
  }
}

.p-section__title {
  font-size: 26px;
  font-weight: 700;
  color: #54c2f0;
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}

.p-section__title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #54c2f0, #3aa8d6);
  border-radius: 2px;
}

.p-section__text {
  font-size: 16px;
  color: #2c3e50;
  line-height: 1.8;
  margin-bottom: 0;
}

.p-section__tag {
  margin-top: 24px;
  display: inline-block;
  padding: 8px 16px;
  background: rgba(84, 194, 240, 0.1);
  border-radius: 20px;
  color: #54c2f0;
  font-weight: 700;
  font-family: "Inter", sans-serif;
}

.p-section__box--number {
  position: relative;
  padding-left: 100px;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .p-section__box--number {
    padding-left: 20px;
    padding-top: 60px;
  }
}

.p-section__box--number .p-section__num {
  position: absolute;
  left: 30px;
  top: 40px;
  font-family: "Inter", sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: rgba(84, 194, 240, 0.2);
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .p-section__box--number .p-section__num {
    left: 20px;
    top: 20px;
  }
}

.p-comparison {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  text-align: left;
}

.p-comparison__item {
  flex: 1;
  min-width: 300px;
  background: rgba(255, 255, 255, 0.7);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.05);
  border-radius: 12px;
}

.p-comparison__item--good {
  background: rgba(84, 194, 240, 0.1);
  border: 2px solid #54c2f0;
}

.p-comparison__label {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #7f8c8d;
}

.p-comparison__label--blue {
  color: #54c2f0;
}

/* Responsive Table */
@media screen and (max-width: 768px) {
  table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  th,
  td {
    /* white-space: nowrap; */
    padding: 15px 10px !important;
    font-size: 14px !important;
  }

  /* Specific adjustments for the comparison table on index.html */
  .p-solution table th:nth-child(1),
  .p-solution table td:nth-child(1) {
    position: sticky;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    z-index: 2;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.05);
  }

  .p-solution table thead tr th {
    font-size: 15px !important;
  }
}

/* Additional Responsive Utilities */
@media screen and (max-width: 768px) {
  .p-page-header {
    padding: 120px 15px 60px;
  }

  .l-header {
    padding: 0 15px;
  }

  .c-floating-label {
    font-size: 80px;
    opacity: 0.1;
  }

  .c-floating-label--top-left {
    top: -20px;
    left: -10px;
  }

  .c-floating-label--bottom-right {
    bottom: -20px;
    right: -10px;
  }

  .c-floating-label--bottom-right-pro {
    transform: scaleX(0.85);
  }

  .u-asymmetric-visual .c-decorative-card {
    padding: 30px 20px;
  }

  .c-timeline__item::before {
    left: -29px;
    width: 14px;
    height: 14px;
  }

  .c-timeline {
    padding-left: 20px;
  }

  /* Form & Contact specific */
  form {
    padding: 0 !important;
  }

  form>div {
    gap: 8px !important;
  }

  input,
  select,
  textarea {
    padding: 12px !important;
    font-size: 16px !important;
    /* Prevents iOS zoom */
  }

  /* Inline padding overrides */
  .p-section__box[style*="padding: 60px;"],
  div[style*="padding: 50px;"],
  div[style*="padding: 60px;"] {
    padding: 30px 20px !important;
  }

  /* Contact flow steps */
  .js-stagger[style*="justify-content: space-between;"] {
    flex-direction: column !important;
  }

  .js-stagger[style*="justify-content: space-between;"]>div {
    min-width: 100% !important;
    padding: 24px 20px !important;
  }

  /* Inline GRID overrides */
  div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
}

/*# sourceMappingURL=style.css.map */

/* ==========================================================================
   Roadmap Steps
   ========================================================================== */
.p-roadmap-steps {
  max-width: 900px;
  width: 100%;
  box-sizing: border-box;
  width: 100%;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
}

@media screen and (max-width: 900px) {
  .p-roadmap-steps {
    padding: 0 16px;
  }
}

.p-roadmap-item {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
  position: relative;
}

.p-roadmap-item:last-child {
  margin-bottom: 0;
}

.p-roadmap-item__side {
  flex: 0 0 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.p-roadmap-item__label {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: #ff9100;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.p-roadmap-item__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #ff9100;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.p-roadmap-item__icon svg {
  width: 38px;
  height: 38px;
  stroke: #fff;
}

.p-roadmap-item__connector {
  position: absolute;
  top: 100px;
  bottom: -40px;
  left: 50%;
  width: 0;
  border-left: 2px dashed #ddd;
  z-index: 1;
}

.p-roadmap-item:last-child .p-roadmap-item__connector {
  display: none;
}

.p-roadmap-item__content {
  flex: 1;
  padding-top: 5px;
}

.p-roadmap-item__title {
  font-size: 24px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  line-height: 1.4;
}

.p-roadmap-item__box {
  background-color: #fff;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  position: relative;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .p-roadmap-item__box {
    padding: 16px;
    border-radius: 16px;
  }
}

.p-roadmap-item__target {
  font-weight: 700;
  color: #ff9100;
  margin-bottom: 12px;
  display: block;
}

@media screen and (max-width: 768px) {
  .p-roadmap-item {
    flex-direction: column;
    gap: 0px;
  }

  .p-roadmap-item__title {
    margin-top: 20px;
  }

  .p-roadmap-item__side {
    flex-direction: row;
    gap: 20px;
    flex: 0 0 auto;
    width: 100%;
    justify-content: flex-start;
  }

  /* スマホ時は「STEPラベル」と「アイコン」を逆順にする */
  .p-roadmap-item__label {
    order: 2;
  }

  .p-roadmap-item__icon {
    order: 1;
  }

  .p-roadmap-item__connector {
    display: none;
  }

  .p-roadmap-item__icon {
    width: 60px;
    height: 60px;
  }

  .p-roadmap-item__icon svg {
    width: 28px;
    height: 28px;
  }
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.p-faq-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.p-faq-nav__item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  padding: 18px 30px;
  border-radius: 50px;
  border: 2px solid #ff9100;
  color: #ff9100;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s;
  background: #fff;
}

.p-faq-nav__item:hover,
.p-faq-nav__item.is-active {
  background: #ff9100;
  color: #fff;
  position: relative;
}

.p-faq-nav__item:hover::after,
.p-faq-nav__item.is-active::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #ff9100;
}

.p-faq-item {
  margin-bottom: 30px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #eef2f5;
}

.p-faq-item__header {
  padding: 30px 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}

/* Category specific colors for header background */
.p-faq-item--orange .p-faq-item__header {
  background: #fff7ef;
}

.p-faq-item--blue .p-faq-item__header {
  background: #f0faff;
}

.p-faq-item__badge {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ff9100;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 20px;
}

.p-faq-item--blue .p-faq-item__badge {
  background: #54c2f0;
}

.p-faq-item__question {
  flex: 1;
  font-size: 18px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0;
  line-height: 1.4;
}

.p-faq-item__body {
  background: #fff;
  padding: 30px 40px 30px 104px;
  font-size: 16px;
  line-height: 1.8;
  color: #2c3e50;
}

@media screen and (max-width: 768px) {
  .p-faq-nav {
    gap: 12px;
    margin-bottom: 40px;
    padding: 0 16px;
  }

  .p-faq-nav__item {
    width: 100%;
    min-width: auto;
    font-size: 16px;
    padding: 15px 16px;
  }

  .p-faq-item__header {
    padding: 16px;
  }

  .p-faq-item__body {
    padding: 16px;
  }

  .p-faq-item__question {
    font-size: 16px;
  }
}

/* Comparison Table Responsive */
.p-comparison {
  max-width: 1200px;
  margin: 0 auto;
}

.p-comparison-container {
  max-width: 1200px !important;
  margin: 0 auto !important;
  width: 100% !important;
}

.p-comparison__inner {
  display: flex !important;
  gap: 10px !important;
  width: 100% !important;
  align-items: stretch;
}

/* Desktop: mobile-pair wraps competitor col, should flex to fill space */
.p-comparison__mobile-pair {
  display: contents;
}

.p-comparison__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.p-comparison__col--labels {
  flex: 0 0 20% !important;
  width: 20% !important;
}

.p-comparison__col--competitor {
  flex: 1 1 0 !important;
  width: auto !important;
}

.p-comparison__col--ima {
  flex: 1 1 0 !important;
  width: auto !important;
}

.p-comparison__header {
  height: 44px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  background-color: #e8e8e8;
  color: #333;
}

.p-comparison__header--competitor {
  background-color: #7f8c8d;
  color: #fff;
  position: relative;
}

.p-comparison__header--ima {
  background: linear-gradient(90deg, #f08c33 0%, #ff6b00 100%);
  color: #fff;
  position: relative;
  box-shadow: 0 4px 15px rgba(240, 140, 51, 0.3);
  z-index: 2;
}

.p-comparison__tooltip-tail {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
}

.p-comparison__tooltip-tail--competitor {
  border-top: 12px solid #7f8c8d;
}

.p-comparison__tooltip-tail--ima {
  border-top: 12px solid #ff6b00;
}

.p-comparison__grid-wrapper {
  background-color: #e8e8e8;
  border-radius: 4px;
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  flex: 1;
}

.p-comparison__grid-wrapper--competitor {
  background-color: #fff;
  border: 1px solid #e8e8e8;
}

.p-comparison__grid-wrapper--ima {
  background-color: #fff9f2;
  border: 1px solid rgba(240, 140, 51, 0.3);
  box-shadow: 0 10px 30px rgba(240, 140, 51, 0.15);
  position: relative;
  z-index: 1;
}

.p-comparison__content-item {
  border-bottom: 1px solid #e8e8e8;
}

.p-comparison__grid-wrapper--ima .p-comparison__content-item {
  border-bottom: 1px solid #fce3cc;
}

.p-comparison__content-item:last-child {
  border-bottom: none;
}

.p-comparison__label-item,
.p-comparison__content-item {
  flex: 1;
  padding: 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
  min-height: 70px;
}

.p-comparison__label-item {
  font-weight: 700;
  color: #333;
  background-color: #e8e8e8;
  border-bottom: 1px solid #d0d0d0;
}

.p-comparison__label-item:last-child {
  border-bottom: none;
}

.p-comparison__content-text {
  font-weight: 700;
  font-size: 18px;
  color: #333;
}

.p-comparison__content-text--ima {
  color: #d96900;
}

/* Utils */
.u-visible-md {
  display: none !important;
}

/* Responsive Table */
@media screen and (max-width: 768px) {
  .u-hidden-md {
    display: none !important;
  }

  .u-visible-md {
    display: flex !important;
  }

  .p-comparison__inner {
    flex-direction: column;
    gap: 30px;
  }

  .p-comparison__col {
    width: 100% !important;
  }

  .p-comparison__mobile-pair {
    display: flex !important;
    gap: 5px !important;
    width: 100% !important;
  }

  .p-comparison__col--labels-mobile {
    width: 35% !important;
  }

  .p-comparison__col--competitor,
  .p-comparison__col--ima {
    width: 65% !important;
  }

  .p-comparison__header {
    height: 44px !important;
    font-size: 14px !important;
  }

  .p-comparison__content-text {
    font-size: 15px !important;
  }

  .p-comparison__label-item,
  .p-comparison__content-item {
    min-height: 70px;
    padding: 10px 5px !important;
  }
}

/* --- Extracted from Inline Styles --- */
.p-mv--custom-bg {
  background: linear-gradient(135deg, rgba(84, 194, 240, 0.05) 0%, rgba(41, 181, 178, 0.05) 100%);
}

.u-decoration-blob--pos-1 {
  top: -100px;
  right: -100px;
  opacity: 0.1;
}

.u-decoration-dots--pos-1 {
  top: 10%;
  left: 5%;
}

.p-mv__inner--custom {
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .p-mv__inner--custom {
    flex-direction: column;
    gap: 30px;
  }
}

/* Note: max-width removed to adhere to cursorrules 1170px */

/* --- Extracted Inline Styles --- */
.p-mv__content--mod-87b4ab {
  flex: 1;
  min-width: 450px;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .p-mv__content--mod-87b4ab {
    min-width: auto;
    width: 100%;
    text-align: center;
  }
}

.u-custom--mod-942755 {
  display: inline-block;
  border-top: 1px solid #2c3e50;
  border-bottom: 1px solid #2c3e50;
  padding: 4px 0;
  margin-bottom: 30px;
}

.u-custom--mod-870172 {
  font-size: 16px;
  font-weight: 700;
  color: #2c3e50;
  letter-spacing: 0.05em;
}

.p-mv__title--mod-05aea2 {
  line-height: 1.2;
  font-weight: 800;
  color: #2c3e50;
  margin-bottom: 30px;
}

.u-custom--mod-d851c5 {
  font-size: 32px;
  display: inline-block;
  margin-bottom: 16px;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .u-custom--mod-d851c5 {
    font-size: 24px;
  }
}

.u-custom--mod-f4bdb5 {
  font-size: 48px;
  color: #2c3e50;
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .u-custom--mod-f4bdb5 {
    font-size: 32px;
  }
}

.u-custom--mod-c0e8ef {
  font-size: 48px;
  white-space: nowrap;
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .u-custom--mod-c0e8ef {
    font-size: 32px;
    white-space: normal;
  }
}

.p-mv__sub--mod-912168 {
  font-size: 18px;
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 40px;
  font-weight: 600;
}

.c-btn--mod-4d1caf {
  width: 100%;
  max-width: 400px;
  padding: 0 16px;
}

.u-custom--mod-082871 {
  margin-left: 8px;
}

.p-mv__figure--mod-67029b {
  flex: 1.3;
  min-width: 450px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .p-mv__figure--mod-67029b {
    min-width: auto;
    width: 100%;
  }
}

.u-decoration-sweep-left--mod-a6a698 {
  position: absolute;
  top: -10%;
  left: -30%;
  width: 140%;
  height: 260px;
  background: linear-gradient(90deg, rgba(84, 194, 240, 0.2) 0%, rgba(84, 194, 240, 0) 70%);
  transform: rotate(-12deg);
  z-index: 0;
  border-radius: 100px;
  filter: blur(40px);
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .u-decoration-sweep-left--mod-a6a698 {
    width: 180%;
    left: -40%;
    height: 180px;
  }
}

.u-decoration-obi-right--mod-354d13 {
  position: absolute;
  top: 55%;
  right: -250px;
  width: 750px;
  height: 400px;
  background: linear-gradient(270deg, rgba(84, 194, 240, 0.45) 0%, rgba(84, 194, 240, 0) 85%);
  transform: rotate(5deg);
  z-index: 0;
  border-radius: 140px;
  filter: blur(35px);
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .u-decoration-obi-right--mod-354d13 {
    right: -150px;
    width: 500px;
    height: 300px;
    top: 65%;
  }
}

.u-custom--mod-28f904 {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 126, 179, 0.15) 0%, rgba(84, 194, 240, 0.1) 60%, transparent 100%);
  border-radius: 50%;
  z-index: 1;
  filter: blur(20px);
}

.u-custom--mod-dce04c {
  position: absolute;
  top: 15%;
  left: 0%;
  width: 12px;
  height: 12px;
  background: #96f08c;
  border-radius: 50%;
  z-index: 3;
}

.u-custom--mod-13c6dc {
  position: absolute;
  top: 30%;
  right: -5%;
  width: 16px;
  height: 16px;
  background: #f08c33;
  border-radius: 50%;
  z-index: 3;
}

.u-custom--mod-298feb {
  position: absolute;
  top: 45%;
  right: 10%;
  width: 8px;
  height: 8px;
  background: #54c2f0;
  border-radius: 50%;
  z-index: 3;
}

.u-custom--mod-39070e {
  width: 100%;
  max-width: 650px;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 2;
  border-radius: 40% 60% 70% 30% / 40% 40% 60% 60%;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.p-problem--mod-652503 {
  padding-top: 100px;
  padding-bottom: 150px;
  background-color: #ffffff;
  position: relative;
}

.u-decoration-dots--mod-6f4b78 {
  bottom: 10%;
  left: 5%;
}

.u-custom--mod-b217ec {
  opacity: 0.15;
}

.p-problem__inner--mod-fb983f {
  margin: 0 auto;
  position: relative;
}

.u-custom--mod-663f2e {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.c-bg-label--mod-f2e293 {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Inter', sans-serif;
  font-size: 100px;
  font-weight: 800;
  color: #f4f7f8;
  z-index: -1;
  line-height: 1;
  letter-spacing: 0.1em;
  pointer-events: none;
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  .c-bg-label--mod-f2e293 {
    font-size: 60px;
    top: -10px;
  }
}

.c-section-title__ja--mod-908221 {
  margin: 0;
  font-size: 32px;
  line-height: 1.5;
}

.u-custom--mod-221368 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.u-custom--mod-ad0692 {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  margin: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.u-custom--mod-500c48 {
  background-color: #f4f7f8;
  border-radius: 16px;
  padding: 15px 5px;
  width: 100%;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.u-custom--mod-ebec50 {
  font-size: 16px;
  font-weight: 700;
  color: #2c3e50;
  line-height: 1.6;
  margin: 0;
  text-align: center;
}

.u-custom--mod-e03dd1 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.u-custom--mod-c24822 {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 10px;
}

.u-custom--mod-ce5311 {
  font-size: 15px;
  font-weight: 700;
  color: #7f8c8d;
}

.u-custom--mod-6c9b3a {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  margin: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.u-custom--mod-87a84d {
  background-color: #f4f7f8;
  border-radius: 16px;
  padding: 15px 5px;
  width: 100%;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.u-custom--mod-334cda {
  font-size: 16px;
  font-weight: 700;
  color: #2c3e50;
  line-height: 1.6;
  margin: 0;
  text-align: center;
}

.u-custom--mod-56e1a6 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.u-custom--mod-705e7a {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 10px;
}

.u-custom--mod-e8f14f {
  font-size: 15px;
  font-weight: 700;
  color: #7f8c8d;
}

.u-custom--mod-955529 {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  margin: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.u-custom--mod-e6396d {
  background-color: #f4f7f8;
  border-radius: 16px;
  padding: 15px 5px;
  width: 100%;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.u-custom--mod-a3d6fb {
  font-size: 16px;
  font-weight: 700;
  color: #2c3e50;
  line-height: 1.6;
  margin: 0;
  text-align: center;
}

.u-custom--mod-d00841 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.u-custom--mod-dfc94c {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 10px;
}

.u-custom--mod-72a99f {
  font-size: 15px;
  font-weight: 700;
  color: #7f8c8d;
}

.p-merit--mod-0023d0 {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #f08c33;
  position: relative;
}

.u-decoration-blob--mod-541b8c {
  bottom: 0;
  right: -50px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
}

.u-decoration-dots--mod-eec825 {
  top: 5%;
  right: 5%;
  opacity: 0.2;
}

.c-section-title__ja--mod-a712b0 {
  color: #ffffff;
}

.u-custom--mod-6607c8 {
  text-align: center;
  margin-bottom: 0;
  line-height: 1.8;
  color: #ffffff;
}

.p-reasons--mod-51c7d8 {
  padding-top: 100px;
  padding-bottom: 120px;
  background: linear-gradient(135deg, rgba(84, 194, 240, 0.1) 0%, rgba(41, 181, 178, 0.1) 100%);
  position: relative;
}

.u-decoration-dots--mod-65ed0d {
  bottom: 10%;
  right: 5%;
  opacity: 0.2;
}

.c-section-title--mod-0a03a8 {
  margin-bottom: 20px;
}

.c-section-title__ja--mod-ef4deb {
  font-size: 32px;
  color: #2c3e50;
}

.u-custom--mod-21d62f {
  width: 40px;
  height: 3px;
  background-color: #4da8d1;
  margin: 0 auto 60px;
}

.u-custom--mod-182cc5 {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  text-align: center;
}

.u-custom--mod-4dd45e {
  flex: 1;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.u-custom--mod-97bc54 {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f8f9fa 0%, #edf2f7 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.u-custom--mod-361b91 {
  width: 180px;
  height: auto;
}

.u-custom--mod-d1e465 {
  font-family: 'Inter', sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: #4da8d1;
  line-height: 1;
  margin-bottom: 12px;
}

.u-custom--mod-58fb53 {
  font-size: 20px;
  font-weight: 700;
  color: #2c3e50;
  line-height: 1.4;
  margin-bottom: 20px;
}

.u-custom--mod-8c1f58 {
  font-size: 16px;
  color: #2c3e50;
  line-height: 1.7;
  text-align: justify;
  text-align-last: left;
}

.u-custom--mod-a8c570 {
  flex: 1;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.u-custom--mod-a6937a {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f8f9fa 0%, #edf2f7 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.u-custom--mod-a16461 {
  width: 180px;
  height: auto;
}

.u-custom--mod-075b02 {
  font-family: 'Inter', sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: #4da8d1;
  line-height: 1;
  margin-bottom: 12px;
}

.u-custom--mod-b81271 {
  font-size: 20px;
  font-weight: 700;
  color: #2c3e50;
  line-height: 1.4;
  margin-bottom: 20px;
}

.u-custom--mod-0107ed {
  font-size: 16px;
  color: #2c3e50;
  line-height: 1.7;
  text-align: justify;
  text-align-last: left;
}

.u-custom--mod-006505 {
  flex: 1;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.u-custom--mod-3ce05a {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f8f9fa 0%, #edf2f7 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.u-custom--mod-796725 {
  width: 180px;
  height: auto;
}

.u-custom--mod-d6793f {
  font-family: 'Inter', sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: #4da8d1;
  line-height: 1;
  margin-bottom: 12px;
}

.u-custom--mod-575da0 {
  font-size: 20px;
  font-weight: 700;
  color: #2c3e50;
  line-height: 1.4;
  margin-bottom: 20px;
}

.u-custom--mod-8930f6 {
  font-size: 16px;
  color: #2c3e50;
  line-height: 1.7;
  text-align: justify;
  text-align-last: left;
}

.p-solution--mod-bf83fe {
  padding: 120px 0;
  background-color: #ffffff;
  position: relative;
}

.u-custom--mod-9412ed {
  opacity: 0.1;
}

.u-decoration-dots--mod-db9069 {
  bottom: 5%;
  right: 8%;
}

.p-merit--mod-f8940f {
  padding: 120px 0;
  background-color: #f08c33;
  position: relative;
  overflow: hidden;
}

.c-section-title__ja--mod-b183f8 {
  color: #ffffff;
}

.u-custom--mod-98e03d {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  text-align: left;
  align-items: stretch;
  position: relative;
  padding-bottom: 0px;
}

/* iPadでは縦並び（1カラム） */
@media screen and (max-width: 1024px) {
  .u-custom--mod-98e03d {
    flex-direction: column;
  }
}

.u-custom--mod-3288c7 {
  flex: 1;
  min-width: 250px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin-bottom: 40px;
  position: relative;
}

.u-custom--mod-42b3f3 {
  width: 100%;
  height: 200px;
  background: url('../img/cost-reduction.png') center/cover no-repeat;
  position: relative;
}

.u-custom--mod-e76bfc {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.2));
}

.u-custom--mod-ae42d8 {
  background: #fff;
  color: #f08c33;
  padding: 20px 15px;
  text-align: center;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  position: relative;
}

.u-custom--mod-b11b8e {
  padding: 0 16px 25px;
  font-size: 16px;
  color: #2c3e50;
  line-height: 1.8;
  flex-grow: 1;
}

.u-custom--mod-f00e5c {
  flex: 1;
  min-width: 250px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin-bottom: 40px;
  position: relative;
}

.u-custom--mod-ca214c {
  width: 100%;
  height: 200px;
  background: url('../img/common-language.png') center/cover no-repeat;
  position: relative;
}

.u-custom--mod-b4af42 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.2));
}

.u-custom--mod-fba3f3 {
  background: #fff;
  color: #f08c33;
  padding: 20px 15px;
  text-align: center;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  position: relative;
}

.u-custom--mod-895507 {
  padding: 0 16px 25px;
  font-size: 16px;
  color: #2c3e50;
  line-height: 1.8;
  flex-grow: 1;
}

.u-custom--mod-d353c5 {
  flex: 1;
  min-width: 250px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin-bottom: 40px;
  position: relative;
}

.u-custom--mod-3d92a5 {
  width: 100%;
  height: 200px;
  background: url('../img/skill-standardization.png') center/cover no-repeat;
  position: relative;
}

.u-custom--mod-a38652 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.2));
}

.u-custom--mod-fe396c {
  background: #fff;
  color: #f08c33;
  padding: 20px 15px;
  text-align: center;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  position: relative;
}

.u-custom--mod-dafb79 {
  padding: 0 16px 25px;
  font-size: 16px;
  color: #2c3e50;
  line-height: 1.8;
  flex-grow: 1;
}

.p-cta--mod-23ef82 {
  background: linear-gradient(135deg, rgba(240, 140, 51, 0.1) 0%, rgba(142, 190, 69, 0.1) 100%);
  position: relative;
}

.u-decoration-blob--mod-6480e3 {
  top: 0;
  left: 0;
  opacity: 0.1;
}

.p-cta__inner--mod-c9f0e8 {
  max-width: 900px;
  box-sizing: border-box;
}

.c-section-title--mod-68a2d6 {
  margin-bottom: 30px;
  margin-top:0;
}

.c-section-title__ja--mod-d23373 {
  font-size: 28px;
}

.u-custom--mod-adfeb4 {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.u-custom--mod-1fa54d {
  font-size: 16px;
  font-weight: 700;
  color: #f08c33;
  margin: 0;
  background: rgba(240, 140, 51, 0.1);
  padding: 4px 12px;
  border-radius: 4px;
}

.u-custom--mod-1d0d05 {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .u-custom--mod-1d0d05 {
    display: block;
  }
}

.u-custom--mod-b5d1a8 {
  font-size: 14px;
  color: #7f8c8d;
  text-decoration: line-through;
}

.u-custom--mod-55b928 {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

@media screen and (max-width: 768px) {
  .u-custom--mod-55b928 {
    display: grid;
    gap: 0;
  }
}

.u-custom--mod-55b928-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.u-custom--mod-3766c9 {
  font-size: 20px;
  font-weight: 800;
  color: #e53e3e;
}

.u-custom--mod-2daed9 {
  font-size: 42px;
  font-weight: 800;
  color: #e53e3e;
}

.u-custom--mod-9385ec {
  font-size: 18px;
  font-weight: 800;
  color: #e53e3e;
}

.c-btn--mod-e2f30b {
  width: 100%;
  max-width: 400px;
  padding: 0 16px;
}

.u-custom--mod-3d31dd {
  margin-left: 8px;
}

/* --- Extracted Inline Styles from company.html --- */
.p-section__box--mod-1ff0cb {
  text-align: center;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 60px 16px;
  margin-bottom: 0;
  pointer-events: none;
}

.p-section__text--mod-0de802 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.8;
  color: #2c3e50;
  margin: 0;
}

.u-custom--mod-e51d40 {
  /* グラデーションは不要なので、常に単色で表示 */
  color: #f08c33 !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: currentColor !important;
}

.p-section__text--mod-cbabfa {
  margin-top: 40px;
  font-size: 16px;
  color: #2c3e50;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.p-section--mod-a36818 {
  padding-top: 0;
}

.p-section__box--mod-e74f88 {
  padding: 0;
  overflow: hidden;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  pointer-events: none;
}

.u-custom--mod-ae5bb2 {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  table-layout: fixed;
}

.u-custom--mod-56c466 {
  border-bottom: 1px solid rgba(84, 194, 240, 0.1);
}

.u-custom--mod-de4611 {
  padding: 30px;
  background-color: rgba(255, 145, 0, 0.03);
  width: 120px;
  font-weight: 700;
  color: #2c3e50;
}

@media screen and (max-width: 768px) {
  .u-custom--mod-de4611 {
    padding: 15px;
    width: 100px;
    font-size: 14px;
  }
}

.u-custom--mod-63fddc {
  padding: 30px;
}

.u-custom--mod-0abe23 {
  border-bottom: 1px solid rgba(84, 194, 240, 0.1);
}

.u-custom--mod-cbb78b {
  padding: 30px;
  background-color: rgba(255, 145, 0, 0.03);
  font-weight: 700;
  color: #2c3e50;
}

.u-custom--mod-6c57d9 {
  padding: 30px;
}

.u-custom--mod-aed006 {
  border-bottom: 1px solid rgba(84, 194, 240, 0.1);
}

.u-custom--mod-1958f8 {
  padding: 30px;
  background-color: rgba(255, 145, 0, 0.03);
  font-weight: 700;
  color: #2c3e50;
}

.u-custom--mod-783a1c {
  padding: 30px;
}

.u-custom--mod-8948b6 {
  padding: 30px;
  background-color: rgba(255, 145, 0, 0.03);
  font-weight: 700;
  color: #2c3e50;
}

.u-custom--mod-b94602 {
  padding: 30px;
}

@media screen and (max-width: 768px) {
  .u-custom--mod-63fddc,
  .u-custom--mod-6c57d9,
  .u-custom--mod-783a1c,
  .u-custom--mod-b94602 {
    padding: 15px;
    font-size: 14px;
    line-height: 1.6;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}

/* --- Extracted Inline Styles from contact.html --- */
.p-section--mod-b72138 {
  padding-bottom: 0;
}

/* お問い合わせページ：団体受講ボタン（c-btn--mod-3e8064 と同デザイン）を中央寄せ */
.p-contact__inhouse-cta {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}

.u-custom--mod-ee2589 {
  text-align: center;
  margin-bottom: 40px;
  color: #2c3e50;
  line-height: 1.8;
}

.u-custom--mod-5a89b1 {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 0px;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .u-custom--mod-5a89b1 {
    margin: 0 10px;
    flex-direction: column;
    align-items: stretch;
  }
}

.p-section__box--mod-1f46d4 {
  flex: 1;
  min-width: 300px;
  max-width: 450px;
  padding: 40px;
  text-align: center;
  border-radius: 20px;
  background: rgba(255, 255, 255, 1);
  border: 1px solid rgba(240, 140, 51, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}

.p-section__box--mod-1f46d4,
.p-section__box--mod-1686a9 {
  box-sizing: border-box;
}

.u-custom--mod-b58c8a {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #2c3e50;
}

.u-custom--mod-a0095e {
  font-size: 16px;
  margin-bottom: 24px;
  color: #2c3e50;
}

.c-btn--mod-3e8064 {
  width: 100%;
  max-width: 280px;
  pointer-events: auto;
}
@media screen and (max-width: 768px) {
  .c-btn--mod-3e8064 {
    width: auto;
    max-width: none;
    white-space: nowrap;
  }
}

.p-section__box--mod-1686a9 {
  flex: 1;
  min-width: 300px;
  max-width: 450px;
  padding: 40px;
  text-align: center;
  border-radius: 20px;
  background: rgba(255, 255, 255, 1);
  border: 1px solid rgba(142, 190, 69, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .p-section__box--mod-1f46d4,
  .p-section__box--mod-1686a9 {
    min-width: 0;
    width: 100%;
  }
}

.u-custom--mod-d58787 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #2c3e50;
}

.u-custom--mod-a35b70 {
  font-size: 16px;
  margin-bottom: 24px;
  color: #2c3e50;
}

.c-btn--mod-1a638f {
  width: 100%;
  max-width: 280px;
  pointer-events: auto;
}

@media screen and (max-width: 768px) {
  .c-btn--mod-1a638f {
    width: auto;
    max-width: none;
    white-space: nowrap;
  }
}

.c-section-title--mod-5cdbe0 {
  margin-bottom: 40px;
}

.u-custom--mod-b9e97a {
  text-align: center;
  margin-bottom: 60px;
  color: #2c3e50;
  line-height: 1.8;
}

.p-section__box--mod-5fc8d1 {
  padding: 60px;
  max-width: 800px;
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  background: #fff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
}

@media screen and (max-width: 768px) {
  .p-section__box--mod-5fc8d1 {
    padding: 30px;

  }
}

.p-section__text--mod-a6565d {
  margin-bottom: 40px;
  text-align: center;
  font-weight: 700;
  font-size: 20px;
}

.u-custom--mod-a6e228 {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  box-sizing: border-box;
}

.u-custom--mod-8e0121 {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.u-custom--mod-33410d {
  font-weight: 700;
  font-size: 16px;
  color: #2c3e50;
}

.u-custom--mod-21eccd {
  display: flex;
  gap: 16px;
  margin-bottom: 10px;
}

.u-custom--mod-f73871 {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.u-custom--mod-9916f6 {
  font-weight: 700;
  font-size: 16px;
  color: #2c3e50;
}

.u-custom--mod-7c51b9 {
  padding: 16px;
  border: 1px solid rgba(240, 140, 51, 0.3);
  border-radius: 8px;
  font-family: inherit;
  background: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.u-custom--mod-281f91 {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.u-custom--mod-1bcb51 {
  font-weight: 700;
  font-size: 16px;
  color: #2c3e50;
}

.u-custom--mod-72df9f {
  padding: 16px;
  border: 1px solid rgba(240, 140, 51, 0.3);
  border-radius: 8px;
  font-family: inherit;
  background: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.u-custom--mod-fa650f {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.u-custom--mod-176279 {
  font-weight: 700;
  font-size: 16px;
  color: #2c3e50;
}

.u-custom--mod-085159 {
  padding: 16px;
  border: 1px solid rgba(240, 140, 51, 0.3);
  border-radius: 8px;
  font-family: inherit;
  background: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.u-custom--mod-5a0590 {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.u-custom--mod-354706 {
  font-weight: 700;
  font-size: 16px;
  color: #2c3e50;
}

.u-custom--mod-5cbc64 {
  padding: 16px;
  border: 1px solid rgba(240, 140, 51, 0.3);
  border-radius: 8px;
  font-family: inherit;
  background: #fff;
  transition: all 0.3s ease;
}

.u-custom--mod-7ddbde {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.u-custom--mod-734361 {
  font-weight: 700;
  font-size: 16px;
  color: #2c3e50;
}

.u-custom--mod-eb924c {
  padding: 16px;
  border: 1px solid rgba(240, 140, 51, 0.3);
  border-radius: 8px;
  font-family: inherit;
  background: #fff;
  transition: all 0.3s ease;
  resize: vertical;
}

.u-custom--mod-4155a4 {
  text-align: center;
  margin-top: 30px;
}

.c-btn--mod-938b2e {
  border: none;
  cursor: pointer;
  width: 100%;
  max-width: 440px;
}

/* --- Extracted Inline Styles from course.html --- */
.p-section__inner--mod-cf9208 {
  position: relative;
}

.u-custom--mod-886430 {
  text-align: center;
  margin-bottom: 60px;
}

.c-section-title__ja--mod-c2bbb7 {
  font-size: 24px;
  margin-bottom: 16px;
}

.u-asymmetric-row--mod-9924be {
  margin-bottom: 0;
  align-items: flex-start;
}

.p-section__text--mod-0dc154 {
  color: #2c3e50;
  font-weight: bold;
  margin-bottom: 10px;
}

.u-custom--mod-461b1f {
  font-weight: normal;
}

.p-section__text--mod-60d635 {
  color: #2c3e50;
  font-weight: bold;
}

.u-custom--mod-dbcaa3 {
  font-weight: normal;
}

.p-section__text--mod-b63b69 {
  color: #2c3e50;
  font-weight: bold;
}

.u-custom--mod-426c2c {
  font-weight: normal;
}

.p-section__box--mod-b29ffd {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(240, 140, 51, 0.5);
  margin-top: 75px;
}

@media screen and (max-width: 768px) {
  .p-section__box--mod-b29ffd {
    margin-top: 0;
  }
}

.u-custom--mod-47940b {
  font-size: 16px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 15px;
  border-bottom: 2px solid #f08c33;
  display: inline-block;
  color: #f08c33;
}

.u-custom--mod-dd75cd {
  font-size: 16px;
  line-height: 1.8;
  color: #2c3e50;
  list-style: disc;
  margin-left: 16px;
}

.u-custom--mod-e3d15b {
  margin-bottom: 8px;
}

.u-custom--mod-330d93 {
  margin-bottom: 8px;
}

.u-custom--mod-bb9f60 {
  margin-bottom: 8px;
}

.u-custom--mod-b74cfb {
  margin-bottom: 8px;
}

.p-section--mod-97664c {
  background: rgba(255, 255, 255, 0.3);
}

.p-section__inner--mod-38d698 {
  position: relative;
}

.u-asymmetric-row--mod-bae616 {
  margin-bottom: 0;
  align-items: flex-start;
}

.p-section__text--mod-1b3b60 {
  color: #2c3e50;
  font-weight: bold;
  margin-bottom: 10px;
}

.u-custom--mod-c3de51 {
  font-weight: normal;
}

.p-section__text--mod-ce1cd2 {
  color: #2c3e50;
  font-weight: bold;
}

.u-custom--mod-0a230f {
  font-weight: normal;
}

.p-section__text--mod-ea1876 {
  color: #2c3e50;
  font-weight: bold;
}

.u-custom--mod-29a290 {
  font-weight: normal;
}

.p-section__box--mod-5bffa4 {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(142, 190, 69, 0.5);
  margin-top: 75px;
}

@media screen and (max-width: 768px) {
  .p-section__box--mod-5bffa4 {
    margin-top: 0;
  }
}

.u-custom--mod-b2f61e {
  font-size: 16px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 15px;
  border-bottom: 2px solid #8ebe45;
  display: inline-block;
  color: #8ebe45;
}

.u-custom--mod-202ca1 {
  font-size: 16px;
  line-height: 1.8;
  color: #2c3e50;
  list-style: disc;
  margin-left: 16px;
}

.u-custom--mod-af3625 {
  margin-bottom: 8px;
}

.u-custom--mod-b28977 {
  margin-bottom: 8px;
}

.u-custom--mod-cb963f {
  margin-bottom: 8px;
}

.u-custom--mod-5178d5 {
  margin-bottom: 8px;
}

.u-custom--mod-e9d6b3 {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.c-section-title--mod-a22ce8 {
  margin-bottom: 20px;
}

.u-custom--mod-c53de9 {
  text-align: left;
  font-size: 16px;
  line-height: 1.8;
  color: #2c3e50;
  margin: 0;
}

.p-cta--mod-281577 {
  padding-top: 0;
}

.p-cta__inner--mod-ef092d {
  max-width: 900px;
  box-sizing: border-box;
  text-align: center;
}

.u-custom--mod-df5066 {
  font-size: 24px;
  color: #2c3e50;
  margin-bottom: 10px;
  margin-top:0;
  font-weight: 700;
}

.u-custom--mod-f51769 {
  font-size: 20px;
  font-weight: 700;
  color: #ff9100;
  margin-bottom: 20px;
}

.u-custom--mod-f48783 {
  margin-bottom: 40px;
  color: #2c3e50;
  line-height: 1.8;
}

/* --- Extracted Inline Styles from faq.html --- */
.u-custom--mod-637a87 {
  padding-top: 40px;
}

.u-custom--mod-49643d {
  padding-top: 80px;
}

.u-custom--mod-b2513c {
  padding-top: 80px;
}

.p-cta__inner--mod-a20b1b {
  max-width: 900px;
  box-sizing: border-box;
}

.c-section-title--mod-7ae6ee {
  margin-bottom: 20px;
  margin-top:0;
}

.u-custom--mod-9c2a69 {
  margin-bottom: 40px;
  color: #2c3e50;
  line-height: 1.8;
}

/* --- Extracted Inline Styles from group.html --- */
.p-section__inner--mod-d3ad7b {
  position: relative;
}

.u-custom--mod-996ada {
  text-align: center;
  margin-bottom: 0px;
}

.c-section-title__ja--mod-5e29fd {
  font-size: 28px;
  margin-bottom: 20px;
}

.p-section__text--mod-9163c5 {
  max-width: 800px;
  margin: 0 auto;
}

.p-section--mod-850097 {
  background: rgba(255, 255, 255, 0.3);
}

.u-custom--mod-28c209 {
  position: relative;
  margin-top: 60px;
  margin-bottom: 40px;
}

.u-custom--mod-24afdd {
  position: absolute;
  top: -30px;
  left: -10px;
  font-family: 'Inter', sans-serif;
  font-size: 72px;
  font-weight: 800;
  color: #54c2f0;
  opacity: 0.5;
  line-height: 1;
  z-index: 2;
  pointer-events: none;
}

.u-custom--mod-3b5791 {
  display: flex;
  align-items: center;
  gap: 40px;
  background: #fff;
  border: 1px solid #e8edf0;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.u-custom--mod-779f49 {
  flex: 1;
  min-width: 260px;
  max-width: 380px;
}

.u-custom--mod-9acb05 {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.u-custom--mod-d25181 {
  flex: 1;
  min-width: 240px;
}

.u-custom--mod-6f4d60 {
  font-size: 20px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 16px;
  line-height: 1.4;
}

.u-custom--mod-b3a46c {
  font-size: 15px;
  line-height: 1.8;
  color: #5a6a7a;
}

.u-custom--mod-f7b8c9 {
  position: relative;
  margin-bottom: 40px;
}

.u-custom--mod-95c002 {
  position: absolute;
  top: -30px;
  right: -10px;
  font-family: 'Inter', sans-serif;
  font-size: 72px;
  font-weight: 800;
  color: #54c2f0;
  opacity: 0.5;
  line-height: 1;
  z-index: 2;
  pointer-events: none;
}

.u-custom--mod-cae6db {
  display: flex;
  align-items: center;
  gap: 40px;
  background: #fff;
  border: 1px solid #e8edf0;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1;
  flex-wrap: wrap-reverse;
}

.u-custom--mod-0c394d {
  flex: 1;
  min-width: 240px;
}

.u-custom--mod-9fa5dc {
  font-size: 20px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 16px;
  line-height: 1.4;
}

.u-custom--mod-9de7e8 {
  font-size: 15px;
  line-height: 1.8;
  color: #5a6a7a;
}

.u-custom--mod-0408f5 {
  flex: 1;
  min-width: 260px;
  max-width: 380px;
}

.u-custom--mod-5d2728 {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.u-custom--mod-d8c1dd {
  position: relative;
  margin-bottom: 40px;
}

.u-custom--mod-f6f593 {
  position: absolute;
  top: -30px;
  left: -10px;
  font-family: 'Inter', sans-serif;
  font-size: 72px;
  font-weight: 800;
  color: #54c2f0;
  opacity: 0.5;
  line-height: 1;
  z-index: 2;
  pointer-events: none;
}

.u-custom--mod-c83755 {
  display: flex;
  align-items: center;
  gap: 40px;
  background: #fff;
  border: 1px solid #e8edf0;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.u-custom--mod-753ad8 {
  flex: 1;
  min-width: 260px;
  max-width: 380px;
}

.u-custom--mod-099d65 {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.u-custom--mod-174da0 {
  flex: 1;
  min-width: 240px;
}

.u-custom--mod-1f8952 {
  font-size: 20px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 16px;
  line-height: 1.4;
}

.u-custom--mod-75a396 {
  font-size: 15px;
  line-height: 1.8;
  color: #5a6a7a;
}

.u-custom--mod-1412c6 {
  position: relative;
  margin-bottom: 20px;
}

.u-custom--mod-a57220 {
  position: absolute;
  top: -30px;
  right: -10px;
  font-family: 'Inter', sans-serif;
  font-size: 72px;
  font-weight: 800;
  color: #54c2f0;
  opacity: 0.5;
  line-height: 1;
  z-index: 2;
  pointer-events: none;
}

.u-custom--mod-3676cf {
  display: flex;
  align-items: center;
  gap: 40px;
  background: #fff;
  border: 1px solid #e8edf0;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1;
  flex-wrap: wrap-reverse;
}

.u-custom--mod-8cf6a8 {
  flex: 1;
  min-width: 240px;
}

.u-custom--mod-262637 {
  font-size: 20px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 16px;
  line-height: 1.4;
}

.u-custom--mod-173a6f {
  font-size: 15px;
  line-height: 1.8;
  color: #5a6a7a;
}

.u-custom--mod-8e5a10 {
  flex: 1;
  min-width: 260px;
  max-width: 380px;
}

.u-custom--mod-554112 {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.u-custom--mod-064c65 {
  margin-top: 120px;
}

.u-custom--mod-c82c5a {
  display: flex;
  gap: 30px;
  margin-top: 60px;
  justify-content: center;
  flex-wrap: wrap;
}

.u-custom--mod-d72ea7 {
  flex: 1;
  min-width: 300px;
  max-width: 440px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid #e8edf0;
  text-align: center;
}

.u-custom--mod-8bf677 {
  background: #4da8d1;
  padding: 24px;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.u-custom--mod-b37b71 {
  padding: 40px 30px;
  text-align: center;
}

.u-custom--mod-ad7cf7 {
  display: inline-block;
  text-align: left;
}

.u-custom--mod-a244ce {
  font-size: 16px;
  color: #5a6a7a;
  margin-bottom: 16px;
  margin-top: 0;
}

.u-custom--mod-220e61 {
  text-decoration: line-through;
}

.u-custom--mod-02b66f {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
}

.u-custom--mod-fd41db {
  font-size: 16px;
  font-weight: 700;
  color: #333333;
  margin: 0 0 4px 0;
}

.u-custom--mod-aa40cf {
  margin: 0;
  line-height: 1;
  color: #ff9100;
  font-weight: 800;
  font-family: 'Inter', sans-serif;
  white-space: normal;
}

.u-custom--mod-dc53dc {
  font-size: 42px;
  letter-spacing: -0.02em;
}

.u-custom--mod-844864 {
  font-size: 20px;
  margin-left: 2px;
}

.u-custom--mod-09ff63 {
  width: 84px;
  height: 84px;
  background-color: #ff9100;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  flex-shrink: 0;
  margin-top: 14px;
}

.u-custom--mod-307506 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  line-height: 1;
  display: flex;
  align-items: baseline;
}

.u-custom--mod-78b547 {
  font-size: 32px;
}

.u-custom--mod-4125aa {
  font-size: 18px;
}

.u-custom--mod-6529a6 {
  font-size: 14px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  line-height: 1;
  margin-top: 2px;
  letter-spacing: 0.05em;
}

.u-custom--mod-6686ff {
  font-size: 16px;
  color: #5a6a7a;
  margin-top: 12px;
  margin-bottom: 0;
}

.u-custom--mod-083bae {
  flex: 1;
  min-width: 300px;
  max-width: 440px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid #e8edf0;
  text-align: center;
}

.u-custom--mod-45374e {
  background: #4da8d1;
  padding: 24px;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.u-custom--mod-01a993 {
  padding: 40px 30px;
  text-align: center;
}

.u-custom--mod-35d0f4 {
  display: inline-block;
  text-align: left;
}

.u-custom--mod-c93553 {
  font-size: 16px;
  color: #5a6a7a;
  margin-bottom: 16px;
  margin-top: 0;
}

.u-custom--mod-4cd833 {
  text-decoration: line-through;
}

.u-custom--mod-02bf9e {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
}

.u-custom--mod-9d3d5c {
  font-size: 16px;
  font-weight: 700;
  color: #333333;
  margin: 0 0 4px 0;
}

.u-custom--mod-023675 {
  margin: 0;
  line-height: 1;
  color: #ff9100;
  font-weight: 800;
  font-family: 'Inter', sans-serif;
  white-space: normal;
}

.u-custom--mod-57ec0b {
  font-size: 42px;
  letter-spacing: -0.02em;
}

.u-custom--mod-d7a14b {
  font-size: 20px;
  margin-left: 2px;
}

.u-custom--mod-2b9760 {
  width: 84px;
  height: 84px;
  background-color: #ff9100;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  flex-shrink: 0;
  margin-top: 14px;
}

.u-custom--mod-3beebe {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  line-height: 1;
  display: flex;
  align-items: baseline;
}

.u-custom--mod-6e1ed1 {
  font-size: 32px;
}

.u-custom--mod-3d4f66 {
  font-size: 18px;
}

.u-custom--mod-58a849 {
  font-size: 14px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  line-height: 1;
  margin-top: 2px;
  letter-spacing: 0.05em;
}

.u-custom--mod-15eddc {
  font-size: 16px;
  color: #5a6a7a;
  margin-top: 12px;
  margin-bottom: 0;
}

.p-cta--mod-85197b {
  background: linear-gradient(135deg, rgba(84, 194, 240, 0.05) 0%, rgba(41, 181, 178, 0.05) 100%);
  position: relative;
}

.u-decoration-blob--mod-cca5b5 {
  top: 0;
  left: 0;
  opacity: 0.1;
}

.p-cta__inner--mod-361db9 {
  max-width: 900px;
  box-sizing: border-box;
}

.c-section-title--mod-9d40ef {
  margin-bottom: 30px;
}

.c-section-title__ja--mod-5f1227 {
  font-size: 28px;
}

.u-custom--mod-a70f70 {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.u-custom--mod-74b69b {
  font-size: 16px;
  font-weight: 700;
  color: #f08c33;
  margin: 0;
  background: rgba(240, 140, 51, 0.1);
  padding: 4px 12px;
  border-radius: 4px;
}

.u-custom--mod-06b3b8 {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.u-custom--mod-35eda1 {
  font-size: 16px;
  color: #7f8c8d;
  text-decoration: line-through;
}

.u-custom--mod-96243a {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.u-custom--mod-db5485 {
  font-size: 20px;
  font-weight: 800;
  color: #ff9100;
}

.u-custom--mod-a40379 {
  font-size: 42px;
  font-weight: 800;
  color: #ff9100;
}

.u-custom--mod-70c00f {
  font-size: 18px;
  font-weight: 800;
  color: #ff9100;
}

.c-btn--mod-bd5b18 {
  width: 100%;
  max-width: 440px;
  padding: 0 16px;
  box-sizing: border-box;
}

@media screen and (max-width: 480px) {
  .c-btn--mod-bd5b18 {
    font-size: 14px;
    padding: 0 10px;
  }
}

.u-custom--mod-3fcddc {
  margin-left: 8px;
}

/* --- Extracted Inline Styles from roadmap.html --- */
.p-section__inner--mod-479292 {
  position: relative;
  overflow-x: clip;
}

.u-custom--mod-526512 {
  text-align: center;
  margin-bottom: 60px;
}

.c-section-title__ja--mod-806ebf {
  font-size: 28px;
  margin-bottom: 20px;
}

.p-section__text--mod-50cee8 {
  max-width: 800px;
  margin: 0 auto;
}

.p-cta--mod-0e2afd {
  background: linear-gradient(135deg, rgba(84, 194, 240, 0.05) 0%, rgba(41, 181, 178, 0.05) 100%);
  position: relative;
}

.u-decoration-blob--mod-60eb25 {
  top: 0;
  left: 0;
  opacity: 0.1;
}

.p-cta__inner--mod-e56d18 {
  max-width: 900px;
  box-sizing: border-box;
}

.c-section-title--mod-e4c377 {
  margin-bottom: 30px;
}

.c-section-title__ja--mod-0bd9a7 {
  font-size: 28px;
}

.u-custom--mod-ea1df0 {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.u-custom--mod-2c749d {
  font-size: 16px;
  font-weight: 700;
  color: #f08c33;
  margin: 0;
  background: rgba(240, 140, 51, 0.1);
  padding: 4px 12px;
  border-radius: 4px;
}

.u-custom--mod-012cbf {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.u-custom--mod-47a784 {
  font-size: 14px;
  color: #7f8c8d;
  text-decoration: line-through;
}

.u-custom--mod-116463 {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.u-custom--mod-bc8238 {
  font-size: 20px;
  font-weight: 800;
  color: #e53e3e;
}

.u-custom--mod-cf0a2b {
  font-size: 42px;
  font-weight: 800;
  color: #e53e3e;
}

.u-custom--mod-a5f096 {
  font-size: 18px;
  font-weight: 800;
  color: #e53e3e;
}

.c-btn--mod-265452 {
  width: 100%;
  max-width: 440px;
  padding: 0 16px;
  box-sizing: border-box;
}

.u-custom--mod-5bdb87 {
  margin-left: 8px;
}