@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=BJCree:wght@400;500;600;700&family=Bebas+Neue&family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Zen+Kaku+Gothic+New&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200&icon_names=article");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.mihon {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  margin: 0 auto;
  opacity: 0.5; /* 透かして背後の実装を確認する */
  pointer-events: none; /* クリックを邪魔しない */
  z-index: 9999;
  left: 50%;
  transform: translateX(-50%);
}

html {
  font-size: clamp(11.25px, 1.25vw, 19.2px);
}
@media (max-width: 899px) {
  html .sp-hidden {
    display: none;
  }
  html .pc-hidden {
    display: block;
  }
}

html,
body {
  min-height: 100%;
  background-color: #f8f9fc;
}

body {
  color: #10345f;
  font-family: "Georgia", "Times New Roman", serif;
  width: 68rem;
  margin: 0 auto;
}

.top-hero {
  width: min(100%, 960px);
  padding: 4.5rem 1.5rem 0;
  text-align: center;
  margin: 0 auto;
}
.top-hero__subtitle {
  font-size: 1.75rem;
  color: #2f97b4;
  letter-spacing: -0.02rem;
  font-weight: 500;
  line-height: 3rem;
}
@media (max-width: 899px) {
  .top-hero__subtitle {
    font-size: 2.5rem;
  }
}

.brand {
  display: inline-flex;
  gap: 1.5rem;
  align-items: flex-end;
  justify-content: center;
  flex-wrap: wrap;
  border-bottom: 1px solid #1d4f7f;
  border-spacing: 1rem;
  width: 44.3rem;
  padding-bottom: 0.83rem;
}
.brand__word {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
.brand__ruby {
  font-size: 1rem;
  letter-spacing: 0.25em;
  color: #204b78;
  text-transform: uppercase;
  position: absolute;
}
@media (max-width: 899px) {
  .brand__ruby {
    width: max-content;
    font-size: 2rem;
  }
}
.brand__name {
  font-size: 4rem;
  line-height: 0.9;
  font-weight: 800;
  text-shadow: 2px 2px 0 rgba(16, 52, 95, 0.12);
  margin-top: 0.6rem;
}
@media (max-width: 899px) {
  .brand__name {
    font-size: 8rem;
  }
}

.intro {
  display: flex;
  justify-content: space-between;
  padding: 2.6rem 0rem 2.6rem 2rem;
  border-radius: 1rem;
  width: 68rem;
  margin: 0 auto;
}
@media (max-width: 899px) {
  .intro {
    flex-direction: column;
  }
}
.intro__content {
  max-width: 50%;
}
@media (max-width: 899px) {
  .intro__content {
    max-width: 100%;
  }
}
@media (max-width: 899px) {
  .intro__visual {
    max-width: 100%;
    display: flex;
    justify-content: center;
  }
}
.intro__title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #10345f;
  line-height: 1.5;
  margin-bottom: 1rem;
}
@media (max-width: 899px) {
  .intro__title {
    font-size: 5rem;
  }
}
.intro__title-small {
  font-size: 1.2rem;
}
@media (max-width: 899px) {
  .intro__title-small {
    font-size: 2.5rem;
  }
}
.intro__title-accent {
  font-size: 3rem;
}
@media (max-width: 899px) {
  .intro__title-accent {
    font-size: 6rem;
  }
}
.intro__title-accent--blue {
  text-align: right;
  margin: 0 auto 0 2rem;
  background: linear-gradient(to bottom, #498BFF, #004BCE);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.intro__title-accent--blue .intro__title-small {
  font-size: 1.2rem;
  color: #10345f;
}
.intro__title-accent--green {
  width: max-content;
  margin: 0 0 0 auto;
  display: block;
  color: #00AE4A;
}
.intro__description {
  font-size: 1.2rem;
  margin-top: 1.9rem;
  letter-spacing: 0.06em;
  line-height: 1.2em;
}
@media (max-width: 899px) {
  .intro__description {
    font-size: 2.5rem;
  }
}
.intro__actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.7rem;
}
@media (max-width: 899px) {
  .intro__actions {
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
  }
}
.intro .button {
  display: inline-block;
  padding: 0.6rem 1.7rem;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  border-radius: 0.2rem;
  transition: background-color 0.3s ease;
  font-size: 0.9rem;
  letter-spacing: 0.04rem;
}
@media (max-width: 899px) {
  .intro .button {
    font-size: 2rem;
    padding: 1.2rem 3.54rem;
    width: 40rem;
  }
}
.intro .button--primary {
  background-color: #4a90e2;
  background: linear-gradient(to right, #4c40c8, #4a97f4);
  color: #fff;
  border: none;
}
.intro .button--primary:hover {
  background-color: #357ab8;
}
.intro .button--secondary {
  color: #10345f;
  border: 1px solid #10345f;
}
.intro .button--secondary:hover {
  background-color: #d6d8db;
}
.intro__visual {
  display: flex;
  margin-top: 2.2rem;
  position: relative;
}
.intro__image {
  width: 31.4rem;
  z-index: 1;
  position: relative;
  border-radius: 0.5rem;
}
@media (max-width: 899px) {
  .intro__image {
    width: 62.8rem;
  }
}
.intro__image--front {
  position: relative;
  top: -0.8rem;
  left: -0.4rem;
}
.intro__image--back {
  z-index: 0;
  position: absolute;
  filter: brightness(0.5);
}

.flow-map {
  width: 68rem;
  margin: 4rem auto;
  padding: 0 2rem;
}
.flow-map__header {
  font-size: 2rem;
  color: #042964;
  margin-bottom: 2rem;
}
@media (max-width: 899px) {
  .flow-map__header {
    font-size: 2.9rem;
  }
}
.flow-map .flow-boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  position: relative;
}
@media (max-width: 899px) {
  .flow-map .flow-boxes {
    grid-template-columns: 1fr;
  }
}
.flow-map .flow-boxes__subtitle {
  display: flex;
  align-items: center;
  justify-content: left;
  background-color: transparent;
  border-radius: 0.5rem;
  padding: 2rem;
  font-size: 2rem;
  font-weight: bold;
  color: #10345f;
  line-height: 1.6;
  min-height: 11.5rem;
  height: 100%;
  z-index: 1;
}
@media (max-width: 899px) {
  .flow-map .flow-boxes__subtitle {
    font-size: 4rem;
  }
}
.flow-map .flow-boxes__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  background-color: #EDEFF4;
  border-radius: 0.5rem;
  padding: 1.5rem 2rem;
  position: relative;
  width: 100%;
  min-height: 11.5rem;
  height: 100%;
  margin: 0;
  z-index: 1;
}
.flow-map .flow-boxes__item:nth-child(2) .flow-boxes__label {
  background-color: #4a90e2;
}
.flow-map .flow-boxes__item:nth-child(3) .flow-boxes__label {
  background-color: #00B673;
}
.flow-map .flow-boxes__item:nth-child(4) .flow-boxes__label {
  background-color: #00B6A8;
}
.flow-map .flow-boxes__label {
  flex-shrink: 0;
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background: #5489D7;
  width: 10rem;
  height: 5rem;
  padding-left: 0.7rem;
  padding-top: 0.7rem;
  clip-path: polygon(100% 0, 0 0, 0 100%);
}
@media (max-width: 899px) {
  .flow-map .flow-boxes__label {
    width: 20rem;
    height: 10rem;
    padding-left: 1.4rem;
    padding-top: 1.4rem;
  }
}
.flow-map .flow-boxes__number {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.5rem;
  color: #ffffff;
  -webkit-text-stroke: 1px #4a90e2;
  line-height: 1;
}
@media (max-width: 899px) {
  .flow-map .flow-boxes__number {
    font-size: 4rem;
  }
}
.flow-map .flow-boxes__text {
  font-size: 2rem;
  font-weight: bold;
  color: #10345f;
  line-height: 1.4;
  text-align: center;
}
@media (max-width: 899px) {
  .flow-map .flow-boxes__text {
    font-size: 4rem;
  }
}
.flow-map .flow-boxes__connectors {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.flow-map .flow-boxes__connector {
  position: absolute;
  background-color: #4a90e2;
}
@media (max-width: 899px) {
  .flow-map .flow-boxes__connector {
    display: none;
  }
}
.flow-map .flow-boxes__connector--1 {
  position: absolute;
  top: 25%;
  left: 75%;
  transform: translate(-50%, -50%);
  transform-origin: right center;
  width: 1rem;
  height: 100rem;
  background: #EDEFF4;
}
.flow-map .flow-boxes__connector--2 {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(0%, -50%) rotateZ(65deg);
  transform-origin: right center;
  width: 1rem;
  height: 100rem;
  background: #EDEFF4;
}
.flow-map .flow-boxes__connector--3 {
  position: absolute;
  top: 75%;
  left: 25%;
  transform: translate(-50%, -50%) rotate(90deg);
  transform-origin: right center;
  width: 1rem;
  height: 100rem;
  background: #EDEFF4;
}

.features {
  width: 70rem;
  margin: 0 auto;
  padding: 4.47rem 1rem 0rem 2.99rem;
  background-color: #f8f9fc;
}
.features h2 {
  line-height: 1em;
}
.features__eyebrow {
  font-size: 0.73rem;
  font-weight: 600;
  color: #2f97b4;
  letter-spacing: 0.06rem;
  text-transform: uppercase;
  padding-left: 0.08rem;
  font-family: "Roboto", sans-serif;
}
@media (max-width: 899px) {
  .features__eyebrow {
    font-size: 1.2rem;
  }
}
.features__title {
  font-size: 2.3rem;
  font-weight: bold;
  color: black;
  margin-top: 1.5rem;
  letter-spacing: normal;
}
@media (max-width: 899px) {
  .features__title {
    font-size: 4rem;
  }
}
.features__subtitle {
  font-size: 2.9rem;
  color: #002f69;
  font-family: "BJCree", serif;
}
@media (max-width: 899px) {
  .features__subtitle {
    font-size: 5rem;
  }
}
.features__highlight {
  border-bottom: 2px solid #0991b2;
  padding-bottom: 0.66rem;
}
.features__description {
  font-size: 1.2rem;
  color: #5f7da4;
  margin-top: 1.1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 200;
  letter-spacing: 0.052rem;
}
@media (max-width: 899px) {
  .features__description {
    font-size: 2.5rem;
  }
}
.features__list {
  display: flex;
  justify-content: space-between;
  margin-top: 3.1rem;
}
@media (max-width: 899px) {
  .features__list {
    flex-direction: column;
    gap: 2rem;
  }
}

.feature-card {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 0.7rem 0.84rem 1rem 1.52rem;
  width: 20.34rem;
  text-align: left;
  position: relative;
  overflow: hidden;
}
.feature-card:nth-of-type(1) .feature-card__label {
  background-color: #4a90e2;
}
.feature-card:nth-of-type(2) .feature-card__label {
  background-color: #00B673;
}
.feature-card:nth-of-type(3) .feature-card__label {
  background-color: #00B6A8;
}
@media (max-width: 899px) {
  .feature-card {
    width: 61.02rem;
    padding: 1.5rem 1rem 2rem 3rem;
  }
}
.feature-card__label {
  position: absolute;
  top: 0;
  left: 0;
  background: #5489D7;
  width: 8rem;
  height: 4rem;
  padding-left: 0.5rem;
  padding-top: 0.3rem;
  clip-path: polygon(100% 0, 0 0, 0 100%);
  z-index: 2;
}
.feature-card__icon-wrap {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1rem;
}
.feature-card__icon-wrap img {
  width: 3rem;
  height: max-content;
}
@media (max-width: 899px) {
  .feature-card__icon-wrap img {
    width: 6rem;
  }
}
.feature-card__icon {
  display: block;
  margin: 0.67rem 0 0 0.2rem;
  width: 2.58rem;
}
@media (max-width: 899px) {
  .feature-card__icon {
    width: 5rem;
  }
}
.feature-card__icon--3 {
  width: 2rem !important;
}
@media (max-width: 899px) {
  .feature-card__icon--3 {
    width: 4rem !important;
  }
}
.feature-card__number {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  color: #ffffff;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1em;
}
@media (max-width: 899px) {
  .feature-card__number {
    font-size: 4rem;
  }
}
.feature-card__label {
  flex-shrink: 0;
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background: #5489D7;
  width: 10rem;
  height: 5rem;
  padding-left: 0.7rem;
  padding-top: 0.7rem;
  clip-path: polygon(100% 0, 0 0, 0 100%);
}
@media (max-width: 899px) {
  .feature-card__label {
    width: 15rem;
    height: 7.5rem;
    padding-left: 1.4rem;
    padding-top: 1.4rem;
  }
}
.feature-card__title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #10345f;
  margin: 0.7rem 0 0 0rem;
}
@media (max-width: 899px) {
  .feature-card__title {
    font-size: 3rem;
  }
}
.feature-card__text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: lighter;
  margin-top: 0.65rem;
  font-size: 0.9rem;
  letter-spacing: 0.063rem;
  line-height: 1.17rem;
}
@media (max-width: 899px) {
  .feature-card__text {
    font-size: 1.8rem;
    line-height: 2.3rem;
  }
}
.feature-card__list {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
  color: #002f69;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.feature-card__list-item {
  font-size: 1rem;
}
@media (max-width: 899px) {
  .feature-card__list-item {
    font-size: 1.8rem;
  }
}
.feature-card:nth-of-type(2) .feature-card__list, .feature-card:nth-of-type(3) .feature-card__list {
  margin-top: 0.77rem;
}

.system-overview {
  width: 70rem;
  margin: 6rem auto;
  padding: 0 2rem;
}
.system-overview__eyebrow {
  font-size: 0.73rem;
  font-weight: 600;
  color: #2f97b4;
  letter-spacing: 0.06rem;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
}
@media (max-width: 899px) {
  .system-overview__eyebrow {
    font-size: 1.2rem;
  }
}
.system-overview__title {
  font-size: 2.3rem;
  font-weight: bold;
  color: #002f69;
  margin-top: 1.5rem;
  line-height: 1.2;
}
@media (max-width: 899px) {
  .system-overview__title {
    font-size: 4rem;
  }
}
.system-overview__description {
  font-size: 1.2rem;
  color: black;
  margin-top: 1.1rem;
  font-family: "Zen Kaku Gothic New", sans-serif, sans-serif;
  font-weight: 200;
  letter-spacing: 0.052rem;
}
@media (max-width: 899px) {
  .system-overview__description {
    font-size: 2.5rem;
  }
}
.system-overview__content {
  margin-top: 1rem;
}
.system-overview__flow {
  position: relative;
  width: 100%;
  aspect-ratio: 3.4/1;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 3rem;
}
@media (max-width: 899px) {
  .system-overview__flow {
    aspect-ratio: 2/1;
    font-size: 2.2rem;
  }
}
.system-overview__flow .system-overview__icon1 {
  transform: rotateY(180deg);
  width: 5.2rem;
  position: absolute;
  bottom: 20%;
  left: 3%;
}
@media (max-width: 899px) {
  .system-overview__flow .system-overview__icon1 {
    bottom: 10%;
  }
}
.system-overview__flow .system-overview__icon2 {
  width: 8.7rem;
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.system-overview__flow .system-overview__icon3 {
  width: 6.2rem;
  position: absolute;
  bottom: 20%;
  right: 8%;
}
@media (max-width: 899px) {
  .system-overview__flow .system-overview__icon3 {
    bottom: 12%;
  }
}
.system-overview__flow .system-overview__icon4 {
  width: 3.2rem;
  position: absolute;
  bottom: 20%;
  right: 18%;
}
@media (max-width: 899px) {
  .system-overview__flow .system-overview__icon4 {
    bottom: 12%;
  }
}
.system-overview__flow .system-overview__icon5 {
  width: 3.2rem;
  position: absolute;
  bottom: 30%;
  left: 13%;
}
@media (max-width: 899px) {
  .system-overview__flow .system-overview__icon5 {
    bottom: 20%;
  }
}
.system-overview__flow .system-overview__arrow1 {
  width: 14rem;
  position: absolute;
  top: 9%;
  left: 19%;
  transform: rotateY(180deg);
}
@media (max-width: 899px) {
  .system-overview__flow .system-overview__arrow1 {
    top: 29%;
    left: 17%;
    transform: rotateY(180deg) rotateZ(13deg);
  }
}
.system-overview__flow .system-overview__arrow2 {
  width: 14rem;
  position: absolute;
  top: 28%;
  left: 22%;
  transform: rotateX(180deg);
}
@media (max-width: 899px) {
  .system-overview__flow .system-overview__arrow2 {
    top: 41%;
    left: 22%;
    transform: rotateX(180deg) rotateZ(13deg);
  }
}
.system-overview__flow .system-overview__arrow3 {
  width: 14rem;
  position: absolute;
  top: 41%;
  right: 22%;
}
@media (max-width: 899px) {
  .system-overview__flow .system-overview__arrow3 {
    top: 30%;
    right: 20%;
    transform: rotateZ(7deg);
  }
}
.system-overview__flow .system-overview__label1 {
  position: absolute;
  bottom: 12%;
  left: 5%;
  color: black;
}
@media (max-width: 899px) {
  .system-overview__flow .system-overview__label1 {
    bottom: 2%;
    left: 2%;
  }
}
.system-overview__flow .system-overview__label2 {
  position: absolute;
  top: 14%;
  left: 10%;
  color: black;
}
@media (max-width: 899px) {
  .system-overview__flow .system-overview__label2 {
    top: 15%;
    left: 5%;
  }
}
.system-overview__flow .system-overview__label3 {
  position: absolute;
  bottom: 35%;
  left: 31%;
  color: black;
}
@media (max-width: 899px) {
  .system-overview__flow .system-overview__label3 {
    bottom: 25%;
    left: 20%;
  }
}
.system-overview__flow .system-overview__label4 {
  position: absolute;
  top: 6%;
  right: 2%;
  color: black;
}
.system-overview__flow .system-overview__label5 {
  position: absolute;
  bottom: 12%;
  right: 6%;
  color: black;
}
@media (max-width: 899px) {
  .system-overview__flow .system-overview__label5 {
    bottom: 2%;
    right: 0%;
  }
}
.system-overview__image {
  max-width: 100%;
  height: auto;
}
.system-overview__steps {
  width: 100%;
  aspect-ratio: 6.57/1;
  border-radius: 0.5rem;
  margin-top: 2rem;
  border: 1px solid #6b92d6;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.system-overview__overline {
  position: absolute;
  top: 0;
  left: 15.2%;
  transform: translate(0, -100%);
  width: 1px;
  height: 7rem;
  border: 2px dashed #6b92d6;
}
.system-overview__step1 {
  color: black;
  position: relative;
}
.system-overview__step1 .icons {
  width: 4rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #f8f9fc;
}
.system-overview__step1 .icons img {
  width: 100%;
}
.system-overview__step1 .label {
  background: white;
  z-index: 1;
  position: relative;
}
.system-overview__step2 {
  color: black;
  position: relative;
}
.system-overview__step2 .icons {
  width: 4rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #f8f9fc;
}
.system-overview__step2 .icons img {
  width: 100%;
}
.system-overview__step2 .icons .pointer {
  position: absolute;
  top: 72%;
  left: 113%;
  transform: translate(0, -50%) rotate(-39deg);
  width: 71%;
}
.system-overview__step2 .label {
  background: white;
  z-index: 1;
  position: relative;
}
.system-overview__step3 {
  color: black;
  position: relative;
}
.system-overview__step3 .icons {
  width: 7rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(8deg);
  background: #f8f9fc;
}
.system-overview__step3 .icons img {
  width: 100%;
}
.system-overview__step3 .label {
  background: white;
  z-index: 1;
  position: relative;
}
.system-overview__safetys .system-overview__subtitle {
  font-size: 1.5rem;
  color: black;
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin-top: 1.2rem;
  background: white;
  width: max-content;
  padding-right: 0.5rem;
}
@media (max-width: 899px) {
  .system-overview__safetys .system-overview__subtitle {
    font-size: 2.5rem;
  }
}
.system-overview__safetys .system-overview__safety-flex {
  display: flex;
  margin-top: 1rem;
  width: 100%;
  gap: 1.5rem;
}
@media (max-width: 899px) {
  .system-overview__safetys .system-overview__safety-flex {
    flex-direction: column;
    gap: 2rem;
  }
}
.system-overview__safetys .system-overview__left {
  width: 45%;
}
@media (max-width: 899px) {
  .system-overview__safetys .system-overview__left {
    width: 100%;
  }
}
.system-overview__safetys .system-overview__left .image {
  width: 100%;
}
.system-overview__safetys .system-overview__left .image img {
  width: 100%;
}
.system-overview__safetys .system-overview__left .text {
  color: black;
  padding: 0.5rem;
  width: max-content;
  text-align: center;
  font-weight: bold;
  margin: 1.5rem auto 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media (max-width: 899px) {
  .system-overview__safetys .system-overview__left .text {
    font-size: 2.5rem;
  }
}
.system-overview__safetys .system-overview__left .text span {
  font-size: 1.2rem;
  background: white;
  line-height: 1.2em;
}
@media (max-width: 899px) {
  .system-overview__safetys .system-overview__left .text span {
    font-size: 2.5rem;
  }
}
.system-overview__safetys .system-overview__right {
  flex: 1;
  padding: 1rem;
  border: 1px solid #6b92d6;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
}
@media (max-width: 899px) {
  .system-overview__safetys .system-overview__right {
    margin-top: 2rem;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
  }
}
.system-overview__safetys .system-overview__right .bubble {
  background: #f0f1f6;
  border-radius: 1rem;
  padding: 1rem;
  width: max-content;
  line-height: 1.6rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 899px) {
  .system-overview__safetys .system-overview__right .bubble {
    padding: 3rem;
  }
}
.system-overview__safetys .system-overview__right .bubble .bubble-title {
  font-weight: bold;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: black;
}
@media (max-width: 899px) {
  .system-overview__safetys .system-overview__right .bubble .bubble-title {
    font-size: 2.5rem;
  }
}
.system-overview__safetys .system-overview__right .bubble .bubble-title span {
  line-height: 1.6rem;
  vertical-align: middle;
}
.system-overview__safetys .system-overview__right .bubble .bubble-title .icon {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  color: #002f69;
  font-size: 1.6rem;
  line-height: 1em;
}
@media (max-width: 899px) {
  .system-overview__safetys .system-overview__right .bubble .bubble-title .icon {
    font-size: 3rem;
  }
}
.system-overview__safetys .system-overview__right .bubble .bubble-content {
  margin-top: 0.4rem;
  color: black;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.8rem;
}
@media (max-width: 899px) {
  .system-overview__safetys .system-overview__right .bubble .bubble-content {
    font-size: 1.8rem;
  }
}
.system-overview__safetys .system-overview__right .bubble .bubble-content .list-icon {
  color: #aeb1bd;
  font-size: 1rem;
}
.system-overview__safetys .system-overview__right .bubble .bubble-content input {
  pointer-events: none;
  display: inline-block;
  margin: 0 0.4rem 0 0.2rem;
}
.system-overview__safetys .system-overview__right .bubble::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1rem;
  height: 1rem;
  background: #f0f1f6;
  transform: translate(-50%, 50%) scale(1, 1.5) rotate(45deg);
  z-index: -1;
}
.system-overview__safetys .system-overview__right .flex {
  display: flex;
  align-items: center;
  flex: 1;
}
@media (max-width: 899px) {
  .system-overview__safetys .system-overview__right .flex {
    gap: 2rem;
    font-size: 1.5rem;
  }
}
.system-overview__safetys .system-overview__right .flex .icon {
  width: 9.4rem;
  margin-left: 4.7rem;
}
.system-overview__safetys .system-overview__right .flex .icon img {
  width: 100%;
}
.system-overview__safetys .system-overview__right .flex .text {
  text-align: center;
  font-weight: bold;
  color: black;
  font-family: "Zen Kaku Gothic New", sans-serif;
}/*# sourceMappingURL=style.css.map */