@charset "UTF-8";
/* site common */

:root {
    /* layout */
    --width-inner: 1600px;
    --width-inner-m: 1520px;
    --width-inner-r: 1400px;
    --width-inner-s: 1280px;

    --height-header: 98px;

    --gutter-page: 5rem;

    /* color */
    --color-primary: #00943c;
    --color-primary-light: #e6f6ee;
    --color-primary-dark: #006E54;

    /* Design Tokens */
    --focus-ring: 2px solid var(--color-primary);
}

/* === layout === */
html,
body,
#wrap {
    min-height: 100vh;
    margin: 0;
}
html,
body {
    overflow-x: hidden;
}
#wrap {
    position: relative;
}
.inner {
    width: 100%;
    max-width: calc(var(--width-inner) + (var(--gutter-page) * 2));
    padding: 0 var(--gutter-page);
    box-sizing: border-box;
    margin: 0 auto;
}
.inner-m {
    max-width: calc(var(--width-inner-m) + (var(--gutter-page) * 2));
}
.inner-r {
    max-width: calc(var(--width-inner-r) + (var(--gutter-page) * 2));
}
.inner-s {
    max-width: calc(var(--width-inner-s) + (var(--gutter-page) * 2));
}

/* .scroll-hidden */
html.scroll-hidden::-webkit-scrollbar,
body.scroll-hidden::-webkit-scrollbar {
  display: none;
}
html.scroll-hidden,
body.scroll-hidden {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

/* hidden text */
.sr-only {
    display: block;
    margin: 0;
    position: absolute;
    z-index: -1;
    width: 1px;
    height: 1px;
    color: transparent;
    border: none;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=0)';
    filter: alpha(opacity=0);
    background: none;
}

/* === common === */
/* font-size */
.fs-48.fs-48 {
    font-size: 4.8rem;
}
.fs-44.fs-44 {
    font-size: 4.4rem;
}
.fs-36.fs-36 {
    font-size: 3.6rem;
}

/* color */
.color-primary {
    color: var(--color-primary);
}
.color-white {
    color: #fff !important;
}

/* align */
.align-center {
    text-align: center;
    margin: 0 auto;
}

/* margin */
.mt0 {
    margin-top: 0 !important;
}
.mt20 {
    margin-top: 2rem !important;
}
.mt40 {
    margin-top: 4rem !important;
}

/* padding */
.pt0 {
    padding-top: 0 !important;
}

/* highlight */
.highlight {
    position: relative;
    z-index: 20;
}
.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2.5rem;
    background-color: rgba(2, 159, 88, 0.3);
    z-index: -1;
}

/* === buttons === */
.btn-area {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}
.btn-area.align-left {
    justify-content: flex-start;
}
.btn-area .btn {
    flex: 1;
    min-width: 0;
    max-width: 20rem;
    padding: 0 2rem;
    border-radius: 1.5rem;
    border: 1px solid transparent;
    box-sizing: border-box;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 5.4rem;
    color: #3f3f3f;
    text-align: center;
}
.btn-area .btn-primary {
    color: var(--color-primary);
    background-color: var(--color-primary-light);
}
.btn-area .btn-primary:focus,
.btn-area .btn-primary:hover {
    color: #fff;
    background-color: var(--color-primary);
}
.btn-area .btn-secondary {
    flex: none;
    width: 11rem;
    color: #3f3f3f;
    border-color: #dfdfdf;
    background-color: #f5f5f5;
}
.btn-area .btn-secondary:focus,
.btn-area .btn-secondary:hover {
    background-color: #fff;
}

/* === form === */
.form-group + .form-group {
    margin-top: 3rem;
}
.form-group--small{
	max-width:28rem;
}

.form-group-tit {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
}
/* form - form-row */
.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
	margin-top:3rem;
    margin-bottom: 2rem;
}
.form-row > .input-field,
.form-row > .form-group{
    flex: 1;
    min-width: 0;
}
.form-row > .form-group{
	margin: 0;
}

/* form - form-req */
.form-req::before {
    content: '*';
    display: inline-block;
    color: var(--color-primary);
    margin-left: 0.2rem;
}
/* form - form-info */
.form-info {
    margin-top: 1.6rem;
    font-size: 1.6rem;
    color: #767676;
}
/* form - btn-area */
.form-wrap .btn-area {
    margin-top: 4rem;
}

/* row-field */
.row-field {
	display: flex;
	align-items: center;
	gap: 1rem;
}

/* field-separator */
.field-separator{
	font-size: 1.6rem;
}

/* === select & input === */
.select-box,
.input-box {
    width: 100%;
    height: 6rem;
    border-radius: 0.8rem;
    border: 1px solid #dfdfdf;
    background-color: #fff;
    padding: 0 2rem;
    font-size: 1.6rem;
}
textarea.input-box {
    height: 28.8rem;
    padding: 2rem;
    resize: none;
}

/* === select === */
.select-box {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 6.7rem;
    background: url('/cmmn/file/imageSrc.do?atchFileId=AF_9bf1e4069c814ee09f30221f4ad2a&fileSn=5') no-repeat;
    background-position: right 1.3rem center;
    cursor: pointer;
}
.select-box::-ms-expand {
    display: none;
}

/* === input === */
.input-box::placeholder {
    color: #b7b7b7;
}

/* input - type file */
.file-field + .file-field {
    margin-top: 3rem;
}
.file-input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: none;
}
.file-label {
    display: flex;
    align-items: center;
    height: 6rem;
    padding: 0 1.6rem;
    background-color: #e3e3e3;
    border-radius: 1rem;
    font-size: 1.6rem;
    color: #636363;
    cursor: pointer;
}

.file-label::before {
	content: '';
	display: block;
	width: 2.4rem;
	height: 2.4rem;
	margin-right: 1rem;
	background:
		url('/cmmn/file/imageSrc.do?atchFileId=AF_79d781cbd9644ade90612512944ce&fileSn=3')
		no-repeat 50% 50%/100% auto;
}

.file-label.selected {
    color: inherit;
}
.file-input:focus-visible + .file-label {
    outline: var(--focus-ring);
}

/* === drag n drop === */
.file-hidden {
	display: none;
}
.file-dropzone {
	display: block;
	border: 1px dashed #c7ccd1;
	border-radius: 1.2rem;
	padding: 4rem;
	text-align: center;
	cursor: pointer;
	background: #fafafa;
	transition: all 0.2s ease;
}
.file-dropzone:hover,
.file-dropzone.is-dragover {
	background: #f1f5f9;
	border-color: #333;
}
.file-dropzone-text {
	font-size: 1.4rem;
	color: #666;
}
.file-upload-list {
	margin-top: 1.2rem;
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
}
.file-upload-list .file-field {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin:0;
	padding: 0 1.6rem;
	border-radius: 1rem;
	background-color: #e3e3e3;
}
.file-upload-list .file-label-text {
	color: #222;
	word-break: break-all;
}
.file-delete-btn {
	flex-shrink: 0;
	padding: 0.5rem 2rem;
    border-radius: 10rem;
    box-sizing: border-box;
    font-size: 1.6rem;
    font-weight: 500;
    color: #fff;
    background-color: var(--color-primary);
    text-align: center;
}

/* === input-group === */
.input-group {
    display: flex;
}
.input-group .input-box {
	flex:1;
    min-width: 33rem;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    outline: none;
}
.input-group .input-box:focus-visible {
    border-color: var(--color-primary);
}
.input-group .btn-ico {
	flex:none;
    width: 6rem;
    border-radius: 0 0.8rem 0.8rem 0;
    background: no-repeat center;
}
.input-group .btn-search {
    background-color: var(--color-primary);
    background-image: url('/cmmn/file/imageSrc.do?atchFileId=AF_9bf1e4069c814ee09f30221f4ad2a&fileSn=4');
}

/* === checkbox === */
.check-block {
    display: flex;
    align-items: center;
}
.check-input {
    position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}
.check-label {
    display: flex;
    align-items: flex-start;
    font-size: 1.8rem;
    color: #333;
    cursor: pointer;
}
.check-label::before {
    content: '';
    width: 2rem;
    height: 2rem;
    margin-top:0.2rem;
    margin-right: 0.6rem;
    border-radius: 0.6rem;
    border: 1px solid #929aa6;
    background: no-repeat center;
    transition: all 0.2s;
}
.check-input:checked + .check-label::before {
    background-color: var(--color-primary);
    background-image: url('/cmmn/file/imageSrc.do?atchFileId=AF_79d781cbd9644ade90612512944ce&fileSn=1');
}



.check-input:focus-visible + .check-label::before {
    outline: 2px solid #000;
    outline-offset: 2px;
    box-shadow:
        0 0 0 0.2rem #fff,
        0 0 0 0.4rem rgba(0, 85, 255, 0.5);
}
.check-input:disabled + .check-label {
    cursor: not-allowed;
    opacity: 0.5;
}

/* === checkbox-group === */
.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 2.4rem;
    padding: 3rem;
    border: 1px solid #dfdfdf;
    border-radius: 2rem;
}

/* === agree === */
.agree-wrap {
    padding: 2rem 3rem;
    border-radius: 1rem;
    border: 1px solid #e0e0e0;
    background-color: #fff;
}
.agree-item {
    display: flex;
    align-items: center;
}
.agree-item + .agree-item {
    margin-top: 2rem;
}
.agree-link {
    font-size: 1.4rem;
    color: #767676;
    text-decoration: underline;
    text-underline-position: from-font;
    margin-left: 0.4rem;
}
.agree-req {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1e2124;
    padding-left: 1rem;
    margin-left: auto;
}

/* === terms-box === */
.terms-wrap {
    background-color: #f5f5f5;
    border-radius: 2rem;
    padding: 2rem;
    margin-bottom: 1.6rem;
}
.terms-box {
    font-size: 1.3rem;
    color: #3f3f3f;
    white-space: pre-wrap;
    word-break: break-all;
}
.terms-scrolled {
    height: 24rem;
    padding-right: 2rem;
    overflow-y: auto;
}
.terms-scrolled::-webkit-scrollbar {
    width: 8px;
}
.terms-scrolled::-webkit-scrollbar-thumb {
    background-color: #c3c3c3;
    border-radius: 50px;
}
.terms-scrolled::-webkit-scrollbar-track {
    background: transparent;
}
.terms-scrolled::-webkit-scrollbar-button {
    display: none;
}

/* privacy-policy-popup */
.privacy-policy-popup{
	font-size: 1.4rem;
}

/* === pagination === */
.pagination,
.pagination-num {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
}
.pagination .page-link {
    display: block;
    min-width: 4rem;
    height: 4rem;
    border-radius: 50px;
    font-size: 1.7rem;
    line-height: 4rem;
    color: #464c53;
    text-align: center;
}
.pagination-num .page-link.is-active,
.pagination-num .page-link:hover {
    background-color: var(--color-primary);
    color: #fff;
}
.pagination .page-link.prev,
.pagination .page-link.next {
    position: relative;
    padding: 0 0.8rem;
}
.pagination .page-link.prev::before,
.pagination .page-link.next::before {
    content: '';
    display: block;
    width: 2rem;
    height: 2rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-mask: no-repeat 50% 50% / 100% auto;
    mask: no-repeat 50% 50% / 100% auto;
    background-color: #33363D;
}
.pagination .page-link.prev {
    padding-left: 2rem;
}
.pagination .page-link.prev::before {
    left: 0;
    -webkit-mask-image: url('/resources/common/basic01/images/common/ic-paging-prev.svg');
    mask-image: url('/resources/common/basic01/images/common/ic-paging-prev.svg');
}
.pagination .page-link.next {
    padding-right: 2rem;
}
.pagination .page-link.next::before {
    right: 0;
    -webkit-mask-image: url('/resources/common/basic01/images/common/ic-paging-next.svg');
    mask-image: url('/resources/common/basic01/images/common/ic-paging-next.svg');
}
.pagination > .page-link.is-desabled {
    color: #7B7B7B;
}
.pagination > .page-link.is-desabled::before {
    background-color: #7B7B7B;    
}

/* === header === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    transform: translateY(0);
    transition: transform 0.25s ease;
}
.header::after {
  content: "";
  position: absolute;
  top: var(--height-header);
  left:0;
  right:0;
  height:1px;
  background-color: #F0F0F0;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.header.is-hide {
    transform: translateY(-100%);
}
.header-wrap {
    position: relative;
    transition: all 0.2s ease-in-out;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: calc(var(--width-inner-m) + (var(--gutter-page) * 2));
    height: var(--height-header);
    padding: 0 var(--gutter-page);
    margin: 0 auto;
}
.logo-link,
.link-guide {
    display: block;
    line-height: var(--height-header);
}
.header-logo,
.header-etc {
    flex: none;
}
.header-etc {
    display: flex;
    align-items: center;
}
.etc-link {
    position: relative;
    font-size: 1.5rem;
    font-weight: 500;
}
.etc-link + .etc-link {
    padding-left: 2rem;
}
.etc-link + .etc-link::before {
    content: '';
    display: block;
    position: absolute;
    left: 1rem;
    top: 50%;
    width: 1px;
    height: 60%;
    transform: translateY(-50%);
    background-color: #fff;
}
.etc-link + .link-guide {
    margin-left: 3rem;
}

.logo-link {
    width: 20rem;
    height: var(--height-header);
    background: no-repeat 50% 50%;
    background-size: 100% auto;
    background-image: url('/cmmn/file/imageSrc.do?atchFileId=FILE_701a9d5910394cdd8daf969284c&amp;fileSn=1');
    background-image: url('/resources/common/basic01/images/logo-w.png');
}

/* header - gnb */
.header-gnb {
    position: relative;
    height: var(--height-header);
}
.gnb-list {
    display: flex;
    align-items: center;
    justify-content: center;
}
.gnb-list {
    gap: 5.4rem;
}
.gnb-item {
	position: relative;
}
.gnb-link {
    display: flex;
    align-items: center;
    height: var(--height-header);
    font-size: 2rem;
    font-weight: 500;
}
.gnb-txt {
    position: relative;
    line-height: 3rem;
    overflow: hidden;
}
.gnb-txt span {
    display: block;
    transition: transform 0.25s;
}
.gnb-txt span.copy {
    position: absolute;
    top: -3rem;
    left: 0;
    color: #00BC4C;
}
.link-guide {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 500;
}
.link-guide::after {
    content: '';
    display: block;
    width: 2.2rem;
    height: 2.2rem;
    border: 1px solid #e3e3e3;
    border-radius: 50px;
    margin-left: 0.8rem;
    background: #fff no-repeat 50% 50%;
    background-size: 1rem auto;
    background-image: url('/resources/common/basic01/images/ic-guide.png');
}

/* gnb - sub menu */
.gnb-depth {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: -1.8rem;
    display: block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.25s ease;
}
.gnb-sub-list {
    min-width: 19rem;
    padding: 2rem 0;
    border-radius: 0.6rem;
    background-color: var(--color-primary);
}
.sub-link {
	display:block;
    font-size: 1.5rem;
    line-height: 3rem;
    font-weight: 500;
    color: #fff;
    text-align: center;
    padding: 0 1rem;
    transition: all 0.2s ease;
}
.sub-link:hover,
.sub-link.active {
    font-weight: 700;
    /* text-decoration: underline; */
    background-color: rgba(255, 255, 255, 0.3);
}

/* header - scrolled */
.header.scrolled {
    backdrop-filter: blur(4px);
    background-color: rgba(255, 255, 255, 0.03);
}

/* header - hover & sub page default */
/* .header.gnb-opened .header-wrap {
    height: calc(var(--height-header) + 9rem);
} 
*/
.page-sub .header-wrap {
    background-color: #fff;
}
.header.menu-opened::after {
  opacity: 1;
}
.header.menu-opened .logo-link,
.page-sub .logo-link {
    background-image: url('/cmmn/file/imageSrc.do?atchFileId=FILE_701a9d5910394cdd8daf969284c&amp;fileSn=1');
    background-image: url('/resources/common/basic01/images/logo.png');
}
.gnb-depth.opened {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* gnb - link hover & active */
.gnb-link.hover,
.gnb-link.active {
    font-weight: 700;
}
.gnb-link.hover .gnb-txt span,
.gnb-link.active .gnb-txt span {
    transform: translateY(3rem);
}

/* mobile menu button */
.menu-btn{
  display: none;
  width: 2rem;
  flex-direction: column;
  gap: 0.4rem;
}
.menu-btn .bar {
  width: 2rem;
  height: 0.2rem;
  background-color: #fff;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}
.page-sub .menu-btn .bar,
.menu-btn.is-active .bar{
	background-color: #1C1B1E;
}
.menu-btn.is-active .bar:nth-child(1) {
  transform: translateY(0.6rem) rotate(45deg);
}
.menu-btn.is-active .bar:nth-child(2) {
  opacity: 0;
}
.menu-btn.is-active .bar:nth-child(3) {
  transform: translateY(-0.6rem) rotate(-45deg);
}

/* mobile menu */
/* dim */
.m-menu {
  position: fixed;
  display:none;
  inset: 0;
  z-index: 90;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.m-menu__inner {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #fff;

  padding: calc(var(--height-header) + 2rem) 3rem 2rem;

  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);

  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* open */
.m-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}
.m-menu.is-open .m-menu__inner {
  transform: translateX(0);
}

/* button */
.m-menu__btn {
  position: relative;
  display:block;
  width: 100%;
  padding: 2rem 0;
  font-size: 2rem;
  font-weight: 700;
  color: #1A1A1A;
}
.m-menu__btn::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  display:block;
  width: 2.2rem;
  height: 2.2rem;
  transform: translateY(-50%);
  -webkit-mask: no-repeat 50% 50% / 100% auto;
  mask: no-repeat 50% 50% / 100% auto;
  -webkit-mask-image: url('/cmmn/file/imageSrc.do?atchFileId=AF_17fb8a265682401ca924fad5e0c5f&fileSn=10');
  mask-image: url('/cmmn/file/imageSrc.do?atchFileId=AF_17fb8a265682401ca924fad5e0c5f&fileSn=10');
  transition: transform 0.25s ease;
  background-color: #A9A9A9;
}

.m-menu__btn:focus,
.m-menu__btn:hover,
.m-menu__item.is-open .m-menu__btn{
  color: var(--color-primary);
}
.m-menu__item.is-open .m-menu__btn::after {
  transform: translateY(-50%) rotate(180deg);
  background-color: #1C1B1E;
}

/* accordion */
.m-menu__sub {
  height: 0;
  overflow: hidden;
  transition: height 0.28s ease;
  background: #E6F5EC;
  border-radius: 1rem;
}
.m-menu__sub-inner {
  padding: 2rem;
}
.m-menu__sub-inner li + li{
  margin-top: 1.4rem;
}
.m-menu__sub a {
  display: block;
  font-size: 1.8rem;
  font-weight: 400;
  color: #1A1A1A;
}
.m-menu__sub a:focus,
.m-menu__sub a:hover,
.m-menu__sub a.active {
  color: var(--color-primary);
  font-weight: 700;
}

/* m-menu__etc */
.m-menu__etc{
	display:flex;
	flex-wrap: wrap;
	align-items: center;
	border-top: 1px solid #F0F0F0;
	padding-top: 2rem;
	margin-top: 2rem;
	color: #1e2124;
}
.m-menu__etc .link-guide{
	line-height: 1.5;
	margin-right:auto;
}

/* scroll lock */
body.scroll-hidden {
  overflow: hidden;
}

/* desktop hide */
@media (max-width: 1024px) {
	.menu-btn{
		display: flex;
	}
	.m-menu {
		display: block;
	}
}

/* === footer === */
.footer {
    padding: 4.8rem 0;
    background: #000;
}
.foot-box,
.foot-copy{
	padding: 0 1.6rem;
}
.foot-box {
    display: flex;
    align-items: flex-start;
}
.foot-logo {
    flex: none;
    margin-right: 5.6rem;
}
.foot-cont {
    flex: 1;
    min-width: 0;
}

/* foot-menu */
.foot-menu,
.fnb-list,
.foot-etc-list,
.foot-info-list {
    display: flex;
    flex-wrap: wrap;
}
.foot-menu {
	align-items: center;
    gap: 3rem;
}
.fnb-list {
    display: flex;
    gap: 3.2rem;
}
.fnb-link {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.6rem;
    font-weight: 600;
}

/* foot-etc & foot-info */
.foot-etc {
    margin-left: auto;
}
.foot-etc-item + .foot-etc-item,
.foot-info-item + .foot-info-item {
    position: relative;
    padding-left: 25px;
}
.foot-etc-item + .foot-etc-item::before,
.foot-info-item + .foot-info-item::before {
    content: '';
    display: block;
    position: absolute;
    left: 12px;
    top: 2px;
    bottom: 2px;
    width: 1px;
    background-color: #505050;
}
.foot-etc-link {
    color: #767676;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1;
}
.foot-info {
    margin-top: 2.4rem;
}
.foot-info-list + .foot-info-list {
    margin-top: 8px;
}
.foot-info-item {
    color: #767676;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1;
}
.foot-copy {
    padding-top: 5.6rem;
    color: #767676;
    text-align: right;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1;
}

/* === contents-wrap === */
.contents-wrap {
    flex: 1;
    min-height: 0;
}

/* ====================================================
        responsive
==================================================== */
@media (max-width: 1280px) {
	:root {
        --gutter-page: 3rem;
    }
    
    html {
        font-size: clamp(10px, 0.8594vw, 11px);
    }
    .logo-link{
    	width: 16rem;
    }
    .gnb-list {
        gap: 3rem;
    }
}

@media (max-width: 1024px) {
	:root {
        --gutter-page: 2rem;
    }
	
    html {
    	font-size: clamp(10px, 1vw, 11px);
    }

    /* === common === */
    .pc-br {
        display: none;
    }

    /* === header === */
    .header-gnb,
    .header-etc {
        display: none;
    }
    
	/* ===== footer ===== */
    .foot-box {
        flex-direction: column;
        gap: 3rem;
    }
    .foot-etc{
    	margin:0;
    }
    .foot-etc-list {
        flex-wrap: wrap;
        gap: 1.6rem;
    }
    
    /* ===== form ===== */
    .form-row {
        flex-direction: column;
    }
    .form-group-tit {
        font-size: 1.8rem;
    }
    .input-box,
    .select-box,
    .file-label {
        height: 5.2rem;
        font-size: 1.4rem;
    }
    .check-label{
    	font-size: 1.4rem;
    }
    .check-label::before{
    	width: 1.8rem;
    	height: 1.8rem;
    }
    .agree-req{
    	font-size: 1.6rem;
    }
    textarea.input-box {
        height: 20rem;
    }
    
    .form-group--small{
    	max-width:100%;
    }

}

@media (max-width: 768px) {
    html {
	    font-size: clamp(10px, 1.375vw, 11px);
    }
    
    /* ===== header ===== */
    .header-gnb {
        display: none;
    }
    
	/* ===== footer ===== */
    .footer {
        padding: 4rem 0;
    }
    .fnb-list {
        gap: 1.6rem;
    }
    .fnb-link {
        font-size: 1.4rem;
    }
    .foot-etc-item + .foot-etc-item,
	.foot-info-item + .foot-info-item {
		padding-left:0;
	}
    .foot-etc-item + .foot-etc-item::before,
	.foot-info-item + .foot-info-item::before {
		display: none;
	}
    .foot-info {
        margin-top: 2rem;
    }
    .foot-info-list {
        flex-direction: column;
        gap: 0.8rem;
    }
    .foot-info-item {
        font-size: 1.3rem;
    }
    .foot-copy {
        padding-top: 3rem;
        text-align: left;
    }
    
    /* ===== form ===== */
    .form-group + .form-group,
    .file-field + .file-field {
        margin-top: 2rem;
    }
    .form-group-tit {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    .form-row {
        gap: 1rem;
        margin-bottom: 1rem;
    }
    .input-box,
    .select-box,
    .file-label {
        height: 4.8rem;
        padding: 0 1.4rem;
    }
    .select-box{
    	padding-right: 5rem;
    }
    textarea.input-box {
        height: 18rem;
        padding: 1.4rem;
    }
    .form-info{
    	margin-top:1rem;
    }

    /* ===== 버튼 ===== */
    .btn-area .btn {
        line-height: 4.8rem;
        font-size: 1.4rem;
    }

    /* ===== 체크박스 ===== */
    .checkbox-group {
        flex-direction: column;
        gap: 1.2rem;
        padding: 2rem;
    }

    /* ===== 약관 ===== */
    .terms-scrolled {
        height: 18rem;
    }
}

@media (max-width: 480px) {
	/* ===== footer ===== */
    .fnb-link {
        font-size: 1.3rem;
    }
    .foot-etc-link {
        font-size: 1.3rem;
    }
    .foot-info-item {
        font-size: 1.2rem;
    }
}



