@charset "UTF-8";
/* ====== Base ====== */
* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", "Segoe UI", Arial, sans-serif, system-ui, -apple-system;
  color: #393939;
  padding-top: 90px;
}

p {
  margin: 0;
}

.container {
  width: min(1100px, 100% - 48px);
  margin: 0 auto;
}

ul {
  list-style: none;
}

.is-disabled {
  pointer-events: none !important;
}

/* ====== Header ====== */
.site-header {
  position: fixed;
  /* change sticky -> fixed */
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  height: 90px;
  z-index: 9999;
  will-change: transform;
  transition: transform 0.25s ease;
}

.site-header.is-hidden {
  transform: translateY(-110%);
}

/* reduce motion */
@media (prefers-reduced-motion: reduce) {
  .site-header {
    transition: none !important;
  }
}
.header-inner {
  height: 100%;
  padding: 0 30px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand img {
  height: 70px;
  width: auto;
  display: block;
}

.nav {
  margin-left: auto;
  display: flex;
  gap: 50px;
  align-items: center;
}

.nav a {
  text-decoration: none;
  color: #222;
  font-size: 18px;
  font-weight: 500;
}

.header-cta {
  margin-left: 14px;
}

.header-burger,
.mnav {
  display: none;
}

.sp-only {
  display: none !important;
}

@media (max-width: 767px) {
  .sp-only {
    display: flex !important;
  }
}
@media (max-width: 1023px) {
  /* ===== Hamburger ===== */
  .header-burger {
    width: 45px;
    height: 55px;
    border: 0;
    background: transparent;
    cursor: pointer;
    border-radius: 12px;
  }
  .header-burger__bars {
    position: relative;
    display: inline-block;
    border-radius: 999px;
  }
  .header-burger__bars::before, .header-burger__bars::after {
    content: "";
    position: absolute;
    left: 0;
    width: 24px;
    height: 2.5px;
    background: #111987;
    border-radius: 999px;
    transition: transform 0.22s ease, top 0.22s ease, opacity 0.22s ease;
  }
  .header-burger__bars::before {
    top: -5px;
  }
  .header-burger__bars::after {
    top: 5px;
  }
  /* ===== Mobile drawer ===== */
  .mnav {
    position: fixed;
    inset: 0;
    top: 90px;
    background: rgba(0, 0, 0, 0.3294117647);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .mnav__inner {
    width: 100%;
    margin: 0 auto;
    display: grid;
    background: linear-gradient(34.52deg, #101987 0.35%, #3D85FA 89.17%);
    padding: 0 40px 40px 40px;
  }
  .mnav__link {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    line-height: 2;
    padding: 20px 0 10px 0;
    border-bottom: 1px solid white;
  }
  .mnav__link::after {
    content: "";
    width: 10px;
    height: 10px;
    border-right: 1.5px solid #fff;
    border-bottom: 1.5px solid #fff;
    transform: rotate(45deg);
    margin-left: 15px;
  }
  /* OPEN STATE */
  .site-header.is-menu-open .mnav {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .site-header.is-menu-open .header-burger__bars {
    background: transparent;
  }
  .site-header.is-menu-open .header-burger__bars::before {
    top: 0;
    transform: rotate(45deg);
  }
  .site-header.is-menu-open .header-burger__bars::after {
    top: 0;
    transform: rotate(-45deg);
  }
  body.is-locked {
    overflow: hidden;
  }
  .site-header {
    height: 70px;
  }
  body {
    padding-top: 70px;
  }
  .header-inner {
    gap: 0;
  }
  .mnav {
    display: block;
    top: 70px;
  }
  .nav {
    display: none;
  }
  .header-cta {
    margin-left: auto;
  }
  .header-burger {
    display: flex;
    place-items: center;
    justify-content: center;
    margin-left: 0;
    align-items: center;
  }
  .mnav {
    display: block;
    height: 100vh;
  }
}
/* ====== 3D Button ====== */
.btn3d {
  --btn: #FF8000;
  --btn-shadow: #D35500;
  --btn-text: #fff;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  color: var(--btn-text);
  background: var(--btn);
  border-radius: 999px;
  font-weight: 700;
  /* the "3D" */
  box-shadow: 0 3px 0 var(--btn-shadow);
  transform: translateY(0);
  transition: transform 0.08s ease, box-shadow 0.08s ease, background 0.15s ease;
}
@media (hover: hover) and (pointer: fine) {
  .btn3d:hover {
    background: #FFAA00;
  }
}
.btn3d:active {
  transform: translateY(3px);
  box-shadow: 0 0 0 var(--btn-shadow);
}
.btn3d:after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 3px 0 0 10px;
  background-image: url("/files/user/salesview/img/vector-right.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  right: 50px;
}

.btn3d__icon {
  display: inline-grid;
  place-items: center;
  font-size: 20px;
}
.btn3d__icon img.dwnl-icon {
  height: 30px;
  width: auto;
}
.btn3d__icon img.dwnl-icon.small {
  height: 21px;
  width: auto;
}

.btn3d--small {
  padding: 10px 25px 10px 0px;
  font-size: 18px;
  white-space: nowrap;
  height: 50px;
  font-weight: 700;
  width: 30rem;
  max-width: 287px;
  justify-content: center;
  gap: 15px;
  letter-spacing: 0.1em;
}
.btn3d--small:after {
  content: "";
  width: 12px;
  height: 12px;
  right: 20px;
}

.btn3d--large {
  padding: 0 30px;
  font-size: 20px;
  margin-top: 30px;
  width: 383px;
  height: 92px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.6;
  box-shadow: 0 7px 0 var(--btn-shadow);
  gap: 0px;
}
.btn3d--large:active {
  transform: translateY(7px);
  box-shadow: 0 0 0 var(--btn-shadow);
}
.btn3d--large .btn3d__icon {
  margin-right: 15px;
}

@media (max-width: 1023px) {
  .header-inner {
    padding: 0 20px;
    gap: 0px;
  }
  .brand img {
    height: 40px;
  }
  .btn3d--small.header-cta {
    height: 40px;
    padding: 10px 15px;
    font-size: 14px;
    gap: 12px;
    width: 190px;
    padding-right: 30px;
  }
}
/* ====== Hero ====== */
.hero {
  position: relative;
  max-height: 910px;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  min-height: 715px;
  padding: 40px 0 64px;
  z-index: 2;
  overflow: visible;
}

.hero-bleed {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-left {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.hero-tags span {
  background: #D7E7FF;
  color: #101F8F;
  padding: 5px 10px;
  border-radius: 5px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.6;
}
.hero-tags em {
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
}

.hero-title {
  margin: 25px 0 60px 0;
  font-size: 32px;
  line-height: 1.6;
  font-weight: 700;
}
.hero-title .blue {
  color: #1670FF;
  font-size: clamp(26px, 2.6vw, 46px);
}

.hero-title span.wide {
  margin: 0 1px 0 2px;
}

.hero-title span.tight {
  letter-spacing: -5px;
  margin-left: -5px;
}

.hero-title__big {
  display: inline-block;
  font-size: 46px;
  font-weight: 700;
  line-height: 1.6;
}

.hero-salesview {
  width: fit-content;
  position: absolute;
  top: 142%;
}
.hero-salesview .salesview-img {
  width: 400px;
  max-width: 100%;
  height: auto;
  display: block;
}

.hero-right {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-girl {
  position: absolute;
  right: -15vw;
  top: -80px;
  width: 798px;
  min-height: 600px;
  object-fit: contain;
  z-index: 1;
  height: auto;
}

.fv-abstract {
  position: absolute;
  width: auto;
  height: 90vh;
  left: 0;
  top: -14%;
}

.hero-machines {
  position: absolute;
  right: -20px;
  bottom: 30px;
  width: clamp(520px, 60vw, 695px);
  height: auto;
  display: block;
  z-index: 2;
}

.hero-blueband {
  position: absolute;
  right: 0;
  bottom: 0px;
  height: 220px;
  width: 100vw;
  background: linear-gradient(110deg, #00032B -5.53%, #1670FF 42.37%, rgba(22, 112, 255, 0) 62.07%);
  transform: rotate(180deg);
  z-index: 2;
}

.hero-blueband-small {
  position: absolute;
  left: -7%;
  bottom: 0px;
  top: 115%;
  background: linear-gradient(6.96deg, rgba(22, 112, 255, 0) 4.77%, #1670FF 22.72%, #00032B 41.37%, #1670FF 60.69%, rgba(22, 112, 255, 0) 82.14%);
  height: 5px;
  z-index: 2;
  width: 55%;
}

/* ===== LOGO LOOP ===== */
.logo-loop {
  overflow: hidden;
  background: white;
  padding: 30px 0;
  position: relative;
}

.logo-track {
  display: flex;
  width: max-content;
  gap: 80px;
  animation: logoScroll 30s linear infinite;
}

.logo-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-item img {
  height: 70px;
  width: auto;
}

@keyframes logoScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.hero-salesview-sp,
.machines-sp {
  display: none;
}

/* ====== Responsive ====== */
@media (max-width: 1023px) {
  .nav {
    display: none;
  }
  .hero-inner {
    min-height: 760px;
    padding-top: 35px;
  }
  .hero-left {
    width: 100%;
  }
  .hero-title .blue {
    font-size: 32px;
  }
  .hero-girl {
    right: clamp(-45%, -50vw, -20px);
    top: -80px;
    width: clamp(752px, 74vw, 1200px);
  }
  .hero-blueband {
    background: linear-gradient(110deg, #00032B -5.53%, #1670FF 42.37%, rgba(22, 112, 255, 0) 272.07%);
    height: 37%;
  }
  .hero-salesview .salesview-img {
    width: 330px;
  }
  .hero-blueband-small {
    top: 105%;
  }
  .hero-machines {
    right: 18px;
    bottom: 0px;
    width: min(660px, 84vw);
    right: 50%;
    transform: translate(50%);
  }
  .container {
    width: 90%;
  }
  .hero-title {
    font-size: 26px;
  }
  .hero-title__big {
    font-size: 32px;
  }
  .btn3d--large {
    display: none;
  }
  .pc-img {
    display: none;
  }
  .hero-salesview {
    top: 115%;
  }
}
@media (max-width: 767px) {
  .hero {
    background: url(/files/user/salesview/img/hero-bg-sp.jpg) center center/cover no-repeat;
    max-height: 690px;
  }
  .hero-tags {
    gap: 7px;
  }
  .hero-tags span {
    padding: 3px 5px;
    font-size: 14px;
  }
  .hero-tags em {
    font-size: 14px;
  }
  .hero-title {
    font-size: 18px;
    margin: 25px 0 20px 0;
    white-space: nowrap;
  }
  .hero-title .blue {
    font-size: 26px;
  }
  .hero-title__big {
    font-size: 26px;
  }
  .pc-img-only {
    display: none;
  }
  .hero-salesview {
    display: none;
  }
  .hero-bleed {
    display: none;
  }
  .hero-blueband-small {
    left: -10%;
    bottom: 0px;
    top: 32%;
    background: linear-gradient(10deg, #00032B -5.53%, #1670FF 22.37%, rgba(22, 112, 255, 0) 62.07%);
    height: 3px;
    width: 100%;
  }
  .hero-salesview-sp {
    display: flex;
    width: clamp(350px, 65vw, 100%);
  }
  .machines-sp {
    display: flex;
    width: auto;
    background: linear-gradient(180deg, #00032B 0%, #1670FF 100%);
    flex-direction: column;
    position: relative;
    padding: 70px 0 0 0;
  }
  .machines-sp img {
    width: 100%;
    height: auto;
  }
  .btn3d--large {
    width: 85%;
    margin: -20px auto 0 auto;
    height: 70px;
    padding: 20px 25px;
    font-size: 16px;
    max-width: 320px;
    display: flex;
  }
  .btn3d__icon img.dwnl-icon {
    height: 24px;
  }
  .logo-track {
    gap: 50px;
  }
  .pc-only {
    display: none !important;
  }
}
@media (max-width: 375px) {
  .hero-title .blue {
    font-size: 24px;
  }
  .hero-blueband-small {
    left: 0%;
  }
}
@media (min-width: 1600px) {
  .hero-inner {
    margin: 0 0 0 15%;
  }
}
/* ===== Worries Section ===== */
.worries {
  position: relative;
  padding: 100px 0 200px;
  background: linear-gradient(180deg, #A4BEFF 0%, #EBF3FF 100%);
  clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
}
.worries__container {
  position: relative;
  z-index: 2;
}
.worries {
  /* Heading */
}
.worries__heading {
  text-align: center;
  margin-bottom: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.worries__small {
  margin: 0 0 25px;
  font-weight: 700;
  font-size: 32px;
  color: #393939;
}
.worries__title {
  margin: 0;
  font-weight: 700;
  font-size: clamp(28px, 3.2vw, 32px);
  line-height: 1.25;
  color: #393939;
  width: fit-content;
}
.worries__underline {
  height: 5px;
  margin: 10px auto 0;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}
.worries__blue {
  color: #1670FF;
  font-weight: 700;
  font-size: 50px;
}
.worries__hl {
  background: linear-gradient(transparent 75%, #FFF826 75%);
  padding: 0;
  font-size: 28px;
  font-weight: 700;
}
.worries__grid {
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: center;
  align-items: center;
  gap: 10px 20px;
  max-width: 920px;
  margin: 0 auto;
}
.worries__card {
  background: #fff;
  border-radius: 5px;
  padding: 30px 0;
  height: 137px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 340px;
}
.worries__line {
  margin: 0;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.6;
  color: #393939;
  text-align: center;
}
.worries__line + .worries__line {
  margin-top: 5px;
}
.worries__decor img {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}
.worries__dots--left {
  left: 0;
  top: 35%;
  width: clamp(120px, 12vw, 170px);
  transform: translateY(-50%);
  height: 125px;
}
.worries__dots--right {
  right: 70px;
  top: 10%;
  width: clamp(120px, 12vw, 170px);
  height: 90px;
}
.worries__human {
  bottom: 22px;
  width: clamp(120px, 12vw, 180px);
}
.worries__human--left {
  left: 0;
  height: 160px;
}
.worries__human--right {
  right: 0;
  height: 185px;
}
.worries {
  /* Responsive */
}
@media (max-width: 1023px) {
  .worries__people {
    display: flex !important;
  }
}
@media (max-width: 1023px) {
  .worries {
    padding: 64px 0;
  }
  .worries__grid {
    max-width: 720px;
    gap: 10px 20px;
  }
  .worries__line {
    font-size: 18px;
  }
  .worries__card {
    min-height: 124px;
    padding: 20px 22px;
  }
  .worries__people {
    width: 100%;
    margin-top: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .worries__people img {
    width: auto;
    height: 120px;
  }
}
@media (max-width: 767px) {
  .worries {
    clip-path: polygon(0 0, 100% 0, 100% 93%, 50% 100%, 0 93%);
    padding: 70px 0 40px 0;
  }
  .worries__title {
    font-size: 20px;
  }
  .worries__blue {
    font-size: 30px;
  }
  .worries__underline {
    width: 100%;
    height: 2px;
  }
  .worries__heading {
    margin-bottom: 30px;
  }
  .worries__small {
    margin-bottom: 10px;
    font-size: 20px;
  }
  .worries__grid {
    max-width: 560px;
    gap: 10px;
  }
  .worries__card {
    width: 42vw;
    height: 115px;
    padding: 15px;
  }
  .worries__line {
    font-size: 14px;
  }
  .worries__hl {
    font-size: 18px;
    background: linear-gradient(transparent 75%, #FFF826 75%);
    padding: 0;
  }
  .worries__people {
    width: 100%;
    margin-top: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .worries__people img {
    width: auto;
    height: 120px;
  }
}

/* =========================
   SOLUTION SECTION 
   ========================= */
.solution {
  position: relative;
  overflow: hidden;
  padding: 230px 0 100px;
  background: radial-gradient(900px 520px at 50% 10%, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0) 60%), linear-gradient(180deg, #1018d6 0%, #08108a 55%, #070a4e 100%);
  color: #fff;
  margin-top: -150px;
  z-index: -1;
}
.solution::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 40%;
  background: url(/files/user/salesview/img/solution-floor.png) no-repeat center bottom;
  background-size: 100% 165%;
  pointer-events: none;
  z-index: 1;
}
.solution__inner {
  position: relative;
  z-index: 2;
}
.solution {
  /* ---- Head ---- */
}
.solution__head {
  text-align: center;
  margin-bottom: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.solution__lead {
  margin: 0 0 15px;
  font-weight: 700;
  font-size: clamp(28px, 5vw, 50px);
}
.solution__title {
  margin: 0;
  font-weight: 700;
  font-size: clamp(28px, 5vw, 50px);
  line-height: 1.15;
  width: fit-content;
  border-bottom: 5px solid #1670FF;
  padding-bottom: 10px;
}
.solution__brand {
  color: #FF8000;
  font-weight: 700;
  font-size: clamp(50px, 6vw, 72px);
}
.solution__titleLine {
  width: 100%;
  height: 5px;
  margin: 10px auto 0;
  background: #1670FF;
}
.solution {
  /* ---- Catch lines ---- */
}
.solution__catch {
  margin: 0 auto;
  text-align: left;
}
.solution__catchSmall {
  margin: 0 0 30px;
  font-weight: 700;
  font-size: 26px;
  text-decoration: underline;
  text-underline-offset: 10px;
  text-decoration-color: #FF8000;
}
.solution__catchBig {
  margin: 0;
  font-weight: 700;
  font-size: clamp(18px, 3.2vw, 40px);
  display: inline-flex;
  gap: 0;
  flex-wrap: wrap;
  align-items: center;
  padding-bottom: 5px;
  border-bottom: 2px solid #FF8000;
}
.solution__quote {
  white-space: nowrap;
}
.solution {
  /* ---- Middle visual ---- */
}
.solution__visual {
  width: min(1370px, 100%);
  margin: -90px auto 0;
  display: grid;
  place-items: center;
  z-index: 2;
  position: relative;
  padding: 0 1%;
}
.solution__visualImg {
  width: 100%;
  height: auto;
}
.solution {
  /* ---- White card ---- */
}
.solution__cardWrap {
  margin: 60px auto 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.solution__card {
  width: min(950px, 100%);
  background: #fff;
  border-radius: 10px;
  padding: 30px 50px 30px 80px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 240px;
  box-shadow: 0px 0px 70px 0px #003CFF;
}
.solution__cardText {
  margin: 0;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.8;
  color: #1670FF;
}
.solution__hl {
  background: linear-gradient(transparent 75%, #FFF826 65%);
  padding: 0 6px;
  color: #FF8000;
  font-size: 40px;
  font-weight: 700;
}
.solution__big-text {
  font-size: 36px;
}
.solution__cardIllust {
  width: min(240px, 22vw);
  height: auto;
  display: block;
}
.solution {
  /* ---- Foot text ---- */
}
.solution__footText {
  margin: 50px auto 0;
  text-align: center;
  font-weight: 700;
  font-size: 30px;
}
@media (max-width: 1023px) {
  .solution__visual {
    margin: -30px auto 0;
  }
}
@media (max-width: 767px) {
  .solution {
    padding: 250px 5% 150px 5%;
  }
  .solution::after {
    background: url("/files/user/salesview/img/floor-sp.png") center center no-repeat;
    background-size: cover;
    height: 77%;
  }
  .solution .solution__title.sp-only {
    font-size: 28px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: baseline;
    margin: 10px 0;
  }
  .solution__inner.container {
    width: 100%;
  }
  .solution__lead {
    font-size: 28px;
    margin: 0;
  }
  .solution__title {
    padding-bottom: 4px;
  }
  .solution__brand {
    font-size: 50px;
  }
  .solution__catch {
    text-align: center;
  }
  .solution__card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 30px 20px 20px 20px;
    display: flex;
    flex-direction: column;
  }
  .solution__cardText {
    font-size: 24px;
    line-height: 1.6;
  }
  .solution__cardIllust {
    margin: 0 auto;
    width: min(170px, 44vw);
    margin-top: 30px;
  }
  .solution__visualImg.sp-only {
    margin-top: 0px;
  }
  .solution__catch.sp-only {
    display: flex;
    flex-direction: column;
    font-size: 18px;
    width: 95%;
    margin: 40px 0 50px 0;
    gap: 10px;
    z-index: 3;
    position: relative;
  }
  .solution__catchSmall {
    font-size: 18px;
    text-align: left;
    text-decoration: none;
    border-bottom: 1px solid #FF8000;
    padding-bottom: 10px;
    margin: 0;
  }
  .solution__catchBig {
    font-size: 28px;
    text-align: left;
    border-bottom: 1px solid #FF8000;
    width: fit-content;
  }
  .solution__cardWrap {
    margin: 0;
  }
  .solution__big-text.sp-only {
    font-size: 30px;
    color: #1670FF;
    font-weight: 700;
    text-align: center;
    margin-top: 10px;
  }
  .solution__footText {
    margin-top: 40px;
    font-size: 18px;
  }
}

/* =========================
   Features Section
========================= */
.sv-menu5 {
  background: #eaf3ff;
  padding: 100px 0 0 0;
}
.sv-menu5__inner {
  max-width: 870px;
}
.sv-menu5__head {
  text-align: center;
  margin-bottom: 40px;
}
.sv-menu5__title {
  margin: 0;
  font-weight: 800;
  font-size: clamp(28px, 3.2vw, 44px);
  letter-spacing: 0.02em;
  color: #3a3a3a;
}
.sv-menu5__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sv-menu5__brand {
  font-weight: 900;
}
.sv-menu5__num {
  color: #ff8a00;
  font-weight: 900;
  margin: 0 0.05em;
}
.sv-menu5__line {
  width: min(820px, 92%);
  height: 4px;
  margin: 16px auto 0;
  background: #1670ff;
  border-radius: 999px;
}
.sv-menu5__grid {
  gap: 40px;
  align-items: start;
  margin-top: 10px;
}
.sv-menu5__desc {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding-top: 6px;
}
.sv-menu5__row {
  gap: 20px;
}
.sv-menu5__subtitle {
  font-size: 16px;
  padding: 10px 2%;
  background-color: #458CFF;
  color: white;
  border-radius: 999px;
  max-width: 225px;
  text-align: center;
  width: 100%;
}
.sv-menu5__text {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  text-align: left;
  width: 100%;
}
.sv-menu5__noteMark {
  font-size: 10px;
  margin-left: 0.35em;
  white-space: nowrap;
  font-weight: 300;
}
.sv-menu5 {
  /* floating badge */
}
.sv-menu5__badge {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-55%);
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.18));
}
.sv-menu5 {
  /* bottom bar */
}
.sv-menu5__bar {
  position: relative;
  margin-top: 40px;
  background: #C8DDFF;
  border-radius: 5px;
  padding: 20px 26px;
  text-align: center;
  line-height: 1.8;
  font-size: 18px;
  font-weight: 500;
}
.sv-menu5__barBadges {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  gap: 10px;
}
.sv-menu5__barBadges img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.18));
}
.sv-menu5 {
  /* footnotes */
}
.sv-menu5__foot {
  margin-top: 15px;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.8;
}
.sv-menu5__foot p {
  margin: 0;
}
.sv-menu5 {
  /* responsive */
}
@media (min-width: 768px) and (max-width: 1023px) {
  .sv-menu5__grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .sv-menu5__pill {
    font-size: 16px;
    padding: 16px 20px;
  }
  .sv-menu5__row {
    padding-right: 0px;
  }
  .sv-menu5__text {
    font-size: 18px;
  }
  .sv-menu5__badge {
    width: 46px;
    height: 46px;
  }
  .sv-menu5__bar {
    font-size: 18px;
    padding-right: 110px;
  }
}
@media (max-width: 767px) {
  .sv-menu5 {
    padding: 55px 0 0 0px;
    border-radius: 0 50px 0 0;
    margin-top: -50px;
  }
  .sv-menu5__desc {
    gap: 20px;
  }
  .sv-menu5__text {
    font-size: 16px;
    line-height: 1.85;
  }
  .sv-menu5__row {
    padding-right: 0px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .sv-menu5__badge {
    width: 40px;
    height: 40px;
  }
  .sv-menu5__bar {
    font-size: 16px;
    padding: 20px;
  }
  .sv-menu5__barBadges {
    position: static;
    transform: none;
    margin-top: 10px;
    justify-content: center;
  }
  .sv-menu5__subtitle {
    font-size: 14px;
    max-width: 200px;
  }
}

.features {
  padding: 80px 0 110px;
  background: linear-gradient(180deg, #EBF3FF 0%, #BDD8FF 134.82%);
  border-radius: 0;
}
.features__inner {
  position: relative;
}
.features__head {
  text-align: center;
  margin-bottom: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.features__title {
  margin: 0;
  font-weight: 700;
  font-size: 32px;
  border-bottom: 3px solid #1670FF;
  width: fit-content;
  padding: 0 2% 1% 2%;
}
.features__num {
  color: #ff8a00;
  font-size: 50px;
}
.features__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 36px;
}
.features__flex {
  gap: 30px;
  display: flex;
  flex-wrap: wrap;
}
.features__card {
  position: relative;
  background: #fff;
  border: 0;
  border-radius: 5px;
  padding: 25px 0 50px 0px;
  cursor: pointer;
  text-align: center;
  height: 230px;
  width: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  color: #393939;
}
@media (hover: hover) and (pointer: fine) {
  .features__card:hover .features__plus {
    background: #00C3FF;
    transition: ease all 0.3s;
  }
}
.features__plus {
  background: #458CFF;
  transition: background 0.18s ease;
}
.features__icon {
  display: grid;
  place-items: center;
  height: 65px;
  margin-bottom: 15px;
}
.features__icon img {
  height: 65px;
  width: auto;
  display: block;
}
.features__small {
  display: block;
  font-size: 18px;
  font-weight: 500;
}
.features__bold {
  display: block;
  font-size: 24px;
  font-weight: 700;
  margin-top: 5px;
}
.features__plus {
  position: absolute;
  right: -10px;
  bottom: -10px;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 26px;
  color: #fff;
  background: #458CFF;
}
.features__plus-btn {
  height: 20px;
  width: 20px;
}
.features__foot {
  margin: 0;
  position: relative;
}
.features__illust {
  position: absolute;
  top: -12px;
}
.features__illust img {
  width: 180px;
  height: auto;
  display: block;
}
.features__lead {
  margin: 100px 0 0 0;
  font-size: 26px;
  line-height: 1.8;
  text-align: center;
  font-weight: 700;
}
.features__hl {
  background: linear-gradient(transparent 80%, #FFF826 0%);
  margin: 0 5px;
  color: #1f66ff;
  font-size: 32px;
  font-weight: 700;
}
@media (max-width: 1023px) {
  .features__foot {
    display: flex;
    justify-content: center;
    position: relative;
    width: 90%;
  }
  .features__illust {
    position: absolute;
    top: 80%;
    right: -14%;
  }
  .features__illust img {
    width: 120px;
  }
}
@media (max-width: 767px) {
  .features {
    padding: 60px 0 0px 0;
  }
  .features__head {
    margin-bottom: 40px;
  }
  .features__title {
    font-size: 26px;
  }
  .features__num {
    font-size: 44px;
  }
  .features__flex {
    justify-content: center;
  }
  .features__grid {
    grid-template-columns: 1fr;
  }
  .features__card {
    height: 180px;
    padding: 30px;
    justify-content: flex-start;
  }
  .features__icon {
    margin-bottom: 10px;
  }
  .features__icon img {
    height: 60px;
  }
  .features__lead {
    margin: 60px 0% 40px 0;
    font-size: 18px;
  }
  .features__hl {
    font-size: 28px;
  }
  .features__big-text {
    font-size: 24px;
  }
  .features__small {
    font-size: 16px;
  }
  .features__bold {
    font-size: 20px;
  }
  .features__plus {
    width: 40px;
    height: 40px;
    right: -10px;
    bottom: -10px;
  }
  .features__illust.sp-only {
    position: relative;
    justify-content: end;
    margin: 0px 5% -13px 0%;
  }
  .features__illust {
    position: absolute;
    top: -12px;
    right: 0;
  }
  .features__illust img {
    width: 107px;
  }
  .features__sp-text {
    font-size: 24px;
  }
  .features__big-text {
    margin-left: -45px;
  }
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0s linear 0.22s;
}
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition: opacity 0.22s ease;
}
.modal__wrap {
  position: relative;
  width: min(900px, 100% - 40px);
  max-height: calc(100svh - 140px);
  overflow: visible;
  opacity: 0;
  transform: translateY(10px) scale(0.99);
  transition: transform 0.24s ease, opacity 0.24s ease;
  outline: none;
}
.modal__panel {
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 40px;
  max-height: 90vh;
  max-width: 900px;
}
.modal__pills-wrap {
  display: flex;
  justify-content: center;
}
.modal__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
  width: 80%;
}
.modal__pill {
  font-size: 14px;
  color: white;
  padding: 10px 20px;
  background: #458CFF;
  border-radius: 999px;
  line-height: 1;
}
.modal__text {
  font-size: 16px;
  line-height: 1.8;
}
.modal__media {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.modal__media img {
  max-width: 600px;
  object-fit: scale-down;
}
.modal__media img.bigger {
  max-width: 100%;
}
.modal__scroll {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  max-height: calc(100svh - 140px - 56px);
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.modal__close {
  position: absolute;
  top: -20px;
  right: -35px;
  z-index: 50;
  width: 80px;
  height: 80px;
  border: 0;
  border-radius: 999px;
  background: #458CFF;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}
.modal__title {
  font-size: 28px;
  border-bottom: 2px solid #1670FF;
  padding: 0 20px 15px 20px;
  width: fit-content;
  margin: 0 auto 30px;
  line-height: 1;
}
.modal__subcontent_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 20px auto 0 auto;
}
.modal__subcontent {
  width: 100%;
}
.modal__attendance {
  display: flex;
  width: 100%;
  gap: 30px;
  justify-content: center;
  align-items: flex-start;
}
.modal__attendance div.modal__subcontent_wrap:last-child {
  width: 80%;
}
.modal__attendance img {
  width: 100%;
}
.modal__media.subcont {
  margin-top: 30px;
}
.modal__media.subcont.second {
  margin-top: 0px;
  margin-bottom: 40px;
}
.modal__media.subcont.double {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}
.modal__media.subcont.double img {
  max-width: 285px;
}
.modal .sv-overview__title {
  margin: 0 0 clamp(18px, 2.5vw, 30px);
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 5px;
}
.modal .sv-overview__titleItem {
  white-space: nowrap;
}
.modal .sv-overview__dot {
  color: #9bbcff;
  font-size: 1em;
  line-height: 1;
  transform: translateY(-0.02em);
}
.modal__subtit {
  font-size: 20px;
  font-weight: 500;
  width: 100%;
  border-bottom: 1px solid #ACCCFF;
  padding-bottom: 10px;
  color: #1670FF;
  margin-bottom: 20px;
}
.modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.22s ease, visibility 0s;
}
.modal.is-open .modal__backdrop {
  opacity: 1;
}
.modal.is-open .modal__wrap {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.modal .small-note {
  font-size: 10px;
  font-weight: 400;
  line-height: 1.8;
}
.modal .small-note.bigger {
  font-size: 12px;
}
.modal .model-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .modal__close {
    top: -16px;
    right: -16px;
    width: 40px;
    height: 40px;
    font-size: 32px;
  }
  .modal .modal__close img {
    width: 15px;
  }
}
@media (max-width: 767px) {
  .modal__wrap {
    max-height: calc(100svh - 80px);
  }
  .modal__panel {
    padding: 30px 20px 30px 20px;
    max-height: 85vh;
  }
  .modal__scroll {
    max-height: calc(100svh - 80px - 34px);
  }
  .modal__close {
    top: -16px;
    right: -16px;
    width: 56px;
    height: 56px;
    font-size: 32px;
  }
  .modal__title {
    font-size: 22px;
    padding: 0px 10px 15px 10px;
  }
  .modal__pills {
    width: 100%;
  }
  .modal__pill {
    font-size: 10px;
    padding: 10px;
  }
  .modal__text {
    font-size: 14px;
  }
  .modal__media {
    margin-top: 0;
  }
  .modal__attendance {
    flex-direction: column;
  }
  .modal__attendance div.modal__subcontent_wrap:last-child {
    width: 100%;
  }
  .modal__media img {
    width: 100%;
  }
  .modal__media img.smaller {
    width: 80%;
  }
  .modal__close {
    width: 40px;
    height: 40px;
  }
  .modal__close img {
    width: 15px;
  }
  .modal__subtit {
    font-size: 16px;
  }
  .modal .sv-overview__title {
    font-size: 12px;
    gap: 1em 0.55em;
  }
  .modal .modal__media.subcont {
    margin-top: 30px;
  }
  .modal__media.subcont.second {
    margin-top: 0px;
  }
  .modal .modal__media.subcont.double img {
    width: 100%;
    max-width: max-content;
  }
  .modal .small-note,
  .modal .small-note.bigger {
    font-size: 10px;
  }
  .modal__subcontent_wrap {
    margin-top: 0px;
  }
}

/* =========================
   Contact CTA
========================= */
.contact-cta {
  position: relative;
  width: 100%;
  height: auto;
}
.contact-cta__inner {
  text-align: center;
  background: url("/files/user/salesview/img/contact-bg.png") no-repeat center/cover;
  width: 100%;
  padding: 50px 5% 30px 5%;
}
.contact-cta__title {
  margin: 0 0 30px;
  color: #fff;
  font-weight: 700;
  font-size: 40px;
}
.contact-cta__note {
  margin: 40px 0 0;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}
.contact-cta .btn3d--cta {
  width: 630px;
  height: 125px;
  padding: 0 44px;
  font-size: 26px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  box-shadow: 0 10px 0 var(--btn-shadow);
  transform: translateY(0);
  transition: transform 0.08s ease, box-shadow 0.08s ease, background 0.15s ease;
}
@media (hover: hover) and (pointer: fine) {
  .contact-cta .btn3d--cta:hover {
    background: #FFAA00;
  }
}
.contact-cta .btn3d--cta:active {
  transform: translateY(7px);
  box-shadow: 0 0 0 var(--btn-shadow);
}
.contact-cta .btn3d--cta .btn3d__icon img {
  height: 40px;
  width: auto;
  display: block;
}
.contact-cta__bar {
  background: linear-gradient(90deg, #1B218A 0%, #000670 100%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 150px;
}
.contact-cta__barInner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  position: relative;
  gap: 20px;
  flex-wrap: wrap;
}
.contact-cta__divider {
  height: 40px;
  width: 1px;
  background: white;
}
.contact-cta__barItem {
  font-size: 20px;
  font-weight: 500;
}
.contact-cta__barItem:first-child {
  text-align: left;
}
.contact-cta__barItem:last-child {
  text-align: right;
}
.contact-cta__tel {
  font-size: clamp(40px, 2vw, 50px);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}
.contact-cta__lead {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}
.contact-cta__lead span {
  position: relative;
  display: inline-block;
  padding: 0 30px;
}
.contact-cta__lead span::before, .contact-cta__lead span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 22px;
  height: 2px;
  background: #fff;
}
.contact-cta__lead span::before {
  left: 0;
  transform: translateY(-50%) rotate(45deg);
}
.contact-cta__lead span::after {
  right: 0;
  transform: translateY(-50%) rotate(-45deg);
}
.contact-cta {
  /* ====== 3D Button ====== */
}
.contact-cta .btn3d {
  --btn: #FF8000;
  --btn-shadow: #D35500;
  --btn-text: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--btn-text);
  background: var(--btn);
  border-radius: 999px;
  font-weight: 800;
  justify-content: center;
  letter-spacing: 0.1em;
  /* the "3D" */
  box-shadow: 0 10px 0 var(--btn-shadow);
  transform: translateY(0);
  transition: transform 0.08s ease, box-shadow 0.08s ease, background 0.15s ease;
}
@media (hover: hover) and (pointer: fine) {
  .contact-cta .btn3d:hover {
    background: #FFAA00;
  }
}
.contact-cta .btn3d:active {
  transform: translateY(3px);
  box-shadow: 0 0 0 var(--btn-shadow);
}
.contact-cta .btn3d__icon {
  display: flex;
  gap: 30px;
  font-size: 30px;
  font-weight: 700;
}
.contact-cta .btn3d__icon img.dwnl-icon {
  height: 30px;
  width: auto;
}
.contact-cta .btn3d2--small {
  padding: 10px 25px;
  font-size: 18px;
  white-space: nowrap;
  height: 50px;
  font-weight: 700;
}
.contact-cta .btn3d2--large {
  padding: 0 30px;
  font-size: 20px;
  margin-top: 40px;
  width: 354px;
  height: 95px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.6;
  box-shadow: 0 7px 0 var(--btn-shadow);
}
.contact-cta .btn3d2--large:active {
  transform: translateY(7px);
  box-shadow: 0 0 0 var(--btn-shadow);
}
.contact-cta .btn3d2--large .btn3d2__arrow {
  margin-left: 30px;
}
.contact-cta .btn3d2--large .btn3d2__icon {
  margin-right: 15px;
}
.contact-cta__lead2 {
  font-size: clamp(25px, 2.5vw, 28px);
  font-weight: 700;
  border-bottom: 2px solid #ACCCFF;
  width: fit-content;
  padding-bottom: 10px;
}
.contact-cta__bar2 {
  background: linear-gradient(90deg, #0009AF 0%, #000559 100%);
  padding: 50px 0 60px;
  color: #fff;
}
.contact-cta__barInner2 {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
.contact-cta__main2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  flex-direction: column;
}
.contact-cta__main2 .btn3d--third::after {
  background-image: url(/files/user/salesview/img/black-vector.svg);
}
.contact-cta__small {
  font-size: 20px;
  margin: 0 5px;
}
.contact-cta__telWrap2 {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 20px;
}
.contact-cta__tel2 {
  font-size: clamp(35px, 2vw, 40px);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  text-decoration: none;
}
.contact-cta__time2 {
  font-size: 20px;
}
.contact-cta__btn2 {
  background: #ff8400;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  box-shadow: 0 8px 0 #cc6900;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  max-width: 260px;
  max-height: 70px;
}
@media (hover: hover) and (pointer: fine) {
  .contact-cta__btn2:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 0 #cc6900;
  }
}
.contact-cta__btn2:active {
  transform: translateY(0);
  box-shadow: 0 6px 0 #cc6900;
}
.contact-cta__arrow {
  font-size: 28px;
}
.contact-cta__notice {
  background: #232BBE;
  border-radius: 10px;
  padding: 30px 40px;
  display: flex;
  align-items: center;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  text-align: left;
  justify-content: center;
  gap: 60px;
  font-size: 16px;
  height: 120px;
  border: 1px solid #FFFFFF;
  margin-top: -10px;
}
.contact-cta__notice p {
  display: flex;
  align-items: center;
  line-height: 1.8;
}
.contact-cta__noticeIcon img {
  width: 40px;
  height: 40px;
}
.contact-cta .btn3d--third {
  height: 97px;
  width: 500px;
  color: #393939;
  background: #FFBF00;
  box-shadow: 0 6px 0 #B89900;
  font-size: 22px;
  justify-content: space-around;
  padding: 15px 40px 15px 50px;
}
.btn3d--third .contact-cta__btnIcon {
  height: 30px;
}
.contact-cta .btn3d--third p.secondary-cta {
  font-size: 26px;
  letter-spacing: 0;
}
.contact-cta .btn3d--third p.secondary-cta .secondary {
  font-size: 20px;
}
.contact-cta .contact-cta__barItem.contact-cta__tel {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 15px;
  line-height: 1;
  flex-wrap: nowrap;
  margin-bottom: -10px;
}
.contact-cta .contact-cta__telBlock {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.contact-cta .contact-cta__telNum {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 0.9;
  white-space: nowrap;
}
.contact-cta .contact-cta__telLabel {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
}
.contact-cta .contact-cta__dash {
  font-size: 40px;
  font-weight: 700;
  line-height: 0.9;
  align-self: flex-start;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .contact-cta .contact-cta__main2 {
    display: flex;
  }
  .contact-cta .contact-cta__notice {
    height: auto;
    gap: 30px;
  }
  .contact-cta .contact-cta .contact-cta__call-us.sp-only {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .contact-cta .contact-cta__call-us.sp-only {
    display: flex !important;
  }
  .contact-cta .call-us.btn3d {
    display: flex !important;
  }
  .contact-cta__title {
    font-size: 21px;
    margin-bottom: 20px;
  }
  .contact-cta__inner {
    background: url(/files/user/salesview/img/cta-sp-bg.png) center center/cover no-repeat;
    height: 100%;
    padding: 50px 5% 60px 5%;
  }
  .contact-cta__inner.second {
    padding: 50px 5% 40px 5%;
  }
  .contact-cta__btn.btn3d--cta {
    width: 90%;
    height: 70px;
    padding: 0 22px;
    font-size: 18px;
    box-shadow: 0 8px 0 var(--btn-shadow);
    max-width: 320px;
  }
  .contact-cta__btn.btn3d--cta .btn3d__icon {
    gap: 20px;
  }
  .contact-cta__btn.btn3d--cta .btn3d__icon img {
    height: 25px;
  }
  .contact-cta__btn.btn3d--cta .btn3d__icon p {
    font-size: 18px;
  }
  .contact-cta__btn.btn3d--cta::after {
    right: 20px;
  }
  .contact-cta__note {
    font-size: 12px;
    margin: 20px 0 0;
  }
  .contact-cta__bar {
    display: none;
  }
  .contact-cta__barItem {
    text-align: center !important;
  }
  .contact-cta__call-us {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  .contact-cta__call-us-title {
    font-size: 18px;
    color: white;
    margin: 0;
  }
  .contact-cta__btn.call-us {
    background-color: #FFBF00;
    color: #393939;
    letter-spacing: 0.1em;
    box-shadow: 0 8px 0 #B89900;
    justify-content: center;
  }
  .contact-cta__btn.call-us::after {
    background-image: url("/files/user/salesview/img/black-vector.svg");
  }
  .contact-cta .btn3d__icon p.rec-no {
    font-size: 12px;
    letter-spacing: 0;
  }
  .contact-cta .tel-cont {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .contact-cta .tel-text {
    min-width: 200px;
  }
  .contact-cta .tel-text.emails {
    font-size: 16px;
    letter-spacing: 0;
  }
  .contact-cta .call-us .btn3d__icon {
    gap: 0;
    justify-content: space-between;
    width: 100%;
  }
  .contact-cta__lead2 {
    font-size: 18px;
    padding: 0 5% 15px 5%;
  }
  .contact-cta__bar2 {
    gap: 20px;
  }
  .contact-cta__noticeIcon img {
    height: 30px;
    width: 30px;
  }
  .contact-cta__notice {
    height: auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px;
    font-size: 13px;
    line-height: 1.8;
    border-radius: 10px;
  }
  .contact-cta__btnIcon.email {
    height: 17px !important;
  }
}

/* =========================
   News
========================= */
.news-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 30px;
}

.news {
  padding: 130px 0 100px 0;
  background: linear-gradient(180deg, #EBF3FF 0%, #BDD8FF 100%);
}
.news__item {
  background: #fff;
  border-radius: 5px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  max-width: 1000px;
  padding-bottom: 20px;
}
.news__content {
  position: relative;
}
.news__text {
  position: relative;
}
.news__media {
  float: left;
  width: 470px;
  height: 260px;
  margin: 0 40px 0px 0;
  position: relative;
}
.news__media img {
  width: 100%;
  border-radius: 5px;
  object-fit: cover;
}
.news__company {
  position: absolute;
  left: 0;
  bottom: 0;
  background: #fff;
  padding: 10px 30px 10px 0;
  border-top-right-radius: 10px;
  font-weight: 500;
  color: #1670FF;
  font-size: 20px;
  border-top: 5px solid #458CFF;
}
.news__title {
  margin: 0 0 20px;
  font-size: 20px;
  font-weight: 700;
}
.news__body {
  margin: 0 0 90px 0;
  font-size: 16px;
  line-height: 1.8;
  max-height: 0;
  transition: max-height 2s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: max-height;
  -webkit-mask-image: linear-gradient(to bottom, #000 100%, transparent);
  mask-image: linear-gradient(to bottom, #000 100%, transparent);
}
.news__body strong,
.news__body .news__strong {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  text-align: left;
  width: auto;
}
.news__item.is-open .news__body {
  -webkit-mask-image: none;
  mask-image: none;
}
.news__item.is-open .news__btnIcon {
  transform: rotateX(180deg);
  transition: transform 0.35s ease;
}
.news__btn {
  position: absolute;
  right: 30px;
  bottom: 30px;
  width: 195px;
  height: 50px;
  border: 0;
  border-radius: 999px;
  background: #458CFF;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: filter 0.9s ease, transform 0.9s ease, background 0.9s ease;
}
.news__btnIcon {
  height: 20px;
}
.news__btnLabel {
  width: 100px;
}
@media (hover: hover) and (pointer: fine) {
  .news__item:hover .news__btn {
    background: #00C3FF;
  }
}
@media (max-width: 1023px) {
  .news__media {
    width: 350px;
    height: auto;
  }
}
@media (max-width: 767px) {
  .news {
    padding: 80px 0 140px 0;
  }
  .news__item {
    padding: 20px;
  }
  .news__media {
    float: none;
    width: 100%;
    margin: 0 0 18px 0;
  }
  .news__btn {
    left: 50%;
    right: auto;
    /* ← right:30px を無効化 */
    transform: translateX(-50%);
    bottom: 28px;
    width: 170px;
  }
  .news__media {
    height: 210px;
  }
  .news__media img {
    height: 210px;
  }
  .news__company {
    padding: 10px 30px 10px 0;
    font-size: 16px;
  }
  .news__title {
    font-size: 18px;
    line-height: 1.8;
  }
  .news__btnLabel {
    font-size: 14px;
  }
  .news__body {
    font-size: 16px;
  }
  .news .contact-cta__inner.second {
    background-position: 100% 10%;
  }
}

/* =========================
   FLOW
========================= */
.section__heading {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.section__maintitle {
  font-size: 40px;
  font-weight: 700;
  border-bottom: 3px solid #1670FF;
  padding: 0 20px 10px 20px;
  margin: 0 auto;
}
.section__small {
  margin: 30px 0 60px 0;
  font-size: 18px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .section__maintitle {
    font-size: 26px;
  }
  .section__small {
    margin: 20px 0 40px 0;
    font-size: 16px;
    line-height: 1.8;
  }
}

.flow {
  padding: 100px 0 160px 0;
  background: linear-gradient(180deg, #FFFFFF 0%, #F2F7FF 100%);
}
.flow__list {
  width: min(1100px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.flow {
  /* Card */
}
.flow__item {
  display: flex;
  border-radius: 5px;
  background: #fff;
  overflow: hidden;
  width: 686px;
  height: 150px;
}
.flow {
  /* Left STEP bar */
}
.flow__step {
  width: 60px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  align-items: center;
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-size: 28px;
}
.flow__step1 {
  background: #1B218A;
}
.flow__step2 {
  background: #1350AC;
}
.flow__step3 {
  background: #0C7ACA;
}
.flow__step4 {
  background: #0799E1;
}
.flow__stepLabel {
  font-weight: 400;
  font-size: 14px;
}
.flow__stepNum {
  font-weight: 700;
  font-size: 28px;
}
.flow {
  /* Right body */
}
.flow__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 30px;
  position: relative;
  width: 100%;
  border-top: 1px solid #ACCCFF;
  border-right: 1px solid #ACCCFF;
  border-bottom: 1px solid #ACCCFF;
  border-radius: 0 5px 5px 0;
}
.flow__text {
  max-width: 420px;
}
.flow__h {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.5;
  margin: 0 0 10px 0;
}
.flow__p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  margin: 0;
}
.flow__illust {
  display: grid;
  place-items: center;
  justify-self: end;
  width: auto;
}
.flow__img1 {
  height: 109px;
}
.flow__img2 {
  height: 103px;
}
.flow__img3 {
  height: 115px;
}
.flow__img4 {
  height: 110px;
}
.flow__arrow {
  display: grid;
  place-items: center;
  margin: 20px 0;
}
.flow__chev {
  width: 10px;
  height: 10px;
  border-right: 3px solid rgba(22, 112, 255, 0.75);
  border-bottom: 3px solid rgba(22, 112, 255, 0.75);
  transform: rotate(45deg);
  border-radius: 1px;
}
.flow__item--active {
  border: 2px solid #1670ff;
  box-shadow: 0 14px 40px rgba(22, 112, 255, 0.18);
}
.flow__item--active .flow__step {
  background: linear-gradient(180deg, #0b2a8a 0%, #0aa2ff 110%);
}
.flow__item--active .flow__body::after {
  content: "";
  position: absolute;
  inset: 14px 14px 14px 14px;
  border: 2px dotted rgba(22, 112, 255, 0.55);
  border-radius: 4px;
  pointer-events: none;
}
.flow__item--active .flow__text,
.flow__item--active .flow__illust {
  position: relative;
  z-index: 1;
}
.flow {
  /* Responsive */
}
@media (max-width: 767px) {
  .flow {
    padding: 80px 0 160px 0;
    border-radius: 50px 0 0 0;
    margin-top: -50px;
  }
  .flow__item {
    width: 100%;
    height: 250px;
  }
  .flow__body {
    flex-direction: column;
    padding: 20px 30px;
    gap: 10px;
  }
  .flow__h {
    font-size: 20px;
  }
  .flow__p {
    font-size: 14px;
    line-height: 1.5;
  }
  .flow__illust {
    width: 160px;
  }
  .flow__illust img {
    width: 104px;
  }
  .flow__illust.flow__img1 {
    height: 100%;
  }
  .flow__illust.flow__img1 img {
    height: 130px;
    width: auto;
  }
  .flow__illust.flow__img2 img {
    height: 103px;
    width: auto;
  }
  .flow__illust.flow__img3 img {
    height: 108px;
    width: auto;
  }
  .flow__illust.flow__img4 img {
    height: 108px;
    width: auto;
  }
}

/* =========================
   FAQ (Q&A)
========================= */
.faq {
  padding: 100px 0;
  background: linear-gradient(360deg, #EBF3FF 0%, #FFFFFF 100%);
  margin-top: -60px;
  border-radius: 0 50px 0 0;
}
.faq__inner {
  width: min(1000px, 100% - 48px);
  margin: 0 auto;
}
.faq__item {
  border-bottom: 1px solid #ACCCFF;
  padding: 0;
}
.faq__item:last-child {
  border-bottom: none;
}
.faq__q {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 40px 0 30px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}
.faq__qLeft {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  min-width: 0;
}
.faq__qBadge {
  width: 60px;
  height: 60px;
  border-radius: 999px;
  background: #458CFF;
  color: #fff;
  display: grid;
  place-items: center;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 28px;
  flex: 0 0 auto;
}
.faq__qText {
  color: #1670FF;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.6;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.faq__column-link {
  color: #FF8000;
  text-decoration: none;
  transition: text-decoration 0.4s ease;
}
.faq__column-link:hover {
  text-decoration: underline;
}
.faq__circle {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: white;
  border: 1px solid rgba(22, 112, 255, 0.8);
  display: grid;
  place-items: center;
  transition: background 0.22s ease, border-color 0.22s ease;
}
.faq__icon {
  position: relative;
  width: 16px;
  height: 16px;
}
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 1.5px;
  background: rgba(22, 112, 255, 0.95);
  border-radius: 99px;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
@media (hover: hover) and (pointer: fine) {
  .faq__q:hover .faq__circle {
    background: #00C3FF;
    border-color: white;
  }
  .faq__q:hover .faq__icon::before, .faq__q:hover .faq__icon::after {
    background: white;
  }
}
.faq {
  /* answer */
}
.faq__aWrap {
  display: grid;
  grid-template-rows: 0fr;
  /* collapsed */
  transition: grid-template-rows 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq__a {
  overflow: hidden;
  padding: 0 0 0 90px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.9;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.32s ease, transform 0.32s ease;
}
.faq__a p {
  padding: 20px 0 30px 0;
  margin-top: -20px;
}
.faq {
  /* OPEN state */
}
.faq__item.is-open .faq__aWrap {
  grid-template-rows: 1fr;
}
.faq__item.is-open .faq__a {
  opacity: 1;
  transform: translateY(0);
}
.faq__item.is-open {
  /* plus -> minus (hide vertical line) */
}
.faq__item.is-open .faq__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0.6);
}
@media (max-width: 767px) {
  .faq {
    padding: 80px 0 40px 0;
  }
  .faq .faq__item:first-child .faq__q {
    padding-top: 0;
  }
  .faq__qLeft {
    gap: 10px;
    padding-right: 10px;
  }
  .faq__qBadge {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
  .faq__circle {
    width: 25px;
    height: 25px;
    border: 0.52px solid #458CFF;
  }
  .faq__qText {
    white-space: normal;
    font-size: 16px;
  }
  .faq__a {
    padding: 0 30px 0px 0;
    font-size: 14px;
    margin-top: -10px;
  }
  .faq .faq__icon::before,
  .faq .faq__icon::after {
    width: 10px;
    height: 1px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .faq__aWrap, .faq__a, .faq__circle, .faq__icon::before, .faq__icon::after {
    transition: none !important;
  }
}

/* =========================
  Related
========================= */
.related .section__heading {
  margin-bottom: 40px;
}

.related {
  padding: 100px 0 150px 0px;
  background: #fff;
}
.related__title {
  margin: 0 auto 56px;
  text-align: center;
  font-size: 48px;
  font-weight: 800;
  color: #333;
  width: fit-content;
  position: relative;
}
.related__title::after {
  content: "";
  display: block;
  height: 4px;
  width: 420px;
  max-width: 70vw;
  background: #1670ff;
  margin: 16px auto 0;
  border-radius: 999px;
}
.related__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: center;
}
.related__item {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  opacity: 1;
  transition: all 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .related__item:hover {
    opacity: 0.7;
  }
}
.related__item img {
  width: 100%;
  height: auto;
  display: block;
}
.related__lower-part {
  display: flex;
  gap: 30px;
}
@media (max-width: 980px) {
  .related {
    padding: 80px 0;
  }
  .related__title {
    font-size: 34px;
  }
  .related__title::after {
    width: 320px;
  }
  .related__grid {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 640px;
    margin: 0 auto;
  }
  .related__item img {
    width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .related__lower-part {
    display: flex;
    gap: 30px;
    flex-direction: column;
  }
}

/* =========================
  Footer
========================= */
.breadcrumb {
  background: #f5f6fa;
  padding: 20px 0;
  border-top: 2px solid #dfe4ed;
  border-bottom: 1px solid #dfe4ed;
}
.breadcrumb__nav {
  font-size: 14px;
  font-weight: 300;
}
.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadcrumb__item {
  display: flex;
  align-items: center;
}
.breadcrumb__item a {
  text-decoration: none;
  color: #001847;
  transition: opacity 0.2s ease;
  font-weight: 400;
}
@media (hover: hover) and (pointer: fine) {
  .breadcrumb__item a:hover {
    opacity: 0.7;
  }
}
.breadcrumb__item:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 3px 0 0 10px;
  background-image: url("/files/user/salesview/img/footer-vector.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.breadcrumb__item.is-current {
  color: #4d4d4d;
  font-weight: 400;
}
.breadcrumb__item.is-current::after {
  display: none;
}
@media (max-width: 767px) {
  .breadcrumb {
    padding: 16px 0;
  }
  .breadcrumb__nav {
    font-size: 14px;
  }
  .breadcrumb__list {
    gap: 6px;
  }
}

.col-8 {
  width: 66.66667%;
}
@media screen and (max-width: 1023px) {
  .col-8 {
    width: 85%;
  }
}

.l-footer__catch__outer {
  background-color: #f5f6fa;
  letter-spacing: -0.5em;
  text-align: center;
}

@media print, screen and (min-width: 640px) {
  .l-footer__catch__outer {
    padding: 39px 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__catch__outer {
    padding: 40px 0 37px;
  }
}
@media print, screen and (min-width: 640px) {
  .l-footer__catch {
    display: inline-block;
    width: 153px;
    height: 30px;
    margin-left: 15px;
    background-size: 100% auto;
    vertical-align: middle;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__catch {
    display: block;
    height: 0;
    padding-top: 6.9%;
    margin: 20px auto 0;
    background-size: auto 100%;
  }
}
.l-footer__social {
  border-top: 1px solid #dfe4ed;
  background-color: #f5f6fa;
  letter-spacing: -0.5em;
  text-align: center;
}

@media print, screen and (min-width: 640px) {
  .l-footer__social {
    padding: 20px 0 22px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__social {
    padding: 30px 0;
  }
}
.l-footer__social__item {
  display: inline-block;
  font-size: 30px;
  letter-spacing: 0;
}

.l-footer__social__link {
  color: #aaacb2;
}

.l-footer__social__link:hover {
  opacity: 0.7;
}

.l-footer__nav {
  background-color: #071933;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .l-footer__nav {
    text-align: center;
  }
}
.l-footer__nav__list {
  margin: 0 auto;
  letter-spacing: -0.5em;
  text-align: left;
}

.l-footer__nav__list a {
  color: #fff;
  font-size: 16px;
  text-decoration: none;
}

@media screen and (max-width: 1023px) {
  .l-footer__nav__list a {
    color: #fff;
    font-size: 13px;
    text-decoration: none;
  }
}
@media print, screen and (min-width: 640px) {
  .l-footer__nav__list {
    padding: 38px 0 24px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__nav__list {
    padding: 40px 0 38px;
  }
}
.l-footer__nav__item {
  letter-spacing: 0;
}

@media print, screen and (min-width: 640px) {
  .l-footer__nav__item {
    display: inline-block;
    width: 25%;
  }
  .l-footer__nav__item:nth-child(n+5) {
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__nav__item:not(:first-child) {
    margin-top: 20px;
  }
}
.l-footer__nav__link:hover {
  text-decoration: underline;
}

.l-footer__subNav {
  border-top: 1px solid #000;
  font-size: 14px;
  letter-spacing: -0.5em;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}

@media screen and (max-width: 1023px) {
  .l-footer__subNav {
    font-size: 11px;
  }
}
.l-footer__subNav a {
  color: #fff;
  text-decoration: none;
}

@media print, screen and (min-width: 640px) {
  .l-footer__subNav {
    padding: 19px 0 17px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__subNav {
    padding: 30px 0 25px;
  }
}
.l-footer__subNav__item {
  display: inline-block;
  letter-spacing: 0;
}

@media print, screen and (min-width: 640px) {
  .l-footer__subNav__item {
    line-height: 1;
  }
  .l-footer__subNav__item:not(:last-child) {
    margin-right: 30px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__subNav__item:not(:last-child) {
    margin-right: 13px;
  }
  .l-footer__subNav__item:nth-child(n+3) {
    margin-top: 10px;
  }
}
@media print, screen and (min-width: 640px) {
  .l-footer__subNav__link {
    display: inline-block;
  }
}
.l-footer__subNav__link:hover {
  text-decoration: underline;
}

.l-footer__copyright {
  background-color: #040c18;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  text-align: center;
}

@media print, screen and (min-width: 640px) {
  .l-footer__copyright {
    padding: 22px 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__copyright {
    padding: 20px 0 17px;
  }
}
@media screen and (max-width: 767px) {
  footer.salesview {
    border-top: 1px solid #dfe4ed;
  }
  .l-footer__nav__list.salesview {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .l-footer__subNav.salesview {
    padding: 30px 0 25px;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
  }
}

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