article {
  line-height: 1.5;
}

.firstview {
  display: flex;
  align-items: center;
  padding: 160px 24px 80px;
}
.firstview__container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  gap: 36px;
  margin: 0 auto;
}
.firstview__container--img {
  width: 50%;
}
.firstview__container--img img {
  width: 100%;
}

.firstview__container--outline h2 {
  font-size: 24px;
}

.text {
  font-size: 16px;
  line-height: 1.5;
  max-width: 500px;
  margin: 16px 0 32px;
}

.button {
  position: relative;
  display: block;
  width: 200px;
  font-size: 14px;
  text-decoration: none;
  color: #333;
  text-align: right;
  margin: 0 0 0 auto;
  padding-right: 40px;
}
.button::before {
  position: absolute;
  content: "";
  background: #333;
  width: 24px;
  height: 2px;
  bottom: 4px;
  right: 5px;
  transition: 0.5s ease-in-out;
}
.button::after {
  position: absolute;
  content: "";
  background: #333;
  width: 10px;
  height: 2px;
  top: 11px;
  right: 4px;
  transform: rotate(45deg);
  transition: 0.5s ease-in-out;
}
.button:hover::before {
  right: -3px;
}
.button:hover::after {
  right: -4px;
}

.arrow-pink:hover::before, .arrow-pink:hover::after {
  background: #FE94D4;
}

.arrow-blue:hover::before, .arrow-blue:hover::after {
  background: #4256D5;
}

@media (max-width: 920px) {
  .firstview__container {
    flex-direction: column;
  }
  .firstview__container--img {
    width: 100%;
  }
}
@media (max-width: 520px) {
  .firstview__container {
    gap: 32px;
  }
  .text {
    font-size: 14px;
    margin: 24px 0 48px;
  }
}
.content {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 56px;
}
.content h2 {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 500;
  width: 250px;
  margin-bottom: 24px;
}
.content h2::before {
  content: "";
  position: absolute;
  background: #333;
  width: 300px;
  height: 2px;
  left: -330px;
  top: 20px;
}

.back-button a {
  position: relative;
  display: block;
  background: #333;
  color: #fff;
  text-decoration: none;
  width: 250px;
  border-radius: 70px;
  border: 2px solid #333;
  text-align: center;
  padding: 16px;
  margin: 0 auto 80px;
  transition: 0.3s ease-in-out;
}
.back-button a::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 24px;
  border-radius: 1px;
  transition: 0.3s ease-in-out;
}
.back-button a:hover {
  background-color: #fff;
  border: 2px solid #333;
  color: #333;
}
.back-button a:hover::after {
  border-top: solid 2px #333;
  border-right: solid 2px #333;
}

.content__description-area {
  max-width: 700px;
  margin-top: 10px;
}
.content__description-area h3 {
  margin-bottom: 8px;
}

.content ul {
  list-style: none;
}
.content li {
  margin-bottom: 24px;
}

@media (max-width: 1028px) {
  .content {
    display: block;
  }
  .content__description-area {
    margin: 0 auto;
  }
}
@media (max-width: 520px) {
  .content {
    margin-bottom: 48px;
  }
  .content h2 {
    margin-bottom: 16px;
  }
  .content p {
    font-size: 14px;
  }
}/*# sourceMappingURL=work.css.map */