@import url("phone.min.css") screen and (max-width: 767px);
@import url("tablet.min.css") screen and (min-width: 768px) and (max-width: 1024px);
@import url("pc.min.css") screen and (min-width: 1025px);
@keyframes statusIconAnimation {
  0% {
    background-position: 0 100%;
  }
  100% {
    background-position: 0 0;
  }
}
section > #detailWrap .title {
  font-weight: 700;
}
section > #detailWrap > .left > .image {
  position: relative;
  background: #ffffff;
}
section > #detailWrap > .left > .image::before {
  content: "";
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  position: absolute;
  top: -1px;
  left: -1px;
  background: #ef0a6a;
  background: linear-gradient(45deg, #b6359c, #23a6d5, #ef0a6a, #23d5ab);
  background-size: 400% 400%;
  animation: keyGradientAnimation 10s ease infinite;
  z-index: -1;
}
@keyframes keyGradientAnimation {
  0% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}
section .buttonWrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
section .buttonWrapper .toListButton {
  width: 300px;
  height: 6rem;
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
  display: block;
  padding: 0.5rem 1rem;
  box-sizing: border-box;
}
section .buttonWrapper .toListButton > * {
  text-decoration: none;
}
section .buttonWrapper .toListButton > * > p {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  z-index: -3;
}
section .buttonWrapper .toListButton > * > p > span {
  color: #000000;
  margin: 0 0.5rem;
  transition: 300ms;
  z-index: -1;
}
section .buttonWrapper .toListButton > * > p > i {
  color: #000000;
  z-index: -1;
}
section .buttonWrapper .toListButton > * > p::before {
  content: "";
  background: #ef0a6a;
  background: linear-gradient(45deg, #b6359c, #23a6d5, #ef0a6a, #23d5ab);
  background-size: 400% 400%;
  animation: keyGradientAnimation 10s ease infinite;
  width: 100%;
  height: 100%;
  top: -100%;
  left: -100%;
  transform: rotate(500deg);
  position: absolute;
  z-index: -2;
  transition: 300ms;
}
@keyframes keyGradientAnimation {
  0% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}
section .buttonWrapper .toListButton > * > p::after {
  content: "";
  background: #ffffff;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  top: 1px;
  left: 1px;
  position: absolute;
  z-index: -2;
  transition: 300ms;
}
section .buttonWrapper .toListButton > *:hover > p > i {
  color: #000000;
}
section .buttonWrapper .toListButton > *:hover > p > span {
  color: #000000;
}
section .buttonWrapper .toListButton > *:hover > p::before {
  top: 0;
  left: 0;
  transform: rotate(0deg);
}
@media screen and (max-width: 767px) {
  section {
    width: 96%;
    margin: auto;
    padding-bottom: 4rem;
  }
  section > #detailWrap {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    column-gap: 1rem;
  }
  section > #detailWrap > .title {
    width: 100%;
    margin: 2rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  section > #detailWrap > .title > p {
    font-size: 1.6rem;
    font-weight: 700;
  }
  section > #detailWrap > .left {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    column-gap: 1rem;
  }
  section > #detailWrap > .left > .image {
    width: 50%;
  }
  section > #detailWrap > .left > .image > img {
    max-width: 100%;
    height: auto;
  }
  section > #detailWrap > .left > .title {
    margin-top: 1rem;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    font-size: 1.6rem;
    border-bottom: 1px solid #666;
    padding-bottom: 0.3rem;
  }
  section > #detailWrap > .right {
    width: 100%;
    margin-top: 2rem;
  }
  section > #detailWrap > .right > .detail {
    color: #000000;
    min-height: 500px;
  }
  section .buttonWrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 4rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  section {
    width: 96%;
    margin: auto;
    padding-bottom: 4rem;
  }
  section > #detailWrap {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    column-gap: 1rem;
  }
  section > #detailWrap > .title {
    width: 100%;
    margin: 2rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  section > #detailWrap > .title > p {
    font-size: 1.6rem;
    font-weight: 700;
  }
  section > #detailWrap > .left {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 1rem;
  }
  section > #detailWrap > .left > .image {
    width: 240px;
  }
  section > #detailWrap > .left > .image > img {
    max-width: 100%;
    height: auto;
  }
  section > #detailWrap > .left > .title {
    width: calc(100% - 120px);
    display: flex;
    justify-content: flex-start;
  }
  section > #detailWrap > .right {
    width: 100%;
    margin-top: 2rem;
  }
  section > #detailWrap > .right > .detail {
    color: #000000;
    min-height: 500px;
  }
  section .buttonWrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 4rem;
  }
}
@media screen and (min-width: 1025px) {
  section {
    min-width: 1025px;
    max-width: 1680px;
    width: 96%;
    margin: auto;
    padding-bottom: 4rem;
  }
  section > #detailWrap {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    column-gap: 1rem;
  }
  section > #detailWrap > .title {
    width: 100%;
    margin: 2rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  section > #detailWrap > .title > p {
    font-size: 1.8rem;
    font-weight: 700;
  }
  section > #detailWrap > .left > .image {
    width: 240px;
  }
  section > #detailWrap > .left > .image > img {
    width: 100%;
    height: auto;
  }
  section > #detailWrap > .right {
    width: calc(100% - 240px - 1rem);
  }
  section > #detailWrap > .right > .detail {
    min-height: 500px;
  }
  section .buttonWrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 4rem;
  }
}
/*# sourceMappingURL=event-detail.css.map */