main {
  min-height: 100vh;
}

.sec-fv {
  position: relative;
  margin-bottom: 72px;
}
@media screen and (max-width: 768px) {
  .sec-fv {
    margin-bottom: 24px;
  }
}
.sec-fv .fv-en {
  margin-top: -7.5%;
  left: -70px;
}
@media screen and (max-width: 768px) {
  .sec-fv .fv-en {
    left: 0;
    margin-top: -10.5%;
    width: 79%;
  }
}

.page-news {
  position: relative;
  z-index: 5;
}

.content-wrap {
  position: relative;
  max-width: 992px;
  margin-inline: auto;
  background: var(--white);
  border-radius: 8px 64px 8px 64px;
  padding: 7cqw 8.4cqw;
  margin-bottom: 100px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .content-wrap {
    padding: 32px 24px 64px;
    border-radius: 4px 32px 4px 32px;
    margin-bottom: 40px;
  }
}

.news-intro {
  position: relative;
  padding-bottom: 40px;
  border-bottom: 1px dotted var(--black);
}
.news-intro + .news-title__strong {
  margin-top: 40px;
}

.news-title {
  font-size: 2.6rem;
  font-weight: 800;
}
@media screen and (max-width: 768px) {
  .news-title {
    font-size: 2rem;
  }
}

.news-date {
  font-size: 1.4rem;
  margin-top: 16px;
}
.news-date + .base-text {
  margin-top: 16px;
}

.news-title__strong {
  font-size: 2.4rem;
  font-weight: 800;
}
@media screen and (max-width: 768px) {
  .news-title__strong {
    font-size: 1.8rem;
  }
}
.news-title__strong + div {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .news-title__strong + div {
    margin-top: 32px;
  }
}

.text-group + .text-group {
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .text-group + .text-group {
    margin-top: 24px;
  }
}

.note {
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .note {
    font-size: 1.2rem;
  }
}

.news-title__sub {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .news-title__sub {
    font-size: 1.6rem;
  }
}

.news-title__bracket {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .news-title__bracket {
    font-size: 1.4rem;
  }
}

.base-text + .news-title__bracket {
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .base-text + .news-title__bracket {
    margin-top: 8px;
  }
}

.news-list + .news-title__bracket {
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .news-list + .news-title__bracket {
    margin-top: 8px;
  }
}

.news-list__text {
  font-size: 1.4rem;
  font-weight: 700;
  padding-left: 1rem;
  text-indent: -1rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .news-list__text {
    font-size: 1.3rem;
    padding-left: 0.8rem;
    text-indent: -0.8rem;
  }
}
.news-list__text.note {
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .news-list__text.note {
    font-size: 1.2rem;
  }
}

.gotop-btn {
  position: relative;
  width: auto;
  max-width: 320px;
  border-radius: 8px;
  box-sizing: border-box;
  background: var(--blue-main);
  margin-top: 100px;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .gotop-btn {
    max-width: initial;
    width: calc(100% - 48px);
    margin-top: 72px;
  }
}
.gotop-btn::before {
  content: "";
  position: absolute;
  top: 5px;
  right: 50px;
  width: 1px;
  height: calc(100% - 10px);
  background: var(--white);
  z-index: 1;
}
.gotop-btn a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  box-sizing: border-box;
  padding: 2.2cqw 1.7cqw 2.2cqw 1.75cqw;
}
@media screen and (max-width: 768px) {
  .gotop-btn a {
    padding: 12px;
  }
}
.gotop-btn span {
  font-size: 1.8cqw;
  font-weight: 700;
  color: var(--white);
}
@media screen and (max-width: 768px) {
  .gotop-btn span {
    font-size: 1.6rem;
  }
}
.gotop-btn .arrow {
  width: 1cqw;
  min-width: 17px;
  transition: ease 300ms background;
}
@media screen and (max-width: 768px) {
  .gotop-btn .arrow {
    width: 14px;
    right: 4px;
  }
}
.gotop-btn .arrow::before {
  background: url(/recruit/fresh/assets/img/common/arrow_w.svg) no-repeat center/contain;
}
.gotop-btn .arrow img {
  display: block;
}
@media (any-hover: hover) {
  .gotop-btn:hover .arrow img {
    left: 300%;
  }
  .gotop-btn:hover .arrow::before {
    opacity: 1;
    left: 50%;
  }
}