.p-project__title {
  width: 493px;
  margin: 113px auto 60px;
}
@media screen and (max-width: 899px) {
  .p-project__title {
    width: 79%;
    margin: 0 auto 40px;
  }
}

.p-project__contents-item + .p-project__contents-item {
  margin-top: 30px;
}
.p-project__contents-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 60px 60px 58px;
}
@media screen and (max-width: 899px) {
  .p-project__contents-inner {
    display: block;
    padding: 22px 20px 35px;
  }
}
.p-project__contents-image {
  width: 40.9%;
  position: relative;
}
.p-project__contents-image::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/bg_project_logo.png) no-repeat center/contain;
}
@media screen and (max-width: 899px) {
  .p-project__contents-image {
    width: 100%;
  }
}
.p-project__contents-image-item {
  width: 100%;
}
@media screen and (max-width: 899px) {
  .p-project__contents-image-item {
    margin-bottom: 20px;
  }
}
.p-project__contents-detail {
  color: var(--color-white);
  flex: 1;
}
.p-project__contents-detail-head {
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: var(--color-pink);
}
.p-project__contents-detail-text {
  margin-top: 15px;
  font-size: 1.3rem;
  letter-spacing: 0.01em;
  line-height: 1.6;
}
.p-project__contents-detail-text a {
  color: var(--color-lightblue);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.5s var(--ease-main);
}
@media (hover: hover) {
  .p-project__contents-detail-text a:hover {
    opacity: 0.5;
  }
}