* {
  box-sizing: border-box;
}

:root {
  --container: 1200px;
  --gutter: 24px;
}

body {
  height: 100%;
  margin: 0;
  color: #fff;
  background: #0f1115;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  word-break: keep-all;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #111;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
  margin: 0;
  padding: 0;
}
li {
  list-style: none;
}

.page {
  flex: 1;
  padding-top: 70px;
}

.Header {
  height: 70px;
  width: 100%;
  padding: 0 24px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid #ccc;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  background: #fff;
}

.header-lastImg {
  justify-self: start;
  display: flex;
  align-items: center;
  height: 100%;
}

.Header img {
  width: 110px;
  height: auto;
  max-height: 55px;
  object-fit: contain;
  display: block;
}

.header-ul {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 1.4rem;
  font-weight: 500;
  color: #111;
}

.header-ul li {
  display: flex;
}

.header-ul a {
  padding: 6px 12px;
  border-radius: 999px;
  transition: background 0.2s ease;
  white-space: nowrap;
}
.header-ul a:hover {
  background: #f0f2f5;
  cursor: pointer;
}
.header-phone {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-phone p {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #111;
  white-space: nowrap;
}

.header-call {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-right: 1px solid black;
  padding-right: 10px;
  height: 40px;
  line-height: 1.3;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding-left: 10px;
}
.header-cta:hover {
  opacity: 0.9;
}

.header-cta-img {
  width: 130px;
  height: 50px;
  object-fit: contain;
  display: block;
}

.menu-btn {
  display: none;
  border: none;
  background: transparent;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  justify-self: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.menu-btn:hover {
  background: #f0f2f5;
}
.menu-btn .bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #111;
  border-radius: 999px;
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}
.mobile-nav.show {
  display: block;
}
.mobile-nav-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(320px, 86vw);
  background: #fff;
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.25);
  padding: 16px 14px;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  overflow-y: auto;
  overflow-x: hidden;
}
.mobile-nav.show .mobile-nav-panel {
  transform: translateX(0);
}
.mobile-nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid #e5e7eb;
}
.mobile-nav-top strong {
  color: #111;
  font-size: 1rem;
}
.mobile-nav-close {
  border: none;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 10px;
  color: #111;
}
.mobile-nav-close:hover {
  background: #f3f4f6;
}
.mobile-nav-list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mobile-nav-list a {
  display: block;
  padding: 12px 10px;
  border-radius: 12px;
  color: #111;
  font-weight: 600;
  font-size: 1rem;
}
.mobile-nav-list a:hover {
  background: #f0f2f5;
}

.select {
  width: 100%;
  padding: 0 max(var(--gutter), calc((100vw - var(--container)) / 2));
  text-align: center;
  margin-top: 140px;
}

.select-border {
  width: min(900px, 100%);
  margin: 0 auto;
  font-size: 35px;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
  align-items: center;
}

.select-top {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(28px, 4vw, 50px);
  flex-wrap: wrap;
  justify-content: center;
}

.select-top img {
  width: clamp(140px, 18vw, 200px);
}

.select-wrapper {
  position: relative;
  display: inline-block;
}
.select-wrapper::after {
  content: "▾";
  position: absolute;
  right: 14px;
  top: 60%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 0.9rem;
  color: #bbb;
}

.select-border select {
  width: 200px;
  padding: 11px 36px 11px 18px;
  border-radius: 999px;
  border: 1px solid #444;
  background: #17191e;
  color: #fff;
  font-size: 16px;
  outline: none;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-align: center;
}

.select-message {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  margin-top: 24px;
  margin-bottom: 120px;
  text-align: center;
  font-size: 1.05rem;
  color: #fff;
}

.enter-content {
  color: #aaaaaa;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  line-height: 1.35;
  font-size: 0.95rem;
  margin-top: 0;
  width: 100%;
  padding: 0 8px;
  transition:
    max-height 0.4s ease,
    opacity 0.4s ease;
}

.enter-content.open {
  max-height: 340px;
  opacity: 1;
  margin-top: 12px;
}

.enter-video {
  width: 100%;
  max-width: var(--container);
  margin: 80px auto 0;
  overflow: hidden;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  background: #111;
}

.enter-video video {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: block;
  border-radius: 30px;
  object-fit: cover;
}

.enter-need {
  color: white;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  gap: clamp(16px, 4vw, 75px);
  flex-wrap: wrap;
}

.left-content {
  flex: 1 1 320px;
  text-align: left;
  margin-top: 70px;
}

.iteam {
  width: 100%;
  text-align: left;
}
.iteam button {
  margin-bottom: 15px;
}

.left-content button {
  width: 100%;
  max-width: 460px;
  padding: 25px 20px;
  border-radius: 15px;
  background: #17191e;
  color: white;
  margin-top: 15px;
  height: 90px;
  font-size: 20px;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.left-content button:hover {
  background-color: #2b2e36;
  transition: 0.3s;
}
.enter-align {
  width: 100%;
  display: grid;
  grid-auto-flow: column;
}

.enter-content p {
  width: 90%;
  font-size: 17px;
}

.accordion-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: inline-block;
  transition: transform 0.25s ease;
}

.accordion-icon::before,
.accordion-icon::after {
  content: "";
  position: absolute;
  background-color: #ffffff;
  border-radius: 999px;
  transition: transform 0.25s ease;
}

.accordion-icon::before {
  width: 16px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.accordion-icon::after {
  width: 2px;
  height: 16px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.iteam.open .accordion-icon {
  transform: rotate(180deg);
}
.iteam.open .accordion-icon::after {
  transform: translate(-50%, -50%) scaleY(0);
}

.enter-last {
  margin: 80px auto 0;
  padding: 40px 0 0;
  width: 100%;
  text-align: center;
}

.partner-dis {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 30px auto 0;
}

.partner-logos {
  width: 100%;
  max-width: var(--container);
  overflow: hidden;
  background-color: #ffffff;
  border-radius: 15px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  padding: 20px 0;
}

.partner-track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  animation: partnerScroll 40s linear infinite;
  will-change: transform;
}

.partner-track:nth-child(2) {
  animation-duration: 50s;
  animation-direction: reverse;
}

.partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  min-width: 120px;
}

.partner-item img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.35s ease;
}

.partner-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.12);
  filter: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.1));
}

@keyframes partnerScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.to-plan {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  margin-top: 100px;
  padding: 40px 0 0;
  text-align: center;
  font-size: 10px;
}
.to-plan h1 {
  font-size: 40px;
}

.last-btn {
  width: min(300px, 90%);
  border-radius: 10px;
  background-color: #171917;
  border: 1px solid #444;
  color: white;
  font-size: 1.2rem;
  margin: 20px 0 0;
  padding: 18px 20px;
  cursor: pointer;
}

.last-btn:hover {
  border: 1px solid white;
  background-color: #2ec6ff;
  transition: 0.3s;
}

.edu-select {
  width: 100%;
  max-width: var(--container);
  margin: 80px auto 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
  color: #ffffff;
  padding: 0 max(var(--gutter), 0px);
}

.edu-sel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.edu-sel:nth-child(even) {
  flex-direction: row-reverse;
}

.edu-content {
  flex: 1 1 420px;
  text-align: left;
  font-size: 18px;
  border-radius: 15px;
  background: #181a1f;
  padding: 30px;
  line-height: 1.4;
}

.edu-content h2 {
  margin-bottom: 16px;
  font-size: 22px;
}

.edu-sel img {
  width: min(380px, 100%);
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  flex: 1 1 320px;
}

.edu-last {
  width: 100%;
  max-width: 1000px;
  font-size: 1.2rem;
  margin: 50px auto 0;
  margin-top: 140px;
  text-align: left;
  padding: 24px;
}

.edu-last h1 {
  margin-bottom: 16px;
  text-align: center;
}

.edu-last p {
  display: flex;
  justify-content: center;
  line-height: 1.3;
  padding: 30px;
  background-color: #181a1f;
  border-radius: 15px;
}

.enter-select,
.edu-select,
.uni-select {
  opacity: 0;
  transform: translateY(20px);
  visibility: hidden;
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
}

.enter-select.show,
.edu-select.show,
.uni-select.show {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  margin-top: 80px;
}
.uni-select {
  max-width: 1200px;
  margin: 80px 0 auto;
}

.uni-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.uni-header-top {
  width: 80%;
  margin: 0 auto;
  display: flex;
  gap: 16px;
}
.uni-header-top2 {
  width: 100%;
  display: flex;
  gap: 16px;
  margin-top: 30px;
}

.uni-box {
  flex: 1;
  background-color: #17191e;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.uni-last {
  width: 100%;
  max-width: 1000px;
  font-size: 1.2rem;
  margin: 50px auto 0;
  margin-top: 140px;
  text-align: left;
  padding: 24px;
}
.uni-middle {
  height: 200px;
}
.uni-last p {
  display: flex;
  justify-content: center;
  line-height: 1.3;
  padding: 30px;
  width: 80%;
  margin: 0 auto;
  background-color: #181a1f;
  border-radius: 15px;
}

.uni-box img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}
.uni-middle div h1 {
  margin: 0;
}
.uni-box video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.uni-box-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.uni-box h2 {
  font-weight: 600;
  line-height: 1.45;
  color: #f0f2f7;
}
.uni-text {
  font-size: 16px;
  padding: 20px;
}
.uni-box p {
  font-size: 1rem;

  line-height: 1.3;
  color: #8b8fa8;
}

.uni-share img {
  width: 45%;
  flex-shrink: 0;
  border-radius: 15px;
}

.uni-share {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 48px;
  margin-top: 30px;
}
.enter-mar {
  margin-top: 150px;
}
.enter-mar div {
  margin-top: 50px;
}
.enter-mar div {
  width: 90%;
  margin: 0 auto;
  margin-top: 50px;
}
.enter-mar div img {
  width: 40%;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  flex: 0;
}
.uni-select h1 {
  text-align: center;
  font-size: 40px;
}
.partner-logos2 {
  width: 80%;
  max-width: var(--container);
  overflow: hidden;
  background-color: #ffffff;
  border-radius: 15px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  padding: 20px 0;
}
.last {
  display: flex;
  width: 100%;
  justify-content: space-around;
  padding: 75px 20px;
  background-color: #f5f5f5;
  box-sizing: border-box;
  align-items: center;
  font-size: 14px;
  margin-top: auto;
  flex-shrink: 0;
}

.footer-pc {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  gap: 40px;
}

.last img {
  width: 230px;
}

.last-font {
  line-height: 20px;
}

.last-link {
  display: flex;
  flex-wrap: wrap;
  font-size: 15px;
  margin-bottom: 0.5rem;
  gap: 2px;
}
.last-link li {
  padding: 0 10px;
  border-right: 1px solid #ccc;
}
.last-link li:first-child {
  padding-left: 0;
}
.last-link li:last-child {
  border-right: none;
}
.last-link a {
  color: #111;
  text-decoration: none;
  font-size: 14px;
}
.last-link a:hover {
  text-decoration: underline;
}

.info-wrap {
  display: flex;
  gap: 43px;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-top: 10px;
}
.info-wrap ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
  line-height: 1.6;
  margin-bottom: 10px;
  color: #111;
  font-size: 13px;
}
.info-wrap ul:first-child {
  margin-top: 0;
}

.last-p {
  margin-top: 15px;
  font-size: 14px;
  color: #111;
}

.footer-inner {
  display: none;
}

@media (max-width: 768px) {
  .last {
    display: block;
    padding: 32px 20px;
    background-color: #f5f5f7;
    border-top: 1px solid #d2d2d7;
  }

  .footer-pc {
    display: none;
  }

  .footer-inner {
    display: block;
    padding: 0 20px;
  }

  .footer-accordion-wrap {
    display: flex;
    flex-direction: column;
  }

  .footer-group {
    border-bottom: 1px solid #d2d2d7;
  }
  .footer-group:first-child {
    border-top: 1px solid #d2d2d7;
  }

  .footer-group-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #1d1d1f;
    text-align: left;
  }

  .footer-arrow {
    font-size: 12px;
    color: #6e6e73;
    transition: transform 0.25s ease;
    display: inline-block;
  }
  .footer-group.open .footer-arrow {
    transform: rotate(180deg);
  }

  .footer-group-list {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .footer-group.open .footer-group-list {
    max-height: 300px;
  }
  .footer-group-list li {
    padding: 10px 0;
    font-size: 13px;
    color: #6e6e73;
  }
  .footer-group-list a {
    color: #6e6e73;
    text-decoration: none;
    font-size: 13px;
  }
  .footer-group-list a:hover {
    color: #1d1d1f;
  }

  .footer-bottom {
    border-top: 1px solid #d2d2d7;
    padding: 16px 0 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .footer-bottom p {
    font-size: 11px;
    color: #6e6e73;
    margin: 0;
    line-height: 1.6;
  }
  .footer-copy {
    margin-top: 6px !important;
    color: #1d1d1f !important;
    font-weight: 500;
  }

  .Header {
    grid-template-columns: auto 1fr auto;
    padding: 0 14px;
    height: 56px;
  }
  .header-ul {
    display: none;
  }
  .menu-btn {
    display: inline-flex;
    justify-self: center;
  }
  .header-cta-img {
    width: 80px;
    height: 36px;
    display: block;
  }
  .header-call {
    display: none;
  }
}

@media (max-width: 960px) {
  .header-call {
    display: none;
  }
  .header-cta {
    height: 44px;
    padding-left: 0;
  }
  .header-cta-img {
    width: 100px;
    height: 44px;
  }
  .sidebar {
    width: 180px;
    min-width: 180px;
  }
  .main {
    padding: 24px 24px;
  }
  .sidebar {
    width: 180px;
    min-width: 180px;
  }
  .main {
    padding: 24px 24px;
  }
  .page {
    padding-top: 30px;
  }
  .select {
    margin-top: 145px;
  }
  .partner-iteam img {
    height: 25px;
  }
  .partner-track {
    gap: 0;
  }
  .select-wrapper::after {
    top: 59%;
  }
}

@media (max-width: 768px) {
  .Header {
    grid-template-columns: auto 1fr auto;
    padding: 0 14px;
    height: 56px;
  }
  .header-ul {
    display: none;
  }
  .menu-btn {
    display: inline-flex;
    justify-self: center;
  }
  .header-cta-img {
    width: 80px;
    height: 36px;
    display: block;
  }
  .header-call {
    display: none;
  }

  .sidebar {
    display: none !important;
  }
  .hoho {
    flex-direction: column;
    align-items: stretch;
    margin-top: 56px;
  }

  .mobile-api-tabs {
    display: block;
    position: sticky;
    top: 40px;
    z-index: 100;
    background: #fff;
    border-bottom: 2px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  }
  .mobile-api-tabs-label {
    padding: 20px 16px 0;
    font-size: 11px;
    font-weight: 700;
    color: #888;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .mobile-api-tabs-scroll {
    display: flex;
    overflow-x: auto;
    padding: 8px 12px 10px;
    gap: 6px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .mobile-api-tabs-scroll::-webkit-scrollbar {
    display: none;
  }
  .mobile-api-tab {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    color: #555;
    background: #f0f2f5;
    border: 1px solid transparent;
    cursor: pointer;
    transition:
      background 0.2s,
      color 0.2s,
      border-color 0.2s;
    text-decoration: none;
    flex-shrink: 0;
  }
  .mobile-api-tab:hover {
    background: #e0eeff;
    color: #1a8cff;
  }
  .mobile-api-tab.active {
    background: #1a8cff;
    color: #fff;
    border-color: #1a8cff;
    font-weight: 600;
  }

  .main {
    padding: 20px 14px;
    border-left: none;
  }
  .section > h1 {
    font-size: clamp(1.1rem, 5vw, 1.4rem);
  }
  .iteam-btn h3 {
    font-size: clamp(0.8rem, 3.2vw, 0.9rem);
  }
  .enter-content p {
    font-size: clamp(0.75rem, 2.8vw, 0.85rem);
  }

  .last {
    flex-direction: row;
    justify-content: space-between;
    padding: 32px 20px;
    gap: 16px;
  }
  .last img {
    width: 130px;
  }
  .last-link {
    font-size: clamp(0.7rem, 2.8vw, 0.9rem);
    flex-wrap: wrap;
    gap: 4px;
  }
  .last-link li {
    padding: 0 6px;
  }
  .info-wrap ul {
    font-size: clamp(0.7rem, 2.6vw, 0.82rem);
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .Header {
    grid-template-columns: 1fr auto 1fr;
    height: 56px;
    padding: 0 10px;
  }
  .menu-btn {
    display: flex;
    justify-self: center;
  }
  .header-phone {
    justify-self: end;
    display: flex;
  }
  .mobile-api-tab {
    font-size: 12px;
    padding: 6px 12px;
  }
  .main {
    padding: 16px 12px;
  }
  .group-header span {
    font-size: 11px;
  }
  .iteam-btn {
    padding: 10px 14px;
  }
  .Header img {
    width: 90px;
  }
  .select-border p {
    font-size: 15px;
  }
}

@media (max-width: 360px) {
  html {
    font-size: 14px;
  }
  .Header {
    height: 48px;
    padding: 0 10px;
  }

  .mobile-api-tab {
    font-size: 11px;
    padding: 5px 10px;
  }
}

@media (min-width: 601px) and (max-width: 905px) {
  .Header {
    grid-template-columns: 1fr auto 1fr;
  }
  .header-ul {
    display: none !important;
  }
  .menu-btn {
    display: flex !important;
    justify-self: center;
  }
  .header-call {
    display: none;
  }
}

@media (max-width: 767px) {
  .Header {
    grid-template-columns: 1fr auto 1fr;
    padding: 0 14px;
    height: 56px;
  }
  .header-ul {
    display: none;
  }
  .menu-btn {
    display: inline-flex;
    justify-self: center;
  }
  .header-cta-img {
    width: 80px;
    height: 36px;
  }
  .header-call {
    display: none;
  }
}

@media (max-width: 1024px) {
  .header-call {
    display: none;
  }
}

@media (max-width: 768px) {
  .enter-align {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .left-content {
    flex: unset;
    width: 100%;
    margin-top: 30px;
  }

  .left-content button {
    max-width: 100%;
    height: auto;
    min-height: 60px;
    font-size: 16px;
    padding: 16px 16px;
    white-space: normal;
    word-break: keep-all;
    margin-top: 0;
    margin-bottom: 0;
  }

  .left-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
  }

  .iteam button {
    margin-bottom: 0;
  }

  .left-content button h3 {
    font-size: 16px;
    line-height: 1.4;
  }

  .edu-sel {
    flex-direction: column !important;
    gap: 0;
    width: 90%;
    margin: 0 auto;
    background: #17191e;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 60px;
  }

  .edu-sel:nth-child(even) {
    flex-direction: column !important;
  }

  .edu-sel > img,
  .edu-sel > video {
    order: -1;
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    height: auto !important;
    aspect-ratio: unset;
    object-fit: cover;
    display: block;
    align-self: stretch;
  }

  .edu-sel > .edu-content {
    order: 1;
    flex: unset;
    width: 100%;
    font-size: 15px;
    padding: 20px;
    background: transparent;
    border-radius: 0;
    margin-top: 0;
  }
  .select-border p {
    font-size: 23px;
  }
  .edu-content h2 {
    font-size: 18px;
  }

  .uni-header-top,
  .uni-header-top2 {
    flex-direction: column;
    width: 90%;
    margin: 0 auto;
    gap: 40px;
    margin-top: 16px;
  }

  .uni-box {
    width: 90%;
    margin: 0 auto;
    flex: unset;
  }

  .uni-text {
    padding: 16px;
    font-size: 14px;
  }

  .uni-box h2 {
    font-size: 17px;
  }

  .uni-box p {
    font-size: 14px;
  }

  .uni-select h1 {
    font-size: 18px;
  }
  .to-plan h1 {
    font-size: 18px;
  }
  .uni-last {
    padding: 16px;
    margin-top: 60px;
  }

  .uni-last p {
    width: 100%;
    padding: 20px;
    font-size: 14px;
  }

  .uni-share {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .uni-share img {
    width: 100%;
  }

  .enter-mar {
    margin-top: 60px;
    padding: 0 16px;
  }

  .enter-mar div img {
    width: 100%;
    border-radius: 16px;
  }

  .edu-last,
  .uni-last {
    margin-top: 60px;
  }

  .edu-last h1,
  .enter-last h1,
  .uni-last h1 {
    font-size: 1.3rem;
  }

  .edu-last p {
    width: 100%;
    padding: 16px;
    font-size: 14px;
  }

  .select {
    padding: 0 16px;
  }

  .select-message {
    padding: 0 16px;
    margin-bottom: 60px;
  }

  .enter-need {
    width: 100%;
    padding: 0 16px;
  }
}


.scroll-top-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  padding: 10px 22px;
  border: 1.5px solid #ccc;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.scroll-top-btn:hover {
  background: #111;
  color: #fff;
  border-color: #111;
  transform: translateY(-2px);
}
.scroll-top-btn--mobile {
  width: 100%;
  justify-content: center;
  margin-top: 14px;
  font-size: 14px;
}