:root {
  --mcs_red: hsla(358, 79%, 43%, 1);
  --mcs_blk: hsla(0, 0%, 0%, 1);
  --mcs_gray00: hsla(0, 0%, 53%, 1);
  --mcs_gray01: hsla(0, 0%, 95%, 1);
  --mcs_gray03: hsla(0, 0%, 93%, 1);
  --mcs_gray97: hsla(0, 0%, 97%, 1);
  --mcs_gray95: hsla(0, 0%, 95%, 1);
  --mcs_gray93: hsla(0, 0%, 93%, 1);
  --mcs_gray92: hsla(0, 0%, 92%, 1);
  --mcs_gray90: hsla(0, 0%, 90%, 1);
  --mcs_gray85: hsla(0, 0%, 85%, 1);
  --mcs_gray80: hsla(0, 0%, 80%, 1);
  --mcs_gray75: hsla(0, 0%, 75%, 1);
  --mcs_gray65: hsla(0, 0%, 65%, 1);
  --mcs_gray30: hsla(0, 0%, 30%, 1);
  --mcs_purple: hsla(294, 63%, 44%, 1);
  --grad_visit: linear-gradient(90deg, hsla(0, 88%, 54%, 1) 0%, hsla(219, 73%, 56%, 1) 100%);
  --grad_seminar: linear-gradient(90deg, hsla(0, 88%, 54%, 1) 0%, hsla(186, 85%, 47%, 1) 100%);
  --grad_mypage: linear-gradient(90deg, hsla(0, 88%, 54%, 1) 0%, hsla(44, 94%, 52%, 1) 100%);
  --grad_redBlue: linear-gradient(90deg, hsla(0, 88%, 54%, 1) 0%, hsla(219, 73%, 56%, 1) 100%);
  --grad_redGreen: linear-gradient(90deg, hsla(0, 88%, 54%, 1) 0%, hsla(186, 85%, 47%, 1) 100%);
  --grad_redYellow: linear-gradient(90deg, hsla(0, 88%, 54%, 1) 0%, hsla(44, 94%, 52%, 1) 100%);
  --grad_red: linear-gradient(90deg, hsla(0, 88%, 54%, 1) 0%, hsla(0, 88%, 54%, 1) 100%);
  --grad_mcs: linear-gradient(90deg, hsla(294, 43%, 40%, 1) 0%, hsla(359, 79%, 56%, 1) 50%, hsla(44, 95%, 53%, 1) 100%);
  --grad_mcs_v: linear-gradient(180deg, hsla(294, 43%, 40%, 1) 0%, hsla(359, 79%, 56%, 1) 50%, hsla(44, 95%, 53%, 1) 100%);
  --navBar: hsla(0, 100%, 50%, 1);
  --num_purple: hsla(281, 85%, 60%, 1);
  --num_red: hsla(0, 100%, 50%, 1);
  --num_yellow: hsla(38, 100%, 50%, 1);
  --num_lightblue: hsla(194, 100%, 45%, 1);
  --num_green: hsla(166, 90%, 40%, 1);
  --num_blue: hsla(219, 73%, 62%, 1);
  --seminar_K: hsla(0, 0%, 30%, 1);
  --seminar_TK: hsla(219, 73%, 62%, 1);
  --seminar_T: hsla(38, 100%, 50%, 1);
  --seminar_S: hsla(194, 100%, 45%, 1);
  --seminar_E: hsla(281, 85%, 60%, 1);
  --seminar_J: hsla(0, 100%, 50%, 1);
  --seminar_G: hsla(166, 90%, 40%, 1);
  --num_seminar_B: hsla(59, 63%, 44%, 1);
  --c-Black: hsla(0, 0%, 0%, 1);
  --c-black: hsla(0, 0%, 0%, 1);
  --c-White: hsla(0, 0%, 100%, 1);
  --c-white: hsla(0, 0%, 100%, 1);
  --c-dummy: hsl(0 0% 47.1%);
  --easeOutQuad: cubic-bezier(0.5, 1, 0.89, 1);
  --easeOutCubic: cubic-bezier(0.33, 1, 0.68, 1);
  --easeOutQuart: cubic-bezier(0.25, 1, 0.5, 1);
  --easeOutQuint: cubic-bezier(0.22, 1, 0.36, 1);
  --easeOutExpo: cubic-bezier(0.16, 1, 0.3, 1);
  --easeInOutQuad: cubic-bezier(0.45, 0, 0.55, 1);
  --easeInOutCubic: cubic-bezier(0.65, 0, 0.35, 1);
  --easeInOutQuart: cubic-bezier(0.76, 0, 0.24, 1);
  --easeInOutQuint: cubic-bezier(0.83, 0, 0.17, 1);
  --easeInOutExpo: cubic-bezier(0.87, 0, 0.13, 1);
  --easeInQuad: cubic-bezier(0.11, 0, 0.5, 0);
  --easeInCubic: cubic-bezier(0.32, 0, 0.67, 0);
  --easeInQuart: cubic-bezier(0.5, 0, 0.75, 0);
  --easeInQuint: cubic-bezier(0.64, 0, 0.78, 0);
  --easeInExpo: cubic-bezier(0.7, 0, 0.84, 0);
  --fadeInLength: 30px;
  --fadeInOpacityDuration: 0.8s;
  --fadeInDuration: 0.8s;
}

.filter_btn {
  border: none;
  background: none;
  padding: 0;
  font: inherit;
  color: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 32px;
  border-radius: 16px;
  cursor: pointer;
  position: relative;
}
.filter_btn::before, .filter_btn::after {
  content: "";
  display: inline-block;
  border-radius: inherit;
  position: absolute;
  inset: 0;
}
.filter_btn::before {
  transition: background-color 0.3s;
  background-color: var(--c-white);
  border: 1px solid var(--mcs_gray03);
}
.filter_btn::after {
  transition: opacity 0.3s;
  opacity: 0;
  background: var(--grad_mcs);
  border: none;
}
.filter_btn .label {
  transition: color 0.3s;
  font-size: 14px;
  line-height: 1em;
  letter-spacing: 0em;
  font-weight: 600;
}
.filter_btn .label span {
  font-weight: 600;
}
.filter_btn .label {
  color: var(--mcs_gray00);
  translate: 0 -0.05em;
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 1239px) {
  .filter_btn:hover::after {
    opacity: 1;
  }
}
@media screen and (min-width: 1239px) {
  .filter_btn:hover .label {
    color: var(--c-white);
  }
}

.filter_btn.filter_btn_all {
  width: 152px;
}

.filter_btn.active::after {
  opacity: 1;
}
.filter_btn.active .label {
  color: var(--c-white);
}

.filter_btn.filter_btn_reset {
  width: 100%;
  border-radius: 0;
}
.filter_btn.filter_btn_reset::before {
  background-color: var(--mcs_gray01);
  border: none;
}
.filter_btn.filter_btn_reset::after {
  display: none;
}
.filter_btn.filter_btn_reset .label {
  transition: color 0.3s;
  font-size: 14px;
  line-height: 1em;
  letter-spacing: 0em;
  font-weight: 600;
}
.filter_btn.filter_btn_reset .label span {
  font-weight: 600;
}
.filter_btn.filter_btn_reset .label {
  color: var(--mcs_gray00);
  translate: 0 -0.05em;
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 1239px) {
  .filter_btn.filter_btn_reset:hover::before {
    background-color: var(--mcs_gray75);
  }
}
@media screen and (min-width: 1239px) {
  .filter_btn.filter_btn_reset:hover .label {
    color: var(--c-white);
  }
}:root {
  --mcs_red: hsla(358, 79%, 43%, 1);
  --mcs_blk: hsla(0, 0%, 0%, 1);
  --mcs_gray00: hsla(0, 0%, 53%, 1);
  --mcs_gray01: hsla(0, 0%, 95%, 1);
  --mcs_gray03: hsla(0, 0%, 93%, 1);
  --mcs_gray97: hsla(0, 0%, 97%, 1);
  --mcs_gray95: hsla(0, 0%, 95%, 1);
  --mcs_gray93: hsla(0, 0%, 93%, 1);
  --mcs_gray92: hsla(0, 0%, 92%, 1);
  --mcs_gray90: hsla(0, 0%, 90%, 1);
  --mcs_gray85: hsla(0, 0%, 85%, 1);
  --mcs_gray80: hsla(0, 0%, 80%, 1);
  --mcs_gray75: hsla(0, 0%, 75%, 1);
  --mcs_gray65: hsla(0, 0%, 65%, 1);
  --mcs_gray30: hsla(0, 0%, 30%, 1);
  --mcs_purple: hsla(294, 63%, 44%, 1);
  --grad_visit: linear-gradient(90deg, hsla(0, 88%, 54%, 1) 0%, hsla(219, 73%, 56%, 1) 100%);
  --grad_seminar: linear-gradient(90deg, hsla(0, 88%, 54%, 1) 0%, hsla(186, 85%, 47%, 1) 100%);
  --grad_mypage: linear-gradient(90deg, hsla(0, 88%, 54%, 1) 0%, hsla(44, 94%, 52%, 1) 100%);
  --grad_redBlue: linear-gradient(90deg, hsla(0, 88%, 54%, 1) 0%, hsla(219, 73%, 56%, 1) 100%);
  --grad_redGreen: linear-gradient(90deg, hsla(0, 88%, 54%, 1) 0%, hsla(186, 85%, 47%, 1) 100%);
  --grad_redYellow: linear-gradient(90deg, hsla(0, 88%, 54%, 1) 0%, hsla(44, 94%, 52%, 1) 100%);
  --grad_red: linear-gradient(90deg, hsla(0, 88%, 54%, 1) 0%, hsla(0, 88%, 54%, 1) 100%);
  --grad_mcs: linear-gradient(90deg, hsla(294, 43%, 40%, 1) 0%, hsla(359, 79%, 56%, 1) 50%, hsla(44, 95%, 53%, 1) 100%);
  --grad_mcs_v: linear-gradient(180deg, hsla(294, 43%, 40%, 1) 0%, hsla(359, 79%, 56%, 1) 50%, hsla(44, 95%, 53%, 1) 100%);
  --navBar: hsla(0, 100%, 50%, 1);
  --num_purple: hsla(281, 85%, 60%, 1);
  --num_red: hsla(0, 100%, 50%, 1);
  --num_yellow: hsla(38, 100%, 50%, 1);
  --num_lightblue: hsla(194, 100%, 45%, 1);
  --num_green: hsla(166, 90%, 40%, 1);
  --num_blue: hsla(219, 73%, 62%, 1);
  --seminar_K: hsla(0, 0%, 30%, 1);
  --seminar_TK: hsla(219, 73%, 62%, 1);
  --seminar_T: hsla(38, 100%, 50%, 1);
  --seminar_S: hsla(194, 100%, 45%, 1);
  --seminar_E: hsla(281, 85%, 60%, 1);
  --seminar_J: hsla(0, 100%, 50%, 1);
  --seminar_G: hsla(166, 90%, 40%, 1);
  --num_seminar_B: hsla(59, 63%, 44%, 1);
  --c-Black: hsla(0, 0%, 0%, 1);
  --c-black: hsla(0, 0%, 0%, 1);
  --c-White: hsla(0, 0%, 100%, 1);
  --c-white: hsla(0, 0%, 100%, 1);
  --c-dummy: hsl(0 0% 47.1%);
  --easeOutQuad: cubic-bezier(0.5, 1, 0.89, 1);
  --easeOutCubic: cubic-bezier(0.33, 1, 0.68, 1);
  --easeOutQuart: cubic-bezier(0.25, 1, 0.5, 1);
  --easeOutQuint: cubic-bezier(0.22, 1, 0.36, 1);
  --easeOutExpo: cubic-bezier(0.16, 1, 0.3, 1);
  --easeInOutQuad: cubic-bezier(0.45, 0, 0.55, 1);
  --easeInOutCubic: cubic-bezier(0.65, 0, 0.35, 1);
  --easeInOutQuart: cubic-bezier(0.76, 0, 0.24, 1);
  --easeInOutQuint: cubic-bezier(0.83, 0, 0.17, 1);
  --easeInOutExpo: cubic-bezier(0.87, 0, 0.13, 1);
  --easeInQuad: cubic-bezier(0.11, 0, 0.5, 0);
  --easeInCubic: cubic-bezier(0.32, 0, 0.67, 0);
  --easeInQuart: cubic-bezier(0.5, 0, 0.75, 0);
  --easeInQuint: cubic-bezier(0.64, 0, 0.78, 0);
  --easeInExpo: cubic-bezier(0.7, 0, 0.84, 0);
  --fadeInLength: 30px;
  --fadeInOpacityDuration: 0.8s;
  --fadeInDuration: 0.8s;
}

.category_tag {
  padding: 5px 18px;
  position: relative;
}
.category_tag::before {
  content: "";
  display: inline-block;
  border-radius: 10px;
  border: 1px solid var(--mcs_gray03);
  position: absolute;
  inset: 0;
}
.category_tag .label {
  font-size: 10px;
  line-height: 1em;
  letter-spacing: 0em;
  font-weight: 400;
}
.category_tag .label span {
  font-weight: 400;
}
.category_tag .label {
  color: var(--mcs_gray00);
  translate: 0 -0.05em;
  white-space: nowrap;
  position: relative;
}:root {
  --mcs_red: hsla(358, 79%, 43%, 1);
  --mcs_blk: hsla(0, 0%, 0%, 1);
  --mcs_gray00: hsla(0, 0%, 53%, 1);
  --mcs_gray01: hsla(0, 0%, 95%, 1);
  --mcs_gray03: hsla(0, 0%, 93%, 1);
  --mcs_gray97: hsla(0, 0%, 97%, 1);
  --mcs_gray95: hsla(0, 0%, 95%, 1);
  --mcs_gray93: hsla(0, 0%, 93%, 1);
  --mcs_gray92: hsla(0, 0%, 92%, 1);
  --mcs_gray90: hsla(0, 0%, 90%, 1);
  --mcs_gray85: hsla(0, 0%, 85%, 1);
  --mcs_gray80: hsla(0, 0%, 80%, 1);
  --mcs_gray75: hsla(0, 0%, 75%, 1);
  --mcs_gray65: hsla(0, 0%, 65%, 1);
  --mcs_gray30: hsla(0, 0%, 30%, 1);
  --mcs_purple: hsla(294, 63%, 44%, 1);
  --grad_visit: linear-gradient(90deg, hsla(0, 88%, 54%, 1) 0%, hsla(219, 73%, 56%, 1) 100%);
  --grad_seminar: linear-gradient(90deg, hsla(0, 88%, 54%, 1) 0%, hsla(186, 85%, 47%, 1) 100%);
  --grad_mypage: linear-gradient(90deg, hsla(0, 88%, 54%, 1) 0%, hsla(44, 94%, 52%, 1) 100%);
  --grad_redBlue: linear-gradient(90deg, hsla(0, 88%, 54%, 1) 0%, hsla(219, 73%, 56%, 1) 100%);
  --grad_redGreen: linear-gradient(90deg, hsla(0, 88%, 54%, 1) 0%, hsla(186, 85%, 47%, 1) 100%);
  --grad_redYellow: linear-gradient(90deg, hsla(0, 88%, 54%, 1) 0%, hsla(44, 94%, 52%, 1) 100%);
  --grad_red: linear-gradient(90deg, hsla(0, 88%, 54%, 1) 0%, hsla(0, 88%, 54%, 1) 100%);
  --grad_mcs: linear-gradient(90deg, hsla(294, 43%, 40%, 1) 0%, hsla(359, 79%, 56%, 1) 50%, hsla(44, 95%, 53%, 1) 100%);
  --grad_mcs_v: linear-gradient(180deg, hsla(294, 43%, 40%, 1) 0%, hsla(359, 79%, 56%, 1) 50%, hsla(44, 95%, 53%, 1) 100%);
  --navBar: hsla(0, 100%, 50%, 1);
  --num_purple: hsla(281, 85%, 60%, 1);
  --num_red: hsla(0, 100%, 50%, 1);
  --num_yellow: hsla(38, 100%, 50%, 1);
  --num_lightblue: hsla(194, 100%, 45%, 1);
  --num_green: hsla(166, 90%, 40%, 1);
  --num_blue: hsla(219, 73%, 62%, 1);
  --seminar_K: hsla(0, 0%, 30%, 1);
  --seminar_TK: hsla(219, 73%, 62%, 1);
  --seminar_T: hsla(38, 100%, 50%, 1);
  --seminar_S: hsla(194, 100%, 45%, 1);
  --seminar_E: hsla(281, 85%, 60%, 1);
  --seminar_J: hsla(0, 100%, 50%, 1);
  --seminar_G: hsla(166, 90%, 40%, 1);
  --num_seminar_B: hsla(59, 63%, 44%, 1);
  --c-Black: hsla(0, 0%, 0%, 1);
  --c-black: hsla(0, 0%, 0%, 1);
  --c-White: hsla(0, 0%, 100%, 1);
  --c-white: hsla(0, 0%, 100%, 1);
  --c-dummy: hsl(0 0% 47.1%);
  --easeOutQuad: cubic-bezier(0.5, 1, 0.89, 1);
  --easeOutCubic: cubic-bezier(0.33, 1, 0.68, 1);
  --easeOutQuart: cubic-bezier(0.25, 1, 0.5, 1);
  --easeOutQuint: cubic-bezier(0.22, 1, 0.36, 1);
  --easeOutExpo: cubic-bezier(0.16, 1, 0.3, 1);
  --easeInOutQuad: cubic-bezier(0.45, 0, 0.55, 1);
  --easeInOutCubic: cubic-bezier(0.65, 0, 0.35, 1);
  --easeInOutQuart: cubic-bezier(0.76, 0, 0.24, 1);
  --easeInOutQuint: cubic-bezier(0.83, 0, 0.17, 1);
  --easeInOutExpo: cubic-bezier(0.87, 0, 0.13, 1);
  --easeInQuad: cubic-bezier(0.11, 0, 0.5, 0);
  --easeInCubic: cubic-bezier(0.32, 0, 0.67, 0);
  --easeInQuart: cubic-bezier(0.5, 0, 0.75, 0);
  --easeInQuint: cubic-bezier(0.64, 0, 0.78, 0);
  --easeInExpo: cubic-bezier(0.7, 0, 0.84, 0);
  --fadeInLength: 30px;
  --fadeInOpacityDuration: 0.8s;
  --fadeInDuration: 0.8s;
}

a.exhibitor_card {
  display: block;
  position: relative;
}
a.exhibitor_card .box {
  display: grid;
  grid-template-columns: 1fr auto auto;
  padding: 25px;
  position: relative;
}
@media screen and (max-width: 1239px) {
  a.exhibitor_card .box {
    padding: 22px;
  }
}
@media screen and (max-width: 1039px) {
  a.exhibitor_card .box {
    grid-template-columns: 1fr auto;
  }
}
@media screen and (max-width: 839px) {
  a.exhibitor_card .box {
    grid-template-columns: 1fr auto auto;
  }
}
@media screen and (max-width: 639px) {
  a.exhibitor_card .box {
    grid-template-columns: 1fr auto;
    padding: 20px;
  }
}
a.exhibitor_card .box::before {
  transition: background-color 0.3s;
  content: "";
  display: inline-block;
  background-color: var(--mcs_gray95);
  border-radius: 8px;
  position: absolute;
  inset: 0;
}
a.exhibitor_card .box .text_wrap {
  padding-bottom: 10px;
  position: relative;
}
@media screen and (max-width: 1039px) {
  a.exhibitor_card .box .text_wrap {
    grid-column: 1/3;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 839px) {
  a.exhibitor_card .box .text_wrap {
    grid-column: auto;
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 639px) {
  a.exhibitor_card .box .text_wrap {
    grid-column: 1/3;
    padding-bottom: 0;
  }
}
a.exhibitor_card .box .text_wrap .badge {
  display: flex;
  align-items: center;
  column-gap: 12px;
  margin-left: -25px;
  width: 120px;
  height: 20px;
  position: relative;
}
@media screen and (max-width: 1239px) {
  a.exhibitor_card .box .text_wrap .badge {
    margin-left: -22px;
  }
}
@media screen and (max-width: 639px) {
  a.exhibitor_card .box .text_wrap .badge {
    margin-left: -20px;
    width: 130px;
    height: 30px;
  }
}
a.exhibitor_card .box .text_wrap .badge::before {
  content: "";
  display: inline-block;
  background: var(--grad_mcs);
  border-radius: 0 10px 10px 0;
  position: absolute;
  inset: 0;
}
@media screen and (max-width: 639px) {
  a.exhibitor_card .box .text_wrap .badge::before {
    border-radius: 0 15px 15px 0;
  }
}
a.exhibitor_card .box .text_wrap .badge .label {
  padding-left: 24px;
  font-size: 11px;
  line-height: 1em;
  letter-spacing: 0em;
  font-weight: 500;
}
a.exhibitor_card .box .text_wrap .badge .label span {
  font-weight: 500;
}
a.exhibitor_card .box .text_wrap .badge .label {
  color: var(--c-white);
  translate: 0 -0.03em;
  position: relative;
}
@media screen and (max-width: 639px) {
  a.exhibitor_card .box .text_wrap .badge .label {
    font-size: 13px;
  }
}
a.exhibitor_card .box .text_wrap .badge .num {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  line-height: 1em;
  letter-spacing: 0.05em;
  font-weight: 500;
}
a.exhibitor_card .box .text_wrap .badge .num span {
  font-weight: 500;
}
a.exhibitor_card .box .text_wrap .badge .num {
  color: var(--c-white);
  translate: 0 0.03em;
  position: relative;
}
@media screen and (max-width: 639px) {
  a.exhibitor_card .box .text_wrap .badge .num {
    font-size: 14px;
  }
}
a.exhibitor_card .box .text_wrap .name {
  padding-top: 20px;
}
a.exhibitor_card .box .text_wrap .name h3 {
  transition: color 0.3s;
  margin-block: calc((1em - 1lh) / 2);
  font-size: 20px;
  line-height: 1.4em;
  letter-spacing: 0em;
  font-weight: 600;
}
a.exhibitor_card .box .text_wrap .name h3 span {
  font-weight: 600;
}
@media screen and (max-width: 1239px) {
  a.exhibitor_card .box .text_wrap .name h3 {
    font-size: 19px;
  }
}
@media screen and (max-width: 639px) {
  a.exhibitor_card .box .text_wrap .name h3 {
    font-size: 18px;
  }
}
a.exhibitor_card .box .text_wrap .line {
  margin-top: 15px;
  width: 100%;
  height: 1px;
  background-color: var(--mcs_gray80);
}
a.exhibitor_card .box .text_wrap .head {
  margin-top: 15px;
  overflow: hidden;
}
a.exhibitor_card .box .text_wrap .head h4 {
  margin-block: calc((1em - 1lh) / 2);
  font-size: 13px;
  line-height: 1.4em;
  letter-spacing: 0em;
  font-weight: 500;
}
a.exhibitor_card .box .text_wrap .head h4 span {
  font-weight: 500;
}
a.exhibitor_card .box .text_wrap .head h4 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 639px) {
  a.exhibitor_card .box .text_wrap .head h4 {
    font-size: 14px;
    -webkit-line-clamp: 2;
  }
}
a.exhibitor_card .box .logo {
  align-self: end;
  margin-left: 45px;
  padding: 15px;
  width: 140px;
  height: auto;
  aspect-ratio: 140/100;
  position: relative;
}
@media screen and (max-width: 1239px) {
  a.exhibitor_card .box .logo {
    margin-left: 35px;
    width: 125px;
  }
}
@media screen and (max-width: 1039px) {
  a.exhibitor_card .box .logo {
    margin-top: 20px;
    margin-left: 0;
  }
}
@media screen and (max-width: 839px) {
  a.exhibitor_card .box .logo {
    margin-top: 0;
    margin-left: 30px;
  }
}
@media screen and (max-width: 639px) {
  a.exhibitor_card .box .logo {
    margin-top: 20px;
    margin-left: 0;
    width: 110px;
  }
}
a.exhibitor_card .box .logo::before {
  content: "";
  display: inline-block;
  background-color: var(--c-white);
  position: absolute;
  inset: 0;
}
a.exhibitor_card .box .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
}
a.exhibitor_card .box .arrow {
  align-self: end;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 25px;
  width: 25px;
  height: 25px;
  position: relative;
}
@media screen and (max-width: 1239px) {
  a.exhibitor_card .box .arrow {
    margin-left: 20px;
  }
}
@media screen and (max-width: 1039px) {
  a.exhibitor_card .box .arrow {
    justify-self: end;
    margin-top: 20px;
  }
}
@media screen and (max-width: 839px) {
  a.exhibitor_card .box .arrow {
    justify-self: start;
    margin-top: 0;
  }
}
@media screen and (max-width: 639px) {
  a.exhibitor_card .box .arrow {
    justify-self: end;
    margin-top: 20px;
  }
}
a.exhibitor_card .box .arrow::before, a.exhibitor_card .box .arrow::after {
  content: "";
  display: inline-block;
  border-radius: 50%;
  position: absolute;
  inset: 0;
}
a.exhibitor_card .box .arrow::before {
  background: var(--grad_mcs);
}
a.exhibitor_card .box .arrow::after {
  transition: opacity 0.3s;
  background-color: var(--mcs_gray95);
  inset: 1.5px;
}
a.exhibitor_card .box .arrow svg {
  transition: stroke 0.3s;
  fill: none;
  stroke-width: 1.5px;
  stroke: url(#mcs_grad_arrow);
  position: relative;
  z-index: 1;
}
a.exhibitor_card .tag_list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  position: relative;
}

@media screen and (min-width: 1239px) {
  a:hover .box::before {
    background-color: var(--mcs_gray92);
  }
}
@media screen and (min-width: 1239px) {
  a:hover .box .arrow::after {
    opacity: 0;
  }
}
@media screen and (min-width: 1239px) {
  a:hover .box .arrow svg .polyline_wrap {
    stroke: var(--mcs_gray92);
  }
}

a.exhibitor_card.is_hidden {
  display: none;
}

a.exhibitor_card.inactive {
  pointer-events: none;
}
a.exhibitor_card.inactive .box .arrow::before {
  background: var(--mcs_gray80);
}
a.exhibitor_card.inactive .box .arrow svg {
  stroke: var(--mcs_gray80);
}:root {
  --mcs_red: hsla(358, 79%, 43%, 1);
  --mcs_blk: hsla(0, 0%, 0%, 1);
  --mcs_gray00: hsla(0, 0%, 53%, 1);
  --mcs_gray01: hsla(0, 0%, 95%, 1);
  --mcs_gray03: hsla(0, 0%, 93%, 1);
  --mcs_gray97: hsla(0, 0%, 97%, 1);
  --mcs_gray95: hsla(0, 0%, 95%, 1);
  --mcs_gray93: hsla(0, 0%, 93%, 1);
  --mcs_gray92: hsla(0, 0%, 92%, 1);
  --mcs_gray90: hsla(0, 0%, 90%, 1);
  --mcs_gray85: hsla(0, 0%, 85%, 1);
  --mcs_gray80: hsla(0, 0%, 80%, 1);
  --mcs_gray75: hsla(0, 0%, 75%, 1);
  --mcs_gray65: hsla(0, 0%, 65%, 1);
  --mcs_gray30: hsla(0, 0%, 30%, 1);
  --mcs_purple: hsla(294, 63%, 44%, 1);
  --grad_visit: linear-gradient(90deg, hsla(0, 88%, 54%, 1) 0%, hsla(219, 73%, 56%, 1) 100%);
  --grad_seminar: linear-gradient(90deg, hsla(0, 88%, 54%, 1) 0%, hsla(186, 85%, 47%, 1) 100%);
  --grad_mypage: linear-gradient(90deg, hsla(0, 88%, 54%, 1) 0%, hsla(44, 94%, 52%, 1) 100%);
  --grad_redBlue: linear-gradient(90deg, hsla(0, 88%, 54%, 1) 0%, hsla(219, 73%, 56%, 1) 100%);
  --grad_redGreen: linear-gradient(90deg, hsla(0, 88%, 54%, 1) 0%, hsla(186, 85%, 47%, 1) 100%);
  --grad_redYellow: linear-gradient(90deg, hsla(0, 88%, 54%, 1) 0%, hsla(44, 94%, 52%, 1) 100%);
  --grad_red: linear-gradient(90deg, hsla(0, 88%, 54%, 1) 0%, hsla(0, 88%, 54%, 1) 100%);
  --grad_mcs: linear-gradient(90deg, hsla(294, 43%, 40%, 1) 0%, hsla(359, 79%, 56%, 1) 50%, hsla(44, 95%, 53%, 1) 100%);
  --grad_mcs_v: linear-gradient(180deg, hsla(294, 43%, 40%, 1) 0%, hsla(359, 79%, 56%, 1) 50%, hsla(44, 95%, 53%, 1) 100%);
  --navBar: hsla(0, 100%, 50%, 1);
  --num_purple: hsla(281, 85%, 60%, 1);
  --num_red: hsla(0, 100%, 50%, 1);
  --num_yellow: hsla(38, 100%, 50%, 1);
  --num_lightblue: hsla(194, 100%, 45%, 1);
  --num_green: hsla(166, 90%, 40%, 1);
  --num_blue: hsla(219, 73%, 62%, 1);
  --seminar_K: hsla(0, 0%, 30%, 1);
  --seminar_TK: hsla(219, 73%, 62%, 1);
  --seminar_T: hsla(38, 100%, 50%, 1);
  --seminar_S: hsla(194, 100%, 45%, 1);
  --seminar_E: hsla(281, 85%, 60%, 1);
  --seminar_J: hsla(0, 100%, 50%, 1);
  --seminar_G: hsla(166, 90%, 40%, 1);
  --num_seminar_B: hsla(59, 63%, 44%, 1);
  --c-Black: hsla(0, 0%, 0%, 1);
  --c-black: hsla(0, 0%, 0%, 1);
  --c-White: hsla(0, 0%, 100%, 1);
  --c-white: hsla(0, 0%, 100%, 1);
  --c-dummy: hsl(0 0% 47.1%);
  --easeOutQuad: cubic-bezier(0.5, 1, 0.89, 1);
  --easeOutCubic: cubic-bezier(0.33, 1, 0.68, 1);
  --easeOutQuart: cubic-bezier(0.25, 1, 0.5, 1);
  --easeOutQuint: cubic-bezier(0.22, 1, 0.36, 1);
  --easeOutExpo: cubic-bezier(0.16, 1, 0.3, 1);
  --easeInOutQuad: cubic-bezier(0.45, 0, 0.55, 1);
  --easeInOutCubic: cubic-bezier(0.65, 0, 0.35, 1);
  --easeInOutQuart: cubic-bezier(0.76, 0, 0.24, 1);
  --easeInOutQuint: cubic-bezier(0.83, 0, 0.17, 1);
  --easeInOutExpo: cubic-bezier(0.87, 0, 0.13, 1);
  --easeInQuad: cubic-bezier(0.11, 0, 0.5, 0);
  --easeInCubic: cubic-bezier(0.32, 0, 0.67, 0);
  --easeInQuart: cubic-bezier(0.5, 0, 0.75, 0);
  --easeInQuint: cubic-bezier(0.64, 0, 0.78, 0);
  --easeInExpo: cubic-bezier(0.7, 0, 0.84, 0);
  --fadeInLength: 30px;
  --fadeInOpacityDuration: 0.8s;
  --fadeInDuration: 0.8s;
}

.exhibitor_modal_item {
  display: none;
  padding: 60px 50px;
  margin-inline: auto;
  width: 960px;
  position: relative;
}
@media screen and (max-width: 1239px) {
  .exhibitor_modal_item {
    padding: 60px 4vw;
    width: 84vw;
  }
}
@media screen and (max-width: 839px) {
  .exhibitor_modal_item {
    padding: 50px 4vw;
    width: 92vw;
  }
}
.exhibitor_modal_item .bg {
  transition: background-color 0.3s;
  background-color: var(--c-white);
  position: absolute;
  inset: 0;
}
.exhibitor_modal_item .bg::before, .exhibitor_modal_item .bg::after {
  content: "";
  display: inline-block;
  height: 8px;
  background: var(--grad_mcs);
  position: absolute;
  left: 0;
  right: 0;
}
@media screen and (max-width: 1239px) {
  .exhibitor_modal_item .bg::before, .exhibitor_modal_item .bg::after {
    height: 6px;
  }
}
@media screen and (max-width: 639px) {
  .exhibitor_modal_item .bg::before, .exhibitor_modal_item .bg::after {
    height: 4px;
  }
}
.exhibitor_modal_item .bg::before {
  top: 0;
}
.exhibitor_modal_item .bg::after {
  bottom: 0;
}
.exhibitor_modal_item .intro {
  display: grid;
  grid-template-columns: auto 1fr auto;
  column-gap: 40px;
  position: relative;
}
@media screen and (max-width: 1239px) {
  .exhibitor_modal_item .intro {
    column-gap: 30px;
  }
}
@media screen and (max-width: 839px) {
  .exhibitor_modal_item .intro {
    grid-template-columns: 1fr;
  }
}
.exhibitor_modal_item .intro .badge {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 10px;
  width: 128px;
  height: 80px;
  position: relative;
}
@media screen and (max-width: 1239px) {
  .exhibitor_modal_item .intro .badge {
    row-gap: 8px;
    width: 110px;
    height: 60px;
  }
}
@media screen and (max-width: 839px) {
  .exhibitor_modal_item .intro .badge {
    flex-direction: row;
    column-gap: 10px;
    width: 100%;
    height: 40px;
  }
}
.exhibitor_modal_item .intro .badge::before {
  content: "";
  display: inline-block;
  background: var(--grad_mcs);
  position: absolute;
  inset: 0;
}
.exhibitor_modal_item .intro .badge .label {
  line-height: 1em;
  letter-spacing: 0em;
  font-weight: 600;
}
.exhibitor_modal_item .intro .badge .label span {
  font-weight: 600;
}
.exhibitor_modal_item .intro .badge .label {
  color: var(--c-white);
  position: relative;
}
.exhibitor_modal_item .intro .badge .label_seminar {
  font-size: 15px;
}
@media screen and (max-width: 1239px) {
  .exhibitor_modal_item .intro .badge .label_seminar {
    font-size: 14px;
  }
}
@media screen and (max-width: 839px) {
  .exhibitor_modal_item .intro .badge .label_seminar {
    font-size: 18px;
  }
}
.exhibitor_modal_item .intro .badge .label_booth {
  font-size: 14px;
}
@media screen and (max-width: 1239px) {
  .exhibitor_modal_item .intro .badge .label_booth {
    font-size: 13px;
  }
}
@media screen and (max-width: 839px) {
  .exhibitor_modal_item .intro .badge .label_booth {
    font-size: 15px;
  }
}
.exhibitor_modal_item .intro .badge .num {
  font-family: "Poppins", sans-serif;
  margin-right: -0.1em;
  font-size: 24px;
  line-height: 1em;
  letter-spacing: 0.1em;
  font-weight: 400;
}
.exhibitor_modal_item .intro .badge .num span {
  font-weight: 400;
}
.exhibitor_modal_item .intro .badge .num {
  color: var(--c-white);
  position: relative;
}
@media screen and (max-width: 1239px) {
  .exhibitor_modal_item .intro .badge .num {
    font-size: 20px;
  }
}
@media screen and (max-width: 839px) {
  .exhibitor_modal_item .intro .badge .num {
    font-size: 18px;
    font-weight: 500;
  }
  .exhibitor_modal_item .intro .badge .num span {
    font-weight: 500;
  }
  .exhibitor_modal_item .intro .badge .num {
    translate: 0 0.07em;
  }
}
.exhibitor_modal_item .intro .name_wrap .name h3 {
  margin-block: calc((1em - 1lh) / 2);
  font-size: 24px;
  line-height: 1.4em;
  letter-spacing: 0em;
  font-weight: 600;
}
.exhibitor_modal_item .intro .name_wrap .name h3 span {
  font-weight: 600;
}
@media screen and (max-width: 1239px) {
  .exhibitor_modal_item .intro .name_wrap .name h3 {
    font-size: 21px;
  }
}
@media screen and (max-width: 839px) {
  .exhibitor_modal_item .intro .name_wrap .name h3 {
    padding-top: 25px;
  }
}
@media screen and (max-width: 639px) {
  .exhibitor_modal_item .intro .name_wrap .name h3 {
    padding-top: 20px;
    font-size: 18px;
  }
}
.exhibitor_modal_item .intro .name_wrap .name_en {
  padding-top: 20px;
}
@media screen and (max-width: 1239px) {
  .exhibitor_modal_item .intro .name_wrap .name_en {
    padding-top: 17px;
  }
}
@media screen and (max-width: 639px) {
  .exhibitor_modal_item .intro .name_wrap .name_en {
    padding-top: 15px;
  }
}
.exhibitor_modal_item .intro .name_wrap .name_en h5 {
  margin-block: calc((1em - 1lh) / 2);
  font-size: 14px;
  line-height: 1.4em;
  letter-spacing: 0em;
  font-weight: 500;
}
.exhibitor_modal_item .intro .name_wrap .name_en h5 span {
  font-weight: 500;
}
@media screen and (max-width: 1239px) {
  .exhibitor_modal_item .intro .name_wrap .name_en h5 {
    font-size: 12px;
  }
}
@media screen and (max-width: 639px) {
  .exhibitor_modal_item .intro .name_wrap .name_en h5 {
    font-size: 10px;
  }
}
.exhibitor_modal_item .intro .name_wrap .tag_list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 35px;
  position: relative;
}
@media screen and (max-width: 1239px) {
  .exhibitor_modal_item .intro .name_wrap .tag_list {
    margin-top: 30px;
  }
}
@media screen and (max-width: 639px) {
  .exhibitor_modal_item .intro .name_wrap .tag_list {
    margin-top: 25px;
  }
}
.exhibitor_modal_item .intro .logo {
  padding: 20px;
  width: 240px;
  height: auto;
  aspect-ratio: 240/160;
  position: relative;
}
@media screen and (max-width: 1239px) {
  .exhibitor_modal_item .intro .logo {
    padding: 18px;
    width: 200px;
  }
}
@media screen and (max-width: 1039px) {
  .exhibitor_modal_item .intro .logo {
    width: 160px;
  }
}
@media screen and (max-width: 839px) {
  .exhibitor_modal_item .intro .logo {
    margin-top: 25px;
    padding: 16px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 639px) {
  .exhibitor_modal_item .intro .logo {
    margin-top: 20px;
    padding: 14px;
    width: 120px;
  }
}
.exhibitor_modal_item .intro .logo::before {
  content: "";
  display: inline-block;
  background-color: var(--mcs_gray97);
  position: absolute;
  inset: 0;
}
.exhibitor_modal_item .intro .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  position: relative;
}
.exhibitor_modal_item .box {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 40px;
  margin-top: 60px;
  position: relative;
}
@media screen and (max-width: 1239px) {
  .exhibitor_modal_item .box {
    column-gap: 30px;
    margin-top: 50px;
  }
}
@media screen and (max-width: 839px) {
  .exhibitor_modal_item .box {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 639px) {
  .exhibitor_modal_item .box {
    margin-top: 40px;
  }
}
.exhibitor_modal_item .box .box_title {
  align-self: start;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
  width: 128px;
  position: relative;
}
@media screen and (max-width: 1239px) {
  .exhibitor_modal_item .box .box_title {
    padding: 25px 0;
    width: 110px;
  }
}
@media screen and (max-width: 839px) {
  .exhibitor_modal_item .box .box_title {
    padding: 20px 0;
    width: 100%;
  }
}
.exhibitor_modal_item .box .box_title::before, .exhibitor_modal_item .box .box_title::after {
  content: "";
  display: inline-block;
  height: 1px;
  background: var(--grad_mcs);
  position: absolute;
  left: 0;
  right: 0;
}
@media screen and (max-width: 839px) {
  .exhibitor_modal_item .box .box_title::before, .exhibitor_modal_item .box .box_title::after {
    height: 2px;
  }
}
.exhibitor_modal_item .box .box_title::before {
  top: 0;
}
.exhibitor_modal_item .box .box_title::after {
  bottom: 0;
}
.exhibitor_modal_item .box .box_title h3 {
  font-size: 16px;
  line-height: 1em;
  letter-spacing: 0em;
  font-weight: 600;
}
.exhibitor_modal_item .box .box_title h3 span {
  font-weight: 600;
}
.exhibitor_modal_item .box .box_title h3 {
  translate: 0 -0.05em;
  position: relative;
}
@media screen and (max-width: 839px) {
  .exhibitor_modal_item .box.box_highlight .box_content {
    padding-top: 25px;
  }
}
@media screen and (max-width: 639px) {
  .exhibitor_modal_item .box.box_highlight .box_content {
    padding-top: 20px;
  }
}
.exhibitor_modal_item .box.box_highlight .box_content .head h4 {
  margin-block: calc((1em - 1lh) / 2);
  font-size: 16px;
  line-height: 1.4em;
  letter-spacing: 0em;
  font-weight: 600;
}
.exhibitor_modal_item .box.box_highlight .box_content .head h4 span {
  font-weight: 600;
}
.exhibitor_modal_item .box.box_highlight .box_content .description {
  padding-top: 30px;
}
@media screen and (max-width: 1239px) {
  .exhibitor_modal_item .box.box_highlight .box_content .description {
    padding-top: 25px;
  }
}
@media screen and (max-width: 639px) {
  .exhibitor_modal_item .box.box_highlight .box_content .description {
    padding-top: 20px;
  }
}
.exhibitor_modal_item .box.box_highlight .box_content .description p {
  margin-block: calc((1em - 1lh) / 2);
  font-size: 14px;
  line-height: 1.7em;
  letter-spacing: 0em;
  font-weight: 400;
}
.exhibitor_modal_item .box.box_highlight .box_content .description p span {
  font-weight: 400;
}
.exhibitor_modal_item .box.box_highlight .box_content .head_en {
  padding-top: 60px;
}
@media screen and (max-width: 1239px) {
  .exhibitor_modal_item .box.box_highlight .box_content .head_en {
    padding-top: 50px;
  }
}
@media screen and (max-width: 639px) {
  .exhibitor_modal_item .box.box_highlight .box_content .head_en {
    padding-top: 40px;
  }
}
.exhibitor_modal_item .box.box_photo {
  grid-template-columns: 1fr;
  margin-left: 168px;
}
@media screen and (max-width: 1239px) {
  .exhibitor_modal_item .box.box_photo {
    margin-left: 140px;
  }
}
@media screen and (max-width: 839px) {
  .exhibitor_modal_item .box.box_photo {
    margin-left: 0;
  }
}
.exhibitor_modal_item .box.box_photo .photo {
  max-width: 100%;
  width: auto;
  height: auto;
}
@media screen and (max-width: 839px) {
  .exhibitor_modal_item .box.box_photo .photo {
    justify-self: center;
  }
}
.exhibitor_modal_item .box.box_photo .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.exhibitor_modal_item .box.box_photo .photo_portrait {
  width: 40%;
}
@media screen and (max-width: 1039px) {
  .exhibitor_modal_item .box.box_photo .photo_portrait {
    width: 50%;
  }
}
@media screen and (max-width: 639px) {
  .exhibitor_modal_item .box.box_photo .photo_portrait {
    width: 60%;
  }
}
.exhibitor_modal_item .box.box_photo .photo_square {
  width: 50%;
}
@media screen and (max-width: 1039px) {
  .exhibitor_modal_item .box.box_photo .photo_square {
    width: 65%;
  }
}
@media screen and (max-width: 639px) {
  .exhibitor_modal_item .box.box_photo .photo_square {
    width: 80%;
  }
}
.exhibitor_modal_item .box.box_photo .photo_landscape {
  width: 60%;
}
@media screen and (max-width: 1039px) {
  .exhibitor_modal_item .box.box_photo .photo_landscape {
    width: 80%;
  }
}
@media screen and (max-width: 639px) {
  .exhibitor_modal_item .box.box_photo .photo_landscape {
    width: 100%;
  }
}
.exhibitor_modal_item .box.box_photo .photo_portrait_L {
  width: 60%;
}
@media screen and (max-width: 1039px) {
  .exhibitor_modal_item .box.box_photo .photo_portrait_L {
    width: 80%;
  }
}
@media screen and (max-width: 639px) {
  .exhibitor_modal_item .box.box_photo .photo_portrait_L {
    width: 100%;
  }
}
.exhibitor_modal_item .box.box_info .box_content .info_list .info_item {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 25px;
}
@media screen and (max-width: 1239px) {
  .exhibitor_modal_item .box.box_info .box_content .info_list .info_item {
    column-gap: 20px;
  }
}
@media screen and (max-width: 639px) {
  .exhibitor_modal_item .box.box_info .box_content .info_list .info_item {
    grid-template-columns: 1fr;
  }
}
.exhibitor_modal_item .box.box_info .box_content .info_list .info_item .item_title,
.exhibitor_modal_item .box.box_info .box_content .info_list .info_item .item_content {
  position: relative;
}
.exhibitor_modal_item .box.box_info .box_content .info_list .info_item .item_title::after,
.exhibitor_modal_item .box.box_info .box_content .info_list .info_item .item_content::after {
  content: "";
  display: inline-block;
  height: 1px;
  background-color: var(--mcs_gray80);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.exhibitor_modal_item .box.box_info .box_content .info_list .info_item .item_title {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  width: 120px;
}
@media screen and (max-width: 1239px) {
  .exhibitor_modal_item .box.box_info .box_content .info_list .info_item .item_title {
    width: 110px;
  }
}
@media screen and (max-width: 839px) {
  .exhibitor_modal_item .box.box_info .box_content .info_list .info_item .item_title {
    padding: 20px 0;
  }
}
@media screen and (max-width: 639px) {
  .exhibitor_modal_item .box.box_info .box_content .info_list .info_item .item_title {
    padding: 20px 0 0;
    width: 100%;
  }
}
.exhibitor_modal_item .box.box_info .box_content .info_list .info_item .item_title .label {
  margin-block: calc((1em - 1lh) / 2);
  font-size: 14px;
  line-height: 1.4em;
  letter-spacing: 0em;
  font-weight: 600;
}
.exhibitor_modal_item .box.box_info .box_content .info_list .info_item .item_title .label span {
  font-weight: 600;
}
@media screen and (max-width: 639px) {
  .exhibitor_modal_item .box.box_info .box_content .info_list .info_item .item_title .label {
    font-size: 16px;
  }
}
@media screen and (max-width: 639px) {
  .exhibitor_modal_item .box.box_info .box_content .info_list .info_item .item_title::after {
    display: none;
  }
}
.exhibitor_modal_item .box.box_info .box_content .info_list .info_item .item_content {
  padding: 20px 25px;
}
@media screen and (max-width: 1239px) {
  .exhibitor_modal_item .box.box_info .box_content .info_list .info_item .item_content {
    padding: 20px 20px;
  }
}
@media screen and (max-width: 639px) {
  .exhibitor_modal_item .box.box_info .box_content .info_list .info_item .item_content {
    padding: 15px 0 20px;
  }
}
.exhibitor_modal_item .box.box_info .box_content .info_list .info_item .item_content .content {
  margin-block: calc((1em - 1lh) / 2);
  font-size: 14px;
  line-height: 1.4em;
  letter-spacing: 0em;
  font-weight: 500;
}
.exhibitor_modal_item .box.box_info .box_content .info_list .info_item .item_content .content span {
  font-weight: 500;
}
.exhibitor_modal_item .box.box_info .box_content .info_list .info_item .item_content .content {
  overflow-wrap: anywhere;
}
@media screen and (max-width: 639px) {
  .exhibitor_modal_item .box.box_info .box_content .info_list .info_item .item_content .content {
    text-align: center;
  }
}
.exhibitor_modal_item .box.box_info .box_content .info_list .info_item .item_content .content a {
  transition: color 0.3s;
}
@media screen and (min-width: 1239px) {
  .exhibitor_modal_item .box.box_info .box_content .info_list .info_item .item_content .content a:hover {
    color: var(--mcs_red);
  }
}
.exhibitor_modal_item .box.box_info .box_content .info_list .info_item:nth-of-type(1) .item_title::before,
.exhibitor_modal_item .box.box_info .box_content .info_list .info_item:nth-of-type(1) .item_content::before {
  content: "";
  display: inline-block;
  height: 1px;
  background-color: var(--mcs_gray80);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
}
@media screen and (max-width: 839px) {
  .exhibitor_modal_item .box.box_info .box_content .info_list .info_item:nth-of-type(1) .item_title::before,
  .exhibitor_modal_item .box.box_info .box_content .info_list .info_item:nth-of-type(1) .item_content::before {
    display: none;
  }
}

.exhibitor_modal_item.active {
  display: block;
}:root {
  --mcs_red: hsla(358, 79%, 43%, 1);
  --mcs_blk: hsla(0, 0%, 0%, 1);
  --mcs_gray00: hsla(0, 0%, 53%, 1);
  --mcs_gray01: hsla(0, 0%, 95%, 1);
  --mcs_gray03: hsla(0, 0%, 93%, 1);
  --mcs_gray97: hsla(0, 0%, 97%, 1);
  --mcs_gray95: hsla(0, 0%, 95%, 1);
  --mcs_gray93: hsla(0, 0%, 93%, 1);
  --mcs_gray92: hsla(0, 0%, 92%, 1);
  --mcs_gray90: hsla(0, 0%, 90%, 1);
  --mcs_gray85: hsla(0, 0%, 85%, 1);
  --mcs_gray80: hsla(0, 0%, 80%, 1);
  --mcs_gray75: hsla(0, 0%, 75%, 1);
  --mcs_gray65: hsla(0, 0%, 65%, 1);
  --mcs_gray30: hsla(0, 0%, 30%, 1);
  --mcs_purple: hsla(294, 63%, 44%, 1);
  --grad_visit: linear-gradient(90deg, hsla(0, 88%, 54%, 1) 0%, hsla(219, 73%, 56%, 1) 100%);
  --grad_seminar: linear-gradient(90deg, hsla(0, 88%, 54%, 1) 0%, hsla(186, 85%, 47%, 1) 100%);
  --grad_mypage: linear-gradient(90deg, hsla(0, 88%, 54%, 1) 0%, hsla(44, 94%, 52%, 1) 100%);
  --grad_redBlue: linear-gradient(90deg, hsla(0, 88%, 54%, 1) 0%, hsla(219, 73%, 56%, 1) 100%);
  --grad_redGreen: linear-gradient(90deg, hsla(0, 88%, 54%, 1) 0%, hsla(186, 85%, 47%, 1) 100%);
  --grad_redYellow: linear-gradient(90deg, hsla(0, 88%, 54%, 1) 0%, hsla(44, 94%, 52%, 1) 100%);
  --grad_red: linear-gradient(90deg, hsla(0, 88%, 54%, 1) 0%, hsla(0, 88%, 54%, 1) 100%);
  --grad_mcs: linear-gradient(90deg, hsla(294, 43%, 40%, 1) 0%, hsla(359, 79%, 56%, 1) 50%, hsla(44, 95%, 53%, 1) 100%);
  --grad_mcs_v: linear-gradient(180deg, hsla(294, 43%, 40%, 1) 0%, hsla(359, 79%, 56%, 1) 50%, hsla(44, 95%, 53%, 1) 100%);
  --navBar: hsla(0, 100%, 50%, 1);
  --num_purple: hsla(281, 85%, 60%, 1);
  --num_red: hsla(0, 100%, 50%, 1);
  --num_yellow: hsla(38, 100%, 50%, 1);
  --num_lightblue: hsla(194, 100%, 45%, 1);
  --num_green: hsla(166, 90%, 40%, 1);
  --num_blue: hsla(219, 73%, 62%, 1);
  --seminar_K: hsla(0, 0%, 30%, 1);
  --seminar_TK: hsla(219, 73%, 62%, 1);
  --seminar_T: hsla(38, 100%, 50%, 1);
  --seminar_S: hsla(194, 100%, 45%, 1);
  --seminar_E: hsla(281, 85%, 60%, 1);
  --seminar_J: hsla(0, 100%, 50%, 1);
  --seminar_G: hsla(166, 90%, 40%, 1);
  --num_seminar_B: hsla(59, 63%, 44%, 1);
  --c-Black: hsla(0, 0%, 0%, 1);
  --c-black: hsla(0, 0%, 0%, 1);
  --c-White: hsla(0, 0%, 100%, 1);
  --c-white: hsla(0, 0%, 100%, 1);
  --c-dummy: hsl(0 0% 47.1%);
  --easeOutQuad: cubic-bezier(0.5, 1, 0.89, 1);
  --easeOutCubic: cubic-bezier(0.33, 1, 0.68, 1);
  --easeOutQuart: cubic-bezier(0.25, 1, 0.5, 1);
  --easeOutQuint: cubic-bezier(0.22, 1, 0.36, 1);
  --easeOutExpo: cubic-bezier(0.16, 1, 0.3, 1);
  --easeInOutQuad: cubic-bezier(0.45, 0, 0.55, 1);
  --easeInOutCubic: cubic-bezier(0.65, 0, 0.35, 1);
  --easeInOutQuart: cubic-bezier(0.76, 0, 0.24, 1);
  --easeInOutQuint: cubic-bezier(0.83, 0, 0.17, 1);
  --easeInOutExpo: cubic-bezier(0.87, 0, 0.13, 1);
  --easeInQuad: cubic-bezier(0.11, 0, 0.5, 0);
  --easeInCubic: cubic-bezier(0.32, 0, 0.67, 0);
  --easeInQuart: cubic-bezier(0.5, 0, 0.75, 0);
  --easeInQuint: cubic-bezier(0.64, 0, 0.78, 0);
  --easeInExpo: cubic-bezier(0.7, 0, 0.84, 0);
  --fadeInLength: 30px;
  --fadeInOpacityDuration: 0.8s;
  --fadeInDuration: 0.8s;
}

.news_modal_item {
  display: none;
  margin-inline: auto;
  width: 960px;
  padding: 60px 100px 90px;
  position: relative;
}
@media screen and (max-width: 1239px) {
  .news_modal_item {
    padding: 60px 4vw;
    width: 84vw;
  }
}
@media screen and (max-width: 839px) {
  .news_modal_item {
    padding: 50px 4vw;
    width: 92vw;
  }
}
.news_modal_item .bg {
  background-color: var(--c-white);
  position: absolute;
  inset: 0;
}
.news_modal_item .bg::before, .news_modal_item .bg::after {
  content: "";
  display: inline-block;
  height: 8px;
  background: var(--grad_mcs);
  position: absolute;
  left: 0;
  right: 0;
}
@media screen and (max-width: 1239px) {
  .news_modal_item .bg::before, .news_modal_item .bg::after {
    height: 6px;
  }
}
@media screen and (max-width: 639px) {
  .news_modal_item .bg::before, .news_modal_item .bg::after {
    height: 4px;
  }
}
.news_modal_item .bg::before {
  top: 0;
}
.news_modal_item .bg::after {
  bottom: 0;
}
.news_modal_item .intro {
  display: grid;
  grid-template-columns: auto 1fr;
  row-gap: 20px;
  position: relative;
}
@media screen and (max-width: 1239px) {
  .news_modal_item .intro {
    row-gap: 17px;
  }
}
@media screen and (max-width: 639px) {
  .news_modal_item .intro {
    row-gap: 15px;
  }
}
.news_modal_item .intro .deco {
  grid-column: 1/3;
  position: relative;
}
@media screen and (max-width: 839px) {
  .news_modal_item .intro .deco {
    grid-column: 1;
  }
}
.news_modal_item .intro .deco .label {
  font-size: 14px;
  line-height: 1em;
  letter-spacing: 0em;
  font-weight: 500;
}
.news_modal_item .intro .deco .label span {
  font-weight: 500;
}
@media screen and (max-width: 839px) {
  .news_modal_item .intro .deco .label {
    font-size: 16px;
    font-weight: 600;
  }
  .news_modal_item .intro .deco .label span {
    font-weight: 600;
  }
}
.news_modal_item .intro .badge {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 10px;
  width: 128px;
  height: 80px;
  position: relative;
}
@media screen and (max-width: 1239px) {
  .news_modal_item .intro .badge {
    row-gap: 8px;
    width: 110px;
    height: 60px;
  }
}
@media screen and (max-width: 839px) {
  .news_modal_item .intro .badge {
    grid-column: 1/3;
    flex-direction: row;
    column-gap: 10px;
    width: 100%;
    height: 40px;
  }
}
.news_modal_item .intro .badge::before {
  content: "";
  display: inline-block;
  background: var(--grad_mcs);
  position: absolute;
  inset: 0;
}
.news_modal_item .intro .badge .label {
  font-size: 14px;
  line-height: 1em;
  letter-spacing: 0em;
  font-weight: 600;
}
.news_modal_item .intro .badge .label span {
  font-weight: 600;
}
.news_modal_item .intro .badge .label {
  color: var(--c-white);
  position: relative;
}
@media screen and (max-width: 1239px) {
  .news_modal_item .intro .badge .label {
    font-size: 13px;
  }
}
@media screen and (max-width: 839px) {
  .news_modal_item .intro .badge .label {
    font-size: 15px;
  }
}
.news_modal_item .intro .badge .num {
  font-family: "Poppins", sans-serif;
  margin-right: -0.1em;
  font-size: 24px;
  line-height: 1em;
  letter-spacing: 0.1em;
  font-weight: 400;
}
.news_modal_item .intro .badge .num span {
  font-weight: 400;
}
.news_modal_item .intro .badge .num {
  color: var(--c-white);
  position: relative;
}
@media screen and (max-width: 1239px) {
  .news_modal_item .intro .badge .num {
    font-size: 20px;
  }
}
@media screen and (max-width: 839px) {
  .news_modal_item .intro .badge .num {
    font-size: 18px;
    font-weight: 500;
  }
  .news_modal_item .intro .badge .num span {
    font-weight: 500;
  }
  .news_modal_item .intro .badge .num {
    translate: 0 0.07em;
  }
}
.news_modal_item .intro .date {
  justify-self: end;
  margin-right: -0.05em;
  font-size: 12px;
  line-height: 1em;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.news_modal_item .intro .date span {
  font-weight: 500;
}
.news_modal_item .intro .date {
  color: var(--mcs_gray00);
}
@media screen and (max-width: 839px) {
  .news_modal_item .intro .date {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
  }
}
.news_modal_item .name {
  padding-top: 35px;
  position: relative;
}
@media screen and (max-width: 1239px) {
  .news_modal_item .name {
    padding-top: 30px;
  }
}
@media screen and (max-width: 639px) {
  .news_modal_item .name {
    padding-top: 25px;
  }
}
.news_modal_item .name h3 {
  transition: color 0.3s;
  margin-block: calc((1em - 1lh) / 2);
  font-size: 24px;
  line-height: 1.4em;
  letter-spacing: 0em;
  font-weight: 600;
}
.news_modal_item .name h3 span {
  font-weight: 600;
}
@media screen and (max-width: 1239px) {
  .news_modal_item .name h3 {
    font-size: 20px;
  }
}
@media screen and (max-width: 839px) {
  .news_modal_item .name h3 {
    text-align: center;
  }
}
@media screen and (max-width: 639px) {
  .news_modal_item .name h3 {
    font-size: 18px;
  }
}
.news_modal_item .line {
  margin-top: 25px;
  width: 100%;
  height: 1px;
  background-color: var(--mcs_gray80);
  position: relative;
}
.news_modal_item .head {
  padding-top: 25px;
  position: relative;
}
.news_modal_item .head h4 {
  margin-block: calc((1em - 1lh) / 2);
  font-size: 16px;
  line-height: 1.4em;
  letter-spacing: 0em;
  font-weight: 600;
}
.news_modal_item .head h4 span {
  font-weight: 600;
}
.news_modal_item .body_wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 20px;
  padding-top: 30px;
  position: relative;
}
@media screen and (max-width: 839px) {
  .news_modal_item .body_wrap {
    grid-template-columns: 1fr;
    row-gap: 30px;
    padding-top: 40px;
  }
}
.news_modal_item .body_wrap .description p {
  margin-block: calc((1em - 1lh) / 2);
  font-size: 14px;
  line-height: 1.7em;
  letter-spacing: 0em;
  font-weight: 400;
}
.news_modal_item .body_wrap .description p span {
  font-weight: 400;
}
.news_modal_item .body_wrap .photo {
  width: 270px;
}
@media screen and (max-width: 1239px) {
  .news_modal_item .body_wrap .photo {
    width: 240px;
  }
}
@media screen and (max-width: 1039px) {
  .news_modal_item .body_wrap .photo {
    width: 210px;
  }
}
@media screen and (max-width: 839px) {
  .news_modal_item .body_wrap .photo {
    margin-inline: auto;
    width: 44vw;
  }
}
@media screen and (max-width: 639px) {
  .news_modal_item .body_wrap .photo {
    width: 60vw;
  }
}
@media screen and (max-width: 439px) {
  .news_modal_item .body_wrap .photo {
    width: 100%;
  }
}
.news_modal_item .body_wrap .photo img {
  width: 100%;
  height: auto;
}
.news_modal_item .url {
  padding-top: 60px;
}
@media screen and (max-width: 1239px) {
  .news_modal_item .url {
    padding-top: 50px;
  }
}
@media screen and (max-width: 839px) {
  .news_modal_item .url {
    padding-top: 40px;
  }
}
.news_modal_item .url .info_item {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 25px;
}
@media screen and (max-width: 1239px) {
  .news_modal_item .url .info_item {
    column-gap: 20px;
  }
}
@media screen and (max-width: 839px) {
  .news_modal_item .url .info_item {
    grid-template-columns: 1fr;
  }
}
.news_modal_item .url .info_item .item_title,
.news_modal_item .url .info_item .item_content {
  position: relative;
}
.news_modal_item .url .info_item .item_title::after,
.news_modal_item .url .info_item .item_content::after {
  content: "";
  display: inline-block;
  height: 1px;
  background-color: var(--mcs_gray80);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.news_modal_item .url .info_item .item_title {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  width: 120px;
}
@media screen and (max-width: 1239px) {
  .news_modal_item .url .info_item .item_title {
    width: 110px;
  }
}
@media screen and (max-width: 839px) {
  .news_modal_item .url .info_item .item_title {
    padding: 25px 0 0;
    width: 100%;
  }
}
@media screen and (max-width: 639px) {
  .news_modal_item .url .info_item .item_title {
    padding: 20px 0 0;
  }
}
.news_modal_item .url .info_item .item_title .label {
  margin-block: calc((1em - 1lh) / 2);
  font-size: 14px;
  line-height: 1.4em;
  letter-spacing: 0em;
  font-weight: 600;
}
.news_modal_item .url .info_item .item_title .label span {
  font-weight: 600;
}
@media screen and (max-width: 639px) {
  .news_modal_item .url .info_item .item_title .label {
    font-size: 16px;
  }
}
@media screen and (max-width: 839px) {
  .news_modal_item .url .info_item .item_title::after {
    display: none;
  }
}
.news_modal_item .url .info_item .item_content {
  padding: 20px 25px;
}
@media screen and (max-width: 839px) {
  .news_modal_item .url .info_item .item_content {
    padding: 15px 0 25px;
    text-align: center;
  }
}
@media screen and (max-width: 639px) {
  .news_modal_item .url .info_item .item_content {
    padding: 15px 0 20px;
  }
}
.news_modal_item .url .info_item .item_content a {
  margin-block: calc((1em - 1lh) / 2);
  font-size: 14px;
  line-height: 1.4em;
  letter-spacing: 0em;
  font-weight: 500;
}
.news_modal_item .url .info_item .item_content a span {
  font-weight: 500;
}
.news_modal_item .url .info_item:nth-of-type(1) .item_title::before,
.news_modal_item .url .info_item:nth-of-type(1) .item_content::before {
  content: "";
  display: inline-block;
  height: 1px;
  background-color: var(--mcs_gray80);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
}
@media screen and (max-width: 839px) {
  .news_modal_item .url .info_item:nth-of-type(1) .item_content::before {
    display: none;
  }
}

.news_modal_item.active {
  display: block;
}:root {
  --mcs_red: hsla(358, 79%, 43%, 1);
  --mcs_blk: hsla(0, 0%, 0%, 1);
  --mcs_gray00: hsla(0, 0%, 53%, 1);
  --mcs_gray01: hsla(0, 0%, 95%, 1);
  --mcs_gray03: hsla(0, 0%, 93%, 1);
  --mcs_gray97: hsla(0, 0%, 97%, 1);
  --mcs_gray95: hsla(0, 0%, 95%, 1);
  --mcs_gray93: hsla(0, 0%, 93%, 1);
  --mcs_gray92: hsla(0, 0%, 92%, 1);
  --mcs_gray90: hsla(0, 0%, 90%, 1);
  --mcs_gray85: hsla(0, 0%, 85%, 1);
  --mcs_gray80: hsla(0, 0%, 80%, 1);
  --mcs_gray75: hsla(0, 0%, 75%, 1);
  --mcs_gray65: hsla(0, 0%, 65%, 1);
  --mcs_gray30: hsla(0, 0%, 30%, 1);
  --mcs_purple: hsla(294, 63%, 44%, 1);
  --grad_visit: linear-gradient(90deg, hsla(0, 88%, 54%, 1) 0%, hsla(219, 73%, 56%, 1) 100%);
  --grad_seminar: linear-gradient(90deg, hsla(0, 88%, 54%, 1) 0%, hsla(186, 85%, 47%, 1) 100%);
  --grad_mypage: linear-gradient(90deg, hsla(0, 88%, 54%, 1) 0%, hsla(44, 94%, 52%, 1) 100%);
  --grad_redBlue: linear-gradient(90deg, hsla(0, 88%, 54%, 1) 0%, hsla(219, 73%, 56%, 1) 100%);
  --grad_redGreen: linear-gradient(90deg, hsla(0, 88%, 54%, 1) 0%, hsla(186, 85%, 47%, 1) 100%);
  --grad_redYellow: linear-gradient(90deg, hsla(0, 88%, 54%, 1) 0%, hsla(44, 94%, 52%, 1) 100%);
  --grad_red: linear-gradient(90deg, hsla(0, 88%, 54%, 1) 0%, hsla(0, 88%, 54%, 1) 100%);
  --grad_mcs: linear-gradient(90deg, hsla(294, 43%, 40%, 1) 0%, hsla(359, 79%, 56%, 1) 50%, hsla(44, 95%, 53%, 1) 100%);
  --grad_mcs_v: linear-gradient(180deg, hsla(294, 43%, 40%, 1) 0%, hsla(359, 79%, 56%, 1) 50%, hsla(44, 95%, 53%, 1) 100%);
  --navBar: hsla(0, 100%, 50%, 1);
  --num_purple: hsla(281, 85%, 60%, 1);
  --num_red: hsla(0, 100%, 50%, 1);
  --num_yellow: hsla(38, 100%, 50%, 1);
  --num_lightblue: hsla(194, 100%, 45%, 1);
  --num_green: hsla(166, 90%, 40%, 1);
  --num_blue: hsla(219, 73%, 62%, 1);
  --seminar_K: hsla(0, 0%, 30%, 1);
  --seminar_TK: hsla(219, 73%, 62%, 1);
  --seminar_T: hsla(38, 100%, 50%, 1);
  --seminar_S: hsla(194, 100%, 45%, 1);
  --seminar_E: hsla(281, 85%, 60%, 1);
  --seminar_J: hsla(0, 100%, 50%, 1);
  --seminar_G: hsla(166, 90%, 40%, 1);
  --num_seminar_B: hsla(59, 63%, 44%, 1);
  --c-Black: hsla(0, 0%, 0%, 1);
  --c-black: hsla(0, 0%, 0%, 1);
  --c-White: hsla(0, 0%, 100%, 1);
  --c-white: hsla(0, 0%, 100%, 1);
  --c-dummy: hsl(0 0% 47.1%);
  --easeOutQuad: cubic-bezier(0.5, 1, 0.89, 1);
  --easeOutCubic: cubic-bezier(0.33, 1, 0.68, 1);
  --easeOutQuart: cubic-bezier(0.25, 1, 0.5, 1);
  --easeOutQuint: cubic-bezier(0.22, 1, 0.36, 1);
  --easeOutExpo: cubic-bezier(0.16, 1, 0.3, 1);
  --easeInOutQuad: cubic-bezier(0.45, 0, 0.55, 1);
  --easeInOutCubic: cubic-bezier(0.65, 0, 0.35, 1);
  --easeInOutQuart: cubic-bezier(0.76, 0, 0.24, 1);
  --easeInOutQuint: cubic-bezier(0.83, 0, 0.17, 1);
  --easeInOutExpo: cubic-bezier(0.87, 0, 0.13, 1);
  --easeInQuad: cubic-bezier(0.11, 0, 0.5, 0);
  --easeInCubic: cubic-bezier(0.32, 0, 0.67, 0);
  --easeInQuart: cubic-bezier(0.5, 0, 0.75, 0);
  --easeInQuint: cubic-bezier(0.64, 0, 0.78, 0);
  --easeInExpo: cubic-bezier(0.7, 0, 0.84, 0);
  --fadeInLength: 30px;
  --fadeInOpacityDuration: 0.8s;
  --fadeInDuration: 0.8s;
}

.combobox {
  width: 100%;
  position: relative;
}
.combobox .combobox_input {
  padding: 0 40px 0 14px;
  width: 100%;
  height: 40px;
  border-radius: 8px;
  border: 1px solid var(--mcs_gray03);
  background-color: var(--c-white);
  font-size: 13px;
  line-height: 1em;
  letter-spacing: 0;
  font-weight: 500;
}
.combobox .combobox_input span {
  font-weight: 500;
}
.combobox .combobox_input {
  translate: 0 -0.05em;
}
.combobox .combobox_input:focus {
  outline: none;
}
.combobox .combobox_clear {
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  background: var(--c-white);
  border-radius: 4px;
  position: absolute;
  top: 50%;
  right: 8px;
  translate: 0 -50%;
  cursor: pointer;
  color: var(--mcs_gray00);
  font-size: 18px;
  line-height: 1;
}
.combobox .combobox_clear span {
  position: relative;
}
.combobox .combobox_clear span::before, .combobox .combobox_clear span::after {
  transition: background-color 0.3s;
  content: "";
  display: inline-block;
  width: 12px;
  height: 1px;
  background-color: var(--mcs_gray00);
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
.combobox .combobox_clear span::before {
  rotate: 45deg;
}
.combobox .combobox_clear span::after {
  rotate: -45deg;
}
.combobox .combobox_clear:hover {
  background-color: var(--mcs_gray01);
}
.combobox .combobox_clear:focus {
  outline: none;
}
.combobox .combobox_clear[hidden] {
  display: none;
}
.combobox .arrow {
  line-height: 0;
  position: absolute;
  top: 50%;
  right: 14px;
  translate: 0 -50%;
  pointer-events: none;
}
.combobox .arrow svg {
  transition: stroke 0.3s;
  fill: none;
  stroke: var(--mcs_gray00);
  stroke-width: 1px;
}
.combobox .options_list {
  display: none;
  padding: 0;
  list-style: none;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 10;
  width: 300px;
  max-height: 448px;
  overflow-y: scroll;
  overscroll-behavior-y: none;
  position: absolute;
  left: calc(100% + 10px);
  bottom: 0%;
}
@media screen and (max-width: 839px) {
  .combobox .options_list {
    width: 100%;
    overscroll-behavior-y: auto;
    left: 0;
    top: calc(100% + 10px);
    bottom: auto;
  }
}
.combobox .options_list li {
  padding: 10px;
  margin-block: calc((1em - 1lh) / 2);
  font-size: 13px;
  line-height: 1.4em;
  letter-spacing: 0em;
  font-weight: 500;
}
.combobox .options_list li span {
  font-weight: 500;
}
.combobox .options_list li {
  cursor: pointer;
}
.combobox .options_list li:hover {
  background-color: #f0f0f0;
}
.combobox .options_list.show {
  display: block;
}:root {
  --mcs_red: hsla(358, 79%, 43%, 1);
  --mcs_blk: hsla(0, 0%, 0%, 1);
  --mcs_gray00: hsla(0, 0%, 53%, 1);
  --mcs_gray01: hsla(0, 0%, 95%, 1);
  --mcs_gray03: hsla(0, 0%, 93%, 1);
  --mcs_gray97: hsla(0, 0%, 97%, 1);
  --mcs_gray95: hsla(0, 0%, 95%, 1);
  --mcs_gray93: hsla(0, 0%, 93%, 1);
  --mcs_gray92: hsla(0, 0%, 92%, 1);
  --mcs_gray90: hsla(0, 0%, 90%, 1);
  --mcs_gray85: hsla(0, 0%, 85%, 1);
  --mcs_gray80: hsla(0, 0%, 80%, 1);
  --mcs_gray75: hsla(0, 0%, 75%, 1);
  --mcs_gray65: hsla(0, 0%, 65%, 1);
  --mcs_gray30: hsla(0, 0%, 30%, 1);
  --mcs_purple: hsla(294, 63%, 44%, 1);
  --grad_visit: linear-gradient(90deg, hsla(0, 88%, 54%, 1) 0%, hsla(219, 73%, 56%, 1) 100%);
  --grad_seminar: linear-gradient(90deg, hsla(0, 88%, 54%, 1) 0%, hsla(186, 85%, 47%, 1) 100%);
  --grad_mypage: linear-gradient(90deg, hsla(0, 88%, 54%, 1) 0%, hsla(44, 94%, 52%, 1) 100%);
  --grad_redBlue: linear-gradient(90deg, hsla(0, 88%, 54%, 1) 0%, hsla(219, 73%, 56%, 1) 100%);
  --grad_redGreen: linear-gradient(90deg, hsla(0, 88%, 54%, 1) 0%, hsla(186, 85%, 47%, 1) 100%);
  --grad_redYellow: linear-gradient(90deg, hsla(0, 88%, 54%, 1) 0%, hsla(44, 94%, 52%, 1) 100%);
  --grad_red: linear-gradient(90deg, hsla(0, 88%, 54%, 1) 0%, hsla(0, 88%, 54%, 1) 100%);
  --grad_mcs: linear-gradient(90deg, hsla(294, 43%, 40%, 1) 0%, hsla(359, 79%, 56%, 1) 50%, hsla(44, 95%, 53%, 1) 100%);
  --grad_mcs_v: linear-gradient(180deg, hsla(294, 43%, 40%, 1) 0%, hsla(359, 79%, 56%, 1) 50%, hsla(44, 95%, 53%, 1) 100%);
  --navBar: hsla(0, 100%, 50%, 1);
  --num_purple: hsla(281, 85%, 60%, 1);
  --num_red: hsla(0, 100%, 50%, 1);
  --num_yellow: hsla(38, 100%, 50%, 1);
  --num_lightblue: hsla(194, 100%, 45%, 1);
  --num_green: hsla(166, 90%, 40%, 1);
  --num_blue: hsla(219, 73%, 62%, 1);
  --seminar_K: hsla(0, 0%, 30%, 1);
  --seminar_TK: hsla(219, 73%, 62%, 1);
  --seminar_T: hsla(38, 100%, 50%, 1);
  --seminar_S: hsla(194, 100%, 45%, 1);
  --seminar_E: hsla(281, 85%, 60%, 1);
  --seminar_J: hsla(0, 100%, 50%, 1);
  --seminar_G: hsla(166, 90%, 40%, 1);
  --num_seminar_B: hsla(59, 63%, 44%, 1);
  --c-Black: hsla(0, 0%, 0%, 1);
  --c-black: hsla(0, 0%, 0%, 1);
  --c-White: hsla(0, 0%, 100%, 1);
  --c-white: hsla(0, 0%, 100%, 1);
  --c-dummy: hsl(0 0% 47.1%);
  --easeOutQuad: cubic-bezier(0.5, 1, 0.89, 1);
  --easeOutCubic: cubic-bezier(0.33, 1, 0.68, 1);
  --easeOutQuart: cubic-bezier(0.25, 1, 0.5, 1);
  --easeOutQuint: cubic-bezier(0.22, 1, 0.36, 1);
  --easeOutExpo: cubic-bezier(0.16, 1, 0.3, 1);
  --easeInOutQuad: cubic-bezier(0.45, 0, 0.55, 1);
  --easeInOutCubic: cubic-bezier(0.65, 0, 0.35, 1);
  --easeInOutQuart: cubic-bezier(0.76, 0, 0.24, 1);
  --easeInOutQuint: cubic-bezier(0.83, 0, 0.17, 1);
  --easeInOutExpo: cubic-bezier(0.87, 0, 0.13, 1);
  --easeInQuad: cubic-bezier(0.11, 0, 0.5, 0);
  --easeInCubic: cubic-bezier(0.32, 0, 0.67, 0);
  --easeInQuart: cubic-bezier(0.5, 0, 0.75, 0);
  --easeInQuint: cubic-bezier(0.64, 0, 0.78, 0);
  --easeInExpo: cubic-bezier(0.7, 0, 0.84, 0);
  --fadeInLength: 30px;
  --fadeInOpacityDuration: 0.8s;
  --fadeInDuration: 0.8s;
}

.filter_select {
  width: 100%;
  position: relative;
}
.filter_select .filter_select_trigger {
  padding: 8px 40px 8px 14px;
  width: 100%;
  min-height: 40px;
  border-radius: 8px;
  border: 1px solid var(--mcs_gray03);
  background-color: var(--c-white);
  margin-block: calc((1em - 1lh) / 2);
  font-size: 13px;
  line-height: 1.4em;
  letter-spacing: 0;
  font-weight: 500;
}
.filter_select .filter_select_trigger span {
  font-weight: 500;
}
.filter_select .filter_select_trigger {
  translate: 0 -0.05em;
  text-align: left;
  cursor: pointer;
}
.filter_select .filter_select_trigger:focus {
  outline: none;
}
.filter_select .filter_select_trigger.is_placeholder {
  color: var(--mcs_gray00);
}
.filter_select .filter_select_clear {
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  background: var(--c-white);
  border-radius: 4px;
  position: absolute;
  top: 50%;
  right: 8px;
  translate: 0 -50%;
  cursor: pointer;
  color: var(--mcs_gray00);
  font-size: 18px;
  line-height: 1;
}
.filter_select .filter_select_clear span {
  position: relative;
}
.filter_select .filter_select_clear span::before, .filter_select .filter_select_clear span::after {
  transition: background-color 0.3s;
  content: "";
  display: inline-block;
  width: 12px;
  height: 1px;
  background-color: var(--mcs_gray00);
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
.filter_select .filter_select_clear span::before {
  rotate: 45deg;
}
.filter_select .filter_select_clear span::after {
  rotate: -45deg;
}
.filter_select .filter_select_clear:hover {
  background-color: var(--mcs_gray01);
}
.filter_select .filter_select_clear:focus {
  outline: none;
}
.filter_select .filter_select_clear[hidden] {
  display: none;
}
.filter_select .arrow {
  line-height: 0;
  position: absolute;
  top: 50%;
  right: 14px;
  translate: 0 -50%;
  pointer-events: none;
}
.filter_select .arrow svg {
  transition: stroke 0.3s;
  fill: none;
  stroke: var(--mcs_gray00);
  stroke-width: 1px;
}
.filter_select .options_list {
  display: none;
  padding: 0;
  list-style: none;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 10;
  width: 300px;
  max-height: 400px;
  overflow-y: scroll;
  overscroll-behavior-y: none;
  position: absolute;
  left: calc(100% + 10px);
  bottom: 0%;
}
@media screen and (max-width: 839px) {
  .filter_select .options_list {
    width: 100%;
    overscroll-behavior-y: auto;
    left: 0;
    top: calc(100% + 10px);
    bottom: auto;
  }
}
.filter_select .options_list li {
  padding: 10px;
  margin-block: calc((1em - 1lh) / 2);
  font-size: 13px;
  line-height: 1.4em;
  letter-spacing: 0em;
  font-weight: 500;
}
.filter_select .options_list li span {
  font-weight: 500;
}
.filter_select .options_list li {
  cursor: pointer;
}
.filter_select .options_list li:hover {
  background-color: #f0f0f0;
}
.filter_select .options_list.show {
  display: block;
}:root {
  --mcs_red: hsla(358, 79%, 43%, 1);
  --mcs_blk: hsla(0, 0%, 0%, 1);
  --mcs_gray00: hsla(0, 0%, 53%, 1);
  --mcs_gray01: hsla(0, 0%, 95%, 1);
  --mcs_gray03: hsla(0, 0%, 93%, 1);
  --mcs_gray97: hsla(0, 0%, 97%, 1);
  --mcs_gray95: hsla(0, 0%, 95%, 1);
  --mcs_gray93: hsla(0, 0%, 93%, 1);
  --mcs_gray92: hsla(0, 0%, 92%, 1);
  --mcs_gray90: hsla(0, 0%, 90%, 1);
  --mcs_gray85: hsla(0, 0%, 85%, 1);
  --mcs_gray80: hsla(0, 0%, 80%, 1);
  --mcs_gray75: hsla(0, 0%, 75%, 1);
  --mcs_gray65: hsla(0, 0%, 65%, 1);
  --mcs_gray30: hsla(0, 0%, 30%, 1);
  --mcs_purple: hsla(294, 63%, 44%, 1);
  --grad_visit: linear-gradient(90deg, hsla(0, 88%, 54%, 1) 0%, hsla(219, 73%, 56%, 1) 100%);
  --grad_seminar: linear-gradient(90deg, hsla(0, 88%, 54%, 1) 0%, hsla(186, 85%, 47%, 1) 100%);
  --grad_mypage: linear-gradient(90deg, hsla(0, 88%, 54%, 1) 0%, hsla(44, 94%, 52%, 1) 100%);
  --grad_redBlue: linear-gradient(90deg, hsla(0, 88%, 54%, 1) 0%, hsla(219, 73%, 56%, 1) 100%);
  --grad_redGreen: linear-gradient(90deg, hsla(0, 88%, 54%, 1) 0%, hsla(186, 85%, 47%, 1) 100%);
  --grad_redYellow: linear-gradient(90deg, hsla(0, 88%, 54%, 1) 0%, hsla(44, 94%, 52%, 1) 100%);
  --grad_red: linear-gradient(90deg, hsla(0, 88%, 54%, 1) 0%, hsla(0, 88%, 54%, 1) 100%);
  --grad_mcs: linear-gradient(90deg, hsla(294, 43%, 40%, 1) 0%, hsla(359, 79%, 56%, 1) 50%, hsla(44, 95%, 53%, 1) 100%);
  --grad_mcs_v: linear-gradient(180deg, hsla(294, 43%, 40%, 1) 0%, hsla(359, 79%, 56%, 1) 50%, hsla(44, 95%, 53%, 1) 100%);
  --navBar: hsla(0, 100%, 50%, 1);
  --num_purple: hsla(281, 85%, 60%, 1);
  --num_red: hsla(0, 100%, 50%, 1);
  --num_yellow: hsla(38, 100%, 50%, 1);
  --num_lightblue: hsla(194, 100%, 45%, 1);
  --num_green: hsla(166, 90%, 40%, 1);
  --num_blue: hsla(219, 73%, 62%, 1);
  --seminar_K: hsla(0, 0%, 30%, 1);
  --seminar_TK: hsla(219, 73%, 62%, 1);
  --seminar_T: hsla(38, 100%, 50%, 1);
  --seminar_S: hsla(194, 100%, 45%, 1);
  --seminar_E: hsla(281, 85%, 60%, 1);
  --seminar_J: hsla(0, 100%, 50%, 1);
  --seminar_G: hsla(166, 90%, 40%, 1);
  --num_seminar_B: hsla(59, 63%, 44%, 1);
  --c-Black: hsla(0, 0%, 0%, 1);
  --c-black: hsla(0, 0%, 0%, 1);
  --c-White: hsla(0, 0%, 100%, 1);
  --c-white: hsla(0, 0%, 100%, 1);
  --c-dummy: hsl(0 0% 47.1%);
  --easeOutQuad: cubic-bezier(0.5, 1, 0.89, 1);
  --easeOutCubic: cubic-bezier(0.33, 1, 0.68, 1);
  --easeOutQuart: cubic-bezier(0.25, 1, 0.5, 1);
  --easeOutQuint: cubic-bezier(0.22, 1, 0.36, 1);
  --easeOutExpo: cubic-bezier(0.16, 1, 0.3, 1);
  --easeInOutQuad: cubic-bezier(0.45, 0, 0.55, 1);
  --easeInOutCubic: cubic-bezier(0.65, 0, 0.35, 1);
  --easeInOutQuart: cubic-bezier(0.76, 0, 0.24, 1);
  --easeInOutQuint: cubic-bezier(0.83, 0, 0.17, 1);
  --easeInOutExpo: cubic-bezier(0.87, 0, 0.13, 1);
  --easeInQuad: cubic-bezier(0.11, 0, 0.5, 0);
  --easeInCubic: cubic-bezier(0.32, 0, 0.67, 0);
  --easeInQuart: cubic-bezier(0.5, 0, 0.75, 0);
  --easeInQuint: cubic-bezier(0.64, 0, 0.78, 0);
  --easeInExpo: cubic-bezier(0.7, 0, 0.84, 0);
  --fadeInLength: 30px;
  --fadeInOpacityDuration: 0.8s;
  --fadeInDuration: 0.8s;
}

section.section_search {
  margin-top: 30px;
  padding-top: 50px;
}
@media screen and (max-width: 1239px) {
  section.section_search {
    margin-top: 20px;
    padding-top: 40px;
  }
}
@media screen and (max-width: 639px) {
  section.section_search {
    margin-top: 10px;
    padding-top: 30px;
  }
}
section.section_search .section_content {
  transition-delay: 0.1s;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto 1fr;
  column-gap: 50px;
  margin-top: 80px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1239px) {
  section.section_search .section_content {
    column-gap: 40px;
    margin-top: 60px;
  }
}
@media screen and (max-width: 1039px) {
  section.section_search .section_content {
    column-gap: 30px;
  }
}
@media screen and (max-width: 839px) {
  section.section_search .section_content {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 639px) {
  section.section_search .section_content {
    margin-top: 40px;
  }
}
section.section_search .section_content .tab_nav {
  grid-column: 2;
  grid-row: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 30px;
  height: 72px;
  position: relative;
}
@media screen and (max-width: 1239px) {
  section.section_search .section_content .tab_nav {
    column-gap: 25px;
    height: 64px;
  }
}
@media screen and (max-width: 639px) {
  section.section_search .section_content .tab_nav {
    height: 56px;
  }
}
@media screen and (max-width: 839px) {
  section.section_search .section_content .tab_nav {
    grid-column: auto;
    grid-row: auto;
    column-gap: 20px;
  }
}
@media screen and (max-width: 639px) {
  section.section_search .section_content .tab_nav {
    column-gap: 10px;
  }
}
section.section_search .section_content .tab_nav a.tab {
  transition: height 0.4s var(--easeInOutQuart);
  align-self: end;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 56px;
  position: relative;
}
@media screen and (max-width: 1239px) {
  section.section_search .section_content .tab_nav a.tab {
    height: 52px;
  }
}
@media screen and (max-width: 639px) {
  section.section_search .section_content .tab_nav a.tab {
    height: 48px;
  }
}
section.section_search .section_content .tab_nav a.tab::before, section.section_search .section_content .tab_nav a.tab::after {
  content: "";
  display: inline-block;
  position: absolute;
  inset: 0;
}
section.section_search .section_content .tab_nav a.tab::before {
  background-color: var(--mcs_gray01);
}
section.section_search .section_content .tab_nav a.tab::after {
  transition: opacity 0.4s;
  opacity: 0;
  background: var(--grad_mcs);
}
section.section_search .section_content .tab_nav a.tab .label {
  transition: color 0.4s;
  font-size: 20px;
  line-height: 1em;
  letter-spacing: 0em;
  font-weight: 700;
}
section.section_search .section_content .tab_nav a.tab .label span {
  font-weight: 700;
}
section.section_search .section_content .tab_nav a.tab .label {
  color: var(--mcs_gray75);
  translate: 0 -0.05em;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1239px) {
  section.section_search .section_content .tab_nav a.tab .label {
    font-size: 17px;
  }
}
@media screen and (max-width: 639px) {
  section.section_search .section_content .tab_nav a.tab .label {
    font-size: 14px;
  }
}
section.section_search .section_content .tab_nav a.tab .label::before {
  transition: opacity 0.5s;
  opacity: 0;
  content: "";
  display: inline-block;
  height: 2px;
  background-color: var(--c-white);
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 10px);
}
section.section_search .section_content .tab_nav a.tab .line {
  transition: background-color 0.4s;
  height: 2px;
  background-color: var(--num_yellow);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
section.section_search .section_content .tab_nav a.tab.tab_exhibitor::before, section.section_search .section_content .tab_nav a.tab.tab_exhibitor::after {
  clip-path: polygon(0% 0%, calc(100% - 20px) 0%, 100% 100%, 0% 100%);
}
@media screen and (max-width: 639px) {
  section.section_search .section_content .tab_nav a.tab.tab_exhibitor::before, section.section_search .section_content .tab_nav a.tab.tab_exhibitor::after {
    clip-path: polygon(0% 0%, calc(100% - 10px) 0%, 100% 100%, 0% 100%);
  }
}
section.section_search .section_content .tab_nav a.tab.tab_exhibitor .line {
  right: -20px;
}
section.section_search .section_content .tab_nav a.tab.tab_news::before, section.section_search .section_content .tab_nav a.tab.tab_news::after {
  clip-path: polygon(20px 0%, 100% 0%, 100% 100%, 0% 100%);
}
@media screen and (max-width: 639px) {
  section.section_search .section_content .tab_nav a.tab.tab_news::before, section.section_search .section_content .tab_nav a.tab.tab_news::after {
    clip-path: polygon(10px 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}
section.section_search .section_content .tab_nav a.tab.tab_news .line {
  left: -20px;
}
@media screen and (min-width: 1239px) {
  section.section_search .section_content .tab_nav a.tab:hover {
    z-index: 1;
  }
}
@media screen and (min-width: 1239px) {
  section.section_search .section_content .tab_nav a.tab:hover::after {
    opacity: 1;
  }
}
@media screen and (min-width: 1239px) {
  section.section_search .section_content .tab_nav a.tab:hover .label {
    color: var(--c-white);
  }
}
section.section_search .section_content .tab_nav a.tab.active {
  height: 72px;
  pointer-events: none;
  z-index: 1;
}
@media screen and (max-width: 1239px) {
  section.section_search .section_content .tab_nav a.tab.active {
    height: 64px;
  }
}
@media screen and (max-width: 639px) {
  section.section_search .section_content .tab_nav a.tab.active {
    height: 56px;
  }
}
section.section_search .section_content .tab_nav a.tab.active::after {
  opacity: 1;
}
section.section_search .section_content .tab_nav a.tab.active .label {
  color: var(--c-white);
}
section.section_search .section_content .tab_nav a.tab.active .label::before {
  opacity: 1;
}
section.section_search .section_content .tab_nav.isNews a.tab .line {
  background-color: var(--num_purple);
}
section.section_search .section_content .search_panel {
  grid-column: 1;
  grid-row: span 2;
  transition: opacity 0.5s;
  align-self: start;
  max-height: calc(100vh - 160px - 50px);
  position: sticky;
  top: 150px;
  z-index: 1;
}
@media screen and (max-width: 839px) {
  section.section_search .section_content .search_panel {
    transition: display 0.5s, opacity 0.5s, translate 0.5s var(--easeOutQuart);
    opacity: 1;
    translate: 0 0;
    grid-column: auto;
    grid-row: auto;
    max-height: none;
    position: relative;
    top: 0;
  }
}
section.section_search .section_content .search_panel .search_panel_container {
  padding: 20px 24px;
  width: 280px;
}
@media screen and (max-width: 839px) {
  section.section_search .section_content .search_panel .search_panel_container {
    padding: 40px 4vw 0;
    width: 100%;
  }
}
@media screen and (max-width: 639px) {
  section.section_search .section_content .search_panel .search_panel_container {
    padding: 30px 4vw 0;
  }
}
section.section_search .section_content .search_panel .search_panel_container::before, section.section_search .section_content .search_panel .search_panel_container::after {
  content: "";
  display: inline-block;
  width: 2px;
  background-color: var(--mcs_gray01);
  position: absolute;
  top: 0;
  bottom: 0;
}
@media screen and (max-width: 839px) {
  section.section_search .section_content .search_panel .search_panel_container::before, section.section_search .section_content .search_panel .search_panel_container::after {
    display: none;
  }
}
section.section_search .section_content .search_panel .search_panel_container::before {
  left: 0;
}
section.section_search .section_content .search_panel .search_panel_container::after {
  right: 0;
}
section.section_search .section_content .search_panel .search_panel_container .intro .title h3 {
  font-size: 16px;
  line-height: 1em;
  letter-spacing: 0em;
  font-weight: 600;
}
section.section_search .section_content .search_panel .search_panel_container .intro .title h3 span {
  font-weight: 600;
}
section.section_search .section_content .search_panel .search_panel_container .intro .lead {
  padding-top: 10px;
}
section.section_search .section_content .search_panel .search_panel_container .intro .lead p {
  margin-block: calc((1em - 1lh) / 2);
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0em;
  font-weight: 500;
}
section.section_search .section_content .search_panel .search_panel_container .intro .lead p span {
  font-weight: 500;
}
section.section_search .section_content .search_panel .search_panel_container .intro .lead p {
  color: var(--mcs_gray00);
}
section.section_search .section_content .search_panel .search_panel_container form.search_form .panel_block {
  padding-top: 25px;
}
section.section_search .section_content .search_panel .search_panel_container form.search_form .panel_block .filter_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 8px;
  row-gap: 16px;
  margin-top: 16px;
}
@media screen and (max-width: 839px) {
  section.section_search .section_content .search_panel .search_panel_container form.search_form .panel_block .filter_grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
section.section_search .section_content .search_panel .search_panel_container form.search_form .panel_block .filter_grid .gakusei_btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 32px;
  border-radius: 16px;
  cursor: pointer;
  position: relative;
}
section.section_search .section_content .search_panel .search_panel_container form.search_form .panel_block .filter_grid .gakusei_btn a::before, section.section_search .section_content .search_panel .search_panel_container form.search_form .panel_block .filter_grid .gakusei_btn a::after {
  content: "";
  display: inline-block;
  border-radius: inherit;
  position: absolute;
  inset: 0;
}
section.section_search .section_content .search_panel .search_panel_container form.search_form .panel_block .filter_grid .gakusei_btn a::before {
  transition: background-color 0.3s;
  background-color: var(--c-white);
  border: 1px solid var(--mcs_gray03);
}
section.section_search .section_content .search_panel .search_panel_container form.search_form .panel_block .filter_grid .gakusei_btn a::after {
  transition: opacity 0.3s;
  opacity: 0;
  background: var(--grad_mcs);
  border: none;
}
section.section_search .section_content .search_panel .search_panel_container form.search_form .panel_block .filter_grid .gakusei_btn a .label {
  transition: color 0.3s;
  font-size: 13px;
  line-height: 1em;
  letter-spacing: 0em;
  font-weight: 600;
}
section.section_search .section_content .search_panel .search_panel_container form.search_form .panel_block .filter_grid .gakusei_btn a .label span {
  font-weight: 600;
}
section.section_search .section_content .search_panel .search_panel_container form.search_form .panel_block .filter_grid .gakusei_btn a .label {
  color: var(--mcs_gray00);
  translate: 0 -0.05em;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 1239px) {
  section.section_search .section_content .search_panel .search_panel_container form.search_form .panel_block .filter_grid .gakusei_btn a:hover::after {
    opacity: 1;
  }
}
@media screen and (min-width: 1239px) {
  section.section_search .section_content .search_panel .search_panel_container form.search_form .panel_block .filter_grid .gakusei_btn a:hover .label {
    color: var(--c-white);
  }
}
section.section_search .section_content .search_panel .search_panel_container form.search_form .panel_block .filter_reset {
  margin-top: 16px;
}
section.section_search .section_content .search_panel .search_panel_container form.search_form .panel_block.panel_block_select {
  padding-top: 30px;
}
@media screen and (max-width: 839px) {
  section.section_search .section_content .search_panel .search_panel_container form.search_form .panel_block.panel_block_select {
    padding-top: 20px;
  }
}
section.section_search .section_content .search_panel .search_panel_container form.search_form .panel_block.panel_block_select .title h3 {
  font-size: 16px;
  line-height: 1em;
  letter-spacing: 0em;
  font-weight: 600;
}
section.section_search .section_content .search_panel .search_panel_container form.search_form .panel_block.panel_block_select .title h3 span {
  font-weight: 600;
}
section.section_search .section_content .search_panel .search_panel_container form.search_form .panel_block.panel_block_select .filter_select,
section.section_search .section_content .search_panel .search_panel_container form.search_form .panel_block.panel_block_select .search_select,
section.section_search .section_content .search_panel .search_panel_container form.search_form .panel_block.panel_block_select .combobox {
  margin-top: 15px;
}
section.section_search .section_content .search_panel.inactive {
  opacity: 0.3;
  pointer-events: none;
}
@media screen and (max-width: 839px) {
  section.section_search .section_content .search_panel.inactive {
    transition: display 0.25s, opacity 0.25s, translate 0s 0.25s;
    transition-behavior: allow-discrete;
    display: none;
    opacity: 0;
    translate: 0 20px;
  }
}
section.section_search .section_content .tab_contents_wrap {
  grid-column: 2;
  grid-row: 2;
}
@media screen and (max-width: 839px) {
  section.section_search .section_content .tab_contents_wrap {
    grid-column: auto;
    grid-row: auto;
  }
}
section.section_search .section_content .tab_contents_wrap .tab_contents {
  transition: opacity 0.5s, translate 0.5s var(--easeOutQuart);
  opacity: 1;
  translate: 0 0;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  margin-top: 50px;
}
@media screen and (max-width: 1239px) {
  section.section_search .section_content .tab_contents_wrap .tab_contents {
    margin-top: 40px;
  }
}
section.section_search .section_content .tab_contents_wrap .tab_contents .arrow_defs {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
}
section.section_search .section_content .tab_contents_wrap .tab_contents .exhibitor_list {
  grid-column: 1;
  grid-row: 1;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 30px;
}
@media screen and (max-width: 1239px) {
  section.section_search .section_content .tab_contents_wrap .tab_contents .exhibitor_list {
    row-gap: 25px;
  }
}
section.section_search .section_content .tab_contents_wrap .tab_contents .exhibitor_list .exhibitor_list_empty {
  grid-column: 1/-1;
  padding: 100px 0;
  font-size: 14px;
  line-height: 1em;
  letter-spacing: 0em;
  font-weight: 400;
}
section.section_search .section_content .tab_contents_wrap .tab_contents .exhibitor_list .exhibitor_list_empty span {
  font-weight: 400;
}
section.section_search .section_content .tab_contents_wrap .tab_contents .exhibitor_list .exhibitor_list_empty {
  color: var(--mcs_gray00);
  text-align: center;
}
@media screen and (max-width: 1239px) {
  section.section_search .section_content .tab_contents_wrap .tab_contents .exhibitor_list .exhibitor_list_empty {
    padding: 80px 0;
    font-size: 13.5px;
  }
}
@media screen and (max-width: 639px) {
  section.section_search .section_content .tab_contents_wrap .tab_contents .exhibitor_list .exhibitor_list_empty {
    padding: 60px 0;
    font-size: 13px;
  }
}
section.section_search .section_content .tab_contents_wrap .tab_contents .news_list {
  grid-column: 1;
  grid-row: 1;
  display: none;
  grid-template-columns: 1fr 1fr;
  column-gap: 40px;
  row-gap: 30px;
}
@media screen and (max-width: 1239px) {
  section.section_search .section_content .tab_contents_wrap .tab_contents .news_list {
    column-gap: 25px;
    row-gap: 25px;
  }
}
@media screen and (max-width: 1039px) {
  section.section_search .section_content .tab_contents_wrap .tab_contents .news_list {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 839px) {
  section.section_search .section_content .tab_contents_wrap .tab_contents .news_list {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 639px) {
  section.section_search .section_content .tab_contents_wrap .tab_contents .news_list {
    grid-template-columns: 1fr;
  }
}
section.section_search .section_content .tab_contents_wrap .tab_contents .news_list .coming_soon {
  grid-column: 1/-1;
  padding: 100px 0;
}
@media screen and (max-width: 1239px) {
  section.section_search .section_content .tab_contents_wrap .tab_contents .news_list .coming_soon {
    padding: 80px 0;
  }
}
@media screen and (max-width: 639px) {
  section.section_search .section_content .tab_contents_wrap .tab_contents .news_list .coming_soon {
    padding: 60px 0;
  }
}
section.section_search .section_content .tab_contents_wrap .tab_contents .news_list .coming_soon .label {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 1em;
  letter-spacing: 0.05em;
  font-weight: 400;
}
section.section_search .section_content .tab_contents_wrap .tab_contents .news_list .coming_soon .label span {
  font-weight: 400;
}
section.section_search .section_content .tab_contents_wrap .tab_contents .news_list .coming_soon .label {
  color: var(--mcs_gray00);
  text-align: center;
}
section.section_search .section_content .tab_contents_wrap .tab_contents.is_news .exhibitor_list {
  display: none;
}
section.section_search .section_content .tab_contents_wrap .tab_contents.is_news .news_list {
  display: grid;
}
section.section_search .section_content .tab_contents_wrap .tab_contents.is_hidden {
  transition: opacity 0.25s, translate 0s 0.25s;
  opacity: 0;
  translate: 0 20px;
}

#modal {
  transition: left 0s 0.7s;
  pointer-events: none;
  overflow: clip;
  position: fixed;
  left: 100%;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1000;
}
#modal .modal_bg {
  transition: opacity 0.3s 0.2s;
  opacity: 0;
  background-color: var(--c-Black);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: -200px;
}
#modal .scroll_wrap {
  display: grid;
  grid-template-columns: 1fr;
  overflow: scroll;
  overscroll-behavior-x: none;
  overscroll-behavior-y: contain;
  position: absolute;
  inset: 0;
}
@media screen and (max-width: 839px) {
  #modal .scroll_wrap {
    margin-top: 70px;
  }
}
#modal .scroll_wrap .scroll_content {
  transition: opacity 0.3s, translate 0s 0.3s;
  opacity: 0;
  translate: 0 30px;
  align-self: center;
  padding: 100px 0;
  position: relative;
}
@media screen and (max-width: 1239px) {
  #modal .scroll_wrap .scroll_content {
    padding: 80px 0;
  }
}
@media screen and (max-width: 1039px) {
  #modal .scroll_wrap .scroll_content {
    padding: 80px 0 60px;
  }
}
@media screen and (max-width: 839px) {
  #modal .scroll_wrap .scroll_content {
    padding: 10px 0 40px;
  }
}
#modal .scroll_wrap .scroll_content .scroll_content_bg {
  position: absolute;
  inset: 0;
}
#modal .btn_close {
  transition: opacity 0.3s;
  opacity: 0;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  width: 38px;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: none;
  position: absolute;
  right: 30px;
  top: 30px;
}
@media screen and (max-width: 1239px) {
  #modal .btn_close {
    width: 34px;
    right: 25px;
    top: 25px;
  }
}
@media screen and (max-width: 839px) {
  #modal .btn_close {
    width: 30px;
    right: 4vw;
    top: 20px;
  }
}
#modal .btn_close .bg {
  transition: border 0.3s, opacity 0.3s;
  border-radius: inherit;
  background-color: transparent;
  border: 2px solid var(--c-white);
  position: absolute;
  inset: 0;
}
#modal .btn_close::before, #modal .btn_close::after {
  transition: background 0.3s, opacity 0.3s;
  grid-column: 1;
  grid-row: 1;
  justify-self: center;
  align-self: center;
  content: "";
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--c-white);
}
#modal .btn_close::before {
  transform: rotate(45deg);
}
#modal .btn_close::after {
  transform: rotate(-45deg);
}
@media screen and (min-width: 1239px) {
  #modal .btn_close:hover .bg {
    opacity: 0.7;
  }
}
@media screen and (min-width: 1239px) {
  #modal .btn_close:hover::before, #modal .btn_close:hover::after {
    opacity: 0.7;
  }
}

#modal.on {
  transition: left 0s;
  left: 0;
  pointer-events: auto;
}
#modal.on .modal_bg {
  transition: opacity 0.3s;
  opacity: 0.8;
}
#modal.on .scroll_wrap .scroll_content {
  transition: opacity 0.5s 0.2s, translate 0.5s var(--easeOutQuart) 0.2s;
  opacity: 1;
  translate: 0 0;
}
#modal.on .btn_close {
  transition: opacity 0.5s 0.2s;
  opacity: 1;
  pointer-events: auto;
}

@starting-style {
  section.section_search .section_content .search_panel {
    opacity: 0;
    translate: 0 20px;
  }
}