@media (min-width: 1600px) {
  .function li {
    padding: 16px 20px;
    font-size: 1.05rem;
  }

  .function ul li {
    width: 100%;
  }
}

@media (min-width: 2000px) {
  .function li {
    padding: 20px 24px;
    font-size: 1.1rem;
  }

  .function ul li {
    width: 100%;
  }
}

@media (min-width: 2560px) {
  body {
    font-size: 1.2rem;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.4rem;
  }

  p,
  li {
    font-size: 1.15rem;
  }

  .function li {
    padding: 24px 28px;
    font-size: 1.2rem;
  }

  .header-ul {
    font-size: 1.6rem;
    gap: 2.5rem;
  }

  .product {
    font-size: 48px;
  }

  .price {
    font-size: 34px;
  }

  .subtitle {
    font-size: 20px;
  }

  .planInfo,
  .planInfo-Essential {
    max-width: 1600px;
  }

  .function ul li {
    width: 100%;
  }

  .function {
    line-height: 2;
  }
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  background-color: #0f1115;
}
body {
  margin: 0;
  background-color: #0f1115;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  color: #111;
}
a {
  text-decoration: none;
  color: black;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
  margin: 0;
  padding: 0;
}
li {
  list-style: none;
}

.page {
  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;
  grid-column: 2;
}

.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;
  grid-column: 3;
}

.header-phone p {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #111;
  white-space: nowrap;
}

.header-call {
  display: block;
  text-align: center;
  border-right: 1px solid black;
  padding-right: 10px;
}

.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;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 0;
  justify-self: center;
  grid-column: 2;
}
.menu-btn:hover {
  background: #f0f2f5;
}
.menu-btn .bar {
  width: 22px;
  height: 2px;
  background: #111;
  border-radius: 999px;
  display: block;
}

.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(300px, 85vw);
  background: #fff;
  padding: 16px 14px;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2);
}
.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-close {
  border: none;
  background: transparent;
  font-size: 28px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 8px;
  color: #111;
}
.mobile-nav-close:hover {
  background: #f3f4f6;
}
.mobile-nav-list {
  margin: 12px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav-list a {
  display: block;
  padding: 12px 10px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
}
.mobile-nav-list a:hover {
  background: #f0f2f5;
}


.experience {
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 90px 20px 80px;
  flex: 1;
}

.img-text {
  color: rgb(255, 255, 255);
  text-align: center;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  max-width: 700px;
  margin: 0 auto;
  background: none;
  padding: 20px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 25px;
}

@keyframes product {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.04);
  }
}

@keyframes Page2 {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

#Enterprise,
#Essential {
  padding: 12px 24px;
  max-width: 300px;
  background-color: #4a5b6e;
  border: none;
  border-radius: 0.5rem;
  color: aliceblue;
  font-size: large;
  transition: all 0.2s;
  cursor: pointer;
  font-weight: 500;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

#Enterprise:hover,
#Essential:hover {
  background-color: #2ec6ff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

@keyframes shimmerDrop {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.planInfo,
.planInfo-Essential {
  display: none;
  width: 100%;
  max-width: 1500px;
  padding: 20px;
  color: white;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 30px auto 0;
  background-color: #0f1115;
  font-weight: 400;
}


.plan-video-section {
  width: 100%;
  background-color: #0f1115;
  display: none;
  padding: 100px 20px 40px;
  box-sizing: border-box;
}
.plan-video-section.show {
  display: block;
}
.plan-video-wrap {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  background: #1a1a2e;
  aspect-ratio: 16 / 9;
}
.plan-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.plan-video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1a2e;
  color: #888;
  font-size: 1rem;
  text-align: center;
}
.plan-video-placeholder.hide {
  display: none;
}

.wrapper {
  margin: 0 auto;
}

.planInfo.show,
.planInfo-Essential.show {
  display: grid;
  animation: shimmerDrop 0.7s ease-out forwards;
}

.product {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.2;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 15px;
  padding: 0 20px;
}

.price {
  font-size: 29px;
  font-weight: 500;
  text-align: center;
  margin-left: 10px;
}

.function {
  font-size: 18px;
  line-height: 1.9;
  text-align: left;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.function ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  font-weight: 500;
  font-size: 18px;
}

.function ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 16px 32px;
  padding: 0 60px;
}

.function-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  max-width: 460px;
  min-width: 0;
}

.function li {
  border-radius: 0.5rem;
  display: block;
  background: rgba(238, 243, 255, 0.06);
  border: 1px solid rgba(21, 50, 80, 0.35);
  border-radius: 0.5rem;
  padding: 10px 14px;
  color: white;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    backdrop-filter 0.25s ease,
    color 0.25s;
  backdrop-filter: blur(0px);
  z-index: 50;
}

.function li:hover {
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.info-icon {
  display: inline-block;
  transition: transform 0.3s ease;
  transform-origin: center center;
  vertical-align: middle;
  width: 14px;
  text-align: right;
  padding: 0;
}

.info-icon.active {
  transition: all 0.3s;
  transform: rotate(180deg);
}

li {
  color: white;
}

.advice {
  font-size: 14px;
  border-radius: 1.5rem;
  border: none;
  background: #e01419;
  background: #c70004;
  color: white;
  width: 250px;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.2s;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  margin-right: 40px;
  padding: 14px 28px;
}

.advice:hover {
  background: #e01419;
}

.view-func {
  margin-bottom: 35px;
  display: flex;
  font-size: 26px;
  color: #1ab7ea;
  font-weight: bold;
  justify-content: center !important;
}

.subtitle {
  color: white;
  font-size: clamp(16px, 1.8vw, 22px);
  line-height: 1.6;
  text-align: center;
  margin-top: 90px;
  cursor: default;
  word-break: keep-all;
  margin-bottom: 30px;
}

.toggle {
  color: white;
  align-self: start;
  width: 100%;
}

.toggle:hover {
  cursor: pointer;
}

#more-info {
  font-size: 8px;
}

@keyframes func {
  0% {
    color: #1ab7ea;
  }

  50% {
    color: #ffffff;
  }

  100% {
    color: #1ab7ea;
  }
}

.col {
  color: #1ab7ea;
  font-weight: bold;
}

.more-info .col {
  font-weight: 700;
}

#block{
  margin-left: 5px;
}

.planBtn {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

.product-tel {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  margin-top: 110px;
  margin-bottom: 140px;
}

.compare {
  display: none;
  color: white;
  text-align: center;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
}

#compare-explain,
#compare-Ess-explain {
  display: none;
  gap: 15px;
  margin-top:65px !important;
  max-width: 1500px;
  width: auto;
  box-sizing: border-box;
  padding: 0 24px;
  margin: 10px auto 0;
  justify-content: center;
}

#compare-explain.show,
#compare-Ess-explain.show {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  text-align: center;
  width: 100%;
  max-width: 1500px;
  margin: 20px auto 0;
  padding: 0 40px;
  box-sizing: border-box;
  gap: 24px;
  animation: compareDrop 0.7s ease-out forwards;
}

#compare-name,
#compare-Ess-name {
  display: block;
  background: #0f1115;

  border-radius: 0.5rem;
  padding: 16px 20px;
  color: white;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    backdrop-filter 0.25s ease,
    color 0.25s;
  backdrop-filter: blur(0px);
  z-index: 50;
  max-width: 700px;
  width: 100%;
  margin: 30px auto 0;
  margin-bottom: 30px;
  margin-top: 120px;
}

.compare-Ess {
  display: none;
  text-align: center;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  color: white;
}

.strength {
  margin-top: 50px;
  padding: 0 16px;
  box-sizing: border-box;
  gap: 10px;
  text-align: left;
  font-size: 16px;
  border: none;
  max-width: 25%;
  width: 25%;
  height: 100%;
  border-radius: 0.5rem;
  margin-top: 30px;
  margin-bottom: 30px;
  color: white;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.strength:hover {
  cursor: default;
}

.pmicon {
  display: inline-block;
  transition: transform 0.3s ease;
  transform-origin: center;
}

.pmicon.rotate {
  transform: rotate(180deg);
}

.sub-data img {
  margin-top: 100px !important;
  display: block;
  margin: 0 auto;
  margin-left: 20;
  border-radius: 0.5rem;
}

.select-wrapper {
  position: relative;
  display: inline-block;
  margin-top: 0px;
  margin-top: 30px;
}
.select-wrapper::after {
  content: "▾";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 0.9rem;
  color: #bbb;
}

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;
}

#choose-plan {
  font-size: 16px;
  text-align: center;
}

svg {
  width: 70px;
  height: 70px;
  display: flex;
  margin-bottom: 20px;
}

.strength svg {
  vertical-align: middle;
}

path {
  width: 70px;
  height: 70px;
}

li {
  margin-bottom: 0;
}

.more-info {
  line-height: 1.3;
  padding-left: 15px;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
  max-width: 460px;
  width: 100%;
  opacity: 0;
  max-height: 0;
  transform: translateY(10px);
  overflow: hidden;
  transition:
    opacity 0.5s ease-out,
    transform 0.5s ease-out;
  word-break: keep-all;
  word-wrap: break-word;
  font-size: 16px;
  padding-top: 8px;
}

li.open .more-info {
  opacity: 1;
  transform: translateY(0);
}

li.open .more-info li {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.5s ease-out forwards;
}

li.open .more-info li:nth-child(1) {
  animation-delay: 0s;
}
li.open .more-info li:nth-child(2) {
  animation-delay: 0.05s;
}
li.open .more-info li:nth-child(3) {
  animation-delay: 0.1s;
}
li.open .more-info li:nth-child(4) {
  animation-delay: 0.15s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes compareDrop {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.compare.show,
.compare-Ess.show {
  display: block;
  opacity: 1;
  animation: compareDrop 0.7s ease-out forwards;
}

#strength-name,
#strength-Ess-name {
  font-size: 28px;
  margin-top: 30px;
  opacity: 0;
  font-weight: bold;
  max-height: 0;
  transform: translateY(20px);
  overflow: hidden;
  transition:
    opacity 0.5s ease,
    transform 0.5s ease,
    max-height 0.5s ease;
}

#strength-name.show,
#strength-Ess-name.show {
  display: block;
  justify-content: center;
  opacity: 1;
  max-height: 500px;
  transform: translateY(0);
}

#strength-name.hide,
#strength-Ess-name.hide {
  opacity: 0;
  max-height: 0;
  transform: translateY(20px);
}


.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;
}
.info-wrap ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
  line-height: 1.6;
  margin-bottom: 10px;
  color: #111;
  font-size: 13px;
}


.last-p {
  margin-top: 15px;
  font-size: 14px;
  color: #111;
}

.last li{
  color: #111;
}


.footer-inner {
  display: none;
}

@media (max-width: 1024px) {
  .header-call {
    display: none;
  }

  #break-1024 {
    display: block;
  }

  .img-text {
    font-size: clamp(20px, 3vw, 28px);
    line-height: 1.5;
    word-break: keep-all;
  }

  .subtitle {
    font-size: clamp(14px, 2vw, 18px);
    white-space: normal;
    word-break: keep-all;
  }

  .break-1024 {
    display: block;
  }

  .more-info{
    font-size: 15px;
  }
}


@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 (min-width: 768px) and (max-width: 960px) {
  .function ul {
    flex-wrap: nowrap !important;
    flex-direction: row !important;
    padding: 0 20px !important;
  }
  .function-col {
    flex: 1;
    min-width: 0;
  }
  #compare-explain.show,
  #compare-Ess-explain.show {
    flex-direction: row !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    padding: 0 16px;
  }
  #compare-explain .strength,
  #compare-Ess-explain .strength {
    max-width: calc(50% - 8px) !important;
    width: calc(50% - 8px) !important;
    flex: 0 0 calc(50% - 8px) !important;
    padding: 16px;
    margin: 0;
    font-size: 14px;
    text-align: center;
  }
  .strength svg {
    display: block;
    margin: 0 auto 8px;
  }
  svg {
    width: 48px;
    height: auto;
  }
}

@media (max-width: 767px) {
  .page {
    padding-top: 56px;
  }
  .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;
  }

  .experience {
    padding: 40px 16px 24px;
  }
  .img-text {
    font-size: clamp(14px, 3vw, 18px);
    line-height: 1.6;
    padding: 0 12px;
    max-width: 100%;
    word-break: keep-all;
  }

  .select-wrapper {
    width: 160px;
  }
  #choose-plan {
    width: 160px;
    font-size: 14px;
    padding: 10px 30px 10px 16px;
  }

  .plan-video-section {
    padding: 30px 16px 20px;
  }

  .planInfo,
  .planInfo-Essential {
    grid-template-columns: 1fr;
    width: calc(100% - 24px);
    margin: 20px auto;
    padding: 16px;
  }

  .product {
    font-size: 26px;
    text-align: center;
    padding: 0 12px;
  }
  .price {
    font-size: 20px;
    margin-top: 8px;
    text-align: center;
  }
  .subtitle {
    font-size: 14px;
    text-align: center;
    white-space: normal;
    word-break: keep-all;
    margin-top: 20px;
  }

  .view-func {
    font-size: 1.3rem;
  }

  .function {
    padding: 0 8px;
    box-sizing: border-box;
    width: 100%;
    overflow-x: hidden;
  }
  .function ul {
    flex-direction: column;
    gap: 10px;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
  }
  .function-col {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .toggle,
  .toggle-item {
    width: 100%;
    box-sizing: border-box;
  }

  #compare-explain,
  #compare-Ess-explain {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    align-items: start;
    justify-content: center;
    padding: 0 16px;
    width: 100%;
    gap: 12px;
  }
  .strength {
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding: 16px;
    font-size: 14px;
    text-align: center;
  }
  #strength-name,
  #strength-Ess-name {
    font-size: 18px;
    margin-bottom: 16px;
    text-align: center;
  }
  svg {
    width: 52px;
    height: auto;
    display: block;
    margin: 0 auto 10px;
  }

  .planBtn {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
    margin-top: 20px;
  }
  .advice {
    width: 100%;
    max-width: 340px;
    font-size: 17px;
    padding: 16px 20px;
    margin: 0 auto;
  }
}


@media (max-width: 480px) {
  .Header {
    height: 52px;
    padding: 0 12px;
  }
  .Header img {
    width: 90px;
  }

  .experience {
    padding: 60px 12px 40px;
    min-height: 280px;
  }
  .img-text {
    font-size: 14px;
    padding: 0 8px;
  }

  h1 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  h2 {
    font-size: 1.2rem;
  }


  .plan-video-section {
    padding: 20px 12px 16px;
  }

  .planInfo,
  .planInfo-Essential {
    width: calc(100% - 16px);
    padding: 12px;
    margin: 12px auto;
  }

  .function ul {
    gap: 8px;
  }
  .function li {
    padding: 12px 14px;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: clamp(12px, 3.5vw, 14px);
    word-break: keep-all;
    min-height: 52px;
  }
  .info-icon {
    margin-left: 10px;
    flex-shrink: 0;
  }

  .strength {
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding: 14px;
  }
  #compare-explain,
  #compare-Ess-explain {
    display: grid !important;
    grid-template-columns: 1fr !important;
    align-items: center;
    gap: 8px;
  }
  svg {
    width: 48px;
  }

  .advice {
    width: 100%;
    max-width: none;
    font-size: 16px;
    padding: 14px 16px;
  }

  html,
  body {
    overflow-x: hidden;
    font-size: 15px;
    word-break: keep-all;
  }

  .break-mobile {
    display: block;
  }

  .col {
    display: inline-block;
  }
}

@media (max-width: 376px) {
  .Header {
    height: 48px;
    padding: 0 10px;
  }
  .Header img {
    width: 78px;
  }
  .function li {
    font-size: 13px;
  }
  .break-mobile {
    display: block;
  }

  .experience {
    padding: 60px 12px 40px;
    min-height: 280px;
  }
  .img-text {
    font-size: clamp(20px, 6vw, 26px);
    padding: 0 8px;
    line-height: 1.4;
    word-break: keep-all;
  }
  .select-wrapper {
    width: 170px;
    margin-top: 20px;
  }
  #choose-plan {
    width: 170px;
    font-size: 14px;
  }

  .break-mobile {
    display: block;
  }

  .subtitle {
    font-size: 12px;
    margin-top: 70px;
  }

  .more-info {
    font-size: 12px;
  }

  .function ul li {
    font-size: 13px;
  }

  #strength-name {
    font-size: 14px;
  }

  #break{
    display:inline-flex;
  }
}
@media (min-width: 768px) and (max-width: 1200px) {
  .function ul {
    display: flex !important;
    flex-wrap: wrap !important;
    flex-direction: row !important;
    gap: 24px 40px !important;
    justify-content: center !important;
    padding: 0 20px !important;
  }
  .function ul > li,
  .function-col {
    width: calc(50% - 20px) !important;
    max-width: 480px;
    min-width: 240px;
  }
  #compare-explain.show,
  #compare-Ess-explain.show {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    padding: 0 16px;
  }
  #compare-explain .strength,
  #compare-Ess-explain .strength {
    max-width: calc(50% - 8px) !important;
    width: calc(50% - 8px) !important;
    flex: 0 0 calc(50% - 8px) !important;
    padding: 16px;
    margin: 0;
    font-size: 14px;
    text-align: center;
  }
  .strength svg {
    display: block;
    margin: 0 auto 8px;
  }


}

@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;
  }
  .last img {
    width: 130px;
  }
  .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;
  }
}

@media (max-width: 760px) {
  .break-mobile {
    display: block;
  }
}


.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;
}
