@charset "utf-8";
/* 
   v1.0 | 20220516
*/

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0; padding: 0; border: 0;
	font-size: 1rem; font: inherit; font-family: "Pretendard", "NotoSansKR", -apple-system, "Apple SD Gothic Neo", 'Malgun Gothic', "맑은고딕", Dotum, sans-serif; 
  line-height: 1.1; letter-spacing: -.0344rem; color: var(--color-fonts);
	vertical-align: baseline;
}
html, body {
  position: relative;
  width: 100%; height: 100vh;
}
body {
  width: 100%; min-width: 320px; min-height: 100vh;
  line-height: 1;
  background-color: var(--color-bg-1);
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
ol, ul { list-style: none; }
blockquote, q { quotes: none; }
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
*, :after, :before {
  box-sizing: border-box;
}
a, a:hover, a:focus, a:active {
  font-family: var(--font-family-noto);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}
button {
  outline: none;
  cursor: pointer;
}
div { display: block }
article, aside, footer, header, hgroup, main, nav, section { display: block }
table {
	border-collapse: collapse;
	border-spacing: 0;
  width: 100%;
}
address { display: block; }
figcaption { display: block }
hr {
  display: block; overflow: hidden;
  unicode-bidi: isolate;
  margin-block-start: 0.5em; margin-block-end: 0.5em; margin-inline-start: auto; margin-inline-end: auto;
  border-style: inset; border-width: 1px
}
map {
  display: inline
}
img, video {
  max-width: 100%;
  height: auto;
}
img, svg, video, canvas, audio, iframe, embed, object {
  display: block;
}
video {
  object-fit: contain;
}
video:-webkit-full-page-media {
  margin: auto; position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  max-height: 100%; max-width: 100%;
}
img {
  border-style: none;
}
button {
  background: none;
  border: 0;
}
strong {
  font-weight: bold;
  font-weight: 700;
}
span {
  display: inline-block;
}
p {
  font-size: var(--font-14); font-weight: 500;
  word-break: keep-all;
}

/* form elements */
form {
  display: inline-block;
  width: auto;
}
:-webkit-any(table, thead, tbody, tfoot, tr) > form:-internal-is-html {
  display: none !important;
}
label {
  cursor: default;
}
legend {
  display: block;
  padding-inline-start: 2px;
  padding-inline-end: 2px;
  border: none
}
i {
  font-size: 0;
}

.clearfix:after {
  content: " "; 
  display: block; 
  clear: both;
}
.inb {
  font-size: 0;
}
.inb > * {
  /* display: inline-block; */
  vertical-align: top;
}
.break-all {
	word-break: break-all !important;
}



/******************************************************************
           input & textarea Style Css 
********************************************************************/
input[type=text], input[type=tel], input[type=email], input[type=password], input[type=url], input[type=number], input[type=search], input[type=date],
textarea {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box; 
  outline: none;
  font-family: var(--font-family-roboto);
  border: none;
  resize: none;
}
input[type="number"] {
  width: 0%;
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* input search x 버튼 삭제 및 클리어 IE의 경우 */
input::-ms-clear,
input::-ms-reveal {
  display:none;
}

/* input search x 버튼 삭제 및 클리어 크롬의 경우 */
input::-webkit-search-decoration,
input::-webkit-search-cancel-button,
input::-webkit-search-results-button,
input::-webkit-search-results-decoration{
  display:none;
}

/* PLACEHOLDER */
::-webkit-input-placeholder { color: #acacac; }
    ::-ms-input-placeholder { color: #acacac; }
         ::-moz-placeholder { color: #acacac; }
input:focus::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder { color: transparent; }
          input:focus:-ms-input-placeholder, textarea:focus:-ms-input-placeholder { color: transparent; }
                  input:focus::-moz-placeholder, textarea:focus::-moz-placeholder { color: transparent; }

input {
  vertical-align: middle;
  outline: none; border:none;
  border-radius: 0; padding: 0; margin: 0;
  font-family: var(--font-family-noto);
}
input:focus {
  border-color: var(--color-point);
}
.inp0 {
  width: 100%; height: 50px;
  background-color:transparent; border: 0px;
  padding: 0 16px;
}
.inp {
  width: 100%; height: 50px; max-width: 640px;
  background-color: var(--color-white);
  padding: 0 16px;
}

.inp_30 {
  width: 30%; height: 50px; max-width: 192px;
  background-color: var(--color-white);
  padding: 0 16px;
}

.inp_60 {
  width: 69%; height: 50px; max-width: 448px;
  background-color: var(--color-white);
  padding: 0 16px;
}

.inp_50 {
  width: 49%; height: 50px; max-width: 448px;
  background-color: var(--color-white);
  padding: 0 16px;
}

.inp_48 {
  width: 48%; height: 50px; max-width: 448px;
  background-color: var(--color-white);
  padding: 0 16px;
}

/******************************************************************
           radioBox Style Css 
********************************************************************/
/***************************************************** 동의 및 예&아니요 Style */
.choiceChk, .yesChk, .noChk {
  position: relative;
  display: inline-block;
  /* border: 1px solid var(--color-border-1); */
  border-radius: 3px;
}
.choiceChk input, .yesChk input, .noChk input {
  position: absolute; top: 0px; left: 0px; z-index: 1;
  opacity: 0;
  width: 75px; height: 34px;
  padding: 0px; margin: 0px;
}
.choiceChk label {
  position: relative;
  display: block;
  min-height: 34px;
  height: 34px; line-height: 34px; width: 75px;
  z-index: 2;
}
.yesChk label,
.noChk label {
  position: relative;
  display: flex; justify-content: center; align-items: center;
  width: 75px; height: 34px; min-height: 34px; line-height: 34px;
  z-index: 2;
}
.choiceChk input:checked+label,
.yesChk input:checked+label,
.noChk input:checked+label {
  background-color: var(--color-point);
  color: var(--color-white);
  z-index: 1;
}

/***************************************************** 동의 및 예&아니요 Style */
.card-line-bx {
  display: flex;
  flex-direction: column; flex-wrap: nowrap;
  justify-content: center; align-items: flex-start;
}
.card-line-bx > .travel-plan {
  position: relative;
  width: auto; height: 48px;
  margin-top: 20px;
}
.card-line-bx > .travel-plan:first-child {
  margin-top: 0;
}
.card-line-bx > .travel-plan input {
  position: absolute; top: 5px; left: 5px; z-index: 1;
  opacity: 0;
}
.card-line-bx > .travel-plan label {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  height: 100%; padding: 16px 24px;
  border: 1px solid var(--color-border-1);
  background-color: var(--color-white);
  cursor: pointer;
}
.card-line-bx > .travel-plan label > div {
  width: 100%;
}
div.top-ttl-link {
  display: flex;
  flex-direction: row;
  justify-content: space-between; align-items: center;
}
.card-line-bx > .travel-plan label .row {
  display: flex;
  flex-direction: row;
  justify-content: space-between; align-items: center;
}
.card-line-bx > .travel-plan input:checked+label {
  background-color: rgba(96, 177, 7, .08);
  border-color: var(--color-point);
  color: var(--color-white);
}



/******************************************************************
           Toggle Style Css 
********************************************************************/
.toggle {
  margin: 0px auto;
  position: relative;
  width: 100%; max-width: 100px;
  -webkit-user-select:none; 
     -moz-user-select:none; 
     -ms-user-select: none;
  border-radius: 100px;
}
.toggle-checkbox {
  display: none;
}
.toggle-label {
  display: flex; flex-direction: row; justify-content: flex-start; align-items: center;
	padding: 0; 
	height: 50px; line-height: 50px;
	border-radius: 8px;
	background-color: rgba(255, 255, 255, 0.25);
	transition: all 0.3s ease-in; text-align: center;
  overflow: hidden; 
  cursor: pointer;
}
.toggle-label span {
	position: relative;
  display: flex;
  justify-content: center; align-items: center;
  width: 50%;
  font-size: var(--font-14); line-height: 17px; font-weight: 400;
	color:var(--color-fonts);
	line-height: 30px;
}
.toggle-label:before {
	content: "Off";
	position: absolute; top: 0; bottom: 0; left: 50%;
  display: flex; justify-content: center; align-items: center;
  font-size: var(--font-14); line-height: 17px; font-weight: 400;
	color: var(--color-blue);
	width: 50%; margin: 0px;
	background: var(--color-white); 
  border-radius: 0 7px 7px 0;
	transition: all 0.3s ease-in 0s; 
	z-index: 1;
}
.toggle-checkbox:checked + .toggle-label:before {
  left: 0%;
	transition: all 0.3s ease-in 0s; 
	content: "On";
  border-radius: 7px 0 0 7px;
}



/******************************************************************
           selectBox Style Css 
********************************************************************/
select { 
    border-radius:0;          /* 아이폰 사파리 보더 없애기 */
    /* 네이티브 외형 감추기 */ 
    -webkit-appearance:none;  /* 화살표 없애기 for chrome*/ 
       -moz-appearance:none;  /* 화살표 없애기 for firefox*/ 
            appearance:none;  /* 화살표 없애기 공통*/
    background: url('') no-repeat 95% 50%;  /* 화살표 모양의 이미지 */ 
    background-size: 0;
}
/* IE 10, 11의 네이티브 화살표 숨기기 */
select::-ms-expand { 
  display: none;
}
select {
  -webkit-appearance: none; /* 스핀 버튼 제거 */
          appearance: none;
  border-radius: 0; /* border-radius 제거 */
  border: none;     /* select 요소의 테두리 제거 */
  width: 100%;
  padding: 0;
  cursor: pointer;
}
option {
  border: none;
  border-radius: 0;
}
select:focus, select:active {
  outline: 0;
}
.select-box {
  position: relative; z-index: 2;
  display: flex; justify-content: center; align-items: center;
  width: 100%; height: 50px;
  background-color: var(--color-white);
  border: 1px solid var(--color-border-1);
  cursor: pointer;
}
.select-box:after {
  content: "";
  width: 0; height: 0;
  border-left: .4em solid transparent; 
  border-right: .4em solid transparent; 
  border-top: .4em solid var(--color-border-1);
  position: absolute; top: 0; bottom: 0; right: 16px;
  margin: auto;
}
.select-box:after:focus {
  transform: rotate(180deg);
}
.select-box select {
  font-weight: 400;
  width: 100%; height: 100%;
  color: var(--color-fonts);
  padding-left: 16px;
}
.select-box option {
  background: var(--color-white); border: 1px solid var(--color-border-1);
  font-weight: 400;
  color: var(--color-fonts);
  padding: 8px 5%;
}


/******************************************************************
            root Style Css
********************************************************************/
:root {
  /* font color style */
  --color-fonts:       #393D35;
  --color-fontGray:    #7F8489;
  --color-Placeholder: #DBDEE0;

  /* color style */
  --color-point:    #60B107;
  --color-pit-atv:  #386B00;

  --color-black:    #000;
  --color-gray:     #E3E3E3;
  --color-white:    #fff;

  --color-Blue:     #0D82F0;
  --color-red:      #D13333;
  --color-Yellow:   #FEC200;
  --color-lghtYlw:  #FFF290;
  --color-disabled: #A2A9AF;

  --color-border-1: #DEDEDE;
  --color-border-2: #393D35;
  --color-bg-1:     #F6FAF2;
  --color-bg-2:     #F6F6F6;
  
  --radius-3: 3px;
  --radius-4: 4px;
  --radius-8: 8px;
  --radius-16: 16px;
  --radius-30: 30px;
  --radius-50: 50px;
  --radius-100: 100px;
  
  
/* font size style */
  --font-12: calc(.75*1rem);     /* 12px */
  --font-14: calc(.875*1rem);    /* 14px */
  --font-16: calc(1*1rem);       /* 16px */
  --font-18: calc(1.125*1rem);   /* 18px */
  --font-22: calc(1.625*1rem);   /* 22px */
  --font-26: calc(1.375*1rem);   /* 26px */
  --font-28: calc(1.75*1rem);    /* 28px */
  --font-36: calc(2.25*1rem);   /* 36px */
  --font-38: calc(2.375*1rem);   /* 38px */
  --font-42: calc(2.625*1rem);  /* 42px */
  --font-55: calc(3.4375*1rem);  /* 55px */
    
/* font family style */
  --font-family-noto:   'NotoSansKR', sans-serif;
}



@media (max-width: 1400px) {
  :root {
    /* font size style */
    --font-12: calc(.75*1rem);     /* 12px */
    --font-14: calc(.875*1rem);    /* 14px */
    --font-16: calc(1*1rem);       /* 16px */
    --font-18: calc(1.125*1rem);   /* 18px */
    --font-22: calc(1.625*1rem);   /* 22px */
    --font-26: calc(1.375*1rem);   /* 26px */
    --font-28: calc(1.55*1rem);    /* 28px */
    --font-36: calc(2*1rem);       /* 36px */
    --font-38: calc(2.25*1rem);   /* 38px */
    --font-42: calc(2.375*1rem);  /* 42px */
    --font-55: calc(2.625*1rem);  /* 55px */
  }

}
@media (max-width: 700px) {
  :root {
    --radius-16: 0;
  }
}