body, html {position: relative; scroll-behavior: smooth; font-size: 16px; letter-spacing: 0; font-family: 'Pretendard' !important; width: 100%; color: #515061; line-height: 1.5;}
.container {padding-top: 6.25rem;}
.inner {
  max-width: 1400px;
  width: calc(100% - 20px);
  margin: 0 auto;
}
.s-container {width: 100%; box-sizing: border-box;}
.blind {font-size: 0; text-indent: -9999px; opacity: 0;}

.flex-box {
  display: flex;
  flex-flow: row wrap;
}

* {
  box-sizing: border-box;
}

.mt30 {
  margin-top: 1.875rem;
}
.mt40 {
  margin-top: 2.5rem;
}
.mt50 {
  margin-top:3.125rem;
}
.mt80 {
  margin-top: 5rem;
}
.mt100 {
  nav-right: 6.25rem;
}

@media all and (max-width: 1320px) {
  body, html {min-width: 100%; max-width: 100%;
  font-size: 15px;}
}
@media all and (max-width: 1024px) {
  body, html {
    font-size: 14px;
  }
}
@media all and (max-width: 768px) {
  body, html {
    font-size: 13px;
  }
}
@media all and (max-width: 480px) {
  body, html {
    font-size: 12px;
  }
}
@media all and (max-width: 360px) {
  
}

:root {
  --white: #ffffff;
  --black: #000000;
  --mainColor: #2056A0;
  --m-color: #2056A0;
  --border-color: #ddd;

  --black01: #292e41;
  --black02: #222;
  --black03: #333;
  --black06: #666;
  --black09: #999;

  --gray01: #eee;
  --gray02: #67738e;
  --gray03: #373f57;
  --gray04: #999999;
  --gray05: #dddddd;
  --gray06: #bfbfc3;
  --gray07: #5c667b;
  --gray08: #404040;

  --blue01: #0066ff;
  --blue02: #00ffff;
  --blue03: #00ccff;
  --blue04: #2d65f2;

  --purple01: #562dff;
  --purple02: #f6f3ff;
  --purple03: #a2a0fd;

  --size12: 0.75rem;
  --size13: 0.8125rem;
  --size14: 0.875rem;
  --size15: 0.9375rem;
  --size16: 1rem;
  --size18: 1.125rem;
  --size19: 1.1875rem;
  --size20: 1.25rem;
  --size22: 1.375rem;
  --size24: 1.5rem;
  --size25: 1.5625rem;
  --size26: 1.625rem;
  --size28: 1.75rem;
  --size30: 1.875rem;
  --size34: 2.125rem;
  --size35: 2.1875rem;
  --size36: 2.25rem;
  --size40: 2.5rem;
  --size45: 2.8125rem;
  --size60: 3.75rem;
}

header {
  /* position: relative; */
  border-bottom: 1px solid #ddd;
  position: fixed;
  z-index: 99;
  width: 100%;
  background-color: #fff;
  top: 0;
  left: 0;
}
header .inner {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
}
header .left-box {
  align-items: center;
  justify-content: space-between;
  max-width: 951px;
  width: 70%;
}
header .gnb {
  position: relative;
}
header .gnb::after {
  display: block;
  content: "";
  position: absolute;
  top: calc(100%);
  left: 0;
  width: calc(100% + 30px);
  height: calc(20rem + 30px);
  z-index: 2;

  max-height: 0;
  overflow: hidden;

  opacity: 0;
  transition: 
    max-height 0.4s ease,
    opacity 0.3s ease;  
}
header .gnb > li {
  position: relative;
}
header .gnb > li > a {
  position: relative;
  font-weight: 500;
  font-size: var(--size18);
  line-height: 1.16667;
  color: var(--black);
  padding: 0 3.125rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: calc(6.25rem - 1px);
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}
header .gnb > li > a::after {
  content: "";
  position: absolute;
  display: block;
  width: calc(100% - 3.125rem - 3.125rem);
  bottom: 0;
  height: 3px;
  background-color: var(--mainColor);
  opacity: 0;
  transition: all 0.3s;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}
header .gnb > li > .depth2 {
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  width: 100%;
  min-width: 70px;
  padding: 1.25rem 0;
  z-index: 3;

  max-height: 0;
  overflow: hidden;

  opacity: 0;
  transition: 
    max-height 0.4s ease,
    opacity 0.3s ease;  
}
header .gnb > li > .depth2 > li > a {
  display: block;
  font-weight: 400;
  font-size: var(--size16);
  color: var(--black);
  line-height: 250%;
  padding: 10px 0;
  line-height: 1.25;
  text-align: center;  
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}
header .gnb > li:hover > a {
  color: var(--mainColor);
  font-weight: 600;
}
header .gnb > li:hover > a::after {
  opacity: 1;
}
header .gnb > li > .depth2 > li > a:hover {
  color: var(--mainColor);
  font-weight: 600;
}

header .gnb-bk {
  width: 100%;
  height: 11.3125rem;
  background-color: #fff;
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  z-index: 2;

  max-height: 0;
  overflow: hidden;

  opacity: 0;
  transition: 
    max-height 0.4s ease,
    opacity 0.3s ease;  
}

header .gnb:hover > li > .depth2,
header .gnb:hover + .gnb-bk {
  max-height: 500px;
  opacity: 1;
}

.mo-right {
  display: none;
}
header .pc-right {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 1.875rem;
}
header .pc-right a {
  font-weight: 400;
  font-size: var(--size15);
  line-height: 1.2;
  color: var(--black);
}
header .pc-right .last a {
  width: 6.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 36px;
  background-color: var(--mainColor);
  color: var(--white);
  -webkit-border-radius: 36px;
  -moz-border-radius: 36px;
  -ms-border-radius: 36px;
  -o-border-radius: 36px;
}

@media all and (max-width: 1320px) {
  header .gnb > li > a {
    padding: 0 1.5rem;
  }
}
@media all and (max-width: 1024px) {
  header .pc-right {
    display: none;
  }
  
}
@media all and (max-width: 768px) {}
@media all and (max-width: 480px) {}
@media all and (max-width: 360px) {}

.all_menu-btn2 {flex: none; display: none; margin: 0 0 0 20px;}
.all_menu-btn2 i {display: block; height: 2px; width: 20px; background: var(--black); color: var(--black);}
.all_menu-btn2 i + i {margin: 6px 0 0;}

.dim {border-top: 1px solid var(--border-color); display: none; width: 100%; background: #fff; box-shadow: var(--dim-box-shadow); height: var(--dim-height); position: absolute; top: 100%; left: 0; z-index: 90;}

.all-menu {width: 100%; height: 100vh; background: #fff; z-index: 999; position: fixed; top: 0; left: 0; display: none;}
.all-menu.on {
  display: block;
}
.all-menu-top {
  /* width: calc(100% - 20px);  */
  padding: 1.5rem 10px;
  margin: 0 auto;
  position: relative;
  
}
.all-menu-top .inner {
  position: relative;
}
.all-menu-top ul {
  justify-content: flex-start;
  gap: 10px;
}
.all-menu-top ul li {
  width: 6.25rem;
  height: 2.5rem;
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
}
.all-menu-top ul li:nth-child(1) {
  background: #92BFF4;
}
.all-menu-top ul li:nth-child(2) {
  background: #517FA2;
}
.all-menu-top ul li:nth-child(3) {
  background: #57134B;
}
.all-menu-top ul li a {
  font-weight: 600;
  font-size: var(--size14);
  line-height: 1;
  color: var(--white);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.all-menu-middle {width: 100%; height: calc(100% - 100px); overflow-y: auto; padding: 0 20px 40px; box-sizing: border-box;}
.all-menu .user-menu {display: flex; justify-content: flex-start; align-items: center; flex-wrap: wrap; align-content: flex-start;}
.all-menu .user-menu dd {flex: none; margin: 4px 0 0;}
.all-menu .user-menu dd + dd {margin: 4px 0 0 8px;}
.all-menu .user-menu dd a {font-size: 15px; display: block;}
.all-menu .user-menu dd.block {width: 100%; height: 0;}
.all-menu .user-menu dd.block + dd {margin: 4px 0 0 0;}
.all-menu .user-menu dd.member-btn a {border: 1px solid #515061; border-radius: 10px; padding: 4px 8px; box-sizing: border-box;}
.all-menu .user-menu dd.fc-btn a {background: var(--m-color); color: var(--m-color-strong); border-radius: 10px; padding: 4px 8px;}
.all-menu .user-menu dd.english {border: 1px solid var(--m-color); padding: 2px 8px; box-sizing: border-box; background: #fff; color: var(--m-color); border-radius: 8px;}

#nav {width: 100%;}
#nav > li > a {display: block; width: 100%; line-height: 42px; border-bottom: 1px solid #ddd; box-sizing: border-box; font-size: 17px; color: #222; font-weight: 500;}
#nav > li > .depth2 {width: 100%; padding:0 0 12px ; box-sizing: border-box; display: none;}
#nav > li.on > .depth2 {
  display: block;
}
#nav > li > .depth2 li a {font-size: 16px; line-height: 24px; padding: 5px 10px; box-sizing: border-box; display: block; border-bottom: 1px solid #ddd;}

.all_menu-cls { width: 20px; height: 20px; background: url(/img/comm/close_b.png) 50% 50% no-repeat; background-size: 100% auto; display: block; position: absolute; top: 50%; right: 10px; transform:translateY(-50%) ; -webkit-transform:translateY(-50%) ; -moz-transform:translateY(-50%) ; -ms-transform:translateY(-50%) ; -o-transform:translateY(-50%) ; }

@media all and (max-width: 1320px) {
  header .bottom .gnb {
    gap: 1.25rem;
  }
}

@media all and (max-width: 1024px) {
  html,body {
    font-size: 14px;
  }
  header {
    padding: 1.5rem 0;
  }
  .pc-right {
    display: none;
  }
  .mo-right {
    display: block;
  }
  
  header .logo img {
    height: 40px;
  }
  .gnb {display: none !important;}
  .all_menu-btn2 {display: block; flex-flow: row wrap;} 
}

@media all and (max-width: 768px) {
  header .logo img {
    height: 35px;
  }
  .container {
    padding-top: calc(35px + 3rem);
  }
}


@media all and (max-width: 480px) {
  header .logo img {
    height: 25px;
  }
  .container {
    padding-top: calc(25px + 3rem);
  }
}

@media all and (max-width: 900px) {
  /* .header-wrap {background: #fff;}
  .header-wrap h1 {display: block;}
  .top_login-container {display: none !important;}
  .header-wrap {height: 70px;}
  .header-wrap .flex-layout {height: 100%; justify-content: space-between;}
  .header-wrap h1 {height: 40px; width: 140px;}
  .gnb {display: none !important;}
  .dim {display: none !important;}

  .all_menu-btn {display: none;}
  .all_menu-btn2 {display: block;} */
}

@media all and (max-width: 640px) {

}
@media all and (max-width: 420px) {
  .all-menu .user-menu {padding: 0 80px 0 0; box-sizing: border-box;}
  .all-menu .user-menu dd a {font-size: 14px;}
  .all-menu .user-menu dd + dd {margin: 3px 0 0 4px;}
  .all-menu .user-menu dd.block + dd {margin: 3px 0 0;}

  /* .all-menu-top {padding: 14px 14px 0;} */
  .all-menu-middle {padding: 0 14px 0;}

  .all-menu .user-menu dd.member-btn a {border-radius: 8px;}
  .all-menu .user-menu dd.fc-btn a {border-radius: 8px;}
}

.partner-wrap {
  height: 100px;
  display: flex;
  align-items: center;
  border-top: 1px solid #ddd;
}
.partner-wrap .partner-swiper-wrap {
  position: relative;
  padding: 0 3.75rem;
}
.partner-wrap .partner-swiper {
  /* width: calc(100% - 28px - 3.75rem); */
  position: initial;
}
.partner-wrap .partner-swiper .swiper-button {
  display: flex!important;
  width: 16px;
  align-items: center;
  justify-content: center;
}
.partner-wrap .partner-swiper .swiper-button-prev {
  left: 0;
}
.partner-wrap .partner-swiper .swiper-button-next {
  right: 0;
}
.partner-wrap .partner-swiper .swiper-button::after {
  display: none;
}
.partner-wrap .partner-swiper .swiper-wrapper {
  /* width: 100%; */
  margin: 0 auto;
  align-items: center;
}
.partner-wrap .partner-swiper .swiper-slide {
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.partner-wrap .partner-swiper img {
  max-width: 100%;
  height: auto;
}

@media all and (max-width: 1320px) {}
@media all and (max-width: 1024px) {}
@media all and (max-width: 768px) {}
@media all and (max-width: 480px) {}
@media all and (max-width: 360px) {}

#footer {
  background: #333333; padding: 2.75rem 0 2.75rem;
 /* padding: 3.75rem 0 6.5rem;*/
}
#footer .inner {
  gap: 5rem;
}


#footer .footer-menu {
  gap: 0.8125rem;
  align-items: center;
}
#footer .footer-menu li a {
  font-weight: 500;
  font-size: var(--size16);
  line-height: 1.625;
  color: var(--white);
  opacity: 0.7;
}
#footer .footer-menu li:last-child a {
  opacity: 1;
}
#footer .footer-menu li.line {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.5;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
#footer .text-wrap p {
  font-weight: 400;
   margin-top: 0.5rem;
 /* margin-top: 1.25rem;*/
  color: var(--white);
  opacity: 0.7;
}
#footer .text-wrap .address {
  font-size: var(--size15);
  line-height: 1.6;
}
#footer .address span {
  display: inline-block;
}

#footer .address span + span::before {
  content: " | ";
  margin: 0 8px;
  opacity: 0.7;
}
#footer .text-wrap .copyright {
  font-size: var(--size14);
  line-height: 1.57143;
}


@media all and (max-width: 1320px) {}
@media all and (max-width: 1024px) {}
@media all and (max-width: 768px) {}
@media all and (max-width: 480px) {}
@media all and (max-width: 360px) {}

.s-container {margin: 0 auto; }
.sub-visual {width: 100%; padding-bottom: var(--lnb-height); box-sizing: border-box;}
.sub-visual .container {position: relative;}
.sub-visual-cont {width: 100%; height: 300px; background: url(/img/sub/visual.jpg) 50% 50% no-repeat; background-size: cover;}
.sub-visual-cont .container {height: 100%; display: flex; justify-content: center; align-items: center; text-align: center; padding: 0 0 var(--lnb-height); box-sizing: border-box;}
.sub-visual-cont h2 {color: #fff; font-size: 55px; font-weight: 700; text-align: center; flex: none; }
/*.s-container .lnb {position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 100%; display: flex; justify-content: center; align-items: center; flex-wrap: wrap; align-content: flex-start;}*/
/*.s-container .lnb > li {flex: 1; height: var(--lnb-height); font-size: var(--lnb-font-size); }*/
/*.s-container .lnb > li > a {background: var(--m-color); color: #fff; box-sizing: border-box; display: flex; justify-content: center; align-items: center; width: 100%; height: 100%; font-weight: 500;}*/
/*.s-container .lnb > li > a.on {background: #fff; color: var(--m-color); display: flex; justify-content: center; align-items: center; width: 100%; height: 100%;font-weight: 600;}*/
.s-container .content_area{width: 100%}
.s-container #contents {width: 100%; max-width:1280px; min-width: 1280px; margin: 0 auto; padding: 0 0 80px; box-sizing: border-box;}
.s-container .content_area_event #contents {position: relative; z-index: 10;}
.s-container .event_bbs {width: 100%;}
.s-container .mb-lnb {position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 100%; display: flex; justify-content: flex-start; align-items: center; flex-wrap: wrap; align-content: flex-start; z-index: 400; background: #fff; border-bottom: 1px solid #e1e1e1; box-sizing: border-box;}
.s-container .mb-lnb > li {flex: none;  height: var(--lnb-height); width: calc((100% - var(--lnb-height)) / 2); max-width: 240px; position: relative;}
.s-container .mb-lnb > li.home { width: var(--lnb-height); height: var(--lnb-height); display: block; }
.s-container .mb-lnb > li > a{box-sizing: border-box; display: flex; justify-content: flex-start; text-align: left; align-items: center; width: 100%; height: 100%; background: #fff url(/img/comm/lnb_arrow.png) calc(100% - 20px) 50% no-repeat; background-size: 13px auto; padding: 0 42px 0 12px; }
.s-container .mb-lnb > li.home > a {display: block; width: 100%; height: 100%; background: var(--m-color) url(/img/comm/home.png) 50% 50% no-repeat; background-size: 14px 14px; font-size: 0; padding: 0;}
.s-container .mb-lnb > li:nth-of-type(2) > a {border-right: 1px solid #e1e1e1; box-sizing: border-box; }
.s-container .mb-lnb > li:nth-of-type(3) > a {border-right: 1px solid #e1e1e1; box-sizing: border-box; }
.s-container .mb-lnb > li > ul {display: none; border-top: 1px solid #e1e1e1; box-sizing: border-box; position: absolute; top: calc(100% - 1px); left: 0; width: 100%; background: #fff; z-index: 99; box-shadow: var(--box-shadow);}
.s-container .mb-lnb > li > ul li {font-size: 15px; line-height: 48px; border-bottom: 1px dashed #e1e1e1; box-sizing: border-box; width: 100%;}
.s-container .mb-lnb > li > ul li a {display: block; width: 100%; height: 100%; padding: 0 12px; box-sizing: border-box;}
.s-container .mb-lnb > li.on > ul {display: block;}
.s-container .mb-lnb > li.on > a {background: #fff url(/img/comm/lnb_arrow_on.png) calc(100% - 20px) 50% no-repeat; background-size: 13px auto;}

@media all and (max-width: 1320px) {
  .s-container #contents {max-width: 100%; min-width: 100%; padding: 0 20px 80px; box-sizing: border-box;}
  .s-container .content_area_event #contents {padding: 0 20px 80px; }
}

@media all and (max-width: 900px) {

  .s-container .mb-lnb > li {max-width: none;}
  .s-container #contents {padding: 0 20px 60px;}
  .s-container .content_area_event #contents {padding: 0 0 60px; }
  .s-container .event_bbs {padding: 0 20px; box-sizing: border-box;}
  .sub-visual-cont {height: 250px;}
  .sub-visual-cont h2 {font-size: 42px;}


  /*.s-container .lnb {display: none;}*/
  /*.s-container .mb-lnb {}*/

}
@media all and (max-width: 640px) {
  .sub-visual-cont {height: 200px;}
  .sub-visual-cont h2 {font-size: 38px;}
  .s-container .mb-lnb > li > a {font-size: 15px;}
  .s-container .mb-lnb > li > ul li a {font-size: 14px;}

}
@media all and (max-width: 540px) {
  .sub-visual-cont h2 {font-size: 32px;}
  .s-container .mb-lnb > li > a {font-size: 14px;}
  .s-container .mb-lnb > li > ul li a {font-size: 13px; padding: 0 8px; line-height: 42px; white-space: nowrap;}

}
@media all and (max-width: 360px) {
  .s-container #contents {padding: 0 14px 40px;}
  .s-container .content_area_event #contents {padding: 0 0 40px; }
  .s-container .event_bbs {padding: 0 14px;}

}

.chk_p {font-size: var(--h4-font-size); font-weight: 500; color: var(--h-font-color); margin: 0 0 var(--h4-font-size);}
.chk_p input[type=checkbox] {appearance: none !important;}
.chk_p input[type=checkbox] + label.font { font-size: var(--p-font-size); width: 100%; height: auto; position: relative; padding: 0 0 0 30px; box-sizing: border-box; display: block;}
.chk_p input[type=checkbox] + label.font::before {border-radius: 4px; top: 50%; left: 0; transform: translateY(-50%); content: ''; background: #fff url(/img/comm/chk_off.png) 50% 50% no-repeat; background-size: 72.22% auto; border: 1px solid var(--border-color); display: block; width: 18px; height: 18px; position: absolute; box-sizing: border-box;}
.chk_p input[type=checkbox]:checked + label.font::before {background: var(--m-color) url(/img/comm/chk_on.png) 50% 50% no-repeat; background-size: 72.22% auto; border-color: var(--m-color);}

.AW-mem-btn2 { margin:60px 0 0; text-align:center; overflow:hidden; }
.AW-mem-btn2.button_wrap { width: 100%; display: flex; justify-content: center; align-items: center; gap: 15px;}
.AW-mem-btn2 a,
.AW-mem-btn2 input, 
.AW-mem-btn2 button {
  border: 0;
  width: 11.25rem;
  height:3.75rem;
  border-radius: 8px;
  line-height:3.75rem;
  font-size:1.0625rem;
  letter-spacing:-0.07em;
  text-align:center;
  background:#222;
  color:#fff;
  transition:all 0.3s;
  box-sizing:border-box;
  cursor:pointer;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.AW-mem-btn2 a:first-child, .AW-mem-btn2 input:first-child, .AW-mem-btn2 button:first-child { color:#fff; background:#004ea2; }

@media all and (max-width: 900px) {
  .AW-mem-btn2 {margin: 42px 0 0;}
  .AW-mem-btn2 a {height: 50px; line-height: 50px; font-size: 16px; }
  .AW-mem-btn2.button_wrap button {height: 50px; line-height: 50px; font-size: 16px; }
}
@media all and (max-width: 640px) {
  .AW-mem-btn2 {margin: 36px 0 0;}
  .AW-mem-btn2 a {height: 45px; line-height: 45px;  }
  .AW-mem-btn2.button_wrap button {height: 45px; line-height: 45px;  }
}
@media all and (max-width: 420px) {
  .AW-mem-btn2 {margin: 30px 0 0;}
  .AW-mem-btn2 a {height: 42px; line-height: 42px; font-size: 15px; }
  .AW-mem-btn2.button_wrap button {height: 42px; line-height: 42px; font-size: 15px; }

}

.bbs_btn_wrap {width: 100%; display: flex; justify-content: flex-start; align-items: center; padding: 10px 0 0; box-sizing: border-box;}
.bbs_btn_wrap .bbs_btn {flex: none;}
.bbs_btn_wrap.right_align {justify-content: flex-end;}
.bbs_btn_wrap.center_align {justify-content: center;}
.bbs_btn_wrap.center_align .bbs_btn {margin: 0 2px;}
.bbs_btn {border-radius: 0.375rem; border: 1px solid #ddd;line-height: 2rem !important;font-size: 0.875rem;padding: 0 0.75rem; color: inherit !important;
  box-sizing: border-box;display: inline-block;cursor: pointer; vertical-align: middle; font-family: inherit; text-decoration: none !important;}
.bbs_btn.bg {background: #777; color: #fff !important;border-color: #777;}
.bbs_btn.bg2 {background: #2d2d2d; color: #fff !important; border-color: #2d2d2d;}
.bbs_btn.bg3 {background: var(--m-color); color: #fff !important; border-color: var(--m-color);}


.bbs_paging { margin: 20px auto 30px; }
.bbs_paging tr td { width: 30px; height: 30px !important; text-align: center; vertical-align: middle; padding-left: 3px; }
.bbs_paging tr td:first-of-type { padding: 0; }
.bbs_paging tr td a { display: inline-block; width: 30px; height: 100%; line-height: 30px !important; font-size: 14px;}
.bbs_paging tr td b { display: inline-block; width: 30px; height: 100%; line-height: 30px !important; background: var(--m-color); color: #fff; font-weight: bold; font-size: 14px;}
.bbs_paging tr td img { display: block; max-width: 100%; max-height: 100%; }
.bbs_paging tr td:nth-of-type(3) {width: auto;}

#quickMenu {margin-left: 700px; left:50%; }
#quickMenu a {display: flex; width: 100px; height: 100px; justify-content: center; align-items: center; border-radius: 8px; padding: 54px 0 0; box-sizing: border-box; text-align: center; color: #fff; font-size: 16px;}
#quickMenu a.edu {background: #00416d url(/img/comm/fix_edu.png) 50% 15px no-repeat;}
#quickMenu a.sym {background: #793af6 url(/img/comm/fix_sym.png) 50% 15px no-repeat;}
#quickMenu a + a {margin: 10px 0 0;}


#quickMenu2 {position: fixed; bottom: 20px; right: 20px; z-index: 202; display: none;}
#quickMenu2 a {display: flex; width: 80px; height: 80px; justify-content: center; align-items: center; border-radius: 8px; padding: 44px 0 0; box-sizing: border-box; text-align: center; color: #fff; font-size: 13px;}
#quickMenu2 a.edu {background: #00416d url(/img/comm/fix_edu.png) 50% 10px no-repeat; background-size: auto 40px;}
#quickMenu2 a.sym {background: #793af6 url(/img/comm/fix_sym.png) 50% 10px no-repeat; background-size: auto 40px;}
#quickMenu2 a + a {margin: 10px 0 0;}

@media all and (max-width: 1600px) {
  #quickMenu {margin-left: 0; left: initial; right: 20px;}
}
@media all and (max-width: 1240px) {
}
@media all and (max-width: 900px) {
  #quickMenu {display: none;}
  #quickMenu2 {display: block;}
  #quickMenu2 a {}
  #quickMenu2 a.edu {}
  #quickMenu2 a.sym {}
}
@media all and (max-width: 640px) {
}
@media all and (max-width: 375px) {
}
