@charset "UTF-8";
/* NO CSS*/
:root {
  --color-1:#1C2952;
  --color-2:#00C284;
  --color-3:#315FF5;
  --bg-color-1:#F4F9FF;
  --bg-color-2:#F5F5F5;
  --line-color-1:#CAD1E1;
}

/* sub layout */
#main {
  padding: 10rem 0 16rem;
}

#main-container {
  width: 154.2rem;
  max-width: 100%;
  position: relative;
  margin: 0 auto;
  min-height: 55vh;
  padding: 0 4rem;
}
#main-container .h3 {
  margin-bottom: 8rem;
  color: #1C2952;
  font-size: 4.4rem;
  font-weight: 700;
  text-align: center;
}
#main-container .h4 {
  position: relative;
  margin: 8rem 0 2.55rem 0;
  padding-left: 2.4rem;
  color: var(--color-1);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.02em;
}
#main-container .h4::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  width: 1.6rem;
  height: 4.6rem;
  background: url("../images/sub/title1.svg") no-repeat 50% 50%/cover;
}
#main-container .h5 {
  margin-bottom: 1.6rem;
  color: #222;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.4;
}

/**********************
contents
**********************/
/* table */
.normal-table {
  overflow-x: auto;
}
.normal-table table {
  width: 100%;
  table-layout: fixed;
  border-top: 2px solid var(--color-1);
}
.normal-table table thead tr {
  border-bottom: 1px solid var(--line-color-1);
}
.normal-table table thead tr th {
  height: 6.4rem;
  padding: 0.5rem;
  background: var(--bg-color-1);
  color: var(--color-1);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4;
}
.normal-table table tbody tr {
  border-bottom: 1px solid var(--line-color-1);
}
.normal-table table tbody tr td {
  height: 6.4rem;
  padding: 0.5rem;
  color: #222;
  text-align: center;
}

/* 소개 : 추진체계 */
.propulsion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 4rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.propulsion > ul {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 40%;
          flex: 1 1 40%;
}
.propulsion > ul > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.6rem;
  min-height: 10rem;
  padding: 2.3rem 0;
}
.propulsion > ul > li strong {
  display: block;
  width: 10rem;
  color: var(--color-1);
  font-size: 2rem;
  font-weight: 700;
}
.propulsion > ul > li p {
  display: block;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #444;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.6;
}
.propulsion > ul > li p img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 1.6rem;
}
.propulsion > ul > li .normal-table th {
  text-align: center;
}
.propulsion > ul > li + li {
  border-top: 1px dashed var(--line-color-1);
}
.propulsion .box {
  max-width: 72rem;
  margin: 0 auto;
  padding: 4rem 2rem;
  border: 1px solid var(--line-color-1);
  background: #F6F8F9;
  text-align: center;
}

/* 소개 : 개최성과 */
.board-poster-table {
  border-top: 1px solid var(--color-1);
}
.board-poster-table > ul > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6.4rem;
  padding: 4.8rem;
}
.board-poster-table > ul > li .thumb {
  display: block;
  position: relative;
  width: 28rem;
  height: 0;
  padding-top: 29%;
  border-radius: 1.6rem;
  background: #F5F5F5 url("../images/layout/img_bg.png") no-repeat 50% 50%/10rem;
  overflow: hidden;
}
.board-poster-table > ul > li .thumb span img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.board-poster-table > ul > li .thumb:hover span img, .board-poster-table > ul > li .thumb:focus span img {
  -webkit-transform: translate(-50%, -50%) scale(1.1);
          transform: translate(-50%, -50%) scale(1.1);
}
.board-poster-table > ul > li .text {
  position: relative;
  width: calc(100% - 32.8rem);
}
.board-poster-table > ul > li .text .title-area {
  margin-bottom: 1.45rem;
}
.board-poster-table > ul > li .text .title-area .title {
  float: left;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  padding-right: 2rem;
  color: #222;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.04em;
}
.board-poster-table > ul > li .text .title-area .normal-button {
  float: left;
  font-size: 1.6rem;
}
.board-poster-table > ul > li .text .title-area::after {
  content: "";
  display: table;
  clear: both;
}
.board-poster-table > ul > li .text .info {
  color: #222;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.6;
}
.board-poster-table > ul > li .text .info span {
  position: relative;
}
.board-poster-table > ul > li .text .info span + span {
  padding-left: 1.8rem;
}
.board-poster-table > ul > li .text .info span + span::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0.6rem;
  top: 50%;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: #222;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.board-poster-table > ul > li .text .list {
  margin-top: 2.2rem;
}
.board-poster-table > ul > li .text .list > li {
  padding: 2rem;
  border-radius: 1.2rem;
  border: 1px solid var(--line-color-1);
  background: var(--bg-color-1);
}
.board-poster-table > ul > li .text .list > li strong {
  color: var(--color-3);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.04em;
}
.board-poster-table > ul > li .text .list > li p {
  margin-top: 0.8rem;
  color: #444;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.6;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.board-poster-table > ul > li .text .list > li + li {
  margin-top: 1.2rem;
}
.board-poster-table > ul > li + li {
  border-top: 1px solid var(--line-color-1);
}

/* 프로그램 : 연사 및 패널 */
.panel-list > li {
  border: 1px solid var(--line-color-1);
  border-radius: 0.8rem;
  overflow: hidden;
}
.panel-list > li .title-btn {
  position: relative;
  width: 100%;
  padding: 2.7rem 4.8rem;
  color: var(--color-1);
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: left;
}
.panel-list > li .title-btn::after {
  content: "\ea4e";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 50%;
  right: 4.8rem;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  background: var(--bg-color-2);
  color: var(--color-1);
  font-size: 2.8rem;
  font-weight: 400;
  font-family: "remixicon" !important;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.panel-list > li .con {
  width: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
}
.panel-list > li .con .list > li {
  padding: 4.8rem 6.4rem;
}
.panel-list > li .con .list > li .img {
  float: left;
  display: block;
  position: relative;
  width: 22rem;
  height: 26.4rem;
  border: 1px solid var(--line-color-1);
  border-radius: 0.8rem;
  background: var(--bg-color-2);
}
.panel-list > li .con .list > li .img img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  min-height: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.panel-list > li .con .list > li .item {
  float: left;
  position: relative;
  width: calc(100% - 22rem);
  padding: 0 5.6rem;
}
.panel-list > li .con .list > li .item .tags {
  padding-right: 20rem;
}
.panel-list > li .con .list > li .item .tags .tag {
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.8rem;
  padding: 0.8rem 1.6rem;
  border-radius: 0.4rem;
  background: #ddd;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.4;
}
.panel-list > li .con .list > li .item .tags .tag.type1 {
  background-color: #EDF1FF;
  color: var(--color-3);
}
.panel-list > li .con .list > li .item .tags .tag.type2 {
  background-color: #EBF8F3;
  color: #22A97E;
}
.panel-list > li .con .list > li .item .tit {
  display: block;
  margin: 4rem 0;
  color: #222;
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.4;
}
.panel-list > li .con .list > li .item .tit a:hover, .panel-list > li .con .list > li .item .tit a:focus {
  color: var(--color-3);
  text-decoration: underline;
  text-underline-position: under;
}
.panel-list > li .con .list > li .item .name {
  color: #222;
  font-size: 2.2rem;
  font-weight: 600;
}
.panel-list > li .con .list > li .item .name span {
  padding-left: 0.8rem;
  color: var(--color-1);
  font-size: 1.8rem;
  font-weight: 500;
}
.panel-list > li .con .list > li .item .text {
  margin-top: 1.6rem;
  color: #444;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.4;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.panel-list > li .con .list > li .item .text + .text {
  margin-top: 0.8rem;
}
.panel-list > li .con .list > li .item .btns {
  position: absolute;
  right: 0;
  top: -0.2rem;
}
.panel-list > li .con .list > li::after {
  content: "";
  display: table;
  clear: both;
}
.panel-list > li .con .list > li + li {
  border-top: 1px solid var(--line-color-1);
}
.panel-list > li + li {
  margin-top: 1.6rem;
}
.panel-list > li.active .title-btn {
  border-bottom: 1px solid var(--line-color-1);
  background: var(--bg-color-1);
}
.panel-list > li.active .title-btn::after {
  background: var(--color-1);
  color: #fff;
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
.panel-list > li.active .con {
  width: auto;
  height: auto;
  visibility: visible;
  opacity: 1;
}

/* 행사장 위치 */
.location_map {
  width: 100%;
}
.location_map > div {
  width: 100% !important;
}
.location_map .area {
  padding: 4rem 4.8rem;
  border-bottom: 1px solid var(--line-color-1);
}
.location_map .area p {
  float: left;
  position: relative;
  padding: 0.5rem 0 0.5rem 4.8rem;
  color: #222;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.4;
  word-break: break-all;
}
.location_map .area p::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  width: 4rem;
  height: 4rem;
  background: url("../images/sub/location_pin_icon.svg") no-repeat 50% 50%/cover;
}
.location_map .area .normal-button {
  float: right;
}
.location_map .area::after {
  content: "";
  display: table;
  clear: both;
}

.root_daum_roughmap .wrap_controllers,
.root_daum_roughmap .cont {
  display: none !important;
}

.directions .list > li {
  position: relative;
  padding-left: 1.6rem;
}
.directions .list > li > p {
  color: #000;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.03em;
}
.directions .list > li ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.8rem;
  padding-top: 0.8rem;
}
.directions .list > li ol > li {
  position: relative;
  color: #444;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 2.8rem;
}
.directions .list > li ol > li .num {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  vertical-align: middle;
  width: 2.8rem;
  height: 2.8rem;
  margin-right: 0.4rem;
  border-radius: 50%;
  color: #FBFCFD;
  font-size: 1.6rem;
  font-weight: 700;
}
.directions .list > li ol > li .num.type1 {
  background-color: #0DA1D9;
}
.directions .list > li ol > li .num.type2 {
  background-color: #15A252;
}
.directions .list > li ol > li .num.type3 {
  background-color: #E7782C;
}
.directions .list > li ol > li b {
  font-weight: 700;
}
.directions .list > li ol > li + li::before {
  content: "\ea6c";
  padding-right: 0.8rem;
  color: #222;
  font-family: "remixicon" !important;
}
.directions .list > li + li {
  margin-top: 2.8rem;
}
.directions .list > li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 1rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: #666;
}
.directions .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.6rem 2.4rem;
  margin-top: 4.8rem;
}
.directions .item > li {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 36rem;
          flex: 1 1 36rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.6rem;
  padding: 2.4rem 4.8rem;
  border: 1px solid var(--line-color-1);
  border-radius: 0.8rem;
  background: var(--bg-color-2);
}
.directions .item > li .station {
  display: inline-block;
  padding: 0.8rem 1.6rem 0.8rem 0.8rem;
  border-radius: 4rem;
  background: #15A252;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.4;
}
.directions .item > li .station b {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  margin-right: 0.8rem;
  border-radius: 50%;
  background: #fff;
  color: #15A252;
}
.directions .item > li > p {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #222;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.4;
}
.directions .item > li > p span {
  text-decoration: underline;
  text-underline-position: under;
}

/* 참가신청 */
.box1 {
  padding: 6.4rem;
  border: 1px solid var(--line-color-1);
  border-radius: 2.4rem;
}
.box1 .desc {
  color: #444;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.4;
}
.box1 .desc:not(:first-child) {
  margin-top: 2.4rem;
}
.box1 .normal-table-caption {
  display: block;
  margin: 2.4rem 0;
  color: #222;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.6;
}
.box1 .form-table {
  width: 100%;
  max-width: 64rem;
  margin: 0 auto;
}
.box1 .box2 {
  margin-top: 0.8rem;
  padding: 1.6rem;
  border-radius: 0;
  background: #F5F5F5;
  color: var(--color-1);
  font-size: 1.6rem;
  font-weight: 600;
}

.box2 {
  margin-top: 4.8rem;
  padding: 6.4rem;
  border-radius: 2.4rem;
  background: #F6F8F9;
  color: var(--color-1);
  font-size: 1.6rem;
  font-weight: 600;
}
.box2 .desc {
  color: #444;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.4;
}
.box2 .desc:not(:first-child) {
  margin-top: 2.4rem;
}
.box2 .normal-table-caption {
  display: block;
  margin: 2.4rem 0;
  color: #222;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.6;
}
.box2 .form-table {
  width: 100%;
  max-width: 64rem;
  margin: 0 auto;
}

.consent > li {
  margin-top: 2.4rem;
}
.consent > li .txt {
  float: left;
  color: #444;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.02em;
}
.consent > li .normal-chk-list {
  float: right;
}
.consent > li::after {
  content: "";
  display: table;
  clear: both;
}

.normal-table table tbody tr th {
  background: #F4F9FF;
  color: var(--color-1);
  font-size: 1.8rem;
  font-weight: 500;
}
.normal-table table tbody tr td {
  padding: 1.2rem;
  font-size: 1.8rem;
}

.form-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0.8rem;
}
.form-table table tbody th {
  width: 12rem;
  color: #444;
  font-size: 2rem;
  font-weight: 500;
  text-align: left;
}
.form-table table tbody th .essential::after {
  content: " *";
  color: #00C284;
  font-weight: 600;
}
.form-table table tbody td .normal-input {
  min-width: 40%;
}
.form-table table tbody td .txt {
  margin-top: 0.8rem;
  color: #444;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.3;
}

.bottom-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.4rem;
}
.bottom-btns .normal-button.type-round {
  min-width: 18rem;
  border-radius: 50rem;
}

.h3 .right,
.h4 .right {
  float: right;
  margin-top: 1.4rem;
  font-size: 1.6rem;
}

.point1 {
  color: var(--color-1) !important;
}

.point2 {
  color: var(--color-2) !important;
}

.point3 {
  color: var(--color-3) !important;
}

.point4 {
  color: #00C284 !important;
  text-decoration: none;
}

/* 참가신청완료 */
.completion {
  margin-bottom: 4.8rem;
  padding: 4rem 3rem 8rem;
  background: #F4F9FF;
  border: 1px solid var(--line-color-1);
  border-radius: 2.4rem;
}
.completion .tit {
  margin-bottom: 1.6rem;
  color: var(--color-1);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.02em;
  text-align: center;
}
.completion .tit:before {
  content: "";
  display: block;
  width: 8rem;
  height: 8rem;
  margin: 0 auto;
  background: url("../images/sub/icon_check.svg") no-repeat 50% 50%/cover;
}
.completion .desc {
  margin-bottom: 2.4rem;
  color: #222;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
}
.completion .con {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2.4rem;
  max-width: 80rem;
  margin: 0 auto;
}
.completion .con .img {
  display: block;
  position: relative;
  width: 25rem;
  border-radius: 1.6rem;
  background: #F5F5F5 url("../images/layout/img_bg.png") no-repeat 50% 50%/10rem;
  overflow: hidden;
}
.completion .con .img img {
  width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.completion .con .box1 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 2.4rem 4.8rem;
  background: #fff;
}
.completion .con .box1 .list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1.6rem 0;
  color: #222;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
}
.completion .con .box1 .list > li span {
  display: inline-block;
  vertical-align: middle;
  width: 8rem;
  color: var(--color-1);
  font-weight: 700;
}
.completion .con .box1 .list > li p {
  width: calc(100% - 8rem);
  word-break: break-all;
}
.completion .con .box1 .list > li + li {
  border-top: 1px solid var(--line-color-1);
}

/* 공지사항 */
#main .board-list-info {
  padding-bottom: 1.6rem;
}
#main .board-list-info .board-list-info-list b {
  color: #222;
}
#main .board-list-info .search {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.2rem;
}

.board-grid-table {
  padding: 4rem 0 8rem;
  border-top: 2px solid var(--color-1);
  border-bottom: 1px solid var(--line-color-1);
}
.board-grid-table ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4.8rem;
}
.board-grid-table ul > li a .thumb {
  display: block;
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 100%;
  border-radius: 1.6rem;
  background: #F5F5F5 url("../images/layout/img_bg.png") no-repeat 50% 50%/10rem;
  overflow: hidden;
}
.board-grid-table ul > li a .thumb img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.board-grid-table ul > li a .title {
  min-height: 5.6rem;
  margin-top: 1.6rem;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: #222;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.02em;
}
.board-grid-table ul > li a:hover .thumb img, .board-grid-table ul > li a:focus .thumb img {
  -webkit-transform: translate(-50%, -50%) scale(1.1);
          transform: translate(-50%, -50%) scale(1.1);
}
.board-grid-table ul > li a:hover .title, .board-grid-table ul > li a:focus .title {
  color: var(--color-1);
}
.board-grid-table[data-library-size=large] ul > li a .thumb {
  padding-top: 178%;
}

[class*=board-wrap].board-view .board-view-info-subject {
  padding: 4rem 2rem;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}
[class*=board-wrap].board-view .normal-table table {
  border-top-width: 1px;
  border-top-color: var(--line-color-1);
}
[class*=board-wrap].board-view .normal-table table tbody tr td {
  word-break: break-all;
}
[class*=board-wrap].board-view .normal-table.bottom {
  margin-top: 8rem;
}
[class*=board-wrap].board-view .normal-table.bottom tr td a {
  display: block;
  position: relative;
  padding-left: 2.2rem;
  font-size: 1.8rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
[class*=board-wrap].board-view .normal-table.bottom tr td a::before {
  position: absolute;
  left: 0;
  top: 0.1rem;
  font-family: "remixicon" !important;
}
[class*=board-wrap].board-view .normal-table.bottom tr td a.prev::before {
  content: "\ea78";
}
[class*=board-wrap].board-view .normal-table.bottom tr td a.next::before {
  content: "\ea4e";
}
[class*=board-wrap].board-view .normal-table.bottom tr td a:hover, [class*=board-wrap].board-view .normal-table.bottom tr td a:focus {
  color: var(--color-1);
  text-decoration: underline;
  text-underline-position: under;
}
[class*=board-wrap].board-view .board-view-content {
  padding: 4rem;
  border-bottom: 1px solid var(--line-color-1);
  color: #222;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  word-break: break-all;
}
[class*=board-wrap].board-view .board-view-content > *:not(img) {
  text-align: left;
}

.board-cell-subject .board-list-link-text {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  white-space: inherit;
}

.board-view-file-link::before {
  content: "\f0b0";
  position: absolute;
  left: 0;
  top: 0;
  color: #444;
  font-family: "remixicon" !important;
}

.normal-pagination {
  padding-top: 4rem;
}
.normal-pagination .ri-arrow-left-double-fill {
  display: inline-block;
  width: 1.8rem;
  height: 1.8rem;
  background: url("../images/layout/arrow-left-double-line.svg") no-repeat 50% 50%/cover;
  text-align: center;
}
.normal-pagination .ri-arrow-right-double-fill {
  display: inline-block;
  width: 1.8rem;
  height: 1.8rem;
  background: url("../images/layout/arrow-right-double-line.svg") no-repeat 50% 50%/cover;
  text-align: center;
}

.normal-button {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.normal-button[class*=bg-w]:hover, .normal-button[class*=bg-w]:focus {
  opacity: 0.8;
}

/* 참가신청 마감 */
.deadline {
  margin-bottom: 4.8rem;
  padding: 4rem 2rem 8rem;
  border: 1px solid var(--line-color-1);
  border-radius: 2.4rem;
  background: var(--bg-color-1);
  text-align: center;
}
.deadline .tit {
  position: relative;
  margin-bottom: 1.6rem;
  color: var(--color-1);
  font-size: 3.2rem;
  font-weight: 700;
}
.deadline .tit b {
  color: var(--color-3);
  font-weight: 700;
}
.deadline .tit::before {
  content: "";
  display: block;
  width: 29.4rem;
  max-width: 60%;
  height: 24rem;
  margin: 0 auto 2.4rem;
  background: url("../images/sub/deadline_icon.svg") no-repeat 50% 50%/100% auto;
}
.deadline .desc {
  font-size: 2rem;
}

/* 없는 페이지 */
.none-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.6rem;
  min-height: 68rem;
  padding: 12rem;
  border-radius: 2.4rem;
  background: #DCECFB url("../images/sub/none_icon.png") no-repeat 100% 50%/50%;
}
.none-page h4 {
  color: var(--color-1);
  font-size: 4.8rem;
  line-height: 1.4;
  letter-spacing: -0.03em;
}
.none-page p {
  margin-top: 1.6rem;
  color: var(--color-1);
  font-size: 2rem;
  line-height: 1.6;
  letter-spacing: -0.06em;
}

/**********************
반응형
**********************/
@media (max-width: 1024px) {
  /* 공지사항 */
  .board-grid-table ul {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
  /* 소개 : 개최성과 */
  .board-poster-table > ul > li {
    gap: 3.2rem;
    padding: 4rem 1.6rem;
  }
  .board-poster-table > ul > li .thumb {
    padding-top: 40%;
  }
  .board-view-thumb {
    width: 100%;
    padding: 0 7rem;
  }
  .board-view-thumb-main .swiper-slide {
    padding-top: 80%;
  }
  .board-view-thumb [class*=move-] {
    width: 5.4rem;
    height: 5.4rem;
  }
}
@media (max-width: 920px) {
  /* 프로그램 : 연사 및 패널 */
  .panel-list > li .title-btn {
    padding: 2.7rem 3.6rem;
  }
  .panel-list > li .title-btn::after {
    right: 3.6rem;
  }
  .panel-list > li .con .list > li {
    padding: 2.8rem 3.4rem;
  }
  .panel-list > li .con .list > li .item {
    padding: 0 0 0 3.6rem;
  }
  .panel-list > li .con .list > li .item .tags {
    padding-right: 0;
  }
  .panel-list > li .con .list > li .item .btns {
    position: static;
    margin-top: 3rem;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  /* 행사장 위치 */
  .location_map .area {
    padding: 4rem 3rem;
  }
  .root_daum_roughmap .wrap_map {
    height: 46rem !important;
  }
  .directions .item > li {
    padding: 2.4rem 2.8rem;
  }
  /* 소개 : 개최성과 */
  .board-poster-table > ul > li .text .list colgroup {
    display: none;
  }
  .board-poster-table > ul > li .text .list tbody tr {
    display: block;
    border: none;
  }
  .board-poster-table > ul > li .text .list tbody tr th,
  .board-poster-table > ul > li .text .list tbody tr td {
    display: inline-block;
    vertical-align: top;
    height: auto;
    padding: 0.5rem 0;
  }
  .board-poster-table > ul > li .text .list tbody tr th {
    width: 9rem;
  }
  .board-poster-table > ul > li .text .list tbody tr td {
    width: calc(100% - 11rem);
  }
  /* 없는 페이지 */
  .none-page {
    padding: 6rem;
    background-image: none;
    text-align: center;
  }
  .none-page::before {
    content: "";
    display: block;
    width: 100%;
    height: 30rem;
    margin-bottom: 3rem;
    background: url("../images/sub/none_icon.png") no-repeat 50% 50%/auto 100%;
  }
  .none-page h4 {
    font-size: 3.8rem;
  }
}
@media (max-width: 768px) {
  #main-container {
    padding: 0 2rem;
  }
  /* 프로그램 : 연사 및 패널 */
  .panel-list > li .con .list > li .img {
    width: 18.5rem;
    height: 23rem;
  }
  .panel-list > li .con .list > li .item {
    width: calc(100% - 18.5rem);
    padding: 0 0 0 2.8rem;
  }
  .panel-list > li .con .list > li .item .tit {
    margin: 2rem 0;
  }
  /* 참가신청 */
  .box1 {
    padding: 3rem;
    border-radius: 1rem;
  }
  /* 참가신청완료 */
  .completion .con .box1 {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
  }
  .completion .con .img {
    margin: 0 auto;
  }
  .completion .box1 .list > li span {
    width: 12rem;
  }
  .completion .box1 .list > li p {
    width: calc(100% - 12rem);
  }
  /* 공지사항 */
  .board-grid-table ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.4rem;
  }
  /* 소개 : 개최성과 */
  .board-poster-table > ul > li .thumb {
    width: 26rem;
    padding-top: 0;
    height: 40rem;
  }
  .board-poster-table > ul > li .text {
    width: calc(100% - 29rem);
  }
  .board-poster-table > ul > li .text .title {
    padding-right: 0;
  }
  .board-poster-table > ul > li .text .btn-area {
    position: static;
    margin-top: 2rem;
    text-align: right;
  }
}
@media (max-width: 520px) {
  /* 프로그램 : 연사 및 패널 */
  .panel-list > li .con .list > li .item {
    width: 100%;
    padding: 3rem 0 0;
  }
  .panel-list > li .con .list > li .img {
    width: 100%;
    height: 32rem;
  }
  /* 참가신청완료 */
  .completion .box1 {
    padding: 2.4rem 3.2rem;
  }
  .completion .box1 .list > li {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .completion .box1 .list > li span,
  .completion .box1 .list > li p {
    width: 100%;
  }
  /* 공지사항 */
  [class*=board-wrap].board-view .board-view-content {
    padding: 4rem 1rem;
  }
  /* 소개 : 개최성과 */
  .board-poster-table > ul > li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .board-poster-table > ul > li .thumb {
    width: 100%;
    padding-top: 120%;
  }
  .board-poster-table > ul > li .text {
    width: 100%;
  }
}
@media (max-width: 420px) {
  /* table */
  .normal-tab ul li a {
    font-size: 1.8rem;
  }
  /* 참가신청 */
  .box1 .form-table tr, .box1 .form-table th, .box1 .form-table td {
    display: block;
  }
  .box1 .form-table tr:not(:first-child) {
    margin-top: 1.6rem;
  }
}