/* DEAプラン・衣装ページ */
.dea-dress-block {
  margin: 0 auto 80px;
}

.dea-dress-image {
  width: 70%;
  max-width: 700px;
  margin: 0 auto;
}

.dea-dress-image img {
  display: block;
  width: 100%;
  height: auto;
}

.dea-dress-buttons {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
}

.dea-dress-buttons .movie-btn {
  width: 360px;
  margin: 40px 0 0;
}

.dea-dress-buttons .movie-btn a {
  position: relative;
  box-sizing: border-box;
  height: 100%;
  padding: 14px 55px 14px 25px;
}

/* 既存サイトと同じ形の矢印 */
.dea-dress-buttons .movie-btn a::before {
  content: "";
  position: absolute;
  right: 1em;
  top: 50%;
  width: 0.75em;
  height: 1em;
  border-right: 1px solid;
  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;
}

/* スマートフォン */
@media only screen and (max-width: 599px) {

  .dea-dress-block {
    margin-bottom: 50px;
  }

  .dea-dress-image {
    width: 90%;
  }

  .dea-dress-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
  }

  .dea-dress-buttons .movie-btn {
    width: 280px;
    margin: 0;
  }

  .dea-dress-buttons .movie-btn a {
    padding: 12px 42px 12px 20px;
    font-size: 14px;
  }
}
