.result__content {
  display: flex;
}
.result__content .year__block {
  width: 19.33%;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.result__content .result__block {
  width: 80.67%;
}
.result__content .result__block .result__box {
  border-bottom: 1px solid #ccc;
}
.result__content:last-child {
  border-bottom: none;
}
.result__content:last-child .result__box:last-child {
  border-bottom: none;
}

.result__box__inner {
  display: flex;
  justify-content: space-between;
  padding: 5rem 60px;
  max-width: 1220px;
  margin: 0 0 0 auto;
  position: relative;
}
@media screen and (max-width: 1060px) {
  .result__box__inner {
    padding: 5rem 3.5rem 10rem;
  }
}
.result__box__inner .img {
  width: 21.36%;
  position: relative;
  z-index: 5;
}
.result__box__inner .img .modal:hover {
  cursor: pointer;
}
.result__box__inner .img img {
  border: 1px solid #888888;
}
.result__box__inner .result__text {
  width: 72.72%;
}
.result__box__inner .result__text h3 {
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.result__box__inner .result__text .icon {
  right: 60px;
  bottom: 5rem;
}
@media screen and (max-width: 1060px) {
  .result__box__inner .result__text .icon {
    right: 3.5rem;
    width: 2.4rem;
  }
  .result__box__inner .result__text .icon svg {
    width: 100%;
  }
}

.result__text {
  display: flex;
}
.result__text .result__link {
  color: #000;
  transition: all 0.2s var(--var-animation-timing-function);
}
.result__text .result__link::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  box-shadow: 0px 0px 10px 7px rgba(0, 0, 0, 0.06);
  opacity: 0;
  transition: all 0.2s var(--var-animation-timing-function);
}
@media screen and (max-width: 1060px) {
  .result__text .result__link::after {
    display: none;
  }
}
.result__text .result__link:hover::after {
  opacity: 1;
}
.result__text .result__link .link__inner {
  position: relative;
  z-index: 2;
  padding-bottom: 3rem;
}
@media screen and (max-width: 1060px) {
  .result__text .result__link .link__inner {
    padding-bottom: 0;
  }
}
.result__text .icon {
  position: absolute;
  z-index: 2;
}
.result__text .icon img {
  width: 18px;
}

.result__inner {
  border-left: 1px solid #ccc;
}
@media screen and (max-width: 1060px) {
  .result__inner {
    border-left: none;
  }
}
.result__inner .result__content:last-child .year__block {
  border-bottom: none;
}

.book__block {
  display: flex;
  padding-right: 60px;
  align-items: stretch;
  flex-wrap: wrap;
}
@media screen and (max-width: 1060px) {
  .book__block {
    display: block;
    padding-right: 0;
  }
}

.book__box {
  /* flex: 1; */
  border-right: 1px solid #ccc;
  max-width: calc(100% / 2);
  width: 100%;
}
.book__box:nth-last-child(-n + 2) {
  border-top: 1px solid #ccc;
}

@media screen and (max-width: 1060px) {
  .book__box {
    border-right: none;
    border-top: 1px solid #ccc;
    max-width: 100%;
  }
  .book__box:first-child {
    border-top: none;
  }
}

.book__box__inner {
  display: flex;
  justify-content: space-between;
  padding: 4rem 6rem;
  height: 100%;
  position: relative;
}
.book__box__inner .img {
  width: 38.21%;
  position: relative;
  z-index: 2;
  align-self: flex-start;
}
.book__box__inner .img .modal:hover {
  cursor: pointer;
}
.book__box__inner .img img {
  border: 1px solid #888888;
}
.book__box__inner .result__text {
  width: 54.47%;
}
.book__box__inner .result__text h3 {
  line-height: 1.5;
  margin-bottom: 2rem;
}
.book__box__inner .result__text .icon {
  right: 2.8rem;
  bottom: 2.8rem;
}

.modal__layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.modal__layer.open {
  opacity: 1;
  visibility: visible;
}

.modal__bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal__box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.modal__inner {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1060px) {
  .modal__inner {
    padding: 0 3.5rem;
  }
}
.modal__inner .img {
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.modal__inner .img img {
  max-height: 90vh;
}
.modal__inner .img .close {
  position: absolute;
  top: -20px;
  right: -20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #000;
  border-radius: 100%;
  border: 1px solid #fff;
}
@media screen and (max-width: 1060px) {
  .modal__inner .img .close {
    top: -3rem;
    right: -3rem;
    width: 6rem;
    height: 6rem;
  }
}
.modal__inner .img .close svg {
  width: 30px;
  height: 30px;
}
@media screen and (max-width: 1060px) {
  .modal__inner .img .close svg {
    width: 4.5rem;
    height: 4.5rem;
  }
}
.modal__inner .img .close:hover {
  cursor: pointer;
}
.modal__inner .img .img__box {
  position: relative;
}

.employment__block table tbody tr:nth-child(even) > * {
  background-color: #fbfbfa;
}

.result__content {
  position: relative;
}
.result__content .sidebar {
  top: 20rem;
  text-align: center;
}
.result__content .sidebar .year {
  font-weight: 700;
  padding-top: 4rem;
}
.result__content.fixed .sidebar {
  position: fixed;
  width: calc((100% - (22.2rem + 60px)) * 0.1933);
}
@media screen and (max-width: 1730px) {
  .result__content.fixed .sidebar {
    width: calc((100% - (12.8324% + 60px)) * 0.1933);
  }
}
@media screen and (max-width: 1628px) {
  .result__content.fixed .sidebar {
    width: calc((100% - (10% + 60px)) * 0.1933);
  }
}
@media screen and (max-width: 1220px) {
  .result__content.fixed .sidebar {
    width: calc((100% - (6% + 60px)) * 0.1933);
  }
}
@media screen and (max-width: 1020px) {
  .result__content.fixed .sidebar {
    width: calc((100% - 60px) * 0.1933);
  }
}
@media screen and (max-width: 1060px) {
  .result__content.fixed .sidebar {
    width: 100%;
    position: static;
  }
}
