.item .detail_text {
  line-height: 2;
}

.item .detail_text strong {
  font-size: 2em;
  font-weight: 400;
}

.item .detail_text a {
  width: 250px;
  position: relative;
  display: block;
  padding: 12px 24px;
  border: 1px solid var(--border2);
  color: var(--white);
  background-color: var(--text);
  font-size: 15px;
  letter-spacing: 2px;
  text-align: center;
  line-height: 1;
}

@media screen and (min-width: 768px) and (max-width: 1700px) {
    .item .detail_text a {
        font-size: min(1.5vw, 15px);
        letter-spacing: .2vw;
    }
}

@media screen and (min-width: 768px) and (max-width: 1260px) {
    .item .detail_text a {
        padding: 12px 2vw;
    }
}

.item .detail_text a::before, .item .detail_text a::after {
    position: absolute;
    content: "";
    box-sizing: border-box;
    transition: .5s;
}

.item .detail_text a::before {
    width: 3px;
    height: 3px;
    right: 14px;
    top: 50%;
    transform: translateY(-40%) rotate(45deg);
    border-top: 1px solid var(--white);
}

@media screen and (min-width: 768px) and (max-width: 1260px) {
    .item .detail_text a::before {
        right: 1.4vw;
    }
}

.item .detail_text a:hover::before {
    right: 8px;
    border-color: var(--text);
}

@media screen and (min-width: 768px) and (max-width: 1260px) {
    .item .detail_text a:hover::before {
        right: .8vw;
    }
}

.item .detail_text a::after {
    width: 12px;
    height: 1px;
    top: 50%;
    right: 12px;
    transform: translateY(-40%);
    background: var(--white);
}

@media screen and (min-width: 768px) and (max-width: 1260px) {
    .item .detail_text a::after {
        width: 1.2vw;
        right: 1.2vw;
    }
}

.item .detail_text a:hover::after {
    width: 18px;
    right: 6px;
    background: var(--text);
}

@media screen and (min-width: 768px) and (max-width: 1260px) {
    .item .detail_text a:hover::after {
        width: 1.8vw;
        right: .6vw;
    }
}

.item .detail_text a:hover {
  background: var(--white);
  color: var(--text);
  text-decoration: none;
}
