@charset "UTF-8";
:root {
  font-size: 16px;
}

body {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  scroll-behavior: smooth;
  line-height: 1.6;
  overflow-x: hidden;
}

.liquid-h1 {
  font-size: clamp(1.75rem, 5vw, 3rem);
  line-height: 1.2;
}

.liquid-h2 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
}

.liquid-h3 {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
}

.liquid-p {
  font-size: clamp(0.9rem, 1.5vw, 1.125rem);
}

.gradient-text {
  background: linear-gradient(90deg, #00d2ff 0%, #3a7bd5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-btn {
  background: linear-gradient(90deg, #2563eb 0%, #06b6d4 100%);
  transition: all 0.3s ease;
  padding: 0.8em 2em;
}
.gradient-btn:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
  box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3);
}

section {
  padding-top: 6vw;
  padding-bottom: 6vw;
}

.fluid-container {
  width: 90%;
  max-width: 80rem;
  margin: 0 auto;
}

.nav-menu {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  z-index: 90;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  display: block;
  overflow-y: auto;
  padding: 100px 10% 60px;
}
.nav-menu.is-active {
  opacity: 1;
  visibility: visible;
}
.nav-menu .nav-menu__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2em;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
.nav-menu .nav-menu__inner a {
  transition: color 0.3s;
  font-weight: bold;
  text-decoration: none;
}
.nav-menu .nav-menu__inner a:not(.gradient-btn) {
  font-size: 0.875em;
  color: #0f172a;
  width: 100%;
  display: block;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 0.5em;
}
.nav-menu .nav-menu__inner a:not(.gradient-btn):hover {
  color: #2563eb;
}
.nav-menu .nav-menu__inner a.gradient-btn {
  text-align: center;
  order: 10;
}
@media (min-width: 1024px) {
  .nav-menu {
    position: static;
    width: auto;
    height: auto;
    background: none;
    opacity: 1;
    visibility: visible;
    display: flex;
    align-items: center;
    padding: 0;
    overflow-y: visible;
  }
  .nav-menu .nav-menu__inner {
    flex-direction: row;
    align-items: center;
    gap: 1em;
    max-width: none;
  }
  .nav-menu .nav-menu__inner a:not(.gradient-btn) {
    font-size: 0.875rem;
    border-bottom: none;
    padding-bottom: 0;
    width: auto;
  }
  .nav-menu .nav-menu__inner.gradient-btn {
    margin-top: 0;
    width: auto;
    order: 0;
  }
}

.js-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  gap: 6px;
  z-index: 100;
  position: relative;
  background: transparent;
  border: none;
  cursor: pointer;
}
.js-hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: #0f172a;
  transition: all 0.3s ease;
}
@media (min-width: 1024px) {
  .js-hamburger {
    display: none;
  }
}
.js-hamburger.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.js-hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.js-hamburger.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

body.is-fixed {
  overflow: hidden;
}

.breadcrumbs,
.breadcrumbs a {
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.4);
}

.breadcrumbs .current-item {
  color: rgba(255, 255, 255, 0.4);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  padding: 0.5em 40px;
  font-size: 0.75em;
  position: absolute;
  background: none;
  z-index: 3;
  top: 70px;
}

.breadcrumbs > span + span:before {
  content: "»";
  margin: 0 0.5em;
}

.breadcrumbs a {
  border-bottom: 1px solid;
}

.breadcrumbs a:hover {
  border-bottom: 0;
}

@media only screen and (max-width: 1200px) {
  .breadcrumbs {
    padding-left: 2em;
    padding-right: 2em;
  }
}
@media only screen and (max-width: 960px) {
  .breadcrumbs {
    font-size: 0.6em;
  }
}
@media only screen and (max-width: 768px) {
  .breadcrumbs {
    padding-left: 1em;
    padding-right: 1em;
  }
}
.hero-bg {
  background: radial-gradient(circle at top right, #1e293b, #0f172a);
  padding: 7vw 0;
  background-image: url("../img/topimg_BG.png");
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 20% 30%,
    rgba(15, 23, 42, 0.4) 0%,
    rgba(15, 23, 42, 0.8) 100%
  );
  z-index: 1;
}
.hero-bg .fluid-container {
  z-index: 2;
  width: 90%;
  position: relative;
}
.hero-bg .fluid-container h1 {
  line-height: 1.3;
}

.sp-hero-overlap {
  position: absolute;
  z-index: 30;
  pointer-events: none;
  bottom: 0;
  left: 0;
  transform: translate(-50%, 0%);
}
.sp-hero-overlap .hero-img {
  width: 80%;
  max-width: 350px;
  margin: 0 auto;
  height: auto;
  display: block;
}

.hero-visual-container {
  pointer-events: none;
  position: relative;
  width: 100%;
}
@media (min-width: 1024px) {
  .hero-visual-container .hero-visual-wrapper {
    position: absolute;
    left: 0;
    top: 0;
    transform: scale(1.9) translate(-1%, -25%);
    transform-origin: center right;
    width: 100%;
  }
}
.hero-visual-container .hero-main-img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 1023px) {
  .gradient-btn,
  .bg-white\/10 {
    width: 100%;
    padding: 1.2rem;
    padding-left: 5em;
  }
}
@media (min-width: 1024px) {
  .gradient-btn,
  .bg-white\/10 {
    width: auto;
    padding: 0.8em 2em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

.card-hover {
  transition: all 0.3s ease;
}
.card-hover:hover {
  transform: translateY(-5px);
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

#features .card-hover h3 {
  min-height: 3.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  line-height: 1.4;
}
#features .card-hover p {
  text-align: left;
}

.icon-bubble {
  width: 14em;
  height: 8em;
  background-color: #dbeafe;
  border-radius: 0.5em 0.5em 0.5em 0;
  padding: 1em 2em;
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.icon-bubble img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.icon-bubble {
  transition: transform 0.3s ease;
}
.icon-bubble:hover {
  transform: scale(1.05) rotate(-2deg);
}

#comparison .overflow-hidden {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
#comparison table {
  border-collapse: collapse;
  width: 100%;
}

#set-benefits .shadow-inner {
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
}

#contact textarea {
  padding: 1em;
}
#contact .shadow-2xl {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

#pageTitle {
  margin: 0;
  padding-top: 70px;
  background: linear-gradient(90deg, #2563eb 0%, #06b6d4 100%);
  position: relative;
}
@media only screen and (max-width: 1080px) {
  #pageTitle {
    padding-left: 1em;
    padding-right: 1em;
  }
}
@media only screen and (max-width: 768px) {
  #pageTitle {
    padding-top: 14vw;
  }
}
#pageTitle .inner {
  color: #ffffff;
  max-width: 1080px;
  margin: 0 auto;
  padding: 1em 0;
}
@media only screen and (max-width: 768px) {
  #pageTitle .inner {
    padding: 1em 0 2em;
  }
}
#pageTitle .inner .title {
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
}
#pageTitle .inner .title span {
  font-size: 1.6em;
}
@media only screen and (max-width: 768px) {
  #pageTitle .inner .title span {
    font-size: 1.3em;
  }
}

#contact {
  padding: 4vw 0 8vw;
}
#contact .baseWidth {
  width: 90%;
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}
#contact .baseWidth > p {
  line-height: 1.8;
}
@media only screen and (max-width: 768px) {
  #contact .baseWidth > p {
    text-align: center;
  }
}
#contact .cautionBox {
  margin: 2em auto;
  display: inline-block;
  text-align: left;
  padding: 2em;
  border: 1px solid #c00;
  color: #c00;
}
#contact .cautionBox ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#contact .cautionBox ul li {
  position: relative;
  padding-left: 1.5em;
}
#contact .cautionBox ul li::before {
  content: "※";
  position: absolute;
  left: 0;
}
#contact .cautionBox ul li + li {
  margin-top: 0.5em;
}
#contact .backBox {
  margin-top: 3em;
}
@media only screen and (max-width: 768px) {
  #contact .backBox {
    margin-top: 0;
  }
}
#contact .backBox a.txtLink {
  color: #2563eb;
  transition: opacity 0.3s;
}
#contact .backBox a.txtLink:hover {
  text-decoration: none;
  opacity: 0.7;
} /*# sourceMappingURL=style.css.map */
