.l-main {
  min-height: auto;
}

.p-special {
  width: 90%;
  max-width: 100rem;
  display: block;
  position: relative;
  margin: 0 auto;
  padding-top: 6.8rem;
}
@media screen and (max-width: 960px) {
  .p-special {
    padding-top: 3.5rem;
  }
}
.p-special__container {
  width: 90%;
  display: block;
  position: relative;
  margin: 0 auto;
}
.p-special__inner {
  display: block;
  position: relative;
  margin: 0 auto;
}
.p-special__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.5rem 4rem;
  position: relative;
}
@media screen and (max-width: 960px) {
  .p-special__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 2.4rem 2rem;
  }
}
.p-special__list-item {
  min-width: 0;
  display: block;
  position: relative;
}
.p-special__link {
  display: block;
  position: relative;
}
.p-special__link-img {
  display: block;
  position: relative;
}
.p-special__link-img::before {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--gradient-filter);
  z-index: 1;
  opacity: 0;
}
@media (hover: hover) and (pointer: fine) {
  .p-special__link-img::before {
    content: "";
    transition: opacity 1s var(--ease_out);
  }
  .p-special__link:hover .p-special__link-img::before {
    opacity: 1;
  }
}
.p-special__link-img::after {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--gradient-main);
  -webkit-clip-path: polygon(0% 0%, 0% 100%, 1px 100%, 1px 1px, calc(100% - 1px) 1px, calc(100% - 1px) calc(100% - 1px), 1px calc(100% - 1px), 1px 100%, 100% 100%, 100% 0%);
  clip-path: polygon(0% 0%, 0% 100%, 1px 100%, 1px 1px, calc(100% - 1px) 1px, calc(100% - 1px) calc(100% - 1px), 1px calc(100% - 1px), 1px 100%, 100% 100%, 100% 0%);
  opacity: 0;
}
@media (hover: hover) and (pointer: fine) {
  .p-special__link-img::after {
    content: "";
    transition: opacity 1s var(--ease_out);
  }
  .p-special__link:hover .p-special__link-img::after {
    opacity: 1;
  }
}
.p-special__link-text {
  display: block;
  position: relative;
  margin-top: 1.5rem;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (max-width: 960px) {
  .p-special__link-text {
    margin-top: 1rem;
    font-size: 1.2rem;
  }
}
@supports ((-webkit-text-decoration-color: transparent) or (text-decoration-color: transparent)) {
  @media (hover: hover) and (pointer: fine) {
    .p-special__link-text {
      text-decoration: underline;
      -webkit-text-decoration-color: transparent;
      text-decoration-color: transparent;
      transition: -webkit-text-decoration-color 0.3s var(--ease_out);
      transition: text-decoration-color 0.3s var(--ease_out);
      transition: text-decoration-color 0.3s var(--ease_out), -webkit-text-decoration-color 0.3s var(--ease_out);
    }
    .p-special__link:hover .p-special__link-text {
      -webkit-text-decoration-color: currentColor;
      text-decoration-color: currentColor;
    }
  }
}
@supports not ((-webkit-text-decoration-color: transparent) or (text-decoration-color: transparent)) {
  @media (hover: hover) and (pointer: fine) {
    .p-special__link:hover .p-special__link-text {
      text-decoration: underline;
    }
  }
}