@charset "UTF-8";
:root {
  --pc-ink: #292b2d;
  --pc-blue: #0057c0;
  --pc-blue-deep: #00418f;
  --pc-blue-grad: linear-gradient(90deg, #00418f 0%, #0057c0 100%);
  --pc-gray-bg: #f4f6f8;
  --pc-container: 108rem;
  --pc-font: noto-sans-cjk-jp, sans-serif;
}

.sp {
  display: none;
}

@media (max-width: 768px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
}
.pc-redesign,
.pc-redesign * {
  font-family: var(--pc-font);
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}

body {
  overflow-x: clip;
}

.pc-container {
  width: 100%;
  max-width: var(--pc-container);
  margin-inline: auto;
  padding-inline: 0;
}
@media (max-width: 1120px) {
  .pc-container {
    padding-inline: 2rem;
  }
}

.pc-btn {
  --_h: min(4.571vw, 6.4rem);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: min(0.857vw, 1.2rem);
  min-width: min(20vw, 28rem);
  height: var(--_h);
  padding: 0 min(4vw, 5.6rem);
  border-radius: calc(var(--_h) / 2);
  background: var(--pc-blue-grad);
  color: #fff;
  font-size: min(1.286vw, 1.8rem);
  font-weight: 500;
  letter-spacing: 0.054rem;
  text-decoration: none;
  box-shadow: 0 1rem 2.4rem -1rem rgba(0, 65, 143, 0.55);
}
.pc-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #001e43;
  border-radius: inherit;
  transform: scale(0, 1);
  transform-origin: right center;
  transition: transform 0.3s ease;
}
@media (hover: hover) {
  .pc-btn:hover::before {
    transform: scale(1, 1);
    transform-origin: left center;
  }
}
.pc-btn__label {
  position: relative;
  z-index: 1;
  white-space: nowrap;
}
.pc-btn__lead {
  position: absolute;
  left: min(2.286vw, 3.2rem);
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  display: inline-flex;
  width: min(1.714vw, 2.4rem);
  justify-content: center;
  align-items: center;
}
.pc-btn__lead img {
  width: min(1.5vw, 2.1rem);
  height: auto;
  display: block;
}
.pc-btn__arrow {
  position: absolute;
  right: min(0.857vw, 1.2rem);
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  flex: 0 0 auto;
  width: min(2.714vw, 3.8rem);
  height: min(2.714vw, 3.8rem);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fff;
  border-radius: 50%;
  color: var(--pc-blue);
}
.pc-btn__arrow svg {
  width: min(0.929vw, 1.3rem);
  height: auto;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.pc-btn__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(0.929vw, 1.3rem);
  height: min(0.929vw, 1.3rem);
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%209%208'%3E%3Cpath%20d='M9%204.174L5.692%200H4l3.308%204.174L4%208h1.692L9%204.174Z'/%3E%3Cpath%20d='M5%204.174L1.692%200H0l3.308%204.174L0%208h1.692L5%204.174Z'/%3E%3C/svg%3E") no-repeat center/contain;
  mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%209%208'%3E%3Cpath%20d='M9%204.174L5.692%200H4l3.308%204.174L4%208h1.692L9%204.174Z'/%3E%3Cpath%20d='M5%204.174L1.692%200H0l3.308%204.174L0%208h1.692L5%204.174Z'/%3E%3C/svg%3E") no-repeat center/contain;
  transform: translate(calc(-50% - 1.2rem), -50%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
@media (hover: hover) {
  .pc-btn:hover .pc-btn__arrow svg {
    transform: translateX(1.2rem);
    opacity: 0;
  }
  .pc-btn:hover .pc-btn__arrow::after {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
}
.pc-btn--orange {
  background: linear-gradient(90deg, #ff7518 0%, #ff9147 100%);
  box-shadow: 0 1rem 2.4rem -1rem rgba(255, 117, 24, 0.5);
}
.pc-btn--orange::before {
  background: #c44f00;
}
.pc-btn--orange .pc-btn__arrow {
  color: #ff7518;
}

.p-cpfPrivatecloudIndex {
  padding-top: 17rem;
  background-color: #f9fbfe;
}

.c-headerContainer {
  background-color: #fff;
}

#js-c-header {
  transition: top 0.3s ease;
}

header[data-header-state=scroll] {
  top: -9rem;
}

@media (max-width: 768px) {
  header[data-header-state=scroll] {
    top: 0;
  }
}
.pc-hero {
  position: relative;
  width: 100%;
  background: #fff url("../img/hero/hero-bg.jpg") right bottom/cover no-repeat;
  display: flex;
  flex-direction: column;
}
@media (min-width: 769px) {
  .pc-hero {
    aspect-ratio: 1500/600;
  }
}
.pc-hero__inner {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: var(--pc-container);
  margin-inline: auto;
  padding: min(2.857vw, 4rem) 0 min(3.429vw, 4.8rem);
}
.pc-hero__content {
  max-width: 72rem;
}

.c-header .pc-subnav {
  flex: 1 0 100%;
  width: 100%;
  order: 99;
}

.pc-subnav {
  position: absolute;
  bottom: -6rem;
  z-index: 0;
  width: 100%;
  background: rgba(57, 60, 64, 0.6);
  -webkit-backdrop-filter: blur(0.2rem);
  backdrop-filter: blur(0.2rem);
}
.pc-subnav__inner {
  width: 100%;
  margin-inline: 0;
  min-height: 6rem;
  padding: 0 4rem;
  display: flex;
  align-items: center;
  gap: 4.5rem;
}
.pc-subnav__brand {
  display: none;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05rem;
  text-decoration: none;
  white-space: nowrap;
}
.pc-subnav__nav {
  display: flex;
  align-items: center;
  gap: 2.8rem;
  margin-left: auto;
}
.pc-subnav__nav a {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}
.pc-subnav__nav a:hover {
  opacity: 0.7;
}
.pc-subnav__cta {
  display: flex;
  gap: 0.8rem;
}
.pc-subnav__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 16rem;
  height: 3.6rem;
  padding: 0 1rem;
  border-radius: 0.2rem;
  background: #ff7518;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease;
}
.pc-subnav__btn:hover {
  background: #ec6810;
}
.pc-subnav__btn svg {
  width: 1.6rem;
  height: 1.6rem;
  fill: currentColor;
}
.pc-subnav__btn img {
  width: 1.6rem;
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
}
.pc-subnav__btn--light {
  background: #024290;
  color: #fff;
}
.pc-subnav__btn--light:hover {
  background: #013973;
}

@media (max-width: 768px) {
  .pc-subnav {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: #e8e8e8;
  }
  .pc-subnav .pc-subnav__nav {
    display: none;
  }
  .pc-subnav .pc-subnav__btn {
    height: 4.8rem;
  }
}
.pc-hero__head {
  display: flex;
  align-items: flex-start;
  gap: min(0.857vw, 1.2rem);
}
@media (min-width: 769px) {
  .pc-hero__head {
    position: relative;
  }
}
.pc-hero__cubes {
  position: relative;
  flex: 0 0 auto;
  width: min(14vw, 20rem);
  margin: 0;
  align-self: flex-end;
}
@media (min-width: 769px) {
  .pc-hero__cubes {
    top: min(2.1vw, 3rem);
  }
}
.pc-hero__cubes picture {
  display: block;
}
.pc-hero__cubes img {
  display: block;
  width: 100%;
  height: auto;
}
.pc-hero__headText {
  padding-top: min(1.286vw, 1.8rem);
}
.pc-hero__labelRow {
  display: flex;
  align-items: center;
  gap: min(2vw, 2.8rem);
  margin: 0 0 min(1.429vw, 2rem);
}
.pc-hero__flex {
  flex: 0 0 auto;
  height: min(2.857vw, 4rem);
  width: auto;
  display: block;
}
@media (min-width: 769px) {
  .pc-hero__flex {
    position: absolute;
    left: 0;
    top: min(1.571vw, 2.2rem);
    z-index: 2;
  }
}
.pc-hero__label {
  flex: 0 0 auto;
  min-width: min(20vw, 28rem);
  text-align: center;
  color: var(--pc-ink);
  letter-spacing: 0.06rem;
  margin: 0;
  padding: min(0.857vw, 1.2rem) min(2vw, 2.8rem);
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(90deg, #fbfbfb 0%, #292b2d 26.9%, #f5f6f6 64.9%, #8d9297 81.25%, #f8f8f8 100%) 1;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(231, 234, 238, 0.66) 24%, #dae0e5 49%, #f5fafe 62.5%, #ebeef2 80%, rgba(255, 255, 255, 0) 100%);
}
.pc-hero__label .lg {
  font-size: min(1.357vw, 1.9rem);
  font-weight: 400;
}
.pc-hero__label .sm {
  font-size: min(1.143vw, 1.6rem);
  font-weight: 400;
}
.pc-hero__title {
  margin: 0;
  color: var(--pc-ink);
  font-weight: 500;
  font-size: min(3.429vw, 4.8rem);
  line-height: 1.38;
  letter-spacing: 0.23rem;
}
.pc-hero__title .sm {
  font-size: min(2.857vw, 4rem);
}
.pc-hero__product {
  margin: min(2.143vw, 3rem) 0 min(1.857vw, 2.6rem) 0;
}
.pc-hero__tagline {
  font-size: min(1.2vw, 1.6rem);
  font-weight: 500;
  letter-spacing: 0.042rem;
  color: var(--pc-ink);
}
.pc-hero__productName {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: min(0.857vw, 1.2rem);
  flex-wrap: wrap;
}
.pc-hero__productName .pName {
  font-size: min(2.429vw, 2.9rem);
  font-weight: 500;
  letter-spacing: 0.1rem;
  color: var(--pc-ink);
}
.pc-hero__productName .pSuite {
  display: block;
  width: min(13.857vw, 19.4rem);
  height: auto;
  transform: translateY(2px);
}
.pc-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: min(1.429vw, 2rem);
}

@media (max-width: 900px) {
  .pc-subnav__brand {
    display: none;
  }
  .pc-subnav__nav {
    gap: 1.8rem;
    margin-left: 0;
  }
}
@media (max-width: 768px) {
  .p-cpfPrivatecloudIndex {
    padding-top: 5.5rem;
  }
  .pc-hero {
    padding-top: 0;
    background-color: #fff;
    background-image: url("../img/hero/hero-bg-sp.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }
  .pc-subnav__inner {
    flex-wrap: wrap;
    gap: 1rem 1.6rem;
    padding: 1rem 1.6rem;
  }
  .pc-subnav__nav {
    width: 100%;
    gap: 1.4rem;
    flex-wrap: wrap;
    order: 2;
  }
  .pc-subnav__cta {
    order: 1;
    margin-left: auto;
  }
  .pc-hero__inner {
    padding: 1.8rem 2rem 2.4rem;
  }
  .pc-hero__content {
    max-width: 100%;
  }
  .pc-hero__head {
    gap: 0.8rem 1.6rem;
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .pc-hero__headText {
    display: contents;
  }
  .pc-hero__cubes {
    width: 12rem;
  }
  .pc-hero__cubesLabel {
    font-size: 1.15rem;
    letter-spacing: 0.03rem;
  }
  .pc-hero__labelRow {
    flex: 1 1 0;
    min-width: 0;
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 0;
  }
  .pc-hero__label {
    min-width: 0;
    flex: 0 0 auto;
    padding: 0.6rem 0;
  }
  .pc-hero__label .lg {
    font-size: 1.7rem;
    letter-spacing: 0.032rem;
  }
  .pc-hero__label .sm {
    font-size: 1.3rem;
  }
  .pc-hero__flex {
    height: 4.4rem;
  }
  .pc-hero__title {
    flex: 1 0 100%;
    margin-top: 0;
    font-size: 3.2rem;
    line-height: 4.6rem;
    letter-spacing: 0.064rem;
  }
  .pc-hero__title .sm {
    font-size: 2.4rem;
  }
  .pc-hero__product {
    margin-top: 1.6rem;
  }
  .pc-hero__tagline {
    font-size: 1.3rem;
    letter-spacing: 0.013rem;
  }
  .pc-hero__productName {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .pc-hero__productName .pName {
    font-size: 1.9rem;
  }
  .pc-hero__productName .pSuite {
    width: 13rem;
    transform: none;
  }
  .pc-hero__cta {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 1rem;
    margin-top: 4rem;
  }
  .pc-btn {
    --_h: 5.6rem;
    min-width: 0;
    width: 100%;
    font-size: 1.8rem;
    letter-spacing: 0.054rem;
    padding: 0 4rem;
    gap: 1rem;
  }
  .pc-btn__lead {
    width: 2rem;
    left: 2.4rem;
  }
  .pc-btn__lead img {
    width: 1.9rem;
  }
  .pc-btn__arrow {
    width: 3.4rem;
    height: 3.4rem;
    right: 1rem;
  }
  .pc-btn__arrow svg {
    width: 1.3rem;
    height: auto;
  }
  .pc-btn__arrow::after {
    width: 1.3rem;
    height: 1.3rem;
  }
}
.pc-news {
  background: #fff;
  padding: 3.2rem 0;
}
.pc-news__item {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  text-decoration: none;
  color: var(--pc-ink);
}
.pc-news__item:hover .pc-news__text {
  color: var(--pc-blue);
}
.pc-news__label {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  background: #f4f4f4;
  color: var(--pc-ink);
  font-family: "Inter", "Manrope", var(--pc-font);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05rem;
  padding: 1.2rem 3rem 1.2rem 1.8rem;
  clip-path: polygon(0 0, 100% 0, calc(100% - 1.6rem) 100%, 0 100%);
}
.pc-news__date {
  flex: 0 0 auto;
  color: #676a6d;
  font-family: "Inter", "Manrope", var(--pc-font);
  font-size: 1.2rem;
  letter-spacing: 0.05rem;
}
.pc-news__text {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--pc-ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.2s ease;
}
@media (min-width: 769px) {
  .pc-news {
    padding: 4.8rem 0;
  }
  .pc-news__item {
    gap: 0;
    height: 6.5rem;
    background: #fff;
    border: 1px solid #eaeaea;
    overflow: hidden;
    padding-right: 2.8rem;
  }
  .pc-news__label {
    align-self: stretch;
    justify-content: flex-start;
    min-width: 11.5rem;
    padding: 0 0 0 2.8rem;
  }
  .pc-news__date {
    margin-left: 2.8rem;
  }
  .pc-news__text {
    margin-left: 2.4rem;
  }
}
@media (max-width: 768px) {
  .pc-news {
    padding: 4rem 0;
  }
  .pc-news__item {
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    border: 1px solid #eaeaea;
    background: #fff;
    padding: 0;
  }
  .pc-news__date {
    margin-left: auto;
    padding-right: 2rem;
    font-size: 1.4rem;
  }
  .pc-news__text {
    flex: 1 1 100%;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    padding: 1.2rem 2rem 2rem;
    font-size: 1.4rem;
    line-height: 1.7;
  }
}

.pc-why {
  position: relative;
  width: 100%;
  background: #f9fbfe;
  padding: 11rem 0 18rem;
  overflow: hidden;
}
.pc-why::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(118deg, #1a1d1f 0%, #26292c 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 9vw));
}
.pc-why::after {
  content: "";
  position: absolute;
  top: -12%;
  left: -6%;
  width: 55%;
  height: 75%;
  z-index: 1;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}
.pc-why__inner {
  position: relative;
  z-index: 2;
}
.pc-why__brSp {
  display: none;
}
.pc-why__title {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  margin: 0 0 2.4rem;
  color: #fff;
  font-size: 3.8rem;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.114rem;
}
.pc-why__titleLine {
  flex: 0 0 auto;
  width: 5rem;
  height: 1px;
  background: #b2b6ba;
}
.pc-why__lead {
  margin: 0 0 4rem;
  color: #dde3e8;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.016rem;
}
.pc-why__cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4.2rem;
  align-items: start;
}
.pc-why__card {
  margin: 0;
}
.pc-why__card:nth-child(2) {
  margin-top: 3rem;
}
.pc-why__card:nth-child(3) {
  margin-top: 6rem;
}
.pc-why__cardImg {
  overflow: hidden;
  aspect-ratio: 332/210;
  background: #0e1012;
  box-shadow: 0 1.6rem 3.2rem -1.6rem rgba(0, 0, 0, 0.6);
}
.pc-why__cardImg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pc-why__cardTitle {
  margin: 2.2rem 0 1.2rem;
  color: #fff;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.066rem;
}
.pc-why__cardText {
  margin: 0;
  color: #dde3e8;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.85;
  letter-spacing: 0.014rem;
}
@media (max-width: 900px) {
  .pc-why {
    padding: 5.6rem 0 9rem;
  }
  .pc-why__title {
    font-size: 2.8rem;
    gap: 1.2rem;
    line-height: 1.4;
  }
  .pc-why__titleLine {
    width: 3rem;
  }
  .pc-why__lead {
    font-size: 1.5rem;
    margin-bottom: 3.6rem;
  }
  .pc-why__cards {
    gap: 2.8rem;
  }
  .pc-why__card:nth-child(2), .pc-why__card:nth-child(3) {
    margin-top: 0;
  }
  .pc-why__cardTitle {
    font-size: 2rem;
    margin-top: 1.8rem;
  }
}
@media (max-width: 768px) {
  .pc-why {
    padding: 5.2rem 0 8.5rem;
  }
  .pc-why::before {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 9.3vw));
  }
  .pc-why__brSp {
    display: inline;
  }
  .pc-why__title {
    align-items: flex-start;
    gap: 1.4rem;
    font-size: 2.4rem;
    line-height: 1.5;
    letter-spacing: 0.048rem;
  }
  .pc-why__titleLine {
    margin-top: 1.6rem;
    width: 2.5rem;
  }
  .pc-why__lead {
    font-size: 1.5rem;
    line-height: 1.73;
    margin-bottom: 3.2rem;
  }
  .pc-why__cards {
    grid-template-columns: 1fr;
    gap: 4rem;
    max-width: 42rem;
    margin-inline: auto;
  }
  .pc-why__card:nth-child(2), .pc-why__card:nth-child(3) {
    margin-top: 0;
  }
  .pc-why__cardImg {
    border-radius: 0;
  }
  .pc-why__cardTitle {
    font-size: 2rem;
    letter-spacing: 0.04rem;
    margin-top: 1.8rem;
    margin-bottom: 1rem;
  }
  .pc-why__cardText {
    font-size: 1.4rem;
    line-height: 1.85;
  }
}

.pc-reason {
  position: relative;
  background: url(../img/reason/reason_bg.png) #f9fbfe no-repeat center top/100%;
  padding: 4rem 0 10rem;
}
.pc-reason__inner {
  position: relative;
  z-index: 1;
}
.pc-reason__head {
  margin-bottom: 12.4rem;
}
.pc-reason__eyebrow {
  margin: 0 0 1.2rem;
  font-family: "Inter", "Manrope", var(--pc-font);
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.04rem;
  color: var(--pc-ink);
}
.pc-reason__title {
  margin: 0;
  font-size: 4.4rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.132rem;
  color: var(--pc-ink);
}
.pc-reason__divider {
  display: block;
  width: 16.7rem;
  height: 2px;
  margin: 4.4rem 0;
  background: #d2d5da;
}
.pc-reason__lead {
  margin: 0;
  font-size: 3.8rem;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.114rem;
  color: var(--pc-ink);
}

.l-main,
.p-cpfPrivatecloud,
.p-cpfPrivatecloudIndex {
  overflow-x: clip;
  overflow-y: visible;
}

.pc-reason__list {
  display: grid;
  grid-template-columns: minmax(0, 47rem) 1fr;
  column-gap: 9rem;
  align-items: stretch;
}
.pc-reason__media {
  position: relative;
}
.pc-reason__mediaInner {
  position: sticky;
  top: 15rem;
  aspect-ratio: 470/563;
  clip-path: polygon(8.4% 0, 100% 0, 100% 93%, 90.8% 100%, 0 100%, 0 7.2%);
  background: #0e1012;
  overflow: hidden;
}
.pc-reason__fig {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.pc-reason__fig.is-active {
  opacity: 1;
}
.pc-reason__fig img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pc-reason__steps {
  display: flex;
  flex-direction: column;
}
.pc-reason__body {
  min-height: 57rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.pc-reason__body:not(:last-child) {
  margin-bottom: 35rem;
}
.pc-reason__figInline {
  display: none;
}
.pc-reason__itemTitle {
  margin: 0 0 2.4rem;
  font-size: 3.4rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.102rem;
  color: var(--pc-ink);
}
.pc-reason__text {
  margin: 0 0 1.6rem;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.016rem;
  color: #505255;
}
.pc-reason__text:last-child {
  margin-bottom: 0;
}

@media (prefers-reduced-motion: reduce) {
  .pc-reason__fig {
    transition: none;
  }
}
@media (max-width: 900px) {
  .pc-reason {
    padding: 6.4rem 0 7.2rem;
  }
  .pc-reason__head {
    margin-bottom: 4.8rem;
  }
  .pc-reason__title {
    font-size: 3.4rem;
  }
  .pc-reason__lead {
    font-size: 2.8rem;
  }
  .pc-reason__divider {
    margin: 2rem 0;
  }
  .pc-reason__list {
    grid-template-columns: minmax(0, 34rem) 1fr;
    column-gap: 4rem;
  }
  .pc-reason__mediaInner {
    top: 9rem;
  }
  .pc-reason__body {
    min-height: 46rem;
  }
  .pc-reason__itemTitle {
    font-size: 2.6rem;
    margin-bottom: 1.8rem;
  }
}
@media (max-width: 768px) {
  .pc-reason {
    padding: 5.6rem 0 0;
  }
  .pc-reason__head {
    margin-bottom: 4rem;
  }
  .pc-reason__eyebrow {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  .pc-reason__title {
    font-size: 2.8rem;
    letter-spacing: 0.056rem;
  }
  .pc-reason__divider {
    margin: 1.8rem 0;
  }
  .pc-reason__lead {
    font-size: 2.4rem;
    line-height: 1.54;
    letter-spacing: 0.048rem;
  }
  .pc-reason__list {
    display: block;
  }
  .pc-reason__media {
    display: none;
  }
  .pc-reason__steps {
    display: block;
  }
  .pc-reason__body {
    min-height: 0;
    display: block;
  }
  .pc-reason__body:not(:last-child) {
    margin-bottom: 5.6rem;
  }
  .pc-reason__body:last-child {
    margin-bottom: 0;
  }
  .pc-reason__figInline {
    display: block;
    margin: 0 0 2.8rem;
    max-width: none;
    aspect-ratio: 470/563;
    clip-path: polygon(8.4% 0, 100% 0, 100% 93%, 90.8% 100%, 0 100%, 0 7.2%);
    background: #0e1012;
    overflow: hidden;
  }
  .pc-reason__figInline img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .pc-reason__itemTitle {
    font-size: 2.2rem;
    margin-bottom: 1.6rem;
    line-height: 1.45;
    letter-spacing: 0.022rem;
  }
  .pc-reason__text {
    font-size: 1.4rem;
    line-height: 1.85;
    letter-spacing: 0.014rem;
  }
}
.pc-price {
  position: relative;
  background: #f9fbfe;
  padding: 8rem 0 6rem;
}
.pc-price::before {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 1500/1054;
  background: url(../img/price/price_bg.png) no-repeat left center/contain;
  position: absolute;
  left: 0;
  top: -50rem;
  pointer-events: none;
}
.pc-price__panel {
  position: relative;
  background: #fff;
  box-shadow: 0 3rem 6rem -2.4rem rgba(20, 40, 80, 0.18);
  padding: 5.6rem 5.2rem 4.8rem;
}
.pc-price__corner {
  position: absolute;
  width: 1.1rem;
  height: 1.1rem;
  background: #0057c0;
}
.pc-price__corner--tl {
  top: 1rem;
  left: 1rem;
}
.pc-price__corner--tr {
  top: 1rem;
  right: 1rem;
}
.pc-price__title {
  margin: 0;
  text-align: center;
  font-size: 3.4rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.102rem;
  color: var(--pc-ink);
}
.pc-price__sub {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  margin: 1.6rem 0 0;
  color: #5e6063;
}
.pc-price__sub::before, .pc-price__sub::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: #d6d9dd;
}
.pc-price__sub span {
  flex: 0 0 auto;
  font-size: 2rem;
  letter-spacing: 0.06rem;
}
.pc-price__compare {
  position: relative;
  margin: 3.6rem 0 0;
  display: grid;
  grid-template-columns: 1fr 53.7% 1fr;
  align-items: start;
}
@media (max-width: 1120px) {
  .pc-price__compare {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
    margin-top: 2.8rem;
    max-width: 42rem;
    margin-inline: auto;
  }
}
.pc-price__figure {
  position: relative;
  z-index: 1;
  margin: 0;
  min-width: 0;
}
.pc-price__figure img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 1120px) {
  .pc-price__figure {
    order: -1;
    width: calc(100% + 4rem);
    max-width: none;
    transform: translateX(-2rem);
  }
  .pc-price__figure img {
    width: 100%;
    max-width: 100%;
  }
}
.pc-price__card {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding: 3rem 1.8rem 3rem;
}
.pc-price__card--public {
  background: #edf9f1;
}
.pc-price__card--private {
  background: #f0f6fd;
}
.pc-price__card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0.6rem;
  z-index: 3;
}
.pc-price__card--public::before {
  background: linear-gradient(90deg, #97cea7, #c0e7cc);
}
.pc-price__card--private::before {
  background: linear-gradient(90deg, #0057c0, #2a82ed);
}
.pc-price__card::after {
  content: "";
  position: absolute;
  top: 54%;
  transform: translateY(-50%);
  width: 3.2rem;
  height: 3.3rem;
}
.pc-price__card--public::after {
  left: 100%;
  background: #edf9f1;
  clip-path: polygon(0 0, 0 74%, 100% 100%);
}
.pc-price__card--private::after {
  right: 100%;
  background: #f0f6fd;
  clip-path: polygon(100% 0, 100% 74%, 0 100%);
}
@media (max-width: 1120px) {
  .pc-price__card {
    padding: 2.8rem 2.4rem 3rem;
    overflow: hidden;
  }
  .pc-price__card--public {
    border: 1px solid #96cda6;
  }
  .pc-price__card--private {
    border: 1px solid #0a61ca;
  }
  .pc-price__card::after {
    display: none;
  }
}
.pc-price__cardTitle {
  margin: 0;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.054rem;
  color: var(--pc-ink);
}
.pc-price__card--private .pc-price__cardTitle {
  color: #0a61ca;
}
@media (max-width: 1120px) {
  .pc-price__cardTitle {
    text-align: left;
    padding-bottom: 1.8rem;
    margin-bottom: 0.2rem;
    border-bottom: 1px solid #96cda6;
  }
  .pc-price__card--private .pc-price__cardTitle {
    border-bottom-color: #2774d0;
  }
}
.pc-price__spec {
  margin: 2.4rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.pc-price__specRow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0.8rem;
}
@media (max-width: 1120px) {
  .pc-price__specRow {
    display: flex;
    gap: 1.6rem;
  }
}
.pc-price__pill {
  width: 100%;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.042rem;
  color: var(--pc-ink);
  text-align: center;
}
@media (max-width: 1120px) {
  .pc-price__pill {
    width: 8.2rem;
    flex: 0 0 auto;
    font-size: 1.5rem;
  }
}
.pc-price__price {
  margin: 0;
  width: 100%;
  font-weight: 500;
  color: var(--pc-ink);
  line-height: 1.1;
  white-space: nowrap;
}
.pc-price__price .pc-price__num {
  font-size: 2rem;
  letter-spacing: 0.04rem;
}
.pc-price__price .pc-price__approx {
  font-size: 1.3rem;
  margin-right: 0.1rem;
}
.pc-price__price .pc-price__unit {
  font-size: 1.3rem;
}
.pc-price__price--word {
  font-size: 1.6rem;
}
@media (max-width: 1120px) {
  .pc-price__price {
    width: auto;
  }
  .pc-price__price .pc-price__num {
    font-size: 2.3rem;
  }
  .pc-price__price .pc-price__approx {
    font-size: 1.5rem;
  }
  .pc-price__price .pc-price__unit {
    font-size: 1.5rem;
  }
  .pc-price__price--word {
    font-size: 1.7rem;
  }
}
.pc-price__list {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}
.pc-price__list li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.72;
  letter-spacing: 0.014rem;
  color: var(--pc-ink);
}
.pc-price__list li::before {
  content: "・";
  position: absolute;
  left: -0.2rem;
}
.pc-price__banner {
  margin: 3.2rem 0 0;
  border-radius: 0;
  border: 1px solid transparent;
  border-image: linear-gradient(90deg, #534b4b 0%, #292b2d 26.9%, #f5f6f6 46.6%, #8d9297 64.4%, #f8f8f8 82.2%, #9c9090 100%) 1;
  background: linear-gradient(90deg, #eff1f4 0%, #fefefe 50%, #eff1f4 100%);
  padding: 3.2rem 2rem 2rem;
  text-align: center;
}
.pc-price__bannerLead {
  margin: 0;
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.072rem;
  color: var(--pc-ink);
}
.pc-price__bannerMain {
  margin: -1.7rem 0 0;
  font-size: 3.2rem;
  font-weight: 500;
  letter-spacing: 0.096rem;
  color: var(--pc-ink);
}
.pc-price__amount {
  font-size: 4.4rem;
  font-weight: 500;
  color: #0a61ca;
  letter-spacing: 0.132rem;
  background: linear-gradient(transparent 74%, #D9DF36 74% 90%, transparent 90%);
  padding: 0 0.3rem;
}
.pc-price__amount span {
  font-size: 3.2rem;
  letter-spacing: 0.096rem;
}
.pc-price__note {
  margin: 1.6rem 0 0;
  font-size: 1.2rem;
  line-height: 1.7;
  color: #9aa0a5;
}
@media (max-width: 768px) {
  .pc-price {
    background: #f9fbfe;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 9.3vw));
    padding: 5.6rem 0 9rem;
  }
  .pc-price__panel {
    padding: 4rem 2rem 3.2rem;
    border-radius: 0;
    box-shadow: 1rem 1rem 4rem rgba(92, 96, 105, 0.07);
  }
  .pc-price__corner {
    width: 0.8rem;
    height: 0.8rem;
    top: 0.8rem;
    left: 0.8rem;
  }
  .pc-price__corner--tr {
    left: auto;
    right: 0.8rem;
  }
  .pc-price__title {
    font-size: 2.2rem;
    line-height: 1.45;
    letter-spacing: 0.044rem;
  }
  .pc-price__sub {
    display: block;
    text-align: center;
    margin-top: 1.4rem;
    padding-bottom: 1.6rem;
    border-bottom: 1px solid #c4cbd3;
  }
  .pc-price__sub::before, .pc-price__sub::after {
    display: none;
  }
  .pc-price__sub span {
    display: inline;
    font-size: 1.4rem;
    line-height: 1.7;
  }
  .pc-price__banner {
    padding: 2.4rem 1.6rem;
  }
  .pc-price__bannerLead {
    font-size: 1.6rem;
    letter-spacing: 0;
    margin-bottom: 2.5rem;
    line-height: 1.5;
  }
  .pc-price__bannerMain {
    font-size: 2.1rem;
    line-height: 1.4285714286;
  }
  .pc-price__amount {
    font-size: 2.8rem;
  }
  .pc-price__amount span {
    font-size: 2rem;
  }
}

.pc-feature {
  position: relative;
  overflow: hidden;
  background: url(../img/features/feature_bg.png) #fff no-repeat right top/72%;
}
@media (min-width: 769px) {
  .pc-feature {
    background-position: calc(50% + 21rem) top;
    background-size: 108rem auto;
  }
}
@media (min-width: 1500px) {
  .pc-feature {
    background-position: right top;
    background-size: 117rem auto;
  }
}
.pc-feature {
  padding: calc(12rem + 9vw) 0 10rem;
  clip-path: polygon(0 9vw, 100% 0, 100% 100%, 0 100%);
}
.pc-feature::before, .pc-feature::after {
  content: "";
  position: absolute;
  right: 0;
  width: min(60%, 78rem);
  background-repeat: no-repeat;
  background-position: right top;
  background-size: cover;
  pointer-events: none;
  z-index: 0;
}
.pc-feature > .pc-container {
  position: relative;
  z-index: 1;
}
.pc-feature__head {
  margin-bottom: 7.4rem;
}
.pc-feature__eyebrow {
  margin: 0 0 1.2rem;
  font-family: "Inter", "Manrope", var(--pc-font);
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.04rem;
  color: var(--pc-ink);
}
.pc-feature__title {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 4.4rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.132rem;
  color: var(--pc-ink);
}
.pc-feature__titleRow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.pc-feature__suite {
  height: 3.6rem;
  width: auto;
  display: block;
}
.pc-feature__divider {
  display: block;
  width: 16.7rem;
  height: 2px;
  margin: 5.4rem 0 0;
  background: #d2d5da;
}
.pc-feature__items {
  display: flex;
  flex-direction: column;
  gap: 25rem;
}
.pc-feature__item {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 6rem;
  align-items: center;
  padding-top: 4rem;
}
.pc-feature__item--reverse {
  grid-template-columns: 1fr 1.35fr;
}
.pc-feature__item::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-45%);
  height: calc(100% + 12rem);
  z-index: -1;
  pointer-events: none;
}
.pc-feature__item:not(.pc-feature__item--reverse)::before {
  left: 16%;
  right: -50vw;
  background: linear-gradient(90deg, #f9fbfe 0%, #f3f6fb 100%);
  clip-path: polygon(8rem 0, 100% 0, 100% 100%, 0 100%);
}
.pc-feature__item--reverse .pc-feature__tag {
  right: auto;
  left: 0;
}
.pc-feature__item--reverse::before {
  right: 16%;
  transform: translateY(-41%);
  height: calc(100% + 15rem);
  left: -50vw;
  background: linear-gradient(90deg, #f3f6fb 0%, #f9fbfe 100%);
  clip-path: polygon(0 0, 100% 0, calc(100% - 8rem) 100%, 0 100%);
}
.pc-feature__itemTitle {
  margin: 0 0 2.4rem;
  font-size: 3.4rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.102rem;
  color: var(--pc-ink);
}
.pc-feature__text {
  margin: 0 0 1.6rem;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.016rem;
  color: #505255;
}
.pc-feature__text:last-child {
  margin-bottom: 0;
}
.pc-feature__media {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.pc-feature__item:not(.pc-feature__item--reverse) .pc-feature__media {
  align-items: flex-end;
}
.pc-feature__tag {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-bottom: 1.4rem;
  position: absolute;
  right: 0;
  top: -7.8rem;
}
.pc-feature__tagLabel {
  font-family: "Inter", "Manrope", var(--pc-font);
  font-size: 1.4rem;
  color: #8a9097;
  letter-spacing: 0.05rem;
  position: relative;
  padding-left: 2.6rem;
  margin-top: 1.3rem;
}
.pc-feature__tagLabel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.8rem;
  height: 1.8rem;
  background: url("../img/features/tag-dot.svg") center/contain no-repeat;
}
.pc-feature__num {
  font-family: "Inter", "Manrope", var(--pc-font);
  font-size: 6.4rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.1rem;
  color: var(--pc-ink);
}
.pc-feature__num::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 2.9rem;
  height: 3.1rem;
  margin-right: 1rem;
  background: url("../img/features/tag-slash.svg") center/contain no-repeat;
}
.pc-feature__num b {
  font-weight: 300;
  color: #0a61ca;
  font-family: "Inter", "Manrope", var(--pc-font);
}
.pc-feature__num--b2 b {
  color: #0057c0;
}
.pc-feature__illo {
  margin: 0;
  width: 100%;
  max-width: 43rem;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2rem 4rem -2rem rgba(20, 40, 80, 0.18);
}
.pc-feature__illo img {
  display: block;
  width: 100%;
  height: auto;
}
.pc-feature__subboxes {
  margin-top: -20rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
  position: relative;
  z-index: 1;
}
.pc-feature__subbox {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  background: #fff;
  border-radius: 0;
  padding: 1.8rem 2.4rem;
  box-shadow: 0 1.6rem 3.2rem -2rem rgba(20, 40, 80, 0.16);
}
.pc-feature__subboxIcon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pc-feature__subboxIcon img {
  display: block;
  width: auto;
  height: 4rem;
}
.pc-feature__subboxText {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.pc-feature__subboxText .t1 {
  font-size: 1.8rem;
  line-height: 1.67;
  color: #292b2d;
}
.pc-feature__subboxText .t2 {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04rem;
  color: #0057c0;
}
@media (min-width: 769px) {
  .pc-feature__subbox {
    min-height: 11.4rem;
    gap: 1.2rem;
    padding: 0 2.6rem;
  }
  .pc-feature__subboxIcon img {
    height: 5rem;
  }
}
@media (max-width: 900px) {
  .pc-feature {
    padding: 6.4rem 0 7.2rem;
    clip-path: none;
  }
  .pc-feature__head {
    margin-bottom: 4.8rem;
  }
  .pc-feature__title {
    font-size: 3.4rem;
  }
  .pc-feature__suite {
    height: 2.8rem;
  }
  .pc-feature__items {
    gap: 16rem;
  }
  .pc-feature__subboxes {
    margin-top: -11rem;
  }
  .pc-feature__item {
    gap: 4rem;
  }
  .pc-feature__itemTitle {
    font-size: 2.6rem;
  }
  .pc-feature__num {
    font-size: 5.2rem;
  }
}
@media (max-width: 768px) {
  .pc-feature {
    padding: 5.6rem 0 0;
    clip-path: none;
    background-image: url(../img/features/feature_bg-sp.png);
    background-position: center top;
    background-size: 100% auto;
  }
  .pc-feature__head {
    margin-bottom: 4rem;
  }
  .pc-feature__eyebrow {
    font-size: 1.5rem;
  }
  .pc-feature__title {
    font-size: 2.8rem;
  }
  .pc-feature__suite {
    height: 2.4rem;
    transform: translateY(0.2rem);
  }
  .pc-feature__items {
    gap: 6rem;
  }
  .pc-feature__item, .pc-feature__item--reverse {
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
    gap: 1.6rem;
    padding: 0 0 4rem;
  }
  .pc-feature__media {
    display: contents;
  }
  .pc-feature__tag {
    order: 1;
    align-self: flex-end;
    margin: 0;
    position: static;
    top: auto;
    right: auto;
  }
  .pc-feature__body {
    order: 2;
  }
  .pc-feature__illo {
    order: 3;
    max-width: none;
    width: 100%;
    aspect-ratio: 430/256;
    border-radius: 0;
    margin-top: 1.2rem;
  }
  .pc-feature__illo img {
    height: 100%;
    object-fit: cover;
  }
  .pc-feature__item:not(.pc-feature__item--reverse)::before, .pc-feature__item--reverse::before {
    display: block;
    top: 2.8rem;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: 100vw;
    height: calc(100% - 2rem);
    background: linear-gradient(90deg, #f9fbfe 0%, #f3f6fb 100%);
    clip-path: polygon(21.4vw 0, 100% 0, 100% 100%, 0 100%, 0 33rem);
  }
  .pc-feature__item--reverse::before {
    clip-path: polygon(0 0, calc(100% - 21.4vw) 0, 100% 33rem, 100% 100%, 0 100%);
    height: calc(100% + 2rem);
  }
  .pc-feature__item--reverse .pc-feature__tag {
    align-self: flex-start;
  }
  .pc-feature__body {
    text-align: left;
  }
  .pc-feature__itemTitle {
    font-size: 2.2rem;
    line-height: 1.68;
    letter-spacing: 0.044rem;
    margin-bottom: 1.4rem;
  }
  .pc-feature__text {
    font-size: 1.4rem;
    line-height: 1.85;
  }
  .pc-feature__num {
    font-size: 4.5rem;
  }
  .pc-feature__num::before {
    width: 2.1rem;
    height: 2.3rem;
    margin-right: 0.6rem;
  }
  .pc-feature__tagLabel {
    font-size: 1.3rem;
    padding-left: 2.2rem;
    margin-top: 0.9rem;
  }
  .pc-feature__tagLabel::before {
    width: 1.5rem;
    height: 1.5rem;
  }
  .pc-feature__subboxes {
    grid-template-columns: 1fr;
    gap: 1.6rem;
    max-width: none;
    margin-top: -2rem;
  }
}

.pc-support {
  background: #fff;
  padding: 18.6rem 0 16.4rem;
}
.pc-support__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 5.7rem;
  row-gap: 6.4rem;
}
.pc-support__card {
  min-width: 0;
}
.pc-support__panel {
  position: relative;
  aspect-ratio: 322/200;
}
.pc-support__panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #f4f4f4;
  clip-path: polygon(0 6.655%, 4.35% 0, 100% 0, 100% 89.33%, 75.78% 89.5%, 72.98% 100%, 0 100%);
  z-index: 0;
}
.pc-support__illo {
  margin: 0;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.pc-support__illo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.pc-support__label {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3;
  margin: 0;
  width: 10rem;
  height: 2.1rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-family: "Inter", "Manrope", var(--pc-font);
  font-size: 1.4rem;
  line-height: 1.3;
  color: var(--pc-ink);
}
.pc-support__label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 2.1rem;
  height: 2.1rem;
  background: url("../img/support/slash.svg") no-repeat center/contain;
}
.pc-support__title {
  margin: 2.4rem 0 0;
  font-weight: 500;
  font-size: 2.2rem;
  line-height: 1.45;
  letter-spacing: 0.066rem;
  color: var(--pc-ink);
}
.pc-support__text {
  margin: 1.2rem 0 0;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 2.8rem;
  letter-spacing: 0.015rem;
  color: #434548;
}
@media (min-width: 769px) {
  .pc-support__title {
    min-height: 2.9em;
    display: flex;
    align-items: center;
  }
}
@media (max-width: 900px) {
  .pc-support {
    padding: 7.2rem 0 8rem;
  }
  .pc-support__grid {
    column-gap: 3.2rem;
    row-gap: 4.8rem;
  }
  .pc-support__title {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .pc-support {
    padding: 5.6rem 0 6.4rem;
  }
  .pc-support__grid {
    grid-template-columns: 1fr;
    row-gap: 4rem;
    max-width: 42rem;
    margin-inline: auto;
  }
  .pc-support__title {
    font-size: 2rem;
    line-height: 1.5;
    letter-spacing: 0.04rem;
    margin-top: 2rem;
  }
  .pc-support__text {
    font-size: 1.4rem;
    line-height: 1.85;
    letter-spacing: 0.014rem;
  }
}

.pc-plan {
  position: relative;
  background: #fff;
  padding: calc(1rem + 9vw) 0 19rem;
  margin-top: -9vw;
}
.pc-plan::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #edf0f4 url("../img/plan/plan-bg.png") center/100% 100% no-repeat;
  clip-path: polygon(0 0, 100% 9vw, 100% calc(100% - 9vw), 0 100%);
}
.pc-plan > .pc-container {
  position: relative;
  z-index: 1;
}
.pc-plan__head {
  margin-bottom: 4.8rem;
}
.pc-plan__eyebrow {
  margin: 0 0 4rem;
  font-family: "Inter", "Manrope", var(--pc-font);
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.08rem;
}
.pc-plan__title {
  margin: 0;
  font-weight: 500;
  font-size: 4.4rem;
  line-height: 1.3;
  letter-spacing: 0.1rem;
  color: var(--pc-ink);
}
.pc-plan__divider {
  display: block;
  width: 16.7rem;
  height: 2px;
  margin-top: 4.4rem;
  background: #d2d5da;
}
.pc-plan__leadBr {
  display: none;
}
.pc-plan__lead {
  margin: 0 0 4rem;
  font-weight: 500;
  font-size: 3.8rem;
  line-height: 1.4;
  letter-spacing: 0.08rem;
  color: var(--pc-ink);
}
.pc-plan__sectitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.6rem;
  margin: 8.6rem 0 3.8rem;
  text-align: center;
}
.pc-plan__sectitle span {
  font-weight: 500;
  font-size: 3.2rem;
  letter-spacing: 0.096rem;
  color: var(--pc-ink);
}
.pc-plan__sectitle::before, .pc-plan__sectitle::after {
  content: "";
  width: 4rem;
  height: 2px;
  background: #c2c7cd;
}
.pc-plan__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4.2rem;
}

.pc-plan-card {
  background: transparent;
  border-radius: 0;
  box-shadow: 0 1.2rem 3rem -1.4rem rgba(41, 43, 45, 0.28);
  overflow: hidden;
}
.pc-plan-card__head {
  margin: 0;
  height: 7.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #3e4851;
  color: #fff;
  font-family: "Inter", "Manrope", var(--pc-font);
  font-size: 2.6rem;
  font-weight: 500;
  letter-spacing: 0.078rem;
  clip-path: polygon(3.2% 0, 100% 0, 100% 100%, 0 100%, 0 16%);
}
.pc-plan-card__body {
  padding: 2.4rem 3rem 3rem;
  background-color: #fff;
}
.pc-plan-card__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 4.6rem;
  padding: 0 1.6rem;
  border-radius: 2.3rem;
  background: #e2e5ea;
  color: #4a4f55;
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.051rem;
  text-align: center;
}
.pc-plan-card__logo {
  margin: 2.4rem 0 0;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.8rem;
  color: #292b2d;
}
.pc-plan-card__logoSm {
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.054rem;
}
.pc-plan-card__logo b {
  font-size: 3.4rem;
  font-weight: 700;
  letter-spacing: 0.102rem;
}
.pc-plan-card__logoNtx {
  font-size: 3.4rem;
  font-weight: 700;
  letter-spacing: 0.102rem;
}
.pc-plan-card__list {
  margin: 2rem 0 0;
  padding: 2rem 0 0;
  list-style: none;
  border-top: 1px solid #e3e5e9;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.pc-plan-card__list li {
  position: relative;
  padding-left: 3rem;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #434548;
}
.pc-plan-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 2.1rem;
  height: 2.1rem;
  background: url("../img/plan/check.svg") no-repeat center/contain;
}

.pc-compare__grid {
  display: grid;
  grid-template-columns: 21.3% repeat(3, 1fr);
  column-gap: 1rem;
  align-items: start;
  padding-bottom: 5rem;
}
.pc-compare__col {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.pc-compare__chead {
  height: 6.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #3e4851;
  color: #fff;
  font-family: "Inter", "Manrope", var(--pc-font);
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.04rem;
}
.pc-compare__chead--empty {
  background: transparent;
}
.pc-compare__label {
  height: 8.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8faff;
  color: #292b2d;
  padding: 0 2rem;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.054rem;
  border: 1px solid #535a6c;
}
.pc-compare__label + .pc-compare__label {
  border-top: 1px solid #eef1f6;
}
.pc-compare__note {
  margin: 1.6rem 0 0;
  font-size: 1.3rem;
  line-height: 1.7;
  color: #777b80;
}
.pc-compare__box {
  background: #3e4851;
  padding: 0 2px 4rem;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 4rem), 50% 100%, 0 calc(100% - 4rem));
}
.pc-compare__cell {
  height: 8.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  align-content: center;
  gap: 0.5rem 0;
  background: #fff;
  color: #292b2d;
  font-size: 1.4rem;
  line-height: 1.4285714286;
  text-align: center;
}
.pc-compare__cell + .pc-compare__cell {
  border-top: 1px solid #535a6c;
}
.pc-compare__mark {
  display: block;
  width: 100%;
  font-size: 2.4rem;
  line-height: 1;
  color: #6a6f75;
}
.pc-compare__mark--best {
  color: #0057c0;
}
.pc-compare__ast {
  color: #0057c0;
}
.pc-compare__more {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  margin-top: 1.4rem;
  width: 100%;
  max-width: 25.4rem;
  height: 5.6rem;
  padding: 0 5.2rem;
  border-radius: 3rem;
  background: var(--pc-blue-grad);
  color: #fff;
  font-family: var(--pc-font);
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.051rem;
  text-decoration: none;
  box-shadow: 0 1rem 2.4rem -1rem rgba(0, 65, 143, 0.5);
}
.pc-compare__more::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #001e43;
  border-radius: inherit;
  transform: scale(0, 1);
  transform-origin: right center;
  transition: transform 0.3s ease;
}
@media (hover: hover) {
  .pc-compare__more:hover::before {
    transform: scale(1, 1);
    transform-origin: left center;
  }
  .pc-compare__more:hover .pc-compare__moreArrow svg {
    transform: translateX(1rem);
    opacity: 0;
  }
  .pc-compare__more:hover .pc-compare__moreArrow::after {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
}
.pc-compare__moreArrow {
  position: absolute;
  right: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  background: #fff;
  color: #0157c0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.pc-compare__moreArrow svg {
  width: 1.1rem;
  height: auto;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.pc-compare__moreArrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.1rem;
  height: 1.1rem;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%209%208'%3E%3Cpath%20d='M9%204.174L5.692%200H4l3.308%204.174L4%208h1.692L9%204.174Z'/%3E%3Cpath%20d='M5%204.174L1.692%200H0l3.308%204.174L0%208h1.692L5%204.174Z'/%3E%3C/svg%3E") no-repeat center/contain;
  mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%209%208'%3E%3Cpath%20d='M9%204.174L5.692%200H4l3.308%204.174L4%208h1.692L9%204.174Z'/%3E%3Cpath%20d='M5%204.174L1.692%200H0l3.308%204.174L0%208h1.692L5%204.174Z'/%3E%3C/svg%3E") no-repeat center/contain;
  transform: translate(calc(-50% - 1rem), -50%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.pc-config__tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.pc-config__tab {
  position: relative;
  z-index: 1;
  height: 6.8rem;
  border: 0;
  cursor: pointer;
  background: linear-gradient(125deg, #f8faff 0%, #e8ebf0 60%, #e2e5ea 100%), #e3e5e9;
  color: #50545a;
  font-family: "Inter", "Manrope", var(--pc-font);
  font-size: 1.9rem;
  font-weight: 600;
  letter-spacing: 0.04rem;
  transition: color 0.2s, opacity 0.2s;
}
@media (min-width: 769px) {
  .pc-config__tab:hover {
    opacity: 0.7;
  }
}
.pc-config__tab.is-active {
  background: #3e4851;
  color: #fff;
  z-index: 2;
}
.pc-config__tab.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1rem;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 1.1rem solid transparent;
  border-right: 1.1rem solid transparent;
  border-top: 1.1rem solid #3e4851;
}
.pc-config__panels {
  background: #fff;
  border-radius: 0;
  box-shadow: 0 2.4rem 5rem -2rem rgba(41, 43, 45, 0.25);
  padding: 4rem;
}
.pc-config__panel[hidden] {
  display: none;
}
.pc-config__figure {
  margin: 0;
  background: #eef3fb;
  border-radius: 0;
  padding: 2.4rem;
}
.pc-config__figure img {
  display: block;
  width: 100%;
  height: auto;
}
.pc-config__desc {
  margin: 2.8rem auto 0;
  max-width: 100rem;
  text-align: center;
  font-size: 1.5rem;
  line-height: 2.6rem;
  color: #50545a;
}
.pc-config__btnWrap {
  margin-top: 3.2rem;
  text-align: center;
}

.pc-btn2 {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 35.4rem;
  height: 6.3rem;
  padding: 0 6.4rem;
  border-radius: 3.2rem;
  background: var(--pc-blue-grad);
  color: #fff;
  font-family: var(--pc-font);
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.051rem;
  text-decoration: none;
  box-shadow: 0 1.2rem 2.6rem -1rem rgba(0, 65, 143, 0.5);
}
.pc-btn2__arrow {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.75);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pc-btn2__arrow svg {
  width: 1.1rem;
  height: 1.1rem;
}
.pc-btn2--ghost {
  min-width: 23.9rem;
  height: 5.9rem;
  padding: 0 5.6rem;
  background: #292b2d;
  font-size: 1.3rem;
  letter-spacing: 0.078rem;
  box-shadow: 0 1.2rem 2.6rem -1rem rgba(41, 43, 45, 0.4);
}
.pc-btn2--ghost .pc-btn2__arrow {
  width: 3rem;
  height: 3rem;
}

.pc-config__btnWrap .pc-btn2 {
  isolation: isolate;
  overflow: hidden;
}
.pc-config__btnWrap .pc-btn2::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #001e43;
  border-radius: inherit;
  transform: scale(0, 1);
  transform-origin: right center;
  transition: transform 0.3s ease;
}
.pc-config__btnWrap .pc-btn2 .pc-btn2__arrow {
  overflow: hidden;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.pc-config__btnWrap .pc-btn2 .pc-btn2__arrow svg {
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.pc-config__btnWrap .pc-btn2 .pc-btn2__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.1rem;
  height: 1.1rem;
  background-color: var(--pc-blue);
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2012%2012'%3E%3Cpath%20d='M2%202.5l3.5%203.5L2%209.5M6.5%202.5L10%206l-3.5%203.5'%20fill='none'%20stroke='black'%20stroke-width='1.4'%20stroke-linecap='round'%20stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center/contain;
  mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2012%2012'%3E%3Cpath%20d='M2%202.5l3.5%203.5L2%209.5M6.5%202.5L10%206l-3.5%203.5'%20fill='none'%20stroke='black'%20stroke-width='1.4'%20stroke-linecap='round'%20stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center/contain;
  transform: translate(calc(-50% - 1rem), -50%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
@media (hover: hover) {
  .pc-config__btnWrap .pc-btn2:hover::before {
    transform: scale(1, 1);
    transform-origin: left center;
  }
  .pc-config__btnWrap .pc-btn2:hover .pc-btn2__arrow {
    background-color: #fff;
    transform: translateY(-50%) scale(1.12);
  }
  .pc-config__btnWrap .pc-btn2:hover .pc-btn2__arrow svg {
    transform: translateX(1rem);
    opacity: 0;
  }
  .pc-config__btnWrap .pc-btn2:hover .pc-btn2__arrow::after {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
}

.pc-plan__more {
  margin-top: 5.6rem;
  text-align: center;
}

@media (max-width: 900px) {
  .pc-plan {
    padding: 7.2rem 0 8rem;
  }
  .pc-plan__title {
    font-size: 3.4rem;
  }
  .pc-plan__lead {
    font-size: 2.6rem;
  }
  .pc-plan__sectitle {
    margin: 7.2rem 0 4rem;
  }
  .pc-plan__sectitle span {
    font-size: 2.6rem;
  }
  .pc-plan__cards {
    gap: 1.6rem;
  }
  .pc-plan-card__body {
    padding: 2rem;
  }
  .pc-plan-card__head {
    font-size: 2.2rem;
  }
  .pc-config__tab {
    font-size: 1.6rem;
    height: 6rem;
  }
}
@media (min-width: 769px) and (max-width: 1080px) {
  .pc-plan-card__logo b,
  .pc-plan-card__logoNtx {
    font-size: 2.6rem;
    letter-spacing: 0.02rem;
  }
  .pc-plan-card__logoSm {
    font-size: 1.5rem;
  }
  .pc-plan-card__badge {
    font-size: 1.4rem;
  }
}
@media (max-width: 768px) {
  .pc-plan {
    padding: 6rem 0 6.4rem;
  }
  .pc-plan__head {
    margin-bottom: 4rem;
    margin-bottom: 2rem;
  }
  .pc-plan__eyebrow {
    font-size: 1.5rem;
  }
  .pc-plan__title {
    font-size: 2.8rem;
  }
  .pc-plan__lead {
    font-size: 2.4rem;
    line-height: 1.54;
    letter-spacing: 0.048rem;
    margin-bottom: 3.2rem;
  }
  .pc-plan__leadBr {
    display: inline;
  }
  .pc-plan__sectitle {
    margin: 6.4rem 0 3.6rem;
    gap: 1.4rem;
  }
  .pc-plan__sectitle span {
    font-size: 2.4rem;
    letter-spacing: 0.072rem;
  }
  .pc-plan__sectitle::before,
  .pc-plan__sectitle::after {
    width: 2.4rem;
  }
  .pc-plan__cards {
    grid-template-columns: 1fr;
    max-width: 42rem;
    margin-inline: auto;
    gap: 2.4rem;
  }
  .pc-plan-card__head {
    font-size: 2.2rem;
    height: 6.4rem;
  }
  .pc-plan-card__logo {
    margin: 0;
  }
  .pc-plan-card__logo b {
    font-size: 2.8rem;
  }
  .pc-plan-card__list {
    margin-top: 1rem;
  }
  .scroll-hint-shadow-wrap {
    width: 100vw;
    transform: translateX(-2rem);
  }
  .pc-compare.js-pc-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100vw;
  }
  .pc-compare__grid {
    min-width: 108rem;
  }
  .pc-compare__grid {
    padding: 0 2rem;
  }
  .pc-config {
    margin-inline: -2rem;
  }
  .pc-config .scroll-hint-shadow-wrap,
  .pc-merit.scroll-hint-shadow-wrap {
    transform: translateX(0);
  }
  .pc-config__tab {
    font-size: 1.4rem;
    height: 5.6rem;
  }
  .pc-config__panels {
    padding: 2rem 0 2.8rem;
  }
  .pc-config__figure.js-pc-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 1.2rem;
    background: transparent;
  }
  .pc-config__figure img {
    width: 100%;
    min-width: 80rem;
    max-width: none;
  }
  .pc-config__desc {
    font-size: 1.4rem;
    line-height: 1.85;
    padding-inline: 2rem;
  }
  .pc-config__btnWrap {
    padding-inline: 2rem;
  }
  .pc-btn2 {
    min-width: 0;
    width: 100%;
    padding: 0 4.8rem;
  }
  .pc-btn2--ghost {
    width: 22.7rem;
    max-width: 100%;
    height: 5.6rem;
    padding: 0 2.4rem;
  }
}
.pc-merit {
  position: relative;
  background: #fff;
  padding: 9.6rem 0 10.4rem;
}
.pc-merit__head {
  margin-bottom: 4.8rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4rem;
}
.pc-merit__headImg {
  margin: -6.2rem 0 0;
  flex: 0 0 auto;
  width: 22.7rem;
  text-align: center;
}
.pc-merit__headImg img {
  display: block;
  width: 100%;
  height: auto;
}
.pc-merit__headImg figcaption {
  margin-top: 0.6rem;
  font-size: 1.2rem;
  color: #8a8e93;
  text-align: right;
}
.pc-merit__eyebrow {
  margin: 0 0 1.2rem;
  font-family: "Inter", "Manrope", var(--pc-font);
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.08rem;
}
.pc-merit__title {
  margin: 0;
  font-weight: 500;
  font-size: 4.4rem;
  line-height: 1.35;
  letter-spacing: 0.1rem;
  color: var(--pc-ink);
}
.pc-merit__divider {
  display: block;
  width: 16.7rem;
  height: 2px;
  margin-top: 1.8rem;
  background: #d2d5da;
}
.pc-merit__brSp {
  display: none;
}
.pc-merit__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 4rem;
  row-gap: 4rem;
  margin-bottom: 8rem;
}
.pc-merit__item {
  position: relative;
  min-width: 0;
  padding: 3.8rem 3.6rem 3.4rem;
}
.pc-merit__item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #f4f4f4;
  clip-path: polygon(0 0, calc(100% - 5.4rem) 0, 100% 5.4rem, 100% 100%, 2rem 100%, 0 calc(100% - 2rem));
}
.pc-merit__itemHead {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0 3.2rem;
  padding: 0 1rem 2.4rem 0;
  background: url("../img/merit/divider.svg") no-repeat left bottom/100% auto;
}
.pc-merit__icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}
.pc-merit__icon img {
  display: block;
  width: auto;
  height: auto;
}
.pc-merit__itemTitle {
  margin: 0;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 1.45;
  letter-spacing: 0.072rem;
  color: var(--pc-ink);
}
.pc-merit__num {
  position: absolute;
  top: -3rem;
  right: -3.8rem;
  z-index: 2;
  font-family: "Inter", "Manrope", var(--pc-font);
  font-size: 3.1rem;
  font-weight: 300;
  line-height: 1;
  color: var(--pc-ink);
}
.pc-merit__num b {
  font-weight: 300;
  color: #0057c0;
}
.pc-merit__list {
  position: relative;
  z-index: 1;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
}
.pc-merit__list li {
  position: relative;
  padding-left: 2.6rem;
  letter-spacing: 0;
  font-size: 1.5rem;
  line-height: 2.8rem;
  color: #434548;
}
.pc-merit__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.9rem;
  width: 1.1rem;
  height: 1.1rem;
  background: url("../img/merit/check.svg") no-repeat center/contain;
}

.pc-mc {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.pc-mc__row {
  display: grid;
  grid-template-columns: 23.7fr 36.3fr 36.3fr;
  gap: 1rem;
  background: #f6f7f9;
  padding: 1rem;
}
.pc-mc__h {
  height: 6.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.04rem;
}
.pc-mc__h--label {
  background: #e2e4e8;
  color: #4a4f55;
}
.pc-mc__h--priv, .pc-mc__h--pub {
  position: relative;
  color: #fff;
}
.pc-mc__h--priv {
  background: #0057c0;
}
.pc-mc__h--pub {
  background: #3e4851;
}
.pc-mc__h--priv::after, .pc-mc__h--pub::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1rem;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 1.1rem solid transparent;
  border-right: 1.1rem solid transparent;
}
.pc-mc__h--priv::after {
  border-top: 1.1rem solid #0057c0;
}
.pc-mc__h--pub::after {
  border-top: 1.1rem solid #3e4851;
}
.pc-mc__label {
  background: #e2e4e8;
  color: #292b2d;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1.6rem;
  min-height: 9.2rem;
}
.pc-mc__cell {
  background: #fff;
  min-height: 9.2rem;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}
.pc-mc__mark {
  font-size: 2.6rem;
  line-height: 1;
  color: #6a6f75;
}
.pc-mc__mark--best {
  color: #0057c0;
}
.pc-mc__mark--warn {
  color: #9aa0a6;
}
.pc-mc__desc {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #50545a;
  text-align: center;
}

@media (max-width: 900px) {
  .pc-merit {
    padding: 7.2rem 0 8rem;
  }
  .pc-merit__title {
    font-size: 3.4rem;
  }
  .pc-merit__grid {
    column-gap: 5.6rem;
    row-gap: 4.8rem;
  }
  .pc-merit__itemTitle {
    font-size: 2.1rem;
  }
}
@media (max-width: 768px) {
  .pc-merit {
    padding: 5.6rem 0 6.4rem;
  }
  .pc-merit__head {
    position: relative;
    display: block;
    margin-bottom: 4rem;
  }
  .pc-merit__headImg {
    position: absolute;
    top: -6.5rem;
    right: 0;
    width: 11.5rem;
    margin: 0;
  }
  .pc-merit__headImg figcaption {
    white-space: nowrap;
    font-size: 1.1rem;
    margin-top: 0.4rem;
  }
  .pc-merit__eyebrow {
    font-size: 1.5rem;
  }
  .pc-merit__title {
    font-size: 2.8rem;
    letter-spacing: 0.056rem;
  }
  .pc-merit__brSp {
    display: inline;
  }
  .pc-merit__grid {
    grid-template-columns: 1fr;
    row-gap: 4rem;
    margin-bottom: 5.6rem;
  }
  .pc-merit__item {
    padding: 3.2rem 2rem 3rem;
  }
  .pc-merit__itemHead {
    gap: 0 1.4rem;
    padding-right: 0;
    background-image: url("../img/merit/divider-sp.svg");
  }
  .pc-merit__icon {
    width: auto;
    height: auto;
  }
  .pc-merit__icon img {
    height: 5.5rem;
    width: auto;
  }
  .pc-merit__itemTitle {
    font-size: 1.9rem;
    line-height: 1.47;
    letter-spacing: 0.057rem;
  }
  .pc-merit__list li {
    font-size: 1.4rem;
    line-height: 1.71;
  }
  .pc-merit__num {
    top: -2.4rem;
    right: -1.4rem;
  }
  .pc-mc.js-pc-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100vw;
    padding: 0 2rem;
  }
  .pc-mc__row {
    min-width: 108rem;
  }
}