: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;
}

.point_intro {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 20px;
}
@media screen and (max-width: 1239px) {
  .point_intro {
    column-gap: 15px;
  }
}
@media screen and (max-width: 839px) {
  .point_intro {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
}
.point_intro .number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 3px solid transparent;
  background-image: linear-gradient(var(--c-white), var(--c-white)), var(--grad_mcs);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}
@media screen and (max-width: 1239px) {
  .point_intro .number {
    border: 2.5px solid transparent;
    width: 64px;
  }
}
@media screen and (max-width: 839px) {
  .point_intro .number {
    justify-self: center;
  }
}
@media screen and (max-width: 639px) {
  .point_intro .number {
    border: 2px solid transparent;
    width: 48px;
  }
}
.point_intro .number .num {
  font-family: "Poppins", sans-serif;
  font-size: 48px;
  line-height: 1em;
  letter-spacing: 0em;
  font-weight: 400;
}
.point_intro .number .num span {
  font-weight: 400;
}
.point_intro .number .num {
  background: var(--grad_mcs);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media screen and (max-width: 1239px) {
  .point_intro .number .num {
    font-size: 38px;
  }
}
@media screen and (max-width: 639px) {
  .point_intro .number .num {
    font-size: 28px;
  }
}
.point_intro .text_wrap .title {
  padding-top: 24px;
}
@media screen and (max-width: 1239px) {
  .point_intro .text_wrap .title {
    padding-top: 19px;
  }
}
@media screen and (max-width: 839px) {
  .point_intro .text_wrap .title {
    padding-top: 0;
  }
}
.point_intro .text_wrap .title h3 {
  margin-block: calc((1em - 1lh) / 2);
  font-size: 32px;
  line-height: 43px;
  letter-spacing: 0em;
  font-weight: 700;
}
.point_intro .text_wrap .title h3 span {
  font-weight: 700;
}
.point_intro .text_wrap .title h3 {
  translate: 0 -0.05em;
}
@media screen and (max-width: 1239px) {
  .point_intro .text_wrap .title h3 {
    font-size: 26px;
    line-height: 36.5px;
  }
}
@media screen and (max-width: 839px) {
  .point_intro .text_wrap .title h3 {
    text-align: center;
    translate: 0 0;
  }
}
@media screen and (max-width: 639px) {
  .point_intro .text_wrap .title h3 {
    font-size: 20px;
    line-height: 30px;
  }
}
.point_intro .text_wrap .body {
  padding-top: 40px;
}
@media screen and (max-width: 1239px) {
  .point_intro .text_wrap .body {
    padding-top: 35px;
  }
}
@media screen and (max-width: 639px) {
  .point_intro .text_wrap .body {
    padding-top: 30px;
  }
}
.point_intro .text_wrap .body p {
  margin-block: calc((1em - 1lh) / 2);
  font-size: 16px;
  line-height: 29px;
  letter-spacing: 0em;
  font-weight: 500;
}
.point_intro .text_wrap .body p span {
  font-weight: 500;
}
@media screen and (max-width: 1239px) {
  .point_intro .text_wrap .body p {
    font-size: 15px;
    line-height: 26.5px;
  }
}
@media screen and (max-width: 839px) {
  .point_intro .text_wrap .body p {
    text-align: justify;
  }
}
@media screen and (max-width: 639px) {
  .point_intro .text_wrap .body p {
    font-size: 14px;
    line-height: 24px;
  }
}
@media screen and (max-width: 839px) {
  .point_intro .text_wrap .body p br {
    display: none;
  }
}
@media screen and (max-width: 839px) {
  .point_intro .text_wrap .body p span.b {
    display: inline;
  }
}: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;
}

.booth_card {
  padding: 15px 25px 25px;
  position: relative;
}
@media screen and (max-width: 1239px) {
  .booth_card {
    padding: 15px 20px 22px;
  }
}
@media screen and (max-width: 639px) {
  .booth_card {
    padding: 15px 15px 20px;
  }
}
.booth_card::before {
  content: "";
  display: inline-block;
  border-radius: 8px;
  background-color: var(--mcs_gray97);
  position: absolute;
  inset: 0;
}
.booth_card .badge {
  display: flex;
  align-items: center;
  column-gap: 12px;
  margin-left: -25px;
  width: 120px;
  height: 20px;
  position: relative;
}
@media screen and (max-width: 1239px) {
  .booth_card .badge {
    margin-left: -20px;
    width: 115px;
  }
}
@media screen and (max-width: 639px) {
  .booth_card .badge {
    margin-left: -15px;
    width: 110px;
  }
}
.booth_card .badge::before {
  content: "";
  display: inline-block;
  background: var(--grad_mcs);
  border-radius: 0 10px 10px 0;
  position: absolute;
  inset: 0;
}
.booth_card .badge .label {
  padding-left: 25px;
  font-size: 11px;
  line-height: 1em;
  letter-spacing: 0em;
  font-weight: 500;
}
.booth_card .badge .label span {
  font-weight: 500;
}
.booth_card .badge .label {
  color: var(--c-white);
  translate: 0 -0.07em;
  position: relative;
}
@media screen and (max-width: 1239px) {
  .booth_card .badge .label {
    padding-left: 20px;
  }
}
.booth_card .badge .num {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  line-height: 1em;
  letter-spacing: 0.05em;
  font-weight: 400;
}
.booth_card .badge .num span {
  font-weight: 400;
}
.booth_card .badge .num {
  color: var(--c-white);
  translate: 0 0.03em;
  position: relative;
}
@media screen and (max-width: 839px) {
  .booth_card .accordion_btn {
    display: grid;
    grid-template-columns: 1fr auto;
    column-gap: 15px;
  }
}
.booth_card .accordion_btn .name {
  padding-top: 12px;
  position: relative;
}
.booth_card .accordion_btn .name h3 {
  margin-block: calc((1em - 1lh) / 2);
  font-size: 20px;
  line-height: 1.4em;
  letter-spacing: 0em;
  font-weight: 600;
}
.booth_card .accordion_btn .name h3 span {
  font-weight: 600;
}
@media screen and (max-width: 1239px) {
  .booth_card .accordion_btn .name h3 {
    font-size: 18px;
  }
}
@media screen and (max-width: 639px) {
  .booth_card .accordion_btn .name h3 {
    font-size: 16px;
  }
}
.booth_card .accordion_btn .btn {
  display: none;
}
@media screen and (max-width: 839px) {
  .booth_card .accordion_btn .btn {
    display: block;
    align-self: end;
  }
}
.booth_card .accordion_btn .btn .container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: auto;
  aspect-ratio: 1/1;
  cursor: pointer;
  position: relative;
}
.booth_card .accordion_btn .btn .container::before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  border: 1.5px solid var(--c-black);
  position: absolute;
  inset: 0;
}
.booth_card .accordion_btn .btn .container .arrow {
  transition: scale 0.5s var(--easeInOutQuart), translate 0.5s var(--easeInOutQuart);
  line-height: 0;
  position: absolute;
  left: 50%;
  top: calc(50% - 1px);
  translate: -50% -50%;
}
.booth_card .accordion_btn .btn .container .arrow svg {
  fill: none;
  stroke: var(--c-black);
  stroke-width: 1.5px;
}
.booth_card .accordion_btn.open .btn .container .arrow {
  scale: 1 -1;
  translate: -50% calc(-50% + 2px);
}
.booth_card .accordion {
  display: grid;
  grid-template-columns: 1fr;
}
@media screen and (max-width: 839px) {
  .booth_card .accordion {
    transition: grid-template-rows 0.5s var(--easeInOutQuart);
    grid-template-rows: 0fr;
  }
}
@media screen and (max-width: 839px) {
  .booth_card .accordion.open {
    grid-template-rows: 1fr;
  }
}
@media screen and (max-width: 839px) {
  .booth_card .accordion .accordion_content {
    overflow: hidden;
    min-height: 0;
  }
}
.booth_card .accordion .accordion_content .line {
  margin-top: 12px;
  margin-left: -25px;
  width: calc(100% + 50px);
  height: 1px;
  background-color: var(--mcs_gray80);
  position: relative;
}
@media screen and (max-width: 1239px) {
  .booth_card .accordion .accordion_content .line {
    margin-left: -20px;
    width: calc(100% + 40px);
  }
}
@media screen and (max-width: 639px) {
  .booth_card .accordion .accordion_content .line {
    margin-left: -15px;
    width: calc(100% + 30px);
  }
}
.booth_card .accordion .accordion_content .description {
  padding-top: 12px;
  position: relative;
}
.booth_card .accordion .accordion_content .description p {
  margin-block: calc((1em - 1lh) / 2);
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0em;
  font-weight: 500;
}
.booth_card .accordion .accordion_content .description p span {
  font-weight: 500;
}
@media screen and (max-width: 1239px) {
  .booth_card .accordion .accordion_content .description p {
    font-size: 13.5px;
  }
}
@media screen and (max-width: 639px) {
  .booth_card .accordion .accordion_content .description p {
    font-size: 13px;
  }
}
@media screen and (max-width: 1039px) {
  .booth_card .accordion .accordion_content .description p br {
    display: none;
  }
}: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_intro {
  margin-top: 80px;
}
@media screen and (max-width: 1239px) {
  section.section_intro {
    margin-top: 60px;
  }
}
@media screen and (max-width: 639px) {
  section.section_intro {
    margin-top: 40px;
  }
}
section.section_intro .lead {
  display: flex;
  justify-content: center;
  margin-inline: 8vw;
  padding-top: 50px;
  position: relative;
}
@media screen and (max-width: 1239px) {
  section.section_intro .lead {
    padding-top: 40px;
  }
}
@media screen and (max-width: 639px) {
  section.section_intro .lead {
    padding-top: 30px;
  }
}
section.section_intro .lead p {
  margin-block: calc((1em - 1lh) / 2);
  font-size: 18px;
  line-height: 36px;
  letter-spacing: 0em;
  font-weight: 600;
}
section.section_intro .lead p span {
  font-weight: 600;
}
@media screen and (max-width: 1239px) {
  section.section_intro .lead p {
    font-size: 16px;
    line-height: 30px;
  }
}
@media screen and (max-width: 839px) {
  section.section_intro .lead p {
    text-align: justify;
  }
}
@media screen and (max-width: 639px) {
  section.section_intro .lead p {
    font-size: 14px;
    line-height: 24px;
  }
}
@media screen and (max-width: 839px) {
  section.section_intro .lead p br {
    display: none;
  }
}

section.section_map {
  margin-top: 70px;
  padding-top: 50px;
  margin-inline: auto;
  width: 960px;
  max-width: 92vw;
  position: relative;
}
@media screen and (max-width: 1239px) {
  section.section_map {
    margin-top: 50px;
    padding-top: 40px;
  }
}
@media screen and (max-width: 639px) {
  section.section_map {
    margin-top: 30px;
    padding-top: 30px;
  }
}
section.section_map .badge {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: center;
  align-content: center;
  width: 104px;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: var(--grad_mcs);
  position: absolute;
  top: 30px;
  right: 30px;
}
@media screen and (max-width: 1239px) {
  section.section_map .badge {
    width: 74px;
    right: 20px;
  }
}
@media screen and (max-width: 639px) {
  section.section_map .badge {
    width: 44px;
  }
}
@media screen and (max-width: 439px) {
  section.section_map .badge {
    right: 0;
  }
}
section.section_map .badge .num,
section.section_map .badge span.unit {
  font-family: "Poppins", sans-serif;
  line-height: 1em;
  letter-spacing: 0em;
  font-weight: 500;
}
section.section_map .badge .num span,
section.section_map .badge span.unit span {
  font-weight: 500;
}
section.section_map .badge .num,
section.section_map .badge span.unit {
  color: var(--c-white);
}
section.section_map .badge .num {
  font-size: 48px;
}
@media screen and (max-width: 1239px) {
  section.section_map .badge .num {
    font-size: 36px;
  }
}
@media screen and (max-width: 639px) {
  section.section_map .badge .num {
    font-size: 24px;
  }
}
section.section_map .badge span.unit {
  align-self: end;
  padding-left: 0.1em;
  font-size: 32px;
  translate: 0 -0.1em;
}
@media screen and (max-width: 1239px) {
  section.section_map .badge span.unit {
    font-size: 24px;
  }
}
@media screen and (max-width: 639px) {
  section.section_map .badge span.unit {
    font-size: 16px;
  }
}
section.section_map .caption {
  padding-top: 60px;
}
@media screen and (max-width: 1239px) {
  section.section_map .caption {
    padding-top: 45px;
  }
}
@media screen and (max-width: 639px) {
  section.section_map .caption {
    padding-top: 30px;
  }
}
section.section_map .caption p {
  margin-block: calc((1em - 1lh) / 2);
  font-size: 16px;
  line-height: 29px;
  letter-spacing: 0em;
  font-weight: 500;
}
section.section_map .caption p span {
  font-weight: 500;
}
section.section_map .caption p {
  text-align: center;
}
@media screen and (max-width: 1239px) {
  section.section_map .caption p {
    font-size: 15px;
    line-height: 26.5px;
  }
}
@media screen and (max-width: 639px) {
  section.section_map .caption p {
    font-size: 14px;
    line-height: 24px;
  }
}
section.section_map .scroll_contents {
  margin-top: 50px;
}
@media screen and (max-width: 1239px) {
  section.section_map .scroll_contents {
    margin-top: 40px;
  }
}
@media screen and (max-width: 639px) {
  section.section_map .scroll_contents {
    margin-top: 30px;
  }
}
section.section_map .scroll_contents .swipe {
  display: none;
}
@media screen and (max-width: 639px) {
  section.section_map .scroll_contents .swipe {
    display: block;
  }
}
section.section_map .scroll_contents .map {
  width: 100%;
}
@media screen and (max-width: 639px) {
  section.section_map .scroll_contents .map {
    padding-inline: 4vw;
    width: calc(700px + 8vw);
    height: auto;
  }
}
section.section_map .scroll_contents .map img {
  width: 100%;
  height: auto;
}
section.section_map .detail_list {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 15px;
  margin-top: 30px;
}
@media screen and (max-width: 639px) {
  section.section_map .detail_list {
    row-gap: 25px;
  }
}
section.section_map .detail_list .box {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 25px;
}
@media screen and (max-width: 639px) {
  section.section_map .detail_list .box {
    grid-template-columns: 1fr;
    row-gap: 10px;
  }
}
@media screen and (max-width: 639px) {
  section.section_map .detail_list .box .area {
    justify-self: center;
  }
}
section.section_map .detail_list .box .area img {
  width: auto;
  height: 40px;
  aspect-ratio: 140/40;
}
@media screen and (max-width: 1239px) {
  section.section_map .detail_list .box .area img {
    height: 34px;
  }
}
@media screen and (max-width: 639px) {
  section.section_map .detail_list .box .area img {
    height: 28px;
  }
}
section.section_map .detail_list .box .content .content_list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 30px;
  row-gap: 10px;
  padding-top: 11px;
}
@media screen and (max-width: 1239px) {
  section.section_map .detail_list .box .content .content_list {
    column-gap: 25px;
    padding-top: 9px;
  }
}
@media screen and (max-width: 639px) {
  section.section_map .detail_list .box .content .content_list {
    justify-content: center;
    column-gap: 20px;
    padding-top: 0;
  }
}
section.section_map .detail_list .box .content .content_list .item {
  margin-block: calc((1em - 1lh) / 2);
  font-size: 18px;
  line-height: 1.4em;
  letter-spacing: 0em;
  font-weight: 500;
}
section.section_map .detail_list .box .content .content_list .item span {
  font-weight: 500;
}
@media screen and (max-width: 1239px) {
  section.section_map .detail_list .box .content .content_list .item {
    font-size: 16px;
  }
}
@media screen and (max-width: 639px) {
  section.section_map .detail_list .box .content .content_list .item {
    font-size: 14px;
  }
}
section.section_map .detail_list .box .content .content_list .item span.dot {
  padding-right: 0.1em;
  position: relative;
  top: -0.15em;
}
section.section_map .detail_list .box .content .content_list .item span.dot::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: var(--c-black);
}
@media screen and (max-width: 1239px) {
  section.section_map .detail_list .box .content .content_list .item span.dot::before {
    width: 7px;
  }
}
@media screen and (max-width: 639px) {
  section.section_map .detail_list .box .content .content_list .item span.dot::before {
    width: 6px;
  }
}
section.section_map .detail_list .box .content .content_list .item span.label {
  position: relative;
}
section.section_map .detail_list .box .content .content_list .item span.label a {
  transition: color 0.3s;
  display: inline-block;
  background: transparent;
}
section.section_map .detail_list .box .content .content_list .item span.label a:hover {
  background: var(--grad_mcs);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
section.section_map .detail_list .box .content .content_list .item span.label span.line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--grad_mcs);
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 1px);
}
section.section_map .download {
  padding-top: 50px;
  margin-inline: auto;
  width: 440px;
  max-width: 100%;
}
@media screen and (max-width: 1239px) {
  section.section_map .download {
    padding-top: 45px;
    width: 360px;
  }
}
@media screen and (max-width: 639px) {
  section.section_map .download {
    padding-top: 40px;
    width: 280px;
  }
}
section.section_map .download .title h4 {
  margin-block: calc((1em - 1lh) / 2);
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0em;
  font-weight: 600;
}
section.section_map .download .title h4 span {
  font-weight: 600;
}
section.section_map .download .title h4 {
  text-align: center;
}
@media screen and (max-width: 1239px) {
  section.section_map .download .title h4 {
    font-size: 17.5px;
    line-height: 25px;
  }
}
@media screen and (max-width: 639px) {
  section.section_map .download .title h4 {
    font-size: 15px;
    line-height: 22px;
  }
}
section.section_map .download .title::after {
  content: "";
  display: block;
  margin-top: 25px;
  height: 2px;
  background: var(--grad_mcs);
}
@media screen and (max-width: 1239px) {
  section.section_map .download .title::after {
    margin-top: 22px;
  }
}
@media screen and (max-width: 639px) {
  section.section_map .download .title::after {
    margin-top: 20px;
  }
}
section.section_map .download .title.fadeElem::after {
  clip-path: polygon(50% 0%, 50% 0%, 50% 100%, 50% 100%);
}
section.section_map .download .title.fadeIn::after {
  transition: clip-path 1s var(--easeOutQuart);
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
section.section_map .download .btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 26px;
}
@media screen and (max-width: 1239px) {
  section.section_map .download .btn {
    margin-top: 22px;
  }
}
@media screen and (max-width: 639px) {
  section.section_map .download .btn {
    margin-top: 20px;
  }
}
section.section_map .download .btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 32px;
  border-radius: 16px;
  position: relative;
}
section.section_map .download .btn a::before {
  content: "";
  display: inline-block;
  border-radius: inherit;
  background: var(--grad_mcs);
  position: absolute;
  inset: 0;
}
section.section_map .download .btn a::after {
  transition: opacity 0.3s;
  content: "";
  display: inline-block;
  border-radius: 15px;
  background-color: var(--c-white);
  position: absolute;
  inset: 2px;
}
section.section_map .download .btn a .icon {
  position: relative;
  z-index: 1;
}
section.section_map .download .btn a .icon svg {
  transition: stroke 1.3s;
  fill: none;
  stroke: url(#download_arrow);
  stroke-width: 1.8px;
}
section.section_map .download .btn a .icon svg polyline.box {
  stroke-linejoin: round;
}
@media screen and (min-width: 1239px) {
  section.section_map .download .btn a:hover::after {
    opacity: 0;
  }
}
@media screen and (min-width: 1239px) {
  section.section_map .download .btn a:hover .icon svg {
    stroke: var(--c-white);
  }
}
section.section_map .download .note {
  margin-top: 15px;
  font-size: 11px;
  line-height: 1em;
  letter-spacing: 0em;
  font-weight: 500;
}
section.section_map .download .note span {
  font-weight: 500;
}
section.section_map .download .note {
  text-align: center;
}

section.section_point {
  margin-top: 30px;
  padding-top: 50px;
  margin-inline: auto;
  width: 960px;
}
@media screen and (max-width: 1239px) {
  section.section_point {
    margin-top: 20px;
    padding-top: 40px;
    width: 84vw;
  }
}
@media screen and (max-width: 639px) {
  section.section_point {
    margin-top: 10px;
    padding-top: 30px;
  }
}
section.section_point .booth_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 40px;
  row-gap: 25px;
  margin-left: 100px;
  margin-top: 60px;
}
@media screen and (max-width: 1239px) {
  section.section_point .booth_grid {
    column-gap: 30px;
    row-gap: 20px;
    margin-left: 79px;
    margin-top: 45px;
  }
}
@media screen and (max-width: 839px) {
  section.section_point .booth_grid {
    grid-template-columns: 1fr;
    margin-left: 0;
  }
}
@media screen and (max-width: 639px) {
  section.section_point .booth_grid {
    row-gap: 15px;
    margin-top: 30px;
  }
}
section.section_point .photo {
  margin-top: 60px;
  margin-left: 100px;
  width: auto;
  height: auto;
  aspect-ratio: 866/320;
  overflow: hidden;
}
@media screen and (max-width: 1239px) {
  section.section_point .photo {
    margin-left: 79px;
    margin-top: 45px;
  }
}
@media screen and (max-width: 839px) {
  section.section_point .photo {
    margin-left: 0;
    margin-inline: auto;
    width: 60vw;
  }
}
@media screen and (max-width: 639px) {
  section.section_point .photo {
    margin-top: 30px;
    width: 68vw;
  }
}
@media screen and (max-width: 439px) {
  section.section_point .photo {
    width: 100%;
  }
}
section.section_point .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
section.section_point .news {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 50px;
  margin-left: 100px;
  padding: 35px 25px 40px;
  position: relative;
}
@media screen and (max-width: 1239px) {
  section.section_point .news {
    margin-top: 45px;
    margin-left: 79px;
    padding: 30px 20px 35px;
  }
}
@media screen and (max-width: 839px) {
  section.section_point .news {
    margin-left: 0;
  }
}
@media screen and (max-width: 639px) {
  section.section_point .news {
    margin-top: 40px;
    padding: 25px 15px 30px;
  }
}
section.section_point .news::before {
  content: "";
  display: inline-block;
  border: 2px solid transparent;
  border-radius: 8px;
  background-image: linear-gradient(var(--c-white), var(--c-white)), var(--grad_mcs);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  position: absolute;
  inset: 0;
}
@media screen and (max-width: 639px) {
  section.section_point .news::before {
    border: 1.5px solid transparent;
  }
}
section.section_point .news .badge {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 24px;
  position: absolute;
  left: 50px;
  top: -11px;
}
@media screen and (max-width: 1239px) {
  section.section_point .news .badge {
    left: 40px;
  }
}
@media screen and (max-width: 639px) {
  section.section_point .news .badge {
    left: 30px;
  }
}
section.section_point .news .badge::before {
  content: "";
  display: inline-block;
  border-radius: 12px;
  background: var(--grad_mcs);
  position: absolute;
  inset: 0;
}
section.section_point .news .badge .label {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  line-height: 1em;
  letter-spacing: 0em;
  font-weight: 500;
}
section.section_point .news .badge .label span {
  font-weight: 500;
}
section.section_point .news .badge .label {
  color: var(--c-white);
  translate: 0 -0.03em;
  position: relative;
}
section.section_point .news .title {
  justify-self: center;
  position: relative;
}
section.section_point .news .title h4 {
  margin-block: calc((1em - 1lh) / 2);
  font-size: 22px;
  line-height: 1.4em;
  letter-spacing: 0em;
  font-weight: 600;
}
section.section_point .news .title h4 span {
  font-weight: 600;
}
section.section_point .news .title h4 {
  text-align: center;
  background: var(--grad_mcs);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media screen and (max-width: 1239px) {
  section.section_point .news .title h4 {
    font-size: 19px;
  }
}
@media screen and (max-width: 639px) {
  section.section_point .news .title h4 {
    font-size: 16px;
  }
}
section.section_point .news .title h4 span.deco {
  display: inline-block;
  margin-inline: 1em;
}
@media screen and (max-width: 1239px) {
  section.section_point .news .title h4 span.deco {
    margin-inline: 0.5em;
  }
}
@media screen and (max-width: 639px) {
  section.section_point .news .title h4 span.deco {
    display: none;
  }
}
section.section_point .news .body {
  padding-top: 25px;
  position: relative;
}
@media screen and (max-width: 1239px) {
  section.section_point .news .body {
    padding-top: 22px;
  }
}
@media screen and (max-width: 639px) {
  section.section_point .news .body {
    padding-top: 20px;
  }
}
section.section_point .news .body p {
  margin-block: calc((1em - 1lh) / 2);
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0em;
  font-weight: 500;
}
section.section_point .news .body p span {
  font-weight: 500;
}
section.section_point .news .body p {
  text-align: center;
}
@media screen and (max-width: 1239px) {
  section.section_point .news .body p {
    font-size: 15px;
    line-height: 25px;
  }
}
@media screen and (max-width: 639px) {
  section.section_point .news .body p {
    font-size: 14px;
    line-height: 24px;
  }
}
section.section_point .news.fadeElem::before {
  opacity: 0;
  translate: 0 var(--fadeInLength);
}
section.section_point .news.fadeIn::before {
  transition: opacity var(--fadeInOpacityDuration), translate 1s var(--easeOutQuart);
  opacity: 1;
  translate: 0 0;
}
section.section_point .gakusei_link {
  margin-top: 50px;
}
@media screen and (max-width: 1239px) {
  section.section_point .gakusei_link {
    margin-top: 40px;
  }
}
@media screen and (max-width: 639px) {
  section.section_point .gakusei_link {
    margin-top: 30px;
  }
}
section.section_point .gakusei_link .page_btn_wrap {
  display: flex;
  justify-content: center;
}
section.section_point .gakusei_link .caption {
  padding-top: 25px;
}
@media screen and (max-width: 1239px) {
  section.section_point .gakusei_link .caption {
    padding-top: 20px;
  }
}
@media screen and (max-width: 639px) {
  section.section_point .gakusei_link .caption {
    padding-top: 15px;
  }
}
section.section_point .gakusei_link .caption p {
  margin-block: calc((1em - 1lh) / 2);
  font-size: 16px;
  line-height: 1.4em;
  letter-spacing: 0em;
  font-weight: 500;
}
section.section_point .gakusei_link .caption p span {
  font-weight: 500;
}
section.section_point .gakusei_link .caption p {
  text-align: center;
}
@media screen and (max-width: 1239px) {
  section.section_point .gakusei_link .caption p {
    font-size: 14px;
  }
}
@media screen and (max-width: 639px) {
  section.section_point .gakusei_link .caption p {
    font-size: 12px;
  }
}
section.section_point .gakusei_link .caption p span.underline {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}