@charset "UTF-8";

/* PC基準1440px / SP基準375px — 1rem = デザイン上1px 相当 */
:root {
  --zoho-blue: #226db3;
  --zoho-blue-dark: #1a5690;
  --zoho-blue-light: #e8f2fa;
  --zoho-navy: #0d2d4f;
  --zoho-red: #e42527;
  --zoho-green: #009a44;
  --zoho-yellow: #f9b21d;
  --white: #ffffff;
  --bg-gray: #f4f4f4;
  --text: #333333;
  --text-muted: #5a6472;
  --footer-navy: #1a2744;
  --blue: #226db3;
  --black: #000000;
  --orange: #fc6e2d;
  --cta-orange: #f38008;
  --cta-orange-hover: #e07800;
  --gold: #c9a227;
  --section-gap-pc: 120rem;
  --section-gap-sp: 60rem;
  --shell-pc: 1440rem;
  --shell-sp: 375rem;
  --header-shell-pc: 1300rem;
  --header-h: 80rem;
  --mv-height-pc: 580rem;
  --mv-height-sp: 480rem;
  --strong-curve-depth-pc: 80rem;
  --strong-curve-depth-sp: 56rem;
  --zoho-band-height-pc: 112rem;
  --zoho-band-height-sp: 80rem;
  --sz-card-width-pc: 380rem;
  --sz-card-expand-pc: 40rem;
  --sz-illust-overlap-pc: 56rem;
  --sz-illust-overlap-sp: 40rem;
  --sz-illust-size-pc: 216rem;
  --sz-illust-size-sp: 168rem;
  --sz-illust-size-systena-pc: 232rem;
  --sz-illust-size-systena-sp: 180rem;
  --sz-partner-text-width-pc: 277rem;
  --sz-partner-text-width-sp: 234rem;
  --sz-illust-shift-pc: 12rem;
  --sz-illust-shift-sp: 8rem;
  --sz-illust-shift-left-pc: 12rem;
  --sz-illust-shift-left-sp: 8rem;
  --sz-illust-corner-overlap-pc: 28rem;
  --sz-illust-corner-overlap-sp: 20rem;
  --sz-banner-width-inset-pc: 500rem;
  --sz-banner-width-inset-sp: 32rem;
  --radius-md: 12rem;
  --radius-lg: 20rem;
  --shadow-sm: 0 4rem 14rem rgba(13, 45, 79, 0.08);
  --shadow-md: 0 8rem 24rem rgba(13, 45, 79, 0.12);
  --shadow-lg: 0 12rem 32rem rgba(13, 45, 79, 0.16);
  --transition-base: 0.2s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: min(calc(100vw / 1440), 1px);
  scroll-behavior: smooth;
  background: var(--white);
}

body {
  position: relative;
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Noto Sans JP", "Roboto", system-ui, sans-serif;
  font-size: 16rem;
  line-height: 1.7;
  -webkit-text-size-adjust: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

.lp {
  width: var(--shell-pc);
  margin: 0 auto;
  overflow-x: visible;
  background: var(--white);
}

.u-visually-hidden {
  position: absolute;
  width: 1rem;
  height: 1rem;
  padding: 0;
  margin: -1rem;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.u-br-sp {
  display: none;
}

.u-br-pc {
  display: inline;
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52rem;
  padding: 0 32rem;
  border-radius: 999rem;
  font-weight: 700;
  font-size: 16rem;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  transition:
    background var(--transition-base),
    transform 0.15s ease,
    box-shadow var(--transition-base),
    filter var(--transition-base);
}

.btn:hover {
  transform: translateY(-2rem);
  box-shadow: var(--shadow-lg);
  filter: brightness(1.03);
}

.btn:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
  filter: brightness(1);
}

.btn--primary {
  background: var(--zoho-blue);
  color: var(--white);
  box-shadow: 0 4rem 14rem rgba(34, 109, 179, 0.35);
}

.btn--primary:hover {
  background: var(--zoho-blue-dark);
  box-shadow: 0 6rem 18rem rgba(34, 109, 179, 0.45);
}

.btn--header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40rem;
  padding: 0 24rem;
  border: 2rem solid var(--orange);
  border-radius: 999rem;
  background: transparent;
  color: var(--orange);
  font-size: 15rem;
  font-weight: 700;
  box-shadow: none;
  flex-shrink: 0;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.btn--header-cta:hover,
.btn--header-cta:active {
  background: var(--orange);
  color: var(--white);
  transform: none;
  box-shadow: none;
  filter: none;
}

.btn--mv-cta {
  background: var(--white);
  color: var(--zoho-blue);
  min-height: 53rem;
  padding: 6rem 56rem;
  font-size: 18rem;
  font-weight: 800;
  border-radius: 999rem;
  border: 2rem solid var(--zoho-blue);
  line-height: 1.35;
  text-align: center;
  white-space: normal;
  box-shadow: 0 4rem 14rem rgba(34, 109, 179, 0.2);
  transition:
    background var(--transition-base),
    color var(--transition-base),
    border-color var(--transition-base),
    transform 0.15s ease,
    box-shadow var(--transition-base);
}

.btn--mv-cta:hover {
  background: var(--zoho-blue);
  color: var(--white);
  border-color: var(--zoho-blue);
  filter: none;
  box-shadow: 0 6rem 18rem rgba(34, 109, 179, 0.35);
}

.sec-strong__cta .btn--mv-cta,
.sz-banner .btn--mv-cta {
  box-shadow: 0 0 14rem rgba(13, 45, 79, 0.22);
}

.sec-strong__cta .btn--mv-cta:hover,
.sz-banner .btn--mv-cta:hover {
  border-color: var(--white);
  box-shadow: 0 0 18rem rgba(13, 45, 79, 0.3);
}

/* ----- Header ----- */
.lp-header {
  --lp-header-h: var(--header-h);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--lp-header-h);
  background: var(--white);
  box-shadow: 0 4rem 16rem rgba(0, 0, 0, 0.2);
}

.lp-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24rem;
  height: 100%;
  width: var(--header-shell-pc);
  max-width: 100%;
  margin: 0 auto;
  padding: 0 30rem;
  box-sizing: border-box;
}

.lp-header__logos {
  display: flex;
  align-items: center;
  gap: 16rem;
  flex-shrink: 0;
  color: inherit;
  text-decoration: none;
}

.lp-header__logo-times {
  flex-shrink: 0;
  font-size: 22rem;
  font-weight: 800;
  line-height: 1;
  color: var(--text-muted);
}

.lp-header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.lp-header__logo img {
  height: auto;
  max-height: 40rem;
  width: auto;
  max-width: 200rem;
}

.lp-header__logo--zoho img {
  max-height: 44rem;
  max-width: 88rem;
}

.lp-header__nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-width: 0;
}

.lp-header__nav-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 28rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lp-header__nav a,
.lp-header__nav-parent {
  display: block;
  padding: 0;
  font-size: 16rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  transition: color var(--transition-base);
}

.lp-header__nav a:hover {
  color: var(--orange);
}

.lp-header__nav-item--has-sub {
  position: relative;
}

.lp-header__sub-list {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200rem;
  margin: 0;
  padding: 8rem 0;
  list-style: none;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--transition-base),
    visibility var(--transition-base);
  z-index: 10;
}

.lp-header__nav-item--has-sub:hover .lp-header__sub-list,
.lp-header__nav-item--has-sub:focus-within .lp-header__sub-list {
  opacity: 1;
  visibility: visible;
}

.lp-header__sub-list a {
  padding: 10rem 20rem;
  font-size: 15rem;
  font-weight: 600;
}

.lp-header__actions {
  display: flex;
  align-items: center;
  gap: 12rem;
  flex-shrink: 0;
}

.lp-header__menu-toggle {
  display: none;
}

.lp-header__drawer {
  display: none;
}

/* ----- MV ----- */
.sec-mv {
  position: relative;
  width: 100%;
  min-height: var(--mv-height-pc);
}

.sec-mv__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: var(--white);
  background-image: url("../img/FVdesign.png");
  background-position: center center;
  background-size: 106%;
  background-repeat: no-repeat;
  animation: sec-mv-bg-sway 22s ease-in-out infinite alternate;
  will-change: background-position;
}

@keyframes sec-mv-bg-sway {
  from {
    background-position: 49% center;
  }

  to {
    background-position: 51% center;
  }
}

.sec-mv__light {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.sec-mv__light-beam {
  position: absolute;
  top: -25%;
  left: -32%;
  width: 26%;
  height: 150%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 252, 242, 0.1) 18%,
    rgba(255, 250, 230, 0.28) 50%,
    rgba(255, 252, 242, 0.1) 82%,
    transparent 100%
  );
  transform: rotate(24deg);
  transform-origin: center center;
  animation: sec-mv-light-sweep 16s ease-in-out infinite alternate;
  will-change: left;
}

@keyframes sec-mv-light-sweep {
  from {
    left: -32%;
  }

  to {
    left: 108%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sec-mv__bg {
    animation: none;
    background-position: center center;
    background-size: cover;
  }

  .sec-mv__light-beam {
    animation: none;
    left: 35%;
    opacity: 0.6;
  }
}

.sec-mv__shell {
  position: relative;
  z-index: 2;
  width: var(--shell-pc);
  max-width: 100%;
  min-height: var(--mv-height-pc);
  margin: 0 auto;
  padding-top: var(--header-h);
  overflow: visible;
}

.sec-mv__layer {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: calc(var(--mv-height-pc) - var(--header-h));
  padding: 48rem 56rem 40rem;
  overflow: visible;
}

.sec-mv__partner {
  --partner-flag-w: 500rem;
  position: absolute;
  top: calc(var(--header-h) + 48rem);
  left: 56rem;
  width: var(--partner-flag-w);
  height: 80rem;
  z-index: 3;
}

.sec-mv__partner-flag {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
  object-position: center center;
}

.sec-mv__partner-text-wrap {
  position: absolute;
  top: 0;
  right: 0;
  width: var(--partner-flag-w);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.sec-mv__partner-text {
  margin: 0;
  font-size: 24rem;
  font-weight: 800;
  line-height: 1.6;
  color: var(--zoho-navy);
  text-align: center;
}

.sec-mv__partner-accent {
  color: var(--zoho-blue);
}

.sec-mv__center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 1200rem;
  margin: 0 auto;
  width: 100%;
  padding-top: 80rem;
}

.sec-mv__title {
  margin: 0 0 28rem;
  font-size: 48rem;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.04em;
  color: var(--zoho-blue);
  text-shadow:
    0 2rem 4rem rgba(13, 45, 79, 0.22),
    0 4rem 16rem rgba(13, 45, 79, 0.18);
}

.sec-mv__lead {
  margin: 0 0 28rem;
  font-size: 22rem;
  font-weight: 700;
  line-height: 1.8;
  color: var(--text);
  text-shadow:
    0 2rem 4rem rgba(13, 45, 79, 0.2),
    0 4rem 14rem rgba(13, 45, 79, 0.16);
}

.sec-mv__center > .sec-mv__lead:last-of-type {
  margin-bottom: 16rem;
}

.sec-mv__cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16rem;
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0;
}

/* .lp 内でも背景を画面全幅に広げる */
.lp > section[class*="sec-"],
.lp > footer {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

/* ----- システナの強み ----- */
.sec-strong {
  position: relative;
  padding: 48rem 0 calc(24rem + var(--strong-curve-depth-pc) * 0.5);
  overflow: visible;
}

.sec-strong__bg {
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: calc(var(--strong-curve-depth-pc) * -0.5);
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  background: var(--zoho-blue);
  border-radius: 0 0 50% 50% / 0 0 var(--strong-curve-depth-pc) var(--strong-curve-depth-pc);
}

.sec-strong__inner {
  position: relative;
  z-index: 1;
  width: var(--shell-pc);
  max-width: 100%;
  margin: 0 auto;
  padding: 0 56rem;
}

.sec-strong__title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 0 56rem;
  text-align: center;
  font-size: 36rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.sec-strong__title-text {
  display: block;
}

.sec-strong__title-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72rem;
  height: 72rem;
  margin: 0 8rem 0 4rem;
  padding: 3rem;
  border-radius: 50%;
  background: conic-gradient(
    from 315deg,
    #e42527 0deg,
    #f9b31d 40deg,
    #099949 80deg,
    #329bff 180deg,
    #099949 260deg,
    #f9b31d 300deg,
    #e42527 360deg
  );
  flex-shrink: 0;
}

.sec-strong__title-num-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--zoho-blue);
  font-size: 58rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.sec-strong__list {
  display: flex;
  flex-direction: column;
  gap: 48rem;
  list-style: none;
}

.sec-strong__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28rem;
  margin-top: 48rem;
  text-align: center;
}

.sec-strong__cta-lead {
  margin: 0;
  font-size: 24rem;
  font-weight: 800;
  line-height: 1.65;
  color: var(--white);
  letter-spacing: 0.02em;
}

.sec-strong__cta-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10rem;
  margin: 0 0 -14rem;
  font-size: 20rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--white);
  letter-spacing: 0.04em;
}

.sec-strong__cta-slash {
  font-size: 28rem;
  font-weight: 300;
  line-height: 1;
  color: rgba(255, 255, 255, 0.75);
}

.strong-card {
  background: var(--white);
  border: 2rem solid #000000;
  border-radius: 0;
  padding: 32rem 36rem;
  box-sizing: border-box;
  width: 100%;
  max-width: 1040rem;
  margin: 0 auto;
  height: 250rem;
  box-shadow: none;
}

.strong-card__layout {
  display: grid;
  grid-template-columns: 1fr 260rem;
  grid-template-rows: auto 1fr;
  column-gap: 32rem;
  row-gap: 16rem;
  align-items: start;
  height: 100%;
}

.strong-card__body {
  display: contents;
}

.strong-card__heading {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  align-items: center;
  gap: 20rem;
  position: relative;
  padding-bottom: 12rem;
}

.strong-card__heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(640rem, 100%);
  height: 2rem;
  background: var(--zoho-blue);
}

.strong-card__num {
  flex-shrink: 0;
  font-size: 28rem;
  font-weight: 800;
  line-height: 1.2;
}

.strong-card--01 .strong-card__num {
  color: #e42527;
}

.strong-card--02 .strong-card__num {
  color: #099949;
}

.strong-card--03 .strong-card__num {
  color: #f9b31d;
}

.strong-card__title {
  margin: 0;
  font-size: 24rem;
  font-weight: 800;
  line-height: 1.4;
  color: var(--zoho-navy);
}

.strong-card__text {
  grid-column: 1;
  grid-row: 2;
  margin: 0;
  font-size: 16rem;
  font-weight: 500;
  line-height: 1.9;
  color: var(--text);
}

.strong-card__figure {
  grid-column: 2;
  grid-row: 1 / 3;
  margin: 0;
  align-self: center;
}

.strong-card__figure img {
  width: 100%;
  max-width: 260rem;
  margin-left: auto;
  margin-right: 0;
}

/* ----- ZOHOとは ----- */
.sec-zoho {
  padding: var(--section-gap-pc) 0 calc(12rem + var(--strong-curve-depth-pc) * 0.25);
  background: var(--white);
  overflow: visible;
}

.sec-zoho__inner {
  position: relative;
  width: var(--shell-pc);
  max-width: 100%;
  margin: 0 auto;
  padding: 0 56rem;
}

.sec-zoho__panel {
  position: relative;
  z-index: 1;
  padding-bottom: calc(var(--strong-curve-depth-pc) * 0.5);
  overflow: visible;
}

.sec-zoho__panel-bg {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: calc(var(--strong-curve-depth-pc) * -0.5);
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  background: var(--white);
  border-radius: 0 0 50% 50% / 0 0 var(--strong-curve-depth-pc) var(--strong-curve-depth-pc);
}

.sec-zoho__content {
  position: relative;
  z-index: 1;
  max-width: 960rem;
  margin: 0 auto;
  text-align: center;
}

.sec-zoho__company {
  margin: 0 0 24rem;
  font-size: 36rem;
  font-weight: 800;
  color: var(--zoho-blue);
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.sec-zoho__logo {
  display: block;
  width: 200rem;
  height: auto;
  margin: 0 auto 32rem;
}

.sec-zoho__desc {
  max-width: 880rem;
  margin: 0 auto;
  font-size: 16rem;
  line-height: 2;
  color: var(--text);
  text-align: left;
}

.sec-zoho__band {
  position: relative;
  z-index: 0;
  left: 50%;
  width: 100vw;
  height: calc(var(--zoho-band-height-pc) + var(--strong-curve-depth-pc) * 0.5);
  margin: calc(40rem - var(--strong-curve-depth-pc) * 0.85) 0 calc(var(--strong-curve-depth-pc) * -0.5);
  margin-left: -50vw;
  background: var(--zoho-blue);
  border-radius: 0 0 50% 50% / 0 0 var(--strong-curve-depth-pc) var(--strong-curve-depth-pc);
}

/* ----- システナ×ZOHO ----- */
.sec-systena-zoho {
  padding: calc(var(--section-gap-pc) * 0.5) 0 calc(var(--section-gap-pc) * 0.5);
  background: var(--white);
}

.sec-systena-zoho__inner {
  width: var(--shell-pc);
  max-width: 100%;
  margin: 0 auto;
  padding: 0 56rem;
}

.sz-head {
  margin-bottom: 56rem;
  text-align: center;
}

.sz-head__lead {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8rem 14rem;
  margin: 0 0 20rem;
  font-size: 22rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
}

.sz-head__slash {
  font-size: 32rem;
  font-weight: 300;
  line-height: 1;
  color: var(--text-muted);
}

.sz-head__logos {
  display: inline-flex;
  align-items: center;
  gap: 14rem;
}

.sz-head__logo {
  display: block;
  width: auto;
  height: auto;
}

.sz-head__logo--systena {
  height: 52rem;
  width: auto;
  max-width: none;
}

.sz-head__logo--zoho {
  height: 52rem;
  width: auto;
  max-width: none;
}

.sz-head__times {
  font-size: 22rem;
  font-weight: 800;
  line-height: 1;
  color: var(--text-muted);
}

.sz-head__da {
  font-weight: 700;
}

.sz-head__title {
  margin: 0;
  font-size: 40rem;
  font-weight: 800;
  color: var(--zoho-navy);
  letter-spacing: 0.06em;
  line-height: 1.3;
}

.sz-partnership {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 56rem;
}

.sz-partnership__bridge {
  display: grid;
  grid-template-columns: max-content max-content max-content;
  grid-template-areas: "systena hand zoho";
  align-items: center;
  column-gap: 0;
}

.sz-partnership__unit {
  display: flex;
  align-items: flex-end;
  overflow: visible;
}

.sz-partnership__unit--systena {
  grid-area: systena;
}

.sz-partnership__unit--zoho {
  grid-area: zoho;
}

.sz-partnership__illust {
  flex: 0 0 var(--sz-illust-size-pc);
  width: var(--sz-illust-size-pc);
  margin: 0;
  position: relative;
  z-index: 2;
  line-height: 0;
}

.sz-partnership__illust img {
  display: block;
  width: var(--sz-illust-size-pc);
  max-width: none;
  height: auto;
}

.sz-partnership__illust--systena {
  flex: 0 0 var(--sz-illust-size-systena-pc);
  width: var(--sz-illust-size-systena-pc);
  margin-right: calc(-1 * var(--sz-illust-overlap-pc));
  margin-bottom: calc(-1 * var(--sz-illust-corner-overlap-pc));
  transform: translate(calc(-1 * var(--sz-illust-shift-left-pc)), var(--sz-illust-shift-pc));
}

.sz-partnership__illust--systena img {
  width: var(--sz-illust-size-systena-pc);
}

.sz-partnership__illust--zoho {
  margin-left: calc(-1 * var(--sz-illust-overlap-pc));
  margin-bottom: calc(-1 * var(--sz-illust-corner-overlap-pc));
  transform: translateY(var(--sz-illust-shift-pc));
}

.sz-partner__card {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  box-sizing: border-box;
  width: var(--sz-card-width-pc);
  padding: 28rem 24rem;
  border: 2rem solid;
  border-radius: var(--radius-lg);
  background: var(--white);
  text-align: center;
}

.sz-partner__card--systena {
  margin-left: calc(-1 * var(--sz-card-expand-pc));
  border-color: var(--cta-orange);
}

.sz-partner__card--zoho {
  border-color: var(--zoho-blue);
}

.sz-partner__name {
  margin: 0 0 16rem;
  font-size: 24rem;
  font-weight: 800;
  line-height: 1.3;
}

.sz-partner__card--systena .sz-partner__name {
  color: var(--cta-orange);
}

.sz-partner__card--zoho .sz-partner__name {
  color: var(--zoho-blue);
}

.sz-partner__text {
  max-width: var(--sz-partner-text-width-pc);
  margin: 0;
  font-size: 15rem;
  font-weight: 500;
  line-height: 1.85;
  color: var(--text);
  text-align: left;
}

.sz-partner__card--systena .sz-partner__text {
  margin-left: auto;
}

.sz-partner__card--zoho .sz-partner__text {
  margin-right: auto;
}

.sz-partnership__hand {
  grid-area: hand;
  position: relative;
  z-index: 2;
  line-height: 0;
  margin: 0;
}

.sz-partnership__hand img {
  display: block;
  width: 88rem;
  height: auto;
}

.sz-partnership__times {
  display: none;
}

.sz-banner {
  position: relative;
  overflow: hidden;
  width: calc(100% - var(--sz-banner-width-inset-pc));
  margin-left: auto;
  margin-right: auto;
  padding: 40rem 48rem 44rem;
  border-radius: 0 var(--radius-lg) 0 var(--radius-lg);
  border-top: 1rem solid rgba(255, 255, 255, 0.32);
  background: linear-gradient(
    155deg,
    #42a0e2 0%,
    var(--zoho-blue) 34%,
    #2b7fbe 72%,
    var(--zoho-blue-dark) 100%
  );
  box-shadow:
    0 10rem 36rem rgba(13, 45, 79, 0.22),
    inset 0 1rem 0 rgba(255, 255, 255, 0.38),
    inset 0 -2rem 8rem rgba(0, 0, 0, 0.08);
  color: var(--white);
  text-align: center;
}

.sz-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.26) 0%,
    rgba(255, 255, 255, 0.08) 38%,
    transparent 58%
  ),
  linear-gradient(315deg, transparent 62%, rgba(255, 255, 255, 0.07) 100%);
  pointer-events: none;
}

.sz-banner::after {
  content: "";
  position: absolute;
  top: -35%;
  left: -8%;
  width: 58%;
  height: 90%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.2) 0%, transparent 72%);
  pointer-events: none;
}

.sz-banner__text {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 16rem;
  font-weight: 500;
  line-height: 1.9;
  text-shadow:
    0 2rem 4rem rgba(13, 45, 79, 0.32),
    0 4rem 14rem rgba(13, 45, 79, 0.2);
}

.sz-banner__text + .sz-banner__text {
  margin-top: 0;
}

.sz-banner__catch {
  position: relative;
  z-index: 1;
  margin: 28rem 0 0;
  font-size: 28rem;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: var(--white);
  text-shadow:
    0 2rem 4rem rgba(13, 45, 79, 0.5),
    0 4rem 14rem rgba(13, 45, 79, 0.38),
    0 6rem 22rem rgba(13, 45, 79, 0.24);
}

.sz-banner__cta {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-width: 280rem;
  margin: 28rem auto 0;
}

/* ----- ご利用までの流れ ----- */
.sec-flow {
  padding: calc(var(--section-gap-pc) * 0.5) 56rem 80rem;
  background: var(--zoho-blue-light);
}

.sec-flow__title {
  margin: 0 0 0rem;
  text-align: center;
  font-size: 36rem;
  font-weight: 800;
  color: var(--zoho-navy);
  letter-spacing: 0.04em;
}

.sec-flow__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20rem;
  list-style: none;
  max-width: 1320rem;
  margin: 0 auto;
  padding: 24rem 0 0;
}

.flow-step {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-top: 36rem;
}

.flow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 55%;
  right: -14rem;
  width: 0;
  height: 0;
  border-top: 10rem solid transparent;
  border-bottom: 10rem solid transparent;
  border-left: 12rem solid var(--zoho-blue);
  transform: translateY(-50%);
  z-index: 3;
}

.flow-step__badge {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 72rem;
  height: 72rem;
  border: 2rem solid var(--zoho-blue);
  border-radius: 50%;
  background: var(--white);
  transform: translateX(-50%);
  line-height: 1.1;
}

.flow-step__badge-label {
  font-size: 11rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: 0.06em;
}

.flow-step__badge-num {
  margin-top: 2rem;
  font-size: 28rem;
  font-weight: 800;
  line-height: 1;
  color: var(--zoho-red);
}

.flow-step__card {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  min-height: 200rem;
  padding: 44rem 14rem 24rem;
  border: 2rem solid var(--zoho-blue);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 4rem 14rem rgba(13, 45, 79, 0.1);
  text-align: center;
  overflow: hidden;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.flow-step:hover .flow-step__card {
  transform: translateY(-4rem);
  box-shadow: 0 8rem 22rem rgba(13, 45, 79, 0.18);
}

.flow-step__illus {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: auto;
  max-width: 92%;
  max-height: 78%;
  height: auto;
  object-fit: contain;
  object-position: right bottom;
  opacity: 0.25;
  pointer-events: none;
}

.flow-step:first-child .flow-step__card {
  box-shadow: 0 6rem 20rem rgba(13, 45, 79, 0.16);
}

.flow-step__name {
  position: relative;
  z-index: 1;
  margin: 0 0 16rem;
  font-size: 22rem;
  font-weight: 800;
  color: var(--zoho-blue);
  line-height: 1.35;
}

.flow-step__desc {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 15rem;
  font-weight: 500;
  line-height: 1.85;
  color: var(--text);
}

.sec-flow__cta {
  display: flex;
  justify-content: center;
  margin-top: 48rem;
}

/* ----- 製品紹介 ----- */
.sec-product {
  position: relative;
  padding: calc(var(--section-gap-pc) - 25rem) 0 calc(var(--section-gap-pc) - 16rem);
  overflow: hidden;
}

.sec-product__bg {
  position: absolute;
  inset: 0;
  background-color: var(--white);
}

.sec-product__bg::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  height: 100%;
  background-image: url("../img/productback.png");
  background-position: right center;
  background-size: 90% auto;
  background-repeat: no-repeat;
  opacity: 0.85;
}

.sec-product__inner {
  position: relative;
  z-index: 1;
  width: var(--shell-pc);
  max-width: 100%;
  margin: 0 auto;
  padding: 0 56rem;
}

.sec-product__title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 0 48rem;
  text-align: center;
  font-size: 36rem;
  font-weight: 800;
  color: var(--zoho-navy);
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.sec-product__title-text {
  display: block;
}

.sec-product__title-line {
  flex-basis: 100%;
}

.sec-product__title-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72rem;
  height: 72rem;
  margin: 0 8rem 0 4rem;
  padding: 3rem;
  border-radius: 50%;
  background: conic-gradient(
    from 315deg,
    #e42527 0deg,
    #f9b31d 40deg,
    #099949 80deg,
    #329bff 180deg,
    #099949 260deg,
    #f9b31d 300deg,
    #e42527 360deg
  );
  flex-shrink: 0;
}

.sec-product__title-num-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--white);
  font-size: 58rem;
  font-weight: 800;
  color: var(--zoho-navy);
  line-height: 1;
}

.sec-product__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24rem;
}

.sec-product__lead {
  margin: 52rem 0 0;
  text-align: center;
  font-size: 18rem;
  font-weight: 700;
  line-height: 1.75;
  color: var(--zoho-blue);
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  transition: transform 0.2s ease;
}

.product-card:hover {
  transform: translateY(-4rem);
}

.product-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.product-card__category {
  position: absolute;
  top: 44rem;
  left: 0;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 8rem 28rem;
  min-height: 44rem;
  font-size: 17rem;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  white-space: nowrap;
  background: var(--white);
  border: 2rem solid var(--product-accent);
  border-radius: 999rem;
  transform: translate(-4%, -50%);
}

.product-card__panel {
  position: relative;
  width: 100%;
  margin-top: 44rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  transition: box-shadow 0.2s ease;
}

.product-card__before {
  position: relative;
  padding: 31rem 16rem 32rem;
  background: #555d6b;
  color: var(--white);
  text-align: center;
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 18rem),
    50% 100%,
    0 calc(100% - 18rem)
  );
}

.product-card__before ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-card__before li {
  font-size: 13rem;
  font-weight: 500;
  line-height: 1.75;
}

.product-card__before li + li {
  margin-top: 10rem;
}

.product-card__after {
  padding: 24rem 16rem 22rem;
  background: var(--white);
  text-align: center;
}

.product-card__name {
  margin: 0 0 14rem;
  font-size: 22rem;
  font-weight: 800;
  line-height: 1.3;
}

.product-card__after ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-card__after li {
  font-size: 13rem;
  font-weight: 500;
  line-height: 1.75;
  color: var(--text);
}

.product-card__after li + li {
  margin-top: 10rem;
}

.product-card--network {
  --product-accent: #e42527;
}

.product-card--access {
  --product-accent: #099949;
}

.product-card--patch {
  --product-accent: #f9b31d;
}

.product-card--network .product-card__category,
.product-card--network .product-card__name {
  color: var(--product-accent);
}

.product-card--access .product-card__category,
.product-card--access .product-card__name {
  color: var(--product-accent);
}

.product-card--patch .product-card__category,
.product-card--patch .product-card__name {
  color: var(--product-accent);
}

.product-card--network .product-card__panel {
  box-shadow: 0 4rem 24rem rgba(228, 37, 39, 0.52);
}

.product-card--access .product-card__panel {
  box-shadow: 0 4rem 20rem rgba(9, 153, 73, 0.36);
}

.product-card--patch .product-card__panel {
  box-shadow: 0 4rem 20rem rgba(249, 178, 29, 0.38);
}

.product-card--network:hover .product-card__panel {
  box-shadow: 0 8rem 28rem rgba(228, 37, 39, 0.62);
}

.product-card--access:hover .product-card__panel {
  box-shadow: 0 8rem 26rem rgba(9, 153, 73, 0.48);
}

.product-card--patch:hover .product-card__panel {
  box-shadow: 0 8rem 26rem rgba(249, 178, 29, 0.52);
}

.sec-product__cta {
  display: flex;
  justify-content: center;
  margin-top: 48rem;
}

/* ----- Footer ----- */
.footer {
  padding: 50rem 20rem;
  background: #1d1d1b;
  color: var(--white);
}

.footer__inner {
  display: flex;
  gap: 30rem;
  align-items: flex-start;
  justify-content: space-between;
  width: 900rem;
  max-width: 100%;
  margin: 0 auto 20rem;
  box-sizing: border-box;
}

.footer__nav {
  flex: 0 0 auto;
  align-self: flex-end;
  margin-left: 50rem;
  width: 40%;
}

.footer__nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 16rem;
  font-weight: 700;
  line-height: 2.2;
}

.footer__nav-item--group {
  margin: 0;
}

.footer__nav-label {
  display: block;
}

.footer__nav-sub {
  margin: 0;
  padding: 0 0 0 24rem;
  list-style: none;
}

.footer__nav a {
  color: var(--white);
}

.footer__nav a:hover {
  color: var(--orange);
}

.footer__aside {
  flex: 1;
  max-width: 560rem;
  margin-left: auto;
}

.footer__contact {
  margin-bottom: 28rem;
}

.footer__company {
  margin: 0 0 12rem;
  font-size: 28rem;
  font-weight: 800;
  color: var(--orange);
}

.footer__lead {
  margin: 0 0 16rem;
  font-size: 16rem;
  font-weight: 700;
  line-height: 1.7;
}

.footer__tel-row {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16rem 20rem;
}

.footer__hours {
  margin: 0;
  padding-bottom: 6rem;
  font-size: 17rem;
  font-weight: 700;
  line-height: 1.4;
}

.footer__tel {
  margin: 0;
  font-size: 32rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.footer__tel a {
  color: var(--white);
}

.footer__banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100rem;
  overflow: hidden;
  text-decoration: none;
}

.footer__banner-media {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.footer__banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.4);
  pointer-events: none;
}

.footer__banner-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14rem;
  padding: 24rem 20rem;
  text-align: center;
}

.footer__banner-label {
  color: var(--black);
  font-size: 16rem;
  font-weight: 700;
  line-height: 1.4;
}

.footer__banner-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30rem;
  padding: 0 28rem;
  border: 2rem solid var(--blue);
  border-radius: 999rem;
  background: var(--white);
  color: var(--blue);
  font-size: 14rem;
  font-weight: 800;
  line-height: 1.2;
}

.footer__banner-btn:hover {
  background: var(--blue);
  color: var(--white);
}

.footer__copy {
  width: 1100rem;
  max-width: 100%;
  margin: 0 auto;
  padding-top: 24rem;
  border-top: 1rem solid #444444;
  font-size: 11rem;
  text-align: center;
  color: #aaaaaa;
  box-sizing: border-box;
}

/* アンカー飛び先の見切れ防止 */
#sec-strong,
#sec-zoho,
#sec-systena-zoho,
#sec-flow,
#sec-product,
#sec-company,
#sec-product-opmanager,
#sec-product-pam360,
#sec-product-pmp {
  scroll-margin-top: 96rem;
}

/* ----- SP ----- */
@media (max-width: 767px) {
  html {
    font-size: min(calc(100vw / 375), 1px);
    overflow-x: hidden;
    width: 100%;
    overscroll-behavior-x: none;
  }

  body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    overscroll-behavior-x: none;
  }

  main {
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
  }

  .lp {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .lp > section[class*="sec-"],
  .lp > footer {
    width: 100%;
    margin-left: 0;
  }

  .u-br-sp {
    display: inline;
  }

  .u-br-pc {
    display: none;
  }


  .lp-header {
    --lp-header-h: 50rem;
    overflow: visible;
  }

  .lp-header__inner {
    width: 100%;
    max-width: 100%;
    padding: 0 16rem;
    gap: 10rem;
    justify-content: flex-start;
    min-width: 0;
    overflow-x: hidden;
  }

  .lp-header__nav {
    display: none;
  }

  .lp-header__actions {
    flex-shrink: 1;
    min-width: 0;
    margin-left: auto;
    gap: 10rem;
  }

  .lp-header .btn--header-cta {
    flex-shrink: 1;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 12rem;
    padding: 2rem 14rem;
    min-height: 30rem;
  }

  .lp-header__menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40rem;
    height: 40rem;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
  }

  .lp-header__menu-toggle span,
  .lp-header__menu-toggle span::before,
  .lp-header__menu-toggle span::after {
    display: block;
    width: 24rem;
    height: 2rem;
    background: var(--text);
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .lp-header__menu-toggle span {
    position: relative;
  }

  .lp-header__menu-toggle span::before,
  .lp-header__menu-toggle span::after {
    content: "";
    position: absolute;
    left: 0;
  }

  .lp-header__menu-toggle span::before {
    top: -8rem;
  }

  .lp-header__menu-toggle span::after {
    top: 8rem;
  }

  .lp-header.is-menu-open .lp-header__menu-toggle span {
    background: transparent;
  }

  .lp-header.is-menu-open .lp-header__menu-toggle span::before {
    top: 0;
    transform: rotate(45deg);
  }

  .lp-header.is-menu-open .lp-header__menu-toggle span::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .lp-header__drawer {
    display: block;
    position: fixed;
    top: var(--lp-header-h);
    left: 0;
    right: 0;
    z-index: 99;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12rem);
    -webkit-backdrop-filter: blur(12rem);
    border-bottom: 1rem solid rgba(34, 109, 179, 0.1);
    box-shadow: 0 12rem 28rem rgba(0, 0, 0, 0.1);
    transition:
      max-height 0.35s ease,
      visibility 0.35s ease;
  }

  .lp-header__drawer.is-open {
    max-height: min(70vh, 480rem);
    overflow-y: auto;
    visibility: visible;
  }

  .lp-header__drawer-list {
    margin: 0;
    padding: 12rem 18rem 20rem;
    list-style: none;
  }

  .lp-header__drawer-list > li {
    border-bottom: 1rem solid rgba(34, 109, 179, 0.08);
  }

  .lp-header__drawer-list > li:last-child {
    border-bottom: none;
  }

  .lp-header__drawer-list a {
    display: block;
    padding: 14rem 4rem;
    font-size: 14rem;
    font-weight: 700;
    color: var(--text);
  }

  .lp-header__drawer-label {
    display: block;
    padding: 14rem 4rem 8rem;
    font-size: 13rem;
    font-weight: 800;
    color: var(--zoho-blue);
    text-decoration: none;
  }

  .lp-header__drawer-label:hover {
    color: var(--zoho-blue-dark);
  }

  .lp-header__drawer-group ul {
    list-style: none;
    margin: 0;
    padding: 0 0 8rem 16rem;
  }

  .lp-header__drawer-group ul a {
    padding: 10rem 4rem;
    font-size: 13rem;
    font-weight: 500;
  }

  .lp-header__logos {
    gap: 10rem;
    min-width: 0;
  }

  .lp-header__logo-times {
    font-size: 16rem;
  }

  .lp-header__logo img {
    max-height: 32rem;
    max-width: 140rem;
  }

  .lp-header__logo--zoho img {
    max-height: 34rem;
    max-width: 68rem;
  }

  .sec-mv,
  .sec-mv__shell {
    min-height: var(--mv-height-sp);
  }

  .sec-mv__shell {
    width: 100%;
    padding-top: 50rem;
  }

  .sec-mv__layer {
    min-height: calc(var(--mv-height-sp) - 50rem);
    padding: 24rem 20rem 0;
  }

  .sec-mv__partner {
    --partner-flag-w: 340rem;
    top: calc(50rem + 24rem);
    left: 20rem;
    height: 56rem;
  }

  .sec-mv__partner-text {
    font-size: 13rem;
  }

  .sec-mv__center {
    padding-top: 50rem;
  }

  .sec-mv__title {
    font-size: 24rem;
    margin-bottom: 20rem;
    line-height: 1.6;
  }

  .sec-mv__lead {
    font-size: 16rem;
    line-height: 1.75;
  }

  .sec-mv__center > .sec-mv__lead:last-of-type {
    margin-bottom: 12rem;
  }

  .btn--mv-cta {
    min-height: 48rem;
    padding: 7rem 36rem;
    font-size: 15rem;
    width: 100%;
    max-width: 300rem;
  }

  .sec-strong {
    padding: 24rem 0 calc(16rem + var(--strong-curve-depth-sp) * 0.5);
  }

  .sec-strong__bg {
    bottom: calc(var(--strong-curve-depth-sp) * -0.5);
    border-radius: 0 0 50% 50% / 0 0 var(--strong-curve-depth-sp) var(--strong-curve-depth-sp);
  }

  .sec-strong__inner {
    padding: 0 20rem;
  }

  .sec-strong__title {
    font-size: 22rem;
    margin-bottom: 32rem;
  }

  .sec-strong__title-num {
    width: 52rem;
    height: 52rem;
    margin: 0 6rem 0 2rem;
    padding: 2rem;
  }

  .sec-strong__title-num-inner {
    font-size: 40rem;
  }

  .sec-strong__list {
    gap: 24rem;
  }

  .sec-strong__cta {
    margin-top: 32rem;
    gap: 20rem;
  }
  

  .sec-strong__cta-lead {
    font-size: 18rem;
    line-height: 1.7;
  }

  .sec-strong__cta-note {
    font-size: 16rem;
    gap: 8rem;
    margin-bottom: -10rem;
  }

  .sec-strong__cta-slash {
    font-size: 22rem;
  }

  .sec-strong__cta .btn--mv-cta {
    width: 100%;
    max-width: 320rem;
    padding-left: 16rem;
    padding-right: 16rem;
  }

  .strong-card {
    padding: 24rem 24rem 10rem;
    max-width: 100%;
    height: auto;
    min-height: 0;
  }

  .strong-card__layout {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    grid-template-areas:
      "heading"
      "body";
    row-gap: 12rem;
    align-items: start;
  }

  .strong-card__body {
    grid-area: body;
    display: block;
    font-size: 14rem;
    line-height: 1.9;
  }

  .strong-card__body::after {
    content: "";
    display: table;
    clear: both;
  }

  .strong-card__figure {
    float: right;
    width: auto;
    height: 150rem;
    margin: 0 0 20rem 0;
    line-height: 0;
    shape-outside: inset(4em 0 0 0);
    -webkit-shape-outside: inset(4em 0 0 0);
    grid-column: auto;
    grid-row: auto;
    align-self: auto;
  }

  .strong-card__figure img {
    display: block;
    width: 100%;
    max-width: 132rem;
    margin: 4em 0 0;
  }

  .strong-card__heading {
    grid-area: heading;
    display: flex;
    align-items: flex-start;
    gap: 15rem;
    padding-bottom: 10rem;
  }

  .strong-card__heading::after {
    width: 100%;
  }

  .strong-card__num {
    font-size: 24rem;
  }

  .strong-card__title {
    flex: 1 1 0;
    min-width: 0;
    font-size: 18rem;
  }

  .strong-card__text {
    margin: 0;
    font-size: inherit;
    line-height: inherit;
    padding: 0;
    max-width: none;
    grid-column: auto;
    grid-row: auto;
  }

  .sec-zoho {
    padding: var(--section-gap-sp) 0 calc(8rem + var(--strong-curve-depth-sp) * 0.25);
    overflow: visible;
  }

  .lp > .sec-zoho {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow: visible;
  }

  .sec-zoho__inner {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 0 20rem;
    overflow: visible;
  }

  .sec-zoho__panel {
    position: relative;
    z-index: 1;
    padding-bottom: calc(var(--strong-curve-depth-sp) * 0.4);
    overflow: visible;
  }

  .sec-zoho__panel-bg {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: calc(var(--strong-curve-depth-sp) * -0.6);
    left: 50%;
    width: calc(100vw + 32rem);
    margin-left: calc(-50vw - 16rem);
    background: var(--white);
    border-radius: 0 0 50% 50% / 0 0 calc(var(--strong-curve-depth-sp) * 1.15) calc(var(--strong-curve-depth-sp) * 1.15);
  }

  .sec-zoho__content {
    position: relative;
    z-index: 2;
  }

  .sec-zoho__logo {
    width: 160rem;
    margin-bottom: 24rem;
  }

  .sec-zoho__company {
    font-size: 22rem;
  }

  .sec-zoho__desc {
    max-width: 100%;
    font-size: 14rem;
    line-height: 1.85;
    text-align: left;
  }

  .sec-zoho__band {
    position: relative;
    z-index: 0;
    left: 50%;
    width: 100vw;
    height: calc(var(--zoho-band-height-sp) + var(--strong-curve-depth-sp) * 0.5);
    margin: calc(40rem - var(--strong-curve-depth-sp) * 0.85) 0 calc(var(--strong-curve-depth-sp) * -0.5);
    margin-left: -50vw;
    background: var(--zoho-blue);
    border-radius: 0 0 50% 50% / 0 0 var(--strong-curve-depth-sp) var(--strong-curve-depth-sp);
  }

  .sec-systena-zoho {
    padding: calc(var(--section-gap-sp) * 0.5) 0 calc(var(--section-gap-sp) * 0.5);
  }

  .sec-systena-zoho__inner {
    padding: 0 20rem;
  }

  .sz-head {
    margin-bottom: 36rem;
  }

  .sz-head__lead {
    gap: 6rem 10rem;
    margin-bottom: 14rem;
    font-size: 16rem;
  }

  .sz-head__slash {
    font-size: 24rem;
  }

  .sz-head__logos {
    gap: 10rem;
  }

  .sz-head__logo--systena,
  .sz-head__logo--zoho {
    height: 34rem;
    width: auto;
    max-width: none;
  }

  .sz-head__times {
    font-size: 18rem;
  }

  .sz-head__title {
    font-size: 28rem;
  }

  .sz-partnership {
    margin-bottom: 36rem;
  }

  .sz-partnership__bridge {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto max-content auto;
    grid-template-areas:
      "systena"
      "hand"
      "zoho";
    width: 100%;
    row-gap: 0;
  }

  .sz-partnership__unit {
    justify-content: center;
    width: 100%;
  }

  .sz-partner__card {
    flex: 1;
    min-width: 0;
    width: auto;
    max-width: 100%;
    padding: 24rem 20rem;
  }

  .sz-partner__card--systena {
    margin-left: 0;
  }

  .sz-partner__name {
    font-size: 20rem;
    margin-bottom: 12rem;
  }

  .sz-partner__text {
    max-width: min(var(--sz-partner-text-width-sp), 100%);
    font-size: 14rem;
    line-height: 1.8;
  }

  .sz-partner__card--systena .sz-partner__text {
    margin-left: auto;
  }

  .sz-partner__card--zoho .sz-partner__text {
    margin-right: auto;
  }

  .sz-partnership__illust {
    flex: 0 0 var(--sz-illust-size-sp);
    width: var(--sz-illust-size-sp);
  }

  .sz-partnership__illust img {
    width: var(--sz-illust-size-sp);
    max-width: none;
  }

  .sz-partnership__illust--systena {
    flex: 0 0 var(--sz-illust-size-systena-sp);
    width: var(--sz-illust-size-systena-sp);
    margin-right: calc(-1 * var(--sz-illust-overlap-sp));
    margin-bottom: calc(-1 * var(--sz-illust-corner-overlap-sp));
    transform: translate(calc(-1 * var(--sz-illust-shift-left-sp)), var(--sz-illust-shift-sp));
  }

  .sz-partnership__illust--systena img {
    width: var(--sz-illust-size-systena-sp);
  }

  .sz-partnership__illust--zoho {
    margin-left: calc(-1 * var(--sz-illust-overlap-sp));
    margin-bottom: calc(-1 * var(--sz-illust-corner-overlap-sp));
    transform: translateY(var(--sz-illust-shift-sp));
  }

  .sz-partnership__hand {
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    margin: 0;
    line-height: 1;
  }

  .sz-partnership__hand img {
    display: none;
  }

  .sz-partnership__times {
    display: block;
    font-size: 28rem;
    font-weight: 800;
    color: var(--text-muted);
    line-height: 1;
  }

  .sz-banner {
    width: calc(100% - var(--sz-banner-width-inset-sp));
    padding: 28rem 20rem 32rem;
    border-radius: 0 16rem 0 16rem;
  }

  .sz-banner__text {
    font-size: 14rem;
    line-height: 1.85;
  }

  .sz-banner__catch {
    margin-top: 20rem;
    font-size: 20rem;
  }

  .sz-banner__cta {
    min-width: 0;
    width: 100%;
    max-width: 280rem;
    margin-top: 24rem;
  }

  .sec-flow {
    padding: calc(var(--section-gap-sp) * 0.5) 20rem 40rem;
  }

  .sec-flow__title {
    font-size: 24rem;
    margin-bottom: 24rem;
  }

  .sec-flow__steps {
    grid-template-columns: 1fr;
    gap: 10rem;
    padding-top: 0;
  }

  .flow-step {
    padding-top: 32rem;
  }

  .flow-step:not(:last-child)::after {
    display: none;
  }

  .flow-step__badge {
    width: 64rem;
    height: 64rem;
  }

  .flow-step__badge-label {
    font-size: 10rem;
  }

  .flow-step__badge-num {
    font-size: 24rem;
  }

  .flow-step__card {
    min-height: 0;
    padding: 40rem 20rem 20rem;
  }

  .flow-step__name {
    font-size: 19rem;
    margin-bottom: 12rem;
  }

  .flow-step__desc {
    font-size: 14rem;
    line-height: 1.8;
  }

  .sec-flow__cta {
    margin-top: 32rem;
  }

  .sec-flow__cta .btn--mv-cta {
    width: 100%;
    max-width: 320rem;
  }

  .sec-product {
    padding: calc(var(--section-gap-sp) - 2rem) 0 calc(var(--section-gap-sp) - 12rem);
  }

  .sec-product__bg::after {
    width: 100%;
    opacity: 0.15;
  }

  .sec-product__inner {
    padding: 0 20rem;
  }

  .sec-product__title {
    font-size: 20rem;
    margin-bottom: 24rem;
    letter-spacing: 0.02em;
    flex-wrap: wrap;
    row-gap: 8rem;
  }

  .sec-product__title-num {
    width: 40rem;
    height: 40rem;
    margin: 0 3rem;
    padding: 2rem;
  }

  .sec-product__title-num-inner {
    font-size: 32rem;
  }

  .sec-product__list {
    grid-template-columns: 1fr;
    gap: 20rem;
  }

  .sec-product__lead {
    margin-top: 40rem;
    font-size: 16rem;
  }

  .sec-product__cta {
    margin-top: 20rem;
  }

  .sec-product__cta .btn--mv-cta {
    width: 100%;
    max-width: 320rem;
  }

  .product-card__category {
    top: 36rem;
    padding: 6rem 22rem;
    min-height: 40rem;
    font-size: 15rem;
    transform: translate(-2%, -50%);
  }

  .product-card__panel {
    margin-top: 36rem;
  }

  .product-card__name {
    font-size: 20rem;
  }

  .product-card__before li,
  .product-card__after li {
    font-size: 14rem;
  }

  /*---Footer---*/
  .footer {
    padding: 20rem 12rem;
  }

  .footer__inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 10rem;
    width: 100%;
    margin-bottom: 16rem;
  }

  .footer__nav {
    flex: 0 1 45%;
    align-self: flex-end;
    margin-left: 0;
    margin-left: 20rem;
    width: auto;
    min-width: 0;
  }

  .footer__nav-list {
    font-size: 12rem;
    line-height: 1.7;
  }

  .footer__nav-sub {
    padding-left: 8rem;
  }

  .footer__aside {
    flex: 1 1 56%;
    max-width: none;
    margin-left: 0;
    min-width: 0;
  }

  .footer__contact {
    margin-bottom: 8rem;
  }

  .footer__company {
    margin-bottom: 4rem;
    font-size: 14rem;
  }

  .footer__lead {
    margin-bottom: 6rem;
    font-size: 9rem;
    line-height: 1.55;
  }

  .footer__tel-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }

  .footer__tel {
    font-size: 18rem;
  }

  .footer__hours {
    padding-bottom: 0;
    font-size: 8rem;
  }

  .footer__banner {
    min-height: 64rem;
  }

  .footer__banner-body {
    gap: 4rem;
    padding: 8rem 6rem;
  }

  .footer__banner-label {
    font-size: 9rem;
  }

  .footer__banner-btn {
    min-width: 0;
    min-height: 20rem;
    padding: 0 8rem;
    font-size: 8rem;
  }

  .footer__copy {
    width: 100%;
    padding-top: 12rem;
    font-size: 8rem;
  }

  #sec-strong,
  #sec-zoho,
  #sec-systena-zoho,
  #sec-flow,
  #sec-product,
  #sec-company,
  #sec-product-opmanager,
  #sec-product-pam360,
  #sec-product-pmp {
    scroll-margin-top: 72rem;
  }
}
