/* 2024 3GTF 시작 */
#gyg_2024 {
  width: 100%;
  height: auto;
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

#gyg_2024 .wrap {
  width: 100%;
  max-width: 1200px;
  height: auto;
}

#gyg_2024 .wrap h2 {
  font-family: 'SD_B';
	font-weight: bold;
  font-size: 50px;
  text-align: center;
  margin-bottom: 100px;
}

#gyg_2024 .wrap .sec_01 {
  width: 100%;
  height: auto;
  margin-bottom: 100px;
}

#gyg_2024 .wrap h3 {
  font-family: 'SD_B';
	font-weight: bold;
  font-size: 30px;
  margin-bottom: 30px;
}

#gyg_2024 .wrap .sec_01 .container {
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

#gyg_2024 .wrap .sec_01 .container .banner {
  width: auto;
  height: auto;
  flex-shrink: 0;
}

#gyg_2024 .wrap .sec_01 .container .box {
  width: 100%;
  height: auto;
  border-top: 2px solid #000;
  border-bottom: 1px solid #000;
}

#gyg_2024 .wrap .sec_01 .container .box .item {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  padding: 15px 10px;
  border-bottom: 1px solid #E6E6E6;
}

#gyg_2024 .wrap .sec_01 .container .box .item:last-of-type {
  border-bottom: 0;
  align-items: flex-start;
}

#gyg_2024 .wrap .sec_01 .container .box .item .label {
  width: 150px;
  height: auto;
  flex-shrink: 0;
}

#gyg_2024 .wrap .sec_01 .container .box .item .label p {
  padding: 5px 10px;
  background: #1F7BD3;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'SD_B';
	font-weight: bold;
  font-size: 18px;
  color: #fff;
}

#gyg_2024 .wrap .sec_01 .container .box .item .con {
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

#gyg_2024 .wrap .sec_01 .container .box .item .con p {
  font-family: 'SD_R';
	font-weight: normal;
  font-size: 18px;
}

#gyg_2024 .wrap .sec_01 .container .box .item .con p span {
  font-family: 'SD_B';
	font-weight: bold;
}

#gyg_2024 .wrap .sec_01 .container .box .item .con img {
  width: auto;
  height: auto;
}

#gyg_2024 .wrap .sec_02 {
  width: 100%;
  height: auto;
  margin-bottom: 100px;
}

#gyg_2024 .wrap .sec_02 .container {
  width: 100%;
  height: auto;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

#gyg_2024 .wrap .sec_02 .container .box {
  width: calc((100% - 120px) / 4);
  height: auto;
  position: relative;
}

#gyg_2024 .wrap .sec_02 .container .box img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

#gyg_2024 .wrap .sec_02 .container .box .view {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  opacity: 0;
  transition: all 0.3s;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  gap: 10px;
  background: rgba(000, 000, 000, 0.5);
}

#gyg_2024 .wrap .sec_02 .container .box .view .tit {
  font-family: 'SD_B';
	font-weight: bold;
  font-size: 24px;
  color: #fff;
}

#gyg_2024 .wrap .sec_02 .container .box .view .info {
  font-family: 'SD_R';
	font-weight: normal;
  font-size: 18px;
  color: #fff;
}

#gyg_2024 .wrap .sec_02 .container .box:hover .view {
  opacity: 1;
} 

#gyg_2024 .wrap .sec_03 {
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

#gyg_2024 .wrap .sec_03 .box {
  width: 100%;
  height: auto;
  overflow: hidden;
}

#gyg_2024 .wrap .sec_03 .box .item {
  width: 100%;
  height: 350px;
  cursor: pointer;
}

#gyg_2024 .wrap .sec_03 .box .item * {
  width: 100%;
  height: 100%;
  object-fit: contain;
  aspect-ratio: 16 / 9;
  background: #000;
}

#gyg_2024 .wrap .sec_03 .box .item.pic {
  cursor: grab;
}

#gyg_2024 .wrap .sec_03 .box .item.pic * {
  object-fit: cover;
}

@media (max-width: 1200px) {
  #gyg_2024 .wrap {
    max-width: 90%;
  }

  #gyg_2024 .wrap .sec_01 .container {
    flex-wrap: wrap;
    justify-content: center;
  }

  #gyg_2024 .wrap .sec_01 .container .banner {
    width: 400px;
  }

  #gyg_2024 .wrap .sec_02 .container {
    gap: 20px;
  }

  #gyg_2024 .wrap .sec_02 .container .box {
    width: calc((100% - 20px) / 2);
  }

  #gyg_2024 .wrap h2 {
    font-size: 42px;
  }
}

@media (max-width: 900px) {
  #gyg_2024 .wrap h2 {
    font-size: 32px;
  }

  #gyg_2024 .wrap h3 {
    font-size: 24px;
  }

  #gyg_2024 .wrap .sec_02 .container .box .view {
    opacity: 1;
  }

  #gyg_2024 .wrap .sec_02 .container {
    flex-wrap: wrap;
  }

  #gyg_2024 .wrap .sec_02 .container .box .view .tit {
    font-size: 20px;
  }

  #gyg_2024 .wrap .sec_02 .container .box .view .info {
    font-size: 16px;
  }

  #gyg_2024 .wrap .sec_03 {
    flex-wrap: wrap;
  }
}

@media (max-width: 700px) {
  #gyg_2024 .wrap h2 {
    font-size: 24px;
  }

  #gyg_2024 .wrap h3 {
    font-size: 20px;
  }

  #gyg_2024 .wrap .sec_01 .container .box .item .label p {
    font-size: 14px;
  }

  #gyg_2024 .wrap .sec_01 .container .box .item .label {
    width: 120px;
  }

  #gyg_2024 .wrap .sec_01 .container .box .item .con p {
    font-size: 14px;
  }

  #gyg_2024 .wrap .sec_01 .container .box .item .con img {
    height: 20px;
  }

  #gyg_2024 .wrap .sec_02 .container .box .view .tit {
    font-size: 18px;
  }
}

@media (max-width: 500px) {
  #gyg_2024 {
    padding: 50px 0;
  }

  #gyg_2024 .wrap h2 {
    font-size: 20px;
    margin-bottom: 50px;
  }

  #gyg_2024 .wrap h3 {
    font-size: 18px;
  }

  #gyg_2024 .wrap .sec_01 .container .banner {
    width: 100%;
  }

  #gyg_2024 .wrap .sec_01 .container .box .item .con p br {
    display: none;
  }

  #gyg_2024 .wrap .sec_01 .container .box .item .label p {
    font-size: 12px;
  }

  #gyg_2024 .wrap .sec_01 .container .box .item .con p {
    font-size: 12px;
  }

  #gyg_2024 .wrap .sec_01 .container .box .item .con img {
    height: 15px;
  }

  #gyg_2024 .wrap .sec_01 {
    margin-bottom: 50px;
  }

  #gyg_2024 .wrap .sec_02 .container .box .view .tit {
    font-size: 16px;
  }  

  #gyg_2024 .wrap .sec_02 .container .box .view .info {
    font-size: 14px;
  }

  #gyg_2024 .wrap .sec_02 {
    margin-bottom: 50px;
  }

  #gyg_2024 .wrap .sec_03 .box .item {
    height: 250px;
  }
}

@media (max-width: 400px) {
  #gyg_2024 .wrap h2 {
    padding: 0 20px;
  }

  #gyg_2024 .wrap h3 {
    font-size: 16px;
    margin-bottom: 20px;
  }

  #gyg_2024 .wrap .sec_01 .container .box .item .label p {
    font-size: 12px;
    padding: 5px;
  }

  #gyg_2024 .wrap .sec_01 .container .box .item .label {
    width: 100px;
  }

  #gyg_2024 .wrap .sec_01 .container .box .item .con p {
    font-size: 12px;
  }

  #gyg_2024 .wrap .sec_01 .container .box .item .con img {
    height: 15px;
  }

  #gyg_2024 .wrap .sec_01 .container .box .item .con {
    gap: 10px;
  }

  #gyg_2024 .wrap .sec_01 .container .box .item {
    padding: 10px 5px;
  }

  #gyg_2024 .wrap .sec_02 .container {
    gap: 10px;
  }

  #gyg_2024 .wrap .sec_02 .container .box {
    width: calc((100% - 10px) / 2);
  }

  #gyg_2024 .wrap .sec_02 .container .box .view .tit {
    font-size: 14px;
  }

  #gyg_2024 .wrap .sec_02 .container .box .view .info {
    font-size: 12px;
  }

  #gyg_2024 .wrap .sec_02 .container .box .view {
    gap: 5px;
    padding-bottom: 10px;
  }

  #gyg_2024 .wrap .sec_03 .box .item {
    height: 200px;
  }
}
/* 2024 3GTF 종료 */

/* 2025 경기국제포럼 시작 */
#gyg_2025 {
  width: 100%;
  height: auto;
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

#gyg_2025 .wrap {
  width: 100%;
  max-width: 1200px;
  height: auto;
}

#gyg_2025 .wrap h2 {
  font-family: 'SD_B';
	font-weight: bold;
  font-size: 50px;
  text-align: center;
  margin-bottom: 100px;
}

#gyg_2025 .wrap .sec_01 {
  width: 100%;
  height: auto;
  margin-bottom: 100px;
}

#gyg_2025 .wrap h3 {
  font-family: 'SD_B';
	font-weight: bold;
  font-size: 30px;
  margin-bottom: 30px;
}

#gyg_2025 .wrap .sec_01 .container {
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

#gyg_2025 .wrap .sec_01 .container .banner {
  width: auto;
  height: auto;
  flex-shrink: 0;
}

#gyg_2025 .wrap .sec_01 .container .box {
  width: 100%;
  height: auto;
  border-top: 2px solid #000;
  border-bottom: 1px solid #000;
}

#gyg_2025 .wrap .sec_01 .container .box .item {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  padding: 15px 10px;
  border-bottom: 1px solid #E6E6E6;
}

#gyg_2025 .wrap .sec_01 .container .box .item:last-of-type {
  border-bottom: 0;
  align-items: flex-start;
}

#gyg_2025 .wrap .sec_01 .container .box .item .label {
  width: 150px;
  height: auto;
  flex-shrink: 0;
}

#gyg_2025 .wrap .sec_01 .container .box .item .label p {
  padding: 5px 10px;
  background: #1F7BD3;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'SD_B';
	font-weight: bold;
  font-size: 16px;
  color: #fff;
}

#gyg_2025 .wrap .sec_01 .container .box .item .con {
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

#gyg_2025 .wrap .sec_01 .container .box .item .con p {
  font-family: 'SD_R';
	font-weight: normal;
  font-size: 18px;
}

#gyg_2025 .wrap .sec_01 .container .box .item .con p span {
  font-family: 'SD_B';
	font-weight: bold;
}

#gyg_2025 .wrap .sec_01 .container .box .item .con img {
  width: auto;
  height: auto;
}

#gyg_2025 .wrap .sec_02 {
  width: 100%;
  height: auto;
}

#gyg_2025 .wrap .sec_02 .container {
  width: 100%;
  height: auto;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

#gyg_2025 .wrap .sec_02 .container .box {
  width: calc((100% - 120px) / 4);
  height: 400px;
  position: relative;
  padding: 30px;
}

#gyg_2025 .wrap .sec_02 .container .box h4 {
  font-family: 'SD_B';
	font-weight: bold;
  font-size: 30px;
  color: #fff;
  margin-bottom: 5px;
}

#gyg_2025 .wrap .sec_02 .container .box h5 {
  font-family: 'SD_R';
	font-weight: normal;
  font-size: 20px;
  color: #fff;
}

#gyg_2025 .wrap .sec_02 .container .box:nth-of-type(1) {
  background: url(../img/sub/gyg_2025/item_22.png) no-repeat right center / cover;
}

#gyg_2025 .wrap .sec_02 .container .box:nth-of-type(2) {
  background: url(../img/sub/gyg_2025/item_23.png) no-repeat right center / cover;
}

#gyg_2025 .wrap .sec_02 .container .box:nth-of-type(3) {
  background: url(../img/sub/gyg_2025/item_24.png) no-repeat right center / cover;
}

#gyg_2025 .wrap .sec_02 .container .box:nth-of-type(4) {
  background: url(../img/sub/gyg_2025/item_25.png) no-repeat right center / cover;
}

#gyg_2025 .wrap .sec_02 .container .box .view {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  opacity: 0;
  transition: all 0.3s;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  gap: 10px;
}

#gyg_2025 .wrap .sec_02 .container .box:nth-of-type(1) .view {
  background: transparent;
  background: linear-gradient(180deg, transparent 0%, rgba(128, 73, 134, 1) 100%);
}

#gyg_2025 .wrap .sec_02 .container .box:nth-of-type(2) .view {
  background: transparent;
  background: linear-gradient(180deg, transparent 0%, rgba(38, 85, 92, 1) 100%);
}

#gyg_2025 .wrap .sec_02 .container .box:nth-of-type(3) .view {
  background: transparent;
  background: linear-gradient(180deg, transparent 0%, rgba(81, 145, 96, 1) 100%);
}

#gyg_2025 .wrap .sec_02 .container .box:nth-of-type(4) .view {
  background: transparent;
  background: linear-gradient(180deg, transparent 0%, rgba(121, 108, 63, 1) 100%);
}

#gyg_2025 .wrap .sec_02 .container .box .view .tit {
  font-family: 'SD_B';
	font-weight: bold;
  font-size: 24px;
  color: #fff;
}

#gyg_2025 .wrap .sec_02 .container .box .view .info {
  font-family: 'SD_R';
	font-weight: normal;
  font-size: 18px;
  color: #fff;
}

#gyg_2025 .wrap .sec_02 .container .box:hover .view {
  opacity: 1;
} 

@media (max-width: 1200px) {
  #gyg_2025 .wrap {
    max-width: 90%;
  }

  #gyg_2025 .wrap .sec_01 .container {
    flex-wrap: wrap;
    justify-content: center;
  }

  #gyg_2025 .wrap .sec_01 .container .banner {
    width: 400px;
  }

  #gyg_2025 .wrap .sec_02 .container {
    gap: 20px;
  }

  #gyg_2025 .wrap .sec_02 .container .box {
    width: calc((100% - 20px) / 2);
  }

  #gyg_2025 .wrap h2 {
    font-size: 42px;
  }
}

@media (max-width: 900px) {
  #gyg_2025 .wrap h2 {
    font-size: 32px;
  }

  #gyg_2025 .wrap h3 {
    font-size: 24px;
  }

  #gyg_2025 .wrap .sec_02 .container .box .view {
    opacity: 1;
  }

  #gyg_2025 .wrap .sec_02 .container {
    flex-wrap: wrap;
  }

  #gyg_2025 .wrap .sec_02 .container .box .view .tit {
    font-size: 20px;
  }

  #gyg_2025 .wrap .sec_02 .container .box .view .info {
    font-size: 16px;
  }
}

@media (max-width: 700px) {
  #gyg_2025 .wrap h2 {
    font-size: 24px;
  }

  #gyg_2025 .wrap h3 {
    font-size: 20px;
  }

  #gyg_2025 .wrap .sec_01 .container .box .item .label p {
    font-size: 14px;
  }

  #gyg_2025 .wrap .sec_01 .container .box .item .label {
    width: 90px;
  }

  #gyg_2025 .wrap .sec_01 .container .box .item .con p {
    font-size: 14px;
  }

  #gyg_2025 .wrap .sec_01 .container .box .item .con img {
    height: 20px;
  }

  #gyg_2025 .wrap .sec_02 .container .box .view .tit {
    font-size: 18px;
  }
}

@media (max-width: 500px) {
  #gyg_2025 {
    padding: 50px 0;
  }

  #gyg_2025 .wrap h2 {
    font-size: 20px;
    margin-bottom: 50px;
  }

  #gyg_2025 .wrap h3 {
    font-size: 18px;
  }

  #gyg_2025 .wrap .sec_01 .container .banner {
    width: 100%;
  }

  #gyg_2025 .wrap .sec_01 .container .box .item .con p br {
    display: none;
  }

  #gyg_2025 .wrap .sec_01 .container .box .item .label p {
    font-size: 12px;
  }

  #gyg_2025 .wrap .sec_01 .container .box .item .con p {
    font-size: 12px;
  }

  #gyg_2025 .wrap .sec_01 .container .box .item .con img {
    height: 15px;
  }

  #gyg_2025 .wrap .sec_01 {
    margin-bottom: 50px;
  }

  #gyg_2025 .wrap .sec_02 .container .box .view .tit {
    font-size: 16px;
  }  

  #gyg_2025 .wrap .sec_02 .container .box .view .info {
    font-size: 14px;
  }

  #gyg_2025 .wrap .sec_02 .container .box {
    height: 300px;
  }

  #gyg_2025 .wrap .sec_02 .container .box h4 {
    font-size: 20px;
  }

  #gyg_2025 .wrap .sec_02 .container .box h5 {
    font-size: 16px;
  }
}

@media (max-width: 400px) {
  #gyg_2025 .wrap h2 {
    padding: 0 20px;
  }

  #gyg_2025 .wrap h3 {
    font-size: 16px;
    margin-bottom: 20px;
  }

  #gyg_2025 .wrap .sec_01 .container .box .item .label p {
    font-size: 12px;
    padding: 5px;
  }

  #gyg_2025 .wrap .sec_01 .container .box .item .label {
    width: 70px;
  }

  #gyg_2025 .wrap .sec_01 .container .box .item .con p {
    font-size: 12px;
  }

  #gyg_2025 .wrap .sec_01 .container .box .item .con img {
    height: 15px;
  }

  #gyg_2025 .wrap .sec_01 .container .box .item .con {
    gap: 10px;
  }

  #gyg_2025 .wrap .sec_01 .container .box .item {
    padding: 10px 5px;
  }

  #gyg_2025 .wrap .sec_02 .container {
    gap: 10px;
  }

  #gyg_2025 .wrap .sec_02 .container .box {
    width: calc((100% - 10px) / 2);
  }

  #gyg_2025 .wrap .sec_02 .container .box .view .tit {
    font-size: 14px;
  }

  #gyg_2025 .wrap .sec_02 .container .box .view .info {
    font-size: 10px;
  }

  #gyg_2025 .wrap .sec_02 .container .box .view {
    gap: 5px;
    padding-bottom: 10px;
  }

  #gyg_2025 .wrap .sec_02 .container .box {
    height: 200px;
    padding: 10px;
  }

  #gyg_2025 .wrap .sec_02 .container .box h4 {
    font-size: 16px;
  }

  #gyg_2025 .wrap .sec_02 .container .box h5 {
    font-size: 12px;
  }
}
/* 2025 경기국제포럼 종료 */

/* 전체프로그램 시작 */
#programs {
  width: 100%;
  height: auto;
  padding: 100px 0;
}

#programs h2 {
  font-family: 'SD_B';
	font-weight: bold;
  font-size: 50px;
  text-align: center;
  margin-bottom: 100px;
}

#programs .wrap {
  width: 100%;
  max-width: 1200px;
  height: auto;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
}

#programs .wrap .container {
  width: 100%;
  height: auto;
}

#programs .wrap .container .title {
  width: 100%;
  height: auto;
  padding: 15px 0;
  background: #A586BC;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  gap: 10px;
}

#programs .wrap .container .title span {
  width: 100px;
  height: 30px;
  border-radius: 5px;
  background: #F6F1F7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'SD_B';
	font-weight: bold;
  font-size: 20px;
  color: #A586BC;
}

#programs .wrap .container .title h3 {
  font-family: 'SD_B';
	font-weight: bold;
  font-size: 20px;
  color: #fff;
}

#programs .wrap .container .con {
  width: 100%;
  height: 160px;
  padding: 30px;
  background: #F6F1F7;
  border-bottom: 3px solid #A586BC;
  display: flex;
  flex-direction: column;
  gap: 5px;
  border-right: 1px solid #E6E6E6;
}

#programs .wrap .container .con:last-of-type {
  border-bottom: 0;
}

#programs .wrap .container:last-of-type .con:last-of-type {
  border-bottom: 0;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}

#programs .wrap .container .con .tit {
  display: flex;
  align-items: center;
  gap: 10px;
}

#programs .wrap .container .con .tit span {
  width: 220px;
  height: 30px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background: #A586BC;
  font-family: 'SD_B';
	font-weight: bold;
  font-size: 20px;
  color: #fff;
}

#programs .wrap .container .con .tit p {
  font-family: 'SD_R';
	font-weight: normal;
  font-size: 18px;
  color: #3D3D3D;
}

#programs .wrap .container .con .txt {
  font-family: 'SD_B';
	font-weight: bold;
  font-size: 20px;
  color: #3D3D3D;
}

#programs .wrap .container .con .txt.pp {
  color: #A586BC;
}

#programs .wrap .container:last-of-type .title {
  background: #61C0BD;
}

#programs .wrap .container:last-of-type .title span {
  background: #EEF8F9;
  color: #61C0BD;
}

#programs .wrap .container:last-of-type .con {
  background: #EEF8F9;
  border-bottom: 3px solid #61C0BD;
  border-left: 1px solid #E6E6E6;
  border-right: none;
}

#programs .wrap .container:last-of-type .con .tit span {
  background: #61C0BD;
}

#programs .wrap .container:last-of-type .con .txt.pp {
  color: #61C0BD;
}

@media (max-width: 1200px) {
  #programs .wrap {
    max-width: 90%;
  }

  #programs h2 {
    font-size: 42px;
  }

  #programs .wrap .container .con .txt {
    font-size: 18px;
  }
}

@media (max-width: 900px) {
  #programs .wrap {
    flex-wrap: wrap;
  }

  #programs .wrap .container {
    border-right: none;
  }

  #programs .wrap .container:last-of-type .con {
    border-left: none;
  }

  #programs h2 {
    font-size: 32px;
  }
}

@media (max-width: 700px) {
  #programs h2 {
    font-size: 24px;
  }

  #programs .wrap .container .title span {
    width: 80px;
    height: 25px;
    font-size: 16px;
  }

  #programs .wrap .container .title h3 {
    font-size: 18px;
  }

  #programs .wrap .container .con {
    padding: 20px;
  }

  #programs .wrap .container .con .tit span {
    width: 180px;
    height: 25px;
    font-size: 16px;
  }

  #programs .wrap .container .con .tit p {
    font-size: 16px;
  }

  #programs .wrap .container .con .txt {
    font-size: 14px;
  }
}

@media (max-width: 500px) {
  #programs {
    padding: 50px 0;
  }

  #programs h2 {
    font-size: 20px;
    margin-bottom: 50px;
  }

  #programs .wrap .container .title span {
    width: 60px;
    font-size: 14px;
  }

  #programs .wrap .container .title h3 {
    font-size: 16px;
  }

  #programs .wrap .container .con .tit span {
    font-size: 14px;
  }
}

@media (max-width: 400px) {
  #programs .wrap .container .title span {
    width: 50px;
    font-size: 12px;
    height: 20px;
  }

  #programs .wrap .container .title h3 {
    font-size: 14px;
  }

  #programs .wrap .container .title {
    padding: 10px 0;
  }

  #programs .wrap .container .con {
    padding: 10px;
  }

  #programs .wrap .container .con .tit span {
    width: 130px;
    height: 20px;
    font-size: 12px;
  }

  #programs .wrap .container .con .tit p {
    font-size: 12px;
  }

  #programs .wrap .container .con .txt {
    font-size: 12px;
  }

  #programs .wrap .container .con {
    height: 100px;
  }

  #programs .wrap .container:last-of-type .con:last-of-type img {
    width: 100px;
    height: auto;
  }
}
/* 전체프로그램 종료 */

/* 세부 프로그램 시작 */
#d_program {
  width: 100%;
  height: auto;
  padding: 100px 0;
}

#d_program h2 {
  font-family: 'SD_B';
	font-weight: bold;
  font-size: 50px;
  color: #3D3D3D;
  text-align: center;
  margin-bottom: 100px;
}

#d_program .wrap {
  width: 100%;
  max-width: 1200px;
  height: auto;
  margin: 0 auto;
}

#d_program .wrap .btn_wrap {
  width: 100%;
  max-width: 850px;
  height: auto;
  margin: 0 auto 70px;
  display: flex;
  align-items: center;
  gap: 50px;
}

#d_program .wrap .btn_wrap button {
  width: 100%;
  height: 50px;
  border-radius: 10px;
  background: #C2C2C2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: none;
  font-family: 'SD_B';
	font-weight: bold;
  font-size: 20px;
  color: #fff;
}

#d_program .wrap .btn_wrap button:first-of-type.active {
  background: #A586BC;
}

#d_program .wrap .btn_wrap button:last-of-type.active {
  background: #61C0BD;
}

#d_program .wrap .day {
  width: 100%;
  height: auto;
}

#d_program .wrap .day .box {
  width: 100%;
  height: auto;
  padding: 30px 20px;
  border-bottom: 1px solid #C2C2C2;
  display: flex;
  align-items: flex-start;
}

#d_program .wrap .day .box:last-of-type {
  border-bottom: 0;
}

#d_program .wrap .day .box .time {
  width: 170px;
  height: auto;
  flex-shrink: 0;
  padding-top: 10px;
}

#d_program .wrap .day .box .time p {
  font-family: 'SD_R';
  font-weight: normal;
  font-size: 20px;
  color: #3D3D3D;
}

#d_program .wrap .day .box .inner {
  width: 100%;
  height: auto;
}

#d_program .wrap .day .box .inner .top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 20px;
}

#d_program .wrap .day .box .inner .top .tit {
  display: flex;
  align-items: flex-end;
}

#d_program .wrap .day .box .inner .top .tit .name {
  padding-left: 15px;
  font-family: 'SD_B';
	font-weight: bold;
  font-size: 30px;
  color: #A586BC;
  display: flex;
  align-items: flex-end;
  gap: 20px;
}

#d_program .wrap #day_2 .box .inner .top .tit .name {
  color: #61C0BD;
}

#d_program .wrap .day .box .inner .top .tit .name span {
  font-family: 'SD_R';
	font-weight: normal;
  font-size: 20px;
  color: #3D3D3D;
}

#d_program .wrap .day .box .inner .top button {
  width: 100px;
  height: 30px;
  border-radius: 5px;
  background: #A586BC;
  border: none;
  font-family: 'SD_B';
	font-weight: bold;
  font-size: 20px;
  color: #fff;
  text-align: center;
}

#d_program .wrap #day_2 .box .inner .top button {
  background: #61C0BD;
}

#d_program .wrap .day .box .inner .con {
  padding-left: 15px;
  font-family: 'SD_B';
	font-weight: bold;
  font-size: 20px;
  color: #3D3D3D;
}

#d_program .wrap .day .box .inner .bottom {
  width: 100%;
  height: auto;
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s;
}

#d_program .wrap .day .box.active .inner .bottom {
  margin-top: 30px;
  max-height: 1050px;
}

#d_program .wrap .day .box .inner .bottom .info {
  width: 100%;
  height: auto;
  padding: 20px;
  border-radius: 10px;
  background: #FAFAFA;
  margin-bottom: 20px;
}

#d_program .wrap .day .box .inner .bottom .info p {
  font-family: 'SD_R';
	font-weight: normal;
  font-size: 18px;
  color: #3D3D3D;
  line-height: 30px;
}

#d_program .wrap .day .box .inner .bottom .people {
  width: 100%;
  height: auto;
  padding: 20px;
  border-radius: 10px;
  background: #FAFAFA;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 25px;
}

#d_program .wrap .day .box .inner .bottom .people .item {
  width: calc((100% - 100px) / 5);
  height: auto;
}

#d_program .wrap .day .box .inner .bottom .people .item img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}

#d_program .wrap .day .box .inner .bottom .people .item .type {
  width: auto;
  height: auto;
  padding: 0 5px;
  border-radius: 2px;
  display: inline-block;
  font-family: 'SD_R';
	font-weight: normal;
  font-size: 18px;
  color: #fff;
  background: #A586BC;
  margin-bottom: 10px;
}

#d_program .wrap #day_2 .box .inner .bottom .people .item .type {
  background: #61C0BD;
}

#d_program .wrap .day .box .inner .bottom .people .item .txt {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-family: 'SD_R';
	font-weight: normal;
  font-size: 13px;
  color: #3D3D3D;
}

#d_program .wrap .day .box .inner .bottom .people .item .txt span {
  font-family: 'SD_B';
	font-weight: bold;
  font-size: 18px;
}

@media (max-width: 1200px) {
  #d_program .wrap {
    max-width: 90%;
  }

  #d_program .wrap .day .box .inner .bottom .info p br {
    display: none;
  }

  #d_program h2 {
    font-size: 42px;
  }
}

@media (max-width: 900px) {
  #d_program h2 {
    font-size: 32px;
  }

  #d_program .wrap .btn_wrap {
    max-width: 100%;
    gap: 30px;
  }

  #d_program .wrap .btn_wrap button {
    font-size: 18px;
  }

  #d_program .wrap .day .box .time p {
    font-size: 18px;
  }

  #d_program .wrap .day .box .time {
    width: 150px;
  }

  #d_program .wrap .day .box .inner .top .tit .name {
    font-size: 24px;
  }

  #d_program .wrap .day .box .inner .top .tit .name span {
    font-size: 18px;
  }

  #d_program .wrap .day .box .inner .top button {
    width: 80px;
    font-size: 16px;
  }

  #d_program .wrap .day .box .inner .con {
    font-size: 16px;
  }

  #d_program .wrap .day .box .inner .bottom .info p {
    font-size: 16px;
    line-height: 25px;
  }

  #d_program .wrap .day .box .inner .bottom .people .item {
    width: calc((100% - 50px) / 3);
  }

  #d_program .wrap .day .box.active .inner .bottom {
    max-height: 1600px;
  }

  #d_program .wrap .day .box .inner .bottom .people .item .type {
    font-size: 14px;
  }

  #d_program .wrap .day .box .inner .bottom .people .item .txt span {
    font-size: 16px;
  }

  #d_program .wrap .day .box .inner .bottom .people .item .txt {
    font-size: 12px;
  }
}

@media (max-width: 700px) {
  #d_program h2 {
    font-size: 24px;
  }

  #d_program .wrap .btn_wrap button {
    font-size: 16px;
    height: 40px;
  }

  #d_program .wrap .day .box {
    flex-wrap: wrap;
    gap: 10px;
  }

  #d_program .wrap .day .box .time {
    width: 100%;
    padding-top: 0;
  }

  #d_program .wrap .day .box .time p {
    font-size: 16px;
  }

  #d_program .wrap .day .box .inner .top .tit .name {
    padding-left: 0;
    font-size: 20px;
  }

  #d_program .wrap .day .box .inner .top .tit .name span {
    font-size: 16px;
  }

  #d_program .wrap .day .box .inner .top button {
    width: 70px;
    height: 25px;
    font-size: 14px;
  }

  #d_program .wrap .day .box .inner .con {
    font-size: 14px;
    padding-left: 0;
  }

  #d_program .wrap .day .box .inner .bottom .info p {
    font-size: 14px;
  }
}

@media (max-width: 500px) {
  #d_program {
    padding: 50px 0;
  }

  #d_program h2 {
    font-size: 20px;
    margin-bottom: 50px;
  }

  #d_program .wrap .btn_wrap {
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 auto 20px;
  }

  #d_program .wrap .btn_wrap button {
    font-size: 14px;
    height: 35px;
    border-radius: 5px;
  }

  #d_program .wrap .day .box .time p {
    font-size: 14px;
  }

  #d_program .wrap .day .box .inner .top .tit .name {
    font-size: 18px;
  }

  #d_program .wrap .day .box .inner .top .tit .name {
    gap: 10px;
  }

  #d_program .wrap .day .box .inner .top .tit .name span {
    font-size: 14px;
  }

  #d_program .wrap .day .box .inner .bottom .info p {
    font-size: 12px;
    line-height: 20px;
  }

  #d_program .wrap .day .box .inner .bottom .people .item {
    width: calc((100% - 25px) / 2);
  }

  #d_program .wrap .day .box .inner .bottom .people .item .type {
    margin-bottom: 5px;
  }

  #d_program .wrap .day .box .inner .bottom .people .item .txt span {
    font-size: 14px;
  }
}

@media (max-width: 400px) {
  #d_program .wrap .day .box .time p {
    font-size: 12px;
  }

  #d_program .wrap .day .box .inner .top .tit .name {
    font-size: 16px;
  }

  #d_program .wrap .day .box .inner .top .tit .name span {
    font-size: 12px;
  }

  #d_program .wrap .day .box .inner .top button {
    width: 60px;
    height: 20px;
    font-size: 12px;
  }

  #d_program .wrap .day .box .inner .con {
    font-size: 12px;
  }

  #d_program .wrap .day .box .inner .bottom .info {
    padding: 10px;
  }

  #d_program .wrap .day .box .inner .bottom .info p {
    font-size: 10px;
    line-height: 15px;
  }

  #d_program .wrap .day .box .inner .bottom .people {
    padding: 10px;
    gap: 10px;
  }

  #d_program .wrap .day .box .inner .bottom .people .item {
    width: calc((100% - 10px) / 2);
  }

  #d_program .wrap .day .box .inner .bottom .people .item .type {
    font-size: 12px;
  }

  #d_program .wrap .day .box .inner .bottom .people .item .txt span {
    font-size: 12px;
  }

  #d_program .wrap .day .box .inner .bottom .people .item .txt {
    font-size: 10px;
  }
}
/* 세부 프로그램 종료 */

/* 연사소개 시작 */
#speakers {
  width: 100%;
  height: auto;
  padding: 100px 0;
}

#speakers h2 {
  font-family: 'SD_B';
	font-weight: bold;
  font-size: 50px;
  color: #3D3D3D;
  text-align: center;
  margin-bottom: 100px;
}

#speakers .wrap {
  width: 100%;
  max-width: 1200px;
  height: auto;
  margin: 0 auto;
}

#speakers .wrap .btn_wrap {
  width: 100%;
  max-width: 850px;
  height: auto;
  display: flex;
  align-items: center;
  gap: 50px;
  margin: 0 auto 100px;
}

#speakers .wrap .btn_wrap button {
  width: 100%;
  height: 50px;
  border-radius: 10px;
  border: none;
  background: #C2C2C2;
  text-align: center;
  font-family: 'SD_B';
	font-weight: bold;
  font-size: 20px;
  color: #fff;
}

#speakers .wrap .btn_wrap button:first-of-type.active {
  background: #A586BC;
}

#speakers .wrap .btn_wrap button:last-of-type.active {
  background: #61C0BD;
}

#speakers .wrap .day {
  width: 100%;
  height: auto;
}

#speakers .wrap .day .box {
  width: 100%;
  height: auto;
  padding: 30px 20px;
  border-bottom: 1px solid #C2C2C2;
  display: flex;
  align-items: flex-start;
}

#speakers .wrap .day .box .time {
  width: 170px;
  height: auto;
  padding-top: 5px;
  flex-shrink: 0;
}

#speakers .wrap .day .box .time p {
  font-family: 'SD_R';
	font-weight: normal;
  font-size: 20px;
  color: #3D3D3D;
}

#speakers .wrap .day .box .con {
  width: 100%;
  height: auto;
}

#speakers .wrap .day .box .con .tit {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  font-family: 'SD_B';
	font-weight: bold;
  font-size: 30px;
  color: #A586BC;
  margin-bottom: 30px;
}

#speakers .wrap #day_2 .box .con .tit {
  color: #61C0BD;
}

#speakers .wrap .day .box .con .tit span {
  font-family: 'SD_R';
	font-weight: normal;
  font-size: 20px;
  color: #3D3D3D;
}

#speakers .wrap .day .box .con .people {
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
}

#speakers .wrap .day .box .con .people .item {
  width: calc((100% - 120px) / 5);
  height: auto;
  cursor: pointer;
}

#speakers .wrap .day .box .con .people .item img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}

#speakers .wrap .day .box .con .people .item .type {
  width: auto;
  height: auto;
  display: inline-block;
  padding: 5px 10px;
  font-family: 'SD_R';
	font-weight: normal;
  font-size: 18px;
  color: #fff;
  background: #A586BC;
  margin-bottom: 10px;
  border-radius: 5px;
}

#speakers .wrap #day_2 .box .con .people .item .type {
  background: #61C0BD;
}

#speakers .wrap .day .box .con .people .item .name {
  font-family: 'SD_B';
	font-weight: bold;
  font-size: 18px;
  color: #3D3D3D;
  margin-bottom: 5px;
}

#speakers .wrap .day .box .con .people .item .info {
  font-family: 'SD_R';
	font-weight: normal;
  font-size: 13px;
  color: #3D3D3D;
}

#panel {
  width: 100%;
  max-width: 1000px;
  height: auto;
  border-radius: 10px;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50% , -50%);
  z-index: 20;
  overflow: hidden;
  display: none;
}

#panel .title {
  width: 100%;
  height: 80px;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #A586BC;
}

#panel.mint .title {
  background: #61C0BD;
}

#panel .title p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'SD_B';
	font-weight: bold;
  font-size: 20px;
  color: #fff;
}

#panel .title p span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
}

#panel .title .close {
  width: 20px;
  height: 20px;
  position: relative;
  cursor: pointer;
}

#panel .title .close span {
  width: 100%;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
}

#panel .title .close span:first-of-type {
  transform: translate(-50%, -50%) rotate(45deg);
}

#panel .title .close span:last-of-type {
  transform: translate(-50%, -50%) rotate(-45deg);  
}

#panel .con {
  width: 100%;
  height: auto;
  padding: 30px;
  background: #fff;
}

#panel .con img {
  width: 100%;
  height: auto;
}

#panel_bg {
  width: 100%;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  background: rgba(000, 000, 000, 0.3);
  z-index: 19;
  display: none;
}

@media (max-width: 1200px) {
  #speakers .wrap {
    max-width: 90%;
  }

  #speakers h2 {
    font-size: 42px;
  }

  #speakers .wrap .day .box .con .people .item {
    width: calc((100% - 60px) / 3);
  }
  
  #panel {
    max-width: 90%;
  }
}

@media (max-width: 900px) {
  #speakers h2 {
    font-size: 32px;
  }

  #speakers .wrap .btn_wrap {
    max-width: 100%;
    gap: 30px;
  }

  #speakers .wrap .btn_wrap button {
    font-size: 18px;
  }

  #speakers .wrap .day .box .time p {
    font-size: 18px;
  }

  #speakers .wrap .day .box .time {
    width: 150px;
  }

  #speakers .wrap .day .box .con .tit {
    font-size: 24px;
  }

  #speakers .wrap .day .box .con .tit span {
    font-size: 18px;
  }

  #speakers .wrap .day .box .con .people .item .type {
    font-size: 14px;
  }

  #speakers .wrap .day .box .con .people .item .name {
    font-size: 16px;
  }

  #speakers .wrap .day .box .con .people .item .info {
    font-size: 12px;
  }
}

@media (max-width: 700px) {
  #speakers h2 {
    font-size: 24px;
  }

  #speakers .wrap .btn_wrap button {
    font-size: 16px;
    height: 40px;
  }

  #speakers .wrap .day .box {
    flex-wrap: wrap;
    gap: 10px;
  }

  #speakers .wrap .day .box .time {
    width: 100%;
    padding-top: 0;
  }

  #speakers .wrap .day .box .time p {
    font-size: 16px;
  }

  #speakers .wrap .day .box .con .tit {
    font-size: 20px;
  }

  #speakers .wrap .day .box .con .tit span {
    font-size: 16px;
  }

  #panel .con {
    padding: 15px;
  }

  #panel .title {
    height: 50px;
  }
}

@media (max-width: 500px) {
  #speakers {
    padding: 50px 0;
  }

  #speakers h2 {
    font-size: 20px;
    margin-bottom: 50px;
  }

  #speakers .wrap .btn_wrap {
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 auto 20px;
  }

  #speakers .wrap .btn_wrap button {
    font-size: 14px;
    height: 35px;
    border-radius: 5px;
  }

  #speakers .wrap .day .box .time p {
    font-size: 14px;
  }

  #speakers .wrap .day .box .con .tit {
    font-size: 18px;
    gap: 10px;
  }

  #speakers .wrap .day .box .con .tit span {
    font-size: 14px;
  }

  #speakers .wrap .day .box .con .people .item {
    width: calc((100% - 30px) / 2);
  }

  #speakers .wrap .day .box .con .people .item .type {
    margin-bottom: 5px;
    padding: 2px 5px;
  }

  #speakers .wrap .day .box .con .people .item .name {
    font-size: 14px;
  }

  #panel .title p {
    font-size: 16px;
  }
}

@media (max-width: 400px) {
  #speakers .wrap .day .box .time p {
    font-size: 12px;
  }

  #speakers .wrap .day .box .con .tit {
    font-size: 16px;
  }

  #speakers .wrap .day .box .con .tit span {
    font-size: 12px;
  }

  #speakers .wrap .day .box .con .people {
    gap: 10px;
  }

  #speakers .wrap .day .box .con .people .item {
    width: calc((100% - 10px) / 2);
  }

  #speakers .wrap .day .box .con .people .item .type {
    font-size: 12px;
  }

  #speakers .wrap .day .box .con .people .item .name {
    font-size: 12px;
  }

  #speakers .wrap .day .box .con .people .item .info {
    font-size: 10px;
  }

  #panel .title {
    height: 35px;
    padding: 0 15px;
  }

  #panel .title p span {
    width: 6px;
    height: 6px;
  }

  #panel .title p {
    font-size: 14px;
    gap: 5px;
  }

  #panel .title .close {
    width: 15px;
    height: 15px;
  }
}
/* 연사소개 종료 */

/* 오시는 길 시작 */
#venue {
  width: 100%;
  height: auto;
  padding: 100px 0;
}

#venue h2 {
  font-family: 'SD_B';
	font-weight: bold;
  font-size: 50px;
  color: #3D3D3D;
  text-align: center;
  margin-bottom: 100px;
}

#venue .wrap {
  width: 100%;
  max-width: 1200px;
  height: auto;
  margin: 0 auto;
}

#venue .wrap .tit {
  display: flex;
  align-items: center;
  gap: 20px;
}

#venue .wrap .tit img {
  width: auto;
  height: auto;
}

#venue .wrap .tit h3 {
  font-family: 'SD_B';
	font-weight: bold;
  font-size: 30px;
}

#venue .wrap .line {
  width: 100%;
  height: 1px;
  background: #C2C2C2;
  margin: 30px auto;
}

#venue .wrap #daumRoughmapContainer1763451726392 {
  width: 100%;
  height: 650px;
  margin-bottom: 50px;
}

#venue .wrap #daumRoughmapContainer1763451726392 .wrap_map {
  width: 100%;
  height: 100%;
}

#venue .wrap .b_l {
  width: 300px;
  height: 50px;
  border-radius: 50px;
  background: #1F7BD3;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'SD_B';
	font-weight: bold;
  font-size: 20px;
  color: #fff;
  margin: 0 auto;
}

@media (max-width: 1200px) {
  #venue .wrap {
    max-width: 90%;
  }

  #venue h2 {
    font-size: 42px;
  }

  #venue .wrap .tit h3 {
    font-size: 24px;
  }
}

@media (max-width: 900px) {
  #venue h2 {
    font-size: 32px;
  }

  #venue .wrap .tit img {
    width: 20px;
  }

  #venue .wrap .tit h3 {
    font-size: 20px;
  }

  #venue .wrap #daumRoughmapContainer1763451726392 {
    height: 500px;
  }

  #venue .wrap .b_l {
    width: 250px;
    font-size: 18px;
  }
}

@media (max-width: 700px) {
  #venue h2 {
    font-size: 24px;
  }

  #venue .wrap .tit img {
    width: 15px;
  }

  #venue .wrap .tit h3 {
    font-size: 16px;
  }

  #venue .wrap .tit {
    gap: 10px;
  }

  #venue .wrap #daumRoughmapContainer1763451726392 {
    height: 350px;
  }

  #venue .wrap .b_l {
    width: 200px;
    height: 40px;
    font-size: 16px;
  }
}

@media (max-width: 500px) {
  #venue {
    padding: 50px 0;
  }

  #venue h2 {
    font-size: 20px;
    margin-bottom: 50px;
  }

  #venue .wrap .tit h3 {
    font-size: 14px;
  }

  #venue .wrap #daumRoughmapContainer1763451726392 {
    height: 250px;
  }

  #venue .wrap .b_l {
    width: 180px;
    height: 35px;
    font-size: 14px;
  }
}

@media (max-width: 400px) {
  #venue .wrap .line {
    margin: 15px auto;
  }

  #venue .wrap #daumRoughmapContainer1763451726392 {
    height: 200px;
  }
}
/* 오시는 길 종료 */

/* 등록안내 시작 */
#guide {
  width: 100%;
  height: auto;
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#guide .inner {
  width: 100%;
  max-width: 1200px;
  height: auto;
}

#guide .sec_01 {
  width: 100%;
  height: auto;
  text-align: center;
  margin-bottom: 100px;
}

#guide .sec_01 h2 {
  font-family: 'SD_B';
	font-weight: bold;
  font-size: 50px;
  margin-bottom: 100px;
}

#guide .sec_01 .wrap {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

#guide .sec_01 .wrap .box {
  width: 100%;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(000,000,000,0.2);
}

#guide .sec_01 .wrap .box .step {
  font-family: 'SD_B';
	font-weight: bold;
  font-size: 20px;
}

#guide .sec_01 .wrap .box img {
  width: auto;
  height: auto;
}

#guide .sec_01 .wrap .box .txt {
  font-family: 'SD_B';
	font-weight: bold;
  font-size: 24px;
}

#guide .sec_01 .wrap .arrow {
  width: auto;
  height: auto;
  flex-shrink: 0;
}

#guide .sec_02 {
  width: 100%;
  height: auto;
  margin-bottom: 50px;
}

#guide .sec_02 .tit {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

#guide .sec_02 .tit img {
  width: auto;
  height: auto;
}

#guide .sec_02 .tit p {
  font-family: 'SD_B';
	font-weight: bold;
  font-size: 30px;
}

#guide .sec_02 ol {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#guide .sec_02 ol li {
  list-style: decimal;
  margin-left: 25px;
  font-family: 'SD_R';
	font-weight: normal;
  font-size: 20px;
}

#guide .sec_03 {
  width: 100%;
  height: auto;
  margin-bottom: 50px;
  padding: 50px 0;
  border-top: 1px dashed #E6E6E6;
  border-bottom: 1px dashed #E6E6E6;
  display: flex;
  align-items: flex-end;
  gap: 20px;
}

#guide .sec_03 .tit {
  display: flex;
  align-items: center;
  gap: 20px;
}

#guide .sec_03 .tit img {
  width: auto;
  height: auto;
}

#guide .sec_03 .tit p {
  font-family: 'SD_B';
	font-weight: bold;
  font-size: 30px;
}

#guide .sec_03 .txt {
  font-family: 'SD_R';
	font-weight: normal;
  font-size: 20px;
}

#guide .sec_04 {
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-end;
  gap: 20px;
}

#guide .sec_04 .tit {
  display: flex;
  align-items: center;
  gap: 20px;
}

#guide .sec_04 .tit img {
  width: auto;
  height: auto;
}

#guide .sec_04 .tit p {
  font-family: 'SD_B';
	font-weight: bold;
  font-size: 30px;
}

#guide .sec_04 .txt {
  font-family: 'SD_R';
	font-weight: normal;
  font-size: 20px;
}

#guide .pre_link {
    width: 300px;
    height: 50px;
    border-radius: 100px;
    border: none;
    background: #1F7BD3;
    font-family: 'SD_B';
    font-weight: bold;
    font-size: 20px;
    color: #fff;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    margin: 100px auto 0;
}

@media (max-width: 1200px) {
  #guide .inner {
    max-width: 90%;
  }

  #guide .sec_01 h2 {
    font-size: 36px;
  }

  #guide .sec_01 .wrap {
    gap: 30px;
  }
}

@media (max-width: 900px) {
  #guide .sec_01 .wrap .box .step {
    font-size: 18px;
  }

  #guide .sec_01 .wrap .box img {
    width: 40px;
  }

  #guide .sec_01 .wrap .box .txt {
    font-size: 20px;
  }

  #guide .sec_01 .wrap .box {
    gap: 20px;
    height: 200px;
  }

  #guide .sec_01 .wrap .arrow {
    width: 20px;
  }

  #guide .sec_02 .tit p,
  #guide .sec_03 .tit p,
  #guide .sec_04 .tit p {
    font-size: 24px;
  }

  #guide .sec_02 ol li,
  #guide .sec_03 .txt,
  #guide .sec_04 .txt {
    font-size: 18px;
    width: 100%;
  }

  #guide .sec_02 ol li {
    margin-left: 20px;
  }

  #guide .sec_03,
  #guide .sec_04 {
    flex-wrap: wrap;
  }
}

@media (max-width: 700px) {
  #guide .sec_01 h2 {
    font-size: 30px;
  }

  #guide .sec_01 .wrap {
    gap: 15px;
  }

  #guide .sec_01 .wrap .box .step {
    font-size: 16px;
  }

  #guide .sec_01 .wrap .box img {
    width: 30px;
  }

  #guide .sec_01 .wrap .box .txt {
    font-size: 16px;
  }

  #guide .sec_01 .wrap .box {
    gap: 10px;
    height: 150px;
  }

  #guide .sec_02 .tit, #guide .sec_03 .tit, #guide .sec_04 .tit {
    gap: 10px;
  }

  #guide .sec_02 .tit p, #guide .sec_03 .tit p, #guide .sec_04 .tit p {
    font-size: 20px;
  }

  #guide .sec_02 .tit img, #guide .sec_03 .tit img, #guide .sec_04 .tit img {
    height: 20px;
  }

  #guide .sec_02 ol li, #guide .sec_03 .txt, #guide .sec_04 .txt {
    font-size: 16px;
  }

  #guide .pre_link {
    width: 250px;
    height: 50px;
    font-size: 18px;
  }
}

@media (max-width: 500px) {
  #guide {
    padding: 50px 0;
  }

  #guide .sec_01 h2 {
    font-size: 24px;
    margin-bottom: 50px;
  }
  
  #guide .sec_01 .wrap .box .step {
    font-size: 14px;
  }

  #guide .sec_01 .wrap .box img {
    width: 25px;
  }

  #guide .sec_01 .wrap .box .txt {
    font-size: 14px;
  }

  #guide .sec_01 .wrap .box {
    height: 120px;
  }

  #guide .sec_01 .wrap .arrow {
    width: 15px;
  }

  #guide .sec_01 {
    margin-bottom: 50px;
  }

  #guide .sec_02 .tit p, #guide .sec_03 .tit p, #guide .sec_04 .tit p {
    font-size: 18px;
  }

  #guide .sec_02 ol li, #guide .sec_03 .txt, #guide .sec_04 .txt {
    font-size: 14px;
  }

  #guide .sec_02 ol li {
    margin-left: 15px;
  }

  #guide .sec_03 {
    padding: 30px 0;
  }

  #guide .pre_link {
    width: 200px;
    height: 40px;
    font-size: 16px;
    margin: 50px auto 0;
  }
}

@media (max-width: 400px) {
  #guide .sec_01 h2 {
    font-size: 20px;
  }

  #guide .sec_01 .wrap .box .step {
    font-size: 10px;
  }

  #guide .sec_01 .wrap .box .txt {
    font-size: 10px;
  }

  #guide .sec_01 .wrap .box img {
    width: 20px;
  }

  #guide .sec_01 .wrap .box {
    gap: 5px;
    height: 80px;
    box-shadow: 0 0 10px rgba(000, 000, 000, 0.2);
  }

  #guide .sec_01 .wrap .arrow {
    width: 10px;
  }

  #guide .sec_02 .tit img, #guide .sec_03 .tit img, #guide .sec_04 .tit img {
    height: 15px;
  }

  #guide .sec_02 .tit p, #guide .sec_03 .tit p, #guide .sec_04 .tit p {
    font-size: 16px;
  }

  #guide .sec_02 .tit {
    margin-bottom: 20px;
  }

  #guide .sec_02 ol li, #guide .sec_03 .txt, #guide .sec_04 .txt {
    font-size: 12px;
  }

  #guide .pre_link {
    width: 120px;
    height: 35px;
    font-size: 12px;
  }
}
/* 등록안내 종료 */

/* 등록확인 시작 */
#check {
  width: 100%;
  max-width: 750px;
  height: auto;
  margin: 0 auto;
  padding: 100px 0;
  display: flex;
  gap: 50px;
  flex-direction: column;
  align-items: center;
}

#check img {
  width: auto;
  height: auto;
}

#check h2 {
  font-family: 'SD_B';
	font-weight: bold;
  font-size: 30px;
  text-align: center;
}

#check form {
  width: 100%;
  height: auto;
}

#check form p {
  font-family: 'SD_R';
	font-weight: normal;
  font-size: 20px;
  margin-bottom: 20px;
}

#check form input {
  width: 100%;
  height: 50px;
  border: 1px solid #C2C2C2;
  padding: 0 30px;
  font-family: 'SD_R';
	font-weight: normal;
  font-size: 16px;
  margin-bottom: 30px;
  display: block;
}

#check form input::placeholder {
  color: #C2C2C2;
}

#check form input:last-of-type {
  margin-bottom: 50px;
}

#check form button {
  width: 300px;
  height: 50px;
  background: #1F7BD3;
  border: none;
  border-radius: 100px;
  font-family: 'SD_B';
	font-weight: bold;
  font-size: 20px;
  color: #fff;
  margin: 0 auto;
  display: block;
}

@media (max-width: 900px) {
  #check img {
    width: 100px;
  }

  #check h2 {
    font-size: 24px;
  }

  #check {
    max-width: 90%;
  }
}

@media (max-width: 700px) {
  #check img {
    width: 80px;
  }

  #check form p {
    font-size: 16px;
  }

  #check form input {
    padding: 0 10px;
    font-size: 14px;
  }

  #check form button {
    width: 250px;
    height: 40px;
    font-family: 'SD_B';
    font-weight: bold;
    font-size: 18px;
  }
}

@media (max-width: 500px) {
  #check {
    padding: 50px 0;
    gap: 30px;
  }

  #check img {
    width: 60px;
  }

  #check h2 {
    font-size: 20px;
  }

  #check form p {
    font-size: 14px;
  }

  #check form input {
    height: 40px;
    font-size: 12px;
    margin-bottom: 20px;
  }

  #check form button {
    width: 200px;
    font-size: 16px;
  }
}

@media (max-width: 400px) {
  #check img {
    width: 50px;
  }

  #check form p {
    font-size: 12px;
  }

  #check form input {
    height: 30px;
    margin-bottom: 10px;
  }

  #check form input:last-of-type {
    margin-bottom: 30px;
  }

  #check form button {
    width: 150px;
    height: 35px;
    font-size: 14px;
  }
}
/* 등록확인 종료 */