.p-serviceScene {
  background-color: var(--color-background-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 24px;

  @media only screen and (min-width: 768px) {
    flex-direction: row;
    gap: 0;
    padding: 0;
  }
}

.p-serviceScene__arrow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  transform: translateY(-100%);
  height: 80px;
  overflow: hidden;
  pointer-events: none;

  @media only screen and (min-width: 768px) {
    height: 320px;
    transform: translateY(-50%);
    top: -40px;

    &.-second {
      top: 8px;
    }
  }

  & > img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);

    @media only screen and (min-width: 768px) {
      left: 64px;
    }
  }
}

.p-serviceScene__sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;

  @media only screen and (min-width: 768px) {
    width: 128px;
  }
}

.p-serviceScene__sidebarIcon {
  width: 64px;
  height: 64px;
  margin-bottom: 12px;

  svg {
    width: 100%;
    height: 100%;
  }
}

.p-serviceScene__phaseLabel {
  color: var(--green-800);
  font-size: var(--font-size-160);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-small);
}

.p-serviceScene__main {
  flex: 1;
  display: flex;
  flex-direction: column;

  @media only screen and (min-width: 768px) {
    padding: 32px 42px;
  }
}

.p-serviceScene__banner {
  background-color: var(--green-800);
  padding: 14px 16px;

  @media only screen and (min-width: 768px) {
    padding: 8px 28px;
  }
}

.p-serviceScene__bannerText {
  color: var(--color-text-white);
  font-size: var(--font-size-175);
  line-height: var(--line-height-small);
}

.p-serviceScene__bannerHighlight {
  background: linear-gradient(to bottom, #ffffff 0%, #ffffff 100%);
  color: var(--green-700);
  padding: 4px 8px;
  border-radius: 4px;
  margin: 0 4px;
}

.p-serviceScene__questions {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 16px;

  @media only screen and (min-width: 768px) {
    flex-direction: row;
    margin-top: 24px;
  }
}

.p-serviceScene__question {
  background-color: var(--green-100);
  color: var(--color-text-gray-100);
  font-size: var(--font-size-100);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-small);
  padding: 12px 14px;
  border-radius: 4px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;

  @media only screen and (min-width: 768px) {
    flex: 1;
    padding: 12px;
  }

  &::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--green-100);
  }
}

.p-serviceScene__description {
  color: var(--color-text-gray-100);
  font-size: var(--font-size-100);
  line-height: var(--line-height-medium);
  margin: 0;
  padding: 0;
  margin-top: 24px;
}

.p-serviceScene__infoItems {
  --color-border: #eeeeee;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 24px;
  border-top: 1px solid var(--color-border);
  border-left: 1px solid var(--color-border);

  @media only screen and (min-width: 768px) {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  & > li {
    border-bottom: 1px solid var(--color-border);
    border-right: 1px solid var(--color-border);
  }
}

.p-serviceScene__infoItem {
  background-color: var(--color-background-white);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  text-decoration: none;
  transition: opacity 0.2s;
  color: #1e4e1e;
  transition: color 0.2s;

  @media only screen and (min-width: 768px) {
    padding: 20px;
    gap: 16px;
  }

  @media (any-hover: hover) {
    &:hover {
      color: #2fa002;
      text-decoration: underline;
    }
  }
}

.p-serviceScene__infoIcon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
}

.p-serviceScene__infoLabel {
  flex: 1;
  font-size: var(--font-size-150);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-xsmall);

  @media only screen and (min-width: 768px) {
    text-align: center;
  }
}

.p-serviceScene__infoArrow {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  position: relative;

  &::after {
    content: '\e80b';
    color: currentColor;
    font-family: 'fontello';
    position: absolute;
    font-size: 24px;
    top: 50%;
    left: 50%;
    transform: translate(-40%, -50%);
  }
}
