:root {
  --color-main: #9747FF;
  --color-sub: #692498;
  --color-white: #FFFFFF;
  --color-black: #000000;
  --font-pretendard: "Pretendard", sans-serif;
  --font-roboto: "Roboto", sans-serif;
}

.font120 {
  --fontsize: 12.0rem;
  font-size: var(--fontsize);
}

.font100 {
  --fontsize: 10.0rem;
  font-size: var(--fontsize);
}

.font60 {
  --fontsize: 6.0rem;
  font-size: var(--fontsize);
}

.font50 {
  --fontsize: 5.0rem;
  font-size: var(--fontsize);
}

.font46 {
  --fontsize: 4.6rem;
  font-size: var(--fontsize);
}

@media (max-width: 1740px) {
  .w1700,
  .w1500 {
    padding: 0 20px;
  }
}
@media (max-width: 1600px) {
  .font120,
  .font100 {
    font-size: calc(var(--fontsize) * 0.78);
  }
  .font60 {
    font-size: calc(var(--fontsize) * 0.86);
  }
  .font50,
  .font46 {
    font-size: calc(var(--fontsize) * 0.88);
  }
  main .number .item span,
  .subContents .introduction .scroller .number .item span {
    font-size: 8rem;
  }
  .subContents .introduction .scroller .cool .text .oo {
    height: 10rem;
  }
  .subContents .introduction .scroller .promote .graph dl {
    width: 660px;
    height: 150px;
    padding: 0 40px;
  }
  .subContents .introduction .scroller .promote .graph dl dd {
    font-size: 6.2rem;
  }
}
@media (max-width: 1400px) {
  .font120,
  .font100 {
    font-size: calc(var(--fontsize) * 0.68);
  }
  .font60 {
    font-size: calc(var(--fontsize) * 0.76);
  }
  .font50,
  .font46 {
    font-size: calc(var(--fontsize) * 0.78);
  }
  main .visual .text {
    padding: 0 80px;
  }
  main .number .item span,
  .subContents .introduction .scroller .number .item span {
    font-size: 6.4rem;
  }
	.tagBox {
		gap: 10px;
	}
  .subContents .introduction .scroller .cool .text .oo {
    height: 8rem;
  }
  .subContents .introduction .scroller .information .grid p {
    font-size: 3rem;
  }
  .subContents .introduction .business .itemBox {
    gap: 0 10px;
  }
	.subContents .search .listBox h6 {
		width: 200px;
	}
	.subContents .search .listBox .tagBox {
		gap: 10px;
	}
}
@media (max-width: 1200px) {
  html,
  body {
    font-size: 56.25%;
  }
  header nav {
    display: none;
  }
  header .flexBox {
    gap: 0 15px;
    margin: 0 0 0 auto;
  }
  header .menuButton {
    display: flex;
  }
  header.menu {
    z-index: 3;
  }
  .allMenu {
    width: 100%;
    min-height: 100vh;
    background: var(--color-white);
    text-align: left;
    padding: 100px 20px 100px;
    z-index: 2;
    transition: all 0.6s;
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
  }
  .allMenu .depth1,
  .allMenu .depth1 > li {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
  .allMenu .depth1 > li,
  .allMenu .depth1 > li > a {
    padding: 10px 0;
  }
  .allMenu .depth1 > li {
    height: auto;
  }
  .allMenu .depth1 > li > a {
    width: 100%;
    gap: 0 10px;
    color: #111;
    font-size: 2.4rem;
    font-weight: 600;
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .allMenu .depth1 > li > a::before {
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    background: var(--color-sub);
    border-radius: 0 10px 10px 0;
    transition: all 0.4s;
  }
  .allMenu .depth1 > li.on > a {
    color: var(--color-sub);
  }
  .allMenu .depth1 > li.on > a::before {
    border-radius: 10px 10px 0 0;
  }
  .allMenu .depth2 {
    width: 100%;
    height: auto;
    padding: 0 15px;
    position: relative;
    top: auto;
    left: auto;
    transform: translateX(0);
    transition: all 0s;
    display: none;
  }
  .allMenu .depth2 > li > a {
    display: block;
    color: #666;
    font-size: 1.8rem;
    font-weight: 400;
    padding: 7.5px 0;
  }
  .allMenu .depth2.on {
    height: auto;
    padding: 0 15px;
  }
  .allMenu.on {
    display: block;
  }
  .allMenu .depth3 {
    display: none;
    flex-wrap: wrap;
    gap: 8px 20px;
    padding: 5px 0 10px;
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: opacity 0.4s ease, max-height 0.4s ease;
  }
  .allMenu .depth3.on {
    display: flex;
    opacity: 1; /* 보이게 설정 */
    height: auto; /* 높이를 자동으로 설정 */
  }
  .allMenu .depth3 li {
    width: calc((100% - 20px) / 2);
  }
  .allMenu .depth3 li.m {
    width: 100%;
    padding: 0;
  }
  .allMenu .depth3 li.m ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    padding: 0 0 10px;
  }
  .allMenu .depth3 li {
    position: relative;
    padding: 0 0 0 10px;
  }
  .allMenu .depth3 li::before {
    content: "";
    display: block;
    background: #999;
    width: 4px;
    height: 1px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
  .allMenu .depth3 li.m::before {
    display: none;
  }
  .allMenu .depth3 li a {
    color: #999;
    font-size: 1.6rem;
    font-weight: 400;
    padding: 7.5px 0;
  }
  .allMenu .depth1 > li .depth2 > li .imgbox {
    max-width: 360px;
    width: 100%;
    position: relative;
    display: none;
    margin: 5px 0 20px 0;
  }
  .allMenu .depth1 > li .depth2 > li.on .imgbox {
    display: block;
  }
  .allMenu .depth1 > li .depth2 > li.on .imgbox a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    height: 38px;
    padding: 0px 25px;
    background: var(--color-main);
    border-radius: 40px;
    color: #fff;
    font-weight: 600;
    font-size: 1.6rem;
  }
  .allMenu .depth1 > li .depth2 > li.on .imgbox a img {
    width: 20px;
  }
  .allMenu .depth1 > li .depth2 > li.on .imgbox .bg {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
  }
  .allMenu .depth1 > li .depth2 > li.on .imgbox .bg::before {
    content: "";
    display: block;
    padding-bottom: 55.5%;
  }
  .allMenu .depth1 > li .depth2 > li.on .imgbox .bg > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }
	#sv {
		padding: 80px 0 0;
	}
	#sv .flexBox {
		padding: 0 0 80px;
	}
  #sv .depthMenu,
  .subContents .tabTitle {
    gap: 15px 0;
  }
  .subContents .introduction .scroller .cool .text .flexBox {
    gap: 0 20px;
  }
  .subContents .introduction .scroller .promote .graph dl {
    width: 540px;
    height: 130px;
    padding: 0 30px;
  }
  .subContents .introduction .scroller .promote .graph dl dd {
    font-size: 5rem;
  }
  .subContents .introduction .scroller .promote .graph dl:nth-child(2) {
    left: 40px;
  }
  .subContents .introduction .scroller .promote .graph dl:nth-child(3) {
    left: 80px;
  }
  .subContents .introduction .scroller .information .text em {
    font-size: 20rem;
    bottom: -0.2em;
  }
  .subContents .introduction .scroller .information .grid p {
    font-size: 2.6rem;
  }
  .subContents .introduction .box h6 {
    font-size: 2rem;
  }
  .subContents .introduction .box p {
    font-size: 1.7rem;
  }
  .subContents .introduction .process .shape {
    transform: scale(0.6);
  }
  .subContents .introduction .process .text h6 {
    height: 70px;
  }
  .subContents .introduction .process .text p {
    margin: 20px 0 0;
  }
  .subContents .introduction .business .text img {
    right: 40px;
    bottom: 20px;
  }
  .subContents .introduction .business .item:hover .text img {
    right: 20px;
  }
	.subContents .search .flexBox {
		flex-direction: column;
		gap: 25px 0;
	}
	.subContents .search .listBox .flexBox {
		align-items: flex-start;
	}
	.subContents .search .listBox h6,
	.subContents .search .listBox .content {
		width: 100%;
	}
	.subContents .search .list > .flexBox > h6 {
		transform: translateY(0);
	}
	.subContents .search .toggle .itemBox {
		gap: 20px 40px;
	}
	.subContents .search .toggle .datepicker {
		padding: 0 20px;
	}

	.apply .ipbox {
	  margin-top: 120px;
	}
	.apply .ipbox h4 {
	  font-size: 2.4rem;
	  margin-bottom: 15px;
	}
  .business .listbox > ul > li:not(:last-child) {
    margin-bottom: 80px;
  }
  .business .listbox > ul > h4 {
    font-size:2.8rem;
    margin-bottom: 15px;
  }
  .business .broadList:not(:last-child) {
    margin-bottom: 80px;
  }
  .business .broadList h4 {
    font-size:2.8rem;
    margin-bottom: 15px;
  }
}
@media (max-width: 960px) {
  .font120,
  .font100 {
    font-size: calc(var(--fontsize) * 0.64);
  }
  .font60 {
    font-size: calc(var(--fontsize) * 0.7);
  }
  .font50,
  .font46 {
    font-size: calc(var(--fontsize) * 0.72);
  }
  .pTop160 {
    padding-top: 100px;
  }
  .videoBox:not(.slideBox) {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 10px;
  }
  .searchRadius label {
    height: 70px;
  }
  .searchRadius span {
    height: 20px;
    left: 30px;
  }
  .searchRadius button {
    width: 70px;
  }
  .searchRadius .inner.on input {
    padding: 0 40px;
  }
  main .visual .slideWrap button {
    width: 50px;
    height: 50px;
  }
  main .visual .slideWrap .prevButton {
    left: -25px;
  }
  main .visual .slideWrap .nextButton {
    right: -25px;
  }
  main .visual .text {
    padding: 0 40px;
  }
  main .number .item h6,
  .subContents .introduction .scroller .number .item h6 {
    font-size: 1.9rem;
  }
  main .number .item span,
  .subContents .introduction .scroller .number .item span {
    font-size: 4.4rem;
  }
  main .number .item em,
  .subContents .introduction .scroller .number .item em {
    font-size: 2.2rem;
  }
  main .partner ul {
    padding: 15px 0;
  }
  main .partner ul li {
    width: 180px;
    height: 80px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 0 10px;
  }
  #sv .flexBox {
    flex-direction: column;
  }
  #sv .depthMenu a,
  #sv .depthMenu button,
  .subContents .tabTitle a,
  .subContents .tabTitle button {
    padding: 0 40px;
  }
  .subContents .introduction .scroller .cool .flexBox.column {
    justify-content: space-between;
    padding: 120px 0 100px;
  }
  .subContents .introduction .scroller .cool .text {
    margin: auto 0;
  }
  .subContents .introduction .scroller .cool .text .column {
    width: 100%;
  }
  .subContents .introduction .scroller .cool .text .flexBox {
    flex-wrap: wrap;
    gap: 40px 20px;
    align-items: flex-start;
  }
  .subContents .introduction .scroller .cool .text .oo {
    padding: 0 5px;
  }
  .subContents .introduction .scroller .cool .text hr {
    margin: 0 0 0 auto;
    transform: translateY(1em);
  }
  .subContents .introduction .scroller .cool .text dl {
    margin: 0;
    transform: translateY(0);
  }
  .subContents .introduction .scroller .promote .text .flexBox:not(.column) {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 60px 0;
  }
  .subContents .introduction .scroller .promote .graph .dlBox {
    padding: 60px 0 0;
  }
  .subContents .introduction .scroller .information .grid p {
    font-size: 2rem;
  }
  .subContents .introduction .process .itemBox {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 0;
  }
  .subContents .introduction .business .itemBox {
	max-width: 600px;
	margin: 0 auto;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .subContents .introduction .partner .logoBox ul {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  footer .info {
    flex-direction: column;
    gap: 10px 0;
    align-items: flex-start;
    margin: 40px 0 20px;
  }

  /* 동영상 */
  .video-container { position:relative; overflow:hidden; max-width:1000px; margin:0 auto; }
  .video-container:before { content:''; display:block; padding-bottom:56.25%; /* 16:9 비율 */ }
  .video-container video,
  .video-container iframe { position:absolute; top:0; left:0; width:100%; height:100%; border:0; }
}
@media (max-width: 768px) {
  .font120,
  .font100 {
    font-size: calc(var(--fontsize) * 0.54);
  }
  .font60 {
    font-size: calc(var(--fontsize) * 0.64);
  }
  .font50,
  .font46 {
    font-size: calc(var(--fontsize) * 0.66);
  }
  .searchRadius em {
    font-size: 10rem;
  }
  .circleButton {
    width: 100px;
    height: 100px;
  }
  .circleButton img {
    width: 20px;
  }
  .quickBox {
    bottom: 40px;
  }
  header {
    height: 80px;
  }
  header .logo {
    width: 76px;
    height: 24px;
  }
  header nav {
    padding: 80px 20px 0;
  }
  .quickInquiry {
    bottom: 40px;
  }
  .quickInquiry a {
    width: 180px;
    height: 50px;
  }
	.mTop60 {
		margin-top: 40px;
	}
	.videoBox .img .category {
		padding: 4px 12px;
		right: 10px;
		bottom: 10px;
	}
	.subContents .business .videoBox .hover {
		padding: 10px;
	}
  main .visual .box {
    padding: 80px 0 0;
  }
  main .visual .keyword {
    gap: 5px;
  }
  main .visual .keyword span {
    font-size: 1.5rem;
    padding: 8px 12px;
  }
  main .video h5 {
    font-size: 2.4rem;
  }
  main .video .contents .optionBox {
    gap: 0 20px;
  }
  main .video .contents .pagination {
    font-size: 1.7rem;
  }
  main .video .contents .buttons {
    gap: 0 5px;
  }
  main .video .contents .buttons button {
    width: 40px;
    height: 40px;
  }
  main .number .itemBox,
  .subContents .introduction .scroller .number .itemBox {
    width: 100%;
    max-width: 420px;
    grid-template-columns: repeat(2, 1fr);
    margin: 40px 0 0;
  }
  .subContents .introduction .scroller .number .itemBox .item {
    opacity: 1;
    transform: translateX(0);
  }
  #sv .depthMenu,
  .subContents .tabTitle {
    gap: 10px 0;
    padding: 15px 20px;
  }
  #sv .depthMenu a,
  #sv .depthMenu button,
  .subContents .tabTitle a,
  .subContents .tabTitle button {
    font-size: 1.8rem;
    padding: 0 25px;
  }
  /*
  .subContents .introduction .scroller > div:not(.cool):not(.since) {
    height: auto;
  }
  */
  .subContents h3.tit {
    margin-bottom:15px;
  }
  .subContents .introduction .scroller .cool {
    height: auto;
    padding: 150px 0;
  }
  .subContents .introduction .scroller .cool .flexBox.column{
    padding: 0;
  }
  .subContents .introduction .scroller .number {
    padding: 0 0 100px;
    height: auto;
  }
  .subContents .introduction .scroller .promote {
    padding: 100px 0;
    height: auto;
  }
  .subContents .introduction .scroller .promote .text {
    height: auto;
  }
  .subContents .introduction .scroller .promote .text .column {
    gap: 10px 0;
  }
  .subContents .introduction .scroller .promote .graph,
  .subContents .introduction .scroller .promote .graph .chart {
    position: relative;
  }
  .subContents .introduction .scroller .promote .graph {
    opacity: 1;
    z-index: inherit;
    height: auto;
  }
  .subContents .introduction .scroller .promote .graph .chart {
    padding: 50px 0 0;
  }
  .subContents .introduction .scroller .promote .graph .dlBox {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0 0 -120px;
  }
  .subContents .introduction .scroller .promote .graph dl,
  .subContents .introduction .scroller .promote .graph dl dt {
    flex-direction: column;
  }
  .subContents .introduction .scroller .promote .graph dl {
    width: calc(50% - 10px);
    height: auto;
    gap: 10px 0;
    border-radius: 20px;
    text-align: center;
    padding: 30px;
  }
  .subContents .introduction .scroller .promote .graph dl:nth-child(2), .subContents .introduction .scroller .promote .graph dl:nth-child(3) {
    left: 0;
  }
  .subContents .introduction .scroller .promote .graph dl dt {
    gap: 20px 0;
  }
  .subContents .introduction .scroller .promote .graph dl dd {
    font-size: 3.8rem;
  }
  .subContents .introduction .scroller .promote .graph p.on {
    bottom: 18%;
    opacity: 1;
  }
  .subContents .introduction .scroller .information {
    padding: 100px 0 0;
  }
  .subContents .introduction .scroller .information > div {
    height: auto;
    position: relative;
  }
  .subContents .introduction .scroller .information .text .column {
    gap: 10px 0;
  }
  .subContents .introduction .scroller .information .text em {
    font-size: 14rem;
  }
  .subContents .introduction .scroller .information .grid {
    padding: 60px 0;
    margin: 0;
    left: 0;
  }
  .subContents .introduction .scroller .information .grid p {
    font-size: 1.7rem;
  }
	.subContents .search .toggle .itemBox {
		gap: 20px 40px;
	}
	.subContents .search .toggle .datepicker,
	.ui-widget.ui-widget-content {
		width: 230px;
	}

}
@media (max-width: 640px) {
  .font120,
  .font100 {
    font-size: calc(var(--fontsize) * 0.38);
  }
  .font60 {
    font-size: calc(var(--fontsize) * 0.44);
  }
  .font50 {
    font-size: calc(var(--fontsize) * 0.52);
  }
  .font46 {
    font-size: calc(var(--fontsize) * 0.56);
  }
  .pTop160 {
    padding-top: 80px;
  }
  .videoBox:not(.slideBox) {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 5px;
  }
	.videoBox .text {
		margin: 15px 0 0;
	}
	.videoBox .text p {
		font-size: 1.8rem;
	}
	.videoBox .date {
		font-size: 1.5rem;
	}
  .searchRadius label {
    height: 60px;
  }
  .searchRadius button {
    width: 60px;
  }
  .searchRadius button img {
    width: 20px;
    height: 20px;
  }
  .searchRadius span {
    left: 20px;
  }
  .searchRadius .inner.on input {
    padding: 0 30px;
  }
  .quickBox > .column {
    gap: 5px 0;
  }
  .quickBox .inner {
    width: 280px;
    padding: 20px;
    bottom: calc(100% + 5px);
  }
  .quickBox .circle {
    width: 50px;
    height: 50px;
  }
  .quickBox .circle button {
    width: 50px;
  }
  .quickBox .top {
    width: 50px;
	height: 50px;
	border-width: 1px;
  }
  .quickBox .top em img {
	margin-top: 5px;
    width: 15px;
  }
  .quickBox .top:hover {
    width: 120px;
  }
  .title em {
    font-size: 1.9rem;
  }
  header .flexBox {
    gap: 0 5px;
  }
  header .flexBox a {
    height : 32px;
    padding: 0 12px;
    border-width: 1px;
    font-size: 1.5rem;
  }
  header .flexBox a.searchButton {
    margin:0 7px 0 16px;
  }
  header .searchButton::before {
    left: -11px;
    height: 15px;
  }
  header .searchButton img {
    width: 22px;
    height: 22px;
    opacity: 1;
  }
  header .searchButton:hover span {
    opacity: 2;
  }
  header .menuButton {
    width: 20px;
    height: 16px;
  }
  main .visual .slideWrap button {
    width: 40px;
    height: 40px;
  }
  main .visual .slideWrap .prevButton {
    left: -20px;
  }
  main .visual .slideWrap .nextButton {
    right: -20px;
  }
  main .visual .text {
    padding: 0 30px;
  }
  main .visual .text p br {
    display: none;
  }
  main .video {
    margin-top: 100px;
  }
  main .video .column {
    gap: 70px 0;
  }
  main .video .top {
    margin: 0 0 20px;
  }
  main .video .text p {
    font-size: 1.7rem;
  }
  main .video .circleButton {
    margin: 20px auto 0;
  }
  main .partner ul {
    padding: 10px 0;
  }
  main .partner ul li {
    width: 140px;
    height: 60px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    padding: 15px;
    margin: 0 5px;
  }
	#sv {
		padding: 70px 0 0 ;
	}
	#sv .flexBox {
		padding: 0 0 60px;
	}
	#sv .text p {
		font-size: 1.8rem;
		margin: 10px 0 0;
	}
	#sv .menuBox > li > a::after {
		margin: 0 15px;
	}
  #sv .depthMenu a,
  #sv .depthMenu button {
    font-size: 1.6rem;
    padding: 0 20px;
  }
  .subContents h3.tit {
    margin-bottom:10px;
  }
  .subContents .tabTitle a,
  .subContents .tabTitle button {
    font-size: 1.5rem;
    padding: 0 12px;
  }
  #sv .depthMenu li::before {
    height: 12px;
  }
  .subContents .tabTitle hr {
    height: 12px;
  }
  .subContents .introduction .scroller .cool .text .column .oo {
    height: 4.6rem;
    padding: 0;
  }
  .subContents .introduction .scroller .cool .text .flexBox {
    gap: 40px 10px;
  }
  .subContents .introduction .scroller .cool .text hr {
    width: 120px;
  }
  .subContents .introduction .scroller .cool .text dl dt {
    font-size: 2rem;
  }
  .subContents .introduction .scroller .cool .text dl dd {
    font-size: 3.2rem;
  }
  .subContents .introduction .scroller .promote .graph .dlBox {
    gap: 10px 0;
    margin: 0;
  }
  .subContents .introduction .scroller .promote .graph dl {
    width: 100%;
    padding: 20px;
  }
  .subContents .introduction .scroller .promote .graph dl img {
    width: 40px;
  }
  .subContents .introduction .scroller .promote .graph dl dd {
    font-size: 3.4rem;
  }
  .subContents .introduction .scroller .information .text em {
    font-size: 10rem;
  }
  .subContents .introduction .scroller .information .grid .lineBox .up {
    width: 100%;
    height: 1px;
    position: absolute;
  }
  .subContents .introduction .scroller .information .grid .lineBox .upT {
    top: 25%;
  }
  .subContents .introduction .scroller .information .grid .lineBox .upB {
    bottom: 25%;
  }
  .subContents .introduction .scroller .information .grid .itemBox {
    grid-template-columns: repeat(2, 1fr);
  }
  .subContents .introduction .scroller .information .grid .doubleT {
    grid-area: 2/1/2/3;
  }
  .subContents .introduction .scroller .information .grid .doubleB {
    grid-area: 3/1/3/3;
  }
  .subContents .introduction .scroller .information .grid p {
    font-size: 2rem;
  }
  .subContents .introduction .process .itemBox {
    grid-template-columns: repeat(2, 1fr);
  }
  .subContents .introduction .rolling {
    padding: 80px 0;
  }
  .subContents .introduction .rolling span {
    font-size: 10vw;
  }
  .subContents .introduction .business .itemBox {
    gap: 10px;
  }
  .subContents .introduction .business .text {
    padding: 20px;
  }
  .subContents .introduction .business .text p {
    font-size: 1.6rem;
  }
  .subContents .introduction .business .text br {
    display: none;
  }
  .subContents .introduction .partner .logoBox ul {
    grid-template-columns: repeat(3, 1fr);
  }
	.subContents .search .listBox {
		margin: 60px 0;
	}
	.subContents .search .toggle input[type=radio],
	.subContents .search .toggle input[type=checkbox] {
		width: 20px;
		height: 20px;
	}
	.subContents .search .toggle .itemBox {
		gap: 20px;
	}
	.subContents .search .toggle label {
		flex-wrap: wrap;
		gap: 0 5px;
	}
	.subContents .search .toggle .dateBox {
		gap: 0 5px;
		margin: 10px 0 0;
	}
	.subContents .search .toggle .dateBox em {
		flex-shrink: 0;
	}
	.subContents .search .toggle .datepicker,
	.ui-widget.ui-widget-content {
		width: 190px;
	}

  .inquiry_popup .body {
    width: calc(100% - 40px);
    padding: 30px;
    top: 50%;
    left: 20px;
    transform: translate(0, -50%);
  }
  .inquiry_popup .column {
    gap: 20px 0;
  }
  .inquiry_popup .text h5 {
    font-size: 2.8rem;
  }
  .inquiry_popup .text h6 {
    font-size: 1.7rem;
  }
  .inquiry_popup .text p {
    font-size: 1.7rem;
    margin: 5px 0 0;
  }
  .inquiry_popup .inputBox {
    gap: 10px 0;
  }
  .inquiry_popup .inputBox input::placeholder,
  .inquiry_popup .inputBox textarea::placeholder {
    font-size: 1.5rem;
  }
  .inquiry_popup .inputBox input,
  .inquiry_popup .inputBox .content {
    padding: 11px 20px;
  }
  .inquiry_popup .inputBox input {
    height: 50px;
  }
  .inquiry_popup .inputBox textarea {
    height: 100px;
    padding: 20px;
  }
  .inquiry_popup .inputBox .content {
    height: 150px;
  }
  .inquiry_popup .inputBox .content p {
    font-size: 1.5rem;
  }
  .inquiry_popup .agree {
    margin: 10px 0 0;
  }
  .inquiry_popup .inputCheck label {
    font-size: 1.5rem;
  }
  .inquiry_popup .agree button {
    font-size: 1.5rem;
  }
  .inquiry_popup .moreButton {
    height: 60px;
  }

  footer {
    padding: 60px 0;
    margin: 60px 0 0;
  }
  footer .footerBox {
    position: relative;
  }
  footer .circleButton {
    margin: 10px 0 20px -20px;
    width: 180px;
    height: 76px;
  }
  footer .circleButton a {
    font-size: 1.7rem;
    padding: 0 20px;
  }
  footer .circleButton a:hover {
    padding: 0 25px;
  }
  footer .link {
    flex-direction: column;
    gap: 10px 0;
    align-items: flex-start;
  }
  footer .link span {
    display: none;
  }
  footer .info {
    margin: 30px 0 20px;
  }
  /* footer .top {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 0;
    right: 0;
  } */
  footer .sns {
    gap: 10px 0;
    align-items: flex-start;
    margin: 0 0 30px;
  }
  footer .sns a {
    flex-direction: row-reverse;
    font-size: 2rem;
    transform: translateX(-30px);
  }
  footer .sns a {
    flex-direction: row-reverse;
    font-size: 2rem;
    transform: translateX(-30px);
  }
  footer .sns a img:nth-child(1) {
    width: 38px;
  }
  .apply .ipbox {
     margin-top: 60px;
  }
  .apply .ipbox h4 {
    font-size: 2.0rem;
    margin-bottom: 10px;
  }
  .business .listbox > ul > li:not(:last-child) {
    margin-bottom: 50px;
  }
  .business .listbox > ul > li > h4 {
    font-size:2.4rem;
    margin-bottom: 10px;
  }
  .business .broadList:not(:last-child) {
    margin-bottom: 50px;
  }
  .business .broadList h4 {
    font-size:2.4rem;
    margin-bottom: 10px;
  }
}
@media (max-width: 420px) {
  html,
  body {
    font-size: 50%;
  }
}