@charset "UTF-8";
/* reset */
@import url("https://use.fontawesome.com/d00b556be3.css");
@import url("https://cdnjs.cloudflare.com/ajax/libs/pretendard/1.3.9/static/pretendard.css");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}
*::after {
  box-sizing: border-box;
}
*::before {
  box-sizing: border-box;
}

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,
address {
  border: 0;
  font-size: inherit;
  font-style: normal;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  background-color: transparent;
  border: 0;
}
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: none;
  box-shadow: none;
}

a,
button {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

ul,
ol {
  list-style: none;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  vertical-align: middle;
}

/* global */
:root {
  --defaultFont: AppleSDGothicNeo-Regular, Malgun Gothic, dotum, sans-serif;
  --webFont: Pretendard, AppleSDGothicNeo-Regular, Malgun Gothic, dotum, sans-serif;
  --primaryColor: #217eff;
  --black: #000;
  --red: #eb443e;
  --redL: #ff2a2a;
  --orange: #f77409;
  --brown: #e78d05;
  --green: #4ae61a;
  --blue: #0123b4;
  --blueL: #5ea1ff;
  --textColor: #222;
  --primaryColorL: #69a8ff;
  --primaryColor: #217eff;
  --primaryColorB: #0123b4;
  --secondaryColorL: #fd6fa2;
  --secondaryColor: #fd6fa2;
  --secondaryColorB: #fd6fa2;
  --tertiaryColorL: #b6124e;
  --tertiaryColor: #900034;
  --tertiaryColorB: #700029;
  --gray50: #f8f9fc;
  --gray100: #f7f7f8;
  --gray200: #e0e0e0;
  --gray300: #dfdfdf;
  --gray400: #b7b7b7;
  --gray500: #a4a4a4;
  --gray600: #646464;
  --gray700: #4d4d4d;
  --gray800: #343a40;
  --gray900: #212529;
  --t1: 1.5em;
  --t2: 1.4em;
  --t3: 1.3em;
  --t4: 1.2em;
  --tBasic: 16px;
  --spaceS: 10px;
  --spaceM: 25px;
  --spaceL: 60px;
  --spaceXL: 100px;
  --btnHeight: 50px;
  --btnRadius: 8px;
  --btnPadding: 25px;
  --inputPadding: 15px;
}

/* scrollbar */
/* width */
::-webkit-scrollbar {
  width: 4px;
  height: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 2px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 0;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.2);
}

body {
  font-family: var(--webFont);
  line-height: 1.5;
  color: var(--textColor);
  font-weight: 400;
  font-size: var(--tBasic);
  background: #fff;
}

input:not([type=checkbox], [type=radio], [type=submit]),
textarea,
select {
  height: var(--btnHeight);
  line-height: 1;
  background: #fff;
  text-indent: 0;
  padding: 0 var(--inputPadding);
  border-radius: var(--btnRadius);
  border: 1px solid var(--gray300);
  width: 100%;
  font-size: 1em;
}

input:not([type=checkbox], [type=radio], [type=submit], :-moz-read-only):focus, textarea:not(:-moz-read-only):focus {
  border-color: var(--primaryColor);
}

input:not([type=checkbox], [type=radio], [type=submit], :read-only):focus,
textarea:not(:read-only):focus {
  border-color: var(--primaryColor);
}

input:not([type=checkbox], [type=radio], [type=submit])::-moz-placeholder, textarea::-moz-placeholder {
  color: #b6b6b6;
}

input:not([type=checkbox], [type=radio], [type=submit])::placeholder,
textarea::placeholder {
  color: #b6b6b6;
}

input:not([type=checkbox], [type=radio], [type=submit]):-moz-read-only, textarea:-moz-read-only {
  background-color: var(--gray50);
}

input:not([type=checkbox], [type=radio], [type=submit]):read-only,
textarea:read-only {
  background-color: var(--gray50);
}

select {
  background: #fff url(../img/icon_select.svg) no-repeat right 12px center;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  padding-right: 50px;
}

textarea {
  padding: var(--inputPadding);
  height: auto;
  line-height: inherit;
  resize: none;
}

.textarea-wrapper {
  border: 1px solid var(--gray300);
  border-radius: var(--btnRadius);
  padding: var(--inputPadding);
}
.textarea-wrapper textarea {
  border: 0;
  border-radius: 0;
  padding: 0;
  height: 100%;
}

input.line {
  border-left: 0;
  border-right: 0;
  border-top: 0;
  padding-left: 0;
  padding-right: 0;
  border-radius: 0;
}
input.date {
  background: #fff url(../img/icon_calendar.png) no-repeat right 17px center/24px;
}
input.half {
  width: 50%;
}
input.short {
  width: 110px !important;
}
input#captcha {
  width: 120px;
}

input[type=checkbox],
input[type=radio] {
  flex-shrink: 0;
  width: 18px;
  aspect-ratio: 1/1;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: contain;
  vertical-align: middle;
}

input[type=checkbox] {
  background-image: url(../img/checkbox.svg);
}
input[type=checkbox]:checked {
  background-image: url(../img/checkbox_checked.svg);
}
input[type=checkbox]:disabled {
  background-image: url(../img/checkbox_disabled.svg);
}
input[type=checkbox]:checked:disabled {
  background-image: url(../img/checkbox_checked_disabled.svg);
}

input[type=radio] {
  background-image: url(../img/radio.svg);
}
input[type=radio]:checked {
  background-image: url(../img/radio_checked.svg);
}
input[type=radio]:disabled {
  background-image: url(../img/radio_disabled.svg);
}
input[type=radio]:checked:disabled {
  background-image: url(../img/radio_checked_disabled.svg);
}

label.check {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  flex-shrink: 0;
  line-height: 1;
  cursor: pointer;
}
label.check span {
  white-space: nowrap;
}
label.check.style_v input[type=radio],
label.check.style_v input[type=checkbox] {
  width: 14px;
  height: 14px;
  background-image: none;
}
label.check.style_v input[type=radio]:checked,
label.check.style_v input[type=checkbox]:checked {
  background-image: url(../img/icon_check_s.svg);
  background-position: center;
}
label.check.circle input[type=radio],
label.check.circle input[type=checkbox] {
  width: 18px;
  height: 18px;
  background-image: url(../img/checkbox_circle.svg);
}
label.check.circle input[type=radio]:checked,
label.check.circle input[type=checkbox]:checked {
  background-image: url(../img/checkbox_circle_checked.svg);
}
label.check.circle input[type=radio]:disabled,
label.check.circle input[type=checkbox]:disabled {
  background-image: url(../img/checkbox_circle_disabled.svg);
}
label.check input:disabled + span {
  color: var(--gray400);
}

strong,
b,
th,
dt {
  font-weight: 600;
}

.succession {
  margin-top: var(--spaceM) !important;
}

.successionS {
  margin-top: var(--spaceS) !important;
}

.successionL {
  margin-top: var(--spaceL) !important;
}

.successionXL {
  margin-top: var(--spaceXL) !important;
}

.m10 {
  margin-bottom: 10px !important;
}

.m15 {
  margin-bottom: 15px !important;
}

.m20 {
  margin-bottom: 20px !important;
}

.m25 {
  margin-bottom: 25px !important;
}

.txt-black {
  color: var(--textColor) !important;
}

.txt-red {
  color: var(--red) !important;
}

.txt-blue {
  color: var(--blue) !important;
}

.txt-orange {
  color: var(--orange) !important;
}

.txt-gray {
  color: var(--gray500) !important;
}

.txt-primary {
  color: var(--primaryColor) !important;
}

.txt-primaryL {
  color: var(--primaryColorL) !important;
}

.txt-primaryB {
  color: var(--primaryColorB) !important;
}

.txt-tertiary {
  color: var(--tertiaryColor) !important;
}

.txt-l {
  font-size: 1.1em;
  font-weight: 500;
}

.txt-sm {
  font-size: 0.9em;
}

.btn-area {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: var(--spaceL);
}
.btn-area p {
  width: 100%;
  text-align: center;
  margin-bottom: var(--spaceS);
}

table.fixed {
  table-layout: fixed;
}

th,
td {
  vertical-align: middle;
}

.align-left {
  text-align: left !important;
}

.align-center {
  text-align: center !important;
}

.align-right {
  text-align: right !important;
}

.right {
  margin-left: auto;
}

.round {
  border-radius: 9999px !important;
}

.ui-datepicker {
  font-size: 14px;
}

img {
  max-width: 100%;
}

.ibtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  line-height: 0;
  height: var(--btnHeight);
  border: 1px solid transparent;
  border-radius: var(--btnRadius);
  padding: 0 var(--btnPadding);
  font-size: var(--tBasic);
  font-weight: 500;
  flex-shrink: 0;
  white-space: nowrap;
}
.ibtn.primary {
  background-color: var(--primaryColor);
  border-color: var(--primaryColor);
  color: #fff;
}
.ibtn.primary.line {
  border-color: var(--primaryColor);
  background-color: #fff;
  color: var(--primaryColor);
}
.ibtn.primaryL {
  background-color: var(--primaryColorL);
  border-color: var(--primaryColorL);
  color: #fff;
}
.ibtn.primaryL.line {
  border-color: var(--primaryColorL);
  background-color: #fff;
  color: var(--primaryColorL);
}
.ibtn.secondary {
  background-color: var(--secondaryColor);
  border-color: var(--secondaryColor);
  color: #fff;
}
.ibtn.tertiary {
  background-color: var(--tertiaryColor);
  border-color: var(--tertiaryColor);
  color: #fff;
}
.ibtn.default {
  background-color: #fff;
  border-color: #000;
  color: #000;
}
.ibtn.red {
  background-color: var(--red);
  border-color: var(--red);
  color: #fff;
}
.ibtn.red.line {
  border-color: var(--red);
  background-color: #fff;
  color: var(--red);
}
.ibtn.redL {
  background-color: var(--redL);
  border-color: var(--redL);
  color: #fff;
}
.ibtn.redL.line {
  border-color: var(--redL);
  background-color: #fff;
  color: var(--redL);
}
.ibtn.blue {
  background-color: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.ibtn.blue.line {
  border-color: var(--blue);
  background-color: #fff;
  color: var(--blue);
}
.ibtn.blueL {
  background-color: var(--blueL);
  border-color: var(--blueL);
  color: #fff;
}
.ibtn.blueL.line {
  border-color: var(--blueL);
  background-color: #fff;
  color: var(--blueL);
}
.ibtn.black {
  background-color: var(--gray900);
  border-color: var(--gray900);
  color: #fff;
}
.ibtn.gray {
  background-color: #ccc;
  border-color: #ccc;
  color: #fff;
}
.ibtn.gray.line {
  border-color: var(--gray300);
  background-color: #fff;
  color: var(--gray400);
}
.ibtn.grayB {
  background-color: var(--gray700);
  border-color: var(--gray700);
  color: #fff;
}
.ibtn.lg {
  font-size: 1.1em;
  height: calc(var(--btnHeight) + 10px);
  border-radius: calc(var(--btnRadius) + 4px);
  padding: 0 calc(var(--btnPadding) + 30px);
}
.ibtn.sm {
  font-size: 0.85em;
  padding: 0 7px;
  height: calc(var(--btnHeight) - 10px);
  border-radius: 4px;
  font-weight: 400;
}
.ibtn.xs {
  font-size: 0.85em;
}
.ibtn.full {
  width: 100% !important;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  aspect-ratio: 1/1;
  font-size: 0;
}
.icon::after {
  content: "";
  width: 100%;
  aspect-ratio: 1/1;
  background-color: var(--textColor);
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.icon.user::after {
  -webkit-mask-image: url(../img/icon_user.png);
          mask-image: url(../img/icon_user.png);
}
.icon.search::after {
  -webkit-mask-image: url(../img/icon_search.svg);
          mask-image: url(../img/icon_search.svg);
}
.icon.darrow::after {
  -webkit-mask-image: url(../img/icon_darrow.svg);
          mask-image: url(../img/icon_darrow.svg);
}
.icon.credit::after {
  -webkit-mask-image: url(../img/icon_credit.png);
          mask-image: url(../img/icon_credit.png);
}
.icon.arrow-down::after {
  -webkit-mask-image: url(../img/icon_arrow.svg);
          mask-image: url(../img/icon_arrow.svg);
  transform: rotate(90deg);
}
.icon.reverse {
  transform: rotate(180deg);
}

.ibtn.primary .icon::after,
.ibtn.primaryB .icon::after,
.ibtn.gray .icon::after,
.ibtn.red .icon::after {
  background-color: #fff;
}

.ibtn.primary.line .icon::after {
  background-color: var(--primaryColor);
}

.ibtn.primaryB.line .icon::after {
  background-color: var(--primaryColorB);
}

.ibtn.gray.line .icon::after {
  background-color: var(--gray400);
}

.ibtn.red.line .icon::after {
  background-color: var(--redColor);
}

.ibtn.lg .icon {
  width: 30px;
}

:root {
  --siteWidth: 1280px;
  --sitePadding: 40px;
}

#header,
#contents,
#footer {
  min-width: var(--siteWidth);
}

.wrapper {
  width: var(--siteWidth);
  padding: 0 var(--sitePadding);
  margin: 0 auto;
  position: relative;
}

/***** Header *****/
#header {
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
  background-color: #000;
  display: flex;
  align-items: center;
  height: 100px;
  padding: 0 5%;
}
#header h1,
#header .user {
  flex-shrink: 0;
}
#header h1 img {
  max-width: 177px;
  max-height: 36px;
}
#header .user {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 13px;
  font-size: 0.95em;
}
#header .user a {
  color: var(--gray500);
  display: flex;
  align-items: center;
  gap: 5px;
  line-height: 0;
  font-weight: 500;
}
#header .user a i.icon {
  width: 16px;
}
#header .user a i.icon::after {
  background-color: var(--gray500);
}
#header .user a.disabled {
  pointer-events: none;
  color: #fff;
}
#header .user a.disabled i.icon::after {
  background-color: #fff;
}
#header .user a.mypage {
  color: var(--primaryColor);
}
#header .user .parti {
  width: 1px;
  height: 12px;
  background-color: var(--gray600);
}
#header .gnb {
  flex-grow: 1;
}
#header .gnb ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100px;
  font-weight: 600;
  font-size: 1.1em;
}
#header .gnb a {
  border-bottom: 2px solid transparent;
  line-height: 1;
  padding-bottom: 8px;
}
#header .gnb a.on, #header .gnb a:hover {
  color: var(--primaryColor);
  font-weight: 700;
  border-color: var(--primaryColor);
}

/***** Footer *****/
#footer {
  background: #0a0808;
  color: var(--gray500);
  padding: var(--spaceL) 0;
}
#footer .wrapper {
  display: flex;
}
#footer section {
  display: flex;
  flex-direction: column;
  flex: 1 1 0;
}
#footer h1 {
  height: 55px;
}
#footer h1 img {
  max-width: 220px;
  max-height: 35px;
}
#footer nav {
  margin-top: 20px;
}
#footer nav a {
  font-weight: 600;
  color: var(--primaryColor);
}
#footer p {
  line-height: 1.6;
}
#footer p.call {
  font-weight: 700;
  color: #fff;
  font-size: 1.8em;
  line-height: 1;
  height: 55px;
}
#footer p.time {
  flex-grow: 1;
}
#footer p.copyright {
  color: #fff;
}

/***** Contents *****/
#subBanner {
  height: 440px;
  background: #000 url(../img/sub09_top.jpg) no-repeat center top/cover;
}
#subBanner.sub01 {
  height: 240px;
  background: #000 url(../img/sub01_top.jpg) no-repeat center bottom/cover;
}

#contents {
  display: flex;
  flex-direction: column;
  padding: var(--spaceXL) 0;
}
#contents.full-bg {
  padding: 0;
  background: url(../img/full_bg.jpg) no-repeat center/cover;
  height: calc(100vh - 100px);
}

.navigation {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
  margin-top: -60px;
}
.navigation::before {
  content: "";
  width: 22px;
  aspect-ratio: 1/1;
  background: var(--gray500);
  -webkit-mask-image: url(../img/icon_home.png);
          mask-image: url(../img/icon_home.png);
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.navigation span {
  display: flex;
  align-items: center;
  gap: 10px;
}
.navigation span::before {
  content: "";
  width: 8px;
  aspect-ratio: 1/1;
  border-top: 1px solid var(--gray500);
  border-right: 1px solid var(--gray500);
  transform: rotate(45deg);
}
.navigation span.current {
  font-weight: 600;
}

.input-wrapper {
  position: relative;
}

.swiper-pagination {
  bottom: 30px !important;
}

.swiper-pagination-bullet {
  background: var(--gray500);
  width: 18px;
  height: 18px;
  margin: 0 5px !important;
}

.swiper-pagination-bullet-active {
  background: var(--primaryColor);
}

.ci_header {
  font-size: 24px;
  color: #fff;
  padding-top: 190px;
  font-weight: 600;
  line-height: 1;
  background: url(../img/ci_ver_white.png) no-repeat center top/130px;
  text-align: center;
}

.layout_signup {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 120px;
}
.layout_signup .btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 60px;
}
.layout_signup .btns a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-width: 300px;
  height: 56px;
  background: #fff;
  border-radius: var(--btnRadius);
  font-size: 1.1em;
  font-weight: 600;
}
.layout_signup .btns a.gray {
  background: #919191;
}
.layout_signup .btns a.kakao {
  background: #f7eb51 url(../img/icon_kakao.png) no-repeat left 30px center/26px;
}
.layout_signup .btns a.naver {
  color: #fff;
  background: #63bb3f url(../img/icon_naver.png) no-repeat left 30px center/26px;
}
.layout_signup .btns a.gray {
  background: #919191;
}
.layout_signup.sns h2 {
  color: #fff;
  font-size: 1.4em;
  line-height: 1;
  margin-bottom: 40px;
}
.layout_signup.sns .form {
  font-size: 0.95em;
  background-color: #fff;
  border-radius: var(--btnRadius);
  padding: 45px 40px;
}
.layout_signup.sns .form p {
  text-align: center;
  font-weight: 600;
  font-size: 1.1em;
}
.layout_signup.sns .btm-btn {
  margin-top: 40px;
}
.layout_signup.sns .btm-btn .ibtn {
  min-width: 100px;
}

.layout_login {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  margin-top: 120px;
}
.layout_login section {
  width: 320px;
  position: relative;
}
.layout_login span.parti {
  width: 1px;
  background-color: rgba(255, 255, 255, 0.3);
  height: 100%;
}
.layout_login h2 {
  text-align: center;
  color: #fff;
  font-size: var(--t4);
  margin-bottom: 25px;
}
.layout_login input {
  margin-bottom: 10px;
  height: 56px;
  padding: 0 18px;
}
.layout_login .ibtn {
  width: 100%;
  font-size: 1.1em;
  height: 56px;
  font-weight: 600;
}
.layout_login .ibtn.gray {
  background: #949494;
  border-color: transparent;
}
.layout_login .tbtns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 20px;
}
.layout_login .tbtns a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: underline;
}
.layout_login .tbtns a.link01 {
  color: #fff;
  font-weight: 500;
  font-size: 1.1em;
  margin-top: 40px;
}
.layout_login .btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 60px;
}
.layout_login .btns a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 56px;
  background: #fff;
  border-radius: var(--btnRadius);
  font-size: 1.1em;
  font-weight: 600;
}
.layout_login .btns a.gray {
  background: #919191;
}
.layout_login .btns a.kakao {
  background: #f7eb51 url(../img/icon_kakao.png) no-repeat left 30px center/26px;
}
.layout_login .btns a.naver {
  color: #fff;
  background: #63bb3f url(../img/icon_naver.png) no-repeat left 30px center/26px;
}
.layout_login .btns a.gray {
  background: #919191;
}
.layout_login .pop-layer {
  position: absolute;
  left: 0;
  top: 52px;
  width: 100%;
  height: 280px;
  display: none;
}

.result-box {
  border: 2px solid var(--primaryColor);
  text-align: center;
  padding: 15px 7px;
  font-size: 1.1em;
  font-weight: 600;
  border-radius: 5px;
}

.snb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
}
.snb .ibtn.line {
  font-weight: 600;
  border-width: 2px;
  min-width: 200px;
}

.h2-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
}
.h2-header h2 {
  font-size: 30px;
  line-height: 1;
}

.h3-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}
.h3-header h3 {
  font-size: 30px;
  line-height: var(--btnHeight);
}
.h3-header .left {
  margin-right: auto;
}

.page-header {
  margin-bottom: 40px;
  position: relative;
}
.page-header h2 {
  font-size: 30px;
  font-weight: 700;
}
.page-header h2 .price strong {
  color: var(--primaryColorB);
  font-weight: 700;
}
.page-header h2 small {
  color: var(--gray600);
  font-size: 0.8em;
  font-weight: 500;
  margin-left: 10px;
}
.page-header h2 small strong {
  font-weight: 700;
}
.page-header p {
  font-size: 1.3em;
  font-weight: 600;
  margin-top: 0.4em;
}
.page-header dl.catg {
  font-size: 1.4em;
  margin-top: 0.7em;
  display: flex;
  align-items: center;
}
.page-header dl.catg dt {
  color: var(--gray500);
  font-weight: 500;
}
.page-header dl.catg dd {
  font-weight: 600;
  margin: 0 30px 0 5px;
}
.page-header .btns {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

h3 {
  font-size: 1.4em;
}
h3.title01 {
  text-align: center;
  margin-bottom: 40px;
}

.title-box {
  border: 1px solid var(--gray300);
  border-radius: 10px;
  overflow: hidden;
}
.title-box header {
  border-bottom: 1px solid var(--gray300);
  font-size: 1.15em;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  background-color: #f7faff;
}
.title-box .con {
  padding: 40px;
}

.flex {
  display: flex;
  align-items: center;
}

dl.payment {
  display: flex;
  gap: 30px;
}
dl.payment dt {
  color: var(--gray600);
}
dl.payment dd {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--primaryColorB);
}
dl.payment dd .icon::after {
  background-color: var(--primaryColorB);
}

.ul01 li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 14px;
}
.ul01 li::before {
  content: "*";
  font-weight: 500;
  position: absolute;
  left: 0;
  top: 2px;
}
.ul01 li:last-of-type {
  margin-bottom: 0 !important;
}
.ul01.narrow li {
  margin-bottom: 6px;
}

.form .rows {
  --labelWidth: 110px;
  margin-bottom: 25px;
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: var(--labelWidth) 1fr;
  align-items: center;
}
.form .rows span.label {
  flex-shrink: 0;
  margin-left: 50px;
  font-weight: 500;
}
.form .rows span.label.require::after {
  content: " (필수)";
  color: var(--primaryColor);
  font-size: 0.9em;
}
.form .rows span.label:first-of-type {
  margin-left: 0;
}
.form .rows.col2 {
  grid-template-columns: var(--labelWidth) 1fr calc(var(--labelWidth) + 50px) 1fr;
}
.form hr {
  border: 0;
  height: 1px;
  background-color: var(--gray300);
  margin: 35px 0;
}
.form.sign {
  width: 450px;
  margin-left: auto;
  margin-right: auto;
}
.form.sign .rows {
  display: block;
  margin-bottom: 35px;
}
.form.sign .successionS {
  margin-top: 20px !important;
}

p.label {
  font-weight: 600;
  line-height: 1;
  margin-bottom: 12px;
}

a.link01 {
  color: var(--primaryColor);
  text-decoration: underline;
}

p.no-data {
  color: var(--gray500);
  text-align: center;
}

.space-gap {
  display: inline-flex;
  align-items: center;
  gap: 30px;
}
.space-gap.xs {
  gap: 6px;
}
.space-gap.sm {
  gap: 15px;
}
.space-gap.lg {
  gap: 60px;
}

span.space {
  display: inline-block;
  width: 50px;
}
span.space.xs {
  width: 10px;
}
span.space.sm {
  width: 25px;
}
span.space.lg {
  width: 80px;
}

.box-basic {
  background: #fff;
  padding: var(--btnPadding);
  border-radius: var(--btnRadius);
  border: 1px solid var(--gray300);
  min-height: var(--btnHeight);
}

.box01 {
  background: #f1f7fa;
  padding: var(--btnPadding);
  border-radius: var(--btnRadius);
  border: 1px solid rgba(0, 0, 0, 0.07);
}
.box01 li:not(:first-of-type) {
  margin-top: 15px;
}

.input-refer {
  font-size: 0.9em;
  color: var(--gray500);
  margin-top: 7px;
  display: flex;
  gap: 5px;
}
.input-refer::before {
  content: "※";
}
.input-refer.alert {
  color: var(--red);
}

p.refer {
  color: var(--gray500);
  margin-top: 7px;
  display: flex;
  gap: 5px;
}
p.refer::before {
  content: "※";
}
p.refer.alert {
  color: var(--red);
}

p.price {
  font-weight: 600;
}
p.price strong {
  color: var(--primaryColorB);
  font-size: 1.1em;
  font-weight: 700;
}
p.price.lg {
  font-size: 1.3em;
}
p.price.xl {
  font-size: 1.6em;
}

.btm-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: var(--spaceL);
}
.btm-btn.wrap {
  flex-wrap: wrap;
}

ul.result-view {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
ul.result-view li {
  border-bottom: 1px solid var(--gray200);
  padding: 5px 20px 5px 0;
  min-height: 40px;
  display: grid;
  align-items: center;
  grid-template-columns: repeat(2, max-content);
  gap: 40px;
}
ul.result-view li.fixed {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
ul.result-view span.label {
  margin-right: 12px;
  color: var(--gray600);
}

ul.address {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
ul.address li {
  display: flex;
  gap: 6px;
}

label.ibtn {
  cursor: pointer;
}

.upload-hidden {
  display: none;
}

.upload-name {
  font-size: 0.9em !important;
  margin-top: 6px;
}

:root {
  --cellPaddingY: 7px;
  --cellPaddingX: 15px;
  --cellHeight: 56px;
}

.thumbnail {
  margin: 0 auto;
  width: 80px;
  aspect-ratio: 1/1;
}
.thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0;
}

.thumbnail-list {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 10px;
}

.tail {
  margin-top: -1px;
}

.comment-area {
  display: flex;
  align-items: center;
  gap: 8px;
}
.comment-area .textarea-wrapper {
  flex: 1;
  border-color: #666;
  height: 82px;
}
.comment-area .btns {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

table,
.tbl-top,
.tbl-btm {
  --btnHeight: 40px;
  --btnPadding: 13px;
  --btnRadius: 6px;
}
table select,
table input,
table .ibtn,
.tbl-top select,
.tbl-top input,
.tbl-top .ibtn,
.tbl-btm select,
.tbl-btm input,
.tbl-btm .ibtn {
  font-size: 0.9em;
}

th,
td {
  padding: var(--cellPaddingY) var(--cellPaddingX);
  border-bottom: 1px solid var(--gray200);
  height: var(--cellHeight);
  line-height: 1.3;
}

td.empty {
  text-align: center !important;
  color: var(--gray500) !important;
  height: 80px !important;
}
td.full {
  padding: 0 !important;
}
td.title {
  padding: 30px 0 20px 0 !important;
}
td p {
  line-height: 1.5;
}
td .ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  display: block;
  table-layout: fixed;
  display: table;
  width: 100%;
}
td .ellipsis > * {
  display: table-cell;
  overflow: hidden;
  text-overflow: ellipsis;
}
td .thumbnail-list {
  padding: 10px;
}

tr.hide td {
  display: none;
}

.table-basic th,
.table-basic td {
  text-align: center;
}

.table-result th,
.table-result td {
  text-align: left;
}
.table-result th {
  font-weight: 400;
  color: var(--gray500);
  padding-left: 5px;
  padding-right: 5px;
}
.table-result td {
  font-weight: 500;
}

.table-h01 th,
.table-h01 td {
  text-align: center;
  background: #fff;
}
.table-h01 thead th {
  border-color: #444;
}

.table-h02 th,
.table-h02 td {
  text-align: center;
  background: #fff;
}
.table-h02 thead th {
  border-top: 2px solid #444;
}

.table-thick table {
  border-top: 2px solid #444;
  border-bottom: 2px solid #444;
}
.table-thick table.tail {
  margin-top: -2px;
}
.table-thick table.gray {
  background-color: #f9f9f9;
}
.table-thick tbody th,
.table-thick tbody td {
  text-align: left;
}
.table-thick tbody th {
  position: relative;
  color: #666;
}
.table-thick tbody th::after {
  content: "";
  display: block;
  width: 1px;
  height: 20px;
  background-color: #999;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.table-thick tbody td {
  padding-left: 20px;
  padding-right: 20px;
}

.table-scroll {
  overflow: auto;
}
.table-scroll table {
  border-collapse: separate;
  border-spacing: 0;
}
.table-scroll thead {
  position: sticky;
  top: 0;
}

.table-overflow table {
  table-layout: fixed;
}

[class^=table-].sm {
  --cellPaddingY: 2px;
  --cellPaddingX: 5px;
  --cellHeight: 46px;
  --btnHeight: 42px;
  font-size: 0.9em;
}

.tbl-top,
.tbl-btm {
  display: flex;
  align-items: center;
  padding: 0 5px;
}
.tbl-top .grow,
.tbl-btm .grow {
  flex: 1;
}
.tbl-top .left,
.tbl-top .right,
.tbl-btm .left,
.tbl-btm .right {
  flex-shrink: 0;
}

.tbl-top {
  margin-bottom: 15px;
}
.tbl-top h3 {
  line-height: var(--btnHeight);
}
.tbl-top select,
.tbl-top input {
  width: auto;
}
.tbl-top input[type=text] {
  width: 200px;
}

.tbl-btm {
  margin-top: 30px;
}
.tbl-btm .total {
  flex-grow: 1;
  display: flex;
  align-items: center;
  font-weight: 600;
  gap: 8px;
}
.tbl-btm .total label {
  margin-right: 10px;
}
.tbl-btm .total input {
  width: auto;
  border-color: #444;
  height: 44px;
}
.tbl-btm .total.center {
  justify-content: center;
}
.tbl-btm.tail {
  margin-top: -1px;
  border-top: 1px solid #444;
  padding-top: 20px;
}

.pagenum {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.pagenum a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  aspect-ratio: 1/1;
  color: var(--gray500);
  font-size: 0.9em;
}
.pagenum a.icon {
  font-size: 0;
}
.pagenum a.icon::after {
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 18px;
  aspect-ratio: 1/1;
  background-color: var(--gray500);
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.pagenum a.icon.first::after {
  -webkit-mask-image: url(../img/icon_darrow.svg);
          mask-image: url(../img/icon_darrow.svg);
  transform: rotate(180deg);
}
.pagenum a.icon.prev::after {
  -webkit-mask-image: url(../img/icon_arrow.svg);
          mask-image: url(../img/icon_arrow.svg);
  transform: rotate(180deg);
}
.pagenum a.icon.last::after {
  -webkit-mask-image: url(../img/icon_darrow.svg);
          mask-image: url(../img/icon_darrow.svg);
}
.pagenum a.icon.next::after {
  -webkit-mask-image: url(../img/icon_arrow.svg);
          mask-image: url(../img/icon_arrow.svg);
}
.pagenum a.current {
  pointer-events: none;
  color: var(--textColor);
  font-weight: 700;
}

.box-basic.sm {
  padding: 20px;
}
.box-basic.sm .scroll-area {
  max-height: 139px;
}

.box-basic.table-overflow {
  padding-top: 5px;
}

.scroll-area {
  flex-grow: 1;
  overflow-x: hidden;
  overflow-y: scroll;
  max-height: 151px;
  margin-right: -9px;
  padding-right: 5px;
}

span.ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  display: block;
}

.tab-menu {
  display: flex;
  border-bottom: 1px solid var(--gray300);
  margin-bottom: 40px;
}
.tab-menu a {
  flex: 1 1 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 3px solid transparent;
  font-size: 1.2em;
  font-weight: 600;
  padding-bottom: 15px;
  color: var(--gray400);
}
.tab-menu a.on {
  border-color: var(--primaryColor);
  color: var(--primaryColor);
}

.search-wrapper {
  position: relative;
}
.search-wrapper input {
  background: transparent url(../img/icon_search.svg) no-repeat right 15px center/20px;
  padding-right: 50px;
}
.search-wrapper ul {
  max-height: 170px;
  overflow-y: auto;
  margin-top: 2px;
  display: none;
  position: absolute;
  background: #fff;
  border: 1px solid var(--gray300);
  border-radius: var(--btnRadius);
  width: 100%;
  padding: 10px 7px 10px 10px;
  font-size: 0.9em;
}
.search-wrapper li {
  cursor: pointer;
  padding: 5px 7px;
  color: var(--gray500);
}
.search-wrapper li.active {
  font-weight: 600;
  color: var(--primaryColor);
}

.sample-view {
  border: 1px solid #000;
  padding-bottom: 60px;
  margin-bottom: 40px;
}
.sample-view .pagination {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin: -1px 0 0 -1px;
  width: calc(100% + 2px);
  margin-bottom: 50px;
}
.sample-view .pagination span {
  margin: -1px 0 0 -1px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #000;
  height: 44px;
  font-weight: 500;
  cursor: pointer;
}
.sample-view .pagination span.active {
  background-color: #000;
  color: #fff;
}
.sample-view .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.sample-view .swiper-slide label {
  margin-bottom: 30px;
  font-size: 1.5em;
  font-weight: 700;
  color: var(--primaryColorB);
}
.sample-view .swiper-slide img {
  max-width: 600px;
}
.sample-view .swiper-button-prev {
  left: 80px;
}
.sample-view .swiper-button-next {
  right: 80px;
}

.upload-area {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 35px 15px;
}
.upload-area .item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  line-height: 1;
}
.upload-area .item label {
  font-weight: 500;
  font-size: 1.05em;
}
.upload-area .item .link01 {
  font-size: 0.9em;
}
.upload-area .btn-upload {
  border: 1px solid var(--gray200);
  border-radius: var(--btnRadius);
  width: 100%;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  color: var(--gray500);
  font-weight: 500;
  margin-bottom: 5px;
}
.upload-area .btn-upload::before {
  content: "";
  width: 60px;
  aspect-ratio: 1/1;
  background: url(../img/icon_camera.png) no-repeat center/contain;
}
.upload-area input[type=file] {
  display: none;
}
.upload-area .preview {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  aspect-ratio: 1/1;
}
.upload-area .preview img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0;
  border-radius: var(--btnRadius);
}
.upload-area .preview .btn-delete {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 26px;
  aspect-ratio: 1/1;
  font-size: 0;
  background: #fff url(../img/icon_trashcan.svg) no-repeat center/18px;
  border-radius: 5px;
}

.layout-complete {
  text-align: center;
  font-size: 1.1em;
}
.layout-complete header {
  font-size: 1.3em;
  font-weight: 500;
  margin: 60px 0 30px 0;
}
.layout-complete header h2 {
  font-size: 1.2em;
  margin-bottom: 8px;
}
.layout-complete header strong {
  font-weight: 700;
}
.layout-complete p {
  line-height: 1.6;
}

body.win {
  overflow-x: hidden;
}

.layout-warranty {
  width: 700px;
  border: 18px solid #383838;
  padding: 8px;
  background-image: url(../img/warranty_top.png), url(../img/warranty_btm.png);
  background-repeat: no-repeat;
  background-position: left 3px top 3px, right 3px bottom 3px;
  background-size: 300px;
}
.layout-warranty .wrapper {
  width: 100%;
  border: 1px solid #ecb83d;
  align-items: center;
  padding: 0 40px;
}
.layout-warranty.opinion {
  border: 7px solid #fff;
  background-image: url(../img/opinion_top.png), url(../img/opinion_btm.png);
  background-position: left top, right bottom;
  background-size: 420px;
  padding: 10px;
}
.layout-warranty h1 {
  line-height: 0;
  font-size: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 70px 0 50px 0;
  font-weight: 700;
}
.layout-warranty h1::before {
  content: "";
  width: 36px;
  aspect-ratio: 1/1;
  background: url(../img/favicon.png) no-repeat center/contain;
}
.layout-warranty th,
.layout-warranty td {
  border: 1px solid var(--gray200);
  text-align: left;
  font-size: 1.1em;
}
.layout-warranty th {
  background-color: var(--gray50);
  width: 120px;
}
.layout-warranty td i.symbol {
  width: 40px;
  display: inline-block;
  margin-left: 15px;
}
.layout-warranty table + table {
  margin-top: 5px;
}
.layout-warranty .img-viewer {
  margin: 40px 0 50px 0;
}
.layout-warranty .img-viewer .img-big {
  margin: 0 auto 15px auto;
  width: 320px;
  aspect-ratio: 1/1;
}
.layout-warranty .img-viewer .img-big img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0;
}
.layout-warranty .img-viewer ul {
  display: flex;
  justify-content: safe center;
  gap: 10px;
  overflow-x: auto;
}
.layout-warranty .img-viewer ul li {
  flex-shrink: 0;
  width: 90px;
  aspect-ratio: 1/1;
}
.layout-warranty .img-viewer ul li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0;
}
.layout-warranty .img-viewer ul li.active {
  border: 3px solid var(--primaryColor);
}
.layout-warranty p.result {
  text-align: center;
  font-size: 1.2em;
  line-height: 1;
  font-weight: 500;
  margin-top: 40px;
}
.layout-warranty footer {
  margin-top: 40px;
}
.layout-warranty footer .date {
  text-align: center;
  line-height: 1;
  font-size: 1.1em;
}
.layout-warranty footer .stamp {
  width: 200px;
  margin: 15px auto 30px auto;
}
.layout-warranty footer .link-area {
  border: 1px solid var(--gray200);
  background-color: var(--gray50);
  padding: 20px;
  display: flex;
  align-items: center;
}
.layout-warranty footer .link-area .ibtn {
  margin-left: auto;
}
.layout-warranty footer .info {
  margin-top: 30px;
  font-size: 0.9em;
  padding-bottom: 30px;
  line-height: 1.3;
}
.layout-warranty.eng h1 {
  line-height: 1.3;
  display: block;
  padding-left: 70px;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.layout-warranty.eng h1 small {
  color: var(--gray600);
  font-size: 0.7em;
  display: block;
  font-weight: 400;
}
.layout-warranty.eng h1::before {
  width: 60px;
  display: block;
  position: absolute;
  left: 0;
  top: 4px;
}
.layout-warranty.eng p.result {
  line-height: 50px;
  display: block;
  padding: 0 30px;
  font-size: 1.3em;
  font-weight: 600;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  background: url(../img/seal.png) no-repeat center right/50px;
}
.layout-warranty.eng .address {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 45px 0;
  justify-content: center;
  color: var(--gray600);
  line-height: 1.3;
}
.layout-warranty.eng .address img {
  width: 240px;
}

.layout-review li {
  border-bottom: 1px solid var(--gray400);
  padding: 15px;
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
.layout-review li .thumbnail {
  flex-grow: 0;
  flex-shrink: 0;
  margin: 0;
}
.layout-review li .con {
  flex: 1;
}
.layout-review li .con-header {
  color: var(--gray600);
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 5px;
}
.layout-review li .con-header .id {
  flex-grow: 1;
}
.layout-review li .prd {
  font-weight: 500;
  display: flex;
  gap: 40px;
}
.layout-review li .text {
  background-color: var(--gray100);
  border-radius: 8px;
  padding: 15px;
  margin-top: 10px;
}
.layout-review li .comment {
  margin-top: 5px;
  border: 1px solid var(--primaryColor);
  border-radius: 8px;
  padding: 15px;
}

/***** Modal *****/
.pop-bg {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}

.pop-layer {
  background: #fff;
  border-radius: calc(var(--btnRadius) + 10px);
  padding: 35px;
  min-width: 450px;
  display: flex;
  flex-direction: column;
}
.pop-layer .pop-header {
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.pop-layer .pop-header h2 {
  font-size: var(--t3);
  line-height: 1;
  color: var(--primaryColorB);
}
.pop-layer .pop-header .btn-close {
  width: 20px;
  aspect-ratio: 1/1;
  font-size: 0;
  background: url(../img/btn_close.png) no-repeat center/contain;
  position: absolute;
  right: -10px;
  top: -10px;
}
.pop-layer .pop-con {
  --cellPaddingY: 5px;
  --cellPaddingX: 12px;
  --cellHeight: 44px;
  flex-grow: 1;
}
.pop-layer .pop-con th,
.pop-layer .pop-con td {
  font-size: 0.95em;
}
.pop-layer .btm-btn {
  margin-top: 35px;
  margin-bottom: 10px;
}
.pop-layer .btm-btn .ibtn {
  min-width: 120px;
}
.pop-layer.sm {
  --btnHeight: 46px;
  font-size: 0.9em;
  border-radius: var(--btnRadius);
  padding: 30px;
  min-width: auto;
}
.pop-layer.sm input:not([type=radio], [type=checkbox]) {
  height: 46px;
  padding: 0 10px;
  margin: 0;
}
.pop-layer.sm .pop-header {
  margin-bottom: 25px;
}
.pop-layer.sm .pop-header h2 {
  margin: 0;
  font-size: 1.2em;
}
.pop-layer.sm .pop-header .btn-close {
  width: 16px;
}
.pop-layer.sm .btm-btn {
  margin-top: 30px;
}
.pop-layer.sm .succession {
  margin-top: 15px !important;
}
.pop-layer.sm .ibtn {
  font-size: 1em;
  height: 46px;
}
.pop-layer.width-m {
  width: 620px;
}