/* FV */
.fv {
  --fv-visual-height: minmax(0, 1fr);
  --fv-scroll-center-y: 50%;

  position: relative;
  display: grid;
  grid-template-rows: var(--fv-visual-height) auto;
  min-height: calc(100svh - 84px);
  overflow: hidden;
  background: var(--base_color_w);
}

.lower-page-statement {
  display: grid;
  justify-items: center;
  gap: 16px;
  width: 100%;
  max-width: 900px;
  padding: 72px 20px;
  margin: 0 auto;
  text-align: center;
  background: var(--base_color_w);
}

.lower-page-statement.is-motion-ready> :where(.kship-stacked-logo, .message-lead, .statement-support) {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 1.05s ease,
    transform 1.05s cubic-bezier(.16, 1, .3, 1);
}

.lower-page-statement.is-motion-ready .message-lead {
  transition-delay: .18s;
}

.lower-page-statement.is-motion-ready .statement-support {
  transition-delay: .36s;
}

.lower-page-statement.is-motion-ready.is-visible> :where(.kship-stacked-logo, .message-lead, .statement-support) {
  opacity: 1;
  transform: translateY(0);
}

.kship-stacked-logo,
.privacy-page-footer__logo {
  display: block;
  width: 65px;
  height: auto;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 768px) {

  .kship-stacked-logo,
  .privacy-page-footer__logo {
    width: 100px;
  }

  .lower-page-statement {
    gap: 20px;
    padding: 78px 0px 92px;
  }
}

/* About */
.about-page {
  overflow-x: clip;
  background: #f6f6fb;
}

.about-hero {
  --about-hero-band: 54px;
  --about-wave-height: clamp(68px, 6.35vw, 122px);
  --about-ship-y-start: calc(var(--about-wave-height) * 0.56);
  --about-ship-y-1: calc(var(--about-wave-height) * 0.7);
  --about-ship-y-2: calc(var(--about-wave-height) * 0.63);
  --about-ship-y-3: calc(var(--about-wave-height) * 0.76);
  --about-ship-y-4: calc(var(--about-wave-height) * 0.6);
  --about-ship-y-5: calc(var(--about-wave-height) * 0.54);
  --about-ship-y-6: calc(var(--about-wave-height) * 0.56);
  --about-ship-y-7: calc(var(--about-wave-height) * 0.52);
  --about-ship-y-end: calc(var(--about-wave-height) * 0.58);
  --about-ship-start-offset: 0px;
  --about-ship-end-offset: 12px;

  position: relative;
  min-height: 238px;
  overflow: hidden;
  background: var(--base_color_w);
}

.about-hero__visual {
  position: absolute;
  inset: 0 0 var(--about-hero-band);
  z-index: 0;
  overflow: hidden;
  background: url("../images/about/hero-sea-ship-poster.webp") center bottom / cover no-repeat;
}

.about-hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 134, 172, 0.7);
  pointer-events: none;
}

.about-hero__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

@media (prefers-reduced-motion: reduce) {
  .about-hero__video {
    display: none;
  }
}

.about-hero__scene {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.about-hero__wave {
  position: absolute;
  right: 0;
  bottom: var(--about-hero-band);
  left: 0;
  z-index: 1;
  height: var(--about-wave-height);
  overflow: hidden;
  pointer-events: none;
}

.about-hero__wave-svg {
  position: absolute;
  left: 0;
  width: 300%;
  height: 112%;
  transform: translateX(0);
  animation: aboutWaveDrift 16s linear infinite;
}

.about-hero__wave-svg--back {
  bottom: -20%;
  height: 106%;
  opacity: 0.54;
  animation-duration: 24s;
  animation-direction: reverse;
}

.about-hero__wave-svg--back path {
  fill: #54C3F1;
}

.about-hero__wave-svg--front {
  bottom: -1px;
}

.about-hero__wave-svg--front path {
  fill: #54C3F1;
}

.about-hero__sun {
  position: absolute;
  top: 47%;
  right: 108%;
  width: 48px;
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0;
  transform: translate(50%, -50%);
  background-color: #ffe88e;
  background-image:
    radial-gradient(circle at 50% 50%, rgba(255, 218, 96, 0.2) 0 34%, rgba(255, 190, 74, 0.08) 58%, rgba(255, 190, 74, 0) 76%);
  box-shadow:
    0 0 12px 6px rgba(255, 255, 231, 0.62),
    0 0 24px 12px rgba(176, 236, 255, 0.3),
    0 0 36px 16px rgba(255, 218, 132, 0.12);
  filter: brightness(1);
  isolation: isolate;
  animation:
    aboutSunMove 52s linear 0.15s infinite,
    aboutSunGlow 6.4s ease-in-out infinite;
}

.about-hero__sun::before,
.about-hero__sun::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

.about-hero__sun::before {
  z-index: 1;
  background:
    radial-gradient(circle at 46% 42%, rgba(255, 236, 148, 0.28) 0 32%, rgba(255, 218, 112, 0.1) 54%, rgba(255, 218, 112, 0) 78%);
  box-shadow:
    inset -3px -4px 8px rgba(255, 231, 145, 0.09),
    inset 4px 4px 9px rgba(255, 234, 148, 0.14);
  animation: aboutSunCore 52s linear 0.15s infinite;
}

.about-hero__sun::after {
  inset: -30%;
  z-index: -1;
  background:
    radial-gradient(circle, rgba(255, 255, 231, 0.34) 0 28%, rgba(255, 236, 165, 0.18) 44%, rgba(255, 190, 110, 0.06) 62%, rgba(255, 190, 110, 0) 76%);
  mix-blend-mode: screen;
  opacity: 0.42;
  animation: aboutSunIris 7.2s ease-in-out infinite;
}

.about-hero__ship-wrap {
  position: absolute;
  top: calc(100% - var(--about-hero-band) - var(--about-ship-y-start));
  right: -10%;
  width: clamp(70px, 5.85vw, 112px);
  margin-top: 0;
  opacity: 0;
  transform: translate(50%, -76%);
  transform-origin: 50% 72%;
  animation: aboutShipMove 52s linear 0.15s infinite;
}

.about-hero__ship {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  filter: drop-shadow(0 3px 3px rgba(0, 83, 129, 0.18));
  transform-origin: 50% 72%;
  animation: aboutShipJitter 1.9s ease-in-out infinite;
}

.page-hero-heading {
  --about-title-bottom: 4px;
  --about-title-size: clamp(30px, 8.6vw, 58px);
  --about-title-left: calc((var(--content_width) - 100vw) / 2 + 18px);
  --about-line-right: calc((var(--content_width) - 100vw) / 2);

  position: relative;
  z-index: 2;
  display: grid;
  align-content: end;
  width: var(--content_width);
  min-height: 238px;
  padding: 0 0 4px;
  margin: 0 auto;
}

.page-hero-heading__title {
  position: relative;
  width: max-content;
  max-width: none;
  margin: 0;
  margin-left: var(--about-title-left);
  color: var(--base_color_yellow);
  font-size: var(--about-title-size);
  font-weight: 900;
  line-height: 1;
  opacity: 0;
  transform: translateY(18px);
  animation: aboutTitleReveal 1.55s 0.72s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.page-hero-heading__title::before {
  position: absolute;
  z-index: -1;
  color: #6AB82E;
  content: attr(data-title);
  filter: blur(3px);
  opacity: 0;
  transform: translate(5px, 6px);
  animation: aboutTitleShadow 0.75s 2.25s ease-out forwards;
}

.page-hero-heading__line {
  position: absolute;
  bottom: calc(var(--about-title-bottom) + 3px);
  right: var(--about-line-right);
  left: var(--about-title-left);
  z-index: 3;
  height: 1.5px;
  background: var(--base_color_b2);
  transform: scaleX(0);
  transform-origin: right center;
  animation: aboutTitleLine 0.7s 0.12s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

@media (min-width: 768px) {
  .page-hero-heading__line {
    bottom: calc(var(--about-title-bottom) + 8px);
  }
}

@keyframes aboutTitleLine {
  0% {
    transform: scaleX(0);
  }

  100% {
    transform: scaleX(1);
  }
}

@keyframes aboutTitleReveal {
  0% {
    color: var(--base_color_w);
    opacity: 0;
    transform: translateY(18px);
  }

  42% {
    color: var(--base_color_w);
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    color: var(--base_color_b2);
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes aboutTitleShadow {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes aboutWaveDrift {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-33.3333%);
  }
}

@keyframes aboutSunMove {
  0% {
    top: 50%;
    right: 110%;
    background-color: #fffbd0;
    opacity: 0;
    transform: translate(50%, -50%) scale(0.56);
  }

  5% {
    top: 42%;
    right: 96%;
    background-color: #fff4b8;
    opacity: 0;
    transform: translate(50%, -50%) scale(0.7);
  }

  9% {
    top: 37%;
    right: 90%;
    background-color: #fff4b8;
    opacity: 1;
    transform: translate(50%, -50%) scale(0.78);
  }

  25% {
    top: 22%;
    right: 78%;
    background-color: #fff4b8;
    transform: translate(50%, -50%) scale(0.92);
  }

  50% {
    top: 14%;
    right: 50%;
    background-color: #ffe27a;
    transform: translate(50%, -50%) scale(1.32);
  }

  75% {
    top: 22%;
    right: 22%;
    background-color: #ffb347;
    transform: translate(50%, -50%) scale(0.94);
  }

  88% {
    background-color: #ff7a2f;
    opacity: 1;
  }

  95% {
    background-color: #e95420;
    opacity: 0;
  }

  100% {
    top: 51%;
    right: -6%;
    background-color: #e95420;
    opacity: 0;
    transform: translate(50%, -50%) scale(0.54);
  }
}

@keyframes aboutSunGlow {

  0%,
  100% {
    box-shadow:
      0 0 11px 5px rgba(255, 255, 231, 0.58),
      0 0 22px 11px rgba(255, 232, 172, 0.2),
      0 0 33px 15px rgba(255, 190, 110, 0.08);
    filter: brightness(1);
  }

  38% {
    box-shadow:
      0 0 15px 7px rgba(255, 255, 238, 0.72),
      0 0 29px 14px rgba(255, 232, 172, 0.3),
      0 0 41px 19px rgba(255, 190, 110, 0.13);
    filter: brightness(1.05);
  }

  68% {
    box-shadow:
      0 0 13px 6px rgba(255, 251, 216, 0.64),
      0 0 25px 12px rgba(255, 224, 160, 0.25),
      0 0 36px 17px rgba(255, 174, 96, 0.12);
    filter: brightness(1.02);
  }
}

@keyframes aboutSunCore {

  0%,
  52% {
    opacity: 1;
  }

  62% {
    opacity: 0.48;
  }

  75% {
    opacity: 0.28;
  }

  100% {
    opacity: 0.2;
  }
}

@keyframes aboutSunIris {

  0%,
  100% {
    opacity: 0.28;
    transform: scale(0.94);
  }

  42% {
    opacity: 0.46;
    transform: scale(1.03);
  }

  70% {
    opacity: 0.34;
    transform: scale(0.99);
  }
}

@keyframes aboutShipJitter {

  0%,
  100% {
    transform: translateY(0) scale(1) rotate(0deg);
  }

  18% {
    transform: translateY(-4px) scale(1.035) rotate(0.75deg);
  }

  38% {
    transform: translateY(0.5px) scale(0.99) rotate(-0.55deg);
  }

  58% {
    transform: translateY(-3px) scale(1.025) rotate(0.6deg);
  }

  78% {
    transform: translateY(0.5px) scale(0.985) rotate(-0.7deg);
  }
}

@keyframes aboutShipJitterSp {

  0%,
  100% {
    transform: translateY(0) scale(1) rotate(0deg);
  }

  25% {
    transform: translateY(-1.5px) scale(1.012) rotate(0.28deg);
  }

  50% {
    transform: translateY(0.25px) scale(0.996) rotate(-0.22deg);
  }

  75% {
    transform: translateY(-1px) scale(1.008) rotate(0.2deg);
  }
}

@keyframes aboutShipMove {
  0% {
    top: calc(100% - var(--about-hero-band) - var(--about-ship-y-2));
    right: 0%;
    opacity: 0;
    transform: translate(50%, calc(-76% + 2px + var(--about-ship-start-offset))) rotate(-1.4deg);
  }

  4% {
    top: calc(100% - var(--about-hero-band) - var(--about-ship-y-1));
    right: 3%;
    opacity: 0;
    transform: translate(50%, calc(-76% - 4px + var(--about-ship-start-offset))) rotate(2.6deg);
  }

  9% {
    top: calc(100% - var(--about-hero-band) - var(--about-ship-y-3));
    right: 7%;
    opacity: 1;
    transform: translate(50%, calc(-76% - 7px + var(--about-ship-start-offset))) rotate(4.2deg);
  }

  15% {
    top: calc(100% - var(--about-hero-band) - var(--about-ship-y-1));
    right: 11%;
    transform: translate(50%, calc(-76% - 4px + var(--about-ship-start-offset))) rotate(2deg);
  }

  18% {
    top: calc(100% - var(--about-hero-band) - var(--about-ship-y-2));
    right: 15%;
    transform: translate(50%, calc(-76% + 2px + var(--about-ship-start-offset))) rotate(-1.6deg);
  }

  21% {
    top: calc(100% - var(--about-hero-band) - var(--about-ship-y-4));
    right: 19%;
    transform: translate(50%, calc(-76% + 2px + var(--about-ship-start-offset))) rotate(-3deg);
  }

  24% {
    top: calc(100% - var(--about-hero-band) - var(--about-ship-y-7));
    right: 23%;
    transform: translate(50%, calc(-76% + 2px + var(--about-ship-start-offset))) rotate(-4.1deg);
  }

  25% {
    top: calc(100% - var(--about-hero-band) - var(--about-ship-y-2));
    right: 24%;
    transform: translate(50%, calc(-76% + 2px)) rotate(1.2deg);
  }

  27% {
    top: calc(100% - var(--about-hero-band) - var(--about-ship-y-4));
    right: 27%;
    transform: translate(50%, calc(-76% + 1px)) rotate(-1.9deg);
  }

  28% {
    top: calc(100% - var(--about-hero-band) - var(--about-ship-y-1));
    right: 28%;
    transform: translate(50%, calc(-76% - 4px)) rotate(2.8deg);
  }

  32% {
    top: calc(100% - var(--about-hero-band) - var(--about-ship-y-3));
    right: 32%;
    transform: translate(50%, calc(-76% - 7px)) rotate(4.3deg);
  }

  35% {
    top: calc(100% - var(--about-hero-band) - var(--about-ship-y-1));
    right: 36%;
    transform: translate(50%, calc(-76% - 4px)) rotate(2deg);
  }

  38% {
    top: calc(100% - var(--about-hero-band) - var(--about-ship-y-2));
    right: 40%;
    transform: translate(50%, calc(-76% + 2px)) rotate(-1.6deg);
  }

  41% {
    top: calc(100% - var(--about-hero-band) - var(--about-ship-y-4));
    right: 44%;
    transform: translate(50%, calc(-76% + 2px)) rotate(-3deg);
  }

  44% {
    top: calc(100% - var(--about-hero-band) - var(--about-ship-y-7));
    right: 48%;
    transform: translate(50%, calc(-76% + 2px)) rotate(-4.1deg);
  }

  47% {
    top: calc(100% - var(--about-hero-band) - var(--about-ship-y-4));
    right: 52%;
    transform: translate(50%, calc(-76% + 1px)) rotate(-1.9deg);
  }

  50% {
    top: calc(100% - var(--about-hero-band) - var(--about-ship-y-2));
    right: 56%;
    transform: translate(50%, calc(-76% + 2px)) rotate(1.2deg);
  }

  53% {
    top: calc(100% - var(--about-hero-band) - var(--about-ship-y-1));
    right: 60%;
    transform: translate(50%, calc(-76% - 4px)) rotate(2.8deg);
  }

  56% {
    top: calc(100% - var(--about-hero-band) - var(--about-ship-y-3));
    right: 64%;
    transform: translate(50%, calc(-76% - 7px)) rotate(4.3deg);
  }

  59% {
    top: calc(100% - var(--about-hero-band) - var(--about-ship-y-1));
    right: 68%;
    transform: translate(50%, calc(-76% - 4px)) rotate(2deg);
  }

  62% {
    top: calc(100% - var(--about-hero-band) - var(--about-ship-y-2));
    right: 72%;
    transform: translate(50%, calc(-76% + 2px)) rotate(-1.6deg);
  }

  65% {
    top: calc(100% - var(--about-hero-band) - var(--about-ship-y-4));
    right: 76%;
    transform: translate(50%, calc(-76% + 2px)) rotate(-3deg);
  }

  68% {
    top: calc(100% - var(--about-hero-band) - var(--about-ship-y-7));
    right: 79%;
    transform: translate(50%, calc(-76% + 2px)) rotate(-4.1deg);
  }

  71% {
    top: calc(100% - var(--about-hero-band) - var(--about-ship-y-4));
    right: 82%;
    transform: translate(50%, calc(-76% + 1px)) rotate(-1.9deg);
  }

  73% {
    top: calc(100% - var(--about-hero-band) - var(--about-ship-y-2));
    right: 85%;
    transform: translate(50%, calc(-76% + 2px)) rotate(1.2deg);
  }

  76% {
    top: calc(100% - var(--about-hero-band) - var(--about-ship-y-1));
    right: 89%;
    transform: translate(50%, calc(-76% - 4px)) rotate(2.8deg);
  }

  79% {
    top: calc(100% - var(--about-hero-band) - var(--about-ship-y-3));
    right: 92%;
    transform: translate(50%, calc(-76% - 7px)) rotate(4.3deg);
  }

  82% {
    top: calc(100% - var(--about-hero-band) - var(--about-ship-y-1));
    right: 95%;
    transform: translate(50%, calc(-76% - 4px)) rotate(2deg);
  }

  84% {
    top: calc(100% - var(--about-hero-band) - var(--about-ship-y-2));
    right: 97%;
    opacity: 1;
    transform: translate(50%, calc(-76% + var(--about-ship-end-offset))) rotate(-1.6deg);
  }

  85% {
    top: calc(100% - var(--about-hero-band) - var(--about-ship-y-4));
    right: 98%;
    opacity: 1;
    transform: translate(50%, calc(-76% + var(--about-ship-end-offset))) rotate(-3deg);
  }

  88% {
    top: calc(100% - var(--about-hero-band) - var(--about-ship-y-7));
    right: 100%;
    opacity: 1;
    transform: translate(50%, calc(-76% + var(--about-ship-end-offset))) rotate(-4.1deg);
  }

  95% {
    top: calc(100% - var(--about-hero-band) - var(--about-ship-y-4));
    right: 104%;
    opacity: 0;
    transform: translate(50%, calc(-76% + var(--about-ship-end-offset))) rotate(-1.9deg);
  }

  100% {
    top: calc(100% - var(--about-hero-band) - var(--about-ship-y-2));
    right: 112%;
    opacity: 0;
    transform: translate(50%, calc(-76% + var(--about-ship-end-offset))) rotate(-1.4deg);
  }
}

.about-hero__scroll {
  top: calc((100% - var(--about-hero-band, 0px)) / 2);
  bottom: auto;
  z-index: 3;
}

.about-local-nav {
  display: grid;
  width: 100%;
  background: var(--base_color_main);
}

.about-local-nav a {
  display: grid;
  place-items: center;
  min-height: 68px;
  padding: 23px 12px;
  color: #FFF;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.3;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.about-local-nav a:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.34);
}

@media (hover: hover) and (pointer: fine) {
  .about-local-nav a:hover {
    color: var(--base_color_w);
    background: var(--base_color_b2);
  }
}

.about-breadcrumb {
  width: var(--content_width);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 8px;
  padding: 20px 0 0;
  margin: 0 auto;
  color: #9b9b9b;
  font-size: 15px;
  line-height: 1.6;
}

.about-breadcrumb a {
  color: #2389c7;
  text-decoration: none;
}

.about-breadcrumb span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about-greeting__letter {
  --about-greeting-letter-x: 0;
  width: min(760px, var(--content_width));
  padding: 34px 24px;
  margin: 0 auto;
  color: var(--base_color_b2);
  font-size: 15px;
  line-height: 1.95;
  background: var(--base_color_w);
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.18);
}

.about-greeting__letter p {
  margin: 0 0 1.45em;
}

.about-greeting__letter p:last-child {
  margin-bottom: 0;
}

.about-greeting__closing {
  display: grid;
  justify-items: center;
  gap: 28px;
  margin-top: 44px;
}

.about-greeting__portrait {
  width: min(280px, 78vw);
}

.about-greeting__portrait img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
}

.about-greeting__signature {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding-top: 36px;
  text-align: center;
}

.about-greeting__closing .about-greeting__signature {
  padding-top: 0;
}

.about-greeting__signature p {
  margin: 0;
  color: var(--base_color_b2);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
}

.about-greeting__signature img {
  width: 92px;
}

.about-greeting__letter.is-motion-ready {
  opacity: 0;
  transform: translate(var(--about-greeting-letter-x), 28px);
  transition:
    opacity .72s cubic-bezier(.22, 1, .36, 1),
    transform .82s cubic-bezier(.22, 1, .36, 1);
}

.about-greeting__letter.is-motion-ready> :not(.about-greeting__signature) {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity .64s .28s ease,
    transform .78s .28s cubic-bezier(.22, 1, .36, 1);
}

.about-greeting__letter.is-motion-ready .about-greeting__signature p,
.about-greeting__letter.is-motion-ready .about-greeting__signature img {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity .58s .68s ease,
    transform .72s .68s cubic-bezier(.22, 1, .36, 1);
}

.about-greeting__letter.is-motion-ready .about-greeting__signature img {
  transition-delay: .78s;
}

.about-greeting__letter.is-motion-ready.is-visible,
.about-greeting__letter.is-motion-ready.is-visible> :not(.about-greeting__signature),
.about-greeting__letter.is-motion-ready.is-visible .about-greeting__signature p,
.about-greeting__letter.is-motion-ready.is-visible .about-greeting__signature img {
  opacity: 1;
  transform: translate(var(--about-greeting-letter-x), 0);
}

.about-greeting__letter.is-motion-ready.is-visible> :not(.about-greeting__signature),
.about-greeting__letter.is-motion-ready.is-visible .about-greeting__signature p,
.about-greeting__letter.is-motion-ready.is-visible .about-greeting__signature img {
  transform: translateY(0);
}

.about-greeting__card {
  --about-greeting-card-x: 0;
  display: grid;
  justify-items: center;
  gap: 14px;
  width: min(470px, var(--content_width));
  padding: 0 22px 34px;
  margin: 34px auto 0;
  text-align: center;
  background: var(--base_color_w);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.14);
}

.about-greeting__card::before {
  display: grid;
  place-items: center;
  width: calc(100% + 44px);
  min-height: 31px;
  color: var(--base_color_w);
  font-size: 20px;
  font-weight: 800;
  content: "〈 K-SHIPの新規ロゴマークについて 〉";
  background: var(--base_color_icn_sub);
  padding: 20px 0px;
}

.about-greeting__card p {
  margin: 4px 0 0;
  color: var(--base_color_green);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.45;
}

.about-greeting__card img {
  width: 120px;
  margin: 22px 0px;
}

.about-greeting__card span {
  color: var(--base_color_b2);
  font-size: 15px;
  line-height: 1.7;
}

.about-greeting__card.is-motion-ready {
  opacity: 0;
  transform: translate(var(--about-greeting-card-x), 28px);
  transition:
    opacity .72s cubic-bezier(.22, 1, .36, 1),
    transform .82s cubic-bezier(.22, 1, .36, 1);
}

.about-greeting__card.is-motion-ready::before {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity .64s .08s cubic-bezier(.22, 1, .36, 1),
    transform .74s .08s cubic-bezier(.22, 1, .36, 1);
}

.about-greeting__card.is-motion-ready img,
.about-greeting__card.is-motion-ready p,
.about-greeting__card.is-motion-ready span {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity .64s .34s ease,
    transform .78s .34s cubic-bezier(.22, 1, .36, 1);
}

.about-greeting__card.is-motion-ready p {
  transition-delay: .42s;
}

.about-greeting__card.is-motion-ready span {
  transition-delay: .5s;
}

.about-greeting__card.is-motion-ready.is-visible,
.about-greeting__card.is-motion-ready.is-visible::before,
.about-greeting__card.is-motion-ready.is-visible img,
.about-greeting__card.is-motion-ready.is-visible p,
.about-greeting__card.is-motion-ready.is-visible span {
  opacity: 1;
  transform: translate(var(--about-greeting-card-x), 0);
}

.about-greeting__card.is-motion-ready.is-visible::before,
.about-greeting__card.is-motion-ready.is-visible img,
.about-greeting__card.is-motion-ready.is-visible p,
.about-greeting__card.is-motion-ready.is-visible span {
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {

  .about-greeting__letter.is-motion-ready,
  .about-greeting__letter.is-motion-ready> :not(.about-greeting__signature),
  .about-greeting__letter.is-motion-ready .about-greeting__signature p,
  .about-greeting__letter.is-motion-ready .about-greeting__signature img,
  .about-greeting__card.is-motion-ready,
  .about-greeting__card.is-motion-ready::before,
  .about-greeting__card.is-motion-ready img,
  .about-greeting__card.is-motion-ready p,
  .about-greeting__card.is-motion-ready span,
  .about-history__image.is-motion-ready,
  .instagram-cta.is-motion-ready,
  .service-archive__jmics-diagram-wrapper.is-motion-ready,
  .lower-page-statement.is-motion-ready> :where(.kship-stacked-logo, .message-lead, .statement-support) {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.about-history__image {
  width: min(310px, var(--content_width));
  margin: 0 auto 100px;
}

.about-history__image img {
  width: 100%;
}

.about-history__image.is-motion-ready {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity .72s cubic-bezier(.22, 1, .36, 1),
    transform .86s cubic-bezier(.22, 1, .36, 1);
}

.about-history__image.is-motion-ready.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.kship-stacked-logo-block {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-top: 38px;
}

.instagram-cta.is-motion-ready {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity .68s .18s ease,
    transform .78s .18s cubic-bezier(.22, 1, .36, 1);
}

.instagram-cta.is-motion-ready.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.about-company__panel {
  width: min(760px, var(--content_width));
  padding: 34px 18px 48px;
  margin: 0 auto;
  overflow: visible;
  background: var(--base_color_w);
  box-shadow: none;
}

.about-company__table {
  width: min(100%, 720px);
  margin: 0 auto;
  margin-bottom: 80px;
}

.about-company__table div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 12px;
}

.about-company__table dt {
  display: grid;
  place-items: center;
  min-height: 54px;
  padding: 15px 6px;
  color: var(--base_color_b2);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.06em;
  border-top: 2px solid var(--base_color_main);
}

.about-company__table dd {
  margin: 0;
  color: var(--base_color_b2);
  min-height: 54px;
  padding: 15px 0 15px 10px;
  font-size: 15px;
  line-height: 1.95;
  overflow-wrap: anywhere;
  border-top: 2px solid #b7b7b7;
}

.about-company__table div:last-child dt {
  border-bottom: 2px solid var(--base_color_main);
}

.about-company__table div:last-child dd {
  border-bottom: 2px solid #b7b7b7;
}

.about-company__table ul {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.about-company__table li {
  position: relative;
  padding-left: 18px;
}

.about-company__table li::before {
  position: absolute;
  top: 0.82em;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  background: var(--base_color_main);
  border-radius: 50%;
}

.about-access__routes {
  display: grid;
  gap: 6px;
  width: min(640px, 100%);
  margin: 0px auto 45px;
}

.about-access__routes p {
  display: grid;
  gap: 4px;
  margin: 0;
  color: var(--base_color_footer);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  text-align: left;
}

.about-access__equal {
  position: relative;
  top: -1.25px;
  display: inline-block;
}

.about-access__map {
  overflow: hidden;
  aspect-ratio: 16 / 9.6;
  background: var(--base_color_gray);
}

.about-access__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.about-privacy-toggle {
  margin: 100px auto 0;
  overflow: visible;
  background: var(--base_color_w);
  border: 1px solid #d2d9df;
  border-radius: 10px;
  scroll-margin-top: calc(var(--js-header-height, 84px) + 16px);
}

.about-privacy-toggle__summary {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  min-height: 74px;
  padding: 14px 58px 14px 112px;
  color: var(--base_color_footer);
  font-size: clamp(22px, 2.25vw, 30px);
  font-weight: 900;
  line-height: 1.2;
  cursor: pointer;
  border-bottom: 1px solid #e3e8ec;
  list-style: none;
}

.about-privacy-toggle__summary::-webkit-details-marker {
  display: none;
}

.about-privacy-toggle__summary::after {
  position: absolute;
  top: 50%;
  right: 20px;
  color: var(--base_color_footer);
  font-size: 15px;
  line-height: 1;
  content: "▲";
  transform: translateY(-50%);
}

.about-privacy-toggle:not([open]) .about-privacy-toggle__summary {
  border-bottom: 0;
}

.about-privacy-toggle:not([open]) .about-privacy-toggle__summary::after {
  content: "▼";
}

.about-privacy-toggle__icon {
  position: absolute;
  top: 50%;
  left: 24px;
  width: 64px;
  height: auto;
  transform: translateY(-50%);
}

.about-privacy-toggle__body {
  padding: 28px 28px 34px;
  background: var(--base_color_w);
}

.about-privacy-toggle__close {
  margin: 100px 0 0 auto;
}

.about-privacy-toggle .privacy-policy {
  width: 100%;
  padding: 0;
  margin: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

@media (max-width: 767px) {
  .about-page {
    background: #f7f7f7;
  }

  body:has(.about-page) {
    overflow-x: clip;
  }

  .about-hero {
    --about-hero-band: 66px;
    --about-wave-height: 54px;
    --about-ship-y-start: calc(var(--about-wave-height) * 0.54);
    --about-ship-y-1: calc(var(--about-wave-height) * 0.61);
    --about-ship-y-2: calc(var(--about-wave-height) * 0.58);
    --about-ship-y-3: calc(var(--about-wave-height) * 0.64);
    --about-ship-y-4: calc(var(--about-wave-height) * 0.59);
    --about-ship-y-5: calc(var(--about-wave-height) * 0.55);
    --about-ship-y-6: calc(var(--about-wave-height) * 0.56);
    --about-ship-y-7: calc(var(--about-wave-height) * 0.53);
    --about-ship-y-end: calc(var(--about-wave-height) * 0.56);
    --about-ship-end-offset: 5px;

    height: 272px;
    min-height: 272px;
    background: var(--base_color_w);
  }

  .about-hero__visual {
    background-position: center top;
  }

  .about-hero__video {
    object-position: center top;
  }

  .about-hero__scene {
    transform: translateY(-2px);
  }

  .about-hero__wave {
    height: var(--about-wave-height);
  }

  .about-hero__wave-svg {
    animation-duration: 24s;
  }

  .about-hero__wave-svg--back {
    animation-duration: 34s;
  }

  .about-hero__sun {
    width: 26px;
  }

  .about-hero__ship-wrap {
    width: 52px;
    margin-top: -5px;
  }

  .about-hero__ship {
    animation-name: aboutShipJitterSp;
    animation-duration: 2.5s;
  }

  .page-hero-heading {
    --about-title-bottom: 14px;
    --about-title-size: clamp(38px, 11.2vw, 48px);
    --about-title-left: 0px;
    --about-line-right: calc((var(--content_width_sp) - 100vw) / 2);

    width: var(--content_width_sp);
    min-height: 272px;
    padding-bottom: 14px;
  }

  .page-hero-heading__title {
    max-width: var(--content_width_sp);
    overflow-wrap: normal;
    white-space: nowrap;
  }

  .page-hero-heading__title::before {
    filter: blur(2.5px);
    transform: translate(3px, 3px);
  }

  .about-local-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 0;
    overflow-x: visible;
  }

  .about-local-nav a {
    min-height: 68px;
    padding: 23px 12px;
    font-size: 14px;
    letter-spacing: .04em;
    border-right: 1px solid rgba(255, 255, 255, .35);
    border-bottom: 1px solid rgba(255, 255, 255, .24);
  }

  .about-breadcrumb {
    padding-top: 13px;
    font-size: 14px;
  }


  .about-page .section-heading__en {
    font-size: 30px;
  }

  .about-page .section-heading h2,
  .about-page .section-heading h3 {
    font-size: 16px;
  }

  .about-greeting__letter {
    --about-greeting-letter-x: -50%;
    position: relative;
    left: 50%;
    width: var(--content_width_sp);
    padding: 60px 22px;
    margin: 0;
    font-size: 14px;
    line-height: 1.9;
    transform: translateX(var(--about-greeting-letter-x));
  }

  .about-greeting__editable,
  .about-greeting__editable>* {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .about-greeting__letter p,
  .about-greeting__editable p {
    line-break: strict;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: normal;
    font-size: 16px;
  }

  .about-greeting__signature {
    gap: 10px;
    padding-top: 34px;
  }

  .about-greeting__closing .about-greeting__signature {
    padding-top: 0;
  }

  .about-greeting__signature p {
    font-size: 14px;
  }

  .about-greeting__signature img {
    width: 80px;
  }

  .about-greeting__card {
    --about-greeting-card-x: -50%;
    position: relative;
    left: 50%;
    gap: 12px;
    width: var(--content_width_sp);
    padding: 0 18px 80px;
    margin: 80px 0 0;
    transform: translateX(var(--about-greeting-card-x));
  }

  .about-greeting__card::before {
    width: calc(100% + 36px);
    min-height: 31px;
    font-size: 15px;
    letter-spacing: 0;
    white-space: nowrap;
    padding: 10px 0;
  }

  .about-greeting__card img {
    width: 128px;
    margin: 45px;
  }

  .about-greeting__card p {
    font-size: 20px;
  }

  .about-greeting__card span {
    font-size: 16px;
  }

  .about-history__image {
    width: var(--content_width_sp);
    margin-right: auto;
    margin-left: auto;
  }

  .kship-stacked-logo-block {
    margin-top: 36px;
  }

  .about-company__panel {
    width: var(--content_width_sp);
    padding: 0 0 42px;
    margin: 0 auto;
    background: transparent;
    border: 0;
  }

  .about-company__table div {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 17px 0 18px;
    border-top: 1px solid #e1e5ea;
  }

  .about-company__table div:last-child {
    border-bottom: 1px solid #e1e5ea;
  }

  .about-company__table dt {
    display: block;
    justify-self: start;
    min-height: 0;
    min-width: 0;
    padding: 0 0 0 10px;
    margin-bottom: 7px;
    color: var(--base_color_main);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.03em;
    line-height: 1.5;
    background: transparent;
    border: 0;
    border-left: 3px solid var(--base_color_main);
    border-radius: 0;
  }

  .about-company__table dd {
    min-height: 0;
    padding: 0 0 0 13px;
    color: var(--base_color_b2);
    font-size: 14px;
    line-height: 1.78;
    border: 0;
    overflow-wrap: break-word;
  }

  .about-company__table div:last-child dt,
  .about-company__table div:last-child dd {
    border-bottom: 0;
  }

  .about-company__table ul {
    gap: 9px;
  }

  .about-company__table li {
    padding-left: 13px;
  }

  .about-company__table li::before {
    top: 0.72em;
    width: 5px;
    height: 5px;
  }

  .about-access__routes {
    gap: 12px;
  }

  .about-access__routes p {
    font-size: 14px;
    line-height: 1.55;
    text-align: center;
  }

  .about-access__map {
    position: relative;
    left: 50%;
    width: 100vw;
    aspect-ratio: 1 / 0.72;
    margin-left: -50vw;
  }

  .about-privacy-toggle {
    margin-top: 42px;
    border-radius: 10px;
  }

  .about-privacy-toggle__summary {
    gap: 12px;
    min-height: 64px;
    padding: 10px 42px 10px 72px;
    font-size: 21px;
  }

  .about-privacy-toggle__summary::after {
    right: 16px;
    font-size: 12px;
  }

  .about-privacy-toggle__icon {
    left: 16px;
    width: 46px;
  }

  .about-privacy-toggle__body {
    padding: 24px 18px 30px;
  }

  .about-privacy-toggle__close {
    margin-top: 80px;
  }
}

@media (min-width: 768px) {
  .about-hero {
    height: calc(100svh - 256.8px);
    min-height: 360px;
    --about-hero-band: 108px;
    --about-wave-height: clamp(72px, 6.35vw, 122px);
    --about-ship-start-offset: 7px;
  }

  .about-hero__visual {
    bottom: var(--about-hero-band);
  }

  .about-hero__wave {
    height: var(--about-wave-height);
  }

  .page-hero-heading {
    --about-title-bottom: 54px;
    --about-title-size: clamp(82px, 7.3vw, 124px);
    --about-title-left: calc((var(--content_width) - 100vw) / 2 + 56px);
    --about-line-right: calc((var(--content_width) - 100vw) / 2);

    min-height: 100%;
    padding-bottom: 54px;
  }

  .page-hero-heading__title::before {
    filter: blur(6px);
    transform: translate(9px, 10px);
  }

  .about-local-nav {
    display: flex;
    justify-content: center;
  }

  .about-local-nav a {
    width: min(25%, 340px);
    min-height: 68px;
    padding: 23px 12px;
    font-size: 15px;
    letter-spacing: .04em;
    border-bottom: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.34);
  }

  .about-breadcrumb {
    padding-top: 20px;
    font-size: 15px;
  }

  .about-greeting__letter {
    width: var(--content_width);
    padding: 64px 82px;
    font-size: 16px;
    line-height: 2;
  }

  .about-greeting__signature {
    justify-items: end;
    padding-top: 52px;
    text-align: right;
  }

  .about-greeting__closing .about-greeting__signature {
    justify-items: center;
    padding-top: 0;
    text-align: center;
  }

  .about-greeting__signature p {
    font-size: 15px;
  }

  .about-greeting__signature img {
    width: 120px;
  }

  .about-greeting__card {
    width: min(850px, var(--content_width));
    margin-top: 80px;
  }

  .about-greeting__card img {
    width: 145px;
    margin-top: 34px;
  }

  .about-history__image {
    width: min(760px, var(--content_width));
  }

  .about-company__panel {
    width: var(--content_width);
    padding: 92px 0;
  }

  .about-company__table {
    width: min(900px, var(--content_width));
  }

  .about-company__table div {
    grid-template-columns: 170px minmax(0, 1fr);
    gap: 10px;
  }

  .about-company__table dt,
  .about-company__table dd {
    min-height: 46px;
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 15px;
  }

  .about-company__table dd {
    padding-left: 24px;
    line-height: 1.95;
  }

  .about-company__table ul {
    gap: 18px;
  }

  .about-company__table li {
    padding-left: 20px;
  }

  .about-company__table li::before {
    width: 7px;
    height: 7px;
  }

  .about-access__routes {
    width: 500px;
  }

  .about-access__routes p {
    grid-template-columns: minmax(0, 1fr) 70px;
    gap: 24px;
    font-size: 15px;
  }
}

@media (min-width: 1024px) {
  .about-greeting__closing {
    grid-template-columns: 1fr minmax(220px, 300px) 1fr;
    align-items: end;
    gap: 32px;
    margin-top: 68px;
  }

  .about-greeting__portrait {
    grid-column: 2;
    width: 100%;
  }

  .about-greeting__closing .about-greeting__signature {
    grid-column: 3;
    justify-self: end;
    justify-items: end;
    padding-bottom: 6px;
    text-align: right;
  }
}

@media (min-width: 768px) and (max-width: 1240px) {
  .about-hero {
    height: clamp(340px, calc(100svh - 340px), 520px);
  }
}

.seminar-cta-stage {
  --seminar-cta-edge-overhang: 16px;
  --fv-seminar-width: 78%;
  --fv-seminar-height: 43px;
  --fv-seminar-bottom: 0px;
  --fv-seminar-shadow-x: 7px;
  --fv-seminar-shadow-y: 7px;
  --fv-seminar-line-color: rgba(0, 185, 239, 0.4);
  position: relative;
}

.seminar-cta-stage:has(.seminar-cta) {
  overflow: visible;
}

.seminar-cta-stage--lower {
  --fv-seminar-bottom: 7px;
  --fv-seminar-line-color: rgba(255, 255, 255, 0.4);
}

.fv__visual {
  position: relative;
  min-height: 0;
  overflow: visible;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.88) 0 46%, rgba(255, 255, 255, 0.34) 46% 100%),
    radial-gradient(circle at 74% 28%, rgba(255, 255, 255, 0.96) 0 7%, transparent 8%),
    linear-gradient(135deg, #f5fbfe 0%, #d9eef8 52%, #f7fafb 100%);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

.seminar-cta-stage::before {
  position: absolute;
  left: calc(var(--seminar-cta-edge-overhang) * -1);
  bottom: var(--fv-seminar-bottom);
  z-index: 2;
  width: calc(var(--fv-seminar-width) + var(--seminar-cta-edge-overhang));
  height: var(--fv-seminar-height);
  background: rgba(35, 24, 21, .75);
  clip-path: polygon(0 0, calc(100% - 34px) 0, 100% 100%, 0 100%);
  filter: blur(5px);
  pointer-events: none;
  content: "";
  transition: transform .45s cubic-bezier(.22, .61, .36, 1);
  transform: translate(var(--fv-seminar-shadow-x), var(--fv-seminar-shadow-y));
}

.seminar-cta-stage::after {
  position: absolute;
  right: 0;
  bottom: calc(var(--fv-seminar-bottom) - var(--fv-seminar-shadow-y));
  z-index: 1;
  width: 100%;
  height: calc(var(--fv-seminar-height) + var(--fv-seminar-shadow-y));
  pointer-events: none;
  content: "";
  background: var(--fv-seminar-line-color);
}

.fv__slides,
.fv__slide,
.fv__slide-image {
  position: absolute;
  inset: 0;
}

.fv__slides {
  z-index: 1;
  overflow: hidden;
}

.fv__slide {
  opacity: 0;
  transition: opacity 1.2s ease;
}

.fv__slide.is-active {
  z-index: 1;
  opacity: 1;
}

.fv__slide-image {
  background-image: var(--fv-slide-image-pc);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1);
  transition: transform 6.8s linear;
  will-change: transform;
}

.fv__slide.is-zooming .fv__slide-image {
  transform: scale(1.04);
}

.fv__slide--02 .fv__slide-image {
  background-position: center -46px;
  background-size: auto calc(100% + 46px);
  transform-origin: center top;
}

.fv__slide--02.is-zooming .fv__slide-image {
  transform: scale(1.03);
}

.fv__slide--03 .fv__slide-image {
  background-position: center 96%;
}

.fv__body {
  position: relative;
  z-index: 2;
  width: calc(100% - 24px);
  padding-top: 34px;
  margin: 0;
}

.fv__title {
  display: table;
  padding: 4px 8px;
  margin: 0 0 8px;
  color: var(--base_color_sub);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.35;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 7px 7px 9px rgba(35, 24, 21, 0.18);
}

.fv__title-large {
  font-size: 20px;
}

.fv__title-accent {
  color: var(--base_color_orange);
}

.fv__large-copy {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

.fv__title-anchor {
  position: relative;
  display: inline-block;
  max-width: 100%;
}

.fv__badge-image {
  display: block;
  width: min(86vw, 360px);
  aspect-ratio: 920 / 330;
  margin: 0;
}

.fv__title-anchor .fv__badge-image {
  position: absolute;
  top: calc(100% + 92px);
  left: 50%;
  transform: translateX(-50%);
}

.fv__marker-copy {
  position: relative;
  z-index: 2;
  color: var(--base_color_w);
}

.fv__marker-copy-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.fv__marker-copy-line {
  fill: none;
  stroke: #86c99a;
  stroke-width: 90;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  opacity: 0;
  filter: drop-shadow(16px 18px 0 var(--base_color_yellow));
  animation: fv-marker-copy-draw 1.45s cubic-bezier(.62, 0, .24, 1) .25s forwards;
}

.fv__marker-copy-text {
  fill: var(--base_color_w);
  font-family: "Jane Aust", "Brush Script MT", cursive;
  font-size: 52px;
  font-weight: 400;
  letter-spacing: 0;
  text-shadow: 0 4px 6px rgba(48, 112, 68, 0.14);
  opacity: 0;
  animation: fv-marker-copy-text-in .45s ease 1.08s forwards;
}

@keyframes fv-marker-copy-draw {
  1% {
    opacity: 1;
  }

  to {
    opacity: 1;
    stroke-dashoffset: 0;
  }
}

@keyframes fv-marker-copy-text-in {
  to {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {

  .fv__marker-copy-line,
  .fv__marker-copy-text {
    animation: none;
  }

  .fv__marker-copy-line {
    opacity: 1;
    stroke-dashoffset: 0;
  }

  .fv__marker-copy-text {
    opacity: 1;
  }
}

.seminar-cta {
  --seminar-cta-hover-shift: 12px;
  --seminar-cta-arrow-shift: 22px;
  --seminar-cta-side-width: 48px;
  --seminar-cta-text-gap: 20px;
  position: absolute;
  bottom: var(--fv-seminar-bottom);
  left: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--seminar-cta-text-gap);
  width: calc(var(--fv-seminar-width) + var(--seminar-cta-edge-overhang));
  min-height: var(--fv-seminar-height);
  padding: 0 calc(52px + var(--seminar-cta-edge-overhang)) 0 52px;
  clip-path: polygon(0 0, calc(100% - 34px) 0, 100% 100%, 0 100%);
  color: var(--base_color_yellow);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  background: rgba(62, 58, 57, 0.96);
  filter: none;
  transition:
    filter .35s ease,
    transform .45s cubic-bezier(.22, .61, .36, 1);
}

.seminar-cta::before,
.seminar-cta::after {
  position: relative;
  top: auto;
  flex: 0 0 var(--seminar-cta-side-width);
  content: "";
  background: #fff;
}

.seminar-cta::before {
  width: var(--seminar-cta-side-width);
  height: 1px;
  transform: translateX(0);
  transition: transform .45s cubic-bezier(.22, .61, .36, 1);
}

.seminar-cta::after {
  width: var(--seminar-cta-side-width);
  height: 8px;
  background:
    linear-gradient(#fff, #fff) left center / calc(100% - 16px) 1px no-repeat,
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 8'%3E%3Cpath fill='%23fff' d='M0 0L16 4L0 8Z'/%3E%3C/svg%3E") right center / 16px 8px no-repeat;
  transform: translateX(0);
  transition: transform .45s cubic-bezier(.22, .61, .36, 1);
}

.seminar-cta .jp-btn {
  position: relative;
  z-index: 1;
  display: inline-block;
  line-height: 1.3;
  white-space: normal;
  transition: transform .45s cubic-bezier(.22, .61, .36, 1);
}

.seminar-cta .jp-btn b {
  color: var(--base_color_w);
  font-weight: inherit;
}

.fv__slide--02 .fv__body,
.fv__slide--03 .fv__body {
  width: 100%;
  height: 100%;
  padding-top: 0;
}

.fv__slide--02 .fv__large-copy,
.fv__slide--03 .fv__large-copy {
  position: absolute;
  top: 10%;
  left: 50%;
  width: 100%;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: clamp(48px, 13vw, 88px);
  text-align: center;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
  transform: translate(-50%, -50%);
}

.fv__slide--03 .fv__large-copy {
  top: 50%;
}

.fv__slide--02 .fv__title,
.fv__slide--03 .fv__title {
  position: absolute;
  right: 0;
  display: block;
  max-width: calc(100% - 22px);
  color: var(--base_color_sub);
  box-shadow: 7px 7px 9px rgba(35, 24, 21, 0.18);
  white-space: normal;
}

.fv__slide--02 .fv__title--line {
  bottom: 116px;
}

.fv__slide--02 .fv__title:not(.fv__title--line) {
  bottom: 62px;
}

.fv__slide--03 .fv__title {
  top: 42px;
  right: auto;
  left: 0;
}

.fv__slide--03 .fv__large-copy {
  color: #EFE239;
  font-size: clamp(42px, 12vw, 78px);
  text-shadow: 8px 5px 1px rgba(35, 24, 21, 0.75);
}

.fv__hero-header {
  position: static;
  display: grid;
  justify-content: center;
  padding: 28px 28px 30px;
  color: var(--base_color_w);
  text-align: left;
  background:
    linear-gradient(180deg, var(--base_color_green_sub) 0 28px, transparent 28px),
    var(--base_color_main);
}

.fv__hero-copy {
  margin: 30px 0 15px;
  font-size: clamp(24px, 8vw, 38px);
  font-weight: 900;
  line-height: 1.15;
}

.fv__hero-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  min-height: 24px;
  padding: 2px 18px;
  margin: 0;
  color: var(--base_color_main);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
  background: var(--base_color_cream);
  border-radius: 999px;
}

.fv__scroll {
  right: 28px;
  top: var(--fv-scroll-center-y);
  bottom: auto;
  height: 212px;
  max-height: calc(90% - 24px);
}

@media (max-width: 767px) {
  .fv {
    display: block;
    min-height: 0;
    overflow: visible;
  }

  .seminar-cta-stage--lower {
    --fv-seminar-width: calc(100% - 50px);
    --fv-seminar-height: 56px;
  }

  .fv__visual {
    --fv-seminar-width: calc(100% - 50px);
    --fv-seminar-height: 56px;
    --fv-sp-peek-height: 36px;
    min-height: 480px;
    height: calc(var(--js-viewport-height, 100svh) - var(--js-header-height, 84px) - var(--fv-sp-peek-height));
  }

  .fv__slide--01 .fv__slide-image {
    background-image: var(--fv-slide-image-sp, var(--fv-slide-image-pc));
    background-position: center top;
    background-size: cover;
    transform-origin: center top;
  }

  .fv__slide--02 .fv__slide-image {
    background-image: var(--fv-slide-image-sp, var(--fv-slide-image-pc));
    background-position: center top;
    background-size: cover;
    transform-origin: center top;
  }

  .fv__slide--03 .fv__slide-image {
    background-image: var(--fv-slide-image-sp, var(--fv-slide-image-pc));
    background-position: center top;
    background-size: cover;
    transform-origin: center top;
  }

  .fv__body {
    width: calc(100% - 16px);
    padding-top: 40px;
  }

  .fv__slide--01 .fv__body {
    height: 100%;
  }

  .fv__title-anchor {
    position: static;
  }

  .fv__title {
    font-size: clamp(18px, 4.9vw, 21px);
    line-height: 1.25;
  }

  .fv__title-large {
    font-size: clamp(20px, 5.4vw, 23px);
  }

  .fv__slide--02 .fv__title,
  .fv__slide--03 .fv__title {
    max-width: 100%;
    padding-right: 6px;
    padding-left: 6px;
  }

  .fv__slide--02 .fv__large-copy {
    width: calc(100% - 24px);
    font-size: clamp(30px, 9vw, 40px);
    white-space: nowrap;
  }

  .fv__slide--02 .fv__title--line {
    bottom: 98px;
    white-space: nowrap;
  }

  .fv__slide--02 .fv__title:not(.fv__title--line) {
    bottom: 58px;
  }

  .fv__badge-image {
    width: min(82vw, 340px);
  }

  .fv__title-anchor .fv__badge-image {
    top: 61%;
    bottom: auto;
    left: clamp(32px, 9vw, 44px);
    transform: none;
  }

  .seminar-cta {
    --seminar-cta-arrow-shift: 14px;
    --seminar-cta-side-width: clamp(38px, 11vw, 52px);
    --seminar-cta-text-gap: 0;
    padding: 0 calc(clamp(46px, 13vw, 62px) + var(--seminar-cta-edge-overhang)) 0 clamp(18px, 5vw, 28px);
    justify-content: flex-start;
    font-size: clamp(14px, 3.8vw, 16px);
    letter-spacing: 0;
  }

  .seminar-cta::before {
    display: none;
  }

  .seminar-cta::after {
    position: absolute;
    top: 50%;
    right: calc(var(--seminar-cta-edge-overhang) + clamp(18px, 5vw, 28px));
    height: 9px;
    transform: translateY(-50%);
  }

  .seminar-cta .jp-btn {
    max-width: 100%;
    line-height: 1.18;
  }

  .fv__hero-header {
    padding: 64px 18px 36px;
    text-align: center;
  }

  .fv__hero-copy {
    margin: 0 auto 14px;
    font-size: 20px;
    line-height: 1.24;
  }

  .fv__hero-label {
    justify-self: center;
    min-height: 28px;
    padding-right: 14px;
    padding-left: 14px;
    font-size: 12px;
    white-space: nowrap;
  }

  .fv__scroll {
    right: 28px;
    top: var(--fv-scroll-center-y);
    bottom: auto;
  }
}

.image-placeholder {
  display: block;
  width: 100%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.15)),
    repeating-linear-gradient(135deg, rgba(44, 144, 202, 0.14) 0 12px, rgba(0, 83, 129, 0.06) 12px 24px),
    linear-gradient(135deg, #e9f7fc, #bfe1ee);
}

.image-placeholder--movie {
  aspect-ratio: 1.45 / 1;
}

.image-placeholder--service {
  height: 100%;
  min-height: 220px;
  background:
    radial-gradient(circle at 52% 30%, rgba(255, 255, 255, 0.7) 0 16%, transparent 17%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.04)),
    linear-gradient(135deg, #0b6c9d, #55b9dc);
}

.image-placeholder--recruit {
  aspect-ratio: 1.7 / 1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.7) 0 18%, transparent 18% 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 80px),
    linear-gradient(135deg, #dceff2, #88b56d);
}

.image-placeholder--recommended {
  width: var(--content_width);
  aspect-ratio: 3.1 / 1;
  margin: 0 auto;
  background:
    linear-gradient(90deg, transparent 0 6%, rgba(255, 255, 255, 0.78) 6% 30%, transparent 30% 35%, rgba(255, 255, 255, 0.78) 35% 64%, transparent 64% 70%, rgba(255, 255, 255, 0.78) 70% 94%, transparent 94% 100%),
    linear-gradient(135deg, #dce2e5, #f8fbfc);
}

/* Mission */
.mission {
  overflow: hidden;
  text-align: center;
  background: var(--base_color_w);
}

.mission.section {
  padding-top: 0;
}

.message-lead,
.cta p {
  width: var(--content_width);
  margin: 0 auto 22px;
  color: var(--base_color_sub);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.75;
}

.mission__lead {
  margin-top: 10px;
}

.message-lead {
  text-align: center;
  text-shadow: 2px 2px 0 var(--base_color_yellow);
}

.cta p {
  font-size: 18px;
}

.statement-support {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2px 0;
  width: min(520px, calc(100% - 60px));
  min-height: auto;
  padding: 14px 16px;
  margin: 0 auto;
  color: var(--base_color_w);
  font-size: clamp(16px, 4.8vw, 20px);
  font-weight: 800;
  line-height: 1.45;
  text-align: center;
  word-break: keep-all;
  background: var(--base_color_sub);
  box-shadow: 2px 2px 0 var(--base_color_yellow);
  overflow-wrap: normal;
}

.statement-support strong {
  color: var(--base_color_yellow);
}

.statement-support__line {
  display: inline-block;
  flex: 0 0 100%;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .statement-support {
    flex-wrap: nowrap;
    gap: 0;
    width: min(520px, var(--content_width));
    padding: 10px;
    font-size: 15px;
    word-break: normal;
    overflow-wrap: normal;
  }

  .statement-support__line {
    flex: 0 1 auto;
  }
}

.mission__support-pc {
  display: none;
}

.mission__support-sp {
  display: inline;
}

/* Results */
.results {
  padding-top: 46px;
}

.results__grid {
  width: var(--content_width);
  margin: 0 auto;
}

.results__tagline {
  width: var(--content_width);
  margin: 24px auto 0;
  color: var(--base_color_main);
  font-size: 15px;
  line-height: 1.9;
  text-align: center;
}

.results__mark {
  display: block;
  width: 100%;
  height: auto;
  margin: 40px auto 0;
}

.result-card {
  position: relative;
  overflow: hidden;
  padding-bottom: 32px;
  margin-bottom: 48px;
  text-align: center;
}

.result-card::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  background: var(--base_color_yellow);
  content: "";
  transform: translate3d(0, 105%, 0);
  will-change: transform;
}

.result-card:nth-child(2)::before {
  background: var(--base_color_yellow);
}

.result-card:nth-child(3)::before {
  background: var(--base_color_yellow);
}

.result-card>* {
  position: relative;
  z-index: 1;
  opacity: 1;
  transform: translateY(0);
}

.results.is-motion-ready .result-card::before {
  transform: translate3d(0, var(--results-cover-y, 0%), 0);
}

.results.is-motion-ready .result-card>* {
  opacity: 1;
  transform: none;
}

.result-card strong {
  color: var(--base_color_b);
  font-size: 76px;
  font-weight: 900;
  line-height: 0.9;
}

.result-card>span {
  color: var(--base_color_b);
  font-size: 27px;
  font-weight: 500;
}

.result-card h3 {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
  flex-wrap: wrap;
  margin: 16px 0 14px;
  color: var(--base_color_b2);
  font-size: 15px;
  line-height: 1.35;
}

.result-card__en {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.result-card__slash,
.result-card__jp {
  font-size: 12px;
  font-weight: 800;
}

.result-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.85;
  text-align: left;
}

@media (prefers-reduced-motion: reduce) {
  .result-card::before {
    display: none;
  }

  .results.is-motion-ready .result-card>*,
  .result-card>* {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Service */
.service {
  padding-top: 60px;
}

.service__list {
  width: 100%;
  background: var(--base_color_main);
}

.service-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: var(--base_color_w);
  background: linear-gradient(110deg, #0076a9, var(--base_color_main));
}

.service-card:nth-child(even) {
  background: linear-gradient(110deg, var(--base_color_main), #0076a9);
}

.service-card__image {
  clip-path: polygon(18% 0, 100% 0, 82% 100%, 0 100%);
}

.service-card:nth-child(even) .service-card__image {
  clip-path: polygon(0 0, 82% 0, 100% 100%, 18% 100%);
}

.service-card__image img {
  width: 100%;
  aspect-ratio: 1.8 / 1;
  object-fit: cover;
}

.service-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 28px 38px;
}

.service-card__body h3 {
  margin: 0 0 18px;
  font-size: 21px;
  line-height: 1.35;
}

.service-card__body p {
  margin: 0 0 28px;
}

.service-card__body a {
  display: inline-flex;
  align-self: flex-start;
  min-width: 128px;
  padding: 8px 18px;
  color: var(--base_color_w);
  font-size: 15px;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

/* Service List Banner */
.service-list-banner {
  display: flex;
  width: 100%;
  min-height: 52px;
  background: var(--base_color_b2);
  text-decoration: none;
  overflow: hidden;
  position: relative;
  align-items: stretch;
}

.service-list-banner__left {
  position: relative;
  width: 58%;
  background: linear-gradient(90deg, #2C90CA, #006397);
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px 0 15px;
}

.service-list-banner__en {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(15px, 2.5vw, 15px);
  font-style: italic;
  line-height: 1.2;
  white-space: nowrap;
}

.service-list-banner__en strong {
  font-weight: 900;
}

.service-list-banner__right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 5px;
  padding-right: 15px;
}

.service-list-banner__line {
  display: none;
}

.service-list-banner__jp {
  color: var(--base_color_yellow);
  font-size: clamp(15px, 3.2vw, 15px);
  font-weight: 800;
  white-space: nowrap;
  margin-right: 8px;
}

.service-list-banner__jp-sub {
  color: #fff;
}

.service-list-banner__arrow {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 1px;
  background: #fff;
  vertical-align: middle;
}

.service-list-banner__arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}

/* Service Card Icons */
.service-card__icons {
  display: grid;
  gap: 20px 12px;
  margin: 20px 0 28px;
}

.service-card__icons--col3 {
  grid-template-columns: repeat(3, 1fr);
}

.service-card__icons--col2 {
  grid-template-columns: repeat(2, 1fr);
}

.service-card__icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.service-card__icon-item img,
.service-card__icon-wrapper {
  width: 52px;
  height: 52px;
  margin-bottom: 8px;
  object-fit: contain;
}

.service-card__icon-wrapper {
  position: relative;
}

.service-card__icon-wrapper img {
  width: 100%;
  height: 100%;
  margin-bottom: 0;
}

.service-card__icon-wrapper--ibss .service-card__icon-arrow {
  position: absolute;
  top: -2px;
  right: -5px;
  width: 22px;
  height: 22px;
}

.service-card__icon-item span {
  color: var(--base_color_w);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

/* JAST Group */
.jast-group {
  text-align: center;
  background: var(--base_color_w);
}

.jast-group.section {
  padding-top: 100px;
  padding-bottom: 150px;
}

.jast-group__inner {
  width: min(360px, var(--content_width));
  margin: 0 auto;
}

.jast-group__title {
  margin: 0 0 45px;
  color: var(--base_color_sub);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0;
}

.jast-group__body {
  display: grid;
  gap: 10px;
  margin-bottom: 45px;
  color: var(--base_color_b2);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.85;
  text-align: center;
}

.jast-group__body p,
.jast-group__note,
.jast-group__link-label {
  margin: 0;
}

.jast-group__note {
  padding: 12px 14px;
  margin: 0 auto 30px;
  color: var(--base_color_gray_sub_2);
  font-size: 14px;
  line-height: 1.75;
  text-align: left;
  border: 1px solid var(--base_color_gray_sub_2);
}

.jast-group__more {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--base_color_gray_sub_2);
  font-size: 15px;
  font-weight: 400;
}

.jast-group__link-label {
  margin-bottom: 4px;
  color: var(--base_color_b);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.jast-group__link {
  display: inline-block;
  color: var(--base_color_green);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
  text-decoration: underline;
  text-underline-offset: 5px;
  overflow-wrap: anywhere;
}

@media (min-width: 768px) {
  .jast-group.section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .jast-group__inner {
    width: min(860px, var(--content_width));
  }

  .jast-group__title {
    margin-bottom: 30px;
    font-size: clamp(31px, 8.8vw, 40px);
  }

  .jast-group__body {
    gap: 8px;
    margin-bottom: 34px;
    font-size: 15px;
  }

  .jast-group__note {
    padding: 10px 14px;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.7;
    text-align: center;
  }

  .jast-group__more {
    margin-bottom: 28px;
  }

  .jast-group__link-label,
  .jast-group__link {
    font-size: 15px;
  }
}

/* CTA */
.cta {
  text-align: center;
}

.cta p {
  width: var(--content_width);
  margin: 0 auto 22px;
  color: var(--base_color_sub);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.75;
  margin-bottom: 36px;
}

.cta__orange {
  color: #E55F26;
}

.cta__green {
  color: #71B33C;
}

/* News */
.news {
  padding-top: 66px;
  padding-bottom: 72px;
  text-align: center;
  background: var(--base_color_green_sub_2);
}

.news__slider-container {
  position: relative;
  width: 100%;
  max-width: 100vw;
  margin: 0 auto 24px;
}

.news__slider-viewport {
  width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding: 20px 0;
}

.news__slider-viewport::-webkit-scrollbar {
  display: none;
}

.news__grid {
  display: flex;
  gap: 20px;
  width: max-content;
  padding: 0 40px;
  text-align: left;
}

.news-card {
  scroll-snap-align: center;
  width: calc(100vw - 80px);
  max-width: 290px;
  background: transparent;
  overflow: visible;
  display: flex;
  flex-direction: column;
  position: relative;
  padding-top: 0;
  margin-bottom: 0;
  border-radius: 0;
  box-shadow: none;
}

.news-card::before {
  display: none;
}

.news-card__category-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: 34px;
  padding: 6px 18px;
  text-align: center;
  border-radius: 18px 0 18px 0;
  /* 対角線角丸 */
  width: fit-content;
  align-self: flex-start;
  margin-bottom: 12px;
}

/* 給付業務支援 (Blue) */
.news-card--service-benefit .news-card__category-wrapper,
.news-card--blue .news-card__category-wrapper {
  background: linear-gradient(90deg, #3789BE, #7ecef4);
  box-shadow: 4px 4px 0 #143d59;
}

/* 適用業務支援 */
.news-card--service-application .news-card__category-wrapper {
  background: linear-gradient(90deg, #3789BE, #79c38d);
  box-shadow: 4px 4px 0 #143d59;
}

/* 保健事業支援 */
.news-card--service-health .news-card__category-wrapper {
  background: linear-gradient(90deg, #3789BE, #ee869a);
  box-shadow: 4px 4px 0 #143d59;
}

/* BPO業務支援 */
.news-card--service-bpo .news-card__category-wrapper {
  background: linear-gradient(90deg, #3789BE, #fdd35c);
  box-shadow: 4px 4px 0 #143d59;
}

/* ご挨拶 (Orange) */
.news-card--orange .news-card__category-wrapper {
  background: linear-gradient(90deg, #e67e22, #f39c12);
  box-shadow: 4px 4px 0 #7e3d11;
}

/* お知らせ (Green) */
.news-card--green .news-card__category-wrapper {
  background: linear-gradient(90deg, #27ae60, #2ecc71);
  box-shadow: 4px 4px 0 #114f2c;
}

/* フォールバック用 (Gray) */
.news-card--gray .news-card__category-wrapper {
  background: linear-gradient(90deg, #7f8c8d, #bdc3c7);
  box-shadow: 4px 4px 0 #3c4242;
}

.news-card__category {
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.news .news-card__category-wrapper {
  width: 100%;
}

.news-card__body {
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-card time {
  display: block;
  margin-bottom: 6px;
  color: var(--base_color_b);
  font-size: 15px;
}

.news-card h3 {
  margin: 0 0 10px;
  color: var(--base_color_b2);
  font-size: 15px;
  font-weight: bold;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.9em;
}

.news-card h3 a {
  color: inherit;
  text-decoration: none;
}

.news-card h3 a:hover {
  text-decoration: underline;
}

.news-card__line {
  height: 3px;
  margin-bottom: 12px;
  border-radius: 999px;
}

.news-card--service-benefit .news-card__line,
.news-card--blue .news-card__line {
  background: #7ecef4;
}

.news-card--service-application .news-card__line {
  background: #79c38d;
}

.news-card--service-health .news-card__line {
  background: #ee869a;
}

.news-card--service-bpo .news-card__line {
  background: #fdd35c;
}

.news-card--orange .news-card__line {
  background: #f39c12;
}

.news-card--green .news-card__line {
  background: #2ecc71;
}

.news-card--purple .news-card__line {
  background: #9b59b6;
}

.news-card--yellow .news-card__line {
  background: #e67e22;
}

.news-card--teal .news-card__line {
  background: #1abc9c;
}

.news-card--gray .news-card__line {
  background: #D9D9D9;
}

.news-card p {
  margin: 0;
  color: var(--base_color_b2);
  font-size: 15px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* News Single */
.news-single-page {
  color: var(--base_color_b2);
  background: var(--base_color_w);
}

.news-single-header {
  padding: 28px 0 74px;
  border-top: 1px solid #dedede;
}

.news-single-header__inner,
.news-single-article__inner,
.news-single-nav__inner {
  width: min(100% - 56px, 900px);
  margin: 0 auto;
}

.news-single-header__label {
  margin: 0 0 28px;
  color: var(--base_color_main);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}

.news-single-breadcrumb {
  width: 100%;
  padding-top: 0;
}

.news-single-breadcrumb span:last-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news-single-article__inner {
  padding-bottom: 58px;
}

.news-single-article__meta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 52px;
}

.news-single-article__date {
  flex: 0 0 auto;
  color: var(--base_color_b2);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}

.news-single-article__date--desktop {
  display: none;
}

.news-single-article .news-card__category-wrapper {
  min-width: 94px;
  min-height: 22px;
  padding: 4px 16px;
  margin: 0;
  border-radius: 7px;
  box-shadow: 3px 3px 0 rgba(0, 83, 129, .35);
}

.news-single-article .news-card__category {
  font-size: 10px;
  letter-spacing: .04em;
}

.news-single-article__title-row {
  margin-bottom: 26px;
  padding-bottom: 20px;
  border-bottom: 2px dotted #b7b7b7;
}

.news-single-article__title {
  margin: 0;
  color: var(--base_color_main);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.55;
  letter-spacing: .04em;
}

.news-single-article__content {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.9;
}

.news-single-article__content>* {
  margin-top: 0;
  margin-bottom: 22px;
}

.news-single-article__content>*:last-child {
  margin-bottom: 0;
}

.news-single-article__content a {
  color: var(--base_color_main);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.news-single-article__content ul,
.news-single-article__content ol {
  padding-left: 1.5em;
}

.news-single-article__content img {
  max-width: 100%;
  height: auto;
}

.news-single-article__image {
  width: 100%;
  margin: 54px 0 0;
  background: #000;
}

.news-single-article__image img {
  display: block;
  width: 100%;
  height: auto;
}

.news-single-nav {
  background: var(--base_color_gray);
}

.news-single-nav__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "prev next"
    "back back";
  gap: 58px 20px;
  padding: 26px 0 30px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
}

.news-single-nav a {
  color: var(--base_color_b2);
  text-decoration: none;
}

.news-single-nav a:hover {
  text-decoration: underline;
}

.news-single-nav__prev {
  grid-area: prev;
}

.news-single-nav__next {
  grid-area: next;
  text-align: right;
}

.news-single-nav__back {
  grid-area: back;
  justify-self: center;
  padding-bottom: 2px;
  border-bottom: 1px solid currentColor;
}

.news-single-footer {
  padding: 0 0 92px;
}

@media (min-width: 768px) {
  .news-single-header {
    padding: 154px 0 116px;
    border-top: 0;
  }

  .news-single-header__inner,
  .news-single-article__inner,
  .news-single-nav__inner {
    width: min(100% - 80px, 900px);
  }

  .news-single-header__label {
    display: none;
  }

  .news-single-article__inner {
    padding-bottom: 116px;
  }

  .news-single-article__meta {
    margin-bottom: 58px;
  }

  .news-single-article__meta .news-single-article__date {
    display: none;
  }

  .news-single-article .news-card__category-wrapper {
    min-width: 124px;
    min-height: 26px;
  }

  .news-single-article .news-card__category {
    font-size: 11px;
  }

  .news-single-article__title-row {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    margin-bottom: 54px;
    padding-bottom: 10px;
    border-bottom: 1px solid #8a8a8a;
  }

  .news-single-article__title {
    font-size: 24px;
    line-height: 1.35;
  }

  .news-single-article__date--desktop {
    display: block;
    position: absolute;
    right: 0;
    bottom: -27px;
    font-size: 12px;
  }

  .news-single-article__content {
    font-size: 16px;
    line-height: 1.9;
  }

  .news-single-article__content>* {
    margin-bottom: 24px;
  }

  .news-single-article__image {
    width: min(100%, 600px);
    margin: 112px 0 0;
  }

  .news-single-nav {
    background: transparent;
  }

  .news-single-nav__inner {
    grid-template-columns: 1fr auto 1fr;
    grid-template-areas: "prev back next";
    align-items: center;
    gap: 24px;
    padding: 0 0 128px;
    font-size: 16px;
  }

  .news-single-nav__back {
    align-self: end;
    transform: translateY(42px);
  }

  .news-single-footer {
    padding-bottom: 144px;
  }
}

.news__slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 38px;
  height: 64px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news__slider-arrow.is-hidden {
  display: none;
}

.news__slider-arrow::after {
  content: "";
  display: block;
  width: 47px;
  height: 47px;
  background: #888;
  mask: var(--slider-arrow-mask) center / contain no-repeat;
  -webkit-mask: var(--slider-arrow-mask) center / contain no-repeat;
}

.news__slider-arrow--prev {
  left: 4px;
  --slider-arrow-mask: url("data:image/svg+xml,%3Csvg width='47' height='47' viewBox='0 0 47 47' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M42 5 23.5 23.5 42 42' fill='none' stroke='%23000' stroke-width='5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.news__slider-arrow--prev::after {
  transform: none;
}

.news__slider-arrow--next {
  right: 4px;
  --slider-arrow-mask: url("data:image/svg+xml,%3Csvg width='47' height='47' viewBox='0 0 47 47' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 5l18.5 18.5L5 42' fill='none' stroke='%23000' stroke-width='5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.news__slider-arrow--next::after {
  transform: none;
}

.news__slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
}

.news__slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c3d97d;
  cursor: pointer;
  transition: background 0.3s;
}

.news__slider-dot.is-active {
  background: #005381;
}

.cutout-button {
  --cutout-button-cut: 12px;

  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: min(260px, calc(100% - 40px));
  min-height: 48px;
  padding: 5px 20px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  line-height: 1.4;
  background: #fff;
  border: 0;
  cursor: pointer;
  filter: drop-shadow(4px 4px 5px rgba(35, 24, 21, 0.5));
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cutout-button::before {
  position: absolute;
  inset: 5px;
  z-index: 0;
  background: #2c90ca;
  clip-path: polygon(var(--cutout-button-cut) 0, 100% 0, 100% calc(100% - var(--cutout-button-cut)), calc(100% - var(--cutout-button-cut)) 100%, 0 100%, 0 var(--cutout-button-cut));
  content: "";
}

.cutout-button__label {
  position: relative;
  z-index: 1;
}

.cutout-button__highlight {
  color: #FFF200;
  margin-right: 4px;
}

.cutout-button:hover {
  transform: translateY(-2px);
  filter: drop-shadow(4px 4px 5px rgba(35, 24, 21, 0.5));
  opacity: 0.95;
}

.cutout-button:active {
  transform: translateY(1px);
  filter: drop-shadow(4px 4px 5px rgba(35, 24, 21, 0.5));
}

.instagram-cta {
  margin-top: 45px;
  display: grid;
  justify-items: center;
}

@media (min-width: 768px) {
  .instagram-cta {
    margin-top: 65px;
  }

}

.instagram-cta__link {
  --instagram-cta-color: var(--base_color_b2);
  --instagram-cta-hover-color: var(--base_color_main);
  --instagram-cta-hover-shift: -3px;
  --instagram-cta-easing: cubic-bezier(0.16, 1, 0.3, 1);

  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: var(--instagram-cta-color);
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  transition:
    color 0.3s var(--instagram-cta-easing);
}

.instagram-cta__link::after {
  order: 2;
  display: block;
  width: 20px;
  height: 13px;
  margin-top: 10px;
  background: currentColor;
  content: "";
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2028%2016%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M2%207.5L14%201.5L26%207.5M2%2014L14%208L26%2014%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272.4%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2028%2016%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M2%207.5L14%201.5L26%207.5M2%2014L14%208L26%2014%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272.4%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform 0.3s var(--instagram-cta-easing);
}

.instagram-cta__link span {
  order: 3;
  margin-top: -1px;
  transition: transform 0.3s var(--instagram-cta-easing);
}

.instagram-cta__icon {
  order: 1;
  display: block;
  width: 52px;
  height: 52px;
  padding: 0;
  background: radial-gradient(circle, var(--base_color_b2) 0 68%, transparent 69%);
  object-fit: contain;
  transform-origin: center;
  transition: transform 0.3s var(--instagram-cta-easing);
}

.instagram-cta__link:hover,
.instagram-cta__link:focus-visible {
  color: var(--instagram-cta-hover-color);
}

.instagram-cta__link:hover::after,
.instagram-cta__link:focus-visible::after,
.instagram-cta__link:hover span,
.instagram-cta__link:focus-visible span {
  transform: translateY(var(--instagram-cta-hover-shift));
}

.instagram-cta__link:hover .instagram-cta__icon,
.instagram-cta__link:focus-visible .instagram-cta__icon {
  transform: scale(1.12);
}

/* Recruit */
.recruit {
  padding: 40px 0 56px;
  overflow-x: clip;
  color: var(--base_color_w);
  text-align: center;
  background: var(--base_color_green);
}

.recruit>picture:first-child,
.recruit>picture:first-child img,
.recruit>img:first-child {
  width: 100%;
  height: auto;
  display: block;
}

.recruit__body {
  padding: 46px 20px;
}

.recruit__body p {
  margin: 0 auto 0px;
  color: var(--base_color_yellow);
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(35, 24, 21, 0.45);
}

@media (min-width: 768px) {
  .recruit__body p {
    margin: 0 auto 28px;
  }
}

.recruit__experts {
  --expert-card-overhang: clamp(28px, 3.2vw, 56px);

  width: 100%;
  overflow: visible;
  clip-path: inset(0 0 calc(var(--expert-card-overhang) * -2) 0);
}

.recruit__experts-track {
  display: flex;
  width: max-content;
  animation: expertSlideRight 46s linear infinite;
}

.recruit__experts:hover .recruit__experts-track {
  animation-play-state: paused;
}

.recruit__expert {
  position: relative;
  flex: 0 0 auto;
  width: 25vw;
  min-width: 25vw;
  max-width: 25vw;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  overflow: visible;
}

.recruit__expert:hover,
.recruit__expert:focus-visible {
  z-index: 2;
}

.recruit__expert-image {
  display: block;
  width: 100%;
  aspect-ratio: 0.92 / 1;
  overflow: hidden;
  background: #e9f0f1;
}

.recruit__expert img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  filter: saturate(0.72) brightness(0.9) contrast(0.96);
  transform: scale(1);
  transition: filter 0.3s ease, opacity 0.3s ease, transform 0.35s ease;
}

.recruit__expert:hover img,
.recruit__expert:focus-visible img {
  filter: none;
  transform: scale(1.06);
}

.recruit__expert-caption {
  position: absolute;
  right: 0;
  bottom: calc(var(--expert-card-overhang) * -1);
  left: 0;
  display: grid;
  gap: 8px;
  padding: clamp(12px, 1.05vw, 18px) clamp(12px, 1.25vw, 22px);
  border: 2px solid rgba(255, 255, 255, 0.32);
  border-radius: 10px;
  color: var(--base_color_w);
  text-align: center;
  background: rgba(40, 35, 34, 0.9);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.recruit__expert-caption::before {
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  content: "";
  pointer-events: none;
}

.recruit__expert:hover .recruit__expert-caption,
.recruit__expert:focus-visible .recruit__expert-caption {
  opacity: 1;
  transform: translateY(0);
}

.recruit__expert-label {
  font-size: clamp(15px, 0.7vw, 15px);
  line-height: 1.4;
}

.recruit__expert-title {
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
  font-size: clamp(15px, 1.1vw, 18px);
  font-weight: 700;
  line-height: 1.45;
}

.recruit__expert-meta {
  font-size: clamp(15px, 0.9vw, 16px);
  line-height: 1.4;
}

.recruit__experts-mobile {
  display: none;
}

.expert-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 38px clamp(86px, 8vw, 120px);
}

.expert-modal[hidden] {
  display: none;
}

.expert-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
}

.expert-modal__dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  align-items: stretch;
  width: min(100%, 1240px, calc(100vw - clamp(172px, 16vw, 240px)));
  max-height: calc(100svh - 76px);
  background: var(--base_color_w);
}

.expert-modal__nav {
  position: fixed;
  top: 50%;
  z-index: 2;
  width: 72px;
  height: 112px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transform: translateY(-50%);
}

.expert-modal__nav::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 39px;
  height: 39px;
  border-top: 7px solid var(--base_color_w);
  border-left: 7px solid var(--base_color_w);
  border-radius: 3px;
  content: "";
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.expert-modal__nav:hover::before,
.expert-modal__nav:focus-visible::before {
  opacity: 0.76;
}

.expert-modal__nav--prev {
  left: clamp(12px, 3.2vw, 72px);
}

.expert-modal__nav--prev::before {
  transform: translate(-35%, -50%) rotate(-45deg);
}

.expert-modal__nav--next {
  right: clamp(12px, 3.2vw, 72px);
}

.expert-modal__nav--next::before {
  transform: translate(-65%, -50%) rotate(135deg);
}

.expert-modal__media {
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: 0;
  padding: 48px 28px 72px 32px;
  background: var(--base_color_w);
}

.expert-modal__image {
  display: block;
  width: 100%;
  aspect-ratio: 0.92 / 1;
  height: 100%;
  max-height: none;
  margin: 0 auto;
  object-fit: cover;
  object-position: center 22%;
  background: var(--base_color_w);
}

.expert-modal__content {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto auto minmax(0, auto) 1fr auto;
  align-content: start;
  justify-items: center;
  gap: 24px;
  min-height: min(730px, calc(100svh - 76px));
  padding: 48px 0 72px;
  color: #111;
  text-align: center;
  background: var(--base_color_w);
}

.expert-modal__content>*:not(.expert-modal__footer) {
  width: min(100% - 96px, 456px);
}

.expert-modal__label {
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
}

.expert-modal__title {
  width: 100%;
  padding: 0 0 18px;
  margin: 0;
  border-bottom: 1px solid #222;
  font-size: clamp(17px, 1.4vw, 21px);
  font-weight: 700;
  line-height: 1.55;
}

.expert-modal__position,
.expert-modal__name,
.expert-modal__body {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
}

.expert-modal__position {
  font-weight: 400;
}

.expert-modal__name {
  font-size: 24px;
  line-height: 1.5;
}

.expert-modal__body {
  max-width: 24em;
  text-align: left;
  white-space: pre-line;
}

.expert-modal__footer {
  align-self: end;
  justify-self: stretch;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin: 0 76px 0 72px;
}

.expert-modal__logo {
  flex: 0 0 auto;
  width: 104px;
}

.expert-modal__label:empty,
.expert-modal__title:empty,
.expert-modal__position:empty,
.expert-modal__name:empty,
.expert-modal__body:empty {
  display: none;
}

.icon-close-button,
.expert-modal__close {
  display: grid;
  justify-items: center;
  gap: 2px;
  flex: 0 0 auto;
  width: 48px;
  padding: 0;
  border: 0;
  color: var(--base_color_footer);
  font: inherit;
  line-height: 1;
  background: transparent;
  cursor: pointer;
  opacity: 0.4;
  transition: opacity 0.18s ease;
}

.icon-close-button__icon,
.expert-modal__close-icon {
  position: relative;
  display: block;
  width: 38px;
  height: 38px;
  border: 2px solid currentColor;
}

.icon-close-button__icon::before,
.icon-close-button__icon::after,
.expert-modal__close-icon::before,
.expert-modal__close-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 3px;
  background: currentColor;
  content: "";
}

.icon-close-button__icon::before,
.expert-modal__close-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.icon-close-button__icon::after,
.expert-modal__close-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.icon-close-button__text,
.expert-modal__close-text {
  font-size: 18px;
}

.icon-close-button:hover,
.icon-close-button:focus-visible,
.expert-modal__close:hover,
.expert-modal__close:focus-visible {
  opacity: 1;
}

body.is-expert-modal-open {
  overflow: hidden;
}

@media (max-width: 1000px) {
  .expert-modal {
    padding: 34px 42px;
    place-items: center;
  }

  .expert-modal__dialog {
    display: block;
    width: min(100%, 560px, calc(100vw - 84px));
    max-height: calc(100svh - 68px);
    margin: 0 auto;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .expert-modal__media {
    display: block;
    padding: clamp(64px, 10vw, 86px) clamp(28px, 7vw, 46px) 0;
  }

  .expert-modal__image {
    width: 100%;
    aspect-ratio: 0.92 / 1;
    height: auto;
    max-height: none;
    object-fit: cover;
    object-position: center 22%;
    margin-top: 12px;
  }

  .expert-modal__content {
    display: grid;
    gap: clamp(14px, 3vw, 20px);
    min-height: 0;
    padding: clamp(26px, 5vw, 34px) clamp(28px, 7vw, 46px) clamp(66px, 12svh, 82px);
  }

  .expert-modal__content>*:not(.expert-modal__footer) {
    width: 100%;
  }

  .expert-modal__footer {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    align-items: end;
    width: 100%;
    margin: 0;
  }

  .expert-modal__logo {
    grid-column: 2;
    justify-self: center;
  }

  .expert-modal__close {
    grid-column: 3;
  }
}

@media (max-width: 767px) {
  .recruit__experts {
    display: none;
  }

  .recruit__experts-mobile {
    display: block;
    width: 100%;
    padding: 0 20px 38px;
  }

  .recruit__expert-mobile-main,
  .recruit__expert-mobile-thumb {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    color: inherit;
    background: transparent;
    cursor: pointer;
  }

  .recruit__expert-mobile-main img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1.08;
    object-fit: cover;
    object-position: center 22%;
    background: #e9f0f1;
  }

  .recruit__expert-mobile-caption {
    position: relative;
    display: grid;
    gap: 10px;
    margin-top: 14px;
    padding: 24px 18px;
    border: 2px solid rgba(255, 255, 255, 0.32);
    border-radius: 6px;
    color: var(--base_color_w);
    text-align: center;
    background: rgba(40, 35, 34, 0.92);
  }

  .recruit__expert-mobile-caption::before {
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    content: "";
    pointer-events: none;
  }

  .recruit__expert-mobile-label {
    font-size: 14px;
    line-height: 1.4;
  }

  .recruit__expert-mobile-title {
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.72);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.45;
    line-break: strict;
    word-break: auto-phrase;
    overflow-wrap: anywhere;
    text-wrap: balance;
  }

  .recruit__expert-mobile-meta {
    font-size: 15px;
    line-height: 1.4;
  }

  .recruit__experts-mobile-heading {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 14px;
    margin: 44px 0 22px;
    color: var(--base_color_w);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
  }

  .recruit__experts-mobile-heading::before,
  .recruit__experts-mobile-heading::after {
    height: 1px;
    background: var(--base_color_w);
    content: "";
  }

  .recruit__experts-mobile-thumbs {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .recruit__experts-mobile-thumbs::-webkit-scrollbar {
    display: none;
  }

  .recruit__expert-mobile-thumb {
    flex: 0 0 calc((100% - 28px) / 3);
    scroll-snap-align: start;
  }

  .recruit__expert-mobile-thumb img {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    object-position: center 22%;
    background: #e9f0f1;
  }

  .recruit__experts-mobile-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin: 24px auto 0;
  }

  .recruit__experts-mobile-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
  }

  .recruit__experts-mobile-dots span.is-active {
    background: var(--base_color_w);
  }

  .expert-modal {
    padding: 34px 42px;
  }

  .expert-modal__dialog {
    width: min(100%, 480px, calc(100vw - 84px));
    max-height: calc(100svh - 68px);
  }

  .expert-modal__media {
    padding: clamp(40px, 10vw, 52px) clamp(26px, 7vw, 34px) 0;
  }

  .expert-modal__image {
    width: 100%;
    height: auto;
    max-height: none;
    aspect-ratio: 0.92 / 1;
    object-fit: cover;
    object-position: center 22%;
    margin-top: 0;
  }

  .expert-modal__content {
    gap: clamp(12px, 3.6vw, 18px);
    padding: clamp(20px, 5vw, 26px) clamp(26px, 7vw, 34px) clamp(46px, 10svh, 62px);
  }

  .expert-modal__label {
    font-size: clamp(14px, 3.4vw, 14px);
  }

  .expert-modal__title {
    padding-bottom: 14px;
    font-size: clamp(17px, 4.8vw, 21px);
    line-height: 1.45;
  }

  .expert-modal__position,
  .expert-modal__body {
    font-size: clamp(15px, 4.2vw, 18px);
    line-height: 1.78;
  }

  .expert-modal__name {
    font-size: clamp(21px, 5.6vw, 25px);
  }

  .expert-modal__body {
    max-width: none;
  }

  .expert-modal__logo {
    width: 82px;
  }

  .expert-modal__nav {
    width: 42px;
    height: 72px;
  }

  .expert-modal__nav::before {
    width: clamp(20px, 6vw, 24px);
    height: clamp(20px, 6vw, 24px);
    border-top-width: 5px;
    border-left-width: 5px;
  }

  .expert-modal__nav--prev {
    left: 0;
  }

  .expert-modal__nav--next {
    right: 0;
  }
}

@media (max-width: 374px) {
  .expert-modal {
    padding-right: 34px;
    padding-left: 34px;
  }

  .expert-modal__dialog {
    width: calc(100vw - 68px);
  }

  .expert-modal__nav {
    width: 34px;
  }

  .icon-close-button__icon,
  .expert-modal__close-icon {
    width: 32px;
    height: 32px;
    border-width: 3px;
  }

  .icon-close-button__icon::before,
  .icon-close-button__icon::after,
  .expert-modal__close-icon::before,
  .expert-modal__close-icon::after {
    width: 25px;
    height: 2px;
  }

  .icon-close-button__text,
  .expert-modal__close-text {
    font-size: 15px;
  }
}

@media (max-height: 700px) and (max-width: 767px) {
  .expert-modal {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .expert-modal__dialog {
    max-height: calc(100svh - 48px);
  }

  .expert-modal__media {
    padding-top: 34px;
  }

  .expert-modal__content {
    padding-bottom: 44px;
  }

  .expert-modal__logo {
    width: 72px;
  }
}

@keyframes expertSlideRight {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

/* Recommended */
.recommended {
  text-align: center;
  background: var(--base_color_gray);
}

.recommended__slider {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.recommended__viewport {
  overflow-x: auto;
  padding: 0;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scroll-padding-inline: clamp(48px, 13vw, 72px);
}

.recommended__viewport::-webkit-scrollbar {
  display: none;
}

.recommended__list {
  display: flex;
  gap: 18px;
  width: max-content;
  padding: 0 clamp(48px, 13vw, 72px);
}

.recommended__item {
  flex: 0 0 calc(100vw - clamp(96px, 26vw, 144px));
  display: block;
  overflow: hidden;
  color: inherit;
  background: var(--base_color_w);
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
  scroll-snap-align: start;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.recommended__item[href]:hover {
  opacity: 0.86;
  transform: translateY(-2px);
}

.recommended__image,
.recommended__legacy-image {
  display: block;
  width: 100%;
}

.recommended__image {
  aspect-ratio: 256 / 147;
  height: auto;
  object-fit: cover;
}

.recommended__legacy-image {
  width: var(--content_width);
  margin: 0 auto;
}

.recommended__slider-arrow {
  position: absolute;
  top: min(21.24609375vw, 160.78125px);
  z-index: 2;
  width: 38px;
  height: 64px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transform: translateY(-50%);
}

.recommended__slider-arrow.is-hidden {
  display: none;
}

.recommended__slider-arrow::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 47px;
  height: 47px;
  background: #555;
  content: "";
  mask: var(--slider-arrow-mask) center / contain no-repeat;
  -webkit-mask: var(--slider-arrow-mask) center / contain no-repeat;
}

.recommended__slider-arrow--prev {
  left: 8px;
  --slider-arrow-mask: url("data:image/svg+xml,%3Csvg width='47' height='47' viewBox='0 0 47 47' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M42 5 23.5 23.5 42 42' fill='none' stroke='%23000' stroke-width='5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.recommended__slider-arrow--prev::after {
  transform: translate(-50%, -50%);
}

.recommended__slider-arrow--next {
  right: 8px;
  --slider-arrow-mask: url("data:image/svg+xml,%3Csvg width='47' height='47' viewBox='0 0 47 47' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 5l18.5 18.5L5 42' fill='none' stroke='%23000' stroke-width='5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.recommended__slider-arrow--next::after {
  transform: translate(-50%, -50%);
}

.recommended__dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 22px;
}

.recommended__dots.is-hidden {
  display: none;
}

.recommended__dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--base_color_w);
  cursor: pointer;
}

.recommended__dot.is-active {
  background: var(--base_color_main);
}


@media (min-width: 768px) {

  /* FV */
  .fv {
    --fv-visual-height: calc(100svh - 100px);
    --fv-scroll-center-y: calc(var(--fv-visual-height) / 2);

    min-height: 0;
  }

  .fv__visual {
    background: var(--base_color_w);
  }

  .fv__slide--01 .fv__slide-image {
    background-image: var(--fv-slide-image-pc);
    background-position: calc(50% + clamp(28px, 3.4vw, 64px)) -75px;
    background-size: max(calc(100% + 120px), calc((100svh - 25px) * 1.68)) auto;
  }

  .fv__slide--02 .fv__slide-image {
    background-image: var(--fv-slide-image-pc);
    background-position: center center;
    background-size: cover;
  }

  .fv__slide--03 .fv__slide-image {
    background-image: var(--fv-slide-image-pc);
    background-position: center 60%;
    background-size: cover;
  }

  .seminar-cta-stage::after {
    width: 100%;
    height: calc(var(--fv-seminar-height) + var(--fv-seminar-shadow-y));
  }

  .seminar-cta-stage {
    --fv-seminar-width: min(53%, 900px);
    --fv-seminar-height: 76px;
  }

  .fv__body {
    width: min(100% - 166px, 1788px);
    padding-top: clamp(58px, 4.8vw, 92px);
    margin: 0;
  }

  .fv__title {
    padding: 5px 20px;
    margin-bottom: 15px;
    font-size: clamp(32px, 3vw, 42px);
    line-height: 1.3;
  }

  .fv__title-large {
    font-size: clamp(36px, 3.35vw, 48px);
  }

  .fv__badge-image {
    width: clamp(420px, 32vw, 540px);
  }

  .fv__title-anchor .fv__badge-image {
    top: calc(100% + clamp(96px, 10svh, 136px));
  }

  .fv__slide--02 .fv__large-copy {
    font-size: clamp(112px, 8.9vw, 172px);
  }

  .fv__slide--02 .fv__title,
  .fv__slide--03 .fv__title {
    max-width: calc(100% - clamp(40px, 12vw, 240px));
    padding: 10px clamp(22px, 3.2vw, 46px);
    margin: 0;
    line-height: 1.22;
  }

  .fv__slide--02 .fv__title--line {
    bottom: 31.5%;
  }

  .fv__slide--02 .fv__title:not(.fv__title--line) {
    bottom: 18.5%;
  }

  .front-page .fv__slide--02 .fv__body {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    width: 100%;
    padding-bottom: clamp(122px, 16svh, 178px);
    gap: clamp(10px, 1.3vw, 18px);
  }

  .front-page .fv__slide--02 .fv__title {
    position: static;
    right: auto;
    margin: 0;
  }

  .fv__slide--03 .fv__title {
    top: clamp(68px, 7.2vw, 138px);
    left: 0;
  }

  .fv__slide--03 .fv__large-copy {
    font-size: clamp(72px, 5.7vw, 110px);
  }

  @media (max-width: 1280px) {
    .fv__title {
      font-size: clamp(28px, 2.8vw, 38px);
    }

    .fv__title-large {
      font-size: clamp(32px, 3.15vw, 44px);
    }
  }

  .seminar-cta {
    --seminar-cta-hover-shift: 10px;
    --seminar-cta-arrow-shift: 18px;
    --seminar-cta-side-width: 80px;
    --seminar-cta-text-gap: 24px;
    padding: 0 calc(86px + var(--seminar-cta-edge-overhang)) 0 86px;
    font-size: 18px;
  }

  @media (max-width: 1240px) {
    .seminar-cta-stage {
      --fv-seminar-width: min(72%, 680px);
      --fv-seminar-height: 76px;
    }

    .seminar-cta {
      --seminar-cta-hover-shift: 9px;
      --seminar-cta-arrow-shift: 16px;
      --seminar-cta-side-width: 72px;
      --seminar-cta-text-gap: 18px;
      padding: 0 calc(54px + var(--seminar-cta-edge-overhang)) 0 54px;
      font-size: 15px;
    }
  }

  @media (max-width: 1240px) {
    .fv__slide--02 .fv__large-copy {
      top: 14%;
      font-size: clamp(72px, 9vw, 112px);
    }
  }

  .fv__hero-header {
    --fv-hero-content-width: min(850px, var(--content_width));

    padding-top: 120px;
    padding-right: calc((100% - var(--fv-hero-content-width)) / 2);
    padding-bottom: 64px;
    padding-left: calc((100% - var(--fv-hero-content-width)) / 2);
    background:
      linear-gradient(180deg, var(--base_color_green_sub) 0 56px, transparent 56px),
      var(--base_color_main);
  }

  .fv__hero-copy {
    margin-top: 0;
    font-size: 40px;
  }

  .fv__hero-label {
    display: flex;
    width: fit-content;
    min-width: 410px;
    min-height: 30px;
    font-size: 15px;
  }

  @media (max-width: 1240px) {
    .front-page .fv {
      --fv-visual-height: clamp(420px, calc(100svh - 230px), 680px);
    }
  }

  @media (min-width: 768px) and (max-width: 1100px) {
    .front-page .fv__visual {
      --seminar-cta-edge-overhang: 0px;
      --fv-seminar-height: 64px;
      --fv-seminar-shadow-x: 4px;
      --fv-seminar-shadow-y: 5px;
    }

    .front-page .fv__slide--01 .fv__slide-image {
      background-position: 52% top;
      background-size: max(112%, calc((100svh - 120px) * 1.48)) auto;
    }

    .front-page .fv__slide--01 .fv__body {
      width: calc(100% - 48px);
      padding-top: clamp(34px, 4.5vw, 50px);
    }

    .front-page .fv__slide--02 .fv__body,
    .front-page .fv__slide--03 .fv__body {
      width: 100%;
    }

    .front-page .fv__slide--01 .fv__title {
      padding-right: clamp(14px, 2.5vw, 20px);
      padding-left: clamp(14px, 2.5vw, 20px);
      font-size: clamp(22px, 2.5vw, 27px);
      line-height: 1.25;
      white-space: nowrap;
    }

    .front-page .fv__slide--01 .fv__title-large {
      font-size: clamp(25px, 2.8vw, 31px);
    }

    .front-page .fv__badge-image {
      width: clamp(260px, 31vw, 360px);
    }

    .front-page .fv__title-anchor .fv__badge-image {
      top: calc(100% + clamp(58px, 7svh, 88px));
      left: clamp(24px, 4vw, 44px);
      transform: none;
    }

    .front-page .seminar-cta-stage {
      --fv-seminar-width: min(62%, 660px);
    }

    .front-page .seminar-cta-stage::before {
      left: 0;
      clip-path: polygon(0 0, calc(100% - 26px) 0, 100% 100%, 0 100%);
      filter: blur(3px);
    }

    .front-page .fv__seminar {
      --seminar-cta-side-width: clamp(46px, 6vw, 64px);
      --seminar-cta-text-gap: clamp(16px, 2vw, 22px);
      left: 0;
      min-height: var(--fv-seminar-height);
      padding: 0 clamp(58px, 6.4vw, 72px) 0 clamp(42px, 5vw, 58px);
      clip-path: polygon(0 0, calc(100% - 26px) 0, 100% 100%, 0 100%);
      font-size: clamp(14px, 1.7vw, 16px);
      white-space: nowrap;
    }

    .front-page .fv__seminar::before {
      display: block;
    }

    .front-page .fv__seminar .jp-btn {
      white-space: nowrap;
    }
  }

  /* Mission */
  .mission__wave {
    padding-top: 72px;
  }

  .image-placeholder--movie {
    aspect-ratio: 16 / 9;
  }

  .message-lead {
    width: var(--content_width);
    font-size: clamp(32px, 2.9vw, 42px);
    line-height: 1.45;
    text-shadow: 5px 5px 0 var(--base_color_yellow);
  }

  .mission__lead {
    margin-top: 50px;
    margin-bottom: 20px;
  }

  .cta p {
    width: var(--content_width);
    font-size: clamp(31px, 8.8vw, 40px);
    line-height: 1.5;
    margin: 0 auto 36px;
  }

  .jast-group.section {
    padding-top: 150px;
    padding-bottom: 120px;
  }

  .jast-group__title {
    margin-bottom: 34px;
  }

  .jast-group__body {
    margin-bottom: 38px;
    font-size: 15px;
  }

  .statement-support {
    width: min(760px, var(--content_width));
    min-height: 78px;
    padding: 12px 28px;
    font-size: clamp(23px, 2vw, 28px);
    box-shadow: 4px 4px 0 var(--base_color_yellow);
  }

  .mission__support-pc {
    display: inline;
  }

  .mission__support-sp {
    display: none;
  }

  /* Results */
  .results__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    width: var(--content_width);
    margin: 0 auto;
  }

  .result-card {
    min-height: 280px;
    margin-bottom: 0;
  }

  .result-card strong {
    font-size: clamp(76px, 7.6vw, 124px);
  }

  .result-card>span {
    font-size: clamp(28px, 2.5vw, 40px);
  }

  .result-card h3 {
    justify-content: flex-start;
    margin-top: 24px;
    margin-bottom: 18px;
  }

  .result-card__en {
    font-size: clamp(22px, 2.5vw, 26px);
  }

  .result-card__slash,
  .result-card__jp {
    font-size: clamp(12px, 0.9vw, 14px);
  }

  .result-card p {
    font-size: 14px;
  }

  .results__tagline {
    text-align: center;
    margin-top: 25px;
    font-size: 15px;
  }

  .results__mark {
    margin-top: 80px;
  }

  /* Service */
  .service {
    padding-top: 92px;
  }

  .service__list {
    width: 100%;
  }

  .service-card {
    display: grid;
    grid-template-columns: 50% 50%;
    min-height: 340px;
  }

  .service-card:nth-child(even) {
    grid-template-columns: 50% 50%;
  }

  .service-card:nth-child(even) .service-card__image {
    order: 2;
  }

  .service-card__image {
    clip-path: polygon(18% 0, 100% 0, 82% 100%, 0 100%);
  }

  .service-card:nth-child(even) .service-card__image {
    clip-path: polygon(0 0, 82% 0, 100% 100%, 18% 100%);
  }

  .service-card__image img {
    height: 100%;
    min-height: 340px;
    aspect-ratio: auto;
  }

  .image-placeholder--service {
    min-height: 340px;
  }

  .service-card__body {
    padding: clamp(28px, 5vw, 72px);
  }

  .service-card__body h3 {
    font-size: clamp(22px, 2.3vw, 32px);
  }

  .service-card__number {
    display: none;
  }

  .service-card__body p {
    max-width: 600px;
    font-size: 15px;
  }

  /* Service Card Icons PC */
  .service-card__icons {
    margin: 24px 0 32px;
    gap: 24px 20px;
  }

  .service-card__icons--col3 {
    grid-template-columns: repeat(5, 1fr);
  }

  .service-card__icons--col2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card:nth-child(3) .service-card__icons--col2 {
    grid-template-columns: repeat(4, 1fr);
  }

  .service-card__icon-item img,
  .service-card__icon-image,
  .service-card__icon-wrapper {
    width: 64px;
    height: 64px;
    margin-bottom: 10px;
  }

  .service-card__icon-wrapper--ibss .service-card__icon-arrow {
    width: 24px;
    height: 24px;
    top: -6px;
    right: -6px;
  }

  .service-card__icon-item span {
    font-size: 15px;
  }

  /* Service List Banner PC */
  .service-list-banner {
    min-height: 84px;
  }

  .service-list-banner__left {
    width: 58%;
    padding: 0 40px 0 60px;
    clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
  }

  .service-list-banner__en {
    font-size: clamp(15px, 1.4vw, 20px);
  }

  .service-list-banner__right {
    padding-left: 20px;
    padding-right: 60px;
    justify-content: space-between;
  }

  .service-list-banner__line {
    display: inline-block;
    width: 48px;
    height: 1px;
    background: #fff;
    margin-right: 20px;
  }

  .service-list-banner__jp {
    font-size: clamp(16px, 1.6vw, 22px);
    margin-right: 0;
  }

  .service-list-banner__arrow {
    width: 64px;
  }

  .service-list-banner__arrow::after {
    top: -4px;
    width: 8px;
    height: 8px;
  }

  /* News */
  .news {
    padding-top: 84px;
    padding-bottom: 100px;
  }

  .news__slider-container {
    max-width: calc(var(--content_width) + 120px);
    margin: 0 auto 54px;
  }

  .news__slider-viewport {
    overflow: hidden;
    box-sizing: content-box;
    max-width: var(--content_width);
    margin: 0 auto;
    padding: 0 10px 10px 0;
  }

  .news__grid {
    display: flex;
    gap: 32px;
    width: max-content;
    padding: 0;
    margin-bottom: 0;
  }

  .news-card {
    flex: 0 0 calc((var(--content_width) - 96px) / 4);
    width: calc((var(--content_width) - 96px) / 4);
    max-width: none;
  }

  .news-card__category-wrapper {
    min-height: 30px;
    padding: 0 32px;
    margin-bottom: 16px;
    border-radius: 20px 0 20px 0;
  }

  .news-card__category {
    font-size: 15px;
  }

  .news-card time {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .news-card h3 {
    font-size: 15px;
    margin-bottom: 14px;
    min-height: 2.9em;
    height: auto;
  }

  .news-card__line {
    margin-bottom: 16px;
  }

  .news-card p {
    font-size: 15px;
  }

  .news__slider-arrow {
    width: 50px;
    height: 78px;
  }

  .news__slider-arrow--prev {
    left: 4px;
  }

  .news__slider-arrow--next {
    right: 4px;
  }

  .news__slider-dots {
    display: none;
  }

  .cutout-button {
    --cutout-button-cut: 13px;

    width: 340px;
    min-height: 64px;
    font-size: 16px;
  }

  .instagram-cta {
    margin-top: 60px;
  }

  .instagram-cta__link {
    font-size: 15px;
  }

  /* Recruit */
  .recruit {
    padding-top: 54px;
    padding-bottom: 84px;
  }

  .recruit__body {
    padding: 64px 20px 54px;
  }

  .recruit__experts {
    width: 100%;
    margin: 0;
  }

  .recruit__expert {
    flex-basis: 25vw;
    width: 25vw;
    min-width: 25vw;
    max-width: 25vw;
  }

  .expert-modal__dialog {
    width: min(100%, 1240px, calc(100vw - clamp(172px, 16vw, 240px)));
  }

  /* Recommended */
  .recommended__slider {
    width: var(--content_width);
  }

  .recommended__viewport {
    padding: 0;
    scroll-padding-inline: 0;
  }

  .recommended__list {
    gap: 24px;
    width: 100%;
    padding: 0;
  }

  .recommended__item {
    flex-basis: calc((100% - 48px) / 3);
  }

  .recommended__slider-arrow {
    top: min(102.65625px, calc(9.5703125vw - 12.25px));
    width: 50px;
    height: 78px;
  }

  .recommended__slider-arrow--prev {
    left: 8px;
  }

  .recommended__slider-arrow--next {
    right: 8px;
  }

  .recommended__dots {
    margin-top: 24px;
  }

  .recommended__legacy-image {
    width: var(--content_width);
  }
}

/* Service Final Layout */
.service {
  padding: 58px 0 0;
  overflow: hidden;
}

.service--home {
  overflow-x: clip;
  overflow-y: visible;
}

.service--home .service__list {
  overflow-x: clip;
  overflow-y: visible;
}

.service__list {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  background: var(--base_color_w);
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: var(--base_color_w);
  background:
    linear-gradient(120deg, rgba(0, 99, 151, 0.92), rgba(44, 144, 202, 0.96)),
    var(--base_color_main);
}

.service-card:nth-child(even) {
  background:
    linear-gradient(120deg, rgba(44, 144, 202, 0.96), rgba(0, 99, 151, 0.92)),
    var(--base_color_main);
}

.service-card.is-motion-ready {
  opacity: 0;
  transform: translateX(100%);
  transition:
    opacity 3s cubic-bezier(.16, 1, .3, 1),
    transform 3s cubic-bezier(.16, 1, .3, 1);
}

.service-card:nth-child(even).is-motion-ready {
  transform: translateX(-100%);
}

.service-card.is-motion-ready.is-visible {
  opacity: 1;
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  .service-card.is-motion-ready {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.service-card__image-wrapper {
  position: relative;
  width: 72%;
  overflow: visible;
  clip-path: none;
}

.service-card__image {
  margin: 0;
  clip-path: polygon(20% 0, 100% 0, 72% 100%, 0 100%);
}

.service-card:nth-child(even) .service-card__image-wrapper {
  align-self: flex-end;
  clip-path: none;
}

.service-card:nth-child(even) .service-card__image {
  margin: 0;
  clip-path: polygon(0 0, 80% 0, 100% 100%, 28% 100%);
}

.service-card__image img {
  width: 100%;
  aspect-ratio: 1.22 / 1;
  object-fit: cover;
}

.service-card__title {
  margin: 0;
  font-weight: 900;
  line-height: 1.35;
}

.service-card__title--sp {
  position: absolute;
  right: calc(-28vw - 5px);
  bottom: 5px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  max-width: calc(100vw - 28px);
  min-height: clamp(56px, 16vw, 68px);
  padding: 10px 36px;
  color: var(--base_color_w);
  font-size: 20px;
  font-weight: 700;
  white-space: nowrap;
  text-shadow: 1.4071px 1.4071px 0 rgba(0, 44, 96, 0.72);
  background: transparent;
  isolation: isolate;
}

.service-card__title--sp::before,
.service-card__title--sp::after {
  position: absolute;
  inset: 0;
  content: "";
  clip-path: polygon(14px 0, 100% 0, 100% 100%, 0 100%);
}

.service-card__title--sp::before {
  z-index: 0;
  background: rgba(91, 99, 96, 0.58);
  transform: translate(5px, 5px);
}

.service-card__title--sp::after {
  inset: 2px 4px;
  z-index: 1;
  background: var(--base_color_sub);
}

.service-card:nth-child(even) .service-card__title--sp {
  right: auto;
  left: -28vw;
}

.service-card:nth-child(even) .service-card__title--sp::before,
.service-card:nth-child(even) .service-card__title--sp::after {
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 100%, 0 100%);
}

.service-card:nth-child(even) .service-card__title--sp::before {
  transform: translate(-5px, 5px);
}

.service-card__title--pc {
  display: none;
}

.service-card__number {
  display: inline-block;
  margin-right: 6px;
  color: var(--base_color_yellow);
}

.service-card__title--sp .service-card__number {
  position: relative;
  z-index: 2;
  color: var(--base_color_w);
}

.service-card__title-label {
  position: relative;
  z-index: 2;
}

.service-card__body {
  display: block;
  padding: 24px 22px 34px;
}

.service-card__body p {
  max-width: none;
  margin: 0 0 45px;
  color: var(--base_color_w);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
}

.service-card__body .service-card__jmics-link {
  display: inline;
  min-width: 0;
  padding: 0;
  color: var(--base_color_yellow);
  font-size: inherit;
  font-weight: 900;
  line-height: inherit;
  text-decoration: none;
  border: 0;
  border-radius: 0;
}

.service-card__body .service-card__jmics-link:is(:hover, :focus-visible) {
  text-decoration: underline;
  text-underline-offset: .18em;
}

.service-card__icons {
  display: grid;
  gap: 18px 8px;
  margin: 0;
}

.service-card__icons--col3,
.service-card__icons--col2,
.service-card:nth-child(3) .service-card__icons--col2 {
  grid-template-columns: repeat(2, minmax(0, 142px));
  justify-content: center;
  justify-items: center;
}

.service-card:first-child .service-card__icons {
  grid-template-columns: repeat(2, minmax(0, 142px));
}

.service-card:first-child .service-card__icon-item {
  width: 100%;
}

.service-card:first-child .service-card__icon-item:nth-child(5) {
  grid-column: 1 / -1;
  justify-self: center;
  width: 142px;
}

.service-card__icon-item {
  display: grid;
  justify-items: center;
  gap: 7px;
  min-width: 0;
  padding: 0;
  color: var(--base_color_w);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  border: 0;
  transition: color .22s ease, transform .22s ease;
}

.service-card__body a.service-card__icon-item {
  display: grid;
  align-self: stretch;
  min-width: 0;
  padding: 0;
  color: var(--base_color_w);
  border: 0;
}

a.service-card__icon-item {
  align-self: stretch;
}

a.service-card__icon-item:hover,
a.service-card__icon-item:focus-visible {
  color: #00AFEC;
  transform: scale(1.1);
}

.service-card__icon-item--ibss:hover,
.service-card__icon-item--ibss:focus-visible,
.service-card__icon-item--ibss:focus-within {
  color: #00AFEC;
  transform: scale(1.1);
}

a.service-card__icon-item:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 8px;
}

.service-card__icon-item span {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

.service-card__icon-item img,
.service-card__icon-image,
.service-card__icon-wrapper {
  width: 78px;
  height: 78px;
  margin: 0;
  object-fit: contain;
}

.service-card__icon-image {
  position: relative;
  display: block;
}

.service-card__icon-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: opacity .22s ease;
}

.service-card__icon-img--dark {
  opacity: 1;
}

.service-card__icon-img--light {
  opacity: 0;
}

.service-card__icon-item:hover .service-card__icon-img--dark,
.service-card__icon-item:focus-visible .service-card__icon-img--dark {
  opacity: 0;
}

.service-card__icon-item:hover .service-card__icon-img--light,
.service-card__icon-item:focus-visible .service-card__icon-img--light {
  opacity: 1;
}

.service-card__icon-wrapper {
  position: relative;
}

.service-card__icon-wrapper img {
  width: 100%;
  height: 100%;
  transition: opacity .22s ease;
}

.service-card__icon-main {
  position: absolute;
  inset: 0;
}

.service-card__icon-main--dark,
.service-card__icon-arrow--dark {
  opacity: 1;
}

.service-card__icon-main--light,
.service-card__icon-arrow--light {
  opacity: 0;
}

.service-card__icon-item--ibss:hover .service-card__icon-main--dark,
.service-card__icon-item--ibss:focus-visible .service-card__icon-main--dark,
.service-card__icon-item--ibss:focus-within .service-card__icon-main--dark,
.service-archive__icon-item--ibss:hover .service-card__icon-main--dark,
.service-archive__icon-item--ibss:focus-visible .service-card__icon-main--dark,
.service-archive__icon-item--ibss:focus-within .service-card__icon-main--dark,
.service-card__icon-item--ibss:hover .service-card__icon-arrow--dark,
.service-card__icon-item--ibss:focus-visible .service-card__icon-arrow--dark,
.service-card__icon-item--ibss:focus-within .service-card__icon-arrow--dark,
.service-archive__icon-item--ibss:hover .service-card__icon-arrow--dark,
.service-archive__icon-item--ibss:focus-visible .service-card__icon-arrow--dark,
.service-archive__icon-item--ibss:focus-within .service-card__icon-arrow--dark {
  opacity: 0;
}

.service-card__icon-item--ibss:hover .service-card__icon-main--light,
.service-card__icon-item--ibss:focus-visible .service-card__icon-main--light,
.service-card__icon-item--ibss:focus-within .service-card__icon-main--light,
.service-archive__icon-item--ibss:hover .service-card__icon-main--light,
.service-archive__icon-item--ibss:focus-visible .service-card__icon-main--light,
.service-archive__icon-item--ibss:focus-within .service-card__icon-main--light,
.service-card__icon-item--ibss:hover .service-card__icon-arrow--light,
.service-card__icon-item--ibss:focus-visible .service-card__icon-arrow--light,
.service-card__icon-item--ibss:focus-within .service-card__icon-arrow--light,
.service-archive__icon-item--ibss:hover .service-card__icon-arrow--light,
.service-archive__icon-item--ibss:focus-visible .service-card__icon-arrow--light,
.service-archive__icon-item--ibss:focus-within .service-card__icon-arrow--light {
  opacity: 1;
}

.service-card__icon-wrapper--ibss .service-card__icon-arrow {
  position: absolute;
  top: 1px;
  right: -3px;
  width: 22px;
  height: 22px;
}

.service-card__icons .service-card__icon-item {
  --service-card-icon-slot: 78px;
  grid-template-rows: var(--service-card-icon-slot) minmax(calc(1.35em * 2), auto);
  align-content: start;
}

.service-card__icons .service-card__icon-item>span:not(.service-card__icon-image):not(.ibss-hover-card__url):not(.ibss-hover-card__bubble) {
  display: grid;
  min-height: calc(1.35em * 2);
  place-items: center;
}

.service-card__icons .service-card__icon-item>img,
.service-card__icons .service-card__icon-image,
.service-card__icons .service-card__icon-wrapper {
  grid-row: 1;
  align-self: end;
}

.service-card__body a.service-card__icon-item:hover,
.service-card__body a.service-card__icon-item:focus-visible,
.service-card__icon-item--ibss:hover,
.service-card__icon-item--ibss:focus-visible,
.service-card__icon-item--ibss:focus-within {
  transform: scale(1.1);
}

.service-card__body a.service-card__icon-item:hover,
.service-card__body a.service-card__icon-item:focus-visible,
.service-card__icon-item--ibss:hover,
.service-card__icon-item--ibss:focus-visible,
.service-card__icon-item--ibss:focus-within,
.service-card__icon-item:hover>span,
.service-card__icon-item:focus-visible>span,
.service-card__icon-item:focus-within>span {
  color: #00AFEC;
}

.service-card__icon-item--ibss:hover,
.service-card__icon-item--ibss:focus-visible,
.service-card__icon-item--ibss:focus-within,
.service-card__icon-item--ibss:hover>span,
.service-card__icon-item--ibss:focus-visible>span,
.service-card__icon-item--ibss:focus-within>span {
  color: var(--base_color_w);
}

.service-card__icon-item--ibss span,
.service-card__icon-item--ibss:hover span,
.service-card__icon-item--ibss:focus-visible span,
.service-card__icon-item--ibss:focus-within span {
  color: var(--base_color_w);
}

.service-card__icon-item--ibss>span:not(.ibss-hover-card__url):not(.ibss-hover-card__bubble) {
  font-weight: 500;
}

.home .service-card__icon-item--ibss>span:first-of-type,
.front-page .service-card__icon-item--ibss>span:first-of-type,
body:not(.archive):not(.single) .service-card__icon-item--ibss>span:first-of-type {
  font-weight: 500 !important;
}

.service-card:has(.service-card__icon-item--ibss) {
  position: relative;
  overflow: visible;
}

.service-card:has(.ibss-hover-card:hover),
.service-card:has(.ibss-hover-card:focus-visible),
.service-card:has(.ibss-hover-card:focus-within),
.service-card:has(.ibss-hover-card.is-open) {
  z-index: 20;
}

.service-card__icon-item--ibss,
.ibss-hover-card {
  position: relative;
  z-index: 5;
  overflow: visible;
  cursor: pointer;
  text-decoration: none;
}

.ibss-hover-card__url,
.ibss-hover-card__bubble {
  position: absolute;
  left: calc(100% + 18px);
  z-index: 60;
  display: block;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  color: var(--base_color_w) !important;
}

.service-card__icon-item--ibss .ibss-hover-card__url {
  top: -2px;
  left: calc(100% + 20px);
}

.service-card__icon-item--ibss .ibss-hover-card__bubble {
  top: 67px;
  left: calc(100% + 18px);
  width: 470px;
  max-width: calc(100vw - 48px);
}

.service-card__icon-item--ibss .ibss-hover-card__bubble::before {
  top: 20px;
  left: -30px;
  width: 30px;
  height: 42px;
  clip-path: polygon(0 0, 100% 50%, 100% 100%);
}

.ibss-hover-card__url {
  text-decoration: none;
}

.ibss-hover-card__bubble {
  white-space: normal;
}

.ibss-hover-card__url {
  top: -12px;
  width: max-content;
  min-width: 0;
  max-width: min(360px, calc(100vw - 48px));
  padding: 7px 16px 8px;
  color: var(--base_color_w);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  background: #1f713c;
  border: 0;
  border-radius: 0;
  outline: 0;
  box-shadow: none;
}

.ibss-hover-card__bubble {
  top: 97px;
  width: min(470px, calc(100vw - 48px));
  padding: 20px 26px 22px;
  color: var(--base_color_w);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
  text-align: left;
  background: #287b42;
  border: 0;
  border-radius: 0;
  box-shadow: 14px 16px 20px rgba(0, 55, 92, .2);
}

.service-card__icon-item--ibss .ibss-hover-card__url,
.service-card__icon-item--ibss .ibss-hover-card__bubble {
  font-weight: 400 !important;
}

.ibss-hover-card__bubble::before {
  position: absolute;
  top: 20px;
  left: -29px;
  width: 31px;
  height: 42px;
  content: "";
  background: #287b42;
  clip-path: polygon(0 0, 100% 50%, 100% 100%);
  transform: none;
}

.ibss-hover-card__bubble .ibss-hover-card__link,
.ibss-hover-card__link {
  display: none;
}

.service-archive__icon-item--ibss:hover img,
.service-archive__icon-item--ibss:focus-visible img,
.service-archive__icon-item--ibss:focus-within img {
  filter: none;
}

.service-archive__icon-item--ibss:hover,
.service-archive__icon-item--ibss:focus-visible,
.service-archive__icon-item--ibss:focus-within,
.service-archive-card__icon-box--ibss:hover,
.service-archive-card__icon-box--ibss:focus-visible,
.service-archive-card__icon-box--ibss:focus-within {
  outline: none;
}

.service-archive__icon-item--ibss:hover,
.service-archive__icon-item--ibss:focus-visible,
.service-archive__icon-item--ibss:focus-within {
  transform: scale(1.06);
}

.ibss-hover-card:hover,
.ibss-hover-card:focus-visible,
.ibss-hover-card:focus-within,
.ibss-hover-card.is-open {
  z-index: 50;
}

body:has(.ibss-hover-card:hover) .footer-page-top,
body:has(.ibss-hover-card:focus-visible) .footer-page-top,
body:has(.ibss-hover-card:focus-within) .footer-page-top,
body:has(.ibss-hover-card.is-open) .footer-page-top {
  z-index: 1;
  pointer-events: none;
}

.ibss-hover-card:hover .ibss-hover-card__url,
.ibss-hover-card:focus-visible .ibss-hover-card__url,
.ibss-hover-card:focus-within .ibss-hover-card__url,
.ibss-hover-card.is-open .ibss-hover-card__url,
.ibss-hover-card:hover .ibss-hover-card__bubble,
.ibss-hover-card:focus-visible .ibss-hover-card__bubble,
.ibss-hover-card:focus-within .ibss-hover-card__bubble,
.ibss-hover-card.is-open .ibss-hover-card__bubble {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
  transform: translateY(5px);
}

.service-card__icon-item--ibss.ibss-hover-card {
  position: relative;
}

.ibss-hover-card:hover,
.ibss-hover-card:focus-visible,
.ibss-hover-card:focus-within,
.ibss-hover-card.is-open {
  z-index: 40;
}

.service-card__icon-item--ibss .ibss-hover-card__url,
.ibss-hover-card__url {
  display: none;
}

.ibss-hover-card .ibss-hover-card__bubble {
  display: none;
}

.service-card__icon-item--ibss .ibss-hover-card__bubble,
.ibss-hover-card__bubble {
  position: fixed;
  top: auto;
  right: 14px;
  bottom: max(14px, env(safe-area-inset-bottom));
  left: 14px;
  width: auto;
  max-width: none;
  z-index: 1000;
  max-height: min(42dvh, 340px);
  padding: 18px 18px 20px;
  overflow: auto;
  font-size: 12px;
  line-height: 1.75;
  transform: translateY(14px);
}

.service-card__icon-item--ibss .ibss-hover-card__bubble::before,
.ibss-hover-card__bubble::before {
  display: none;
}

.ibss-hover-card:hover .ibss-hover-card__bubble,
.ibss-hover-card:focus-visible .ibss-hover-card__bubble,
.ibss-hover-card:focus-within .ibss-hover-card__bubble,
.ibss-hover-card.is-open .ibss-hover-card__bubble,
.ibss-hover-card__bubble.is-open {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.ibss-hover-card__bubble .ibss-hover-card__link,
.ibss-hover-card__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 12px auto 0;
  padding: 6px 12px 7px;
  color: #1f713c !important;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  background: var(--base_color_w);
}

.ibss-mobile-popup {
  position: fixed;
  right: 14px;
  bottom: max(14px, env(safe-area-inset-bottom));
  left: 14px;
  z-index: 1000;
  max-height: min(42dvh, 340px);
  padding: 18px 18px 20px;
  overflow: auto;
  color: var(--base_color_w);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.75;
  text-align: left;
  pointer-events: none;
  visibility: hidden;
  background: #287b42;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.ibss-mobile-popup.is-open {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.ibss-mobile-popup .ibss-hover-card__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 12px auto 0;
  padding: 6px 12px 7px;
  color: #1f713c !important;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  background: var(--base_color_w);
}

.service-archive-card__icon-box--ibss.ibss-hover-card {
  filter: none;
}

.service-archive-card__icon-box--ibss.ibss-hover-card>img {
  filter: drop-shadow(0 0 18px rgba(255, 255, 255, .95)) drop-shadow(0 0 20px rgba(0, 175, 236, .76));
}

@media only screen and (min-width: 769px) {

  .ibss-hover-card:hover,
  .ibss-hover-card:focus-visible,
  .ibss-hover-card:focus-within,
  .ibss-hover-card.is-open {
    z-index: 50;
  }

  .service-card__icon-item--ibss .ibss-hover-card__url,
  .ibss-hover-card__url {
    display: block;
  }

  .ibss-hover-card .ibss-hover-card__bubble {
    display: block;
  }

  .service-card__icon-item--ibss .ibss-hover-card__bubble {
    position: absolute;
    top: 67px;
    right: auto;
    bottom: auto;
    left: calc(100% + 18px);
    width: 470px;
    max-width: calc(100vw - 48px);
    z-index: 60;
    max-height: none;
    padding: 20px 26px 22px;
    overflow: visible;
    font-size: 13px;
    line-height: 1.7;
    transform: translateY(8px);
  }

  .ibss-hover-card__bubble {
    position: absolute;
    top: 97px;
    right: auto;
    bottom: auto;
    left: calc(100% + 18px);
    width: min(470px, calc(100vw - 48px));
    max-width: calc(100vw - 48px);
    z-index: 60;
    max-height: none;
    padding: 20px 26px 22px;
    overflow: visible;
    font-size: 13px;
    line-height: 1.7;
    transform: translateY(8px);
  }

  .service-card__icon-item--ibss .ibss-hover-card__bubble::before,
  .ibss-hover-card__bubble::before {
    display: block;
  }

  .ibss-hover-card:hover .ibss-hover-card__bubble,
  .ibss-hover-card:focus-visible .ibss-hover-card__bubble,
  .ibss-hover-card:focus-within .ibss-hover-card__bubble,
  .ibss-hover-card.is-open .ibss-hover-card__bubble,
  .ibss-hover-card__bubble.is-open {
    transform: translateY(5px);
  }

  .ibss-hover-card__bubble .ibss-hover-card__link,
  .ibss-hover-card__link {
    display: none;
  }

  .ibss-mobile-popup {
    display: none;
  }

  .service-archive-card__icon-box--ibss.ibss-hover-card>img {
    filter: none;
  }
}

@media (min-width: 1440px) {
  .news__slider-arrow--prev {
    left: -60px;
  }

  .news__slider-arrow--next {
    right: -60px;
  }
}

@media (min-width: 1280px) {
  .recommended__slider-arrow--prev {
    left: -60px;
  }

  .recommended__slider-arrow--next {
    right: -60px;
  }
}

.service-list-banner {
  display: flex;
  align-items: stretch;
  width: 100%;
  min-height: 48px;
  overflow: hidden;
  color: var(--base_color_w);
  background: var(--base_color_b2);
}

.service-list-banner__left {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58%;
  padding: 0 12px;
  background: linear-gradient(90deg, var(--base_color_icn_sub), var(--base_color_main));
  clip-path: polygon(0 0, 100% 0, calc(100% - 20px) 100%, 0 100%);
}

.service-list-banner__en {
  color: var(--base_color_w);
  font-family: "Orator Std", "Courier New", monospace;
  font-size: 15px;
  line-height: 1.2;
  white-space: nowrap;
}

.service-list-banner__right {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 12px 0 4px;
}

.service-list-banner__jp {
  color: var(--base_color_yellow);
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
}

.service-list-banner__jp-sub {
  color: var(--base_color_w);
}

.service-list-banner__line {
  display: none;
}

.service-list-banner__arrow {
  position: relative;
  width: 24px;
  height: 1px;
  background: var(--base_color_w);
}

.service-list-banner__arrow::after {
  position: absolute;
  top: -3px;
  right: 0;
  width: 7px;
  height: 7px;
  content: "";
  border-top: 1px solid var(--base_color_w);
  border-right: 1px solid var(--base_color_w);
  transform: rotate(45deg);
}

@media (min-width: 768px) {
  .service {
    padding-top: 94px;
  }

  .service__list {
    width: 100%;
  }

  .service-card {
    display: grid;
    grid-template-columns: 39.5% 60.5%;
    min-height: 342px;
  }

  .service-card:nth-child(even) {
    grid-template-columns: 60.5% 39.5%;
  }

  .service-card:nth-child(even) .service-card__image-wrapper {
    order: 2;
  }

  .service-card__image-wrapper,
  .service-card__image,
  .service-card__image img {
    height: 100%;
  }

  .service-card__image-wrapper {
    width: calc(100% - clamp(24px, 4vw, 56px));
    margin-left: clamp(24px, 4vw, 56px);
    clip-path: none;
  }

  .service-card__image,
  .service-card__image img {
    width: 100%;
  }

  .service-card:nth-child(even) .service-card__image-wrapper {
    margin-right: clamp(24px, 4vw, 56px);
    margin-left: 0;
    clip-path: none;
  }

  .service-card__image {
    margin: 0;
    clip-path: polygon(25% 0, 100% 0, 75% 100%, 0 100%);
  }

  .service-card:nth-child(even) .service-card__image {
    margin: 0;
    clip-path: polygon(0 0, 75% 0, 100% 100%, 25% 100%);
  }

  .service-card__image img {
    min-height: 342px;
    aspect-ratio: auto;
  }

  .service-card__title--sp {
    display: none;
  }

  .service-card__body .service-card__title--pc {
    display: block;
    margin-bottom: 18px;
    color: var(--base_color_w);
    font-size: 35px;
  }

  .service-card__number {
    display: none;
  }

  .service-card__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px 58px 70px 38px;
  }

  .service-card:nth-child(even) .service-card__body {
    padding-right: 38px;
    padding-left: 58px;
  }

  .service-card__body p {
    max-width: 800px;
    margin-bottom: 50px;
    font-size: 18px;
    line-height: 1.8;
  }

  .service-card__icons {
    gap: 20px 14px;
    justify-content: start;
  }

  .service-card:first-child .service-card__icons,
  .service-card__icons--col3 {
    grid-template-columns: repeat(5, minmax(0, 116px));
  }

  .service-card:first-child .service-card__icon-item,
  .service-card:first-child .service-card__icon-item:nth-child(5) {
    grid-column: auto;
    width: auto;
    justify-self: center;
  }

  .service-card__icons--col2 {
    grid-template-columns: repeat(2, minmax(0, 116px));
  }

  .service-card:nth-child(3) .service-card__icons--col2 {
    grid-template-columns: repeat(4, minmax(0, 116px));
    justify-content: start;
  }

  .service-card__icon-item {
    font-size: 14px;
  }

  .service-card__icon-item span {
    white-space: nowrap;
  }

  .service-card__icon-item .ibss-hover-card__bubble {
    white-space: normal;
  }

  .service-card__icon-item img,
  .service-card__icon-image,
  .service-card__icon-wrapper {
    width: 108px;
    height: 108px;
  }

  .service-card__icon-wrapper--ibss .service-card__icon-arrow {
    top: 3px;
    right: -2px;
    width: 36px;
    height: 36px;
  }

  .service-card__icons .service-card__icon-item {
    --service-card-icon-slot: 108px;
    grid-template-rows: var(--service-card-icon-slot) minmax(calc(1.35em * 2), auto);
    align-content: start;
  }

  .service-card__icons .service-card__icon-item>img,
  .service-card__icons .service-card__icon-image,
  .service-card__icons .service-card__icon-wrapper {
    grid-row: 1;
    align-self: end;
  }

  .service-card__body a.service-card__icon-item:hover,
  .service-card__body a.service-card__icon-item:focus-visible,
  .service-card__icon-item--ibss:hover,
  .service-card__icon-item--ibss:focus-visible,
  .service-card__icon-item--ibss:focus-within,
  .service-card__icon-item:hover>span,
  .service-card__icon-item:focus-visible>span,
  .service-card__icon-item:focus-within>span {
    color: #00AFEC;
  }

  .service-card__icon-item--ibss:hover,
  .service-card__icon-item--ibss:focus-visible,
  .service-card__icon-item--ibss:focus-within,
  .service-card__icon-item--ibss:hover>span,
  .service-card__icon-item--ibss:focus-visible>span,
  .service-card__icon-item--ibss:focus-within>span {
    color: var(--base_color_w);
  }

  @media (prefers-reduced-motion: reduce) {
    .service-card.is-motion-ready {
      opacity: 1;
      transform: none;
      transition: none;
    }
  }

  @media (max-width: 1240px) {
    .service-card {
      grid-template-columns: 56% 44%;
    }

    .service-card:nth-child(even) {
      grid-template-columns: 44% 56%;
    }

    .service-card__image-wrapper {
      width: calc(100% - clamp(16px, 2vw, 28px));
      margin-left: clamp(16px, 2vw, 28px);
    }

    .service-card:nth-child(even) .service-card__image-wrapper {
      margin-right: clamp(16px, 2vw, 28px);
      margin-left: 0;
    }

    .service-card:first-child .service-card__icons,
    .service-card__icons--col3 {
      grid-template-columns: repeat(3, minmax(0, 116px));
    }

    .service-card:nth-child(3) .service-card__icons--col2 {
      grid-template-columns: repeat(2, minmax(0, 116px));
    }
  }

  @media (max-width: 1240px) {

    .service-card,
    .service-card:nth-child(even) {
      display: flex;
      flex-direction: column;
      min-height: 0;
    }

    .service-card:nth-child(even) .service-card__image-wrapper {
      order: 0;
    }

    .service-card__image-wrapper,
    .service-card:nth-child(even) .service-card__image-wrapper {
      width: 100%;
      height: auto;
      margin-right: 0;
      margin-left: 0;
    }

    .service-card__image,
    .service-card__image img {
      height: auto;
    }

    .service-card__image img {
      min-height: 0;
      aspect-ratio: 1.22 / 1;
    }

    .service-card__body,
    .service-card:nth-child(even) .service-card__body {
      padding: 38px clamp(28px, 6vw, 58px) 46px;
    }

    .service-card__icons,
    .service-card:first-child .service-card__icons,
    .service-card__icons--col3,
    .service-card__icons--col2,
    .service-card:nth-child(3) .service-card__icons--col2 {
      grid-template-columns: repeat(2, minmax(116px, 148px));
      justify-content: center;
      gap: 42px clamp(44px, 9vw, 96px);
      max-width: 520px;
      margin-right: auto;
      margin-left: auto;
    }
  }

  .service-list-banner {
    min-height: 66px;
  }

  .service-list-banner__left {
    width: 58%;
    padding: 0 40px;
    clip-path: polygon(0 0, 100% 0, calc(100% - 38px) 100%, 0 100%);
  }

  .service-list-banner__en {
    font-size: 15px;
  }

  .service-list-banner__right {
    justify-content: space-between;
    gap: 18px;
    padding-right: 46px;
    padding-left: 10px;
  }

  .service-list-banner__line {
    display: block;
    width: 46px;
    height: 1px;
    background: var(--base_color_w);
  }

  .service-list-banner__jp {
    font-size: 16px;
  }

  .service-list-banner__arrow {
    width: 58px;
  }
}

/* ==========================================================================
   Service Archive & Single Common Styles
   ========================================================================== */
.service-breadcrumb {
  padding: 20px 0 0;
  background: #fff;
}

.service-breadcrumb__inner {
  width: var(--content_width);
  max-width: none;
  margin: 0 auto;
  color: #9b9b9b;
  font-size: 15px;
  line-height: 1.6;
}

.service-breadcrumb__inner a {
  color: var(--base_color_main);
  text-decoration: none;
}

.service-breadcrumb__inner span {
  color: inherit;
}

.service-page-nav {
  display: flex;
  justify-content: center;
  max-width: 600px;
  margin: 40px auto;
  padding: 0 20px;
  gap: 15px;
}

.service-page-nav__pagetop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 280px);
  height: 44px;
  border-radius: 22px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  text-align: center;
}

.service-page-nav__pagetop {
  color: var(--base_color_main);
  border: 1px solid var(--base_color_main);
  background: var(--base_color_w);
}

/* ==========================================================================
   Service Archive Style
   ========================================================================== */
.service-archive__fv {
  position: relative;
  height: 240px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: var(--base_color_w);
}

.service-archive__fv-inner {
  width: var(--content_width);
  margin: 0 auto;
  padding: 0 20px;
}

.service-archive__fv-badge {
  display: inline-flex;
  align-items: center;
  background: var(--base_color_main);
  padding: 10px 20px;
  clip-path: polygon(10px 0, 100% 0, 100% 100%, 0 100%);
}

.service-archive__fv-number {
  color: var(--base_color_yellow);
  font-size: 18px;
  font-weight: 900;
  margin-right: 8px;
}

.service-archive__fv-title {
  font-size: 20px;
  font-weight: 900;
  margin: 0;
}

.service-archive__tabs-nav {
  background: var(--base_color_b2);
  padding: 10px 0;
}

.service-archive__tabs {
  display: flex;
  list-style: none;
  padding: 0 10px;
  margin: 0;
  overflow-x: auto;
  gap: 8px;
  scrollbar-width: none;
  /* Firefox */
}

.service-archive__tabs::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

.service-archive__tab-item {
  flex: 1;
  min-width: 120px;
  text-align: center;
}

.service-archive__tab-item a {
  display: block;
  padding: 10px 5px;
  color: var(--base_color_w);
  background: var(--base_color_gray_sub_2);
  font-size: 15px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
}

.service-archive__tab-item.is-active a {
  color: var(--base_color_text);
  background: var(--service-tab-active-color, var(--base_color_w));
}

.service-archive__lead-section {
  padding: 40px 20px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.service-archive__lead-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--base_color_main);
  font-weight: bold;
}

.service-archive__intro-section {
  padding: 0 20px 40px;
  text-align: center;
}

.service-archive__icons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 15px;
  max-width: 600px;
  margin: 0 auto;
}

.service-archive__icons-grid--2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 320px;
}

.service-archive__icons-grid--3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 480px;
}

.service-archive__icons-grid--4 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 320px;
}

.service-archive__icons-grid--5 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 480px;
}

.service-archive__icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: 15px;
  font-weight: bold;
  color: var(--base_color_text);
}

.service-archive__icon-item img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 8px;
}

.service-archive__jmics-section {
  padding: 60px 20px;
  max-width: var(--content_width);
  margin: 0 auto;
}

.service-archive__jmics-lead {
  font-size: 15px;
  font-weight: bold;
  line-height: 1.8;
  color: var(--base_color_main);
  text-align: center;
  margin-bottom: 40px;
}

.service-archive__diagram-sp {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-archive__diagram-sp-circle img {
  width: 100%;
  max-width: 280px;
  display: block;
  margin: 0 auto;
}

.service-archive__diagram-sp-service img {
  display: block;
  width: min(100%, 360px);
  height: auto;
  margin: 0 auto;
}

.service-archive__diagram-pc {
  display: none;
}

.service-archive__blackboard-box {
  background: var(--base_color_sub);
  color: var(--base_color_w);
  padding: 24px;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.service-archive__blackboard-box h3 {
  font-size: 16px;
  font-weight: 900;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 8px;
  margin-bottom: 12px;
  color: var(--base_color_yellow);
}

.service-archive__blackboard-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

.service-archive__blackboard-box ul li {
  margin-bottom: 8px;
}

.service-archive__blackboard-box ul ul {
  padding-left: 12px;
  margin-top: 4px;
}

.service-archive__divider {
  text-align: center;
  font-size: 20px;
  color: var(--base_color_main);
  font-weight: bold;
  margin: 40px 0;
  letter-spacing: 0.01em !important;
}

@media (min-width: 769px) {
  .service-archive__divider {
    letter-spacing: 0.2em !important;
  }
}

.service-archive__list-section {
  background: var(--base_color_green);
  padding: 60px 20px;
}

.service-archive__list-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-archive-card {
  background: var(--base_color_w);
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.service-archive-card__icon-box {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--base_color_main);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

a.service-archive-card__icon-box:hover,
a.service-archive-card__icon-box:focus-visible {
  background: var(--base_color_green);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.14);
  transform: scale(1.08);
}

.service-archive-card__icon-box img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.service-archive-card__body h3 {
  font-size: 18px;
  font-weight: 900;
  color: var(--base_color_text);
  margin-bottom: 10px;
}

.service-archive-card__body p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--base_color_text);
  margin: 0;
}

.service-archive-card__action {
  margin-top: 20px;
}

.service-archive__bottom-cta {
  background: var(--base_color_gray);
  padding: 60px 20px;
  text-align: center;
}

.service-archive__bottom-cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.service-archive__bottom-cta-inner .logo-kship {
  max-height: 48px;
  margin-bottom: 20px;
}

.service-archive__bottom-cta-inner .cta-message {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 24px;
}

/* ==========================================================================
   Service Single Style
   ========================================================================== */
.service-single__fv {
  height: 200px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  color: var(--base_color_w);
}

.service-single__fv-inner {
  width: var(--content_width);
  margin: 0 auto;
  padding: 20px;
}

.service-single__fv-info {
  background: rgba(0, 0, 0, 0.75);
  padding: 15px 20px;
  border-radius: 4px;
  width: min(600px, 100%);
}

.service-single__fv-info .category-name {
  display: inline-block;
  background: var(--base_color_main);
  padding: 2px 8px;
  font-size: 15px;
  font-weight: bold;
  border-radius: 2px;
  margin-bottom: 8px;
}

.service-single__fv-info .category-lead {
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
}

.service-single__tabs-nav {
  background: var(--base_color_b2);
  padding: 10px 0;
}

.service-single__tabs {
  display: flex;
  list-style: none;
  padding: 0 10px;
  margin: 0;
  overflow-x: auto;
  gap: 8px;
  scrollbar-width: none;
}

.service-single__tabs::-webkit-scrollbar {
  display: none;
}

.service-single__tab-item {
  flex: 1;
  min-width: 120px;
  text-align: center;
}

.service-single__tab-item a {
  display: block;
  padding: 10px 5px;
  color: var(--base_color_w);
  background: var(--base_color_gray_sub_2);
  font-size: 15px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
}

.service-single__tab-item.is-active a {
  color: var(--base_color_text);
  background: var(--service-tab-active-color, var(--base_color_w));
}

.service-single__title-section {
  padding: 40px 20px 20px;
  text-align: center;
}

.service-single__intro-section {
  padding: 20px;
  width: var(--content_width);
  margin: 0 auto;
  margin-bottom: 30px;
}

.service-single__intro-box {
  position: relative;
  background: var(--base_color_main);
  color: var(--base_color_w);
  padding: 30px 24px;
  border-radius: 8px;
  text-align: center;
  font-weight: bold;
  line-height: 1.8;
  clip-path: polygon(0 15px, 50% 0, 100% 15px, 100% 100%, 0 100%);
  margin-bottom: 24px;
  padding-top: 40px;
}

.service-single__intro-box p {
  font-size: 15px;
  margin: 0 0 15px;
  text-align: left;
}

@media (min-width: 768px) {
  .service-single__intro-box p {
    font-size: 16px;
    text-align: center;
  }
}

.service-single__intro-note {
  display: block;
  font-size: 15px;
  font-weight: normal;
  opacity: 0.8;
}

.service-link-banner {
  text-align: center;
}

.service-link-banner__button {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--base_color_b2);
  color: var(--base_color_w);
  text-decoration: none;
  min-width: 240px;
  padding: 12px 24px;
  border-radius: 4px;
  transition: background 0.3s;
}

.service-link-banner__button .en-btn {
  font-size: 15px;
  color: var(--base_color_yellow);
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.service-link-banner__button .jp-btn {
  font-size: 15px;
  font-weight: bold;
}

.service-single__details-section {
  padding: 0 0 45px;
  width: var(--content_width);
  margin: 0 auto;
}

@media (min-width: 768px) {
  .service-single__details-section--after-jmics {
    padding: 0 0 150px;
  }

  .service-single__detail-block {
    margin-bottom: 150px !important;
  }
}

@media (max-width: 767px) {
  .service-single__detail-block {
    margin-bottom: 100px !important;
  }
}

.service-single__block-title-wrapper {
  text-align: center;
  margin-bottom: 25px;
}

.service-single__block-title-wrapper--lower {
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .service-single__block-title-wrapper {
    margin-bottom: 45px;
  }

  .service-single__block-title-wrapper--lower {
    margin-bottom: 25px;
  }
}

.service-single__block-title-wrapper .heading-accent {
  --heading-accent-line-width: 80px;
  --heading-accent-line-height: 5px;
  --heading-accent-gap: 14px;

  font-size: clamp(18px, 1.8vw, 22px);
}

.service-single__block-lead {
  font-size: 15px;
  line-height: 1.8;
  text-align: left;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .service-single__block-lead {
    text-align: center;
  }
}

.service-single__block-highlight {
  background: var(--base_color_cream);
  border-left: 4px solid var(--base_color_yellow);
  padding: 15px 20px;
  margin-bottom: 24px;
}

.service-single__block-highlight p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  color: var(--base_color_text);
  font-weight: bold;
}

.service-single__block-image {
  margin-bottom: 24px;
  text-align: center;
}

.service-single__block-image img {
  width: 100%;
  border-radius: 4px;
}

.service-single__block-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.service-single__block-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.6;
}

.service-single__block-list li::before {
  content: "•";
  position: absolute;
  left: 5px;
  color: var(--base_color_main);
  font-size: 18px;
  top: -2px;
}

.service-single__block-summary {
  background: var(--base_color_gray);
  padding: 20px;
  border-radius: 6px;
}

.service-single__block-summary h3 {
  color: var(--base_color_sub);
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 10px;
}

.service-single__block-summary p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.service-single__kship-logo {
  text-align: center;
  margin-top: 45px;
}

.service-single__desc-section {
  background: linear-gradient(180deg, var(--base_color_main), var(--base_color_sub));
  color: var(--base_color_w);
  padding: 60px 20px;
  clip-path: polygon(0 15px, 50% 0, 100% 15px, 100% 100%, 0 100%);
}

.service-single__desc-inner {
  width: var(--content_width);
  margin: 0 auto;
}

.service-single__desc-title {
  font-size: 18px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 30px;
}

.service-single__desc-item {
  margin-bottom: 24px;
}

.service-single__desc-item h3 {
  font-size: 24px;
  font-weight: bold;
  color: var(--base_color_yellow);
  letter-spacing: .16em;
  margin-bottom: 8px;
}

.service-single__desc-item p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.service-single__desc-image {
  margin-top: 30px;
  text-align: center;
}

.service-single__desc-image img {
  width: var(--content_width);
  background: var(--base_color_w);
  padding: 10px;
  border-radius: 6px;
}

.service-single__cta-section {
  padding: 60px 20px;
  text-align: center;
  background: var(--base_color_gray);
}

.service-single__cta-lead {
  font-size: 16px;
  font-weight: 500;
  color: var(--base_color_text);
  margin-bottom: 45px;
}

@media (min-width: 768px) {
  .service-single__cta-lead {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

.service-single__cta-sp-break {
  display: none;
}

.service-single__cta-arrow {
  display: block;
  font-size: 15px;
  color: var(--base_color_gray_sub_2);
  margin-bottom: 15px;
  line-height: 1.5;
}

.button--cta {
  background: linear-gradient(135deg, var(--base_color_green_sub), var(--base_color_green));
  color: var(--base_color_w);
  padding: 14px 40px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.service-single__related-section {
  padding: 60px 20px;
  width: var(--content_width);
  margin: 0 auto;
}

.service-single__related-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--base_color_icn);
  text-align: center;
}

@media (min-width: 768px) {
  .service-single__related-title {
    font-size: 20px;
  }
}

.theme-benefit .service-single__related-title-category {
  color: #7ecef4;
}

.service-single__related-title-category {
  font-weight: 900;
}

.theme-application .service-single__related-title-category {
  color: #79c38d;
}

.theme-health .service-single__related-title-category {
  color: #ee869a;
}

.theme-bpo .service-single__related-title-category {
  color: #fdd35c;
}

.service-single__related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: min(600px, 100%);
  margin: 0 auto;
}

.service-single__related-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: var(--base_color_text);
  background: var(--base_color_w);
  border: 1px solid var(--base_color_gray);
  border-radius: 6px;
  padding: 15px;
  transition: all 0.3s;
}

.service-single__related-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-single__related-icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--base_color_main);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0px !important;
}

.service-single__related-icon-wrapper img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.service-single__related-item span {
  font-size: 15px;
  font-weight: bold;
}

.service-single__cta-section.is-motion-ready .service-single__cta-lead,
.service-single__cta-section.is-motion-ready .service-single__cta-arrow,
.service-single__cta-section.is-motion-ready .service-single__cta-btn-wrapper,
.service-single__related-section.is-motion-ready .service-single__related-item {
  opacity: 0;
  transition: opacity .95s ease;
}

.service-single__cta-section.is-motion-ready.is-visible .service-single__cta-lead,
.service-single__cta-section.is-motion-ready.is-visible .service-single__cta-arrow,
.service-single__cta-section.is-motion-ready.is-visible .service-single__cta-btn-wrapper,
.service-single__related-section.is-motion-ready.is-visible .service-single__related-item {
  opacity: 1;
}

.service-single__cta-section.is-motion-ready .service-single__cta-arrow {
  transition-delay: .18s;
}

.service-single__cta-section.is-motion-ready .service-single__cta-btn-wrapper {
  transition-delay: .34s;
}

.service-single__related-section.is-motion-ready .service-single__related-item:nth-child(1) {
  transition-delay: .12s;
}

.service-single__related-section.is-motion-ready .service-single__related-item:nth-child(2) {
  transition-delay: .28s;
}

.service-single__related-section.is-motion-ready .service-single__related-item:nth-child(3) {
  transition-delay: .44s;
}

.service-single__related-section.is-motion-ready .service-single__related-item:nth-child(4) {
  transition-delay: .6s;
}

.service-single__related-section.is-motion-ready .service-single__related-item:nth-child(5) {
  transition-delay: .76s;
}

@media (prefers-reduced-motion: reduce) {

  .service-single__cta-section.is-motion-ready .service-single__cta-lead,
  .service-single__cta-section.is-motion-ready .service-single__cta-arrow,
  .service-single__cta-section.is-motion-ready .service-single__cta-btn-wrapper,
  .service-single__related-section.is-motion-ready .service-single__related-item {
    opacity: 1;
    transition: none;
  }
}

/* ==========================================================================
   Responsive (PC Version / Media Queries)
   ========================================================================== */
@media (min-width: 768px) {
  .service-breadcrumb__inner {
    font-size: 15px;
  }

  .service-archive__fv {
    height: 380px;
  }

  .service-archive__fv-inner {
    padding: 0 40px;
  }

  .service-archive__fv-badge {
    padding: 15px 30px;
  }

  .service-archive__fv-number {
    font-size: 26px;
  }

  .service-archive__fv-title {
    font-size: 32px;
  }

  .service-archive__tabs-nav {
    padding: 15px 0;
  }

  .service-archive__tabs {
    width: var(--content_width);
    margin: 0 auto;
    padding: 0 40px;
    gap: 12px;
  }

  .service-archive__tab-item a {
    font-size: 15px;
    padding: 12px 10px;
  }

  .service-archive__lead-section {
    padding: 60px 40px;
  }

  .service-archive__lead-text {
    font-size: 18px;
  }

  .service-archive__intro-section {
    padding-bottom: 60px;
  }

  .service-archive__icons-grid {
    grid-template-columns: repeat(5, 1fr);
    width: min(800px, var(--content_width));
  }

  .service-archive__icons-grid--2 {
    grid-template-columns: repeat(2, 92px);
    justify-content: center;
  }

  .service-archive__icons-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 92px));
    justify-content: center;
  }

  .service-archive__icons-grid--4 {
    grid-template-columns: repeat(4, minmax(0, 92px));
    justify-content: center;
  }

  .service-archive__icons-grid--5 {
    grid-template-columns: repeat(5, minmax(0, 92px));
    justify-content: center;
  }

  .service-archive__icon-item {
    font-size: 15px;
  }

  .service-archive__icon-item img {
    width: 64px;
    height: 64px;
  }

  .service-archive__jmics-lead {
    font-size: 18px;
  }

  .service-archive__diagram-sp {
    display: none;
  }

  .service-archive__diagram-pc {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
  }

  .service-archive__diagram-pc-center img {
    width: min(320px, 100%);
  }

  .service-archive-card {
    flex-direction: row;
    align-items: center;
    text-align: left;
    padding: 30px;
    gap: 24px;
  }

  .service-archive-card__icon-box {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .service-archive-card__body {
    flex: 1;
  }

  .service-archive-card__body h3 {
    font-size: 20px;
  }

  .service-archive-card__body p {
    font-size: 15px;
  }

  .service-archive-card__action {
    margin-top: 0;
  }

  .service-single__fv {
    height: 320px;
  }

  .service-single__fv-inner {
    padding: 40px;
  }

  .service-single__fv-info {
    padding: 24px 30px;
  }

  .service-single__fv-info .category-lead {
    font-size: 15px;
  }

  .service-single__tabs {
    width: var(--content_width);
    margin: 0 auto;
    padding: 0 40px;
    gap: 12px;
  }

  .service-single__tab-item a {
    font-size: 15px;
    padding: 12px 10px;
  }

  .service-single__intro-box p {
    font-size: 18px;
  }

  .service-single__block-lead {
    font-size: 16px;
  }

  .service-single__block-list li {
    font-size: 15px;
  }

  .service-single__desc-title {
    font-size: 24px;
  }

  .service-single__desc-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
  }

  .service-single__desc-image {
    margin-top: 0;
  }

  .service-single__related-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 800px;
  }
}

/* ==========================================================================
   Service Pages Refinement
   ========================================================================== */
.service-archive,
.service-single {
  --service-single-section-space: 100px;

  overflow-x: clip;
  background: #fff;
}

@media (min-width: 768px) {
  .service-single {
    --service-single-section-space: 80px;
  }
}

.service-breadcrumb {
  padding: 20px 0 0;
  background: #fff;
}

.service-breadcrumb__inner {
  width: var(--content_width);
  max-width: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 8px;
  color: #9b9b9b;
  font-size: 15px;
  line-height: 1.6;
}

.service-breadcrumb__inner a {
  color: var(--base_color_main);
  text-decoration: none;
}

.service-breadcrumb__inner span {
  color: inherit;
}

.service-archive__fv {
  position: relative;
  height: calc(100svh - 256.8px);
  align-items: flex-end;
  background-image: var(--service-archive-fv-image-pc);
  background-position: center;
}

.lower-fv-logopart {
  position: absolute;
  top: clamp(18px, 3.2vw, 42px);
  right: clamp(8px, 2.2vw, 34px);
  z-index: 1;
  display: block;
  width: clamp(250px, 24vw, 380px);
  height: auto;
  max-width: none;
  aspect-ratio: auto;
  object-fit: contain;
  opacity: .5;
  pointer-events: none;
}

.contact-hero .lower-fv-logopart,
.recruit-page__hero .lower-fv-logopart {
  width: clamp(250px, 24vw, 380px);
  height: auto;
}

@media (min-width: 768px) and (max-width: 1360px) {
  .service-archive__fv {
    height: clamp(400px, calc(100svh - 340px), 600px);
  }
}

.service-archive__fv-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0;
}

.service-archive__fv-badge {
  position: absolute;
  right: 0;
  bottom: 10px;
  min-width: min(48vw, 600px);
  min-height: 125px;
  padding: 14px 34px 14px 85px;
  color: #fff;
  background: transparent;
  overflow: visible;
  clip-path: none;
  isolation: isolate;
}

@media (min-width: 768px) and (max-width: 1360px) {
  .service-archive__fv-badge {
    bottom: 120px;
    min-height: clamp(76px, 8.2vw, 104px);
    padding: clamp(10px, 1.35vw, 14px) clamp(24px, 2.5vw, 34px) clamp(10px, 1.35vw, 14px) clamp(58px, 6vw, 76px);
  }
}

.service-archive__fv-badge::before,
.service-archive__fv-badge::after {
  position: absolute;
  inset: 0;
  content: "";
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
}

.service-archive__fv-badge::before {
  z-index: 0;
  background: rgba(91, 99, 96, 0.58);
  transform: translate(10px, 10px);
}

.service-archive__fv-badge::after {
  z-index: 1;
  background: var(--service-category-color, var(--base_color_main));
}

.theme-benefit .service-archive__fv-badge::after {
  background: #7ecef4;
}

.theme-application .service-archive__fv-badge::after {
  background: #79c38d;
}

.theme-health .service-archive__fv-badge::after {
  background: #ee869a;
}

.theme-bpo .service-archive__fv-badge::after {
  background: #fdd35c;
}

.service-archive__fv-number,
.service-archive__fv-title {
  position: relative;
  z-index: 2;
  color: #fff;
  font-weight: 700;
  text-shadow: 1.4071px 1.4071px 0 rgba(0, 44, 96, 0.72);
  letter-spacing: .1em;
}

.service-archive__fv-number {
  font-size: clamp(22px, 3.2vw, 32px);
}

@media (min-width: 768px) and (max-width: 1360px) {
  .service-archive__fv-number {
    font-size: clamp(20px, 2.5vw, 28px);
  }

  .service-archive__fv-title {
    font-size: clamp(26px, 3.1vw, 34px);
    line-height: 1.16;
  }
}

.service-archive__fv-seminar::after {
  background: var(#fff);
  -webkit-mask:
    linear-gradient(#000, #000) left center / calc(100% - 16px) 1px no-repeat,
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 8'%3E%3Cpath fill='%23000' d='M0 0L16 4L0 8Z'/%3E%3C/svg%3E") right center / 16px 8px no-repeat;
  mask:
    linear-gradient(#000, #000) left center / calc(100% - 16px) 1px no-repeat,
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 8'%3E%3Cpath fill='%23000' d='M0 0L16 4L0 8Z'/%3E%3C/svg%3E") right center / 16px 8px no-repeat;
}

.theme-benefit {
  --service-archive-seminar-arrow-color: #7ecef4;
}

.theme-application {
  --service-archive-seminar-arrow-color: #79c38d;
}

.theme-health {
  --service-archive-seminar-arrow-color: #ee869a;
}

.theme-bpo {
  --service-archive-seminar-arrow-color: #fdd35c;
}

.service-archive__tabs-nav {
  padding: 0;
  background: #54504f;
}

.service-single__tabs-nav {
  padding: 0;
  background: var(--base_color_main);
}

.service-archive__tabs,
.service-single__tabs {
  width: 100%;
  max-width: 1360px;
  gap: 0;
  padding: 0;
}

.service-archive__tab-item,
.service-single__tab-item {
  min-width: 148px;
}

.service-archive__tab-item a,
.service-single__tab-item a {
  min-height: 58px;
  padding: 18px 12px;
  color: #fff;
  font-size: 15px;
  letter-spacing: .04em;
  background: transparent;
  border-right: 1px solid rgba(255, 255, 255, .35);
  border-radius: 0;
}

.service-archive__tab-item a,
.service-single__tab-item a {
  min-height: 68px;
  padding: 23px 12px;
  font-weight: 900;
  border-bottom: 1px solid rgba(255, 255, 255, .35);
}

@media (min-width: 769px) {

  .service-archive__tab-item a,
  .service-single__tab-item a {
    border-bottom: 0;
  }
}

.service-archive__tab-item.is-active a,
.service-single__tab-item.is-active a {
  color: var(--base_color_b2);
  background: var(--service-tab-active-color, #c8f0ff);
}

.service-archive__lead-section {
  display: none;
}

.service-archive__intro-section,
.service-single__title-section {
  position: relative;
  padding: 62px 20px 48px;
}

.service-archive__intro-section {
  background: #fff url("../images/common/wave.webp") center bottom / cover no-repeat;
}

.service-single__title-section .section-heading {
  margin: 0;
}

.service-archive__icons-grid {
  gap: 28px;
  max-width: 720px;
}

.service-archive__icon-item {
  display: grid;
  justify-items: center;
  text-align: center;
  color: #005381;
  font-size: 15px;
  line-height: 1.35;
  transition: color .2s ease, transform .2s ease;
}

a.service-archive__icon-item:hover,
a.service-archive__icon-item:focus-visible {
  color: #00AFEC;
  transform: scale(1.06);
}

a.service-archive__icon-item:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 8px;
}

.service-archive__icon-item img {
  transition: filter .2s ease, opacity .2s ease;
}

a.service-archive__icon-item:hover img,
a.service-archive__icon-item:focus-visible img {
  filter: none;
}

.service-archive__icon-item img,
.service-archive__icon-item .service-archive__icon-image,
.service-archive__icon-item .service-card__icon-wrapper {
  width: 68px;
  height: 68px;
}

.service-archive__icon-image {
  position: relative;
  display: block;
  margin-bottom: 8px;
}

.service-archive__icon-image img {
  position: absolute;
  inset: 0;
  margin-bottom: 0;
}

.service-single__related-icon-wrapper .service-archive__icon-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  object-fit: contain;
}

.service-archive__icon-img--dark {
  opacity: 1;
}

.service-archive__icon-img--light {
  opacity: 0;
}

.service-archive__icon-item:hover .service-archive__icon-img--dark,
.service-archive__icon-item:focus-visible .service-archive__icon-img--dark,
.service-archive__icon-item:focus-within .service-archive__icon-img--dark {
  opacity: 0;
}

.service-archive__icon-item:hover .service-archive__icon-img--light,
.service-archive__icon-item:focus-visible .service-archive__icon-img--light,
.service-archive__icon-item:focus-within .service-archive__icon-img--light {
  opacity: 1;
}

.intro-movie--service {
  display: grid;
  justify-items: center;
  padding-top: 50px;
  background: none;
}

.intro-movie--service .intro-movie__note {
  align-items: initial;
  text-align: center;
}

.intro-movie--service .intro-movie__note small {
  font-family: inherit;
  font-style: normal;
}

.service-archive__jmics-section {
  width: var(--content_width);
  max-width: none;
  padding: 18px 0 0px;
}

.service-archive__jmics-lead {
  width: min(920px, 100%);
  margin: 0 auto 40px;
  color: var(--base_color_sub);
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 900;
  line-height: 1.55;
  text-shadow: 2px 2px 0 rgba(249, 235, 44, .9);
}

@media (min-width: 768px) {
  .service-archive__jmics-lead {
    margin: 0 auto 100px;
  }
}

.service-archive__diagram-pc {
  display: block;
}

.service-archive__diagram-pc-left,
.service-archive__diagram-pc-right {
  display: none;
}

.service-archive__diagram-pc-center img {
  width: min(1050px, 100%);
  max-width: none;
  margin: 0 auto;
}

.service-archive__jmics-sp-list {
  display: none;
}

.service-archive__divider {
  margin: 100px 0 45px !important;
  color: #5AAB6B;
  font-size: clamp(22px, 4vw, 38px);
  font-weight: 500;
  letter-spacing: .2em;
}

.service-archive__list-section {
  padding: 0;
  background: var(--base_color_green);
}

.service-archive__list-container {
  max-width: none;
  gap: 0;
}

.service-archive-card {
  display: grid;
  grid-template-columns: 186px minmax(180px, 300px) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 44px);
  align-items: center;
  width: 100%;
  min-height: 244px;
  padding: 44px max(28px, calc((100vw - var(--content_width_pc)) / 2));
  color: #fff;
  text-align: left;
  background: #54b574;
  border-radius: 0;
  box-shadow: none;
}

.service-archive-card:nth-child(even) {
  background: #8DC16B;
}

.service-archive-card__icon-box {
  position: relative;
  width: 184px;
  height: 184px;
  margin: 0 auto;
  background: transparent;
  border-radius: 50%;
  filter: drop-shadow(0 0 18px rgba(255, 255, 255, .95)) drop-shadow(0 0 20px rgba(0, 175, 236, .76));
  transition: filter .2s ease, transform .2s ease;
}

.service-archive-card__icon-box::after {
  position: absolute;
  inset: 24%;
  content: "";
  background: rgba(0, 83, 129, 0);
  border-radius: 50%;
  mix-blend-mode: soft-light;
  pointer-events: none;
  transition: background-color .2s ease;
}

.service-archive-card__icon-box:hover,
.service-archive-card__icon-box:focus-visible,
.service-archive-card__icon-box:focus-within {
  filter: brightness(1.04) drop-shadow(0 0 24px rgba(255, 255, 255, .98)) drop-shadow(0 0 28px rgba(0, 175, 236, .88));
  transform: scale(1.04);
}

.service-archive-card__icon-box:hover::after,
.service-archive-card__icon-box:focus-visible::after,
.service-archive-card__icon-box:focus-within::after {
  background: rgba(0, 83, 129, .28);
}

.service-archive-card__icon-box img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity .2s ease;
}

.service-archive-card__icon-img--light {
  opacity: 1;
}

.service-archive-card__icon-img--dark {
  opacity: 0;
}

.service-archive-card__icon-box:hover .service-archive-card__icon-img--light,
.service-archive-card__icon-box:focus-visible .service-archive-card__icon-img--light,
.service-archive-card__icon-box:focus-within .service-archive-card__icon-img--light {
  opacity: 0;
}

.service-archive-card__icon-box:hover .service-archive-card__icon-img--dark,
.service-archive-card__icon-box:focus-visible .service-archive-card__icon-img--dark,
.service-archive-card__icon-box:focus-within .service-archive-card__icon-img--dark {
  opacity: 1;
}

.service-archive-card__icon-box--ibss .service-archive-card__icon-img--light {
  opacity: 0;
}

.service-archive-card__icon-box--ibss .service-archive-card__icon-img--dark {
  opacity: 1;
}

.service-archive-card__icon-box--ibss:hover .service-archive-card__icon-img--light,
.service-archive-card__icon-box--ibss:focus-visible .service-archive-card__icon-img--light,
.service-archive-card__icon-box--ibss:focus-within .service-archive-card__icon-img--light {
  opacity: 1;
}

.service-archive-card__icon-box--ibss:hover .service-archive-card__icon-img--dark,
.service-archive-card__icon-box--ibss:focus-visible .service-archive-card__icon-img--dark,
.service-archive-card__icon-box--ibss:focus-within .service-archive-card__icon-img--dark {
  opacity: 0;
}

.service-archive-card__icon-box--ibss .service-archive-card__icon-arrow {
  position: absolute;
  inset: auto;
  top: 12px;
  right: 8px;
  z-index: 2;
  width: 48px;
  height: 48px;
  object-fit: contain;
  transition: opacity .2s ease;
}

.service-archive-card__icon-box--ibss .ibss-hover-card__url {
  top: 15px;
}

.service-archive-card__icon-box--ibss .ibss-hover-card__bubble {
  top: 102px;
}

.service-archive-card__icon-box--ibss .service-archive-card__icon-arrow--dark {
  opacity: 1;
}

.service-archive-card__icon-box--ibss .service-archive-card__icon-arrow--light {
  opacity: 0;
}

.service-archive-card__icon-box--ibss:hover .service-archive-card__icon-arrow--dark,
.service-archive-card__icon-box--ibss:focus-visible .service-archive-card__icon-arrow--dark,
.service-archive-card__icon-box--ibss:focus-within .service-archive-card__icon-arrow--dark {
  opacity: 0;
}

.service-archive-card__icon-box--ibss:hover .service-archive-card__icon-arrow--light,
.service-archive-card__icon-box--ibss:focus-visible .service-archive-card__icon-arrow--light,
.service-archive-card__icon-box--ibss:focus-within .service-archive-card__icon-arrow--light {
  opacity: 1;
}

.service-archive-card__body {
  display: contents;
}

.service-archive-card__body h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(24px, 2.4vw, 30px);
  font-weight: 800;
  line-height: 1.35;
  text-shadow: 2px 2px 0 rgba(0, 83, 129, .35);
}

.service-archive-card__body p {
  position: relative;
  margin: 0;
  padding-left: 34px;
  color: #fff;
  font-size: clamp(15px, 1.35vw, 17px);
  font-weight: 500;
  line-height: 1.85;
  border-left: 4px solid rgba(255, 255, 255, .92);
  text-shadow: 1px 1px 0 rgba(0, 83, 129, .18);
}

.service-archive-card__action {
  display: none;
}

.service-archive__bottom-cta {
  padding: 78px 20px 58px;
  background: #fff;
}

.service-archive__bottom-cta-inner .logo-kship {
  width: 70px;
  max-height: none;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 768px) {

  .service-archive__bottom-cta-inner .logo-kship {
    width: 150px;
  }
}

.service-archive__bottom-cta-inner .cta-message {
  color: var(--base_color_sub);
  font-size: clamp(19px, 2.6vw, 28px);
  font-weight: 900;
  line-height: 1.45;
  text-shadow: 2px 2px 0 var(--base_color_yellow);
}

.service-page-nav {
  width: var(--content_width);
  justify-content: center;
  margin: 30px auto 72px;
  padding: 0;
}

.service-page-nav__pagetop {
  width: 180px;
  height: 28px;
  font-size: 15px;
  border-radius: 999px;
}

.service-single__fv {
  --service-single-filter-header-offset: 84px;

  position: relative;
  height: calc(100svh - 256.8px);
  background-image: var(--service-single-fv-image-sp, var(--service-single-fv-image-pc));
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: visible;
}

@media (min-width: 768px) {
  .service-single__fv {
    background-image: var(--service-single-fv-image-pc);
  }
}

@media (min-width: 1024px) {
  .service-single__fv {
    --service-single-filter-header-offset: 100px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .service-single__fv {
    height: clamp(400px, calc(100svh - 340px), 600px);
  }
}

.service-single__fv::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background: rgba(0, 98, 177, .35);
}

.service-single__fv::after {
  position: absolute;
  top: calc(var(--service-single-filter-header-offset) * -1);
  right: 0;
  left: 0;
  z-index: 1;
  height: calc(100% + var(--service-single-filter-header-offset));
  content: "";
  background: url("../images/service/detail/common/hero-filter.png") center top / 100% 100% no-repeat;
  pointer-events: none;
}

.service-single__fv-deco {
  position: absolute;
  top: 20px;
  left: 0;
  z-index: 2;
  height: calc(100% - 4px);
  aspect-ratio: 1007 / 999;
  background: url("../images/service/detail/common/hero-deco.png") center / contain no-repeat;
  opacity: .55;
  pointer-events: none;
  transform: translateX(-70%);
}

.service-single__fv-en {
  position: absolute;
  top: clamp(26px, 5vw, 58px);
  left: max(24px, min(7vw, 120px));
  right: auto;
  z-index: 3;
  width: min(1320px, calc(100% - max(24px, min(7vw, 120px)) - 24px));
  margin: 0;
  color: rgba(255, 255, 255, .28);
  font-family: var(--font_jp);
  font-size: clamp(44px, 7.8vw, 112px);
  font-weight: 900;
  line-height: .9;
  letter-spacing: .02em;
  text-align: left;
  white-space: pre-wrap;
  overflow-wrap: normal;
  transform: translateX(clamp(-80px, -4vw, -24px));
  pointer-events: none;
}

.service-single__fv-inner {
  position: relative;
  z-index: 4;
  width: 100%;
  padding: 0 0 20px;
}

.service-single__fv-info {
  position: relative;
  width: clamp(560px, 58vw, 720px);
  margin-left: auto;
  padding: 30px clamp(28px, 4vw, 56px) 28px clamp(30px, 3.8vw, 52px);
  color: #fff;
  background: rgba(35, 28, 27, .9);
  border: 1px solid rgba(255, 255, 255, .68);
  border-radius: 28px 0 0 0;
  box-shadow:
    inset 0 0 24px rgba(0, 0, 0, .38);
  backdrop-filter: blur(1px);
  animation: serviceSingleFvInfoFadeIn .9s .55s cubic-bezier(.16, 1, .3, 1) both;
  overflow: hidden;
}

@keyframes serviceSingleFvInfoFadeIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-single__fv-info {
    animation: none;
  }
}

.service-single__fv-info::before {
  position: absolute;
  inset: 0;
  content: "";
  border-radius: inherit;
  box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.8);
  pointer-events: none;
}

.service-single__fv-info--sp {
  display: none;
}

.service-single__fv-info .category-name {
  display: block;
  margin: 0 0 16px;
  padding: 0;
  color: var(--service-single-category-color, #9ce7df);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.35;
  background: transparent;
  overflow-wrap: anywhere;
}

.service-single__fv-info .category-lead {
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

@media (min-width: 768px) {
  .service-single__fv-info .category-name {
    font-size: 22px;
  }

  .service-single__fv-info .category-lead {
    font-size: 18px;
  }
}

.service-single__intro-section {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  background: #fff;
}

.service-single__intro-section::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: calc(100% - 36px);
  background: linear-gradient(180deg, #54C3F1 15%, #4894CB 100%);
  clip-path: ellipse(82% 100% at 50% 100%);
  content: "";
}

.service-single__intro-section.is-motion-ready::before {
  opacity: 0;
  transform: translateY(64px) scaleY(.92);
  transform-origin: 50% 100%;
  transition:
    opacity .62s ease,
    transform .82s cubic-bezier(.22, 1, .36, 1);
}

.service-single__intro-section.is-motion-ready.is-visible::before {
  opacity: 1;
  transform: translateY(0) scaleY(1);
}

.service-single__intro-section:has(.service-link-banner) {
  overflow: visible;
}

.service-single__intro-section:has(.service-link-banner)::before {
  height: calc(100% - 86px);
}

.service-single__intro-box {
  position: relative;
  z-index: 1;
  width: min(860px, var(--content_width));
  margin: 0 auto 36px;
  padding: 78px 0 70px;
  color: #fff;
  background: transparent;
  border-radius: 0;
  clip-path: none;
}

.service-single__intro-box p {
  width: min(1000px, 100%);
  margin: 0 auto 18px;
  font-size: clamp(17px, calc(13px + .42vw), 20px);
  font-weight: 500;
  line-height: 1.9;
}

.service-single__intro-section.is-motion-ready .service-single__intro-box p,
.service-single__intro-section.is-motion-ready .service-single__intro-note {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity .58s ease,
    transform .72s cubic-bezier(.22, 1, .36, 1);
}

.service-single__intro-section.is-motion-ready.is-visible .service-single__intro-box p,
.service-single__intro-section.is-motion-ready.is-visible .service-single__intro-note {
  opacity: 1;
  transform: translateY(0);
}

.service-single__intro-section.is-motion-ready.is-visible .service-single__intro-box p {
  transition-delay: .32s;
}

.service-single__intro-section.is-motion-ready.is-visible .service-single__intro-note {
  transition-delay: .46s;
}

.service-single__intro-note {
  display: block;
  margin-top: 52px;
  color: var(--base_color_sub);
  font-size: 15px;
  background: transparent;
  text-shadow:
    0 0 3px rgba(255, 255, 255, .95),
    0 0 8px rgba(255, 255, 255, .9),
    0 0 14px rgba(255, 255, 255, .75);
  opacity: 1;
  font-weight: 700;
}

@media (prefers-reduced-motion: reduce) {

  .service-single__intro-section.is-motion-ready::before,
  .service-single__intro-section.is-motion-ready .service-single__intro-box p,
  .service-single__intro-section.is-motion-ready .service-single__intro-note {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.service-link-banner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 44.4%;
  width: 100%;
  min-height: 54px;
  background: #9ae1f0;
  box-shadow: 0 7px 5px rgba(62, 58, 57, .35);
}

@media (min-width: 768px) {
  .service-link-banner {
    border-top: 36px solid #fff;
  }

  .service-list-banner.service-link-banner {
    box-shadow: 0 7px 5px rgba(62, 58, 57, .35);
  }
}

.service-link-banner::before,
.service-link-banner__lead {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--base_color_main);
  font-family: "Orator Std", "Courier New", monospace;
  font-size: 18px;
  font-style: italic;
  font-weight: 700;
  letter-spacing: .08em;
  content: "What's JMICS?";
  animation: serviceLinkBannerLeadFadeIn 1.15s .3s ease-out both;
}

.service-link-banner:has(.service-link-banner__lead)::before {
  display: none;
}

.service-link-banner__lead strong {
  display: inline-block;
  margin-left: .5em;
  font-family: inherit;
  font-weight: 900;
  -webkit-text-stroke: .35px currentColor;
  text-shadow: .2px 0 currentColor, -.2px 0 currentColor;
}

.service-link-banner__button {
  --service-link-arrow-head-width: 16px;
  --service-link-arrow-head-height: 8px;
  --service-link-arrow-shift: 22px;
  --service-link-hover-shift: 12px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
  min-height: 54px;
  padding: 8px 36px 8px 54px;
  background: transparent;
  border-radius: 0;
  clip-path: none;
  color: #fff;
  filter: none;
  font-size: 15px;
  font-weight: 700;
  isolation: isolate;
  letter-spacing: .08em;
  text-decoration: none;
  transition:
    filter .35s ease,
    transform .45s cubic-bezier(.22, .61, .36, 1);
}

.service-link-banner__button::before,
.service-link-banner__button::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.service-link-banner__button::before {
  inset: 0;
  z-index: 0;
  background: var(--base_color_b2);
  clip-path: polygon(18px 0, 100% 0, 100% 100%, 0 100%);
  filter: drop-shadow(6px 7px 5px rgba(62, 58, 57, .35)) drop-shadow(0 12px 8px rgba(62, 58, 57, .18));
}

.service-link-banner__button::after {
  display: none;
}

.service-link-banner__button .en-btn {
  display: none;
}

.service-link-banner__button .jp-btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 100%;
  line-height: 1;
  white-space: nowrap;
  transition: transform .45s cubic-bezier(.22, .61, .36, 1);
}

.service-link-banner__button .jp-btn::before,
.service-link-banner__button .jp-btn::after {
  flex: 0 0 auto;
  content: "";
  pointer-events: none;
  transition: transform .45s cubic-bezier(.22, .61, .36, 1);
}

.service-link-banner__button .jp-btn::before {
  width: 32px;
  height: 1px;
  background: #fff;
}

.service-link-banner__button .jp-btn::after {
  width: 48px;
  height: 8px;
  background:
    linear-gradient(#fff, #fff) left bottom / calc(100% - var(--service-link-arrow-head-width)) 1px no-repeat,
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 8'%3E%3Cpath fill='%23fff' d='M0 0L16 8H0Z'/%3E%3C/svg%3E") right bottom / var(--service-link-arrow-head-width) var(--service-link-arrow-head-height) no-repeat;
  transform: translateY(calc(-50% + .5px));
}

.service-link-banner__button .jp-btn b,
.service-link-banner__button .jp-btn>span {
  color: var(--base_color_yellow);
  font-family: "Orator Std", "Courier New", monospace;
  font-size: 19px;
  letter-spacing: .32em;
  margin-right: calc(-.32em - 12px);
  margin-top: 4px;
  font-weight: inherit;
}

.service-list-banner.service-link-banner::before {
  content: "Click here for the SERVICE LIST page.";
}

.service-list-banner.service-link-banner .service-link-banner__lead {
  gap: .48em;
  box-sizing: border-box;
  padding: 0 14px;
  font-size: clamp(13px, 1.35vw, 18px);
  font-style: italic;
  font-weight: 400;
  letter-spacing: .08em;
  white-space: nowrap;
}

.service-list-banner.service-link-banner .service-link-banner__lead strong {
  font-style: italic;
  margin: 0;
}

.service-list-banner.service-link-banner {
  overflow: visible;
}

.service:has(.service-list-banner.service-link-banner) {
  position: relative;
  z-index: 2;
  overflow: visible;
}

.service-list-banner .service-link-banner__button .jp-btn b {
  letter-spacing: .08em;
}

@keyframes serviceLinkBannerLeadFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (hover: hover) {

  .service-link-banner__button:is(:hover, :focus-visible) {
    transform: translateX(12px);
  }

  .seminar-cta:is(:hover, :focus-visible) {
    transform: translateX(calc(var(--seminar-cta-hover-shift) * -1));
  }

  .service-link-banner__button:is(:hover, :focus-visible)::before {
    filter: drop-shadow(8px 9px 6px rgba(62, 58, 57, .38)) drop-shadow(0 15px 9px rgba(62, 58, 57, .2));
  }

  .seminar-cta-stage:has(.seminar-cta:is(:hover, :focus-visible)) {
    --fv-seminar-shadow-x: -5px;
  }

  .seminar-cta:is(:hover, :focus-visible)::before {
    transform: translateX(var(--seminar-cta-arrow-shift));
  }

  .seminar-cta:is(:hover, :focus-visible)::after {
    transform: translateX(var(--seminar-cta-arrow-shift));
  }

  .seminar-cta:is(:hover, :focus-visible) .jp-btn {
    transform: translateX(var(--seminar-cta-arrow-shift));
  }
}

@media (hover: hover) and (max-width: 767px) {

  .service-link-banner__button:is(:hover, :focus-visible) {
    --service-link-arrow-shift: 14px;
    --service-link-hover-shift: 6px;
    transform: translateX(6px);
  }

  .seminar-cta:is(:hover, :focus-visible) {
    transform: translateX(calc(var(--seminar-cta-hover-shift) * -.5));
  }

  .seminar-cta-stage:has(.seminar-cta:is(:hover, :focus-visible)) {
    --fv-seminar-shadow-x: 1px;
  }

  .seminar-cta:is(:hover, :focus-visible)::before {
    transform: translateX(var(--seminar-cta-arrow-shift));
  }

  .seminar-cta:is(:hover, :focus-visible) .jp-btn {
    transform: translateX(var(--seminar-cta-arrow-shift));
  }
}

.service-single__details-section {
  width: var(--content_width);
}

.service-single__detail-block {
  margin-bottom: 0;
}

.service-single__detail-block--overview {
  margin-bottom: 0;
}

.service-single__detail-block--overview .service-single__block-content {
  width: 100%;
  margin: 0 auto;
}

.service-single__block-lead {
  color: var(--base_color_main);
  font-size: clamp(17px, 1.65vw, 21px);
  font-weight: 900;
  line-height: 1.95;
  text-shadow: 1.5px 1.5px 0 rgba(249, 235, 44, .72);
}

.service-single__detail-block--overview .service-single__block-lead {
  width: 100%;
  margin-bottom: 0;
  color: var(--base_color_gray_sub_2);
  font-size: clamp(17px, 1.65vw, 21px);
  line-height: 1.9;
  text-shadow: none;
}

.service-single__detail-block--overview {
  font-size: clamp(15px, 1.32vw, 18px);
}

.service-single__block-highlight {
  padding: 8px 10px;
  margin: 74px 0 28px;
  text-align: center;
  background: transparent;
  border: 0;
}

.service-single__block-highlight p {
  color: var(--base_color_main);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.9;
  text-shadow: 1.5px 1.5px 0 rgba(249, 235, 44, .72);
}

.service-single__block-image img {
  width: min(650px, 100%);
  margin: 0 auto;
  border-radius: 0;
}

.service-single__detail-block--visual .service-single__block-image {
  margin: 20px auto 0;
}

.service-single__detail-block--visual .service-single__block-image img {
  width: 100%;
}

.service-single__detail-block--gradient-strengths {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, 310px) clamp(720px, 55vw, 800px);
  grid-template-rows: auto 1fr;
  column-gap: 28px;
  align-items: center;
  width: 100vw;
  min-height: 780px;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding: 76px max(20px, calc((100vw - 1120px) / 2)) 86px;
  color: var(--base_color_sub);
  background: url("../images/service/detail/common/service-gradient-bg.webp") center top / 100% 100% no-repeat;
  overflow: hidden;
}

.service-single__detail-block--gradient-strengths::before {
  position: absolute;
  bottom: 76px;
  left: max(170px, calc((100vw - 1120px) / 2 + 58px));
  z-index: 2;
  width: clamp(190px, 19vw, 235px);
  aspect-ratio: 972 / 1132;
  content: "";
  background: url("../images/service/detail/common/strengths-person.png") center / contain no-repeat;
}

.service-single__detail-block--gradient-strengths::after {
  content: none;
}

.service-single__detail-block--gradient-strengths .service-single__block-title-wrapper,
.service-single__detail-block--gradient-strengths .service-single__points-grid {
  position: relative;
  z-index: 3;
}

.service-single__detail-block--gradient-strengths .service-single__block-title-wrapper {
  grid-column: 1 / -1;
  align-self: start;
  margin: 0;
}

.service-single__detail-block--gradient-strengths .service-single__block-title-wrapper::before {
  position: absolute;
  top: 50px;
  left: 0;
  width: 250px;
  aspect-ratio: 301 / 58;
  content: "";
  background: url("../images/common/kship-horizontal-white.png") center / contain no-repeat;
  opacity: .5;
}

.service-single__detail-block--gradient-strengths .heading-accent {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.service-single__points-badge {
  display: none;
}

.service-single__detail-block--gradient-strengths .service-single__points-badge {
  position: relative;
  grid-column: 2;
  grid-row: 2;
  justify-self: start;
  align-self: center;
  z-index: 4;
  display: block;
  width: clamp(190px, 20vw, 270px);
  margin: 0;
  transform: translateX(-68%);
}

.service-single__detail-block--gradient-strengths .service-single__points-badge::before {
  content: none;
}

.service-single__detail-block--gradient-strengths .service-single__points-badge img {
  display: block;
  width: 100%;
  height: auto;
}

.service-single__detail-block--gradient-strengths .service-single__points-grid {
  --strengths-circle-size: clamp(720px, 55vw, 800px);
  --strengths-outline-size: calc(var(--strengths-circle-size) + 56px);

  position: relative;
  grid-column: 2;
  grid-row: 2;
  justify-self: end;
  z-index: 3;
  display: grid;
  align-content: center;
  width: var(--strengths-circle-size);
  height: var(--strengths-circle-size);
  aspect-ratio: 1 / 1;
  box-sizing: border-box;
  padding: clamp(72px, 4.8vw, 90px);
  gap: 10px;
  margin: 0;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(255, 255, 255, .48);
  border-radius: 50%;
  box-shadow: 0 0 26px rgba(255, 255, 255, .9), inset 0 0 24px rgba(44, 144, 202, .16);
}

.service-single__detail-block--gradient-strengths .service-single__points-grid::before {
  position: absolute;
  top: 50%;
  left: calc(50% - 20px);
  z-index: -1;
  width: var(--strengths-outline-size);
  height: var(--strengths-outline-size);
  content: "";
  border: 1px solid rgba(255, 255, 255, .62);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.service-single__detail-block--gradient-strengths.is-motion-ready::before,
.service-single__detail-block--gradient-strengths.is-motion-ready .service-single__points-badge,
.service-single__detail-block--gradient-strengths.is-motion-ready .service-single__points-grid {
  opacity: 0;
  will-change: opacity, transform, filter;
}

.service-single__detail-block--gradient-strengths.is-motion-ready::before {
  transform: translateY(58px) scale(.9);
  filter: blur(8px);
}

.service-single__detail-block--gradient-strengths.is-motion-ready .service-single__points-grid {
  transform: translateY(42px) scale(.88);
  filter: blur(8px);
}

.service-single__detail-block--gradient-strengths.is-motion-ready .service-single__points-badge {
  transform: translateX(-68%) translateY(46px) scale(.72) rotate(-12deg);
  filter: blur(8px);
}

.service-single__detail-block--gradient-strengths.is-motion-ready.is-visible::before,
.service-single__detail-block--gradient-strengths.is-motion-ready.is-visible .service-single__points-badge,
.service-single__detail-block--gradient-strengths.is-motion-ready.is-visible .service-single__points-grid {
  opacity: 1;
  filter: blur(0);
}

.service-single__detail-block--gradient-strengths.is-motion-ready.is-visible::before {
  transform: translateY(0) scale(1);
}

.service-single__detail-block--gradient-strengths.is-motion-ready.is-visible .service-single__points-grid {
  transform: translateY(0) scale(1);
}

.service-single__detail-block--gradient-strengths.is-motion-ready.is-visible .service-single__points-badge {
  transform: translateX(-68%) translateY(0) scale(1) rotate(0);
}

.service-single__detail-block--gradient-strengths.is-motion-ready.is-visible .service-single__points-grid {
  animation: serviceStrengthsCircleIn .86s cubic-bezier(.22, 1, .36, 1) both;
}

.service-single__detail-block--gradient-strengths.is-motion-ready.is-visible .service-single__points-badge {
  animation: serviceStrengthsBadgeIn .78s .48s cubic-bezier(.22, 1, .36, 1) both;
}

.service-single__detail-block--gradient-strengths.is-motion-ready.is-visible::before {
  animation: serviceStrengthsPersonIn .86s 1s cubic-bezier(.22, 1, .36, 1) both;
}

@keyframes serviceStrengthsCircleIn {
  from {
    opacity: 0;
    transform: translateY(42px) scale(.88);
    filter: blur(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes serviceStrengthsBadgeIn {
  from {
    opacity: 0;
    transform: translateX(-68%) translateY(46px) scale(.72) rotate(-12deg);
    filter: blur(8px);
  }

  to {
    opacity: 1;
    transform: translateX(-68%) translateY(0) scale(1) rotate(0);
    filter: blur(0);
  }
}

@keyframes serviceStrengthsPersonIn {
  from {
    opacity: 0;
    transform: translateY(58px) scale(.9);
    filter: blur(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes serviceStrengthsBadgeSpIn {
  from {
    opacity: 0;
    transform: translateY(46px) scale(.72) rotate(-12deg);
    filter: blur(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0);
    filter: blur(0);
  }
}

@keyframes serviceStrengthsPersonSpIn {
  from {
    opacity: 0;
    transform: translateY(52px) scale(.9);
    filter: blur(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@media (prefers-reduced-motion: reduce) {

  .service-single__detail-block--gradient-strengths.is-motion-ready::before,
  .service-single__detail-block--gradient-strengths.is-motion-ready .service-single__points-badge,
  .service-single__detail-block--gradient-strengths.is-motion-ready .service-single__points-grid {
    opacity: 1;
    filter: none;
    animation: none;
  }

  .service-single__detail-block--gradient-strengths.is-motion-ready::before,
  .service-single__detail-block--gradient-strengths.is-motion-ready .service-single__points-grid {
    transform: none;
  }

  .service-single__detail-block--gradient-strengths.is-motion-ready .service-single__points-badge {
    transform: translateX(-68%);
  }
}

.service-single__detail-block--gradient-strengths .service-single__point-item {
  padding: 0 0 0 38px;
  background: transparent;
  border-left: 0;
}

.service-single__detail-block--gradient-strengths .service-single__point-label {
  top: -2px;
  left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #fff;
  font-size: 0;
  background: var(--base_color_main);
  box-shadow: 0 4px 10px rgba(45, 145, 202, .24);
}

.service-single__detail-block--gradient-strengths .service-single__point-label::before {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  content: attr(data-label);
  margin-top: 0;
  transform: translateY(-.02em);
}

.service-single__detail-block--gradient-strengths .service-single__point-item h3 {
  margin: 0 0 4px;
  color: var(--base_color_main);
  font-size: clamp(14px, 1.08vw, 16px);
  line-height: 1.35;
}

.service-single__detail-block--gradient-strengths .service-single__point-item p {
  color: var(--base_color_footer);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  margin: 0;
}

.service-single__detail-block--gradient-strengths .service-single__point-item p+p {
  margin-top: 3px;
  font-weight: 400;
}

@media (min-width: 1140px) {
  .service-single__detail-block--gradient-strengths .service-single__points-grid {
    gap: clamp(24px, 1.8vw, 30px);
  }

  .service-single__detail-block--gradient-strengths .service-single__point-item {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    column-gap: 10px;
    row-gap: 3px;
    padding-left: 0;
  }

  .service-single__detail-block--gradient-strengths .service-single__point-label {
    position: static;
    grid-column: 1;
    align-self: center;
    width: 22px;
    height: 22px;
    margin: 0;
  }

  .service-single__detail-block--gradient-strengths .service-single__point-label::before {
    font-size: 12px;
  }

  .service-single__detail-block--gradient-strengths .service-single__point-item h3 {
    grid-column: 2;
    align-self: center;
    min-height: 24px;
    margin: 0;
    padding-left: 0;
  }

  .service-single__detail-block--gradient-strengths .service-single__point-item p {
    grid-column: 1 / -1;
  }
}

@media (min-width: 768px) and (max-width: 1139px) {
  .service-single__detail-block--gradient-strengths {
    display: block;
    min-height: auto;
    padding: 52px max(32px, calc((100vw - 720px) / 2)) 74px;
    background:
      linear-gradient(180deg, transparent 0 320px, #fff 320px 100%),
      url("../images/service/detail/common/service-gradient-bg.webp") center top / 100% 320px no-repeat;
  }

  .service-single__detail-block--gradient-strengths::before {
    top: 65px;
    bottom: auto;
    left: max(32px, calc((100vw - 720px) / 2));
    width: 180px;
    aspect-ratio: 301 / 58;
    background: url("../images/common/kship-horizontal-white.png") center / contain no-repeat;
    opacity: .5;
  }

  .service-single__detail-block--gradient-strengths .service-single__block-title-wrapper {
    display: none;
  }

  .service-single__detail-block--gradient-strengths .service-single__points-badge {
    display: block;
    width: min(300px, 48vw);
    margin: 92px auto 48px;
    transform: none;
  }

  .service-single__detail-block--gradient-strengths .service-single__points-badge::before {
    content: none;
  }

  .service-single__detail-block--gradient-strengths .service-single__points-badge::after {
    position: absolute;
    left: -76px;
    bottom: -16px;
    width: 128px;
    aspect-ratio: 972 / 1132;
    content: "";
    background: url("../images/service/detail/common/strengths-person.png") center / contain no-repeat;
  }

  .service-single__detail-block--gradient-strengths.is-motion-ready::before,
  .service-single__detail-block--gradient-strengths.is-motion-ready.is-visible::before {
    opacity: .5;
    transform: none;
    filter: none;
    animation: none;
  }

  .service-single__detail-block--gradient-strengths.is-motion-ready .service-single__points-badge {
    transform: translateY(46px) scale(.72) rotate(-12deg);
  }

  .service-single__detail-block--gradient-strengths.is-motion-ready.is-visible .service-single__points-badge {
    transform: translateY(0) scale(1) rotate(0);
  }

  .service-single__detail-block--gradient-strengths.is-motion-ready .service-single__points-badge::after {
    opacity: 0;
    transform: translateY(52px) scale(.9);
    filter: blur(8px);
  }

  .service-single__detail-block--gradient-strengths.is-motion-ready.is-visible .service-single__points-badge::after {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
    animation: serviceStrengthsPersonSpIn .86s 1s cubic-bezier(.22, 1, .36, 1) both;
  }

  .service-single__detail-block--gradient-strengths.is-motion-ready.is-visible .service-single__points-badge {
    animation: serviceStrengthsBadgeSpIn .78s .48s cubic-bezier(.22, 1, .36, 1) both;
  }

  .service-single__detail-block--gradient-strengths .service-single__points-grid {
    display: grid;
    width: min(640px, 100%);
    height: auto;
    aspect-ratio: auto;
    grid-template-columns: 1fr;
    gap: 45px;
    padding: 0;
    margin: 52px auto 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .service-single__detail-block--gradient-strengths:has(.service-single__points-grid .service-single__point-item:nth-child(3):last-child) {
    padding-bottom: 56px;
  }

  .service-single__detail-block--gradient-strengths:has(.service-single__points-grid .service-single__point-item:nth-child(3):last-child) .service-single__points-grid,
  .service-single__detail-block--gradient-strengths .service-single__points-grid--3 {
    gap: 45px;
    margin-top: 24px;
  }

  .service-single__detail-block--gradient-strengths .service-single__points-badge--3 {
    margin-bottom: 0 !important;
  }

  .service-single__detail-block--gradient-strengths .service-single__points-grid--3 {
    gap: 45px !important;
    margin-top: 52px !important;
  }

  .service-single__detail-block--gradient-strengths .service-single__point-item {
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .service-single__detail-block--gradient-strengths .service-single__point-label {
    top: 4px;
    left: 0;
    width: 22px;
    height: 22px;
    font-size: 0;
    box-shadow: none;
  }

  .service-single__detail-block--gradient-strengths .service-single__point-label::before {
    font-size: 13px;
  }

  .service-single__detail-block--gradient-strengths .service-single__point-item h3 {
    min-height: 22px;
    margin: 0 0 20px;
    padding-left: 31px;
    color: var(--base_color_main);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.45;
    letter-spacing: .03em;
  }

  .service-single__detail-block--gradient-strengths .service-single__point-item p {
    color: var(--footer_color_sub);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.85;
    letter-spacing: .02em;
  }

  @media (prefers-reduced-motion: reduce) {

    .service-single__detail-block--gradient-strengths.is-motion-ready .service-single__points-badge,
    .service-single__detail-block--gradient-strengths.is-motion-ready.is-visible .service-single__points-badge {
      transform: none;
    }

    .service-single__detail-block--gradient-strengths.is-motion-ready .service-single__points-badge::after {
      opacity: 1;
      filter: none;
      transform: none;
      animation: none;
    }
  }

}

.service-single__detail-block--full {
  width: 100vw;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
}


.service-single__detail-block--full .service-single__block-content {
  width: var(--content_width);
  margin-right: auto;
  margin-left: auto;
}

.service-single__block-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
  text-align: center;
}

.service-single__detail-block--overview .service-single__block-list {
  width: 100%;
  gap: 16px;
  margin: 56px auto 0;
  padding-left: clamp(0px, 18vw, 210px);
  text-align: left;
}

.service-single__block-list li {
  padding: 0;
  font-size: 15px;
  font-weight: 700;
}

.service-single__block-list li::before {
  display: none;
}

.service-single__merit-list {
  display: grid;
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-single__merit-list li {
  position: relative;
  padding-left: 52px;
}

.service-single__merit-list li::before,
.service-single__accent-bullet-list li::before,
.service-single__detail-block--injury-merits .service-single__injury-merit-list li::before,
.service-single__voucher-example-list li::before,
.service-single__voucher-merits li::before {
  position: absolute;
  top: .9em;
  left: 0;
  display: block;
  width: 40px;
  height: 12px;
  content: "";
  background: url("../images/service/detail/common/merit-bullet.webp") center / contain no-repeat;
  transform: translateY(-50%);
}

.service-single__block-summary {
  margin-top: 48px;
  padding: 0;
  text-align: center;
  background: transparent;
}

.service-single__detail-block--overview .service-single__block-summary {
  margin-top: 48px;
}

.service-single__block-summary h3 {
  color: var(--base_color_sub);
  font-size: clamp(18px, 2vw, 23px);
}

.service-single__detail-block--overview .service-single__block-summary h3 {
  color: #ff4b2b;
  font-size: clamp(15px, 1vw, 15px);
  font-weight: 900;
  line-height: 1.8;
  text-shadow: none;
}

.service-single__background-note {
  margin: 52px auto 0;
  text-align: center;
}

.service-single__background-note-title {
  margin: 0 0 18px;
  color: var(--base_color_sub);
  font-size: clamp(15px, 1.45vw, 18px);
  font-weight: 900;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .service-single__background-note-title {
    color: var(--base_color_footer) !important;
  }
}

.service-single__background-note-alert {
  margin: 0;
  color: #ff4b2b;
  font-size: clamp(15px, 1.15vw, 15px);
  font-weight: 900;
  line-height: 1.8;
}

.service-single__background-note-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  color: var(--base_color_main);
  font-size: clamp(15px, 1.15vw, 16px);
  font-weight: 900;
  line-height: 1.8;
  list-style: none;
}

.service-single__background-note-list li {
  margin: 0;
}

.service-single__background-note-list span {
  color: var(--base_color_sub);
}

.service-single__overseas-background .service-single__background-note {
  width: min(520px, 100%);
  margin: 45px auto 0;
  text-align: left;
}

.service-single__overseas-background .service-single__background-note-title {
  margin-bottom: 24px;
  color: var(--base_color_main);
  font-size: 18px;
  font-weight: 500;
}

.service-single__overseas-background .service-single__background-note-alert {
  font-size: clamp(15px, .95vw, 15px);
}

.service-single__background-note-list,
.service-single__detail-block--overview .service-single__background-note-list {
  width: 100%;
  margin-top: 34px;
}

.service-single__background-note-list li,
.service-single__detail-block--overview .service-single__background-note-list li {
  padding-left: 0;
}

.service-single__background-note-list li::before,
.service-single__detail-block--overview .service-single__background-note-list li::before {
  content: none;
}

.service-single__background-note-list .info-list-section__item-title,
.service-single__detail-block--overview .service-single__background-note-list .info-list-section__item-title {
  color: var(--base_color_sub);
}

.service-single__background-note-list .info-list-section__item-text,
.service-single__detail-block--overview .service-single__background-note-list .info-list-section__item-text {
  color: var(--base_color_gray_sub_2);
}

.service-single__background-note-list .info-list-section__item-title,
.service-single__background-note-list .info-list-section__item-text {
  display: block;
}

.service-single__detail-block--wide-image {
  position: relative;
  z-index: 1;
  width: 100vw;
  aspect-ratio: 16 / 8;
  margin: 64px calc(50% - 50vw) 0;
  margin-bottom: 0;
  overflow: hidden;
}

.service-single__detail-block--wide-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-single__detail-block--wide-image+.service-single__detail-block--gradient-strengths {
  z-index: 2;
  margin-top: -120px;
}

.info-list-section {
  margin: 136px auto 0;
  text-align: center;
}

.info-list-section__title,
.service-single__detail-block--overview .info-list-section__title-wrapper .info-list-section__title {
  color: var(--base_color_main);
}

.info-list-section__lead,
.service-single__detail-block--overview .info-list-section__lead {
  width: 100%;
  margin: 0 auto;
  color: var(--base_color_gray_sub_2);
  font-size: clamp(16px, 1.35vw, 18px);
  font-weight: 900;
  line-height: 1.9;
  text-align: center;
  text-shadow: none;
}

.info-list-section__list,
.service-single__detail-block--overview .info-list-section__list {
  display: grid;
  width: min(520px, 100%);
  gap: 14px;
  margin: 54px auto 0;
  padding: 0;
  color: var(--base_color_main);
  text-align: left;
  list-style: none;
}

.info-list-section__list li,
.service-single__detail-block--overview .info-list-section__list li {
  position: relative;
  padding: 0 0 0 18px;
  color: var(--base_color_main);
  font-size: clamp(15px, 1.05vw, 15px);
  font-weight: 900;
  line-height: 1.75;
}

.info-list-section__list li::before,
.service-single__detail-block--overview .info-list-section__list li::before {
  position: absolute;
  top: .875em;
  left: 0;
  display: block;
  width: 5px;
  height: 5px;
  content: "";
  background: currentColor;
  border-radius: 50%;
  transform: translateY(-50%);
}

.info-list-section__item-title {
  color: var(--base_color_main);
}

.info-list-section__item-text {
  color: var(--base_color_gray_sub_2);
}

.info-list-section__note,
.service-single__detail-block--overview .info-list-section__note {
  margin-top: 54px;
  text-align: center;
}

.info-list-section__note h3,
.service-single__detail-block--overview .info-list-section__note h3 {
  margin: 0;
  color: #ff4b2b;
  font-size: clamp(15px, .95vw, 15px);
  font-weight: 900;
  line-height: 1.8;
  text-shadow: none;
  text-align: left;
}

@media (min-width: 768px) {

  .service-single__detail-block--overview .service-single__block-lead,
  .service-single__detail-block--overview .info-list-section__lead {
    color: var(--base_color_main);
    text-shadow: 1.5px 1.5px 0 rgba(249, 235, 44, .72);
  }

  .service-single__detail-block--overview .info-list-section__item-title {
    color: var(--base_color_sub);
  }

  .service-single__detail-block--overview .info-list-section__item-text {
    color: var(--base_color_main);
  }

  .service-single__overseas-background .service-single__background-note {
    width: 100%;
    margin-top: 70px;
    text-align: center;
  }

  .service-single__overseas-background .service-single__background-note-title {
    margin-bottom: 24px;
    font-size: clamp(17px, 1.2vw, 19px);
    line-height: 1.5;
  }

  .service-single__overseas-background .service-single__background-note-alert {
    font-size: clamp(14px, .95vw, 16px);
    line-height: 1.7;
  }

  .service-single__background-note-list,
  .service-single__detail-block--overview .service-single__background-note-list {
    width: 100%;
    gap: 18px;
    margin-top: 32px;
    text-align: center;
  }

  .service-single__background-note-list li,
  .service-single__detail-block--overview .service-single__background-note-list li {
    display: block;
    padding-left: 0;
    font-size: clamp(14px, 1vw, 16px);
    line-height: 1.55;
    text-align: center;
  }

  .service-single__background-note-list li::before,
  .service-single__detail-block--overview .service-single__background-note-list li::before {
    content: none;
  }

  .service-single__background-note-list .info-list-section__item-title,
  .service-single__detail-block--overview .service-single__background-note-list .info-list-section__item-title {
    display: inline;
    text-align: right;
    white-space: nowrap;
  }

  .service-single__background-note-list .info-list-section__item-text,
  .service-single__detail-block--overview .service-single__background-note-list .info-list-section__item-text {
    display: inline;
    margin-left: 24px;
    color: var(--base_color_main);
    text-align: left;
    white-space: nowrap;
  }

  .info-list-section__note h3,
  .service-single__detail-block--overview .info-list-section__note h3 {
    text-align: center;
  }
}

.service-single__detail-block--visual {
  margin-bottom: 64px;
}

.service-single__detail-block--visual .service-single__block-title-wrapper,
.service-single__detail-block--visual .service-single__block-lead {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.service-single__detail-block--jusei-flow .service-single__block-title-wrapper,
.service-single__detail-block--jusei-flow .service-single__block-lead {
  position: static;
  width: auto;
  height: auto;
  padding: 0;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  border: 0;
}

.service-single__detail-block--jusei-flow .service-single__block-title-wrapper {
  margin-bottom: 34px;
}

.service-single__detail-block--jusei-flow .service-single__block-title-wrapper--lower {
  margin-bottom: 20px;
}

.service-single__block-lead {
  margin-bottom: 35px !important;
}

.service-single__block-image {
  margin: 0px !important;
}

@media (min-width: 768px) {
  .service-single__detail-block--jusei-flow .service-single__block-title-wrapper--lower {
    margin-bottom: 40px;
  }
}

.service-single__detail-block--jusei-flow .service-single__block-lead {
  margin-bottom: 54px;
  line-height: 1.8;
  text-align: center;
}

.service-single__flow-note {
  margin-top: var(--service-single-section-space);
  margin-right: auto;
  margin-left: auto;
}

.service-single__flow-note-pc {
  display: grid;
  grid-template-columns: 470px minmax(0, 1fr);
  gap: 30px;
  align-items: stretch;
  width: 100%;
  margin: 0 auto;
}

.service-single__flow-note-panel {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 540px;
  padding: 44px 58px 40px 56px;
  color: #fff;
  background: var(--base_color_footer);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath fill='%23000' d='M2.3 0H88.3Q90 0 90.4 1.8L99.6 48.2Q100 50 99.6 51.8L90.4 98.2Q90 100 88.3 100H2.3Q0 100 0 98.2V1.8Q0 0 2.3 0Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath fill='%23000' d='M2.3 0H88.3Q90 0 90.4 1.8L99.6 48.2Q100 50 99.6 51.8L90.4 98.2Q90 100 88.3 100H2.3Q0 100 0 98.2V1.8Q0 0 2.3 0Z'/%3E%3C/svg%3E");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.service-single__flow-note-title,
.service-single__flow-note-panel h3 {
  margin: 0 0 46px;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.5;
}

.service-single__flow-note-list,
.service-single__flow-note-panel ol {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0 0 54px;
  list-style: none;
  counter-reset: flow-note;
}

.service-single__flow-note-bullet-list,
.service-single__flow-note-panel ul {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-single__flow-note-list li,
.service-single__flow-note-bullet-list li,
.service-single__flow-note-panel li {
  position: relative;
  padding-left: 28px;
  color: #fff;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.5;
  counter-increment: flow-note;
}

.service-single__flow-note-bullet-list li,
.service-single__flow-note-panel ul li {
  padding-left: 0;
  counter-increment: none;
}

.service-single__flow-note-list li::before,
.service-single__flow-note-bullet-list li::before,
.service-single__flow-note-panel li::before {
  position: absolute;
  top: .2em;
  left: 0;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  color: var(--base_color_sub);
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  content: counter(flow-note);
  background: #fff;
  border-radius: 50%;
}

.service-single__flow-note-bullet-list li::before,
.service-single__flow-note-panel ul li::before {
  content: none;
}

.service-single__flow-note-message,
.service-single__flow-note-panel p {
  margin: 0 0 22px;
  color: var(--base_color_yellow);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.55;
  text-align: center;
}

.service-single__flow-note-caption,
.service-single__flow-note-panel small {
  display: block;
  color: #fff;
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
}

.service-single__flow-note-text h3 {
  margin: 0 0 34px;
  color: var(--base_color_main);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.5;
}

.service-single__flow-note-text {
  display: grid;
  align-content: center;
}

.service-single__flow-note-text p {
  margin: 0 0 22px;
  color: var(--base_color_text);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.95;
}

.service-single__flow-note-sp {
  display: none;
}

.service-single__overseas-message {
  padding: 26px 0 18px;
  color: var(--base_color_main);
  text-align: center;
}

.service-single__overseas-message h3 {
  margin: 0 0 22px;
  color: var(--base_color_main);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.5;
}

.service-single__overseas-message p {
  margin: 0;
  color: var(--base_color_main);
  font-size: 16px;
  font-weight: 400;
  line-height: 2.15;
  text-align: center;
}

.service-single__overseas-message p span {
  display: inline;
}

.service-single__yellow-highlight,
.service-single__overseas-message p span,
.service-single__detail-block--injury-merits .service-single__injury-highlight span {
  padding: 0 .28em .08em;
  background: #FFF67F;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

@media (max-width: 1000px) {
  .service-single__flow-note {
    width: auto;
    margin-top: var(--service-single-section-space);
    margin-right: 0;
    margin-left: 0;
  }

  .service-single__flow-note-pc {
    display: none;
  }

  .service-single__flow-note-sp {
    display: grid;
    gap: 14px;
    justify-items: center;
    width: min(720px, var(--content_width));
    margin: 0 auto;
    padding: 16px 0 10px;
    text-align: center;
  }

  .service-single__flow-note-sp h3 {
    margin: 0 0 8px;
    color: var(--base_color_main);
    font-size: 18px;
    font-weight: 900;
    line-height: 1.5;
  }

  .service-single__flow-note-sp p {
    margin: 0;
    color: var(--base_color_main);
    font-size: 15px;
    font-weight: 900;
    line-height: 1.6;
  }

  .service-single__flow-note-sp span {
    display: inline;
    padding: 2px 6px;
    background: rgba(249, 235, 44, .68);
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
  }
}

.service-single__detail-block--merits {
  width: min(1040px, 100%);
  margin: 0 auto 92px;
}

.service-single__detail-block--merits .service-single__block-title-wrapper {
  margin-bottom: 70px;
}

.heading-accent--oval {
  display: inline-grid;
  min-width: 170px;
  min-height: 66px;
  margin: 0;
  padding: 18px 38px;
  place-items: center;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: .14em;
  line-height: 1.4;
  text-align: center;
  background: #a7c964;
  border-radius: 50%;
  box-shadow: 0 4px 0 var(--base_color_yellow);
}

.heading-accent--oval::after {
  display: none;
}

.heading-accent--oval.is-line-motion-ready {
  opacity: 0;
  transform: translateY(-28px) scale(.96);
  transition:
    opacity .58s ease,
    transform .78s cubic-bezier(.22, 1, .36, 1);
}

.heading-accent--oval.is-line-motion-ready .heading-accent__oval-text {
  opacity: 0;
  transform: translateY(-18px);
  transition:
    opacity .48s ease,
    transform .62s cubic-bezier(.22, 1, .36, 1);
}

.heading-accent--oval.is-line-motion-ready.is-line-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.heading-accent--oval.is-line-motion-ready.is-line-visible .heading-accent__oval-text {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .32s;
}

@media (prefers-reduced-motion: reduce) {

  .heading-accent--oval.is-line-motion-ready,
  .heading-accent--oval.is-line-motion-ready.is-line-visible,
  .heading-accent--oval.is-line-motion-ready .heading-accent__oval-text,
  .heading-accent--oval.is-line-motion-ready.is-line-visible .heading-accent__oval-text {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.service-single__detail-block--merits .service-single__block-lead {
  display: none;
}

.service-single__detail-block--merits .service-single__accent-bullet-list:has(+ .service-single__blue-emphasis) {
  margin-bottom: 28px;
}

.service-single__detail-block--merits .service-single__blue-emphasis {
  margin-bottom: 28px;
}

.service-single__change-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4.2vw, 54px);
  margin: 0 auto;
  color: var(--base_color_b2);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
  text-align: center;
}

.service-single__change-column {
  position: relative;
  padding: 0 20px 0;
}

.service-single__change-column::before,
.service-single__change-column::after {
  position: absolute;
  top: 25px;
  bottom: 0;
  width: 6px;
  content: "";
  background-image: radial-gradient(circle, #6bb66f 2px, transparent 2.4px);
  background-position: center top;
  background-repeat: repeat-y;
  background-size: 6px 13px;
}

.service-single__change-column::before {
  left: -3px;
}

.service-single__change-column::after {
  right: -3px;
}

@media (min-width: 1025px) {
  .service-single__change-table {
    gap: 0;
  }

  .service-single__change-column {
    padding-right: clamp(28px, 3.2vw, 42px);
    padding-left: clamp(28px, 3.2vw, 42px);
  }

  .service-single__change-column::after {
    content: none;
  }

  .service-single__change-column:last-child::after {
    content: "";
  }
}

.service-single__change-heading {
  display: grid;
  place-items: center;
  min-height: 50px;
  margin: 0 0 34px;
  padding: 10px 14px;
  color: #fff;
  background: #6DB76D;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
}

.service-single__change-list {
  display: grid;
  gap: 48px;
  min-height: 316px;
  align-content: start;
  margin: 0;
  padding: 15px 0 0;
  list-style: none;
}

.service-single__change-list li {
  margin: 0;
}

@media (max-width: 1024px) {
  .service-single__detail-block--merits {
    width: 100%;
  }

  .service-single__detail-block--merits .service-single__block-title-wrapper {
    margin-bottom: 54px;
  }

  .service-single__change-table {
    grid-template-columns: 1fr;
    gap: 44px;
    width: var(--content_width);
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.5;
  }

  .service-single__change-column {
    padding: 0 34px;
  }

  .service-single__change-column::before,
  .service-single__change-column::after {
    top: 27px;
  }

  .service-single__change-heading {
    min-height: 54px;
    margin-bottom: 28px;
    font-size: 18px;
    letter-spacing: .02em;
  }

  .service-single__change-list {
    gap: 21px;
    min-height: 0;
    padding: 4px 0 0;
  }
}

.service-single__accent-bullet-list {
  display: grid;
  gap: 34px;
  margin: 0 0 70px;
  text-align: left;
}

.service-single__accent-bullet-list li {
  position: relative;
  padding-left: 52px;
  color: var(--base_color_b2);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
}

.service-single__accent-bullet-list li strong {
  color: var(--base_color_main);
  font-weight: 900;
}

@media (min-width: 768px) {
  .service-single__detail-block--merits .service-single__accent-bullet-list {
    width: fit-content;
    margin: 0 auto 150px;
  }

  .service-single__detail-block--merits .service-single__accent-bullet-list:has(+ .service-single__blue-emphasis) {
    margin-bottom: 42px;
  }

  .service-single__detail-block--merits .service-single__accent-bullet-list:has(+ .service-single__voucher-note) {
    margin-bottom: 34px;
  }

  .service-single__detail-block--merits .service-single__accent-bullet-list li {
    width: fit-content;
    margin-right: auto;
    margin-left: auto;
  }

  .service-single__detail-block--merits .service-single__blue-emphasis {
    margin-bottom: 0;
  }

  .service-single__detail-block--merits .service-single__accent-bullet-list li strong {
    color: var(--base_color_b2);
  }

  .service-single__detail-block--merits .service-single__accent-bullet-list li strong::after {
    content: "：";
  }
}

.service-single__detail-block--merits .service-single__block-summary {
  margin-top: 0;
  color: #666;
}

.service-single__detail-block--merits .service-single__block-summary h3 {
  display: none;
}

.service-single__detail-block--merits .service-single__block-summary p {
  width: min(560px, 100%);
  margin: 0 auto;
  color: #666;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.75;
}

.service-single__detail-block--flow {
  margin-top: var(--service-single-section-space);
}

.service-single__detail-block--gradient-strengths {
  margin-top: 150px;
}

.service-single__detail-block--wide-image:has(+ .service-single__detail-block--gradient-strengths) {
  margin-top: 150px;
}

.service-single__points-grid {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.service-single__point-item {
  position: relative;
  padding: 24px 24px 24px 72px;
  text-align: left;
  background: #f4fbfd;
  border-left: 4px solid var(--base_color_main);
}

.service-single__point-label {
  position: absolute;
  top: 20px;
  left: 20px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #fff;
  font-family: "Orator Std", "Courier New", monospace;
  font-size: 15px;
  background: var(--base_color_main);
  border-radius: 50%;
}

.service-single__point-item h3,
.service-single__flow-item h3 {
  margin: 0 0 8px;
  color: var(--base_color_sub);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.45;
}

.service-single__point-item p,
.service-single__flow-item p {
  margin: 0;
  color: var(--base_color_text);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.75;
}

.service-single__flow-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
  counter-reset: service-flow;
}

.service-single__flow-item {
  position: relative;
  padding: 22px 22px 22px 74px;
  text-align: left;
  border-top: 1px solid rgba(44, 144, 202, .24);
  counter-increment: service-flow;
}

.service-single__flow-item:last-child {
  border-bottom: 1px solid rgba(44, 144, 202, .24);
}

.service-single__flow-item::before {
  position: absolute;
  top: 21px;
  left: 18px;
  color: var(--base_color_green_sub);
  font-family: "Orator Std", "Courier New", monospace;
  font-size: 22px;
  font-style: italic;
  line-height: 1;
  content: counter(service-flow, decimal-leading-zero);
}

.service-single__desc-section {
  position: relative;
  z-index: 1;
  margin-top: 45px;
  padding: 45px 20px 118px;
  background: linear-gradient(180deg, #4fc6b0 0%, #3b97d4 82%);
  clip-path: ellipse(95% 100% at 50% 0%);
}

.service-single__details-section:has(+ .service-single__desc-section) {
  padding-bottom: 0;
}

.service-single__desc-section::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 31.5px;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(rgba(72, 148, 203, .5), rgba(72, 148, 203, .5)) 0 0 / 100% 10px no-repeat,
    linear-gradient(rgba(72, 148, 203, .5), rgba(72, 148, 203, .5)) 0 13px / 100% 5px no-repeat,
    linear-gradient(rgba(72, 148, 203, .5), rgba(72, 148, 203, .5)) 0 21px / 100% 3px no-repeat,
    linear-gradient(rgba(72, 148, 203, .5), rgba(72, 148, 203, .5)) 0 27px / 100% 1px no-repeat,
    linear-gradient(rgba(72, 148, 203, .5), rgba(72, 148, 203, .5)) 0 31px / 100% .5px no-repeat;
}

.service-single__desc-inner {
  position: relative;
  z-index: 1;
  width: min(var(--container-width), 100%);
}

.service-single__desc-title {
  margin-bottom: 45px;
  color: #fff;
  font-size: clamp(24px, 3.2vw, 36px);
  font-weight: 500;
  letter-spacing: .16em;
  text-shadow: 2px 2px 0 rgba(0, 83, 129, .28);
}

.service-single__desc-content {
  display: block;
}

.service-single__desc-list {
  width: var(--content_width);
  margin: 0 auto 42px;
  text-align: center;
}

.service-single__desc-item h3 {
  color: var(--base_color_yellow);
  font-size: 24px;
  letter-spacing: .16em;
  line-height: 1.45;
}

.service-single__desc-image img {
  margin: 0 auto;
  padding: 0;
  background: #fff;
  border-radius: 0;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .service-single__desc-section {
    margin-top: 100px;
  }

  .service-single__desc-image img {
    margin-bottom: 100px;
  }
}

.service-single__desc-section.is-motion-ready .service-single__desc-title,
.service-single__desc-section.is-motion-ready .service-single__desc-item,
.service-single__desc-section.is-motion-ready .service-single__desc-image {
  --service-desc-motion-order: 0;

  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity .58s ease,
    transform .72s cubic-bezier(.22, 1, .36, 1);
}

.service-single__desc-section.is-motion-ready.is-visible .service-single__desc-title,
.service-single__desc-section.is-motion-ready.is-visible .service-single__desc-item,
.service-single__desc-section.is-motion-ready.is-visible .service-single__desc-image {
  opacity: 1;
  transform: translateY(0);
}

.service-single__desc-section.is-motion-ready.is-visible .service-single__desc-title,
.service-single__desc-section.is-motion-ready.is-visible .service-single__desc-item,
.service-single__desc-section.is-motion-ready.is-visible .service-single__desc-image {
  transition-delay: calc(.08s + (var(--service-desc-motion-order) * .14s));
}

@media (prefers-reduced-motion: reduce) {

  .service-single__desc-section.is-motion-ready .service-single__desc-title,
  .service-single__desc-section.is-motion-ready .service-single__desc-item,
  .service-single__desc-section.is-motion-ready .service-single__desc-image,
  .service-single__desc-section.is-motion-ready.is-visible .service-single__desc-title,
  .service-single__desc-section.is-motion-ready.is-visible .service-single__desc-item,
  .service-single__desc-section.is-motion-ready.is-visible .service-single__desc-image {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.service-single__cta-section {
  --service-single-cta-overlap: 180px;

  position: relative;
  z-index: 0;
  margin-top: calc(var(--service-single-cta-overlap) * -1);
  padding: calc(var(--service-single-cta-overlap) + 26px) 20px 58px;
  background: #f5f5fb;
}

.service-single__cta-arrow {
  display: inline-grid;
  justify-items: center;
  gap: 5px;
  margin: 0 0 24px;
  color: #3d3838;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
}

.service-single__cta-arrow::after {
  display: block;
  width: 20px;
  height: 13px;
  margin-top: 10px;
  background: currentColor;
  content: "";
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2028%2016%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M2%207.5L14%201.5L26%207.5M2%2014L14%208L26%2014%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272.4%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2028%2016%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M2%207.5L14%201.5L26%207.5M2%2014L14%208L26%2014%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272.4%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27/%3E%3C/svg%3E") center / contain no-repeat;
  transform: rotate(180deg);
}

.service-single__cta-btn-wrapper {
  display: flex;
  justify-content: center;
}

.button--cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(264px, calc(100vw - 52px));
  min-height: 54px;
  padding: 12px 28px;
  background: linear-gradient(90deg, var(--base_color_main), var(--base_color_green_sub));
  border: 0;
  border-radius: 999px;
  box-shadow: 6px 6px 0 #fff36a;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: .02em;
}

.service-single__cta-tel {
  margin: 35px 0 0;
  color: #4D4948;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
}

.service-single__related-section {
  width: var(--content_width);
  padding: 45px 0 0;
  background: transparent;
}

.service-single__related-title {
  color: var(--base_color_icn);
  font-weight: 500;
}

.service-single__related-item {
  padding: 0;
  color: var(--base_color_icn);
  background: transparent;
  border: 0;
}

.service-single__related-item:hover {
  box-shadow: none;
}

.service-single__related-item.service-archive__icon-item:hover,
.service-single__related-item.service-archive__icon-item:focus-visible,
.service-single__related-item.service-archive__icon-item:focus-within {
  color: var(--base_color_icn);
}

.service-single__related-icon-wrapper {
  width: 102px;
  height: 102px;
  margin-bottom: 8px;
  background: transparent;
  position: relative;
}

.service-single__related-icon-wrapper img {
  width: 102px;
  height: 102px;
}

.service-single__related-icon-wrapper .service-archive__icon-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  object-fit: contain;
}

.service-single__related-icon-wrapper.service-card__icon-wrapper--ibss .service-card__icon-arrow {
  top: 3px;
  right: -2px;
}

.service-single__related-item span {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.image-placeholder--service-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #00afec 0 44%, #fff 45% 52%, rgba(0, 175, 236, .28) 53% 68%, transparent 69%),
    linear-gradient(135deg, #0b579f, #00afec);
}

.service-archive__fv-lead {
  position: absolute;
  top: 14%;
  right: 8%;
  z-index: 1;
  width: min(900px, 55vw);
  margin: 0;
  color: var(--base_color_sub);
  font-size: clamp(15px, 1.45vw, 21px);
  font-weight: 700;
  line-height: 1.75;
  text-shadow:
    0 0 4px rgba(255, 255, 255, 1),
    0 0 10px rgba(255, 255, 255, .96),
    0 0 18px rgba(255, 255, 255, .86);
}

.theme-benefit .service-archive__fv-lead--pc {
  right: 8%;
  width: max-content;
  max-width: min(900px, 55vw);
}

.theme-application .service-archive__fv-lead,
.theme-health .service-archive__fv-lead,
.theme-bpo .service-archive__fv-lead {
  right: auto;
  left: 8%;
}

.service-archive__fv-lead--sp {
  display: none;
}

.theme-health .service-archive__fv-lead--pc .service-archive__fv-lead-accent {
  color: #ee869a;
}

.service-archive__fv-lead strong {
  color: var(--base_color_orange);
  font-size: 1.18em;
}

.service-archive__fv-lead em {
  color: var(--base_color_green);
  font-style: normal;
}

.service-archive__fv-inner {
  position: static;
}

.service-archive__fv-badge {
  z-index: 2;
}

.service-single__title-section {
  display: grid;
  padding-top: 110px;
  padding-bottom: 0px;
  align-content: center;
  background: #fff;
}

.service-archive__intro-section {
  display: grid;
  padding-top: 110px;
  padding-bottom: 150px;
  align-content: center;
  background: #fff url("../images/common/wave.webp") center calc(100% + 86px) / 116% auto no-repeat;
}


.service-archive__intro-section .section-heading__en,
.service-single__title-section .section-heading__en {
  letter-spacing: .24em;
  white-space: pre-line;
  word-spacing: .34em;
}

.service-single__title-section .section-heading h1 {
  margin: 70px 0 100px;
  color: var(--base_color_sub);
  font-size: clamp(22px, 2.7vw, 32px);
  font-weight: 900;
  line-height: 1.35;
}

.service-single__title-section .section-heading h1::after {
  display: block;
  width: 150px;
  height: 10px;
  margin: 28px auto 0;
  content: "";
  background: var(--base_color_yellow);
  border-radius: 999px 0 999px 0;
}

.service-single__title-section .section-heading h1.is-line-motion-ready::after {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity .52s ease .22s,
    transform .68s cubic-bezier(.22, 1, .36, 1) .22s;
}

.service-single__title-section .section-heading h1.is-line-motion-ready.is-line-visible::after {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .service-single__title-section .section-heading h1.is-line-motion-ready::after {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.service-archive__icons-grid {
  width: min(820px, var(--content_width));
  margin-right: auto;
  margin-left: auto;
  gap: 34px 24px;
  justify-content: center;
  justify-items: center;
}

.service-archive__icons-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(360px, var(--content_width));
}

.service-archive__icons-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(560px, var(--content_width));
}

.service-archive__icons-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(720px, var(--content_width));
}

.service-archive__icons-grid--5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: min(900px, var(--content_width));
}

.service-single__related-grid.service-archive__icons-grid--1 {
  grid-template-columns: minmax(0, 128px);
  justify-content: center;
}

.service-single__related-grid.service-archive__icons-grid--2 {
  grid-template-columns: repeat(2, 128px);
  justify-content: center;
}

.service-single__related-grid.service-archive__icons-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 128px));
  justify-content: center;
}

.service-single__related-grid.service-archive__icons-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 180px));
  justify-content: center;
}

.service-single__related-grid.service-archive__icons-grid--5 {
  grid-template-columns: repeat(5, minmax(0, 128px));
  justify-content: center;
}

.service-archive__icon-item {
  color: #005381;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.55;
}

.service-archive__icon-item img,
.service-archive__icon-item .service-archive__icon-image,
.service-archive__icon-item .service-card__icon-wrapper {
  width: 128px;
  height: 128px;
}

.service-archive__icons-grid .service-archive__icon-item {
  --service-archive-icon-slot: 128px;
  grid-template-rows: var(--service-archive-icon-slot) minmax(calc(1.55em * 2), auto);
  align-content: start;
}

.service-archive__icons-grid .service-archive__icon-label {
  display: grid;
  min-height: calc(1.55em * 2);
  place-items: center;
}

.service-archive__icons-grid .service-archive__icon-item>img,
.service-archive__icons-grid .service-archive__icon-image,
.service-archive__icons-grid .service-card__icon-wrapper {
  grid-row: 1;
  align-self: end;
}

.service-archive__icons-grid .service-card__icon-wrapper--ibss .service-card__icon-main {
  width: 100%;
  height: 100%;
  transform: none;
}

.service-archive__icons-grid .service-card__icon-wrapper--ibss .service-card__icon-arrow {
  top: 6px;
  right: 6px;
  bottom: auto;
  left: auto;
  width: 36px;
  height: 36px;
}

.service-archive__icons-grid .service-archive__icon-item:hover,
.service-archive__icons-grid .service-archive__icon-item:focus-visible,
.service-archive__icons-grid .service-archive__icon-item:focus-within,
.service-archive__icons-grid .service-archive__icon-item:hover>span,
.service-archive__icons-grid .service-archive__icon-item:focus-visible>span,
.service-archive__icons-grid .service-archive__icon-item:focus-within>span {
  color: #00AFEC;
}

.service-archive__icons-grid .service-archive__icon-item--ibss:hover,
.service-archive__icons-grid .service-archive__icon-item--ibss:focus-visible,
.service-archive__icons-grid .service-archive__icon-item--ibss:focus-within,
.service-archive__icons-grid .service-archive__icon-item--ibss:hover>span,
.service-archive__icons-grid .service-archive__icon-item--ibss:focus-visible>span,
.service-archive__icons-grid .service-archive__icon-item--ibss:focus-within>span {
  color: #005381;
}

.service-archive__icons-grid .service-archive__icon-item--ibss span,
.service-archive__icons-grid .service-archive__icon-item--ibss:hover span,
.service-archive__icons-grid .service-archive__icon-item--ibss:focus-visible span,
.service-archive__icons-grid .service-archive__icon-item--ibss:focus-within span {
  color: #005381;
}

.service-single__related-item.service-archive__icon-item,
.service-single__related-item.service-archive__icon-item span {
  color: #005381;
}

.service-single__related-item.service-archive__icon-item:hover,
.service-single__related-item.service-archive__icon-item:focus-visible,
.service-single__related-item.service-archive__icon-item:focus-within,
.service-single__related-item.service-archive__icon-item:hover>span,
.service-single__related-item.service-archive__icon-item:focus-visible>span,
.service-single__related-item.service-archive__icon-item:focus-within>span {
  color: #00AFEC;
}

.service-single__related-item.service-archive__icon-item--ibss:hover,
.service-single__related-item.service-archive__icon-item--ibss:focus-visible,
.service-single__related-item.service-archive__icon-item--ibss:focus-within,
.service-single__related-item.service-archive__icon-item--ibss:hover>span,
.service-single__related-item.service-archive__icon-item--ibss:focus-visible>span,
.service-single__related-item.service-archive__icon-item--ibss:focus-within>span {
  color: #005381;
}

.service-single__related-icon-wrapper.service-card__icon-wrapper--ibss .service-card__icon-main {
  width: 100%;
  height: 100%;
}

.service-single__related-icon-wrapper.service-card__icon-wrapper--ibss .service-card__icon-arrow {
  top: 9px;
  right: 4px;
  width: 36px;
  height: 36px;
}

.service-single__related-item.service-archive__icon-item--ibss .ibss-hover-card__url {
  top: -2px;
}

.service-single__related-item.service-archive__icon-item--ibss .ibss-hover-card__url,
.service-single__related-item.service-archive__icon-item--ibss .ibss-hover-card__bubble {
  font-weight: 400 !important;
}

.service-archive__icons-grid .service-archive__icon-item--ibss .ibss-hover-card__bubble,
.service-single__related-item.service-archive__icon-item--ibss .ibss-hover-card__bubble {
  top: 183px;
  right: auto;
  left: 50%;
  width: min(470px, calc(100vw - 48px));
  transform: translate(-50%, 8px);
}

.service-archive__icons-grid .service-archive__icon-item--ibss .ibss-hover-card__bubble::before,
.service-single__related-item.service-archive__icon-item--ibss .ibss-hover-card__bubble::before {
  top: -22px;
  right: auto;
  left: 50%;
  width: 28px;
  height: 22px;
  clip-path: polygon(50% 0, 0 100%, 100% 100%);
  transform: translateX(-50%);
}

.service-archive__icons-grid .service-archive__icon-item--ibss:hover .ibss-hover-card__bubble,
.service-archive__icons-grid .service-archive__icon-item--ibss:focus-visible .ibss-hover-card__bubble,
.service-archive__icons-grid .service-archive__icon-item--ibss:focus-within .ibss-hover-card__bubble,
.service-archive__icons-grid .service-archive__icon-item--ibss.is-open .ibss-hover-card__bubble,
.service-single__related-item.service-archive__icon-item--ibss:hover .ibss-hover-card__bubble,
.service-single__related-item.service-archive__icon-item--ibss:focus-visible .ibss-hover-card__bubble,
.service-single__related-item.service-archive__icon-item--ibss:focus-within .ibss-hover-card__bubble,
.service-single__related-item.service-archive__icon-item--ibss.is-open .ibss-hover-card__bubble {
  transform: translate(-50%, 5px);
}

.intro-movie--service {
  position: relative;
  z-index: 1;
  padding-top: 0;
  margin-top: clamp(-80px, -8vw, -84px);
}

.service-archive__jmics-section {
  padding-top: 38px;
}

.service-archive__jmics-diagram-wrapper {
  width: min(1060px, 100%);
  margin: 0 auto;
}

.service-archive__jmics-diagram-wrapper.is-motion-ready {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity .7s ease,
    transform .7s cubic-bezier(.16, 1, .3, 1);
}

.service-archive__jmics-diagram-wrapper.is-motion-ready.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-archive__diagram-pc {
  position: static;
  min-height: 0;
}

.service-archive__diagram-pc-left,
.service-archive__diagram-pc-right {
  display: none;
}

.service-archive__diagram-pc-center {
  position: static;
  width: auto;
  transform: none;
}

.service-archive__diagram-pc-center img {
  width: min(1050px, 100%);
  margin: 0 auto;
}

.service-archive__blackboard-box {
  width: 294px;
  padding: 16px 18px;
  background: #005b86;
  border-radius: 6px;
  box-shadow: none;
}

.service-archive__blackboard-box h3 {
  margin: 0 0 10px;
  color: var(--base_color_yellow);
  font-size: 25px;
  line-height: 1.1;
  text-shadow: 2px 2px 0 var(--base_color_main);
  border: 0;
}

.service-archive__blackboard-box ul {
  font-size: 15px;
  line-height: 1.55;
}

.blackboard-benefit {
  left: auto;
  top: auto;
}

.blackboard-application {
  left: auto;
  bottom: auto;
}

.blackboard-health {
  right: auto;
  top: auto;
}

.blackboard-bpo {
  right: auto;
  bottom: auto;
}

.service-archive__divider {
  margin-top: 24px;
  margin-bottom: 58px;
}

.service-archive-card {
  grid-template-columns: 186px minmax(180px, 300px) minmax(0, 1fr);
  min-height: 244px;
  padding-top: 44px;
  padding-bottom: 44px;
}

.service-archive-card__body {
  display: contents;
}

.service-archive-card__body p {
  max-width: 520px;
  padding-left: 34px;
  font-size: clamp(15px, 1.35vw, 17px);
  font-weight: 500;
}

@media (min-width: 768px) and (max-width: 1100px) {
  .service-archive-card {
    grid-template-columns: 184px minmax(0, 1fr);
    gap: clamp(28px, 4vw, 48px);
    padding-right: clamp(36px, 6vw, 72px);
    padding-left: clamp(36px, 6vw, 72px);
  }

  .service-archive-card__body {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: center;
    min-width: 0;
  }

  .service-archive-card__body p {
    max-width: 680px;
    padding: 22px 0 0;
    border-top: 4px solid rgba(255, 255, 255, .92);
    border-left: 0;
  }
}

.service-archive__detail-title-section {
  padding-top: 92px;
}

.service-archive__detail-intro-section {
  padding-top: 50px;
}

.service-archive__detail-intro-section .service-single__intro-box {
  padding-top: 84px;
  padding-bottom: 60px;
  clip-path: ellipse(94% 100% at 50% 100%);
}

@media (max-width: 767px) {
  .service-archive__divider {
    letter-spacing: 0.05em;
  }

  .service-archive__fv {
    height: 272px;
    background-image: var(--service-archive-fv-image-sp, var(--service-archive-fv-image-pc));
    background-position: 40% center;
    overflow: hidden;
  }

  .lower-fv-logopart {
    top: 18px;
    right: 10px;
    width: min(36vw, 150px);
  }

  .contact-hero .lower-fv-logopart,
  .recruit-page__hero .lower-fv-logopart {
    width: min(36vw, 150px);
    height: auto;
  }

  .service-single__fv {
    height: 272px;
  }

  .service-single__fv-en {
    top: 24px;
    left: 14px;
    right: 14px;
    width: calc(100% - 28px);
    max-width: none;
    font-size: clamp(28px, 10vw, 42px);
    line-height: 1;
    white-space: pre-line;
    overflow-wrap: anywhere;
    transform: none;
  }

  .service-single__cta-arrow {
    margin-bottom: 24px;
    font-size: 14px;
  }

  .service-single__cta-sp-break {
    display: block;
  }

  .button--cta {
    width: min(264px, calc(100vw - 44px));
    min-height: 54px;
    padding: 12px 24px;
    box-shadow: 6px 7px 0 #fff36a;
    font-size: 18px;
  }

  .service-single__cta-tel {
    width: min(330px, 100%);
    margin-right: auto;
    margin-left: auto;
    font-size: 14px;
  }

  .info-list-section {
    width: 100%;
    margin-top: 45px;
  }

  .info-list-section__lead,
  .service-single__detail-block--overview .info-list-section__lead {
    text-align: left;
  }

  .info-list-section__list,
  .service-single__detail-block--overview .info-list-section__list {
    margin-top: 34px;
  }

  .info-list-section__list li,
  .service-single__detail-block--overview .info-list-section__list li {
    display: grid;
    grid-template-columns: 5px minmax(0, 1fr);
    column-gap: 13px;
    padding-left: 0;
  }

  .info-list-section__list li::before,
  .service-single__detail-block--overview .info-list-section__list li::before {
    position: static;
    grid-column: 1;
    grid-row: 1;
    align-self: center;
    justify-self: start;
    transform: none;
  }

  .info-list-section__item-title,
  .info-list-section__item-text {
    display: block;
    grid-column: 2;
  }

  .service-single__background-note-list .info-list-section__item-title,
  .service-single__background-note-list .info-list-section__item-text {
    display: block;
  }

  .service-single__background-note-list .info-list-section__item-text {
    color: var(--base_color_gray_sub_2);
  }

  .info-list-section__note,
  .service-single__detail-block--overview .info-list-section__note {
    margin-top: 20px;
  }

  .service-archive__fv-lead {
    display: block;
    position: static;
    width: var(--content_width);
    margin: 25px auto 0;
    color: var(--base_color_sub);
    font-size: 14px;
    line-height: 1.8;
    text-align: center;
    text-shadow: none;
  }

  .service-archive__fv-lead--pc {
    display: none;
  }

  .service-archive__fv-lead--sp {
    display: block;
  }

  .service-archive__fv-badge {
    min-width: 48%;
    min-height: 48px;
    bottom: 86px;
    padding: 10px 18px 10px 42px;
  }

  .service-archive__tabs,
  .service-single__tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow-x: visible;
  }

  .service-archive__tab-item,
  .service-single__tab-item {
    min-width: 0;
  }

  .service-archive__intro-section {
    background-position: 60% -300px;
    background-size: 700% auto;
  }

  .intro-movie--service {
    padding-top: 0;
    margin-top: -42px;
  }

  .service-archive__intro-section .section-heading__en,
  .service-single__title-section .section-heading__en {
    width: min(330px, 100%);
    margin-right: auto;
    margin-left: auto;
    letter-spacing: .1em;
    line-height: 1.35;
    word-spacing: .08em;
  }

  .service-single__title-section .section-heading h1 {
    margin: 70px 0 20px;
    font-size: 21px;
  }

  .service-single__title-section .section-heading h1::after {
    width: 100px;
    height: 7px;
    margin-top: 24px;
  }

  .service-archive__icons-grid,
  .service-archive__icons-grid--5 {
    width: min(320px, 100%);
    max-width: 320px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 10px;
  }

  .service-archive__icons-grid--5:not(.service-single__related-grid) .service-archive__icon-item:nth-child(5) {
    grid-column: 1 / -1;
    justify-self: center;
  }

  .service-single__related-grid.service-archive__icons-grid {
    width: min(320px, 100%);
    max-width: 320px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
  }

  .service-single__related-grid.service-archive__icons-grid--1 {
    grid-template-columns: minmax(0, 128px);
    justify-content: center;
  }

  .service-single__related-grid.service-archive__icons-grid--3,
  .service-single__related-grid.service-archive__icons-grid--4,
  .service-single__related-grid.service-archive__icons-grid--5 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-archive__icon-item img,
  .service-archive__icon-item .service-archive__icon-image,
  .service-archive__icon-item .service-card__icon-wrapper {
    width: 96px;
    height: 96px;
  }

  .service-archive__icons-grid .service-archive__icon-item {
    --service-archive-icon-slot: 96px;
  }

  .service-archive__icon-item {
    font-size: 14px;
  }

  .service-archive__diagram-pc {
    display: none;
  }

  .service-archive__diagram-sp {
    display: grid;
  }

  .service-archive__diagram-sp-circle img {
    max-width: 300px;
  }

  .service-archive__jmics-sp-list {
    display: grid;
    width: 100vw;
    margin: 34px calc(50% - 50vw) 0;
    color: #fff;
    text-align: left;
  }

  .service-archive__jmics-sp-block {
    padding: 26px 24px 28px;
    background: linear-gradient(110deg, #005688 0%, #0682BE 100%);
  }

  .service-archive__jmics-sp-block:nth-child(even) {
    background: linear-gradient(110deg, #0682BE 0%, #005688 100%);
  }

  .service-archive__jmics-sp-block h3 {
    margin: 0 0 12px;
    color: var(--base_color_yellow);
    font-size: 21px;
    font-weight: 900;
    line-height: 1.3;
  }

  .service-archive__jmics-sp-block ul {
    display: grid;
    gap: 5px;
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .service-archive__jmics-sp-block ul ul {
    gap: 1px;
    margin-top: 3px;
    margin-left: 2px;
  }

  .service-archive__jmics-sp-block li {
    position: relative;
    padding-left: 14px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.45;
  }

  .service-archive__jmics-sp-block li li {
    padding-left: 8px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
  }

  .service-archive__jmics-sp-block li::before {
    position: absolute;
    top: .42em;
    left: 0;
    width: 8px;
    height: 8px;
    content: "";
    background: #fff;
  }

  .service-archive__jmics-sp-block li li::before {
    top: .58em;
    width: 4px;
    height: 4px;
    border-radius: 50%;
  }

  .service-archive__jmics-sp-block li li li::before {
    top: .7em;
    height: 1px;
    border-radius: 0;
  }

  .service-archive__blackboard-box {
    border-radius: 0;
  }

  .service-archive-card {
    grid-template-columns: 1fr;
    gap: 16px;
    min-height: 0;
    padding: 34px 28px;
    justify-items: center;
    text-align: center;
  }

  .service-archive-card__icon-box {
    width: 152px;
    height: 152px;
  }

  .service-archive-card__body {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    justify-items: center;
    width: min(100%, 1040px);
  }

  .service-archive-card__body p {
    width: min(100%, 1040px);
    padding: 18px 0 0;
    border-top: 1px solid rgba(255, 255, 255, .75);
    border-left: 0;
    text-align: left;
  }

  .service-single__fv-info {
    position: relative;
    width: var(--content_width);
    margin: 45px 0 20px auto;
    padding: 24px 20px 24px 20px;
    color: #fff;
    background: rgba(35, 28, 27, .9);
    border: 1px solid rgba(255, 255, 255, .68);
    border-radius: 28px 0 0 0;
    box-shadow: inset 0 0 24px rgba(0, 0, 0, .38);
    text-align: left;
    overflow: hidden;
  }

  .service-single__fv-info--pc {
    display: none;
  }

  .service-single__fv-info--sp {
    display: block;
  }

  .service-single__fv-info .category-name {
    margin-bottom: 12px;
    color: var(--service-single-category-color, var(--base_color_orange));
    font-size: 18px;
    line-height: 1.5;
  }

  .service-single__fv-info .category-lead {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.65;
  }

  .service-single__intro-section::before {
    height: calc(100% - 42px);
    clip-path: ellipse(170% 100% at 50% 100%);
  }

  .service-single__intro-section:has(.service-link-banner)::before {
    height: calc(100% - 78px);
  }

  .service-single__intro-box {
    width: min(340px, var(--content_width));
    margin-bottom: 24px;
    padding: 54px 0 20px;
  }

  .service-single__intro-box p {
    font-size: 15px;
    line-height: 1.95;
    letter-spacing: .02em;
    text-align: center;
  }

  .service-single__intro-note {
    width: min(310px, 100%);
    margin: 42px auto 0;
    font-size: 14px;
    line-height: 1.75;
    text-align: center;
  }

  .service-link-banner {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: auto;
    padding-bottom: 16px;
    background: #fff;
    box-shadow: none;
  }

  .service-link-banner::before,
  .service-link-banner__lead {
    position: relative;
    z-index: 1;
    min-height: 62px;
    color: #1f8fce;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: .12em;
    background: #9ae1f0;
    box-shadow: 0 5px 8px rgba(62, 58, 57, .22);
  }

  .service-link-banner__button {
    --service-link-arrow-head-width: 14px;
    --service-link-arrow-head-height: 7px;
    z-index: 2;
    width: min(360px, calc(100% - 24px));
    min-height: 52px;
    margin: 0 0 0 auto;
    padding: 12px 20px;
    background: var(--base_color_b2);
    clip-path: none;
    box-shadow: 0 7px 10px rgba(62, 58, 57, .24);
    filter: none;
    font-size: 14px;
    letter-spacing: .07em;
  }

  .service-link-banner__button::before {
    display: none;
  }

  .service-link-banner__button .jp-btn {
    gap: 24px;
  }

  .service-link-banner__button .jp-btn::before {
    width: 24px;
  }

  .service-link-banner__button .jp-btn::after {
    width: 34px;
    height: 7px;
  }

  .service-link-banner__button .jp-btn b,
  .service-link-banner__button .jp-btn>span {
    font-size: 18px;
    letter-spacing: .18em;
    margin-right: calc(-.18em - 10px);
  }

  .service-list-banner .service-link-banner__button .jp-btn b {
    letter-spacing: .06em;
  }

  .service-list-banner.service-link-banner .service-link-banner__lead {
    gap: .42em;
    padding: 0 10px;
    font-size: clamp(11px, 3.15vw, 15px);
    font-weight: 400;
    letter-spacing: .06em;
    white-space: nowrap;
  }

  @media (min-width: 680px) {
    .service-link-banner {
      grid-template-columns: minmax(0, 1fr) minmax(300px, 44.4%);
      gap: 0;
      min-height: 54px;
      padding-bottom: 0;
      background: #9ae1f0;
      box-shadow: 0 7px 5px rgba(62, 58, 57, .35);
    }

    .service-link-banner::before,
    .service-link-banner__lead {
      min-height: 54px;
      font-size: 13px;
      letter-spacing: .08em;
      box-shadow: none;
    }

    .service-link-banner__button {
      width: 100%;
      min-height: 54px;
      margin: 0;
      padding: 8px 22px 8px 34px;
      background: transparent;
      box-shadow: none;
      font-size: 13px;
      filter: none;
    }

    .service-link-banner__button::before {
      display: block;
      clip-path: polygon(18px 0, 100% 0, 100% 100%, 0 100%);
      filter: drop-shadow(6px 7px 5px rgba(62, 58, 57, .35)) drop-shadow(0 12px 8px rgba(62, 58, 57, .18));
    }

    .service-link-banner__button .jp-btn {
      gap: 22px;
    }

    .service-link-banner__button .jp-btn::before {
      width: 20px;
    }

    .service-link-banner__button .jp-btn::after {
      width: 28px;
    }

    .service-link-banner__button .jp-btn b,
    .service-link-banner__button .jp-btn>span {
      font-size: 16px;
      letter-spacing: .14em;
      margin-right: calc(-.14em - 8px);
    }

    .service-list-banner .service-link-banner__button .jp-btn b {
      letter-spacing: .04em;
    }
  }

  .service-single__detail-block--flow {
    margin-top: var(--service-single-section-space);
  }

  .service-single__detail-block--gradient-strengths {
    margin-top: 150px;
  }

  .service-single__detail-block--wide-image {
    aspect-ratio: 4 / 3;
    margin-top: 48px;
  }

  .service-single__detail-block--wide-image:has(+ .service-single__detail-block--gradient-strengths) {
    margin-top: 150px;
  }

  .service-single__detail-block--wide-image+.service-single__detail-block--gradient-strengths {
    margin-top: -70px;
  }

  .service-single__point-item {
    padding: 20px 18px 20px 62px;
  }

  .service-single__detail-block--gradient-strengths {
    display: block;
    min-height: auto;
    padding: 32px 23px 0px;
    background:
      linear-gradient(180deg, transparent 0 260px, #fff 260px 100%),
      url("../images/service/detail/common/service-gradient-bg.webp") center top / 100% 260px no-repeat;
  }

  .service-single__detail-block--gradient-strengths::before {
    top: 45px;
    left: 23px;
    width: 150px;
    bottom: auto;
    aspect-ratio: 301 / 58;
    content: "";
    background: url("../images/common/kship-horizontal-white.png") center / contain no-repeat;
    opacity: .5;
  }

  .service-single__detail-block--gradient-strengths::after {
    content: none;
  }

  .service-single__detail-block--gradient-strengths .service-single__block-title-wrapper {
    display: none;
  }

  .service-single__points-badge {
    position: relative;
    z-index: 1;
    display: block;
    width: min(270px, 76vw);
    margin: 76px auto 54px;
    transform: none;
  }

  .service-single__detail-block--gradient-strengths .service-single__points-badge {
    position: relative;
    display: block;
    top: auto;
    left: auto;
    width: min(270px, 76vw);
    margin: 76px auto 54px;
    transform: none;
  }

  .service-single__detail-block--gradient-strengths .service-single__points-badge::before {
    content: none;
  }

  .service-single__detail-block--gradient-strengths .service-single__points-badge::after {
    position: absolute;
    left: -12px;
    bottom: 8px;
    width: 100px;
    aspect-ratio: 972 / 1132;
    content: "";
    background: url("../images/service/detail/common/strengths-person.png") center / contain no-repeat;
  }

  .service-single__detail-block--gradient-strengths.is-motion-ready::before,
  .service-single__detail-block--gradient-strengths.is-motion-ready.is-visible::before {
    opacity: .5;
    transform: none;
    filter: none;
    animation: none;
  }

  .service-single__detail-block--gradient-strengths.is-motion-ready .service-single__points-badge {
    transform: translateY(46px) scale(.72) rotate(-12deg);
  }

  .service-single__detail-block--gradient-strengths.is-motion-ready.is-visible .service-single__points-badge {
    transform: translateY(0) scale(1) rotate(0);
  }

  .service-single__detail-block--gradient-strengths.is-motion-ready .service-single__points-badge::after {
    opacity: 0;
    transform: translateY(52px) scale(.9);
    filter: blur(8px);
  }

  .service-single__detail-block--gradient-strengths.is-motion-ready.is-visible .service-single__points-badge::after {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
    animation: serviceStrengthsPersonSpIn .86s 1s cubic-bezier(.22, 1, .36, 1) both;
  }

  .service-single__detail-block--gradient-strengths.is-motion-ready.is-visible .service-single__points-badge {
    animation: serviceStrengthsBadgeSpIn .78s .48s cubic-bezier(.22, 1, .36, 1) both;
  }

  .service-single__points-badge img {
    display: block;
    width: 100%;
    height: auto;
  }

  .service-single__detail-block--gradient-strengths .service-single__points-grid {
    display: grid;
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    grid-template-columns: 1fr;
    gap: 45px;
    padding: 0;
    margin: clamp(40px, calc(135px - 16vw), 72px) 0 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .service-single__detail-block--gradient-strengths .service-single__points-grid::before {
    content: none;
  }

  .service-single__detail-block--gradient-strengths:has(.service-single__points-grid .service-single__point-item:nth-child(3):last-child) {
    padding-bottom: 44px;
  }

  .service-single__detail-block--gradient-strengths:has(.service-single__points-grid .service-single__point-item:nth-child(3):last-child) .service-single__points-grid,
  .service-single__detail-block--gradient-strengths .service-single__points-grid--3 {
    gap: 45px;
    margin-top: clamp(24px, calc(92px - 14vw), 52px);
  }

  .service-single__detail-block--gradient-strengths .service-single__points-badge--3 {
    margin-bottom: 0 !important;
  }

  .service-single__detail-block--gradient-strengths .service-single__points-grid--3 {
    gap: 45px !important;
    margin-top: clamp(40px, calc(135px - 16vw), 72px) !important;
  }

  .service-single__detail-block--gradient-strengths .service-single__point-item {
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .service-single__point-label {
    left: 16px;
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .service-single__detail-block--gradient-strengths .service-single__point-label {
    top: 4px;
    left: 0;
    width: 22px;
    height: 22px;
    font-size: 0;
    box-shadow: none;
  }

  .service-single__detail-block--gradient-strengths .service-single__point-label::before {
    font-size: 13px;
  }

  .service-single__detail-block--gradient-strengths .service-single__point-item h3 {
    min-height: 22px;
    margin: 0 0 20px;
    padding-left: 31px;
    color: var(--base_color_main);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.45;
    letter-spacing: .03em;
  }

  .service-single__point-item p,
  .service-single__flow-item p {
    font-size: 14px;
  }

  .service-single__detail-block--gradient-strengths .service-single__point-item p {
    color: var(--footer_color_sub);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.85;
    letter-spacing: .02em;
  }

  .service-single__detail-block--gradient-strengths .service-single__point-item p+p {
    margin-top: 8px;
  }

  @media (prefers-reduced-motion: reduce) {

    .service-single__detail-block--gradient-strengths.is-motion-ready .service-single__points-badge,
    .service-single__detail-block--gradient-strengths.is-motion-ready.is-visible .service-single__points-badge {
      transform: none;
    }

    .service-single__detail-block--gradient-strengths.is-motion-ready .service-single__points-badge::after {
      opacity: 1;
      filter: none;
      transform: none;
      animation: none;
    }
  }

  .service-single__detail-block--merits {
    width: 100%;
    margin-bottom: 68px;
  }

  .service-single__detail-block--merits .service-single__block-title-wrapper {
    margin-bottom: 44px;
  }

  .heading-accent--oval {
    width: auto;
    min-width: 170px;
    max-width: calc(100vw - 78px);
    min-height: 58px;
    padding: 14px 24px;
    letter-spacing: .12em;
  }

  .service-single__accent-bullet-list {
    gap: 32px;
    margin-bottom: 100px;
  }

  .service-single__accent-bullet-list li {
    padding-left: 0;
    color: var(--base_color_b2);
    font-size: 15px;
    font-weight: 900;
    line-height: 1.8;
  }

  .service-single__accent-bullet-list li::before {
    top: .675em;
    left: 0;
    width: 36px;
    height: 11px;
    transform: translateY(-50%);
  }

  .service-single__accent-bullet-list li strong,
  .service-single__accent-bullet-list li span {
    display: block;
  }

  .service-single__accent-bullet-list li strong {
    margin-bottom: 6px;
    padding-left: 48px;
    color: var(--base_color_footer);
    font-size: 18px;
    line-height: 1.35;
  }

  .service-single__accent-bullet-list li span {
    color: var(--base_color_b2);
    font-weight: 500;
  }

  .service-single__change-table {
    display: grid;
    grid-template-columns: 1fr;
    gap: 45px;
    width: var(--content_width);
    margin: 0 auto;
    font-size: 18px;
    text-align: center;
  }

  .service-single__change-column {
    padding: 0 18px;
  }

  .service-single__change-column::before,
  .service-single__change-column::after {
    top: 26px;
    bottom: 0;
  }

  .service-single__change-heading {
    min-height: 52px;
    margin-bottom: 24px;
    font-size: 16px;
    letter-spacing: .02em;
  }

  .service-single__change-list {
    gap: 18px;
    min-height: 0;
    padding: 4px 0 0;
    line-height: 1.5;
    font-size: 15px;
  }

  .service-single__overseas-message {
    margin-top: 45px;
    padding: 18px 0 10px;
    text-align: center;
  }

  .service-single__overseas-message h3 {
    margin-bottom: 20px;
    font-size: 18px;
    text-align: center;
  }

  .service-single__overseas-message p {
    font-size: 16px;
    line-height: 2;
  }

  .service-single__overseas-message p span {
    padding-right: 6px;
    padding-left: 6px;
  }

  .service-single__flow-note-sp {
    width: var(--content_width);
    margin: 0 auto;
  }

  .service-single__flow-item {
    padding: 20px 12px 20px 58px;
  }

  .service-single__flow-item::before {
    left: 12px;
    font-size: 18px;
  }

  .service-single__desc-section {
    clip-path: ellipse(190% 100% at 50% 0%);
  }

  .service-single__desc-title {
    font-size: 20px;
  }

  .service-single__desc-item h3 {
    font-size: 16px;
    letter-spacing: .16em;
  }

  .service-single__related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Recruit Page */
.recruit-page {
  overflow-x: clip;
  background: #f7f7f7;
}

.recruit-page__hero {
  position: relative;
  overflow: hidden;
  background: var(--base_color_w);
}

.recruit-page__hero picture,
.recruit-page__hero img {
  width: 100%;
}

.recruit-page__hero picture {
  display: block;
}

.recruit-page__hero img {
  aspect-ratio: 1921 / 941;
  object-fit: cover;
  object-position: center;
}

.recruit-page__hero-scroll {
  z-index: 2;
}

.recruit-page__hero-message--pc {
  display: none;
}

.lower-hero-message {
  padding: 22px 20px 22px;
  color: var(--base_color_sub);
  text-align: center;
  background: var(--base_color_w);
}

.lower-hero-message h1 {
  display: grid;
  justify-items: center;
  gap: 4px;
  margin: 0;
  font-size: clamp(20px, 2.9vw, 34px);
  font-weight: 900;
  line-height: 1.7;
}

.lower-hero-message :is(b, em) {
  font-style: normal;
}

.recruit-page__breadcrumb {
  width: var(--content_width);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 8px;
  padding: 20px 0 0;
  margin: 0 auto;
  color: #9b9b9b;
  font-size: 15px;
  line-height: 1.6;
}

.recruit-page__breadcrumb a {
  color: var(--base_color_main);
  text-decoration: none;
}

.recruit-page__breadcrumb span {
  display: inline-flex;
  align-items: center;
}

.recruit-heading {
  margin-bottom: 0;
  text-align: center;
}

.recruit-page__intro {
  background: var(--base_color_w);
  padding-bottom: 45px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .recruit-page__intro {
    padding-bottom: 0px;
  }
}

.recruit-page__message {
  padding: 36px 0 76px;
  background: var(--base_color_w);
}

.recruit-page__message-panel {
  display: grid;
  width: min(1120px, 100%);
  margin: 46px auto 0;
  background: #f7f7f7;
}

.recruit-page__message-text {
  display: grid;
  align-content: center;
  width: auto;
  padding: 34px 28px 0;
  margin: 0;
  font-size: 16px;
}

.recruit-page__message-text p {
  margin: 0 0 1.25em;
}

.recruit-page__message-text p:last-child {
  margin-bottom: 0;
}

.recruit-page__signature {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 80px 20px;
  color: var(--base_color_b2);
  text-align: center;
}

.recruit-page__signature p {
  margin: 0;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
}

.recruit-page__signature img {
  width: 92px;
}

.recruit-page__requirements {
  padding: 72px 0 66px;
  text-align: center;
  background: var(--base_color_w);
}

.recruit-page__requirements p {
  margin: 34px auto 0;
  color: var(--base_color_main);
  font-size: 22px;
  font-weight: 500;
  line-height: 2;
}

.recruit-page__requirements-lead a {
  color: var(--base_color_orange);
  text-decoration: none;
}

.recruit-page__requirements-lead a:is(:hover, :focus-visible) {
  text-decoration: underline;
  text-underline-offset: .18em;
}

.recruit-page__movie-box {
  position: relative;
}

.recruit-page__nav {
  display: grid;
  gap: 24px;
  justify-items: center;
  padding: 0 20px 72px;
  background: var(--base_color_w);
}

.recruit-page__nav a {
  display: grid;
  place-items: center;
  width: 180px;
  min-height: 28px;
  color: var(--base_color_w);
  font-family: "Orator Std", "Courier New", monospace;
  font-size: 15px;
  letter-spacing: 0.1em;
  background: var(--base_color_b2);
  border-radius: 999px;
}

.recruit-page__nav a+a {
  color: #cfcfcf;
  background: var(--base_color_w);
  border: 1px solid #d8d8d8;
}

.lower-hero-message .fv__title {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;
  font-size: inherit;
  line-height: inherit;
  background: transparent;
  box-shadow: none;
}

.recruit-page__hero {
  width: 100%;
  height: 300px;
}

.recruit-page__hero picture,
.recruit-page__hero img {
  width: 100%;
  height: 100%;
}

.recruit-page__hero img {
  aspect-ratio: 1921 / 941;
  object-fit: cover;
  object-position: center 35%;
}

.recruit-page__hero-message h1 {
  justify-items: center;
  gap: 10px;
  font-size: clamp(20px, 2.9vw, 34px);
  letter-spacing: .04em;
  line-height: 1.45;
}

.recruit-page__hero-message .fv__title-accent {
  font-size: 1.12em;
}

.recruit-page__hero-message h1>span {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  color: var(--base_color_sub);
  font-weight: 900;
  background: transparent;
}

.recruit-page__breadcrumb {
  width: var(--content_width);
  padding: 14px 0 0;
  font-size: 14px;
}

.recruit-page__intro {
  width: var(--content_width);
  background: #f7f7f7;
}

.recruit-page__message {
  padding: 0 0 62px;
  background: #f7f7f7;
}

.recruit-page__message-panel {
  width: var(--content_width);
  margin-top: 38px;
  background: var(--base_color_w);
  box-shadow: 0 22px 30px rgba(0, 0, 0, 0.12);
}

.recruit-page__message-text {
  padding: 38px 30px 60px;
}

.recruit-page__requirements,
.recruit-page__nav {
  width: var(--content_width);
  margin: 0 auto;
  background: #f7f7f7;
}

.recruit-page__requirements {
  padding: 60px 0 58px;
}

.recruit-page__requirements p {
  font-size: 18px;
  line-height: 1.75;
}

.recruit-page__nav {
  padding-bottom: 54px;
}

.recruit-page__nav a {
  width: 148px;
  min-height: 28px;
}

@media (min-width: 768px) {
  .recruit-page {
    background: var(--base_color_w);
  }

  .recruit-page__hero {
    height: calc(100svh - 188.8px);
  }

  .recruit-page__hero picture,
  .recruit-page__hero img {
    height: 100%;
  }

  .recruit-page__hero img {
    max-width: none;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center 40%;
  }

  @media (max-width: 1360px) {
    .recruit-page__hero {
      height: clamp(468px, calc(100svh - 272px), 668px);
    }
  }

  .recruit-page__hero-message--pc {
    position: absolute;
    right: 0;
    bottom: 104px;
    display: block;
    z-index: 1;
    width: 100%;
    padding: 0;
    margin: 0;
    background: transparent;
  }

  .recruit-page__hero-message--sp {
    display: none;
  }

  .lower-hero-message h1 {
    justify-items: end;
    gap: 2px;
  }

  .lower-hero-message .fv__title {
    display: inline;
    width: auto;
    max-width: 100%;
    padding: .08em .22em .14em;
    margin: 0 .04em;
    font-size: inherit;
    line-height: inherit;
    background: rgba(255, 255, 255, .92);
    box-shadow: 8px 0 0 rgba(255, 255, 255, .92), -8px 0 0 rgba(255, 255, 255, .92);
  }

  .recruit-page__hero-message .fv__title--line {
    white-space: nowrap;
  }

  .recruit-page__hero-message h1 {
    justify-items: end;
    gap: clamp(10px, 1vw, 16px);
    font-size: clamp(20px, 2.9vw, 34px);
    line-height: 1.45;
  }

  .recruit-page__hero-message .fv__title-accent {
    font-size: 1.12em;
  }

  .recruit-page__hero-message h1>span {
    display: inline;
    width: auto;
    max-width: 100%;
    padding: .08em .22em .14em;
    color: inherit;
    background: rgba(255, 255, 255, .92);
  }

  .recruit-page__breadcrumb {
    width: var(--content_width);
    padding-top: 0;
    margin-top: -66px;
    font-size: 15px;
  }

  .recruit-page__intro {
    width: 100%;
    background: var(--base_color_w);
  }

  .recruit-page__message {
    padding: 0 0 112px;
    background: var(--base_color_w);
  }

  .recruit-page__message-panel {
    grid-template-columns: minmax(0, 1fr);
    align-items: stretch;
    width: min(860px, 100%);
    margin-top: 0;
    background: #f7f7f7;
    box-shadow: 0 0 0 100vmax #f7f7f7;
    clip-path: inset(0 -100vmax);
  }

  .recruit-page__message-text {
    grid-column: 1;
    grid-row: 1;
    min-height: 0;
    padding: 80px 70px 88px;
    background: #f7f7f7;
  }

  .recruit-page__signature {
    grid-column: 1;
    grid-row: 2;
    justify-items: end;
    padding: 0 70px 64px;
    text-align: right;
    background: #f7f7f7;
  }

  @media (max-width: 1160px) {
    .recruit-page__message-panel {
      width: min(860px, var(--content_width));
    }

    .recruit-page__message-text {
      padding: 80px 54px 100px;
    }

    .recruit-page__signature {
      padding: 0 54px 54px;
    }
  }

  .recruit-page__requirements {
    padding: 102px 0 112px;
    width: 100%;
    margin: 0;
    background: var(--base_color_w);
  }

  .recruit-page__requirements p {
    font-size: 22px;
    line-height: 2;
  }

  .recruit-page__nav {
    grid-template-columns: 180px 180px;
    justify-content: space-between;
    width: var(--content_width);
    padding: 0 0 92px;
    margin: 0 auto;
    background: var(--base_color_w);
  }

  .recruit-page__nav a+a {
    justify-self: end;
  }

  .recruit-page__nav a {
    width: 180px;
    min-height: 28px;
  }
}

/* Contact Page */
.contact-page {
  overflow-x: clip;
  background: var(--base_color_w);
}

.contact-hero {
  position: relative;
  overflow: hidden;
  background: var(--base_color_w);
}

.contact-hero.seminar-cta-stage:has(.seminar-cta) {
  overflow: hidden;
}

.contact-hero picture,
.contact-hero img {
  width: 100%;
}

.contact-hero picture {
  display: block;
}

.contact-hero img {
  display: block;
  aspect-ratio: 1921 / 941;
  object-fit: cover;
  object-position: center;
}

.contact-hero__copy {
  position: absolute;
  z-index: 2;
  top: clamp(34px, 5.4vw, 72px);
  left: clamp(20px, 4.8vw, 76px);
  width: min(760px, calc(100% - 40px));
  padding: 0;
  margin: 0;
  color: var(--base_color_w);
  text-align: left;
  background: transparent;
  pointer-events: none;
}

.contact-hero__copy h1 {
  display: grid;
  justify-items: start;
  gap: 2px;
  margin: 0;
  color: inherit;
  font-size: clamp(20px, 2.9vw, 34px);
  font-weight: 900;
  letter-spacing: .04em;
  line-height: 1.45;
  text-shadow: 0 3px 12px rgba(0, 42, 31, .42);
}

.contact-hero__copy .fv__title {
  display: block;
  max-width: 100%;
  padding: 0;
  color: inherit;
  background: transparent;
  box-shadow: none;
}

.contact-hero__copy .fv__title-accent {
  color: inherit;
  font-size: 1em;
  font-style: normal;
}

.contact-hero__copy--sp {
  display: none;
}

.contact-breadcrumb {
  width: var(--content_width);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 8px;
  padding: 20px 0 0;
  margin: 0 auto;
  color: #9b9b9b;
  font-size: 15px;
  line-height: 1.6;
}

.contact-breadcrumb a {
  color: var(--base_color_main);
  text-decoration: none;
}

.contact-breadcrumb span {
  display: inline-flex;
  align-items: center;
}

.contact-intro {
  width: var(--content_width);
  margin: 0 auto;
  text-align: center;
}

.contact-intro__lead {
  width: 100%;
  margin: 0 auto;
  color: var(--base_color_sub);
  font-size: clamp(16px, 1.18vw, 20px);
  font-weight: 900;
  line-height: 2.05;
  overflow-wrap: anywhere;
  text-shadow: 1.5px 1.5px 0 rgba(249, 235, 44, .68);
}

.contact-intro__lead em {
  color: var(--base_color_orange);
  font-style: normal;
}

.contact-notice {
  width: var(--content_width);
  margin: 0 auto;
  color: var(--base_color_main);
  text-align: center;
  padding-top: 0px;
}

.contact-form-section h2 {
  display: block;
  margin: 0;
  color: var(--base_color_main);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 400;
  letter-spacing: 0.38em;
  line-height: 1.45;
}

.contact-notice h2 {
  margin-bottom: 54px;
}

.contact-notice p {
  width: min(1120px, 100%);
  margin: 0 auto 16px;
  font-size: clamp(16px, 1.18vw, 20px);
  font-weight: 500;
  line-height: 2;
  overflow-wrap: anywhere;
}

.contact-notice p+p {
  margin-top: 18px;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.6;
}

.contact-privacy {
  scroll-margin-top: calc(var(--js-header-height, 84px) + 24px);
  padding: 0 0 0;
  text-align: center;
  background: #f7f7f7;
}

.contact-privacy h2 {
  display: grid;
  padding: 0 20px 48px;
  background: var(--base_color_w);
}

.contact-privacy__document {
  position: relative;
  width: min(650px, var(--content_width));
  padding: 54px 0 76px;
  margin: 0 auto;
  color: var(--base_color_sub);
  font-size: 15px;
  line-height: 1.7;
  text-align: left;
  overflow-wrap: anywhere;
}

.contact-privacy__check-area {
  position: relative;
}

.contact-privacy__check-area::after {
  content: "→\A→\A\Aご\A確\A認\Aく\Aだ\Aさ\Aい\A\A→\A→";
  position: absolute;
  top: 50%;
  right: calc(100% + 58px);
  color: #E94820;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
  text-align: center;
  white-space: pre;
  margin-right: 10px;
  transform: translateY(-50%);
}

.contact-privacy__check-area::before {
  content: "";
  position: absolute;
  top: 26px;
  bottom: 26px;
  right: calc(100% + 24px);
  width: 15px;
  border-top: 1px solid var(--base_color_sub);
  border-bottom: 1px solid var(--base_color_sub);
  border-left: 1px solid var(--base_color_sub);
}

.contact-privacy__document h3 {
  margin: 0 0 2px;
  font-size: 15px;
  font-weight: 900;
}

.contact-privacy__document h3::before {
  content: "■";
}

.contact-privacy__document-window {
  margin-top: 42px !important;
}

.contact-privacy__document-window::before {
  display: none;
}

.contact-privacy__document p {
  margin: 0 0 28px;
}

@media (max-width: 900px) {
  .contact-privacy__check-area {
    padding-top: 64px;
  }

  .contact-privacy__check-area::after {
    content: "↓↓　ご確認ください。　↓↓";
    top: 0;
    right: 0;
    left: 0;
    font-size: 13px;
    line-height: 1.4;
    text-align: center;
    transform: none;
  }

  .contact-privacy__check-area::before {
    display: none;
  }
}

.contact-consent {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 18px 20px 20px;
  color: var(--base_color_b2);
  font-size: 15px;
  line-height: 1.5;
  text-align: center;
  background: #FFFBC8;
}

.contact-consent p {
  margin: 0;
}

.contact-consent label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--base_color_b2);
  font-weight: 500;
}

.contact-form-consent {
  display: grid;
  justify-items: center;
  gap: 8px;
  margin: 34px 0 22px;
  color: var(--base_color_b2);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}

.contact-form-consent label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact-form-consent a {
  color: var(--base_color_main);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-consent-error {
  margin: 0;
  color: var(--base_color_required);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}

.contact-form-section {
  padding: 0 0 142px;
  text-align: center;
  background: var(--base_color_form_green);
}

.contact-form-section h2 {
  padding: 120px 20px 45px;
  margin: 0 0 78px;
  background: var(--base_color_w);
}

.contact-form-section .service-archive__divider {
  color: #57b76d;
  font-size: clamp(20px, 3.6vw, 38px);
  font-weight: 500;
  letter-spacing: .14em;
  line-height: 1.45;
  white-space: nowrap;
}

.contact-form-section .service-archive__divider>span {
  display: inline-block;
  max-width: 100%;
  white-space: nowrap;
}

.contact-form-section__title-sp {
  display: none !important;
}

@media only screen and (max-width: 768px) {

  .contact-privacy .heading-accent br.sp,
  .contact-consent br.sp {
    display: block !important;
  }
}

.contact-form-card {
  width: var(--content_width);
  padding: 60px 70px 66px;
  margin: 0 auto;
  text-align: left;
  background: var(--base_color_w);
  border-radius: 8px;
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.contact-form-card__embed,
.contact-form-card .wpcf7,
.contact-form-card .wpcf7-form {
  width: 100%;
}

.contact-form__note {
  margin: 0 0 26px;
  color: var(--base_color_b2);
  font-size: 15px;
  font-weight: 500;
}

.contact-form__note>span {
  display: inline-block;
  margin-left: 10px;
  white-space: nowrap;
}

.contact-form__required-mark,
.contact-form__warning,
.contact-form-card .wpcf7-not-valid-tip {
  color: var(--base_color_required) !important;
}

.contact-form__required-mark,
.contact-form-card .wpcf7-not-valid-tip,
.contact-form-consent a {
  font-weight: 700;
}

.contact-form__checks {
  display: block;
  padding: 0;
  margin: 0 0 32px;
  border: 0;
}

.contact-form__checks .wpcf7-checkbox,
.contact-form__checks .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 24px;
  width: 100%;
}

.contact-form__checks label,
.contact-form-card .wpcf7-checkbox .wpcf7-list-item label,
.contact-form-card .wpcf7-radio .wpcf7-list-item label,
.contact-form-card .wpcf7-acceptance .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 20px;
  color: var(--base_color_b2);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  overflow-wrap: normal;
  word-break: keep-all;
}

.contact-form input[type="checkbox"],
.contact-consent input[type="checkbox"],
.contact-form-consent input[type="checkbox"],
.contact-form-card input[type="checkbox"] {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--base_color_green);
}

.contact-form__field,
.contact-form-card .wpcf7-form>p>label,
.contact-form-card .wpcf7-form-control-wrap[data-name="message"]+label {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
  color: var(--base_color_b2);
  font-size: 15px;
  font-weight: 700;
}

.contact-form-card .wpcf7-form>p {
  margin: 0 0 18px;
  color: var(--base_color_b2);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.65;
}

.contact-form-card .wpcf7-form>p>label {
  margin-bottom: 0;
}

.contact-form-card .wpcf7-form-control-wrap {
  display: block;
  min-width: 0;
}

.contact-form__field--textarea {
  align-items: start;
  margin-bottom: 22px;
}

.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="email"],
.contact-form textarea,
.contact-form-card input[type="text"],
.contact-form-card input[type="tel"],
.contact-form-card input[type="email"],
.contact-form-card input[type="url"],
.contact-form-card textarea,
.contact-form-card select {
  width: 100%;
  min-height: 44px;
  padding: 9px 12px;
  color: var(--base_color_b2);
  font-family: inherit;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  background: var(--base_color_w);
  border: 1px solid var(--base_color_form_green);
  border-radius: 4px;
}

.contact-form textarea,
.contact-form-card textarea {
  min-height: 210px;
  resize: vertical;
}

.contact-form__warning {
  margin: 48px 0 34px;
  color: var(--base_color_required) !important;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.75;
  text-align: center;
}

.contact-form-card .wpcf7-form>p.contact-form__warning {
  margin: 48px 0 0;
  color: var(--base_color_required) !important;
  text-align: center;
}

.contact-form-card .wpcf7-form>p.contact-form__warning * {
  color: var(--base_color_required) !important;
}

.contact-form-card .wpcf7-form>p.contact-form__warning+p {
  margin: 0 0 34px;
  color: var(--base_color_required) !important;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.75;
  text-align: center;
}

.contact-form-card .wpcf7-form>p.contact-form__warning+p * {
  color: var(--base_color_required) !important;
}

.contact-form__submit,
.contact-form-card input[type="submit"],
.contact-form-card button[type="submit"] {
  appearance: none;
  -webkit-appearance: none;
  display: grid;
  place-items: center;
  width: min(240px, 100%);
  min-height: 46px;
  margin: 0 auto;
  color: var(--base_color_yellow);
  -webkit-text-fill-color: var(--base_color_yellow);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .08em;
  background: var(--base_color_form_green);
  border: 2px solid var(--base_color_form_green);
  border-radius: 999px;
  box-shadow: 0 5px 0 #5f965c, 0 13px 18px rgba(0, 0, 0, 0.16);
  cursor: pointer;
  transition:
    color .25s ease,
    background-color .25s ease,
    box-shadow .25s ease,
    transform .25s ease;
}

.contact-form__submit:is(:hover, :focus-visible),
.contact-form-card input[type="submit"]:is(:hover, :focus-visible),
.contact-form-card button[type="submit"]:is(:hover, :focus-visible) {
  color: var(--base_color_form_green);
  -webkit-text-fill-color: var(--base_color_form_green);
  background: var(--base_color_w);
  box-shadow: 0 3px 0 #5f965c, 0 9px 14px rgba(0, 0, 0, 0.14);
  transform: translateY(2px);
  outline: none;
}

.contact-form__submit:disabled,
.contact-form-card input[type="submit"]:disabled,
.contact-form-card button[type="submit"]:disabled {
  color: #f3f3f3;
  -webkit-text-fill-color: #f3f3f3;
  background: #9b9b9b;
  border-color: #9b9b9b;
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

.contact-form__checks label,
.contact-form-card .wpcf7-checkbox .wpcf7-list-item label,
.contact-form-card .wpcf7-radio .wpcf7-list-item label,
.contact-form-card .wpcf7-acceptance .wpcf7-list-item label {
  display: inline-flex;
  grid-template-columns: none;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.contact-form-card .wpcf7-list-item {
  display: block;
  width: max-content;
  max-width: 100%;
  margin: 0;
}

.contact-form-card .wpcf7-form p {
  overflow-wrap: anywhere;
}

.contact-form-card .wpcf7-form br {
  display: none;
}

.contact-form-card .wpcf7-response-output {
  margin: 26px 0 0;
  padding: 14px 16px;
  color: var(--base_color_b2);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
}

.contact-form-card .wpcf7 form.invalid .wpcf7-response-output,
.contact-form-card .wpcf7 form.unaccepted .wpcf7-response-output,
.contact-form-card .wpcf7 form.payment-required .wpcf7-response-output {
  color: var(--base_color_required);
  border-color: var(--base_color_required);
}

.is-contact-confirm-open {
  overflow: hidden;
}

.contact-confirm-modal[hidden] {
  display: none;
}

.contact-confirm-modal {
  position: fixed;
  z-index: 10000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}

.contact-confirm-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .42);
}

.contact-confirm-modal__dialog {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  width: min(720px, 100%);
  max-height: min(760px, calc(100svh - 48px));
  padding: 34px 36px 36px;
  color: var(--base_color_b2);
  background: var(--base_color_w);
  border-radius: 8px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, .24);
  overflow: auto;
}

.contact-confirm-modal__dialog h2 {
  margin: 0;
  color: var(--base_color_main);
  font-size: clamp(20px, 2.1vw, 28px);
  font-weight: 900;
  line-height: 1.45;
  text-align: center;
}

.contact-confirm-modal__dialog p {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
  text-align: center;
}

.contact-confirm-modal__summary {
  display: grid;
  grid-template-columns: minmax(130px, .34fr) minmax(0, 1fr);
  margin: 8px 0 0;
  font-size: 15px;
  line-height: 1.65;
  border-top: 1px solid var(--base_color_form_green);
  border-left: 1px solid var(--base_color_form_green);
}

.contact-confirm-modal__summary dt,
.contact-confirm-modal__summary dd {
  min-width: 0;
  padding: 12px 14px;
  margin: 0;
  border-right: 1px solid var(--base_color_form_green);
  border-bottom: 1px solid var(--base_color_form_green);
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}

.contact-confirm-modal__summary dt {
  color: var(--base_color_main);
  font-weight: 900;
  background: #f7f7f7;
}

.contact-confirm-modal__summary dd {
  font-weight: 500;
  background: var(--base_color_w);
}

.contact-confirm-modal__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 6px;
}

.contact-confirm-modal__button {
  appearance: none;
  -webkit-appearance: none;
  display: grid;
  place-items: center;
  width: min(190px, 100%);
  min-height: 44px;
  padding: 8px 20px;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .08em;
  border-radius: 999px;
  cursor: pointer;
}

.contact-confirm-modal__button--back {
  color: var(--base_color_b2);
  background: var(--base_color_w);
  border: 2px solid #d8d8d8;
}

.contact-confirm-modal__button--submit {
  color: var(--base_color_yellow);
  background: var(--base_color_form_green);
  border: 2px solid var(--base_color_form_green);
  box-shadow: 0 5px 0 #5f965c, 0 13px 18px rgba(0, 0, 0, 0.16);
}

.contact-page__nav {
  display: grid;
  grid-template-columns: 180px;
  width: var(--content_width);
  padding: 0 0 66px;
  margin: 0 auto;
  background: var(--base_color_w);
}

.contact-page__nav a {
  display: grid;
  place-items: center;
  width: 180px;
  min-height: 28px;
  color: var(--base_color_w);
  font-family: "Orator Std", "Courier New", monospace;
  font-size: 15px;
  letter-spacing: 0.1em;
  background: var(--base_color_b2);
  border-radius: 999px;
}

.contact-page__nav a+a {
  justify-self: end;
  color: #cfcfcf;
  background: var(--base_color_w);
  border: 1px solid #d8d8d8;
}

@media (min-width: 768px) {
  .contact-hero {
    height: calc(100svh - 188.8px);
  }

  .contact-hero picture,
  .contact-hero img {
    height: 100%;
  }

  .contact-hero img {
    max-width: none;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center 40%;
  }

  @media (max-width: 1360px) {
    .contact-hero {
      height: clamp(468px, calc(100svh - 272px), 668px);
    }
  }

  .contact-hero__copy {
    top: clamp(26px, 4vw, 44px);
    left: clamp(24px, 4.8vw, 64px);
    width: min(720px, calc(100% - 48px));
    padding: 0;
    margin: 0;
    background: transparent;
  }

  .contact-hero__copy .fv__title--line {
    white-space: nowrap;
  }

  .contact-breadcrumb {
    padding-top: 0;
    margin-top: -66px;
  }
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 767px) {
  .contact-page {
    background: #f7f7f7;
  }

  .contact-hero {
    width: 100%;
    height: 300px;
  }

  .contact-hero picture,
  .contact-hero img {
    width: 100%;
    height: 100%;
  }

  .contact-hero img {
    aspect-ratio: 1921 / 941;
    object-fit: cover;
    object-position: center 35%;
  }

  .contact-hero img.lower-fv-logopart,
  .recruit-page__hero img.lower-fv-logopart {
    top: 18px;
    right: 10px;
    width: min(36vw, 150px);
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
  }

  .contact-hero__copy--pc {
    display: none;
  }

  .contact-hero__copy--sp {
    display: block;
    position: relative;
    top: auto;
    left: auto;
    z-index: 1;
    width: 100%;
    padding: 22px 20px;
    margin: 0;
    color: var(--base_color_sub);
    text-align: center;
    background: var(--base_color_w);
    pointer-events: auto;
  }

  .contact-hero__copy--sp h1 {
    justify-items: center;
    gap: 5px;
    color: inherit;
    font-size: clamp(16px, 5.4vw, 18px);
    letter-spacing: 0;
    line-height: 1.55;
    text-shadow: none;
  }

  .contact-hero__copy--sp h1>span {
    display: block;
    width: 100%;
    color: var(--base_color_sub);
  }

  .contact-breadcrumb {
    width: var(--content_width);
    padding: 14px 0 0;
    font-size: 14px;
  }

  .contact-intro {
    background: #f7f7f7;
  }

  .contact-intro__lead {
    width: 100%;
    font-size: 15px;
    line-height: 2;
    line-break: anywhere;
    word-break: break-all !important;
    overflow-wrap: anywhere !important;
    white-space: normal !important;
  }

  .contact-notice {
    background: #f7f7f7;
  }

  .contact-notice h2 {
    margin-bottom: 34px;
  }

  .contact-notice p {
    font-size: 15px;
    line-height: 1.9;
    line-break: anywhere;
    word-break: break-all !important;
    overflow-wrap: anywhere !important;
    white-space: normal !important;
  }

  .contact-notice p+p {
    margin-top: 14px;
    font-size: 13px;
    line-height: 1.7;
  }

  .contact-privacy {
    width: 100%;
    margin: 0 auto;
    background: var(--base_color_w);
  }

  .contact-privacy h2 {
    padding: 60px 0 32px;
    background: var(--base_color_w);
  }

  .contact-privacy__document {
    width: min(650px, var(--content_width));
    padding: 44px 0 52px;
    font-size: 14px;
    line-height: 1.65;
    line-break: anywhere;
    word-break: break-all !important;
    overflow-wrap: anywhere !important;
    white-space: normal !important;
  }

  .contact-privacy__check-area {
    padding-top: 64px;
  }

  .contact-privacy__check-area::after {
    content: "↓↓　ご確認ください。　↓↓";
    top: 0;
    right: 0;
    left: 0;
    font-size: 13px;
    line-height: 1.4;
    text-align: center;
  }

  .contact-privacy__check-area::before {
    display: none;
  }

  .contact-privacy__document h3 {
    font-size: 14px;
  }

  .contact-privacy__document p {
    margin-bottom: 24px;
  }

  .contact-consent p {
    max-inline-size: 290px;
    margin-inline: auto;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .contact-consent {
    width: 100%;
    padding: 20px 16px;
    margin: 0 auto;
    font-size: 14px;
    background: #FFFBC8;
  }

  .contact-form-consent {
    margin: 30px 0 20px;
    font-size: 14px;
  }

  .contact-consent-error {
    font-size: 13px;
  }

  .contact-form-section {
    width: 100%;
    padding: 0 0 84px;
    margin: 0 auto;
    background: var(--base_color_form_green);
  }

  .contact-form-section h2 {
    padding: 80px 12px 45px;
    margin-bottom: 42px;
  }

  .contact-form-section .service-archive__divider {
    display: flex;
    justify-content: center;
    width: 100%;
    overflow: hidden;
    font-size: clamp(20px, 5.8vw, 23px);
    letter-spacing: 0;
    text-align: center;
  }

  .contact-form-section__title-pc {
    display: none !important;
  }

  .contact-form-section .contact-form-section__title-sp {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 0px;
    width: auto;
    max-width: 100%;
    margin-inline: auto;
    transform: none;
    white-space: nowrap;
  }

  .contact-form-section__title-sp span {
    display: inline-block;
    width: auto;
    max-width: none;
    margin: 0;
  }

  .contact-form-section__title-bar {
    transform: scaleX(.55);
  }

  .contact-form-card {
    width: var(--content_width);
    padding: 30px 30px 42px;
    border-radius: 4px;
  }

  .contact-form__note {
    font-size: 14px;
  }

  .contact-form__note span {
    margin-left: 0;
  }

  .contact-form__checks {
    margin-bottom: 28px;
  }

  .contact-form__checks .wpcf7-checkbox,
  .contact-form__checks .wpcf7-radio {
    gap: 14px;
  }

  .contact-form__checks label,
  .contact-form-card .wpcf7-list-item label {
    font-size: 14px;
  }

  .contact-form__field,
  .contact-form-card .wpcf7-form>p>label,
  .contact-form-card .wpcf7-form-control-wrap[data-name="message"]+label {
    grid-template-columns: 1fr;
    gap: 7px;
    margin-bottom: 18px;
    font-size: 14px;
  }

  .contact-form__checks label,
  .contact-form-card .wpcf7-checkbox .wpcf7-list-item label,
  .contact-form-card .wpcf7-radio .wpcf7-list-item label,
  .contact-form-card .wpcf7-acceptance .wpcf7-list-item label {
    display: inline-flex;
    grid-template-columns: none;
    margin: 0;
  }

  .contact-form input[type="text"],
  .contact-form input[type="tel"],
  .contact-form input[type="email"],
  .contact-form textarea,
  .contact-form-card input[type="text"],
  .contact-form-card input[type="tel"],
  .contact-form-card input[type="email"],
  .contact-form-card input[type="url"],
  .contact-form-card textarea,
  .contact-form-card select {
    min-height: 44px;
  }

  .contact-form textarea,
  .contact-form-card textarea {
    min-height: 228px;
  }

  .contact-form__warning {
    margin: 38px 0 28px;
    color: var(--base_color_required) !important;
    font-size: 14px;
  }

  .contact-form-card .wpcf7-form>p.contact-form__warning {
    margin: 38px 0 0;
    color: var(--base_color_required) !important;
    text-align: center;
  }

  .contact-form-card .wpcf7-form>p.contact-form__warning * {
    color: var(--base_color_required) !important;
  }

  .contact-form-card .wpcf7-form>p.contact-form__warning+p {
    margin: 0 0 28px;
    color: var(--base_color_required) !important;
    font-size: 14px;
    text-align: center;
  }

  .contact-form-card .wpcf7-form>p.contact-form__warning+p * {
    color: var(--base_color_required) !important;
  }

  .contact-form-card .wpcf7-form>p {
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.7;
  }

  .contact-form-card input[type="submit"],
  .contact-form-card button[type="submit"],
  .contact-form__submit {
    width: min(220px, 100%);
    min-height: 44px;
    font-size: 14px;
  }

  .contact-form-card .wpcf7-response-output {
    font-size: 14px;
  }

  .contact-confirm-modal {
    padding: 18px;
  }

  .contact-confirm-modal__dialog {
    max-height: calc(100svh - 36px);
    padding: 26px 18px 28px;
  }

  .contact-confirm-modal__summary {
    grid-template-columns: 1fr;
    font-size: 14px;
  }

  .contact-confirm-modal__summary dt {
    padding-bottom: 4px;
    border-bottom: 0;
  }

  .contact-confirm-modal__summary dd {
    padding-top: 4px;
  }

  .contact-confirm-modal__button {
    width: min(220px, 100%);
  }

  .contact-page__nav {
    width: 100%;
    margin: 0 auto;
    background: var(--base_color_w);
  }

  .contact-page__nav {
    grid-template-columns: 1fr;
    gap: 24px;
    justify-items: center;
    padding-bottom: 54px;
  }

  .contact-page__nav a,
  .contact-page__nav a+a {
    justify-self: center;
    width: 148px;
  }
}

/* Privacy Page */
.privacy-page {
  padding: 16px 0 0;
  overflow-x: clip;
  background: #F7F8F8;
}

.privacy-page__intro {
  width: var(--content_width);
  padding: 34px 0 30px;
  margin: 0 auto;
}

.privacy-page__intro .section-heading {
  margin-bottom: 0;
}

.privacy-policy {
  width: var(--content_width);
  padding: 34px 18px 38px;
  margin: 0 auto;
  color: var(--base_color_b2);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.9;
  background: var(--base_color_w);
  border-radius: 28px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.02);
}

.privacy-policy__section {
  padding: 0 0 52px;
}

.privacy-policy__section:last-child {
  padding-bottom: 0;
}

.privacy-policy h2,
.privacy-policy__editable h2 {
  position: relative;
  display: block;
  padding: 10px 0 10px 20px;
  margin: 0 0 28px;
  border-bottom: 2px dotted #B20012;
  color: var(--base_color_b2);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.35;
}

.privacy-policy h2::before,
.privacy-policy__editable h2::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  content: "";
  background: #B20012;
}

.privacy-policy h2::after,
.privacy-policy__editable h2::after {
  content: none;
}

.privacy-policy h3,
.privacy-policy__editable h3 {
  margin: 28px 0 8px;
  color: var(--base_color_b2);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.6;
}

.privacy-policy p,
.privacy-policy li,
.privacy-policy__editable p,
.privacy-policy__editable li {
  margin: 0 0 8px;
  font-weight: 400;
}

.privacy-policy ol,
.privacy-policy__editable ol {
  padding-left: 1.5em;
  margin: 12px 0 0;
}

.privacy-policy__alpha {
  list-style: lower-alpha;
}

.privacy-policy__alpha>li::marker {
  font-weight: 900;
}

.privacy-policy__alpha ul {
  padding-left: 1.1em;
  margin: 4px 0 0;
  list-style: disc;
}

.privacy-policy__alpha ul li {
  margin-bottom: 4px;
}

.privacy-policy__signature {
  width: fit-content;
  margin: 26px 0 0 auto !important;
  text-align: left;
}

.privacy-contact {
  margin-top: 24px;
}

.privacy-contact h3 {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 8px 14px 8px 26px;
  margin: 0 0 10px;
  color: var(--base_color_b2);
  font-size: 15px;
  line-height: 1.35;
  border: 2px solid #B20012;
  border-radius: 999px;
}

.privacy-contact h3::before {
  width: 8px;
  height: 8px;
  margin-left: -16px;
  margin-right: 8px;
  content: "";
  background: #B20012;
  border-radius: 50%;
}

.privacy-contact__note {
  color: #B20012;
}

.privacy-page-footer {
  display: grid;
  justify-items: center;
  padding: 52px 0 60px;
  background: #F7F8F8;
}

@media (min-width: 768px) {
  .privacy-page {
    padding-top: 22px;
  }

  .privacy-page__intro {
    padding: 96px 0 110px;
  }

  .privacy-policy {
    width: min(950px, var(--content_width));
    padding: 72px 84px 82px;
    font-size: 15px;
    line-height: 1.95;
    border-radius: 44px;
  }

  .privacy-policy__section {
    padding-bottom: 86px;
  }

  .privacy-policy h2,
  .privacy-policy__editable h2 {
    padding: 12px 0 12px 34px;
    margin-bottom: 42px;
    font-size: 26px;
  }

  .privacy-policy h2::before,
  .privacy-policy__editable h2::before {
    width: 8px;
  }

  .privacy-policy h3,
  .privacy-policy__editable h3 {
    margin-top: 34px;
    font-size: 15px;
  }

  .privacy-policy__signature {
    margin-top: 38px !important;
    margin-right: 18px !important;
  }

  .privacy-page-footer {
    padding: 120px 0;
  }

}

/* Common Breadcrumb */
.service-breadcrumb {
  padding: 15px 0 0;
  background: transparent;
}

:is(.about-breadcrumb, .service-breadcrumb__inner, .recruit-page__breadcrumb, .contact-breadcrumb, .privacy-breadcrumb, .news-single-breadcrumb) {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start !important;
  gap: 0 8px;
  width: var(--content_width);
  max-width: none;
  padding: 14px 0 0;
  margin-right: auto;
  margin-left: auto;
  color: #9b9b9b;
  font-size: 14px;
  line-height: 1.7;
  text-align: left !important;
  background: transparent;
}

.service-breadcrumb__inner {
  padding-top: 0;
}

:is(.about-breadcrumb, .service-breadcrumb__inner, .recruit-page__breadcrumb, .contact-breadcrumb, .privacy-breadcrumb, .news-single-breadcrumb) a {
  color: var(--base_color_main);
  text-decoration: none;
}

:is(.about-breadcrumb, .service-breadcrumb__inner, .recruit-page__breadcrumb, .contact-breadcrumb, .privacy-breadcrumb, .news-single-breadcrumb) span {
  display: inline-flex;
  align-items: center;
  color: inherit;
  font-weight: inherit;
}

@media (min-width: 768px) {
  .service-breadcrumb {
    padding-top: 20px;
  }

  :is(.about-breadcrumb, .service-breadcrumb__inner, .recruit-page__breadcrumb, .contact-breadcrumb, .privacy-breadcrumb, .news-single-breadcrumb) {
    padding-top: 20px;
    font-size: 15px;
    line-height: 1.6;
  }

  .service-breadcrumb__inner {
    padding-top: 0;
  }
}

.news-single-header__inner .news-single-breadcrumb {
  width: 100%;
  padding-top: 0;
}

/* News Archive */
.news-archive-page {
  overflow-x: clip;
  background: #f7f7f7;
}

.news-archive-hero {
  background: var(--base_color_w);
}

.news-archive-hero .page-hero-heading {
  transform: translateY(18px);
}

.news-archive-hero__visual {
  background:
    linear-gradient(90deg, rgba(44, 144, 202, 0.72), rgba(84, 195, 241, 0.62)),
    url("../images/news/archive-hero-sp.webp") center / cover no-repeat;
}

@media (min-width: 768px) {
  .news-archive-hero {
    --about-hero-band: 72px;

    height: 380px;
    min-height: 380px;
  }

  .news-archive-hero .page-hero-heading {
    transform: translateY(42px);
  }

  .news-archive-hero__visual {
    background-image:
      linear-gradient(90deg, rgba(44, 144, 202, 0.72), rgba(84, 195, 241, 0.62)),
      url("../images/news/archive-hero.webp");
    background-position: center, center 86%;
    background-size: auto, cover;
    background-repeat: no-repeat;
  }
}

.news-archive-page__intro {
  background: var(--base_color_w);
}

.news-archive-page__intro-inner {
  display: grid;
  gap: 15px;
  width: var(--content_width);
  padding: 18px 0 24px;
  margin: 0 auto;
}

.news-archive-page__lead {
  margin: 0;
  color: var(--base_color_main);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.5;
}

.news-archive-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0 8px;
  color: #9b9b9b;
  font-size: 15px;
  line-height: 1.6;
}

.news-archive-breadcrumb a {
  color: var(--base_color_main);
}

.news-archive-list-section {
  background: #f7f7f7;
  scroll-margin-top: calc(var(--js-header-height, 84px) + 12px);
}

.news-archive-list-section__inner {
  width: min(720px, var(--content_width));
  margin: 0 auto;
}

.news-archive-page .kship-stacked-logo-block {
  margin-top: 90px;
}

.news-archive-pagination {
  display: flex;
  justify-content: center;
}

.news-archive-pagination--top {
  margin-bottom: 52px;
}

.news-archive-pagination--bottom {
  margin-top: 44px;
  margin-bottom: 100px;
}

.news-archive-pagination .page-numbers {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.news-archive-pagination .page-numbers li {
  display: flex;
  align-items: center;
}

.news-archive-pagination .page-numbers a,
.news-archive-pagination .page-numbers span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 30px;
  padding: 0 10px;
  color: #777;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
}

.news-archive-pagination .page-numbers li+li::before {
  width: 1px;
  height: 24px;
  margin: 0 10px;
  background: rgba(44, 144, 202, 0.52);
  content: "";
}

.news-archive-pagination .page-numbers .current {
  min-width: 56px;
  color: var(--base_color_w);
  background: var(--base_color_main);
}

.news-archive-list {
  display: grid;
  gap: 0;
  width: 100%;
  margin: 0 auto;
}

.news-archive-item {
  background: transparent;
  border-bottom: 1px dashed rgba(44, 144, 202, 0.45);
}

.news-archive-item:first-child {
  border-top: 1px dashed rgba(44, 144, 202, 0.32);
}

.news-archive-item__link {
  position: relative;
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  gap: 10px 20px;
  padding: 22px 18px;
  color: inherit;
  background: transparent;
  text-decoration: none;
}

.news-archive-item__link:hover .news-archive-item__title,
.news-archive-item__link:focus-visible .news-archive-item__title {
  text-decoration: underline;
}

.news-archive-item__date {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  display: block;
  color: var(--base_color_b2);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
}

.news-archive-item__category-slot {
  grid-column: 2;
  grid-row: 1;
  display: block;
  align-self: center;
  width: fit-content;
}

.news-archive-item__category-slot .news-card__category-wrapper {
  min-height: 30px;
  padding: 5px 16px;
  margin-bottom: 0;
}

.news-archive-item__title {
  grid-column: 1 / -1;
  grid-row: 2;
  color: var(--base_color_main);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news-archive-item__excerpt {
  grid-column: 1 / -1;
  grid-row: 3;
  color: var(--base_color_b2);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news-archive-list__empty {
  margin: 0;
  color: var(--base_color_text);
  font-size: 15px;
  text-align: center;
}

@media (min-width: 768px) {
  .news-archive-page__intro-inner {
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 32px;
    width: var(--content_width);
    padding: 24px 0 32px;
    margin: 0 auto;
  }

  .news-archive-page__lead {
    display: block;
    margin-left: 0;
  }

  .news-archive-page__lead {
    font-size: 20px;
  }

  .news-archive-breadcrumb {
    font-size: 15px;
  }

  .news-archive-list-section__inner {
    width: min(950px, var(--content_width));
  }

  .news-archive-pagination--top {
    margin-bottom: 96px;
  }

  .news-archive-pagination--bottom {
    margin-top: 72px;
  }

  .news-archive-pagination .page-numbers a,
  .news-archive-pagination .page-numbers span {
    min-width: 38px;
    height: 34px;
    font-size: 15px;
  }

  .news-archive-pagination .page-numbers li+li::before {
    margin: 0 14px;
  }

  .news-archive-pagination .page-numbers .current {
    min-width: 64px;
  }

  .news-archive-item__link {
    grid-template-columns: max-content max-content minmax(0, 1fr);
    align-items: center;
    gap: 15px 28px;
    padding: 20px 30px 20px;
  }

  .news-archive-item__date {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
    font-size: 17px;
  }

  .news-archive-item__category-slot {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
  }

  .news-archive-item__category-slot .news-card__category-wrapper {
    min-height: 30px;
    padding: 0 32px;
  }

  .news-archive-item__title {
    grid-column: 1 / -1;
    grid-row: 2;
    font-size: 22px;
  }

  .news-archive-item__excerpt {
    font-size: 16px;
  }

}

/* =========================================
   Service Single: Receipt Check
   ========================================= */

.service-single__receipt-lead-list {
  margin: 0 auto 45px;
}

.service-single__receipt-lead-list li {
  padding-left: 0;
  text-align: center;
}

.service-single__receipt-lead-list li::before {
  content: none;
}

.service-single__blue-emphasis {
  width: min(312px, 100%);
  margin: 0 auto 45px;
  color: var(--base_color_main);
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
  text-align: center;
}

.service-single__receipt-image {
  position: relative;
  margin: 0 auto 45px;
}

.service-single__receipt-image img {
  width: 100%;
  height: auto;
}

.service-single__receipt-check-list {
  display: grid;
  gap: 18px;
  width: 100%;
  padding: 0;
  margin: 0 auto 40px;
  color: #3e3a39;
  list-style: none;
  counter-reset: receipt-check;
}

.service-single__receipt-check-list li {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
  counter-increment: receipt-check;
  text-align: left;
}

.service-single__receipt-check-list li::before {
  content: "";
}

.service-single__receipt-check-list li:nth-child(1)::before {
  content: "① ";
}

.service-single__receipt-check-list li:nth-child(2)::before {
  content: "② ";
}

.service-single__receipt-check-list li:nth-child(3)::before {
  content: "③ ";
}

.service-single__receipt-check-list li:nth-child(4)::before {
  content: "④ ";
}

.service-single__receipt-check-list li span {
  color: inherit;
  font-size: .92em;
  font-weight: inherit;
}

.service-single__receipt-check-list li:first-child span {
  color: #e9472c;
  font-weight: 800;
}

.service-single__receipt-analysis {
  margin: 0 auto;
  color: var(--base_color_main);
  text-align: center;
}

.service-single__receipt-analysis h3 {
  margin: 0 0 16px;
  color: var(--base_color_sub);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.75;
  text-shadow: 1.5px 1.5px 0 var(--base_color_yellow);
}

.service-single__receipt-analysis p {
  display: grid;
  gap: 5px;
  margin: 0;
  color: var(--base_color_text);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.75;
}

@media (min-width: 768px) {
  .service-single__receipt-lead-list {
    margin-bottom: 70px;
  }

  .service-single__receipt-lead-list li {
    padding-left: 1.4em;
    text-align: left;
  }

  .service-single__receipt-lead-list li::before {
    content: "";
  }

  .service-single__blue-emphasis {
    width: auto;
    margin-bottom: 54px;
    font-size: clamp(15px, 1.18vw, 16px);
  }

  .service-single__receipt-image {
    margin-bottom: 46px;
  }

  .service-single__receipt-check-list {
    margin-bottom: 68px;
  }

  .service-single__receipt-check-list li {
    font-size: clamp(15px, 1.25vw, 18px);
    line-height: 1.75;
    text-align: center;
  }

  .service-single__receipt-analysis h3 {
    margin-bottom: 24px;
    font-size: 22px;
  }

  .service-single__receipt-analysis p {
    font-size: 15px;
    line-height: 1.8;
  }
}

/* =========================================
   Service Single: Injury Cause Claim
   ========================================= */

.service-single__detail-block--injury-strengths {
  margin-bottom: 62px;
}

.service-single__detail-block--injury-merits {
  width: 100%;
  margin: 0 auto 64px;
}

.service-single__detail-block--injury-merits .service-single__block-title-wrapper {
  margin-bottom: 30px;
}

.service-single__detail-block--injury-merits .service-single__injury-merit-list {
  display: grid;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-single__detail-block--injury-merits .service-single__injury-merit-list li {
  position: relative;
  display: block;
  align-items: baseline;
  gap: .8em;
  padding: 0 0 0 42px;
  color: #1f93d0;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.65;
  letter-spacing: .02em;
}

.service-single__detail-block--injury-merits .service-single__injury-merit-list li::before {
  top: .62em;
  width: 32px;
  height: 10px;
}

.service-single__detail-block--injury-merits .service-single__injury-merit-list li:first-child {
  border-top: 0;
}

.service-single__detail-block--injury-merits .service-single__injury-merit-list li strong {
  display: inline;
  flex: 0 0 auto;
  margin: 0;
  color: var(--base_color_sub);
  font-size: inherit;
  font-weight: 900;
  line-height: inherit;
}

.service-single__detail-block--injury-merits .service-single__injury-merit-list li span {
  display: inline;
  margin: 0;
  color: #1f93d0;
  font-size: inherit;
  font-weight: 900;
  line-height: inherit;
}

.service-single__detail-block--injury-merits .service-single__injury-highlight {
  margin-top: 36px;
  margin-bottom: 0;
  padding: 10px 12px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.service-single__detail-block--injury-merits .service-single__injury-highlight p {
  color: #1f93d0;
  font-size: 15px;
  font-weight: 900;
  line-height: 2;
  text-align: left;
  text-shadow: none;
}

.service-single__detail-block--injury-strengths .service-single__point-item h3 {
  font-size: 18px;
}

.service-single__detail-block--injury-strengths .service-single__point-item p {
  font-size: clamp(15px, .82vw, 15px);
}

@media (min-width: 768px) {
  .service-single__detail-block--injury-strengths .service-single__point-item h3 {
    font-size: clamp(15px, 1.06vw, 16px);
  }
}

@media (min-width: 768px) {
  .service-single__detail-block--injury-strengths {
    margin-bottom: 88px;
  }

  .service-single__detail-block--injury-merits {
    width: min(840px, 100%);
    margin-bottom: 92px;
  }

  .service-single__detail-block--injury-merits .service-single__block-title-wrapper {
    margin-bottom: 70px;
  }

  .service-single__detail-block--injury-merits .service-single__injury-merit-list li {
    display: flex;
    padding-left: 52px;
    font-size: clamp(15px, 1.05vw, 16px);
    line-height: 1.8;
  }

  .service-single__detail-block--injury-merits .service-single__injury-merit-list li::before {
    top: .62em;
    width: 40px;
    height: 12px;
  }

  .service-single__detail-block--injury-merits .service-single__injury-merit-list li strong {
    display: block;
  }

  .service-single__detail-block--injury-merits .service-single__injury-merit-list li span {
    display: block;
  }

  .service-single__detail-block--injury-merits .service-single__injury-highlight {
    margin-top: 44px;
    padding: 0;
  }

  .service-single__detail-block--injury-merits .service-single__injury-highlight p {
    font-size: clamp(15px, 1.18vw, 16px);
    text-align: center;
  }
}

/* ============================================================
   Dependent Qualification Check page
   ============================================================ */

/* Shared numbered content list inside the flow note panel */
.service-single__flow-note-panel--content-list ol {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0 0 54px;
  list-style: none;
  counter-reset: flow-note;
}

.service-single__flow-note-panel--content-list ol li {
  position: relative;
  padding-left: 28px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.55;
  counter-increment: flow-note;
}

.service-single__flow-note-panel--content-list ol li::before {
  position: absolute;
  top: .2em;
  left: 0;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  color: var(--base_color_sub);
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  content: counter(flow-note);
  background: #fff;
  border-radius: 50%;
}

.service-single__cta-note {
  max-width: 640px;
  margin: 28px auto 0;
  padding: 18px 24px;
  color: var(--base_color_main);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
  background: rgba(0, 80, 110, .06);
  border-radius: 6px;
  border: 1px solid rgba(0, 80, 110, .12);
}

@media (max-width: 1000px) {

  .service-single__flow-note--dq-stack .service-single__flow-note-pc {
    display: grid;
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .service-single__flow-note--dq-stack {
    width: 100vw;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
  }

  .service-single__flow-note--dq-stack .service-single__flow-note-sp {
    display: none;
  }

  .service-single__flow-note--dq-stack .service-single__flow-note-panel {
    min-height: auto;
    padding: 48px 48px 78px;
    -webkit-mask-image: none;
    mask-image: none;
    clip-path: polygon(0 0, 100% 0, 100% 88%, 50% 100%, 0 88%);
  }

  .service-single__flow-note--dq-stack .service-single__flow-note-title,
  .service-single__flow-note--dq-stack .service-single__flow-note-panel h3 {
    margin-bottom: 34px;
    font-size: 20px;
  }

  .service-single__flow-note--dq-stack .service-single__flow-note-list,
  .service-single__flow-note--dq-stack .service-single__flow-note-panel ol {
    gap: 16px;
    margin-bottom: 42px;
  }

  .service-single__flow-note--dq-stack .service-single__flow-note-list li,
  .service-single__flow-note--dq-stack .service-single__flow-note-bullet-list li,
  .service-single__flow-note--dq-stack .service-single__flow-note-panel li {
    font-size: 19px;
  }

  .service-single__flow-note--dq-stack .service-single__flow-note-message,
  .service-single__flow-note--dq-stack .service-single__flow-note-panel p {
    margin-bottom: 12px;
    font-size: 18px;
  }

  .service-single__flow-note--dq-stack .service-single__flow-note-text {
    width: min(100%, 720px);
    margin: 0 auto;
    padding: 0 48px;
  }

  .service-single__flow-note--dq-stack .service-single__flow-note-text h3 {
    margin-bottom: 45px;
    font-size: 22px;
    text-align: center;
  }

  .service-single__flow-note--dq-stack .service-single__flow-note-text p {
    font-size: 16px;
  }

  .service-single__flow-note--dq-stack .service-single__flow-note-text p:last-child {
    margin-bottom: 0;
  }

  .service-single__flow-note-panel--content-list ol li {
    font-size: 15px;
  }

  .service-single__cta-note {
    margin-top: 20px;
    padding: 14px 18px;
    font-size: 15px;
  }
}

.service-single__flow-note--dq-stack .service-single__flow-note-panel {
  padding: 48px 48px 70px;
}

.service-single__flow-note--dq-stack .service-single__flow-note-title,
.service-single__flow-note--dq-stack .service-single__flow-note-panel h3 {
  font-size: 20px;
}

.service-single__flow-note--dq-stack .service-single__flow-note-list li,
.service-single__flow-note--dq-stack .service-single__flow-note-bullet-list li,
.service-single__flow-note--dq-stack .service-single__flow-note-panel li {
  font-size: clamp(16px, 4.1vw, 20px);
}

.service-single__flow-note--dq-stack .service-single__flow-note-message,
.service-single__flow-note--dq-stack .service-single__flow-note-panel p {
  font-size: clamp(16px, 4.1vw, 18px);
}

.service-single__flow-note--dq-stack .service-single__flow-note-caption,
.service-single__flow-note--dq-stack .service-single__flow-note-panel small {
  font-size: 14px;
}

.service-single__flow-note--dq-stack .service-single__flow-note-text {
  padding: 0 30px;
}

.service-single__flow-note--dq-stack .service-single__flow-note-text h3 {
  font-size: clamp(20px, 5vw, 22px);
}

.service-single__flow-note--dq-stack .service-single__flow-note-text p {
  font-size: 15px;
}

@media (min-width: 768px) {
  .service-single__flow-note--dq-stack .service-single__flow-note-panel {
    padding: 48px 30px 78px;
  }

  .service-single__flow-note--dq-stack .service-single__flow-note-title,
  .service-single__flow-note--dq-stack .service-single__flow-note-panel h3 {
    font-size: 20px;
  }

  .service-single__flow-note--dq-stack .service-single__flow-note-list li,
  .service-single__flow-note--dq-stack .service-single__flow-note-bullet-list li,
  .service-single__flow-note--dq-stack .service-single__flow-note-panel li {
    font-size: 19px;
  }

  .service-single__flow-note--dq-stack .service-single__flow-note-message,
  .service-single__flow-note--dq-stack .service-single__flow-note-panel p {
    font-size: 18px;
  }

  .service-single__flow-note--dq-stack .service-single__flow-note-text {
    padding: 0 48px;
  }

  .service-single__flow-note--dq-stack .service-single__flow-note-text h3 {
    font-size: 22px;
  }

  .service-single__flow-note--dq-stack .service-single__flow-note-text p {
    font-size: 16px;
  }
}

/* ============================================================
   Health Guidance page
   ============================================================ */

.service-single__health-concerns {
  margin: 0 auto 24px;
  text-align: center;
}

.service-single__health-concerns img {
  display: block;
  margin-inline: auto;
  max-width: min(640px, 100%);
}

.service-single__detail-block--health-cycle .service-single__block-title-wrapper,
.service-single__detail-block--health-cycle .service-single__block-lead {
  position: static;
  width: auto;
  height: auto;
  padding: 0;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  border: 0;
}

.service-single__detail-block--health-cycle .service-single__block-title-wrapper {
  margin-bottom: 34px;
}

.service-single__detail-block--health-cycle .service-single__block-lead {
  margin-top: 34px;
  margin-bottom: 28px;
  color: var(--base_color_gray_sub_2);
  font-size: clamp(17px, 1.65vw, 21px);
  font-weight: 900;
  line-height: 1.9;
  text-align: center;
  text-shadow: none;
}

.service-single__detail-block--health-cycle .service-single__block-image {
  width: min(540px, 100%);
  margin-bottom: 34px;
  margin-right: auto;
  margin-left: auto;
}

.service-single__health-cycle-image {
  width: min(300px, 100%);
  max-width: none;
}

.service-single__health-cycle-image img {
  display: block;
  width: 100%;
  margin: 0 auto;
}

/* hero fallback when image file is not yet available */
.service-single__fv--no-image:not([style*="background-image"]) {
  background: linear-gradient(135deg, var(--base_color_main) 0%, #1a7a8a 100%);
}

@media (min-width: 768px) {
  .service-single__health-concerns {
    margin-bottom: 36px;
  }

  .service-single__detail-block--health-cycle .service-single__block-image {
    width: min(650px, 100%);
    margin-bottom: 34px;
  }

  .service-single__health-cycle-image {
    width: min(650px, 100%);
  }

  .service-single__detail-block--health-cycle .service-single__block-lead {
    margin-top: 40px;
    margin-bottom: 42px;
  }
}

/* ============================================================
   Recommendation Prevention page
   ============================================================ */

.service-single__detail-block--recommendation-merits {
  width: min(1040px, 100%);
  margin: 0 auto 92px;
}

.service-single__detail-block--recommendation-merits .service-single__block-title-wrapper {
  margin-bottom: 56px;
}

.service-single__detail-block--recommendation-merits .service-single__injury-merit-list {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-single__detail-block--recommendation-merits .service-single__injury-merit-list li {
  position: relative;
  padding: 22px 0 22px 48px;
  color: var(--base_color_main);
  border-bottom: 1px solid rgba(0, 80, 110, .12);
}

.service-single__detail-block--recommendation-merits .service-single__injury-merit-list li:first-child {
  border-top: 1px solid rgba(0, 80, 110, .12);
}

.service-single__detail-block--recommendation-merits .service-single__injury-merit-list li::before {
  position: absolute;
  top: 22px;
  left: 4px;
  color: var(--base_color_sub);
  font-size: 1.25em;
  font-weight: 900;
  content: "→";
}

.service-single__detail-block--recommendation-merits .service-single__injury-merit-list li strong {
  display: block;
  margin-bottom: 6px;
  color: var(--base_color_main);
  font-size: clamp(15px, 1.25vw, 16px);
  font-weight: 900;
  line-height: 1.55;
}

.service-single__detail-block--recommendation-merits .service-single__injury-merit-list li p {
  margin: 0;
  color: var(--base_color_main);
  font-size: clamp(15px, 1.05vw, 15px);
  font-weight: 700;
  line-height: 1.75;
}

@media (max-width: 1024px) {
  .service-single__detail-block--recommendation-merits {
    width: 100%;
    margin-bottom: 64px;
  }

  .service-single__detail-block--recommendation-merits .service-single__block-title-wrapper {
    margin-bottom: 36px;
  }
}

/* ============================================================
   Medical Cost Notice page
   ============================================================ */

.service-single__medical-cost-diagram {
  margin: 70px auto 18px;
  text-align: center;
}

.service-single__medical-cost-diagram img {
  display: block;
  width: min(780px, 100%);
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.service-single__medical-cost-reason {
  margin-top: 136px;
  margin-bottom: 118px;
}

.service-single__medical-cost-reason-lead,
.service-single__detail-block--overview .service-single__medical-cost-reason-lead {
  max-width: none;
  font-size: clamp(18px, 1.95vw, 26px);
  line-height: 1.65;
  white-space: nowrap;
}

.service-single__medical-cost-reason-note {
  margin: 0;
  color: #ff4b2b;
  font-size: clamp(14px, 1.08vw, 17px);
  font-weight: 900;
  line-height: 1.7;
  text-align: center;
}

.service-single__detail-block--medical-cost-info {
  width: min(920px, var(--content_width));
  margin-right: auto;
  margin-left: auto;
  color: var(--base_color_text);
  text-align: center;
}

.service-single__detail-block--medical-cost-info .service-single__block-title-wrapper {
  margin-bottom: 82px;
}

.service-single__medical-cost-info-content {
  display: grid;
  gap: 118px;
}

.service-single__medical-cost-info-unit {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.95;
}

.service-single__medical-cost-info-unit h3 {
  margin: 0 0 34px;
  color: var(--base_color_text);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.5;
}

.service-single__medical-cost-info-unit h3::before {
  display: inline-block;
  width: 26px;
  height: 10px;
  margin-right: 14px;
  content: "";
  background: url("../images/service/detail/common/merit-bullet.webp") center / contain no-repeat;
  vertical-align: .08em;
}

.service-single__medical-cost-info-unit p {
  margin: 0 0 24px;
}

.service-single__medical-cost-info-sub {
  color: var(--base_color_main);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px !important;
  text-align: center;
}

.service-single__medical-cost-info-result {
  display: inline-block;
  min-width: 220px;
  text-align: left;
}

.service-single__medical-cost-info-result strong {
  margin-left: 1em;
  font-size: 18px;
  font-weight: 900;
}

.service-single__medical-cost-info-unit--option {
  line-height: 1.85;
}

.service-single__medical-cost-info-unit--option p {
  margin-bottom: 14px;
}

.service-single__medical-cost-info-options {
  display: grid;
  gap: 34px;
  width: min(760px, 100%);
  margin: 28px auto 0;
}

.service-single__medical-cost-info-option-item {
  padding: 0;
}

.service-single__medical-cost-info-option-item p:last-child {
  margin-bottom: 0;
}

.service-single__medical-cost-info-option-title {
  margin-bottom: 6px;
  font-weight: 900;
}

.service-single__medical-cost-info-alert {
  margin-top: 0;
  margin-bottom: 0;
  color: #EA5504;
  font-weight: 500;
  line-height: 1.6;
}

.service-single__medical-cost-info-box {
  width: min(620px, 100%);
  margin: 44px auto 58px;
  padding: 28px 36px;
  background: #DAECFA;
  border-radius: 8px;
}

.service-single__medical-cost-info-box p:last-child {
  margin-bottom: 0;
}

.service-single__medical-cost-info-box strong {
  color: var(--base_color_sub);
  font-weight: 900;
}

.service-single__medical-cost-info-closing {
  color: var(--base_color_main);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.9;
}

.service-single__print-samples {
  display: grid;
  grid-template-columns: 1fr;
  width: min(620px, 100%);
  margin: 54px auto 36px;
}

.service-single__detail-block--medical-cost-info .service-single__print-samples {
  margin-bottom: 48px;
}

.service-single__print-sample-item {
  margin: 0;
  text-align: center;
}

.service-single__print-sample-item img {
  width: auto;
  max-width: 100%;
}

.service-single__print-sample-item:first-child img {
  width: 100%;
}

.service-single__medical-cost-sample-btn {
  display: flex;
  margin-right: auto;
  margin-left: auto;
}

.service-single__medical-cost-sample-modal[hidden] {
  display: none;
}

.service-single__medical-cost-sample-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 32px;
}

.service-single__medical-cost-sample-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 36, 58, .72);
}

.service-single__medical-cost-sample-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  max-height: calc(100vh - 64px);
  padding: 42px 28px 28px;
  overflow: auto;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .28);
}

.service-single__medical-cost-sample-modal-dialog img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.service-single__medical-cost-sample-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  padding: 0;
  cursor: pointer;
  background: var(--base_color_main);
  border: 0;
  border-radius: 50%;
}

.service-single__medical-cost-sample-modal-close::before,
.service-single__medical-cost-sample-modal-close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  content: "";
  background: #fff;
  transform-origin: center;
}

.service-single__medical-cost-sample-modal-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.service-single__medical-cost-sample-modal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

body.is-medical-cost-sample-modal-open {
  overflow: hidden;
}

.service-single__detail-block--medical-cost-flow .service-single__block-image {
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .service-single__print-samples {
    max-width: 480px;
    margin-right: auto;
    margin-left: auto;
  }
}

.service-single__medical-cost-diagram {
  margin-top: 44px;
  margin-bottom: 18px;
}

.service-single__medical-cost-reason {
  margin-top: 72px;
  margin-bottom: 72px;
}

.service-single__medical-cost-reason-lead,
.service-single__detail-block--overview .service-single__medical-cost-reason-lead {
  font-size: 18px;
  white-space: normal;
}

.service-single__medical-cost-reason-note {
  font-size: 14px;
  text-align: left;
}

.service-single__detail-block--medical-cost-info {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  text-align: left;
}

.service-single__detail-block--medical-cost-info .service-single__block-title-wrapper {
  margin-bottom: 48px;
}

.service-single__medical-cost-info-content {
  gap: 45px;
}

.service-single__medical-cost-info-unit {
  font-size: 14px;
  line-height: 1.8;
  overflow-wrap: anywhere;
  word-break: normal;
}

.service-single__medical-cost-info-unit h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-size: 20px;
  text-align: center;
}

.service-single__medical-cost-info-unit h3::before {
  flex: 0 0 auto;
  width: 22px;
  margin-right: 10px;
}

.service-single__medical-cost-info-unit p {
  margin-bottom: 18px;
  max-width: 100%;
}

.service-single__medical-cost-info-sub,
.service-single__medical-cost-info-option-title,
.service-single__medical-cost-info-alert {
  text-align: center;
}

.service-single__medical-cost-info-sub {
  font-size: 15px;
  width: 100%;
  text-align: center;
}

.service-single__medical-cost-info-unit--option,
.service-single__medical-cost-info-unit--option .service-single__medical-cost-info-sub,
.service-single__medical-cost-info-unit--option .service-single__medical-cost-info-option-title,
.service-single__medical-cost-info-unit--option .service-single__medical-cost-info-alert,
.service-single__medical-cost-info-unit--option .service-single__medical-cost-info-box,
.service-single__medical-cost-info-unit--option .service-single__medical-cost-info-closing {
  text-align: left;
}

.service-single__medical-cost-info-unit--option {
  text-align: center;
}

.service-single__medical-cost-info-unit--option p,
.service-single__medical-cost-info-unit--option .service-single__medical-cost-info-option-title,
.service-single__medical-cost-info-unit--option .service-single__medical-cost-info-alert {
  text-align: center;
}

.service-single__medical-cost-info-sub {
  width: fit-content;
  max-width: 100%;
  margin-right: auto !important;
  margin-left: auto !important;
  text-align: center !important;
}

.service-single__medical-cost-info-unit--option p {
  margin-bottom: 0;
}

.service-single__medical-cost-info-options {
  gap: 20px;
  margin-top: 24px;
}

.service-single__medical-cost-info-option-item {
  display: grid;
  gap: 2px;
  justify-items: center;
}

.service-single__medical-cost-info-option-title {
  margin-bottom: 0;
  font-size: 16px;
}

.service-single__medical-cost-info-result {
  display: block;
  min-width: 0;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  text-align: left;
}

.service-single__medical-cost-info-result strong {
  margin-left: .5em;
  font-size: 16px;
}

.service-single__medical-cost-info-box {
  box-sizing: border-box;
  width: 100%;
  margin-top: 34px;
  margin-bottom: 44px;
  padding: 20px 18px;
  text-align: center;
}

.service-single__medical-cost-info-unit--option .service-single__medical-cost-info-box {
  text-align: center;
}

.service-single__medical-cost-info-closing {
  font-size: 15px;
  line-height: 1.8;
  text-align: center !important;
}

.service-single__print-samples {
  box-sizing: border-box;
  margin-top: 34px;
  margin-bottom: 30px;
}

.service-single__print-sample-item img {
  width: 100%;
}

.service-single__medical-cost-sample-modal {
  align-items: start;
  padding: 18px 12px;
  overflow-y: auto;
}

.service-single__medical-cost-sample-modal-dialog {
  box-sizing: border-box;
  width: 100%;
  max-height: none;
  margin: auto 0;
  padding: 42px 12px 16px;
  border-radius: 4px;
}

.service-single__medical-cost-sample-modal-dialog img {
  width: 100%;
  max-width: 100%;
}

.service-single__detail-block--medical-cost-flow .service-single__block-title-wrapper {
  margin-bottom: 26px;
}

.service-single__detail-block--medical-cost-flow .service-single__block-lead {
  margin-bottom: 34px;
  font-size: 16px;
  line-height: 1.75;
}

.service-single__detail-block--medical-cost-flow .service-single__block-image {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.service-single__detail-block--medical-cost-flow .service-single__block-image img {
  width: 100%;
}

.service-single__detail-block--medical-cost-flow+.service-single__kship-logo {
  margin-top: 45px;
}

@media (min-width: 768px) {
  .service-single__medical-cost-diagram {
    margin-top: 70px;
    margin-bottom: 18px;
  }

  .service-single__medical-cost-reason {
    margin-top: 136px;
    margin-bottom: 118px;
  }

  .service-single__medical-cost-reason-lead,
  .service-single__detail-block--overview .service-single__medical-cost-reason-lead {
    font-size: clamp(18px, 1.95vw, 26px);
    white-space: nowrap;
  }

  .service-single__medical-cost-reason-note {
    font-size: clamp(14px, 1.08vw, 17px);
    text-align: center;
  }

  .service-single__detail-block--medical-cost-info {
    box-sizing: content-box;
    width: min(920px, var(--content_width));
    max-width: none;
    overflow-x: visible;
    text-align: center;
  }

  .service-single__detail-block--medical-cost-info .service-single__block-title-wrapper {
    margin-bottom: 82px;
  }

  .service-single__medical-cost-info-content {
    gap: 118px;
  }

  .service-single__medical-cost-info-unit {
    font-size: 16px;
    line-height: 1.95;
    overflow-wrap: normal;
  }

  .service-single__medical-cost-info-unit h3 {
    display: block;
    margin-bottom: 34px;
    font-size: 22px;
    text-align: center;
  }

  .service-single__medical-cost-info-unit h3::before {
    width: 26px;
    margin-right: 14px;
  }

  .service-single__medical-cost-info-unit p {
    max-width: none;
    margin-bottom: 24px;
  }

  .service-single__medical-cost-info-sub,
  .service-single__medical-cost-info-option-title,
  .service-single__medical-cost-info-alert {
    text-align: inherit;
  }

  .service-single__medical-cost-info-sub {
    font-size: 16px;
    width: auto;
    max-width: none;
    margin-right: 0 !important;
    margin-left: 0 !important;
    text-align: inherit !important;
  }

  .service-single__medical-cost-info-unit--option p {
    margin-bottom: 14px;
  }

  .service-single__medical-cost-info-options {
    gap: 34px;
    margin-top: 28px;
  }

  .service-single__medical-cost-info-option-title {
    margin-bottom: 6px;
    font-size: 17px;
  }

  .service-single__medical-cost-info-result {
    display: inline-block;
    min-width: 220px;
    width: auto;
    margin-right: 0;
    margin-left: 0;
  }

  .service-single__medical-cost-info-result strong {
    margin-left: 1em;
    font-size: 19px;
  }

  .service-single__medical-cost-info-box {
    width: min(620px, 100%);
    margin-top: 44px;
    margin-bottom: 58px;
    padding: 28px 36px;
  }

  .service-single__medical-cost-info-closing {
    font-size: 18px;
    line-height: 1.9;
  }

  .service-single__print-samples {
    width: min(620px, 100%);
    margin-top: 54px;
    margin-bottom: 36px;
  }

  .service-single__print-sample-item img {
    width: auto;
  }

  .service-single__print-sample-item:first-child img {
    width: 100%;
  }

  .service-single__medical-cost-sample-modal {
    align-items: center;
    padding: 32px;
    overflow-y: visible;
  }

  .service-single__medical-cost-sample-modal-dialog {
    width: min(960px, 100%);
    max-height: calc(100vh - 64px);
    margin: 0;
    padding: 42px 28px 28px;
    border-radius: 6px;
  }

  .service-single__medical-cost-sample-modal-dialog img {
    width: auto;
  }

  .service-single__detail-block--medical-cost-flow .service-single__block-title-wrapper,
  .service-single__detail-block--medical-cost-flow .service-single__block-lead {
    margin-bottom: 0;
  }

  .service-single__detail-block--medical-cost-flow .service-single__block-title-wrapper {
    margin-bottom: 60px;
  }

  .service-single__detail-block--medical-cost-flow .service-single__block-lead {
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 1.95;
  }

  .service-single__detail-block--medical-cost-flow .service-single__block-image img {
    width: auto;
  }

  .service-single__detail-block--medical-cost-flow+.service-single__kship-logo {
    margin-top: 100px;
  }

  .service-single__kship-logo {
    margin-top: 100px;
  }
}

/* ============================================================
   Seminar page
   ============================================================ */

/* Seminar table */
.service-single__seminar-table-wrapper {
  overflow-x: auto;
  margin-bottom: 0;
}

.service-single__seminar-table {
  width: 100%;
  min-width: 860px;
  border-collapse: separate;
  border-spacing: 0;
  color: var(--base_color_footer);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.55;
}

.service-single__seminar-table th,
.service-single__seminar-table td {
  padding: 24px 36px;
  border: 0;
  vertical-align: middle;
}

.service-single__seminar-table th {
  padding-top: 28px;
  padding-bottom: 28px;
  border-bottom: 3px solid var(--base_color_footer);
  color: var(--base_color_footer);
  font-size: 19px;
  font-weight: 900;
  letter-spacing: .08em;
  text-align: center;
}

.service-single__seminar-table th.service-single__seminar-table-theme {
  width: 38%;
}

.service-single__seminar-table td:first-child {
  color: #21a8df;
  font-weight: 900;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
}

.service-single__seminar-table th:first-child,
.service-single__seminar-table td:first-child {
  border-right: 3px solid var(--base_color_main);
}

.service-single__seminar-table td:nth-child(2) {
  padding-left: 44px;
  text-align: left;
}

.service-single__seminar-table-note {
  margin-top: 10px;
  font-size: 15px;
  color: #666;
}

.service-single__seminar-lineup-note {
  margin: 45px 0 0;
  color: #C73B18;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}

/* Seminar content */
.service-single__detail-block--seminar-content,
.service-single__detail-block--seminar-voices {
  width: min(1040px, 100%);
  margin: 0 auto 92px;
}

.service-single__seminar-content-heading {
  display: grid;
  justify-items: center;
  gap: 22px;
  margin-bottom: 32px;
  text-align: center;
}

.service-single__seminar-content-heading p {
  width: 100%;
  margin: 0;
  color: var(--base_color_gray_sub_2);
  font-size: clamp(17px, 1.65vw, 21px);
  font-weight: 900;
  line-height: 1.9;
  text-align: center;
  text-shadow: none;
}

.service-single__seminar-band {
  width: 100vw;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding: 14px 24px;
  background: #7DB070;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1.2;
  text-align: center;
}

.service-single__seminar-band--family {
  margin-top: 120px;
  background: #B0C86F !important;
}

.service-single__seminar-content-block {
  width: min(720px, 100%);
  margin: 70px auto 0;
  text-align: center;
}

.service-single__seminar-content-lead {
  margin: 0 auto 28px;
  color: var(--base_color_text);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
}

.service-single__seminar-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 46px;
  margin: 0 auto 62px;
}

.service-single__seminar-meta-item {
  position: relative;
  padding-left: 52px;
  color: #111;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.7;
}

.service-single__seminar-meta-item::before,
.service-single__seminar-voice-list li::before {
  position: absolute;
  top: .65em;
  left: 0;
  display: block;
  width: 40px;
  height: 12px;
  content: "";
  background: url("../images/service/detail/common/merit-bullet.webp") center / contain no-repeat;
}

.service-single__seminar-flow-image {
  width: min(650px, 100%);
  margin: 48px auto 34px;
}

.service-single__seminar-flow-image picture,
.service-single__seminar-flow-image img {
  display: block;
  width: 100%;
}

.service-single__seminar-emphasis {
  margin: 0;
  color: #e14d9b;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.75;
}

.service-single__seminar-content-block--family {
  width: min(900px, 100%);
  margin-top: 68px;
}

.service-single__seminar-two-column {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  margin: 38px auto 96px;
}

.service-single__seminar-two-column>div {
  padding: 24px 18px 22px;
  border: 2px solid #2ea7df;
  border-radius: 8px;
  text-align: center;
}

.service-single__seminar-two-column h3,
.service-single__seminar-subsection h3 {
  margin: 0 0 38px;
  color: #21a8df;
  font-size: 30px;
  font-weight: 900;
  text-align: center;
}

.service-single__seminar-subsection--purpose {
  margin-top: 58px;
}

.service-single__seminar-two-column h4 {
  margin: 0 0 14px;
  color: #e14d9b;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.4;
}

.service-single__seminar-two-column p {
  margin: 0;
  color: #006eb0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
}

.service-single__seminar-subsection {
  margin-top: 96px;
}

.service-single__seminar-subsection dl {
  display: grid;
  gap: 54px;
  margin: 0;
}

.service-single__seminar-subsection dl div {
  text-align: center;
}

.service-single__seminar-subsection dt {
  position: relative;
  display: inline-block;
  margin-bottom: 24px;
  padding-left: 52px;
  color: #111;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.45;
}

.service-single__seminar-subsection dt::before {
  position: absolute;
  top: .65em;
  left: 0;
  display: block;
  width: 40px;
  height: 12px;
  content: "";
  background: url("../images/service/detail/common/merit-bullet.webp") center / contain no-repeat;
}

.service-single__seminar-subsection dd {
  margin: 0;
  color: #4a4a4a;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.85;
}

.service-single__seminar-feature-list {
  display: grid;
  gap: 76px;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

.service-single__seminar-feature-list li {
  display: grid;
  gap: 22px;
  justify-items: center;
}

.service-single__seminar-feature-list h4 {
  position: relative;
  display: inline-block;
  margin: 0;
  padding-left: 56px;
  color: var(--base_color_b2);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.45;
}

.service-single__seminar-feature-list h4::before {
  position: absolute;
  top: .65em;
  left: 0;
  display: block;
  width: 40px;
  height: 12px;
  content: "";
  background: url("../images/service/detail/common/merit-bullet.webp") center / contain no-repeat;
  transform: translateY(-50%);
}

.service-single__seminar-feature-list p {
  margin: 0;
  color: var(--base_color_b2);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
}

.service-single__seminar-check-list {
  display: grid;
  gap: 22px;
  width: min(700px, 100%);
  margin: 0 auto;
  padding: 0;
  list-style: none;
  text-align: left;
}

.service-single__seminar-check-list li {
  position: relative;
  padding-left: 70px;
  color: #4a4a4a;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
}

.service-single__seminar-check-list li::before {
  position: absolute;
  top: .2em;
  left: 14px;
  width: 24px;
  height: 24px;
  content: "";
  border: 1px solid #2ea7df;
  background: rgba(46, 167, 223, .04);
}

.service-single__seminar-check-list li::after {
  position: absolute;
  top: .65em;
  left: 0;
  width: 24px;
  height: 24px;
  content: "";
  border: 1px solid #9ed7f1;
  background: rgba(46, 167, 223, .04);
}

.service-single__seminar-step {
  position: relative;
  margin-top: 56px;
  text-align: left;
}

.service-single__seminar-step-number {
  position: absolute;
  top: -20px;
  left: -34px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  background: #D894B9;
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
}

.service-single__seminar-step-number::before {
  position: absolute;
  top: -10px;
  left: -10px;
  color: #006eb0;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1;
  content: "STEP";
  transform: rotate(-34deg);
}

.service-single__seminar-step-body {
  position: relative;
  min-height: 292px;
  padding: 34px 48px 44px;
  border: 2px solid #2ea7df;
  border-radius: 8px;
  overflow: visible;
}

.service-single__seminar-step-body h4 {
  margin: 0 0 20px;
  color: #e14d9b;
  font-size: 30px;
  font-weight: 900;
  text-align: center;
}

.service-single__seminar-step-body p {
  margin: 15px 0 28px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.75;
  text-align: center;
}

.service-single__seminar-measurement-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 72px;
  width: min(640px, 100%);
  margin: 42px auto 0;
}

.service-single__seminar-measurement-images figure {
  margin: 0;
  text-align: center;
}

.service-single__seminar-measurement-images img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: contain;
}

.service-single__seminar-measurement-images figcaption {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.service-single__seminar-movie-label {
  position: absolute;
  right: -2px;
  bottom: -18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 290px;
  min-height: 38px;
  padding: 6px 24px;
  background: #2ea7df;
  box-shadow: 0 4px 0 #1478a7;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: .08em;
  text-decoration: none;
  transition: background-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.service-single__seminar-movie-label::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.service-single__seminar-movie-label:is(:hover, :focus-visible) {
  background: #168fcb;
  box-shadow: 0 2px 0 #0f648a;
  transform: translateY(2px);
}

.service-single__seminar-movie-label:focus-visible {
  outline: 3px solid rgba(46, 167, 223, .35);
  outline-offset: 4px;
}

.service-single__seminar-step-body--image {
  display: grid;
  grid-template-columns: minmax(300px, 42%) minmax(360px, 1fr);
  gap: 20px 76px;
  justify-items: center;
  align-items: start;
}

.service-single__seminar-step-body--image p {
  grid-column: 1 / -1;
  width: min(640px, 100%);
  margin: 0;
}

.service-single__seminar-step-body--image h4 {
  grid-column: 1 / -1;
  margin-bottom: 0;
  text-align: center;
}

.service-single__seminar-step-body--image img {
  width: 100%;
  margin-top: 14px;
  align-self: start;
  border-radius: 4px;
}

.service-single__seminar-hint {
  width: 100%;
  margin-top: 14px;
  align-self: start;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  text-align: left;
}

.service-single__seminar-hint strong {
  display: block;
  margin-bottom: 16px;
  color: #61ABE7;
  font-weight: 500;
}

.service-single__seminar-hint ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-single__seminar-divider {
  width: 100vw;
  height: 38px;
  margin: 28px calc(50% - 50vw) 82px;
  background: #7DB070;
}

.service-single__detail-block--seminar-voices {
  width: min(1040px, 100%);
  margin-bottom: 96px;
}

.service-single__seminar-content-heading--voices {
  margin-bottom: 96px;
}

.service-single__seminar-voice-list {
  display: grid;
  gap: 48px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-single__seminar-voice-list li {
  position: relative;
  padding-left: 88px;
  font-size: 18px;
  font-weight: 400;
  line-height: 2;
}

.service-single__seminar-voices-illust {
  width: min(420px, 48vw);
  margin: 56px 40px 0 auto;
}

.service-single__seminar-voices-illust img {
  display: block;
  width: 100%;
}

.service-single__seminar-sp-message {
  display: none;
}

/* Block title sub */
.service-single__block-title-wrapper--sub {
  margin-top: 100px;
}

@media (max-width: 767px) {

  .service-single__seminar-table th,
  .service-single__seminar-table td {
    padding: 16px 18px;
    font-size: 14px;
  }

  .service-single__seminar-table {
    min-width: 720px;
    font-size: 14px;
  }

  .service-single__seminar-table th {
    font-size: 16px;
  }

  .service-single__seminar-table td:first-child {
    font-size: 16px;
  }

  .service-single__seminar-table td:nth-child(2) {
    padding-left: 22px;
  }

  .service-single__detail-block--seminar-content,
  .service-single__detail-block--seminar-voices {
    margin-bottom: 64px;
  }

  .service-single__seminar-meta {
    gap: 8px 20px;
    margin-bottom: 20px;
  }

  .service-single__seminar-meta-item {
    padding-left: 44px;
    font-size: 16px;
  }

  .service-single__seminar-subsection dt,
  .service-single__seminar-voice-list li {
    padding-left: 44px;
  }

  .service-single__seminar-meta-item::before,
  .service-single__seminar-subsection dt::before,
  .service-single__seminar-voice-list li::before {
    width: 34px;
    height: 10px;
  }

  .service-single__seminar-content-heading {
    gap: 18px;
    margin-bottom: 30px;
  }

  .service-single__seminar-content-heading .heading-accent--oval {
    min-width: 148px;
    min-height: 52px;
    padding: 12px 28px;
    font-size: 15px;
    letter-spacing: .12em;
    background: #bdd585;
    box-shadow: 0 4px 0 #fff37c;
  }

  .service-single__seminar-content-heading .service-single__block-lead {
    width: min(330px, 100%);
    color: #777;
    font-size: 15px;
    line-height: 1.65;
    letter-spacing: .04em;
  }

  .service-single__seminar-band {
    padding: 13px 18px;
    font-size: 16px;
    letter-spacing: .08em;
    line-height: 1.35;
    background: #7DB070;
  }

  .service-single__seminar-content-block {
    width: min(330px, 100%);
    margin-top: 50px;
  }

  .service-single__seminar-band--family {
    margin-top: 72px;
  }

  .service-single__seminar-content-lead {
    margin-bottom: 36px;
    color: var(--base_color_text);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: .02em;
  }

  .service-single__seminar-meta {
    display: grid;
    justify-items: center;
    gap: 28px;
    margin-bottom: 42px;
  }

  .service-single__seminar-meta-item {
    display: block;
    padding-left: 0;
    color: var(--base_color_text);
    font-size: 15px;
    font-weight: 900;
    line-height: 1.55;
    text-align: center;
  }

  .service-single__seminar-meta-item::before {
    display: none;
  }

  .service-single__seminar-meta-item strong {
    position: relative;
    display: block;
    width: max-content;
    margin: 0 auto 8px;
    padding-left: 44px;
    color: #4d8fce;
    font-size: 20px;
    line-height: 1.4;
  }

  .service-single__seminar-meta-item strong::before {
    position: absolute;
    top: .48em;
    left: 0;
    display: block;
    width: 34px;
    height: 10px;
    content: "";
    background: url("../images/service/detail/common/merit-bullet.webp") center / contain no-repeat;
  }

  .service-single__seminar-flow-image {
    width: min(332px, 100%);
    margin: 36px auto 26px;
  }

  .service-single__seminar-emphasis {
    font-size: 15px;
  }

  .service-single__seminar-two-column {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 48px;
  }

  .service-single__seminar-two-column h3,
  .service-single__seminar-subsection h3 {
    margin-bottom: 24px;
    font-size: 22px;
  }

  .service-single__seminar-two-column h4 {
    font-size: 18px;
  }

  .service-single__seminar-two-column p {
    font-size: 14px;
  }

  .service-single__seminar-subsection {
    margin-top: 44px;
  }

  .service-single__seminar-subsection dl {
    gap: 34px;
  }

  .service-single__seminar-subsection dt {
    margin-bottom: 14px;
    font-size: 19px;
  }

  .service-single__seminar-subsection dd {
    font-size: 15px;
  }

  .service-single__seminar-feature-list {
    gap: 22px;
    text-align: left;
  }

  .service-single__seminar-feature-list li {
    position: relative;
    display: block;
    padding-left: 44px;
  }

  .service-single__seminar-feature-list h4 {
    display: inline;
    padding-left: 0;
    color: var(--base_color_main);
    font-size: 15px;
    line-height: 1.8;
  }

  .service-single__seminar-feature-list h4::before {
    content: none;
  }

  .service-single__seminar-feature-list h4::after {
    content: "：";
  }

  .service-single__seminar-feature-list li::before {
    position: absolute;
    top: .9em;
    left: 0;
    display: block;
    width: 34px;
    height: 10px;
    content: "";
    background: url("../images/service/detail/common/merit-bullet.webp") center / contain no-repeat;
    transform: translateY(-50%);
  }

  .service-single__seminar-feature-list p {
    display: inline;
    color: var(--base_color_b2);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.8;
  }

  .service-single__seminar-check-list {
    gap: 16px;
  }

  .service-single__seminar-check-list li {
    padding-left: 48px;
    font-size: 16px;
  }

  .service-single__seminar-check-list li::before,
  .service-single__seminar-check-list li::after {
    width: 20px;
    height: 20px;
  }

  .service-single__seminar-step-number {
    left: -8px;
    width: 46px;
    height: 46px;
    font-size: 19px;
  }

  .service-single__seminar-step-body {
    min-height: 0;
    padding: 34px 18px 34px;
    border-color: #5aa1e3;
    border-radius: 10px;
  }

  .service-single__seminar-step-body h4 {
    margin-bottom: 0;
    color: #d82b8b;
    font-size: 24px;
    line-height: 1.4;
  }

  .service-single__seminar-step-body p {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.8;
  }

  .service-single__seminar-step-body--image {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .service-single__seminar-step-body--image p {
    width: min(286px, 100%);
    margin: 0 auto;
  }

  .service-single__seminar-step-body--image img {
    width: min(286px, 100%);
    margin: 0 auto;
  }

  .service-single__seminar-measurement-images {
    grid-template-columns: 1fr;
    width: min(240px, 100%);
    gap: 28px;
    margin-top: 28px;
  }

  .service-single__seminar-movie-label {
    position: static;
    display: flex;
    min-width: 0;
    width: min(260px, 100%);
    margin: 24px auto 0;
    font-size: 15px;
  }

  .service-single__seminar-hint {
    width: min(286px, 100%);
    margin: 0 auto;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.75;
    text-align: left;
  }

  .service-single__seminar-hint strong {
    margin-bottom: 10px;
    color: #57a7e5;
    font-size: 15px;
    line-height: 1.4;
  }

  .service-single__seminar-hint ul {
    gap: 4px;
  }

  .service-single__seminar-divider {
    height: 30px;
    margin-bottom: 58px;
  }

  .service-single__seminar-voice-list {
    gap: 28px;
  }

  .service-single__seminar-content-heading--voices {
    margin-bottom: 44px;
  }

  .service-single__seminar-voice-list li {
    padding-left: 52px;
    font-size: 14px;
    line-height: 1.85;
  }

  .service-single__seminar-voices-illust {
    margin-right: auto;
    width: min(260px, 68vw);
  }

  .service-single__seminar-sp-message {
    display: grid;
    gap: 28px;
    margin: 45px auto 0;
    text-align: left;
  }

  .service-single__seminar-sp-message h3 {
    width: min(320px, 100%);
    margin: 0 auto;
    color: var(--base_color_main);
    font-size: 24px;
    font-weight: 900;
    line-height: 1.5;
    text-align: center;
    letter-spacing: .03em;
  }

  .service-single__seminar-sp-message p {
    width: 100%;
    margin: 0 auto;
    color: var(--base_color_text);
    font-size: 15px;
    font-weight: 400;
    line-height: 2.05;
    letter-spacing: .01em;
  }

  .service-single__block-title-wrapper--sub {
    margin-top: 80px;
  }
}

/* ============================================================
   Petit Health Seminar page
   ============================================================ */

.service-single__petit-intro {
  /*
  display: grid;
  grid-template-columns: minmax(240px, 360px) minmax(280px, 440px);
  gap: 44px 64px;
  */
  display: grid;
  grid-template-columns: minmax(280px, 440px);
  gap: 32px;
  align-items: center;
  justify-content: center;
  max-width: 880px;
  margin-top: 20px !important;
}

.service-single__petit-flyer {
  margin: 0;
  text-align: center;
}

.service-single__petit-flyer img {
  display: block;
  width: min(100%, 360px);
  margin: 0 auto;
}

.service-single__petit-movie {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 230px;
  background: #0d9ed0;
  color: #fff;
  font-size: clamp(18px, 1.45vw, 22px);
  font-weight: 500;
  letter-spacing: .06em;
}

.service-single__petit-spec {
  grid-column: 1 / -1;
  display: grid;
  gap: 4px;
  width: min(680px, 100%);
  margin: 2px auto 0;
  color: #006eb0;
  font-size: clamp(15px, 1.08vw, 17px);
  font-weight: 900;
  line-height: 1.7;
}

.service-single__petit-spec div {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 22px;
  align-items: baseline;
}

.service-single__petit-spec dt {
  color: #149dde;
}

.service-single__petit-spec dd {
  margin: 0;
}

.service-single__petit-attention {
  grid-column: 1 / -1;
  margin: 20px 0 0;
  color: #E94820;
  font-size: clamp(13px, .95vw, 15px);
  font-weight: 800;
  line-height: 1.8;
  text-align: center;
}

.service-single__petit-reasons {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  color: #006eb0;
}

.service-single__petit-reasons dl {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  font-size: clamp(15px, 1.1vw, 17px);
  font-weight: 900;
  line-height: 1.75;
}

.service-single__petit-reasons dl div {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 0;
  align-items: baseline;
}

.service-single__petit-reasons dt,
.service-single__petit-reasons dd {
  margin: 0;
}

.service-single__petit-reasons dt {
  color: #149dde;
}

.service-single__flow-cards {
  display: grid;
  gap: 92px;
  width: min(1040px, 100%);
  margin: 32px auto 0;
}

.service-single__flow-card {
  position: relative;
  overflow: visible;
}

.service-single__flow-step-badge {
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  line-height: 1;
}

.service-single__petit-flow-card {
  display: grid;
  justify-items: center;
  padding: 22px 40px 58px;
  border: 2px solid #1ba7e1;
  border-radius: 8px;
  text-align: center;
}

.service-single__petit-flow-step {
  position: absolute;
  top: -32px;
  left: -32px;
  width: 62px;
  height: 62px;
  background: #dfa0c7;
  font-size: 22px;
  font-weight: 800;
}

.service-single__petit-flow-step small {
  position: absolute;
  top: -12px;
  left: -9px;
  color: #006eb0;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  transform: rotate(-32deg);
}

.service-single__petit-flow-card h3 {
  margin: 0 0 20px;
  color: #e14d9b;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.45;
}

.service-single__petit-flow-text {
  margin: 15px auto 28px;
  color: var(--text_color);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.75;
}

.service-single__petit-flow-measurement {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  gap: 44px 56px;
  align-items: center;
  justify-items: center;
  width: min(920px, 100%);
  margin: 0 auto 62px;
}

.service-single__petit-flow-figures {
  display: grid;
  gap: 22px;
}

.service-single__petit-flow-figures figure {
  margin: 0;
}

.service-single__petit-flow-figures img {
  display: block;
  width: min(240px, 100%);
  margin: 0 auto;
}

.service-single__petit-flow-figures figcaption {
  margin-top: 10px;
  color: #333;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.service-single__petit-flow-movie {
  aspect-ratio: 16 / 9;
  width: min(520px, 100%);
  overflow: hidden;
  background: #000;
}

.service-single__petit-flow-movie iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 1024px) {
  .service-single__petit-flow-measurement {
    grid-template-columns: 1fr;
    gap: 34px;
    width: min(620px, 100%);
  }

  .service-single__petit-flow-movie {
    width: 100%;
  }
}

.service-single__petit-flow-points {
  display: grid;
  gap: 12px;
  width: min(720px, 100%);
  margin: 0 auto;
  color: #0071bc;
  font-size: clamp(15px, 1.12vw, 18px);
  font-weight: 900;
  line-height: 1.75;
  text-align: left;
}

.service-single__petit-flow-points div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 22px;
}

.service-single__petit-flow-points dt,
.service-single__petit-flow-points dd {
  margin: 0;
}

.service-single__petit-flow-points dt {
  color: #149dde;
}

.service-single__petit-flow-points dd {
  color: #0071bc;
}

.service-single__petit-flow-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  margin: 60px auto 58px;
}

.service-single__petit-flow-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 1.55;
  object-fit: cover;
}

.service-single__petit-flow-emphasis {
  margin: 0;
  color: #2C90CA;
  font-size: clamp(15px, 1.12vw, 18px);
  font-weight: 900;
  line-height: 1.75;
}

.service-single__petit-support-message {
  position: relative;
  margin: 62px auto 0;
  padding: 54px 22px 32px;
  border: 2px solid #1ba7e1;
  border-radius: 10px;
  color: #2C90CA;
  font-size: clamp(19px, 1.7vw, 24px);
  font-weight: 900;
  line-height: 1.6;
  text-align: center;
}

.service-single__petit-support-message::before {
  position: absolute;
  top: 22px;
  left: 50%;
  width: 38px;
  height: 12px;
  content: "";
  background: url("../images/service/detail/common/merit-bullet.webp") center / contain no-repeat;
  transform: translateX(-50%);
}

.service-single__detail-block--petit-case {
  width: min(1040px, 100%);
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.service-single__petit-case-heading-note {
  margin: 12px 0 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.service-single__petit-case-list {
  display: grid;
  gap: 24px;
  width: min(820px, 100%);
  margin: 0 auto;
  padding: 0;
  color: #006eb0;
  font-size: clamp(15px, 1.08vw, 17px);
  font-weight: 900;
  line-height: 1.65;
  list-style: none;
  text-align: left;
}

.service-single__petit-case-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
}

.service-single__petit-case-list span {
  display: inline-block;
  min-width: 1.2em;
}

.service-single__petit-case-note {
  width: min(820px, 100%);
  margin: 66px auto 0;
  padding-left: 1em;
  color: #f04f32;
  font-size: clamp(13px, .95vw, 15px);
  font-weight: 800;
  line-height: 1.75;
  text-align: left;
  text-indent: -1em;
}

.service-single__petit-case-message {
  width: min(960px, 100%);
  margin: 142px auto 0;
  padding: 20px 28px;
  background: #fff7a3;
  color: #149dde;
  font-size: clamp(16px, 1.12vw, 18px);
  font-weight: 900;
  line-height: 1.75;
}

.service-single__petit-case-message p {
  margin: 0;
}

.service-single__petit-case-message p+p {
  margin-top: 8px;
}

.service-single__petit-intro {
  grid-template-columns: 1fr;
  gap: 28px;
}

.service-single__petit-flyer img {
  width: min(100%, 220px);
}

.service-single__petit-movie {
  min-height: 140px;
  font-size: 18px;
}

.service-single__petit-spec div {
  grid-template-columns: 1fr;
  gap: 2px;
  text-align: center;
}

.service-single__petit-spec {
  gap: 28px;
  font-size: 16px;
  line-height: 1.8;
}

.service-single__petit-attention {
  margin-top: 2px;
  font-size: 15px;
  line-height: 1.9;
  text-align: center;
}

.service-single__petit-reasons {
  width: 100%;
}

.service-single__petit-reasons dl {
  gap: 14px;
  font-size: 14px;
}

.service-single__petit-reasons dl div {
  grid-template-columns: 1fr;
  gap: 2px;
  text-align: center;
}

.service-single__petit-flow-cards {
  gap: 58px;
}

.service-single__petit-flow-card {
  padding: 34px 18px 34px;
}

.service-single__petit-flow-step {
  top: -24px;
  left: -10px;
  width: 48px;
  height: 48px;
  font-size: 17px;
}

.service-single__petit-flow-card h3 {
  margin-bottom: 0;
  font-size: 24px;
  line-height: 1.4;
}

.service-single__petit-flow-text {
  margin-bottom: 32px;
  font-size: 15px;
  line-height: 1.8;
}

.service-single__petit-flow-measurement {
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 34px;
}

.service-single__petit-flow-figures img {
  width: min(220px, 100%);
}

.service-single__petit-flow-movie {
  width: 100%;
}

.service-single__petit-flow-points {
  font-size: 14px;
}

.service-single__petit-flow-points div {
  grid-template-columns: 1fr;
  gap: 2px;
}

.service-single__petit-flow-gallery {
  grid-template-columns: 1fr;
  gap: 18px;
  margin: 34px auto;
}

.service-single__petit-flow-emphasis {
  font-size: 14px;
}

.service-single__petit-support-message {
  margin-top: 36px;
  padding: 52px 18px 28px;
  font-size: 20px;
  text-align: center;
}

.service-single__petit-case-heading-note {
  font-size: 13px;
}

.service-single__petit-case-list {
  gap: 16px;
  font-size: 14px;
  line-height: 1.7;
  text-align: center;
}

.service-single__petit-case-list li {
  grid-template-columns: 1fr;
  gap: 4px;
}

.service-single__petit-case-list span {
  min-width: 0;
}

.service-single__petit-case-note {
  margin-top: 36px;
  font-size: 13px;
  text-align: center;
  text-indent: 0;
}

.service-single__petit-case-message {
  margin-top: 54px;
  padding: 18px 16px;
  font-size: 14px;
}

@media (min-width: 768px) {
  .service-single__petit-intro {
    grid-template-columns: minmax(280px, 440px);
    gap: 32px;
  }

  .service-single__petit-flyer img {
    width: min(100%, 360px);
  }

  .service-single__petit-movie {
    min-height: 230px;
    font-size: clamp(18px, 1.45vw, 22px);
  }

  .service-single__petit-spec {
    gap: 4px;
    width: min(900px, 100%);
    font-size: clamp(15px, 1.08vw, 17px);
    line-height: 1.7;
  }

  .service-single__petit-spec div {
    grid-template-columns: 132px 1fr;
    gap: 22px;
    text-align: left;
  }

  .service-single__petit-spec dd {
    white-space: nowrap;
  }

  .service-single__petit-attention {
    justify-self: center;
    width: max-content;
    margin-top: 20px;
    font-size: clamp(13px, .95vw, 15px);
    text-align: center;
    white-space: nowrap;
  }

  .service-single__petit-reasons {
    width: fit-content;
  }

  .service-single__petit-reasons dl {
    gap: 18px;
    font-size: clamp(15px, 1.1vw, 17px);
  }

  .service-single__petit-reasons dl div {
    grid-template-columns: max-content 1fr;
    gap: 0;
    text-align: left;
  }

  .service-single__petit-flow-cards {
    gap: 92px;
  }

  .service-single__petit-flow-card {
    padding: 22px 40px 58px;
  }

  .service-single__petit-flow-step {
    top: -32px;
    left: -32px;
    width: 62px;
    height: 62px;
    font-size: 22px;
  }

  .service-single__petit-flow-card h3 {
    margin-bottom: 20px;
    font-size: 30px;
    line-height: 1.45;
  }

  .service-single__petit-flow-text {
    margin: 15px auto 28px;
    font-size: 18px;
    line-height: 1.75;
  }

  .service-single__petit-flow-measurement {
    gap: 34px;
    margin-bottom: 62px;
  }

  .service-single__petit-flow-figures img {
    width: min(240px, 100%);
  }

  .service-single__petit-flow-points {
    font-size: clamp(15px, 1.12vw, 18px);
  }

  .service-single__petit-flow-points div {
    grid-template-columns: 180px 1fr;
    gap: 22px;
  }

  .service-single__petit-flow-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
    margin: 60px auto 58px;
  }

  .service-single__petit-flow-emphasis {
    font-size: clamp(15px, 1.12vw, 18px);
  }

  .service-single__petit-support-message {
    margin-top: 62px;
    padding: 54px 34px 32px;
    font-size: clamp(20px, 1.7vw, 24px);
    text-align: center;
  }

  .service-single__petit-case-heading-note {
    font-size: 14px;
  }

  .service-single__petit-case-list {
    gap: 24px;
    font-size: clamp(15px, 1.08vw, 17px);
    line-height: 1.65;
    text-align: left;
  }

  .service-single__petit-case-list li {
    grid-template-columns: auto 1fr;
    gap: 10px;
  }

  .service-single__petit-case-list span {
    min-width: 1.2em;
  }

  .service-single__petit-case-note {
    margin-top: 66px;
    font-size: clamp(13px, .95vw, 15px);
    text-align: left;
    text-indent: -1em;
  }

  .service-single__petit-case-message {
    margin-top: 142px;
    padding: 20px 28px;
    font-size: clamp(16px, 1.12vw, 18px);
  }
}

@media (min-width: 1025px) {
  .service-single__petit-flow-card:first-child {
    padding: 26px 72px 64px;
  }

  .service-single__petit-flow-card:first-child .service-single__petit-flow-measurement {
    grid-template-columns: minmax(320px, 380px) minmax(480px, 1fr);
    gap: 70px;
    align-items: center;
    width: min(1040px, 100%);
    margin-bottom: 86px;
  }

  .service-single__petit-flow-card:first-child .service-single__petit-flow-figures {
    gap: 28px;
  }

  .service-single__petit-flow-card:first-child .service-single__petit-flow-figures img {
    width: min(360px, 100%);
  }

  .service-single__petit-flow-card:first-child .service-single__petit-flow-figures figcaption {
    margin-top: 14px;
  }

  .service-single__petit-flow-card:first-child .service-single__petit-flow-movie {
    width: min(560px, 100%);
  }

  .service-single__petit-flow-card:first-child .service-single__petit-flow-points {
    width: min(780px, 100%);
    line-height: 1.7;
  }

  .service-single__petit-flow-card:first-child .service-single__petit-flow-points div {
    grid-template-columns: 190px 1fr;
    gap: 28px;
  }
}

/* ============================================================
   Core System Operation (BPO) page
   ============================================================ */

/* Service item cards */
.service-single__bpo-lead {
  margin-bottom: 0;
  color: #0098cf;
  font-size: clamp(15px, 1.12vw, 17px);
  font-weight: 900;
  line-height: 1.9;
  text-shadow: 1px 1px 0 #fff33f;
}

.service-single__bpo-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 54px 32px;
  width: min(var(--container-width), 100%);
  margin: 52px auto 0;
}

.service-single__bpo-item {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.service-single__bpo-item h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 0 14px;
  padding-bottom: 10px;
  color: var(--base_color_sub);
  font-size: clamp(16px, 1.2vw, 18px);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: .08em;
  border-bottom: 2px solid var(--base_color_sub);
}

.service-single__bpo-item h3 span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  background: var(--base_color_sub);
  border-radius: 50%;
}

.service-single__bpo-item ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-single__bpo-item li {
  position: relative;
  padding-left: 12px;
  color: var(--base_color_main);
  font-size: clamp(15px, .98vw, 16px);
  font-weight: 400;
  line-height: 1.55;
}

.service-single__bpo-item li::before {
  position: absolute;
  top: .72em;
  left: 0;
  width: 4px;
  height: 4px;
  content: "";
  color: var(--base_color_main);
  border-radius: 50%;
}

.service-single__detail-block--core-jast {
  margin: 100px auto 128px;
  text-align: center;
}

.service-single__detail-block--core-jast .service-single__block-title-wrapper {
  margin-bottom: 68px;
}

.service-single__core-jast-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-single__core-jast-item {
  display: grid;
  justify-items: center;
  align-content: start;
}

.service-single__core-jast-item::before {
  display: block;
  width: 40px;
  height: 12px;
  margin-bottom: 18px;
  content: "";
  background: url("../images/service/detail/common/merit-bullet.webp") center / contain no-repeat;
}

.service-single__core-jast-item h3 {
  min-height: 64px;
  margin: 0 0 26px;
  color: var(--base_color_b2);
  font-size: clamp(16px, 1.2vw, 18px);
  font-weight: 900;
  line-height: 1.55;
}

.service-single__core-jast-item p {
  display: grid;
  place-items: center;
  min-height: 172px;
  margin: 0;
  padding: 16px 20px;
  color: var(--base_color_main);
  font-size: clamp(15px, 1.05vw, 16px);
  font-weight: 400;
  line-height: 1.75;
  background: #FFF67F;
}

.service-single__core-jast-note {
  margin: 66px 0 0;
  color: var(--base_color_orange);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.7;
}

.service-single__detail-block--core-service {
  margin: 0 auto 128px;
  text-align: center;
}

.service-single__core-service-lead {
  margin: 0 0 58px;
  font-size: clamp(17px, 1.65vw, 21px);
  font-weight: 900;
  line-height: 1.9;
  text-shadow: 1px 1px 0 #fff33f;
}

.service-single__detail-block--core-service .service-single__core-merits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(36px, 4vw, 56px);
  width: 100%;
  margin: 0 auto 86px;
}

.service-single__detail-block--core-service .service-single__core-merits article {
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: center;
}

.service-single__detail-block--core-service .service-single__core-merits article::before {
  display: block;
  margin: 0 0 2px;
  color: var(--base_color_main);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  content: "メリット";
}

.service-single__detail-block--core-service .service-single__core-merits span {
  display: block;
  margin: 0 0 30px;
  color: var(--base_color_main);
  font-family: var(--font_en);
  font-size: clamp(44px, 4.1vw, 58px);
  font-weight: 700;
  line-height: .82;
}

.service-single__detail-block--core-service .service-single__core-merits p {
  width: min(100%, 300px);
  margin: 0;
  color: var(--base_color_main);
  font-size: clamp(15px, .98vw, 16px);
  font-weight: 400;
  line-height: 2.05;
  text-align: left;
}

.service-single__core-flow {
  width: min(900px, 100%);
  margin: 0 auto var(--service-single-section-space);
}

.service-single__core-flow-pc {
  display: block;
  width: 100%;
  height: auto;
}

.service-single__core-flow-sp {
  display: none;
}

.service-single__detail-block--core-service .service-single__bpo-message {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 44px 64px;
  align-items: center;
  width: min(1000px, 100%);
  margin: 0 auto;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.service-single__detail-block--core-service .service-single__bpo-message-title {
  grid-column: 1 / -1;
  justify-self: center;
  margin: 0;
  padding: 15px 38px;
  color: #fff;
  font-size: clamp(16px, 1.55vw, 22px);
  font-weight: 900;
  line-height: 1.4;
  background: var(--base_color_sub);
  border-bottom: 5px solid #fff36e;
}

.service-single__detail-block--core-service .service-single__bpo-message-illust img {
  width: 100%;
  max-width: 250px;
}

.service-single__detail-block--core-service .service-single__bpo-message-text {
  text-align: left;
}

.service-single__nowrap {
  white-space: nowrap;
}

.service-single__detail-block--core-service .service-single__bpo-message-text p {
  margin: 0;
  color: var(--text_color);
  font-size: clamp(15px, .98vw, 16px);
  font-weight: 400;
  line-height: 2.1;
}

.service-single__detail-block--core-service .service-single__bpo-message-text p+p {
  margin-top: 28px;
}

/* Flow detail list */
.service-single__bpo-flow-detail {
  margin-top: 40px;
}

.service-single__bpo-flow-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 0;
  padding: 0;
}

.service-single__bpo-flow-step {
  padding: 20px 18px;
  background: rgba(0, 80, 110, .04);
  border: 1px solid rgba(0, 80, 110, .12);
  border-radius: 4px;
}

.service-single__bpo-flow-step dt {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  color: var(--base_color_main);
  font-size: clamp(15px, 1vw, 15px);
  font-weight: 900;
  line-height: 1.4;
}

.service-single__bpo-flow-step dt span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background: var(--base_color_main);
  border-radius: 50%;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .02em;
}

.service-single__bpo-flow-step dd {
  margin: 0;
  font-size: clamp(15px, .85vw, 15px);
  font-weight: 600;
  line-height: 1.75;
  color: var(--base_color_b2);
}

/* Message block with illustration */
.service-single__bpo-message {
  display: grid;
  grid-template-columns: clamp(160px, 18vw, 240px) 1fr;
  gap: 32px 48px;
  align-items: center;
  margin-top: 56px;
  padding: 40px 44px;
  background: rgba(0, 80, 110, .04);
  border-radius: 8px;
  border-left: 4px solid var(--base_color_main);
}

.service-single__bpo-message-illust {
  text-align: center;
}

.service-single__bpo-message-illust img {
  display: block;
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
}

.service-single__bpo-message-text h3 {
  margin: 0 0 14px;
  color: var(--base_color_main);
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 900;
  line-height: 1.5;
}

.service-single__bpo-message-text p {
  margin: 0;
  font-size: clamp(15px, 1vw, 15px);
  font-weight: 700;
  line-height: 1.9;
  color: var(--base_color_b2);
}

.service-single__detail-block--core-change {
  margin-bottom: 104px;
}

.service-single__core-problems {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 880px;
  margin: 0 auto 34px;
}

.service-single__core-problems article {
  padding: 22px 20px;
  background: #fff36e;
  color: var(--base_color_main);
  text-align: center;
  box-shadow: 0 10px 24px rgba(0, 88, 130, .08);
}

.service-single__core-problems h3 {
  margin: 0 0 10px;
  font-size: clamp(15px, 1vw, 15px);
  font-weight: 900;
  line-height: 1.5;
}

.service-single__core-problems p {
  margin: 0;
  font-size: clamp(15px, .9vw, 15px);
  font-weight: 700;
  line-height: 1.75;
}

.service-single__core-change-lead {
  margin: 0 auto 36px;
  color: #f04f32;
  font-size: clamp(15px, 1vw, 15px);
  font-weight: 900;
  line-height: 1.8;
  text-align: center;
}

.service-single__core-merits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 0 auto;
}

.service-single__core-merits article {
  text-align: center;
}

.service-single__core-merits span {
  display: block;
  margin-bottom: 12px;
  color: #0098cf;
  font-family: var(--font_en);
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 700;
  line-height: 1;
}

.service-single__core-merits h3 {
  margin: 0 0 10px;
  color: var(--base_color_main);
  font-size: clamp(15px, 1.15vw, 17px);
  font-weight: 900;
  line-height: 1.55;
}

.service-single__core-merits p {
  margin: 0;
  color: var(--base_color_b2);
  font-size: clamp(15px, .9vw, 15px);
  font-weight: 700;
  line-height: 1.8;
}

@media (max-width: 1023px) {
  .service-single__bpo-items {
    width: min(720px, 100%);
  }

  .service-single__core-jast-grid {
    gap: 24px;
  }

  .service-single__detail-block--core-service .service-single__core-merits {
    gap: 36px;
  }

  .service-single__bpo-flow-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-single__core-problems,
  .service-single__core-merits {
    grid-template-columns: 1fr;
    max-width: 560px;
  }
}

@media (max-width: 767px) {
  .service-single__bpo-lead {
    color: #777;
    font-size: 17px;
    line-height: 2;
    text-align: left;
    text-shadow: none;
  }

  .service-single__bpo-items {
    grid-template-columns: 1fr;
    gap: 48px;
    width: 100%;
    margin-top: 52px;
  }

  .service-single__bpo-item {
    padding: 0;
  }

  .service-single__bpo-item h3 {
    gap: 7px;
    margin-bottom: 14px;
    padding-bottom: 10px;
    font-size: 18px;
    line-height: 1.45;
    letter-spacing: .08em;
  }

  .service-single__bpo-item h3 span {
    width: 18px;
    height: 18px;
    font-size: 12px;
  }

  .service-single__bpo-item ul {
    gap: 12px;
  }

  .service-single__bpo-item li {
    padding-left: 12px;
    font-size: 17px;
    line-height: 1.8;
  }

  .service-single__detail-block--core-jast {
    margin: 78px auto 92px;
  }

  .service-single__detail-block--core-jast .service-single__block-title-wrapper {
    margin-bottom: 58px;
  }

  .service-single__core-jast-grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .service-single__core-jast-item {
    grid-template-columns: auto 1fr;
    align-items: center;
    justify-items: stretch;
    column-gap: 10px;
    text-align: left;
  }

  .service-single__core-jast-item::before {
    width: 34px;
    height: 10px;
    margin: 0;
  }

  .service-single__core-jast-item h3 {
    min-height: 0;
    margin: 0;
    color: var(--base_color_sub);
    font-size: 17px;
    line-height: 1.55;
  }

  .service-single__core-jast-item h3 br {
    display: none;
  }

  .service-single__core-jast-item p {
    grid-column: 1 / -1;
    min-height: 0;
    margin-top: 22px;
    padding: 19px 20px;
    font-size: 15px;
    line-height: 1.72;
    text-align: center;
  }

  .service-single__core-jast-note {
    margin-top: 68px;
    font-size: 15px;
    line-height: 1.75;
    text-align: left;
  }

  .service-single__detail-block--core-service {
    margin-bottom: 86px;
  }

  .service-single__detail-block--core-service .service-single__block-title-wrapper {
    margin-bottom: 42px;
  }

  .service-single__core-service-lead {
    margin-bottom: 58px;
    font-size: 15px;
    line-height: 2;
    text-align: center;
    text-shadow: none;
  }

  .service-single__detail-block--core-service .service-single__core-merits {
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 72px;
  }

  .service-single__detail-block--core-service .service-single__core-merits article {
    text-align: center;
  }

  .service-single__detail-block--core-service .service-single__core-merits span {
    margin-bottom: 20px;
    font-size: 52px;
  }

  .service-single__detail-block--core-service .service-single__core-merits p {
    width: min(260px, 100%);
    font-size: 15px;
    line-height: 1.85;
    text-align: center;
  }

  .service-single__core-flow {
    margin-bottom: var(--service-single-section-space);
  }

  .service-single__core-flow-pc {
    display: none;
  }

  .service-single__core-flow-sp {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
  }

  .service-single__detail-block--core-service .service-single__bpo-message {
    display: grid;
    grid-template-columns: 1fr;
    gap: 26px;
    width: 100%;
  }

  .service-single__detail-block--core-service .service-single__bpo-message-illust {
    display: block;
    text-align: center;
  }

  .service-single__detail-block--core-service .service-single__bpo-message-illust img {
    max-width: 220px;
  }

  .service-single__detail-block--core-service .service-single__bpo-message-title {
    display: block;
    justify-self: stretch;
    margin: 0;
    padding: 10px 12px;
    font-size: 15px;
    line-height: 1.5;
    text-align: center;
    border-bottom-width: 4px;
  }

  .service-single__detail-block--core-service .service-single__bpo-message-text p {
    font-size: 15px;
    line-height: 2;
  }

  .service-single__detail-block--core-service .service-single__bpo-message-text p+p {
    margin-top: 22px;
  }

  .service-single__bpo-flow-detail {
    margin-top: 28px;
  }

  .service-single__bpo-flow-steps {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-single__bpo-message {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0;
    margin-top: 36px;
  }

  .service-single__bpo-message-illust img {
    max-width: 140px;
  }

  .service-single__detail-block--core-service .service-single__bpo-message-illust img {
    max-width: 220px;
  }

  .service-single__detail-block--core-change {
    margin-bottom: 72px;
  }

  .service-single__core-problems {
    gap: 12px;
    margin-bottom: 28px;
  }

  .service-single__core-problems article {
    padding: 18px 16px;
  }

  .service-single__core-change-lead {
    margin-bottom: 28px;
  }

  .service-single__core-merits {
    gap: 24px;
  }
}

/* ============================================================
   Voucher Entry / Document Imaging page
   ============================================================ */

.service-single__voucher-concerns {
  display: grid;
  gap: 6px;
  margin: 38px auto 0;
  padding: 0;
  max-width: 760px;
  list-style: none;
  text-align: center;
}

.service-single__voucher-concerns li {
  padding: 0;
  font-size: clamp(15px, 1.1vw, 16px);
  font-weight: 900;
  line-height: 1.65;
  color: var(--base_color_main);
}

.service-single__voucher-concerns li::before {
  content: none;
}

.service-single__voucher-solution {
  margin: 58px auto 0;
  padding: 0;
  max-width: 920px;
  text-align: center;
  background: transparent;
}

.service-single__voucher-solution p {
  margin: 0;
  color: var(--base_color_main);
  font-size: clamp(15px, 1.1vw, 16px);
  font-weight: 900;
  line-height: 1.9;
  text-shadow: 1px 1px 0 var(--base_color_yellow);
}

.service-single__voucher-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin: 70px 0 76px;
}

.service-single__voucher-arrow span {
  position: relative;
  display: block;
  width: 120px;
  height: 10px;
}

.service-single__voucher-arrow span::before,
.service-single__voucher-arrow span::after {
  position: absolute;
  top: 0;
  width: 62px;
  height: 9px;
  content: "";
  background: #6fc7d2;
}

.service-single__voucher-arrow span::before {
  left: 0;
  border-radius: 999px 0 0 999px;
  transform: rotate(27deg);
  transform-origin: right center;
}

.service-single__voucher-arrow span::after {
  right: 0;
  border-radius: 0 999px 999px 0;
  transform: rotate(-27deg);
  transform-origin: left center;
}

.service-single__voucher-example-title {
  margin: 0;
  text-align: center;
  color: #168bd4;
  font-size: clamp(18px, 1.65vw, 24px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: .18em;
}

.service-single__voucher-services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 68px;
  margin: 48px auto 0;
}

.service-single__voucher-example-list {
  display: grid;
  gap: 31px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-single__voucher-example-list li {
  position: relative;
  min-height: 24px;
  padding-left: 0;
}

.service-single__voucher-example-list li::before {
  content: none;
}

.service-single__voucher-example-list h3 {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 4px;
  font-size: clamp(15px, 1.04vw, 16px);
  font-weight: 500;
  line-height: 1.45;
  color: var(--base_color_b2);
}

.service-single__voucher-example-list h3::before {
  display: block;
  flex: 0 0 40px;
  width: 40px;
  height: 12px;
  content: "";
  background: url("../images/service/detail/common/merit-bullet.webp") center / contain no-repeat;
}

.service-single__voucher-example-list p {
  margin: 0 0 0 54px;
  font-size: clamp(13px, .92vw, 14px);
  font-weight: 800;
  line-height: 1.65;
  color: var(--base_color_b2);
}

.service-single__voucher-example-note {
  margin: 50px 0 0;
  text-align: center;
  color: #ff3b1f;
  font-size: clamp(13px, .98vw, 15px);
  font-weight: 900;
  line-height: 1.7;
}

.service-single__voucher-service-category {
  padding: 22px 20px;
  background: rgba(0, 80, 110, .04);
  border: 1px solid rgba(0, 80, 110, .12);
  border-top: 3px solid var(--base_color_main);
  border-radius: 4px;
}

.service-single__voucher-category-title {
  margin: 0 0 12px;
  color: var(--base_color_main);
  font-size: clamp(15px, 1vw, 15px);
  font-weight: 900;
  line-height: 1.4;
}

.service-single__voucher-service-category ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-single__voucher-service-category li {
  position: relative;
  padding-left: 14px;
  font-size: clamp(15px, .9vw, 15px);
  font-weight: 600;
  line-height: 1.6;
  color: var(--base_color_b2);
}

.service-single__voucher-service-category li::before {
  position: absolute;
  top: .6em;
  left: 0;
  width: 5px;
  height: 5px;
  content: "";
  background: var(--base_color_main);
  border-radius: 50%;
  opacity: .6;
}

.service-single__voucher-merits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  max-width: 820px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.service-single__voucher-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 820px;
  margin: 0 auto 34px;
}

.service-single__voucher-process div {
  position: relative;
  padding: 18px 14px;
  background: #26b5c8;
  color: #fff;
  font-size: clamp(15px, .95vw, 15px);
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
}

.service-single__voucher-process div:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -12px;
  z-index: 1;
  width: 0;
  height: 0;
  content: "";
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 10px solid #26b5c8;
  transform: translateY(-50%);
}

.service-single__voucher-process span {
  display: block;
  margin-bottom: 4px;
  font-family: var(--font_en);
  font-size: 18px;
  line-height: 1;
  opacity: .82;
}

.service-single__voucher-merits li {
  position: relative;
  padding-left: 0;
}

.service-single__voucher-merits li::before {
  content: none;
}

.service-single__voucher-merits h3 {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 8px;
  color: var(--base_color_b2);
  font-size: clamp(15px, 1.04vw, 16px);
  font-weight: 900;
  line-height: 1.4;
}

.service-single__voucher-merits h3::before {
  display: block;
  flex: 0 0 40px;
  width: 40px;
  height: 12px;
  content: "";
  background: url("../images/service/detail/common/merit-bullet.webp") center / contain no-repeat;
}

.service-single__voucher-merits p {
  margin: 0 0 0 54px;
  font-size: clamp(13px, .92vw, 14px);
  font-weight: 500;
  line-height: 1.65;
  color: var(--base_color_b2);
}

.service-single__voucher-note {
  margin: 0 auto;
  padding: 14px 22px;
  max-width: 920px;
  background: rgba(249, 235, 44, .72);
}

.service-single__detail-block--merits .service-single__accent-bullet-list:has(+ .service-single__voucher-note) {
  margin-bottom: 28px;
}

.service-single__voucher-note p {
  margin: 0;
  text-align: center;
  font-size: clamp(15px, 1vw, 15px);
  font-weight: 400;
  line-height: 1.85;
  color: var(--base_color_main);
}

.service-single__voucher-split {
  display: grid;
  grid-template-columns: minmax(240px, 360px) 1fr;
  gap: 40px 56px;
  align-items: start;
  margin-top: 36px;
}

.service-single__voucher-split-list h3 {
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(15px, 1.1vw, 16px);
  font-weight: 900;
  line-height: 1.4;
}

.service-single__voucher-split-list {
  padding: 30px 28px;
  background: var(--base_color_main);
  color: #fff;
}

.service-single__voucher-split-list ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-single__voucher-split-list li {
  position: relative;
  padding-left: 18px;
  font-size: clamp(15px, .95vw, 15px);
  font-weight: 700;
  line-height: 1.65;
  color: #fff;
}

.service-single__voucher-split-list li::before {
  position: absolute;
  top: .55em;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  background: #fff;
  border-radius: 50%;
}

.service-single__voucher-split-message h3 {
  margin: 0 0 16px;
  color: var(--base_color_main);
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 900;
  line-height: 1.5;
}

.service-single__voucher-split-message p {
  margin: 0;
  font-size: clamp(15px, .98vw, 15px);
  font-weight: 700;
  line-height: 1.9;
  color: var(--base_color_b2);
}

@media (max-width: 1023px) {
  .service-single__voucher-services {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-single__voucher-split {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.service-single__voucher-concerns {
  gap: 20px;
  max-width: 100%;
  margin-top: 46px;
}

.service-single__voucher-concerns li {
  color: var(--base_color_main);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.65;
  text-align: center;
}

.service-single__voucher-concerns li::before {
  content: "・";
}

.service-single__voucher-solution {
  margin-top: 72px;
}

.service-single__voucher-solution .service-single__block-lead {
  margin-bottom: 0;
}

.service-single__voucher-arrow {
  gap: 5px;
  margin: 52px 0;
}

.service-single__voucher-arrow span {
  width: 80px;
  height: 10px;
}

.service-single__voucher-arrow span::before,
.service-single__voucher-arrow span::after {
  width: 42px;
  height: 7px;
}

.service-single__voucher-example-title {
  font-size: 18px;
  letter-spacing: .14em;
}

.service-single__voucher-services {
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 32px;
}

.service-single__voucher-example-list {
  gap: 24px;
}

.service-single__voucher-example-list li {
  padding-left: 0;
}

.service-single__voucher-example-list h3 {
  gap: 10px;
}

.service-single__voucher-example-list h3::before {
  flex-basis: 32px;
  width: 32px;
  height: 10px;
}

.service-single__voucher-example-list p {
  margin-left: 42px;
}

.service-single__voucher-example-note {
  margin-top: 36px;
}

.service-single__voucher-merits {
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 100%;
}

.service-single__voucher-merits li {
  padding-left: 0;
}

.service-single__voucher-merits h3 {
  gap: 10px;
}

.service-single__voucher-merits h3::before {
  flex-basis: 32px;
  width: 32px;
  height: 10px;
}

.service-single__voucher-merits p {
  margin-left: 42px;
}

.service-single__voucher-example-list li::before,
.service-single__voucher-merits li::before {
  width: 32px;
  height: 10px;
}

.service-single__voucher-process {
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 26px;
}

.service-single__voucher-process div:not(:last-child)::after {
  top: auto;
  right: 50%;
  bottom: -10px;
  border-top: 9px solid #26b5c8;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  border-bottom: 0;
  transform: translateX(50%);
}

@media (min-width: 768px) {
  .service-single__voucher-concerns {
    gap: 6px;
    max-width: 760px;
    margin-top: 38px;
  }

  .service-single__voucher-concerns li {
    font-size: clamp(15px, 1.1vw, 16px);
  }

  .service-single__voucher-concerns li::before {
    content: none;
  }

  .service-single__voucher-solution {
    margin-top: 58px;
  }

  .service-single__voucher-arrow {
    margin: 76px 0;
  }

  .service-single__voucher-arrow span {
    width: 120px;
    height: 10px;
  }

  .service-single__voucher-arrow span::before,
  .service-single__voucher-arrow span::after {
    width: 62px;
    height: 9px;
  }

  .service-single__voucher-example-title {
    font-size: clamp(18px, 1.65vw, 24px);
    letter-spacing: .18em;
  }

  .service-single__voucher-services {
    grid-template-columns: repeat(2, 1fr);
    gap: 68px;
    margin-top: 48px;
  }

  .service-single__voucher-example-list {
    gap: 31px;
  }

  .service-single__voucher-example-list h3 {
    gap: 14px;
  }

  .service-single__voucher-example-list h3::before {
    flex-basis: 40px;
    width: 40px;
    height: 12px;
  }

  .service-single__voucher-example-list p {
    margin-left: 54px;
  }

  .service-single__voucher-example-note {
    margin-top: 50px;
  }

  .service-single__voucher-merits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
    max-width: 820px;
  }

  .service-single__voucher-merits h3 {
    gap: 14px;
  }

  .service-single__voucher-merits h3::before {
    flex-basis: 40px;
    width: 40px;
    height: 12px;
  }

  .service-single__voucher-merits p {
    margin-left: 54px;
  }

  .service-single__voucher-example-list li::before,
  .service-single__voucher-merits li::before {
    width: 40px;
    height: 12px;
  }

  .service-single__voucher-process {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 34px;
  }

  .service-single__voucher-process div:not(:last-child)::after {
    top: 50%;
    right: -12px;
    bottom: auto;
    border-top: 8px solid transparent;
    border-right: 0;
    border-bottom: 8px solid transparent;
    border-left: 10px solid #26b5c8;
    transform: translateY(-50%);
  }
}

/* ============================================================
   Service Single: shared vertical rhythm
   ============================================================ */

.service-single__details-section>.service-single__detail-block:not(.service-single__detail-block--gradient-strengths) {
  margin-top: 0;
  margin-bottom: 0;
}

.service-single__details-section>.service-single__detail-block:has(+ .service-single__kship-logo),
.service-single__details-section:has(+ .service-single__desc-section)>.service-single__detail-block:last-child {
  margin-bottom: 0 !important;
}

.service-single__details-section>.service-single__detail-block:first-child>.service-single__block-title-wrapper:first-child>h2:first-child {
  margin-top: 80px;
}

@media (min-width: 768px) {
  .service-single__details-section>.service-single__detail-block:first-child>.service-single__block-title-wrapper:first-child>h2:first-child {
    margin-top: 120px;
  }
}

.service-single__details-section>.service-single__detail-block+.service-single__detail-block:not(.service-single__detail-block--gradient-strengths):not(.service-single__detail-block--wide-image),
.service-single__details-section>.service-single__kship-logo+.service-single__detail-block {
  margin-top: var(--service-single-section-space);
}

.service-single__details-section>.service-single__detail-block--wide-image {
  margin-bottom: 0;
}

.service-single__details-section>.service-single__detail-block:has(+ .service-single__detail-block--gradient-strengths) {
  margin-bottom: 0;
}

.service-single__details-section>.service-single__detail-block:has(+ .service-single__detail-block--wide-image) {
  margin-bottom: 0 !important;
}

.service-single__details-section>.service-single__detail-block--wide-image:has(+ .service-single__detail-block--gradient-strengths) {
  z-index: auto;
  margin-top: 45px;
  margin-bottom: 0;
  transform: none;
}

.service-single__details-section>.service-single__detail-block--wide-image+.service-single__detail-block--gradient-strengths {
  position: relative;
  z-index: 2;
  margin-top: -180px;
}

@media (min-width: 768px) {
  .service-single__details-section>.service-single__detail-block--wide-image:has(+ .service-single__detail-block--gradient-strengths) {
    margin-top: 100px;
  }

  .service-single__details-section>.service-single__detail-block--wide-image+.service-single__detail-block--gradient-strengths {
    margin-top: -250px;
  }
}

@media (min-width: 768px) {
  .service-single__detail-block--health-cycle .service-single__block-content {
    display: grid;
    justify-items: center;
  }

  .service-single__detail-block--health-cycle .service-single__block-image.service-single__health-cycle-image {
    width: min(650px, 100%);
    margin: 0 auto 40px;
  }

  .service-single__detail-block--health-cycle .service-single__health-cycle-image img {
    display: block;
    width: min(650px, 100%);
    margin-inline: auto;
  }

  .service-single__detail-block--health-cycle .service-single__block-lead {
    margin-top: 40px;
    margin-bottom: 42px !important;
    color: var(--base_color_main);
    font-size: clamp(17px, 1.65vw, 21px);
    font-weight: 900;
    line-height: 1.9;
    text-align: center;
    text-shadow: 1.5px 1.5px 0 rgba(249, 235, 44, .72);
  }

  .service-single__seminar-content-heading .service-single__block-lead {
    width: 100%;
    margin-bottom: 0 !important;
    color: var(--base_color_main);
    font-size: clamp(17px, 1.65vw, 21px);
    font-weight: 900;
    line-height: 1.9;
    text-align: center;
    text-shadow: 1.5px 1.5px 0 rgba(249, 235, 44, .72);
  }
}

/* SP-only line breaks */
br.sp {
  display: none !important;
}

@media only screen and (max-width: 768px) {
  br.sp {
    display: initial !important;
  }
}

@media only screen and (min-width: 769px) {

  .service-single__flow-note--dq-stack .service-single__flow-note-panel p,
  .service-single__flow-note--dq-stack .service-single__flow-note-panel small {
    text-align: left;
  }

  .service-single__flow-note--dq-stack .service-single__flow-note-panel small {
    white-space: nowrap;
  }
}

@media only screen and (min-width: 769px) and (max-width: 1000px) {
  .service-single__flow-note--dq-stack {
    width: min(720px, calc(100% - 48px));
    margin-right: auto;
    margin-left: auto;
  }

  .service-single__flow-note--dq-stack .service-single__flow-note-pc {
    gap: 36px;
  }

  .service-single__flow-note--dq-stack .service-single__flow-note-panel {
    padding: 40px 40px 64px;
    clip-path: none;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath fill='%23000' d='M2 0H98Q100 0 100 2V86Q100 88 98.1 88.5L51.8 99.5Q50 100 48.2 99.5L1.9 88.5Q0 88 0 86V2Q0 0 2 0Z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath fill='%23000' d='M2 0H98Q100 0 100 2V86Q100 88 98.1 88.5L51.8 99.5Q50 100 48.2 99.5L1.9 88.5Q0 88 0 86V2Q0 0 2 0Z'/%3E%3C/svg%3E");
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .service-single__flow-note--dq-stack .service-single__flow-note-title,
  .service-single__flow-note--dq-stack .service-single__flow-note-panel h3 {
    margin-bottom: 28px;
    font-size: 18px;
    text-align: center;
  }

  .service-single__flow-note--dq-stack .service-single__flow-note-list,
  .service-single__flow-note--dq-stack .service-single__flow-note-panel ol {
    width: max-content;
    max-width: 100%;
    gap: 12px;
    margin-right: auto;
    margin-bottom: 34px;
    margin-left: auto;
  }

  .service-single__flow-note--dq-stack .service-single__flow-note-list li,
  .service-single__flow-note--dq-stack .service-single__flow-note-bullet-list li,
  .service-single__flow-note--dq-stack .service-single__flow-note-panel li {
    font-size: 16px;
  }

  .service-single__flow-note--dq-stack .service-single__flow-note-message,
  .service-single__flow-note--dq-stack .service-single__flow-note-caption,
  .service-single__flow-note--dq-stack .service-single__flow-note-panel p,
  .service-single__flow-note--dq-stack .service-single__flow-note-panel small {
    text-align: center;
  }

  .service-single__flow-note--dq-stack .service-single__flow-note-message,
  .service-single__flow-note--dq-stack .service-single__flow-note-panel p {
    font-size: 16px;
  }

  .service-single__flow-note--dq-stack .service-single__flow-note-caption,
  .service-single__flow-note--dq-stack .service-single__flow-note-panel small {
    font-size: 13px;
  }
}
