
/* 2026/09/24 */
.dea-dress-buttons {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  flex-wrap: wrap;
}

.dea-dress-buttons .movie-btn {
  margin: 60px 0 0;
}

.dea-dress-buttons .movie-btn a {
  position: relative;
  padding-left: 35px;
  padding-right: 55px;
  box-sizing: border-box;
}

/* 矢印の斜め部分 */
.dea-dress-buttons .movie-btn a::before {
  content: "";
  position: absolute;
  right: 1em;
  top: 50%;
  width: 0.75em;
  height: 1em;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(-65deg);
  transform-origin: 50% 75%;
}

/* 矢印の横線 */
.dea-dress-buttons .movie-btn a::after {
  content: "";
  position: absolute;
  right: 1em;
  top: 50%;
  width: 2em;
  height: 1px;
  border-bottom: 1px solid currentColor;
  transition: width 0.3s;
}

@media screen and (max-width: 599px) {
  .dea-dress-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .dea-dress-buttons .movie-btn {
    width: calc(100% - 30px);
    max-width: 340px;
    margin: 0;
  }

  .dea-dress-buttons .movie-btn:first-child {
    margin-top: 50px;
  }

  .dea-dress-buttons .movie-btn a {
    padding: 14px 40px 14px 15px;
    font-size: 13px;
    white-space: nowrap;
  }
}
