.servicePasskey_infoBox {
  display: inline-block;
  color: #FFF;
  background-color: #7B7B7B;
  padding: 0 10px;
  margin-right: 10px;
  border-radius: 4px;
}

.servicePasskey__gridBox {
  display: flex;
}

.servicePasskey__areaPhoto {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

.servicePasskey__photoLeft {
  position: relative;
}

.servicePasskey__photoLeft::after {
  position: absolute;
  content: "";
  bottom: 50%;
  right: -40px;
  transform: translateY(50%) rotate(-90deg);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 25px 15px 0 15px;
  border-color: #109BCE transparent transparent transparent;
}

@media screen and (max-width: 768px) {
  .servicePasskey__areaPhoto {
    flex-direction: column;
    gap: 40px;
  }
  
  .servicePasskey__photoLeft::after {
    bottom: -28px;
    right: 50%;
    border-width: 16px 12px 0 12px;
    transform: translateX(50%) translateY(0) rotate(0deg);
  }
}