@charset "UTF-8";
@keyframes float-smooth {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(10px, -15px) rotate(2deg);
  }
  50% {
    transform: translate(-5px, -25px) rotate(-1deg);
  }
  75% {
    transform: translate(-15px, -10px) rotate(1deg);
  }
}
@keyframes float-gentle {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(-12px, -20px) rotate(-2deg);
  }
  66% {
    transform: translate(8px, -15px) rotate(1deg);
  }
}
@keyframes bounce-character {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  25% {
    transform: translateY(-8px) scale(1.02);
  }
  50% {
    transform: translateY(-12px) scale(1.03);
  }
  75% {
    transform: translateY(-6px) scale(1.01);
  }
}
@keyframes pulse-scale {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.8;
  }
}
@keyframes pulse-scale-delayed {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.25);
    opacity: 0.85;
  }
}
@keyframes product-highlight {
  0%, 100% {
    transform: translateY(0) rotateY(0deg) rotateX(0deg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  25% {
    transform: translateY(-15px) rotateY(3deg) rotateX(-2deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  }
  50% {
    transform: translateY(-25px) rotateY(0deg) rotateX(0deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  }
  75% {
    transform: translateY(-15px) rotateY(-3deg) rotateX(2deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  }
}
@keyframes product-emphasis {
  0%, 100% {
    transform: scale(1) translateZ(0);
  }
  50% {
    transform: scale(1.05) translateZ(10px);
  }
}
@keyframes rotate-gentle {
  0%, 100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(5deg);
  }
}
@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scale-fade-in {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes bounce {
  0%, 20%, 53%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translateZ(0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -20px, 0) scaleY(1.1);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -10px, 0) scaleY(1);
  }
  80% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translateZ(0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, -4px, 0) scaleY(1);
  }
}
@keyframes bounceInUp {
  0%, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  75% {
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }
  to {
    transform: translateZ(0);
  }
}
@keyframes flipInX {
  0% {
    transform: perspective(400px) rotateX(90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateX(-20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotateX(10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotateX(-5deg);
  }
  to {
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  0% {
    transform: perspective(400px) rotateY(90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateY(-20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotateY(10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotateY(-5deg);
  }
  to {
    transform: perspective(400px);
  }
}
@font-face {
  font-family: "Hakgyoansim Allimjang";
  src: url("../../font/HakgyoansimAllimjang-R.woff2") format("woff2"), url("../../font/HakgyoansimAllimjang-R.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Hakgyoansim Allimjang";
  src: url("../../font/HakgyoansimAllimjang-B.woff2") format("woff2"), url("../../font/HakgyoansimAllimjang-B.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
.only-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .only-pc {
    display: inline-block !important;
  }
}

.only-mo {
  display: inline-block !important;
}
@media screen and (min-width: 768px) {
  .only-mo {
    display: none !important;
  }
}

.highlight-r {
  color: #e60039 !important;
}

.highlight-b {
  color: #006AB6 !important;
}

header.header {
  display: none;
}

#ly-content {
  padding-top: 0 !important;
}

.floating {
  display: none;
}

.event-wrap {
  /* modal custom */
}
.event-wrap * {
  font-family: "Hakgyoansim Allimjang", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
.event-wrap .inner {
  position: relative;
  width: 100%;
  text-align: center;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .event-wrap .inner {
    max-width: 1280px;
  }
}
.event-wrap img {
  max-width: 100%;
}
.event-wrap .title img {
  width: 45.0520833333vw;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .event-wrap .title img {
    width: 346px;
  }
}
.event-wrap .title strong {
  display: block;
  color: #009ADE;
  line-height: 1;
  margin: 5.2083333333vw 0;
  font-size: 7.8125vw;
}
@media screen and (min-width: 768px) {
  .event-wrap .title strong {
    margin: 40px 0;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .title strong {
    font-size: 60px;
  }
}
.event-wrap .title small {
  display: block;
  letter-spacing: -0.1302083333vw;
  font-size: 3.125vw;
  font-family: "suit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
@media screen and (min-width: 768px) {
  .event-wrap .title small {
    letter-spacing: -1px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .title small {
    font-size: 24px;
  }
}
.event-wrap .title small .highlight {
  font-size: inherit;
  font-weight: 700;
  color: #39ADE3;
}
.event-wrap .title small * {
  font-family: "suit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.event-wrap .logo {
  position: absolute;
  top: 3.90625vw;
  right: 3.90625vw;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .event-wrap .logo {
    top: 30px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .logo {
    right: 30px;
  }
}
.event-wrap .logo img {
  width: 12.3697916667vw;
}
@media screen and (min-width: 768px) {
  .event-wrap .logo img {
    width: 95px;
  }
}
.event-wrap .section-visual img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  vertical-align: top;
}
.event-wrap .section-visual .only-desktop {
  display: none;
}
.event-wrap .section-visual .onyl-max-tablet {
  display: block;
}
.event-wrap .section-visual .duration {
  display: flex;
  flex-direction: column;
  padding: 5.2083333333vw 0;
  font-size: 3.6458333333vw;
  font-weight: 400;
  color: #fff;
  justify-content: center;
  text-align: center;
  align-items: center;
  background: #3CC7DD;
}
@media screen and (min-width: 768px) {
  .event-wrap .section-visual .duration {
    padding: 40px 0;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .section-visual .duration {
    font-size: 28px;
  }
}
.event-wrap .section-visual .duration > .mobile-text {
  position: relative;
  display: block;
  padding-bottom: 3.90625vw;
  margin-bottom: 3.90625vw;
  font-size: 3.6458333333vw;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .event-wrap .section-visual .duration > .mobile-text {
    padding-bottom: 30px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .section-visual .duration > .mobile-text {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .section-visual .duration > .mobile-text {
    font-size: 28px;
  }
}
.event-wrap .section-visual .duration > .mobile-text:after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 83.3333333333vw;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
}
@media screen and (min-width: 768px) {
  .event-wrap .section-visual .duration > .mobile-text:after {
    width: 640px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .section-visual .duration > .mobile-text {
    display: none;
  }
}
.event-wrap .section-visual .duration ul {
  width: 57.03125vw;
}
@media screen and (min-width: 768px) {
  .event-wrap .section-visual .duration ul {
    width: 438px;
  }
}
.event-wrap .section-visual .duration ul li {
  display: flex;
  align-items: center;
}
.event-wrap .section-visual .duration ul li span {
  position: relative;
  display: inline-flex;
  font-size: 3.125vw;
  padding-left: 3.125vw;
  margin-left: 3.6458333333vw;
}
@media screen and (min-width: 768px) {
  .event-wrap .section-visual .duration ul li span {
    font-size: 24px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .section-visual .duration ul li span {
    padding-left: 24px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .section-visual .duration ul li span {
    margin-left: 28px;
  }
}
.event-wrap .section-visual .duration ul li span:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  background-color: #fff;
  width: 1px;
  height: 2.6041666667vw;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .event-wrap .section-visual .duration ul li span:before {
    height: 20px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .section-visual .duration {
    padding: 24px 0;
    flex-direction: row;
  }
  .event-wrap .section-visual .duration span {
    position: relative;
    display: inline-flex;
    font-size: 24px;
    padding: 0 0 0 24px;
    margin: 0 0 0 28px;
  }
  .event-wrap .section-visual .duration span:before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    background-color: #fff;
    width: 1px;
    height: 20px;
    transform: translateY(-50%);
  }
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-visual .onyl-max-tablet {
    display: none !important;
  }
  .event-wrap .section-visual .only-desktop {
    position: relative;
    display: block;
    width: 100%;
    height: 1289px;
    overflow: hidden;
    background: url("/assets/events/e260223/images/visual.jpg") 0 50% no-repeat;
    background-size: cover;
  }
  .event-wrap .section-visual .only-desktop .ani {
    position: absolute;
    left: 50%;
  }
  .event-wrap .section-visual .only-desktop .ani.title-1 {
    top: 110px;
    margin-left: -154px;
    animation: fade-in-up 0.5s ease-out 0.1s backwards;
  }
  .event-wrap .section-visual .only-desktop .ani.title-2 {
    top: 222px;
    margin-left: -311.5px;
    animation: fade-in-up 0.5s ease-out 0.3s backwards;
  }
  .event-wrap .section-visual .only-desktop .ani.p1 {
    top: 152px;
    margin-left: -627px;
    animation: flipInY 1s ease-out 0.3s backwards;
  }
  .event-wrap .section-visual .only-desktop .ani.p2 {
    top: 381px;
    margin-left: -654px;
    animation: float-smooth 4s ease-in-out infinite 0.3s;
  }
  .event-wrap .section-visual .only-desktop .ani.p3 {
    top: 90px;
    margin-left: 522px;
    animation: flipInY 1s ease-out 0.4s backwards;
  }
  .event-wrap .section-visual .only-desktop .ani.p4 {
    top: 237px;
    margin-left: 728px;
    animation: flipInX 1s ease-out 0.5s backwards;
  }
  .event-wrap .section-visual .only-desktop .ani.p5 {
    top: 405px;
    margin-left: 589px;
    animation: flipInY 1s ease-out 0.6s backwards;
  }
  .event-wrap .section-visual .only-desktop .ani.p6 {
    top: 1042px;
    margin-left: 665px;
    animation: float-smooth 4s ease-in-out infinite 0.3s;
  }
  .event-wrap .section-visual .only-desktop .ani.h1 {
    top: 804px;
    margin-left: -575px;
    animation: float-smooth 5s ease-in-out infinite 0.2s;
  }
  .event-wrap .section-visual .only-desktop .ani.h2 {
    top: 680px;
    margin-left: 870px;
    animation: float-smooth 5s ease-in-out infinite 0.5s;
  }
  .event-wrap .section-visual .only-desktop .ani.box {
    top: 593px;
    margin-left: -925px;
    animation: float-gentle 5s ease-in-out infinite;
  }
  .event-wrap .section-visual .only-desktop .ani.char {
    top: 985px;
    margin-left: -733px;
    animation: bounceInUp 2s ease-in-out;
  }
  .event-wrap .section-visual .only-desktop .ani.ringt {
    top: 975px;
    margin-left: -489px;
    animation: bounceInUp 2s ease-in-out 0.3s;
  }
  .event-wrap .section-visual .only-desktop .ani.book {
    bottom: -50px;
    margin-left: -239px;
    z-index: 2;
    animation: scale-fade-in 0.5s ease-out 1s backwards;
  }
  .event-wrap .section-visual .only-desktop .ani.set {
    bottom: -120px;
    animation: fade-in-up 0.5s ease-out 0.7s backwards;
  }
  .event-wrap .section-visual .only-desktop .ani.text {
    top: 734px;
    margin-left: -277.5px;
    text-align: center;
    font-size: 32px;
    color: #465F5D;
    font-weight: 400;
    animation: fade-in-up 0.5s ease-out 0.5s backwards;
  }
  .event-wrap .section-visual .only-desktop .ani.star1 {
    width: 21px;
    top: 94px;
    margin-left: -200px;
    animation: pulse-scale 1s ease-in-out infinite;
  }
  .event-wrap .section-visual .only-desktop .ani.star2 {
    width: 29px;
    top: 118px;
    margin-left: -230px;
    animation: pulse-scale 0.7s ease-in-out infinite;
  }
  .event-wrap .section-visual .only-desktop .ani.star3 {
    width: 20px;
    top: 150px;
    margin-left: -204px;
    animation: pulse-scale 0.5s ease-in-out infinite;
  }
}
.event-wrap .section-intro {
  padding: 15.625vw 0;
}
@media screen and (min-width: 768px) {
  .event-wrap .section-intro {
    padding: 120px 0;
  }
}
.event-wrap .section-intro .title .text {
  font-size: 6.5104166667vw;
  margin-bottom: 6.25vw;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .event-wrap .section-intro .title .text {
    font-size: 50px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .section-intro .title .text {
    margin-bottom: 48px;
  }
}
.event-wrap .section-intro .title em {
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .event-wrap .section-intro .title em {
    font-weight: 400;
  }
}
.event-wrap .section-intro .flex-wrap {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0 5.2083333333vw;
  gap: 2.6041666667vw;
}
@media screen and (min-width: 768px) {
  .event-wrap .section-intro .flex-wrap {
    padding: 0 40px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .section-intro .flex-wrap {
    gap: 20px;
  }
}
.event-wrap .section-intro .bottom-text {
  margin-top: 5.2083333333vw;
  font-size: 4.6875vw;
}
@media screen and (min-width: 768px) {
  .event-wrap .section-intro .bottom-text {
    margin-top: 40px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .section-intro .bottom-text {
    font-size: 36px;
  }
}
.event-wrap .section-intro .bottom-text strong {
  display: block;
  color: #39ADE3;
}
@media screen and (min-width: 768px) {
  .event-wrap .section-intro .flex-wrap {
    flex-direction: row;
    gap: 3.6458333333vw;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .event-wrap .section-intro .flex-wrap {
    gap: 28px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .section-intro .bottom-text {
    position: relative;
    margin-top: 48px;
    padding-top: 48px;
  }
  .event-wrap .section-intro .bottom-text:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: #D9D9D9;
  }
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-intro .flex-wrap {
    padding: 0;
  }
}
.event-wrap .section-event-1 {
  background: #EDFFF9;
  padding: 10.9375vw 0 15.625vw;
}
@media screen and (min-width: 768px) {
  .event-wrap .section-event-1 {
    padding: 84px 0 120px;
  }
}
.event-wrap .section-event-1 .title {
  margin-bottom: 5.2083333333vw;
}
@media screen and (min-width: 768px) {
  .event-wrap .section-event-1 .title {
    margin-bottom: 40px;
  }
}
.event-wrap .section-event-1 .img-item {
  position: relative;
  padding: 0 5.2083333333vw;
}
@media screen and (min-width: 768px) {
  .event-wrap .section-event-1 .img-item {
    padding: 0 40px;
  }
}
.event-wrap .section-event-1 .img-item + .img-item {
  margin-top: 5.2083333333vw;
}
@media screen and (min-width: 768px) {
  .event-wrap .section-event-1 .img-item + .img-item {
    margin-top: 40px;
  }
}
.event-wrap .section-event-1 .img-item .btn-theratea {
  position: absolute;
  top: 15.625vw;
  right: 7.8125vw;
  width: 36.4583333333vw;
  height: 7.8125vw;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .event-wrap .section-event-1 .img-item .btn-theratea {
    top: 120px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .section-event-1 .img-item .btn-theratea {
    right: 60px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .section-event-1 .img-item .btn-theratea {
    width: 280px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .section-event-1 .img-item .btn-theratea {
    height: 60px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .section-event-1 .img-item .btn-theratea {
    top: 8.59375vw;
  }
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-event-1 .img-item .btn-theratea {
    top: 110px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .section-event-1 .img-item .btn-theratea {
    right: 6.25vw;
  }
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-event-1 .img-item .btn-theratea {
    right: 80px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .section-event-1 .img-item .btn-theratea {
    width: 21.875vw;
  }
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-event-1 .img-item .btn-theratea {
    width: 280px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .section-event-1 .img-item .btn-theratea {
    height: 4.6875vw;
  }
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-event-1 .img-item .btn-theratea {
    height: 60px;
  }
}
.event-wrap .section-event-1 .img-item .note-text {
  position: absolute;
  top: 82.03125vw;
  left: 23.4375vw;
  right: 20.8333333333vw;
  font-size: 2.6041666667vw;
  letter-spacing: -0.1302083333vw;
  text-align: left;
  word-break: keep-all;
  color: #767676;
  font-family: "suit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
@media screen and (min-width: 768px) {
  .event-wrap .section-event-1 .img-item .note-text {
    top: 630px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .section-event-1 .img-item .note-text {
    left: 180px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .section-event-1 .img-item .note-text {
    right: 160px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .section-event-1 .img-item .note-text {
    font-size: 20px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .section-event-1 .img-item .note-text {
    top: 49.21875vw;
  }
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-event-1 .img-item .note-text {
    top: 630px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .section-event-1 .img-item .note-text {
    left: 14.0625vw;
  }
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-event-1 .img-item .note-text {
    left: 180px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .section-event-1 .img-item .note-text {
    right: 12.5vw;
  }
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-event-1 .img-item .note-text {
    right: 160px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .section-event-1 .img-item .note-text {
    font-size: 1.5625vw;
  }
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-event-1 .img-item .note-text {
    font-size: 20px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .section-event-1 .img-item .note-text {
    letter-spacing: -1px;
  }
}
.event-wrap .section-event-1 .btn-wrap {
  margin-top: 5.2083333333vw;
}
@media screen and (min-width: 768px) {
  .event-wrap .section-event-1 .btn-wrap {
    margin-top: 40px;
  }
}
.event-wrap .section-event-1 .btn-wrap .btn-apply {
  display: flex;
  width: 90%;
  margin: 0 auto;
  color: #fff;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  font-size: 5.2083333333vw;
  height: 13.0208333333vw;
  border-radius: 2.6041666667vw;
  background: #E60039;
}
@media screen and (min-width: 768px) {
  .event-wrap .section-event-1 .btn-wrap .btn-apply {
    font-size: 40px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .section-event-1 .btn-wrap .btn-apply {
    height: 100px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .section-event-1 .btn-wrap .btn-apply {
    border-radius: 20px;
  }
}
.event-wrap .section-event-1 .btn-wrap .btn-apply .arrow {
  display: none;
}
@media screen and (min-width: 768px) {
  .event-wrap .section-event-1 {
    background: #EDFFF9 url("/assets/events/e260223/images/bg_event1.jpg") 50% 0 no-repeat;
    background-size: 100% auto;
  }
  .event-wrap .section-event-1 .img-item .btn-theratea {
    left: auto;
    transform: translateX(0);
  }
  .event-wrap .section-event-1 .btn-apply {
    max-width: 500px;
    font-size: 34px;
  }
  .event-wrap .section-event-1 .btn-apply .arrow {
    display: block !important;
    margin-left: 20px;
    width: 12px;
    height: 18px;
    background: url("/assets/events/e260223/images/arrow_fff.svg") 0 0 no-repeat;
    background-size: cover;
  }
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-event-1 .img-item {
    padding: 0;
  }
}
.event-wrap .section-event-2 {
  background: #DEFDF3;
  padding: 10.9375vw 0 15.625vw;
}
@media screen and (min-width: 768px) {
  .event-wrap .section-event-2 {
    padding: 84px 0 120px;
  }
}
.event-wrap .section-event-2 .title {
  margin-bottom: 5.2083333333vw;
}
@media screen and (min-width: 768px) {
  .event-wrap .section-event-2 .title {
    margin-bottom: 40px;
  }
}
.event-wrap .section-event-2 .img-item {
  position: relative;
  padding: 0 5.2083333333vw;
}
@media screen and (min-width: 768px) {
  .event-wrap .section-event-2 .img-item {
    padding: 0 40px;
  }
}
.event-wrap .section-event-2 .img-item .note-text {
  position: absolute;
  top: 61.1979166667vw;
  left: 15.625vw;
  right: 10.4166666667vw;
  font-size: 2.6041666667vw;
  letter-spacing: -0.1302083333vw;
  text-align: left;
  word-break: keep-all;
  color: #767676;
  font-family: "suit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
@media screen and (min-width: 768px) {
  .event-wrap .section-event-2 .img-item .note-text {
    top: 470px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .section-event-2 .img-item .note-text {
    left: 120px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .section-event-2 .img-item .note-text {
    right: 80px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .section-event-2 .img-item .note-text {
    font-size: 20px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .section-event-2 .img-item .note-text {
    letter-spacing: -1px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .section-event-2 .img-item .note-text {
    top: auto;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .event-wrap .section-event-2 .img-item .note-text {
    bottom: 3.125vw;
  }
}
@media screen and (min-width: 768px) and (min-width: 1280px) {
  .event-wrap .section-event-2 .img-item .note-text {
    bottom: 40px;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .event-wrap .section-event-2 .img-item .note-text {
    left: 11.09375vw;
  }
}
@media screen and (min-width: 768px) and (min-width: 1280px) {
  .event-wrap .section-event-2 .img-item .note-text {
    left: 142px;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .event-wrap .section-event-2 .img-item .note-text {
    right: 6.25vw;
  }
}
@media screen and (min-width: 768px) and (min-width: 1280px) {
  .event-wrap .section-event-2 .img-item .note-text {
    right: 80px;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .event-wrap .section-event-2 .img-item .note-text {
    font-size: 1.5625vw;
  }
}
@media screen and (min-width: 768px) and (min-width: 1280px) {
  .event-wrap .section-event-2 .img-item .note-text {
    font-size: 20px;
  }
}
.event-wrap .section-event-2 .comment-wrap p {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.3020833333vw;
  margin: 10.4166666667vw 0 4.6875vw;
}
@media screen and (min-width: 768px) {
  .event-wrap .section-event-2 .comment-wrap p {
    gap: 10px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .section-event-2 .comment-wrap p {
    margin: 80px 0 36px;
  }
}
.event-wrap .section-event-2 .comment-wrap p .icon-pencil {
  width: 9.375vw;
}
@media screen and (min-width: 768px) {
  .event-wrap .section-event-2 .comment-wrap p .icon-pencil {
    width: 72px;
  }
}
.event-wrap .section-event-2 .comment-wrap p span {
  display: flex;
  flex-direction: column;
  font-weight: 400;
  font-size: 5.2083333333vw;
}
@media screen and (min-width: 768px) {
  .event-wrap .section-event-2 .comment-wrap p span {
    font-size: 40px;
  }
}
.event-wrap .section-event-2 .comment-wrap p span small {
  font-size: 3.6458333333vw;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .event-wrap .section-event-2 .comment-wrap p span small {
    font-size: 28px;
  }
}
.event-wrap .section-event-2 .comment-wrap .textarea-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0 5.2083333333vw;
  gap: 2.6041666667vw;
}
@media screen and (min-width: 768px) {
  .event-wrap .section-event-2 .comment-wrap .textarea-wrap {
    padding: 0 40px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .section-event-2 .comment-wrap .textarea-wrap {
    gap: 20px;
  }
}
.event-wrap .section-event-2 .comment-wrap .textarea-wrap textarea {
  padding: 5.2083333333vw 2.6041666667vw 2.6041666667vw;
  font-size: 3.6458333333vw;
  height: 31.25vw;
  font-size: 3.125vw;
  line-height: 1.3;
  border: 1px solid #D9D9D9;
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  .event-wrap .section-event-2 .comment-wrap .textarea-wrap textarea {
    padding: 40px 20px 20px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .section-event-2 .comment-wrap .textarea-wrap textarea {
    font-size: 28px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .section-event-2 .comment-wrap .textarea-wrap textarea {
    height: 240px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .section-event-2 .comment-wrap .textarea-wrap textarea {
    font-size: 24px;
  }
}
.event-wrap .section-event-2 .comment-wrap .textarea-wrap .close {
  position: absolute;
  top: 2.6041666667vw;
  right: 9.1145833333vw;
  width: 3.3854166667vw;
  height: 3.3854166667vw;
  background: url("/assets/img/e260223/open_event/close.png") no-repeat center center;
  background-size: 4.1666666667vw 4.1666666667vw;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .event-wrap .section-event-2 .comment-wrap .textarea-wrap .close {
    top: 20px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .section-event-2 .comment-wrap .textarea-wrap .close {
    right: 70px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .section-event-2 .comment-wrap .textarea-wrap .close {
    width: 26px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .section-event-2 .comment-wrap .textarea-wrap .close {
    height: 26px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .section-event-2 .comment-wrap .textarea-wrap .close {
    background-size: 32px 32px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .section-event-2 .comment-wrap {
    background: #DEFDF3 url("/assets/events/e260223/images/bg_event2.jpg") 50% 0 no-repeat;
    background-size: 100% auto;
  }
  .event-wrap .section-event-2 .comment-wrap .img-item {
    padding: 0;
  }
  .event-wrap .section-event-2 .comment-wrap .textarea-wrap {
    flex-direction: row;
  }
  .event-wrap .section-event-2 .comment-wrap .textarea-wrap textarea {
    height: 105px;
    font-size: 16px;
    padding: 20px 40px 20px 20px;
  }
  .event-wrap .section-event-2 .comment-wrap .textarea-wrap .close {
    background: url("https://book.visang.com/assets/img/e260223/open_event/close.png") no-repeat center center;
    background-repeat: no-repeat;
    background-position: center;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .event-wrap .section-event-2 .comment-wrap .textarea-wrap .close {
    top: 0.78125vw;
  }
}
@media screen and (min-width: 768px) and (min-width: 1280px) {
  .event-wrap .section-event-2 .comment-wrap .textarea-wrap .close {
    top: 10px;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .event-wrap .section-event-2 .comment-wrap .textarea-wrap .close {
    right: 15.625vw;
  }
}
@media screen and (min-width: 768px) and (min-width: 1280px) {
  .event-wrap .section-event-2 .comment-wrap .textarea-wrap .close {
    right: 200px;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .event-wrap .section-event-2 .comment-wrap .textarea-wrap .close {
    width: 1.25vw;
  }
}
@media screen and (min-width: 768px) and (min-width: 1280px) {
  .event-wrap .section-event-2 .comment-wrap .textarea-wrap .close {
    width: 16px;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .event-wrap .section-event-2 .comment-wrap .textarea-wrap .close {
    height: 1.25vw;
  }
}
@media screen and (min-width: 768px) and (min-width: 1280px) {
  .event-wrap .section-event-2 .comment-wrap .textarea-wrap .close {
    height: 16px;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .event-wrap .section-event-2 .comment-wrap .textarea-wrap .close {
    background-size: 1.25vw 1.25vw;
  }
}
@media screen and (min-width: 768px) and (min-width: 1280px) {
  .event-wrap .section-event-2 .comment-wrap .textarea-wrap .close {
    background-size: 16px 16px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .section-event-2 .comment-wrap .textarea-wrap .btn {
    padding: 40.5px 43px;
    font-size: 24px;
    height: 105px;
  }
}
.event-wrap .section-plus-comment {
  padding: 15.625vw 0;
}
@media screen and (min-width: 768px) {
  .event-wrap .section-plus-comment {
    padding: 120px 0;
  }
}
.event-wrap .section-plus-comment .title {
  margin-bottom: 5.2083333333vw;
}
@media screen and (min-width: 768px) {
  .event-wrap .section-plus-comment .title {
    margin-bottom: 40px;
  }
}
.event-wrap .section-plus-comment .title .text {
  font-size: 7.8125vw;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .event-wrap .section-plus-comment .title .text {
    font-size: 60px;
  }
}
.event-wrap .section-plus-comment .sort-wrap {
  display: flex;
  justify-content: center;
  gap: 2.6041666667vw;
  margin-bottom: 5.2083333333vw;
}
@media screen and (min-width: 768px) {
  .event-wrap .section-plus-comment .sort-wrap {
    gap: 20px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .section-plus-comment .sort-wrap {
    margin-bottom: 40px;
  }
}
.event-wrap .section-plus-comment .sort-wrap button {
  border-radius: 60px;
  padding: 1.3020833333vw 5.2083333333vw;
  border: 2px solid #3CC7DD;
  color: #3CC7DD;
  font-size: 3.125vw;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .event-wrap .section-plus-comment .sort-wrap button {
    padding: 10px 40px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .section-plus-comment .sort-wrap button {
    font-size: 24px;
  }
}
.event-wrap .section-plus-comment .sort-wrap button.active {
  color: #fff;
  background: #3CC7DD;
}
.event-wrap .section-plus-comment .comment-list {
  padding: 0 7.8125vw;
}
@media screen and (min-width: 768px) {
  .event-wrap .section-plus-comment .comment-list {
    padding: 0 60px;
  }
}
.event-wrap .section-plus-comment .comment-list .comment-item {
  position: relative;
  height: 60.4166666667vw;
  background: url("/assets/events/e260223/images/postit.png") 0 0 no-repeat;
  background-size: 100% auto;
  padding: 11.71875vw 3.6458333333vw 5.2083333333vw 10.4166666667vw;
}
@media screen and (min-width: 768px) {
  .event-wrap .section-plus-comment .comment-list .comment-item {
    height: 464px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .section-plus-comment .comment-list .comment-item {
    padding: 90px 28px 40px 80px;
  }
}
.event-wrap .section-plus-comment .comment-list .comment-item .comment {
  margin-bottom: 3.125vw;
  text-align: left;
  font-size: 3.125vw;
  color: #555;
  height: 23.4375vw;
  overflow-y: auto;
  border-bottom: 1px solid #E3D6A3;
}
@media screen and (min-width: 768px) {
  .event-wrap .section-plus-comment .comment-list .comment-item .comment {
    margin-bottom: 24px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .section-plus-comment .comment-list .comment-item .comment {
    font-size: 24px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .section-plus-comment .comment-list .comment-item .comment {
    height: 180px;
  }
}
.event-wrap .section-plus-comment .comment-list .comment-item .comment::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 4px;
  height: 4px;
}
.event-wrap .section-plus-comment .comment-list .comment-item .comment::-webkit-scrollbar-track {
  background: rgba(130, 140, 174, 0);
  border-radius: 4px;
}
.event-wrap .section-plus-comment .comment-list .comment-item .comment::-webkit-scrollbar-thumb {
  cursor: pointer !important;
  border-radius: 4px;
  background: rgba(130, 140, 174, 0.37);
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.event-wrap .section-plus-comment .comment-list .comment-item .comment::-webkit-scrollbar-thumb:hover {
  background: rgba(130, 140, 174, 0.67);
}
.event-wrap .section-plus-comment .comment-list .comment-item .info {
  display: flex;
  align-items: center;
}
.event-wrap .section-plus-comment .comment-list .comment-item .info .name {
  font-size: 3.6458333333vw;
  color: #759491;
}
@media screen and (min-width: 768px) {
  .event-wrap .section-plus-comment .comment-list .comment-item .info .name {
    font-size: 28px;
  }
}
.event-wrap .section-plus-comment .comment-list .comment-item .info .like-history {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 2.6041666667vw;
}
@media screen and (min-width: 768px) {
  .event-wrap .section-plus-comment .comment-list .comment-item .info .like-history {
    gap: 20px;
  }
}
.event-wrap .section-plus-comment .comment-list .comment-item .info .like-history .like {
  display: inline-flex;
  align-items: center;
  gap: 0.6510416667vw;
  font-size: 3.6458333333vw;
  color: #333;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .event-wrap .section-plus-comment .comment-list .comment-item .info .like-history .like {
    gap: 5px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .section-plus-comment .comment-list .comment-item .info .like-history .like {
    font-size: 28px;
  }
}
.event-wrap .section-plus-comment .comment-list .comment-item .info .like-history .like .btn-like {
    display: inline-flex;
    width: 5.2083333333vw;
    height: 5.2083333333vw;

    background-color: #000;

    -webkit-mask: url("/assets/events/e260223/images/ico_heart.svg") no-repeat center;
    mask: url("/assets/events/e260223/images/ico_heart.svg") no-repeat center;

    -webkit-mask-size: 100% auto;
    mask-size: 100% auto;

    transition: background-color 0.2s ease, transform 0.15s ease;
}

.event-wrap .section-plus-comment .comment-list .comment-item .info .like-history .like .btn-like.active {
    background-color: #ff3b3b;
    transform: scale(1.1);
}
@media screen and (min-width: 768px) {
    .event-wrap .section-plus-comment .comment-list .comment-item .info .like-history .like .btn-like {
        width: 40px;
        height: 40px;
    }
}
.event-wrap .section-plus-comment .comment-list .comment-item .info .like-history .like .btn-like.on {
  background: url("/assets/events/e260223/images/ico_heart_on.svg") 50% 50% no-repeat;
  background-size: 100% auto;
}
.event-wrap .section-plus-comment .comment-list .comment-item .info .like-history .timer {
  display: inline-flex;
  align-items: center;
  gap: 0.6510416667vw;
  font-size: 3.6458333333vw;
  color: #333;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .event-wrap .section-plus-comment .comment-list .comment-item .info .like-history .timer {
    gap: 5px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .section-plus-comment .comment-list .comment-item .info .like-history .timer {
    font-size: 28px;
  }
}
.event-wrap .section-plus-comment .comment-list .comment-item .info .like-history .timer .icon-clock {
  display: inline-flex;
  width: 5.2083333333vw;
  height: 5.2083333333vw;
  background: url("/assets/events/e260223/images/ico_clock.svg") 50% 50% no-repeat;
  background-size: 100% auto;
}
@media screen and (min-width: 768px) {
  .event-wrap .section-plus-comment .comment-list .comment-item .info .like-history .timer .icon-clock {
    width: 40px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .section-plus-comment .comment-list .comment-item .info .like-history .timer .icon-clock {
    height: 40px;
  }
}
.event-wrap .section-plus-comment .btn-wrap {
  margin: 5.2083333333vw 0 13.0208333333vw;
}
@media screen and (min-width: 768px) {
  .event-wrap .section-plus-comment .btn-wrap {
    margin: 40px 0 100px;
  }
}
.event-wrap .section-plus-comment .btn-wrap .btn-more {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  margin: 0 auto;
  padding: 5.2083333333vw 0;
  font-size: 4.6875vw;
  color: #222;
  border-radius: 60px;
  border: 1px solid #222;
}
@media screen and (min-width: 768px) {
  .event-wrap .section-plus-comment .btn-wrap .btn-more {
    padding: 40px 0;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .section-plus-comment .btn-wrap .btn-more {
    font-size: 36px;
  }
}
.event-wrap .section-plus-comment .gong-banner {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 90%;
  overflow: hidden;
  margin: 0 auto 13.0208333333vw;
  padding-top: 5.2083333333vw;
  border-radius: 20px;
  background: #F3FBFB;
}
@media screen and (min-width: 768px) {
  .event-wrap .section-plus-comment .gong-banner {
    margin: 0 auto 100px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .section-plus-comment .gong-banner {
    padding-top: 40px;
  }
}
.event-wrap .section-plus-comment .gong-banner .icon-teacher {
  margin: 0 auto 2.6041666667vw;
  width: 19.7916666667vw;
}
@media screen and (min-width: 768px) {
  .event-wrap .section-plus-comment .gong-banner .icon-teacher {
    margin: 0 auto 20px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .section-plus-comment .gong-banner .icon-teacher {
    width: 152px;
  }
}
.event-wrap .section-plus-comment .gong-banner p {
  padding: 0 5.2083333333vw 2.6041666667vw;
  font-size: 4.6875vw;
  word-break: keep-all;
  color: #222;
}
@media screen and (min-width: 768px) {
  .event-wrap .section-plus-comment .gong-banner p {
    padding: 0 40px 20px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .section-plus-comment .gong-banner p {
    font-size: 36px;
  }
}
.event-wrap .section-plus-comment .gong-banner p .highlight {
  color: #39ADE3;
}
.event-wrap .section-plus-comment .gong-banner .btn-go {
  color: #fff;
  font-size: 4.6875vw;
  padding: 5.2083333333vw 0;
  line-height: 1;
  background: #3CC7DD;
}
@media screen and (min-width: 768px) {
  .event-wrap .section-plus-comment .gong-banner .btn-go {
    font-size: 36px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .section-plus-comment .gong-banner .btn-go {
    padding: 40px 0;
  }
}
.event-wrap .section-plus-comment .bottom-text p {
  margin-bottom: 3.90625vw;
  font-size: 5.2083333333vw;
  font-weight: 400;
  color: #222;
}
@media screen and (min-width: 768px) {
  .event-wrap .section-plus-comment .bottom-text p {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .section-plus-comment .bottom-text p {
    font-size: 40px;
  }
}
.event-wrap .section-plus-comment .bottom-text p .highlight {
  color: #3CC7DD;
}
.event-wrap .section-plus-comment .bottom-text p strong {
  display: block;
  color: #3CC7DD;
  font-weight: 700;
}
.event-wrap .section-plus-comment .bottom-text small {
  display: inline-block;
  margin-bottom: 6.5104166667vw;
  font-size: 4.1666666667vw;
  font-weight: 400;
  font-family: "suit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  letter-spacing: -0.1302083333vw;
}
@media screen and (min-width: 768px) {
  .event-wrap .section-plus-comment .bottom-text small {
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .section-plus-comment .bottom-text small {
    font-size: 32px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .section-plus-comment .bottom-text small {
    letter-spacing: -1px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .section-plus-comment .comment-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(200px, auto));
    grid-template-rows: repeat(3, minmax(282px, auto));
    gap: 10px;
    padding: 0;
    justify-items: center;
  }
}
@media screen and (min-width: 768px) and (min-width: 1100px) {
  .event-wrap .section-plus-comment .comment-list {
    grid-template-columns: repeat(3, minmax(200px, auto));
    grid-template-rows: repeat(2, minmax(282px, auto));
    justify-items: stretch;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .section-plus-comment .comment-list .comment-item {
    flex: 1;
    max-width: 55.7291666667vw;
    height: 282px;
    padding: 45px 17px 20px 38px;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .event-wrap .section-plus-comment .comment-list .comment-item {
    max-width: 428px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .section-plus-comment .comment-list .comment-item .comment {
    margin-bottom: 15px;
    height: 120px;
    font-size: 16px;
  }
  .event-wrap .section-plus-comment .comment-list .comment-item .info .name {
    font-size: 16px;
  }
  .event-wrap .section-plus-comment .comment-list .comment-item .info .like-history {
    gap: 10px;
  }
  .event-wrap .section-plus-comment .comment-list .comment-item .info .like-history .like {
    font-size: 16px;
  }
  .event-wrap .section-plus-comment .comment-list .comment-item .info .like-history .like .btn-like {
    width: 30px;
    height: 30px;
  }
  .event-wrap .section-plus-comment .comment-list .comment-item .info .like-history .timer {
    font-size: 16px;
  }
  .event-wrap .section-plus-comment .comment-list .comment-item .info .like-history .timer .icon-clock {
    width: 30px;
    height: 30px;
  }
  .event-wrap .section-plus-comment .btn-wrap .btn-more {
    max-width: 368px;
    padding: 24px 0;
    font-size: 24px;
  }
  .event-wrap .section-plus-comment .gong-banner {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    padding: 32px 61px 0 130px;
  }
  .event-wrap .section-plus-comment .gong-banner .icon-teacher {
    width: 110px;
    margin: 0;
  }
  .event-wrap .section-plus-comment .gong-banner .icon-teacher img {
    vertical-align: top;
  }
  .event-wrap .section-plus-comment .gong-banner p {
    padding: 8px 10px 0 10px;
    font-size: 24px;
  }
  .event-wrap .section-plus-comment .gong-banner .btn-go {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    padding: 0 30px;
    height: 46px;
    font-size: 20px;
    border-radius: 100px;
  }
}
.event-wrap .section-notice {
  background: #2e2e2e;
  padding: 7.8125vw 5.2083333333vw;
}
@media screen and (min-width: 768px) {
  .event-wrap .section-notice {
    padding: 60px 40px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .section-notice {
    padding: 40px 20px 60px;
  }
}
.event-wrap .section-notice .inner {
  text-align: left;
}
.event-wrap .section-notice .title {
  color: #fff;
  font-size: 3.3854166667vw;
  font-weight: 700;
  margin-bottom: 2.6041666667vw;
}
@media screen and (min-width: 768px) {
  .event-wrap .section-notice .title {
    font-size: 26px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .section-notice .title {
    margin-bottom: 20px;
  }
}
.event-wrap .section-notice ul li {
  position: relative;
  color: #fff;
  font-family: "suit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.5;
  lettter-spacing: -0.1302083333vw;
  padding-left: 2.0833333333vw;
  font-size: 3.125vw;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .event-wrap .section-notice ul li {
    lettter-spacing: -1px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .section-notice ul li {
    padding-left: 16px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .section-notice ul li {
    font-size: 24px;
  }
}
.event-wrap .section-notice ul li::before {
  content: "·";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  line-height: inherit;
}
@media screen and (min-width: 768px) {
  .event-wrap .section-notice ul li {
    font-size: 16px;
  }
}
.event-wrap .modal .fade {
  transition: opacity 0.1s linear;
}
.event-wrap .modal-apply2 .modal-close {
  top: 1.2rem;
  right: 1.2rem;
  width: 1.6rem;
  height: 1.6rem;
}
.event-wrap .modal-apply2 .modal-content {
  border-radius: 1rem 1rem 0 0;
}
@media screen and (min-width: 768px) {
  .event-wrap .modal-apply2 .modal-content {
    border-radius: 1rem;
  }
}
.event-wrap .modal-apply2 .modal-body {
  padding: 2.5rem 2rem 2rem;
  background: #e8fcff;
  background: linear-gradient(190deg, #e8fcff 0%, #e8fcff 30%, #fff 60%);
}
.event-wrap .modal-apply2 .modal-body .progress-bar {
  margin-bottom: 2.5rem;
}
.event-wrap .modal-apply2 .modal-body .progress-bar .step-count {
  margin-bottom: 1rem;
  text-align: left;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  font-family: "suit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  letter-spacing: -0.1302083333vw;
  color: #aeaeae;
}
@media screen and (min-width: 768px) {
  .event-wrap .modal-apply2 .modal-body .progress-bar .step-count {
    letter-spacing: -1px;
  }
}
.event-wrap .modal-apply2 .modal-body .progress-bar .step-count span {
  font-size: 1.4rem;
  font-weight: 400;
}
.event-wrap .modal-apply2 .modal-body .progress-bar .bar {
  position: relative;
  width: 100%;
  height: 0.8rem;
  border-radius: 3rem;
  background: rgba(214, 239, 242, 0.5);
}
.event-wrap .modal-apply2 .modal-body .progress-bar .bar .active-bar {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background: #3CC7DD;
  border-radius: 30px;
}
.event-wrap .modal-apply2 .modal-body .question p {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2.6041666667vw;
}
@media screen and (min-width: 768px) {
  .event-wrap .modal-apply2 .modal-body .question p {
    gap: 20px;
  }
}
.event-wrap .modal-apply2 .modal-body .question p .q-mark {
  font-size: 16.40625vw;
  font-weight: 700;
  color: #D6EFF2;
  font-family: "suit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  letter-spacing: -0.1302083333vw;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .event-wrap .modal-apply2 .modal-body .question p .q-mark {
    font-size: 126px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .modal-apply2 .modal-body .question p .q-mark {
    letter-spacing: -1px;
  }
}
.event-wrap .modal-apply2 .modal-body .question p .text {
  text-align: left;
  word-break: keep-all;
  font-size: 5.859375vw;
  font-weight: 400;
  color: #222;
}
@media screen and (min-width: 768px) {
  .event-wrap .modal-apply2 .modal-body .question p .text {
    font-size: 45px;
  }
}
.event-wrap .modal-apply2 .modal-body .question p .text strong {
  font-weight: 700;
}
.event-wrap .modal-apply2 .modal-body .answer {
  margin-top: 9.1145833333vw;
}
@media screen and (min-width: 768px) {
  .event-wrap .modal-apply2 .modal-body .answer {
    margin-top: 70px;
  }
}
.event-wrap .modal-apply2 .modal-body .answer ul {
  display: flex;
  flex-direction: column;
  gap: 1.953125vw;
}
@media screen and (min-width: 768px) {
  .event-wrap .modal-apply2 .modal-body .answer ul {
    gap: 15px;
  }
}
.event-wrap .modal-apply2 .modal-body .answer button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  border-radius: 10px;
  font-family: "suit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  letter-spacing: -0.1302083333vw;
  padding: 0 7.8125vw;
  font-size: 3.6458333333vw;
  height: 6.6rem;
  background: #f3f8fb;
}
@media screen and (min-width: 768px) {
  .event-wrap .modal-apply2 .modal-body .answer button {
    letter-spacing: -1px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .modal-apply2 .modal-body .answer button {
    padding: 0 60px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .modal-apply2 .modal-body .answer button {
    font-size: 28px;
  }
}
.event-wrap .modal-apply2 .modal-body .answer button.active {
  border: 2px solid #222;
}
.event-wrap .modal-apply2 .modal-body .control-button {
  display: flex;
  justify-content: space-between;
  margin-top: 9.1145833333vw;
}
@media screen and (min-width: 768px) {
  .event-wrap .modal-apply2 .modal-body .control-button {
    margin-top: 70px;
  }
}
.event-wrap .modal-apply2 .modal-body .control-button button {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  width: 39.0625vw;
  height: 13.0208333333vw;
  color: #fff;
  font-family: "suit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  letter-spacing: -0.1302083333vw;
  background: #3CC7DD;
  font-size: 6.25vw;
}
@media screen and (min-width: 768px) {
  .event-wrap .modal-apply2 .modal-body .control-button button {
    width: 300px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .modal-apply2 .modal-body .control-button button {
    height: 100px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .modal-apply2 .modal-body .control-button button {
    letter-spacing: -1px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .modal-apply2 .modal-body .control-button button {
    font-size: 48px;
  }
}
.event-wrap .modal-apply2 .modal-body .control-button button:disabled {
  background: #cecece;
}
@media screen and (min-width: 768px) {
  .event-wrap .modal-apply2 .modal-close {
    top: 1.8rem;
    right: 1.8rem;
    width: 2rem;
    height: 2rem;
  }
  .event-wrap .modal-apply2 .modal-body .question p .q-mark {
    font-size: 9.2rem;
    line-height: 1;
  }
  .event-wrap .modal-apply2 .modal-body .question p .text {
    font-size: 2.8rem;
  }
  .event-wrap .modal-apply2 .modal-body .answer button {
    font-size: 1.6rem;
  }
  .event-wrap .modal-apply2 .modal-body .control-button button {
    width: 11.1rem;
    height: 5.4rem;
    font-size: 2.4rem;
  }
}
.event-wrap .modal-apply-result .modal-close {
  top: 1.2rem;
  right: 1.2rem;
  width: 1.6rem;
  height: 1.6rem;
}
.event-wrap .modal-apply-result .modal-content {
  border-radius: 1rem 1rem 0 0;
}
@media screen and (min-width: 768px) {
  .event-wrap .modal-apply-result .modal-content {
    border-radius: 1rem;
  }
}
.event-wrap .modal-apply-result .modal-body {
  position: relative;
  padding: 2.5rem 2rem 4rem;
  background: #fff;
  background: linear-gradient(to bottom, #fff 0%, #e8fcff 80%);
}
.event-wrap .modal-apply-result .modal-body .type-text {
  position: absolute;
  top: 1.9rem;
  left: 2.4rem;
  font-size: 3.125vw;
  color: #aeaeae;
}
@media screen and (min-width: 768px) {
  .event-wrap .modal-apply-result .modal-body .type-text {
    font-size: 24px;
  }
}
.event-wrap .modal-apply-result .modal-body .type-img {
  width: 16.9270833333vw;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .event-wrap .modal-apply-result .modal-body .type-img {
    width: 130px;
  }
}
.event-wrap .modal-apply-result .modal-body .result-cont {
  margin-bottom: 2.6041666667vw;
}
@media screen and (min-width: 768px) {
  .event-wrap .modal-apply-result .modal-body .result-cont {
    margin-bottom: 20px;
  }
}
.event-wrap .modal-apply-result .modal-body .result-cont .title {
  margin-bottom: 2.6041666667vw;
  font-size: 5.2083333333vw;
  font-weight: 700;
  text-align: center;
  color: #3CC7DD;
}
@media screen and (min-width: 768px) {
  .event-wrap .modal-apply-result .modal-body .result-cont .title {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .modal-apply-result .modal-body .result-cont .title {
    font-size: 40px;
  }
}
.event-wrap .modal-apply-result .modal-body .result-cont .desc {
  font-family: "suit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  letter-spacing: -0.1302083333vw;
  font-size: 3.125vw;
  color: #222;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .event-wrap .modal-apply-result .modal-body .result-cont .desc {
    letter-spacing: -1px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .modal-apply-result .modal-body .result-cont .desc {
    font-size: 24px;
  }
}
.event-wrap .modal-apply-result .modal-body .result-cont .desc strong {
  font-family: "suit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  letter-spacing: -0.1302083333vw;
}
@media screen and (min-width: 768px) {
  .event-wrap .modal-apply-result .modal-body .result-cont .desc strong {
    letter-spacing: -1px;
  }
}
.event-wrap .modal-apply-result .modal-body .plus-point > .title {
  display: inline-flex;
  align-items: center;
  font-size: 3.125vw;
  font-weight: 700;
  font-family: "suit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  letter-spacing: -0.1302083333vw;
  padding: 0 5.2083333333vw;
  height: 7.8125vw;
  border-radius: 21px;
  background: linear-gradient(360deg, #74F7D9 0%, #CDFFF0 114.71%);
}
@media screen and (min-width: 768px) {
  .event-wrap .modal-apply-result .modal-body .plus-point > .title {
    font-size: 24px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .modal-apply-result .modal-body .plus-point > .title {
    letter-spacing: -1px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .modal-apply-result .modal-body .plus-point > .title {
    padding: 0 40px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .modal-apply-result .modal-body .plus-point > .title {
    height: 60px;
  }
}
.event-wrap .modal-apply-result .modal-body .desc {
  font-family: "suit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 3.125vw;
  letter-spacing: -0.1302083333vw;
  color: #3CC7DD;
}
@media screen and (min-width: 768px) {
  .event-wrap .modal-apply-result .modal-body .desc {
    font-size: 24px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .modal-apply-result .modal-body .desc {
    letter-spacing: -1px;
  }
}
.event-wrap .modal-apply-result .modal-body .point-box {
  display: flex;
  margin: 2.6041666667vw 0;
  gap: 2.6041666667vw;
}
@media screen and (min-width: 768px) {
  .event-wrap .modal-apply-result .modal-body .point-box {
    margin: 20px 0;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .modal-apply-result .modal-body .point-box {
    gap: 20px;
  }
}
.event-wrap .modal-apply-result .modal-body .point-box .item {
  padding: 3.90625vw;
  flex: 1;
  border-radius: 10px;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .event-wrap .modal-apply-result .modal-body .point-box .item {
    padding: 30px;
  }
}
.event-wrap .modal-apply-result .modal-body .point-box .item p {
  font-family: "suit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 3.125vw;
  letter-spacing: -0.1302083333vw;
}
@media screen and (min-width: 768px) {
  .event-wrap .modal-apply-result .modal-body .point-box .item p {
    font-size: 24px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .modal-apply-result .modal-body .point-box .item p {
    letter-spacing: -1px;
  }
}
.event-wrap .modal-apply-result .modal-body .point-box .item p.title {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  height: 6.25vw;
  margin-bottom: 1.0416666667vw;
  gap: 1.3020833333vw;
  font-weight: 700;
  color: #222;
}
@media screen and (min-width: 768px) {
  .event-wrap .modal-apply-result .modal-body .point-box .item p.title {
    height: 48px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .modal-apply-result .modal-body .point-box .item p.title {
    margin-bottom: 8px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .modal-apply-result .modal-body .point-box .item p.title {
    gap: 10px;
  }
}
.event-wrap .modal-apply-result .modal-body .point-box .item p.title .icon-note img {
  width: 7.03125vw;
}
@media screen and (min-width: 768px) {
  .event-wrap .modal-apply-result .modal-body .point-box .item p.title .icon-note img {
    width: 54px;
  }
}
.event-wrap .modal-apply-result .modal-body .point-box .item p.title .icon-ringt img {
  width: 3.90625vw;
}
@media screen and (min-width: 768px) {
  .event-wrap .modal-apply-result .modal-body .point-box .item p.title .icon-ringt img {
    width: 30px;
  }
}
.event-wrap .modal-apply-result .modal-body .point-box .item p.text {
  font-size: 2.6041666667vw;
  font-weight: 400;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .event-wrap .modal-apply-result .modal-body .point-box .item p.text {
    font-size: 20px;
  }
}
.event-wrap .modal-apply-result .modal-body .result-text {
  font-family: "suit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 3.125vw;
  letter-spacing: -0.1302083333vw;
  color: #304845;
}
@media screen and (min-width: 768px) {
  .event-wrap .modal-apply-result .modal-body .result-text {
    font-size: 24px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .modal-apply-result .modal-body .result-text {
    letter-spacing: -1px;
  }
}
.event-wrap .modal-apply-result .modal-body .btn-wrap .btn-apply {
  width: 100%;
  height: 13.0208333333vw;
  font-size: 5.2083333333vw;
  font-family: "suit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  letter-spacing: -0.1302083333vw;
  background: #3CC7DD;
}
@media screen and (min-width: 768px) {
  .event-wrap .modal-apply-result .modal-body .btn-wrap .btn-apply {
    height: 100px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .modal-apply-result .modal-body .btn-wrap .btn-apply {
    font-size: 40px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .modal-apply-result .modal-body .btn-wrap .btn-apply {
    letter-spacing: -1px;
  }
}
.event-wrap .modal-apply-result .modal-body .share-wrap {
  display: flex;
  justify-content: center;
  margin-top: 3.90625vw;
}
@media screen and (min-width: 768px) {
  .event-wrap .modal-apply-result .modal-body .share-wrap {
    margin-top: 30px;
  }
}
.event-wrap .modal-apply-result .modal-body .share-wrap .btn {
  position: relative;
  padding: 0;
  border-radius: 0;
  opacity: 0.7;
}
.event-wrap .modal-apply-result .modal-body .share-wrap .btn img {
  width: 5.46875vw;
}
@media screen and (min-width: 768px) {
  .event-wrap .modal-apply-result .modal-body .share-wrap .btn img {
    width: 42px;
  }
}
.event-wrap .modal-apply-result .modal-body .share-wrap .btn + .btn {
  margin-left: 3.90625vw;
  padding-left: 3.90625vw;
}
@media screen and (min-width: 768px) {
  .event-wrap .modal-apply-result .modal-body .share-wrap .btn + .btn {
    margin-left: 30px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .modal-apply-result .modal-body .share-wrap .btn + .btn {
    padding-left: 30px;
  }
}
.event-wrap .modal-apply-result .modal-body .share-wrap .btn + .btn:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 0.2604166667vw;
  height: 2.0833333333vw;
  background-color: #4a4c4d;
}
@media screen and (min-width: 768px) {
  .event-wrap .modal-apply-result .modal-body .share-wrap .btn + .btn:before {
    width: 2px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .modal-apply-result .modal-body .share-wrap .btn + .btn:before {
    height: 16px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .modal-apply-result .modal-close {
    top: 1.8rem;
    right: 1.8rem;
    width: 2rem;
    height: 2rem;
  }
  .event-wrap .modal-apply-result .modal-body .type-text {
    font-size: 16px;
  }
  .event-wrap .modal-apply-result .modal-body .result-cont .title {
    font-size: 24px;
  }
  .event-wrap .modal-apply-result .modal-body .result-cont .desc {
    font-size: 16px;
  }
  .event-wrap .modal-apply-result .modal-body .result-cont .desc strong {
    font-size: inherit;
  }
  .event-wrap .modal-apply-result .modal-body .plus-point > .title {
    margin-bottom: 15px;
    padding: 0 20px;
    height: 42px;
    font-size: 16px;
  }
  .event-wrap .modal-apply-result .modal-body .desc {
    font-size: 16px;
  }
  .event-wrap .modal-apply-result .modal-body .point-box .item {
    padding: 8px 8px 15px;
  }
  .event-wrap .modal-apply-result .modal-body .point-box .item p {
    font-size: 16px;
  }
  .event-wrap .modal-apply-result .modal-body .point-box .item p.title {
    height: 42px;
  }
  .event-wrap .modal-apply-result .modal-body .point-box .item p.text {
    font-size: 16px;
  }
  .event-wrap .modal-apply-result .modal-body .result-text {
    font-size: 16px;
  }
  .event-wrap .modal-apply-result .modal-body .btn-wrap {
    margin-top: 20px;
  }
  .event-wrap .modal-apply-result .modal-body .btn-wrap .btn-apply {
    height: 80px;
    font-size: 28px;
  }
}
.event-wrap .modal-theratea .modal-close {
  top: 1.2rem;
  right: 1.2rem;
  width: 1.6rem;
  height: 1.6rem;
}
@media screen and (min-width: 768px) {
  .event-wrap .modal-theratea .modal-close {
    top: 1.8rem;
    right: 1.8rem;
    width: 2rem;
    height: 2rem;
  }
}
.event-wrap .modal-form-custom .modal-title {
  letter-spacing: -0.1302083333vw;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: left;
  word-break: keep-all;
}
@media screen and (min-width: 768px) {
  .event-wrap .modal-form-custom .modal-title {
    letter-spacing: -1px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .modal-form-custom .modal-title {
    font-size: 24px;
  }
}
.event-wrap .modal-form-custom .modal-close {
  top: 1.2rem;
  right: 1.2rem;
  width: 2.4rem;
  height: 2.4rem;
}
@media screen and (min-width: 768px) {
  .event-wrap .modal-form-custom .modal-close {
    top: 2rem;
    right: 2rem;
    width: 3rem;
    height: 3rem;
  }
}
.event-wrap .modal-form-custom .modal-body {
  padding: 2.6041666667vw 6.25vw 6.25vw;
}
@media screen and (min-width: 768px) {
  .event-wrap .modal-form-custom .modal-body {
    padding: 20px 48px 48px;
  }
}
.event-wrap .modal-form-custom .modal-apply * {
  font-family: "suit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.event-wrap .modal-form-custom .modal-apply .modal-contents {
  margin: 0;
  padding: 0;
  border-top: 0;
}
.event-wrap .modal-form-custom .modal-apply .content {
  text-align: left;
}
.event-wrap .modal-form-custom .modal-apply .content .message {
  padding: 3.90625vw;
}
@media screen and (min-width: 768px) {
  .event-wrap .modal-form-custom .modal-apply .content .message {
    padding: 30px;
  }
}
.event-wrap .modal-form-custom .modal-apply .content .message .title {
  margin-bottom: 1.3020833333vw;
}
@media screen and (min-width: 768px) {
  .event-wrap .modal-form-custom .modal-apply .content .message .title {
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .modal-form-custom .modal-apply .content .message {
    padding: 20px;
  }
}
.event-wrap .modal-form-custom .modal-apply .content .message .form-check {
  margin-top: 1rem;
}
.event-wrap .modal-form-custom .modal-apply .content .message .form-check input {
  margin: 0;
}
.event-wrap .modal-form-custom .modal-apply .form-check-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.0416666667vw;
}
@media screen and (min-width: 768px) {
  .event-wrap .modal-form-custom .modal-apply .form-check-wrap {
    gap: 8px;
  }
}
.event-wrap .modal-form-custom .modal-apply .form-check-wrap .sub-check-group {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  padding: 2.0833333333vw;
  gap: 1.3020833333vw;
  border-radius: 10px;
  background: #f7f7f7;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.1s;
  -webkit-transition-timing-function: ease-out;
  -o-transition-property: all;
  -o-transition-duration: 0.1s;
  -o-transition-timing-function: ease-out;
  transition-property: all;
  transition-duration: 0.1s;
  transition-timing-function: ease-out;
}
@media screen and (min-width: 768px) {
  .event-wrap .modal-form-custom .modal-apply .form-check-wrap .sub-check-group {
    padding: 16px;
  }
}
@media screen and (min-width: 768px) {
  .event-wrap .modal-form-custom .modal-apply .form-check-wrap .sub-check-group {
    gap: 10px;
  }
}
.event-wrap .modal-form-custom .modal-apply .form-check-wrap .mix-input input[type=text] {
  padding: 1rem 1rem;
  margin-left: 0.4rem;
  height: 2.4rem;
  background: #fff;
  border-radius: 0.5rem;
  border: 1px solid #e0e5e6;
}

#comment-list .event-list-empty {
    text-align: center;
    padding: 40px;
    grid-column: span 3;
    grid-row: span 2;
    display: flex;
    justify-content: center;
    align-items: center;
}