.services__header {
  padding-top: 80px;
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  color: var(--bg);
}

.services__sectionInner {
  width: 90%;
  margin: auto;
}

.services__sectionTitle {
  margin-top: 80px;
}

.services__sectionTitleJpn {
  font-size: 32px;
  font-weight: bold;
}

.services__sectionTitleEn {
  margin-top: -8px;
  font-weight: bold;
  color: var(--bg);
}

.services__sectionTitleText {
  margin-top: 24px;

  font-weight: bold;
}

.services__sectionContent {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-top: 40px;
  padding-bottom: 40px;
  border-bottom: 4px solid #f5f5f5;
}

.services__sectionContentImg {
  flex: 2;
  aspect-ratio: 3/2;
  width: 100%;
  height: auto;
}

.services__sectionContentImg img {
  border-radius: 8px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services__sectionContentTextArea {
  flex: 3;
}

.services__sectionContentTextAreaTitle {
  display: flex;
  align-items: baseline;
  gap: 16px;

  font-size: 24px;
  font-weight: bold;
}

.services__sectionContentTextAreaTitle i {
  color: var(--bg);
}

.services__sectionContentTextAreaText {
  margin-top: 24px;
  font-weight: bold;
  line-height: 2em;
}

.services__sectionContentTextAreaBtn {
  margin-top: 40px;
}

.services__sectionContentTextAreaBtn a {
  padding: 16px;
  font-weight: bold;
  border-radius: 40px;
  background: var(--btn);
  color: var(--white);
}

.services__sectionContentTextAreaBtn i {
  margin-left: 24px;
  font-weight: 500;
  transition: margin-left 0.3s;
}

.services__sectionContentTextAreaBtn a:hover i {
  margin-left: 80px;
}

@media screen and (max-width: 770px) {
  .services__header {
    font-size: 28px;
  }

  .services__sectionTitle {
    text-align: center;
    margin-top: 40px;
  }

  .services__sectionTitleJpn {
    font-size: 24px;
  }

  .services__sectionTitleEn {
    font-size: 16px;
  }

  .services__sectionTitleText {
    margin-top: 16px;

    font-size: 16px;
  }

  .services__sectionContent {
    gap: 24px;
    margin-top: 80px;
    flex-direction: column;
  }

  .services__sectionContentTextAreaTitle {
    gap: 16px;
    font-size: 20px;
  }

  .services__sectionContentTextAreaText {
    margin-top: 16px;
  }

  .services__sectionContentTextAreaBtn {
    margin-top: 16px;
  }

  .services__sectionContentTextAreaBtn a {
    width: 100%;
    display: block;
    text-align: center;
  }
}
