@charset 'utf-8';
/**
 * 1. 테두리를 기준으로 크기 설정 
 * 2.  iOS와 IE에서 텍스트 크기 자동 조절 안되도록 
 */
@import 'setColor.css';
* {
  margin: 0;
  padding: 0;
  /*1*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /*2*/
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
}
html,
body {
  width: 100%;
  overflow: hidden;
  /*모바일브라우저의 높이값 계산*/
  height: 100%;
  height: 100vh;
  height: -webkit-fill-available;
  height: fill-available;
}
li,
dd {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
}
em,
var,
dfn,
cite {
  font-style: normal;
}
img {
  border: 0px;
}
fieldset {
  border: none;
}
table {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
/* Forms**/
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
  -webkit-tap-highlight-color: transparent;
}
button,
a {
  border: none;
  background: none;
  cursor: pointer;
  *overflow: visible;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
legend,
caption {
  height: 1px;
  margin-top: -1px;
  opacity: 0;
  overflow: hidden;
}
label,
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a,
span,
li,
img,
div {
  -webkit-touch-callout: none !important;
  -ms-user-select: none;
  -moz-user-select: -moz-none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}
b,
strong,
span {
  color: inherit;
  font-weight: inherit;
  font-size: inherit;
}
b,
strong {
  font-weight: bold;
}
::-webkit-scrollbar {
  -webkit-overflow-scrolling: touch;
  -webkit-appearance: none;
  width: 4px;
}
::-webkit-scrollbar-thumb {
  -webkit-overflow-scrolling: touch;
  background: #a9a9a9;
}
/* 흰색 */
/* 파란색 (#1A85FF) */
/* 회색 (#757575) */
/* 노토 산스 NotoSansKR-Hestia
http://theeluwin.github.io/NotoSansKR-Hestia/
IE8 (윈도우 XP) : 힌팅이 적용되지 않아 비추천,지원 않함.
출처: http://webdir.tistory.com/440 [WEBDIR]
Black(900)  /  Bold(700) / Medium(500)   / Regular(400)  /
DemiLight(350)  /  Light(300)  / Thin(100)
*/
@font-face {
  font-family: 'NotoSans';
  font-style: normal;
  font-weight: 100;
  src: local('Noto Sans Thin'), local('NotoSans-Thin'), url(../fonts/NotoSansKR-Thin-Hestia.eot), url(../fonts/NotoSansKR-Thin-Hestia.eot?#iefix) format('embedded-opentype'), url(../fonts/NotoSansKR-Thin-Hestia.woff) format('woff'), url(../fonts/NotoSansKR-Thin-Hestia.otf) format('opentype');
}
@font-face {
  font-family: 'NotoSans';
  font-style: normal;
  font-weight: 300;
  src: local('Noto Sans Light'), local('NotoSans-Light'), url(../fonts/NotoSansKR-Light-Hestia.eot), url(../fonts/NotoSansKR-Light-Hestia.eot?#iefix) format('embedded-opentype'), url(../fonts/NotoSansKR-Light-Hestia.woff) format('woff'), url(../fonts/NotoSansKR-Light-Hestia.otf) format('opentype');
}
@font-face {
  font-family: 'NotoSans';
  font-style: normal;
  font-weight: 400;
  src: local('Noto Sans Regular'), local('NotoSans-Regular'), url(../fonts/NotoSansKR-Regular-Hestia.eot), url(../fonts/NotoSansKR-Regular-Hestia.eot?#iefix) format('embedded-opentype'), url(../fonts/NotoSansKR-Regular-Hestia.woff) format('woff'), url(../fonts/NotoSansKR-Regular-Hestia.otf) format('opentype');
}
@font-face {
  font-family: 'NotoSans';
  font-style: normal;
  font-weight: 500;
  src: local('Noto Sans Medium'), local('NotoSans-Medium'), url(../fonts/NotoSansKR-Medium-Hestia.eot), url(../fonts/NotoSansKR-Medium-Hestia.eot?#iefix) format('embedded-opentype'), url(../fonts/NotoSansKR-Medium-Hestia.woff) format('woff'), url(../fonts/NotoSansKR-Medium-Hestia.otf) format('opentype');
}
@font-face {
  font-family: 'NotoSans';
  font-style: normal;
  font-weight: 700;
  src: local('Noto Sans Bold'), local('NotoSans-Bold'), url(../fonts/NotoSansKR-Bold-Hestia.eot), url(../fonts/NotoSansKR-Bold-Hestia.eot?#iefix) format('embedded-opentype'), url(../fonts/NotoSansKR-Bold-Hestia.woff) format('woff'), url(../fonts/NotoSansKR-Bold-Hestia.otf) format('opentype');
}
* {
  font-family: 'NotoSans', 'Apple SD Gothic Neo', arial, '나눔고딕', 'Nanum Gothic', '돋움', 'Dotum', Tahoma, 'Geneva', sans-serif;
  font-weight: 400;
  letter-spacing: 0px;
}
/* Layout */
#wrap {
  min-width: 320px;
  width: 100%;
  height: 100%;
  height: 100vh;
  height: -webkit-fill-available;
  height: fill-available;
  background-color: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  font-size: 13px;
}
#wrap #contents {
  margin-top: -16px;
  padding: 16px 16px 90px;
  width: 100%;
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  background-color: var(--c-bg);
  -webkit-border-radius: 24px 24px 0 0;
  -moz-border-radius: 24px 24px 0 0;
  border-radius: 24px 24px 0 0;
}
#header {
  height: 56px;
  width: 100%;
  position: relative;
  background-color: #fff;
}
#header .logo {
  width: 100%;
  background: url('../images/logo.png') no-repeat 50% 50%;
  background-size: auto 26px;
  height: 56px;
}
#header .btn-left,
#header .btn-right {
  position: absolute;
  top: 8px;
  width: 40px;
  height: 40px;
  display: inline-block;
  cursor: pointer;
}
#header .btn-left .icon,
#header .btn-right .icon {
  vertical-align: middle;
  color: inherit;
  margin: 5px auto;
  width: 30px;
  height: 30px;
  background: url(../images/icon_ui.png) no-repeat 0 0;
  background-size: auto 30px;
}
#header .btn-left .icon.icons-pre,
#header .btn-right .icon.icons-pre {
  background-position-x: 0;
}
#header .btn-left .icon.icons-home,
#header .btn-right .icon.icons-home {
  background-position-x: -30px;
}
#header .btn-left:active,
#header .btn-right:active {
  /*20251014 active 효과  add*/
  background-color: var(--c-bg-l);
  border-radius: 8px;
}
#header .btn-left {
  left: 3px;
}
#header .btn-right {
  right: 3px;
}
.p-title {
  background: linear-gradient(270deg, #2976cc 0%, #5ca9ff 100%);
  color: #fff;
  padding: 24px var(--padding) 32px;
  font-size: 18px;
  line-height: 1.2;
  font-weight: bold;
  text-align: center;
}
#main-call-ui {
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
  background-color: transparent;
  display: flex;
  padding: var(--padding);
  pointer-events: none;
}
#main-call-ui .btn {
  width: 64px;
  height: 64px;
  -webkit-border-radius: 64px;
  -moz-border-radius: 64px;
  border-radius: 64px;
  background-color: var(--c-blue-l);
  color: #fff;
  font-size: 12px;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}
#main-call-ui .btn::before {
  content: '';
  width: 30px;
  height: 30px;
  display: block;
  background: url(../images/icon_ui.png) no-repeat 0 0;
  background-size: auto 30px;
  margin: -4px auto -2px;
}
#main-call-ui .btn.btn-chatbot {
  margin-right: auto;
}
#main-call-ui .btn.btn-chatbot::before {
  background-position-x: -150px;
}
#main-call-ui .btn.btn-support {
  margin-left: auto;
}
#main-call-ui .btn.btn-support::before {
  background-position-x: -120px;
}
#main-call-ui .btn:active {
  filter: alpha(opacity=60);
  -moz-opacity: 0.6;
  opacity: 0.6;
}
/**********************/
.menu-list-wrap {
  padding: 0;
}
.menu-list {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--c-border);
}
.menu-list .btn {
  text-align: left;
  width: 100%;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--c-border);
  min-height: 50px;
  padding: 10px 0;
}
.menu-list .btn .text {
  line-height: 1.2;
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  color: var(--c-text) d;
  padding-left: 20px;
}
.menu-list .btn:after {
  flex: 0 0 30px;
  margin-right: 10px;
  margin-left: auto;
  content: '';
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url('../images/icon_ui.png') no-repeat -210px 0px;
  background-size: auto 60px;
}
.menu-list .btn:hover .text {
  color: var(--c-orange);
}
.menu-list .btn:hover:after {
  background-position-y: -30px;
}
#contents .s-msg {
  padding: 12px var(--padding);
  font-size: 13px;
  line-height: 1.2;
  text-align: center;
  letter-spacing: -0.25px;
  color: var(--c-text);
}
#contents .s-msg.type-L {
  text-align: left;
}
#contents .s-msg.type-C {
  text-align: center;
}
#contents .s-msg.type-R {
  text-align: right;
}
#contents .section {
  margin-bottom: 24px;
}
#contents .section h2.title {
  letter-spacing: -0.3px;
  color: var(--c-text-d);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.42;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
#contents .section h2.title small {
  font-size: 14px;
  font-weight: 400;
}
#contents .section h2.title::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-left: -8px;
  background: url(../images/icon_ui.png) no-repeat -570px 0;
  background-size: auto 30px;
}
#contents .section h2.title.title-time::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-left: -8px;
  background: url(../images/icon_ui.png) no-repeat -300px 0;
  background-size: auto 30px;
}
#contents .section h2.title.title-subway::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-left: -8px;
  background: url(../images/icon_ui.png) no-repeat -330px 0;
  background-size: auto 30px;
}
#contents .section h2.title.title-charge::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-left: -8px;
  background: url(../images/icon_ui.png) no-repeat -450px 0;
  background-size: auto 30px;
}
#contents .section h2.title.title-kiosk::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-left: -8px;
  background: url(../images/icon_ui.png) no-repeat -480px 0;
  background-size: auto 30px;
}
#contents .section h2.title.title-location::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-left: -8px;
  background: url(../images/icon_ui.png) no-repeat -540px 0;
  background-size: auto 30px;
}
#contents .section h3 {
  font-size: 14px;
  font-weight: 500;
  color: var(--c-text-d);
  display: flex;
  align-items: center;
}
#contents .section h3::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  background-color: #000;
  border-radius: 100%;
  margin-right: 8px;
}
#contents .section h3 + p {
  margin-top: 4px;
  padding-left: 12px;
}
#contents .section p {
  font-size: 12px;
  font-weight: 400;
  color: var(--c-text);
}
#contents .section p.title {
  font-size: 14px;
  font-weight: 400;
  color: var(--c-text);
  margin: 16px 0 8px 0;
}
#contents ul.dot {
  margin-top: 8px;
}
.step-section {
  border-radius: 8px;
  background: #fff;
  padding: 18px;
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
}
.step-section ol {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.step-section ol li {
  display: flex;
  align-items: flex-start;
}
.step-section ol li b {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.3px;
  margin-right: 21px;
  display: flex;
  align-items: center;
}
.step-section ol li b::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #003876;
  border-radius: 6px;
  margin-right: 4px;
}
.step-section ol li span {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.3px;
}
.step-section ol li div {
  font-size: 14px;
  font-weight: 400;
  color: var(--c-text-d) !important;
}
.step-section ol li div small {
  font-size: 14px !important;
  color: var(--c-text);
  display: block;
}
.map {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.map img {
  width: 100%;
  height: auto;
}
.subway {
  margin: 8px 0 16px;
  border-radius: 8px;
  box-shadow: 0 0 7.8px 0 rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.subway img {
  margin: -10px 0;
  width: 100%;
  height: auto;
}
.parking-wrap {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.parking-wrap .parking {
  flex: 1;
  min-width: 45%;
}
.parking-wrap .parking .img {
  width: calc(100% - 12px);
  max-width: 150px;
  height: 150px;
  background-color: var(--c-bg);
  border-radius: 8px;
  margin: 8px 0 0 12px;
  background-position: 50% 50%;
  background-size: contain;
}
ul.dot {
  margin-top: 8px;
}
ul.dot li {
  font-size: 14px;
  color: var(--c-text);
  padding-left: 10px;
  text-indent: -10px;
  margin-bottom: 4px;
  line-height: 1.3;
}
ul.dot li::before {
  content: ' ';
  width: 4px;
  height: 4px;
  display: inline-block;
  vertical-align: middle;
  border-radius: 4px;
  margin-right: 5px;
  background-color: var(--c-mono-5);
}
ul.dot li > ul.dot li {
  padding-left: 12px;
  text-indent: -4px;
}
ul.dot li > ul.dot li::before {
  content: '-';
  background-color: transparent;
  width: auto;
  height: auto;
  text-align: right;
  margin-top: -4px;
  margin-right: 0;
}
.att {
  margin-top: 8px;
  font-size: 12px;
  color: var(--c-text);
  padding-left: 10px;
  text-indent: -10px;
}
.text-box {
  font-size: 14px;
  padding: 20px;
  margin-bottom: 20px;
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
}
.msg-box {
  width: 100%;
  text-align: center;
  padding: 32px 0 10px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
.msg-box .msg-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto;
  text-align: center;
}
.msg-box .msg-icon img {
  width: 64px;
  height: auto;
}
.msg-box .msg-text {
  width: 100%;
}
.msg-box .msg-text h3 {
  font-size: 18px !important;
  font-weight: bold;
  margin-bottom: 10px;
}
.msg-box .msg-text p {
  font-size: 14px;
  font-weight: 500;
  color: var(--c-text);
}
.msg-box .msg-att {
  width: 100%;
  padding: 24px 11px 11px;
  color: #515151;
  font-size: 14px;
  font-weight: 400;
  border-top: 1px solid var(--c-line);
  text-align: left;
}
.btn-call {
  display: flex;
  gap: 10px;
  align-items: center;
  align-self: stretch;
  border-radius: 10px;
  background-color: var(--c-main);
  padding: 16px 20px;
}
.btn-call::before {
  content: '';
  width: 30px;
  height: 30px;
  border: 5px solid #fff;
  border-radius: 40px;
  background: #fff url(../images/icon_ui.png) no-repeat -270px 0;
  background-size: auto 30px;
}
.btn-call::after {
  content: '';
  width: 30px;
  height: 30px;
  display: block;
  background: url(../images/icon_ui.png) no-repeat -360px 0;
  background-size: auto 30px;
  filter: invert(1);
  -webkit-filter: invert(1);
  margin-left: auto;
}
.btn-call .text {
  text-align: left;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}
.btn-call .text small {
  font-size: 14px;
  font-weight: 400;
  display: block;
}
.btn-call:active {
  background-color: var(--c-blue-l);
}
.btn-call.typeB {
  border: 1px solid var(--c-main);
  background-color: var(--c-bg-l);
}
.btn-call.typeB::after {
  filter: none;
  -webkit-filter: none;
}
.btn-call.typeB .text {
  color: var(--c-text-d);
}
.btn-call + .btn-call {
  margin-top: -14px;
}
.msg-notice {
  text-align: center;
  font-size: 13px;
  color: var(--c-text);
  padding: 20px;
}
.toast-msg {
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  padding: 10px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  text-align: center;
  position: fixed;
  bottom: 80px;
  left: 15px;
  font-size: 14px;
  color: #fff;
  width: calc(100% - 30px);
}
.text-red {
  color: var(--c-red) !important;
}
.text-blue {
  color: var(--c-blue) !important;
}
.text-orange {
  color: var(--c-orange) !important;
}
.text-green {
  color: var(--c-green) !important;
}
.text-black {
  color: #000 !important;
}
/* Variables */
.nowrap {
  white-space: nowrap;
}
.tbl {
  border-collapse: collapse;
  border-spacing: 0px;
  width: 100%;
  border: 1px solid var(--c-table-line);
}
.tbl + .tbl {
  margin-top: 20px;
}
.tbl tbody tr th,
.tbl tbody tr td {
  border-bottom: 1px var(--c-table-line) solid;
  line-height: 1.2;
  vertical-align: middle;
  padding: 8px 0px;
}
.tbl tbody tr th {
  line-height: 1.2;
  background-color: var(--c-bg-l);
  vertical-align: middle;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--c-text-d);
  padding: 8px 0px;
  font-weight: 500 !important;
}
.tbl tbody tr td {
  font-size: 14px;
  color: var(--c-text-d);
  letter-spacing: 0;
  position: relative;
  background-color: #fff;
  text-align: left;
  line-height: 1.3;
  padding: 8px;
  font-weight: 400;
}
.tbl tbody tr td a {
  font-weight: inherit;
  text-decoration: underline;
}
.tbl tbody tr td b {
  font-weight: 500 !important;
}
.tbl tbody tr td li {
  color: inherit;
}
.tbl tbody tr td + td {
  border-left: 1px solid var(--c-table-line);
}
.tbl thead tr th {
  min-height: 32px;
  text-align: center;
  background-color: var(--c-bg-l);
  padding: 8px 0px;
  line-height: 1.2;
  font-size: 12px;
  font-weight: 500 !important;
  color: var(--c-text-d);
  border-bottom: 1px solid var(--c-table-line);
}
.tbl thead tr th + th {
  border-left: 1px solid var(--c-table-line);
}
.tbl thead + tbody tr td {
  text-align: center;
}
td[rowspan] {
  border-right: 1px solid var(--c-table-line);
}
/*****************
FORM 
******************/
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  width: 100%;
  color: var(--c-text);
  font-size: 12px;
  font-weight: 400;
}
.form-textarea {
  border-radius: 8px;
  background: #f0f2f5;
  border: 0;
  outline: 0;
  display: block;
  width: 100%;
  height: 120px;
  padding: 20px;
  font-size: 14px;
  color: var(--c-text-d);
  font-weight: 500;
  resize: vertical;
}
.form-textarea:-moz-placeholder {
  color: var(--c-text-sub);
  font-size: 14px;
  font-weight: 400;
}
.form-textarea::-moz-placeholder {
  color: var(--c-text-sub);
  font-size: 14px;
  font-weight: 400;
}
.form-textarea:-ms-input-placeholder {
  color: var(--c-text-sub);
  font-size: 14px;
  font-weight: 400;
}
.form-textarea::-webkit-input-placeholder {
  color: var(--c-text-sub);
  font-size: 14px;
  font-weight: 400;
}
.form-input {
  outline: 0;
  border: 1px solid var(--c-border);
  padding: 0 15px;
  height: 42px;
  font-size: 14px;
  color: var(--c-text-d);
  font-weight: 500;
  width: 100%;
}
.form-input:-moz-placeholder {
  color: var(--c-text-sub);
  font-size: 14px;
  font-weight: 400;
}
.form-input::-moz-placeholder {
  color: var(--c-text-sub);
  font-size: 14px;
  font-weight: 400;
}
.form-input:-ms-input-placeholder {
  color: var(--c-text-sub);
  font-size: 14px;
  font-weight: 400;
}
.form-input::-webkit-input-placeholder {
  color: var(--c-text-sub);
  font-size: 14px;
  font-weight: 400;
}
.form-input:focus {
  border-color: var(--c-mono-5);
}
.form-input.error {
  border-color: var(--c-red);
}
.form-input:disabled {
  border-color: #e1e1e1;
  color: #999999;
}
.btn-group {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.btn-group .btn {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0;
}
.btn-group + .btn-group {
  margin-top: 10px !important;
}
.btn-group-sm {
    /*20251103 add*/
    margin-top: 16px;
    text-align: center;
}
.btn-group-sm .btn {
    margin: 0 auto;
    padding: 0 16px;
    width: fit-content !important;
}
.btn {
  display: inline-block;
  outline: 0;
}
.btn.btn-normal {
  width: 100%;
  color: var(--c-mono-6);
  line-height: 1.1;
  height: 48px;
  font-size: 16px;
  font-weight: 500;
  background-color: var(--btn-secondary);
  text-align: center;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
}
.btn.btn-normal:hover {
  background-color: var(--btn-secondary-hover);
}
.btn.btn-primary {
  width: 100%;
  color: #fff;
  line-height: 1.1;
  height: 48px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  background-color: var(--btn-primary);
  text-align: center;
}
.btn.btn-primary:hover {
  background-color: var(--btn-primary-hover);
}
.btn.btn-ghost {
  border: 1px solid var(--c-border);
  color: var(--c-text-d);
  font-size: 16px;
  font-weight: 500;
  width: auto;
  padding: 0;
  height: 48px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
}
.btn.btn-ghost:hover {
  background-color: var(--c-bg-l);
}
.btn:disabled {
  background-color: #e1e1e1;
  color: #aaa;
  cursor: not-allowed;
}
.btn:disabled:hover {
  background-color: #e1e1e1;
}
.checkbox[type='checkbox']:checked,
.checkbox[type='checkbox']:not(:checked) {
  position: absolute;
  left: -9999px;
  width: 26px;
  height: 26px;
}
.checkbox[type='checkbox']:checked + label,
.checkbox[type='checkbox']:not(:checked) + label {
  position: relative;
  padding-left: 32px;
  cursor: pointer;
  display: inline-block;
  line-height: 24px;
  height: 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--c-text);
}
.checkbox[type='checkbox']:checked + label:before,
.checkbox[type='checkbox']:not(:checked) + label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  background-color: #fff;
  background-size: auto 60px;
  border: 1px solid var(--c-border);
  width: 22px;
  height: 22px;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  border-radius: 24px;
}
.checkbox[type='checkbox']:checked + label:after,
.checkbox[type='checkbox']:not(:checked) + label:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  background: var(--c-text-d) url('../images/icon_ui.png') no-repeat -360px 0px;
  background-size: auto 60px;
  border: 1px solid var(--c-text-d);
  width: 22px;
  height: 22px;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  border-radius: 24px;
}
.checkbox[type='checkbox']:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}
.checkbox[type='checkbox']:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.checkbox[type='checkbox']:disabled {
  cursor: not-allowed;
}
.checkbox[type='checkbox']:disabled + label:before {
  background-color: var(--c-bg);
}
.radio-group {
  margin-bottom: 5px;
}
.is-type {
  display: none;
}
.radio-period {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
}
.radio-period .btn[type='radio']:checked,
.radio-period .btn[type='radio']:not(:checked) {
  position: absolute;
  left: -9999px;
}
.radio-period .btn[type='radio']:checked + label,
.radio-period .btn[type='radio']:not(:checked) + label {
  flex: 1;
  border: 1px solid var(--c-border);
  font-size: 14px;
  text-align: center;
  line-height: 36px;
}
.radio-period .btn[type='radio']:checked + label {
  color: var(--c-red);
  border: 1px solid var(--c-red);
}
.radio[type='radio']:checked,
.radio[type='radio']:not(:checked) {
  position: absolute;
  left: -9999px;
}
.radio[type='radio']:checked + label,
.radio[type='radio']:not(:checked) + label {
  position: relative;
  padding-left: 32px;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  color: var(--c-text-d);
  font-weight: 500;
  margin-right: 15px;
  margin-bottom: 5px;
}
.radio[type='radio']:checked + label {
  color: var(--c-text-d);
}
.radio[type='radio']:checked + label:before,
.radio[type='radio']:not(:checked) + label:before {
  content: '';
  border: 1px solid #d9d9d9;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  display: inline-block;
  background: #fff url('../images/icon_ui.png') no-repeat -450px 0;
  background-size: auto 60px;
}
.radio[type='radio']:checked + label:after,
.radio[type='radio']:not(:checked) + label:after {
  content: '';
  border: 1px solid #333;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  width: 22px;
  height: 22px;
  background: #333 url('../images/icon_ui.png') no-repeat -450px -30px;
  background-size: auto 60px;
  text-align: center;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.radio[type='radio']:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}
.radio[type='radio']:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.radio[type='radio']:disabled {
  cursor: not-allowed;
}
.radio[type='radio']:disabled + label:before {
  border: 1px solid #999 !important;
}
.select-box {
  position: relative;
  width: 100%;
  text-align: left;
  height: 48px;
}
.select-box .selected {
  width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  background: #fff;
  padding: 0 30px 0 12px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  height: 48px;
  border: 1px solid var(--c-border);
  cursor: pointer;
  display: flex;
  align-items: center;
  position: relative;
}
.select-box .selected::after {
  content: '';
  width: 8px;
  height: 8px;
  border-bottom: 1px solid;
  border-right: 1px solid;
  position: absolute;
  top: 50%;
  right: 16px;
  transition: all 0.2s;
  transform: rotate(45deg) translateY(-50%);
}
.select-box .selected.active:after {
  transform: rotate(-135deg);
}
.select-box .options {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  max-height: 200px;
  overflow-y: auto;
  background: white;
  border: 0;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  list-style: none;
  padding: 0;
  margin: -1px 0 0;
  z-index: 999;
  -webkit-box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.2);
}
.select-box .options li {
  padding: 10px 16px;
  cursor: pointer;
  border-bottom: 1px solid var(--d-gray-2);
}
.select-box .options li:hover {
  background-color: var(--d-gray-2);
}
.select-box.no-line .selected {
  border: 0;
}
.select-box.disabled {
  cursor: not-allowed;
  filter: alpha(opacity=60);
  -moz-opacity: 0.6;
  opacity: 0.6;
}
.select-box.disabled .selected {
  cursor: not-allowed;
}
.select-box.disabled .options {
  display: none !important;
}
.route-content {
  display: none;
}
.route-content.active {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
  padding-top: 16px;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.modal {
  position: absolute;
  z-index: 10000;
  /* 1 */
  top: 0;
  left: 0;
  visibility: hidden;
  width: 100%;
  opacity: 0;
  height: 100%;
}
.modal.is-visible {
  visibility: visible;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-overlay {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: hsla(0, 0%, 0%, 0.4);
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 0.3s, opacity 0.3s;
}
.modal.is-visible .modal-overlay {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}
.modal-wrapper {
  position: absolute;
  z-index: 9999;
  width: calc(100% - 32px);
  border-radius: 16px;
  background-color: #fff;
  box-shadow: 0 0 1.5em hsla(0, 0%, 0%, 0.35);
  overflow: hidden;
}
.modal-transition {
  transition: all 0.3s 0.12s;
  transform: translateY(-10%);
  opacity: 0;
}
.modal.is-visible .modal-transition {
  transform: translateY(0);
  opacity: 1;
}
.modal-header {
  position: relative;
  background-color: #fff;
  text-align: left;
}
.modal-header .btn-close {
  position: absolute;
  top: 15px;
  right: 10px;
  width: 30px;
  height: 30px;
  background: url('../images/icon_ui.png') no-repeat -120px 0;
  background-size: auto 60px;
  overflow: hidden;
  text-indent: -999px;
}
.modal-footer {
  padding: 0 24px 32px;
  display: flex;
  gap: 10px;
}
.modal-heading {
  color: var(--c-text-d);
  font-size: 18px;
  font-weight: bold;
  padding: 32px 24px 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.modal-content > *:first-child {
  margin-top: 0;
}
.modal-content > *:last-child {
  margin-bottom: 0;
}
.modal-body .modal-content {
  padding: 16px 24px 32px;
  max-height: 80vh;
  overflow-y: auto;
  text-align: left;
}
.modal-body .msg-text {
  text-align: left;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--c-text-d);
  padding: 0;
}
.modal-body .msg-text small {
  display: block;
  color: var(--c-text-sub);
  font-size: 14px;
  margin-top: 10px;
}
.modal.modal-pullup .modal-transition {
  transform: translateY(10%);
}
.modal.modal-pullup.is-visible .modal-transition {
  transform: translateY(0);
}
.modal.modal-pullup .modal-wrapper {
  top: auto !important;
  bottom: 0px !important;
  width: 100%;
  margin: 0 !important;
  -webkit-border-radius: 15px 15px 0 0;
  -moz-border-radius: 15px 15px 0 0;
  border-radius: 15px 15px 0 0;
}
.modal.modal-pullup .modal-footer {
  padding: 0 var(--padding) 30px;
}
.modal.modal-pullup .modal-footer .btn + .btn {
  margin-left: 10px;
}
.menu-tap {
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  background: var(--c-mono-2);
  margin: -16px -16px 16px;
}
.menu-tap .btn {
  display: flex;
  height: 48px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex: 1 0 0;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.3px;
  color: var(--c-text-sub);
}
.menu-tap .btn.active {
  border-radius: 24px 24px 0 0;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.23);
  background: var(--c-bg);
  color: var(--c-text-d);
}
.tab-wrapper .tab-nav {
  display: flex;
  height: 44px;
  padding: 4px;
  align-items: flex-start;
  gap: 2px;
  border-radius: 10px;
  background: var(--c-bg-l);
}
.tab-wrapper .tab-nav .tab-link {
  border-radius: 8px;
  display: flex;
  height: 36px;
  padding: 8px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex: 1 0 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--c-text-sub);
}
.tab-wrapper .tab-nav .tab-link.hover,
.tab-wrapper .tab-nav .tab-link:active {
  color: var(--c-text-d);
}
.tab-wrapper .tab-nav .tab-link.active {
  border-radius: 10px;
  background: #000;
  color: #fff;
}
.tab-wrapper .tab-content {
  display: none;
}
.tab-wrapper .tab-content.active {
  display: flex !important;
  flex-direction: column;
  padding-top: 16px;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.ticker-msg {
  overflow: hidden;
  text-align: center;
}
.ticker-msg .in {
  display: inline-block;
  width: auto;
  white-space: nowrap;
  color: #fff;
  text-align: center;
  font-size: 15px;
  line-height: 40px;
}
@-webkit-keyframes ticker {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes ticker {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.ticker {
  display: inline-block;
  white-space: nowrap;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-name: ticker;
  animation-name: ticker;
  -webkit-animation-duration: 20s;
  animation-duration: 20s;
}
.notice-box {
  background-color: var(--c-bg-l);
  border-radius: 10px;
  display: flex;
  height: 56px;
  width: 100%;
  padding: 12px 20px;
  align-items: center;
  align-self: stretch;
  gap: 4px;
  margin-bottom: 16px;
  outline: none;
  /*20251013*/
}
.notice-box .title {
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}
.notice-box .title::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url('../images/icon_ui.png') no-repeat -180px 0px;
  background-size: auto 30px;
}
.notice-box .notice {
  font-size: 14px;
  color: var(--c-text);
  flex: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.notice-box:active {
  /*20251014 add*/
  border: 2px solid var(--c-blue-l);
}
.info-box {
  background-color: var(--c-bg-l);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  padding: 12px 20px;
  gap: 4px;
  margin-bottom: 16px;
}
.info-box .title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
  display: flex;
  align-items: center;
  gap: 4px;
}
.info-box .title::before {
  content: '';
  display: inline-block;
  width: 30px;
  min-width: 30px;
  height: 30px;
  background: url('../images/icon_ui.png') no-repeat -240px 0px;
  background-size: auto 30px;
  margin-left: -4px;
}
.info-box .title.typeB::before {
  background-position-x: -210px;
}
.info-box .title.typeNotice {
  font-size: 18px;
  font-weight: 500;
  color: var(--c-text-d);
}
.info-box .title.typeNotice::before {
  background-position-x: -180px;
}
.info-box .title.typeNotice + ul {
  margin-left: 30px;
}
.info-box ul li {
  font-size: 14px;
  color: var(--c-text);
  padding-left: 10px;
  text-indent: -10px;
}
.info-box ul li::before {
  content: ' ';
  width: 4px;
  height: 4px;
  display: inline-block;
  vertical-align: middle;
  border-radius: 4px;
  margin-right: 4px;
  background-color: var(--c-mono-5);
}
.article-body {
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2);
  color: var(--c-text);
  padding: 20px;
}
.article-body ul {
  margin-top: 8px;
}
.article-body ul li {
  color: var(--c-text);
  padding-left: 10px;
  text-indent: -10px;
  margin-bottom: 4px;
  line-height: 1.3;
}
.article-body ul li::before {
  content: ' ';
  width: 4px;
  height: 4px;
  display: inline-block;
  vertical-align: middle;
  border-radius: 4px;
  margin-right: 5px;
  background-color: var(--c-mono-5);
}
.article-body img{
    max-width: 100%;
    height: auto;
}
.steps-box .steps {
  width: fit-content;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
  justify-content: space-between;
}
.steps-box .steps .step {
  border-radius: 16px;
  background-color: var(--c-mono-1);
  display: flex;
  width: 16px;
  height: 16px;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all 0.3s ease;
  font-size: 10px;
  font-weight: 400;
  color: var(--c-mono-5);
}
.steps-box .steps .step:first-child::before {
  display: none;
}
.steps-box .steps .step::before {
  content: '';
  position: absolute;
  top: 49%;
  right: 16px;
  width: 44px;
  height: 0;
  border-top: 3px solid var(--c-mono-1);
}
.steps-box .steps .step.done {
  background: var(--c-main) url(../images/icon_ui.png) no-repeat -394px -3px;
  background-size: auto 30px;
  text-indent: -99;
}
.steps-box .steps .step.done span {
  display: none;
}
.steps-box .steps .step.done::before {
  border-color: var(--c-main);
}
.steps-box .steps .step.on {
  background-color: var(--c-main);
  color: #fff;
  width: 24px;
  height: 24px;
  font-size: 12px;
  z-index: 99;
}
.steps-box .steps .step.on::before {
  border-color: var(--c-main);
  right: 24px;
}
.steps-box .text {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 700;
  color: var(--c-main);
  text-align: center;
  margin-bottom: 16px;
}
.reservation-box .title {
  color: var(--c-text);
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 8px;
}
.reservation-box .reservation {
  border-radius: 8px;
  background: var(--c-bg-l);
  padding: 20px;
}
.reservation-box .reservation dl {
  display: flex;
  row-gap: 10px;
  align-self: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
}
.reservation-box .reservation dl dt {
  flex: 0 1 100px;
  font-size: 14px;
  font-weight: 500;
  margin-right: auto;
}
.reservation-box .reservation dl dd {
  flex: 0 1 calc(100% - 110px);
  margin-left: auto;
  text-align: right;
  font-size: 14px;
  font-weight: 400;
}
.main-list {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
}
.main-list .btn {
  flex: 1;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2);
  height: 172px;
  color: var(--c-text) d;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  padding: 20px;
}
.main-list .btn .icon {
  margin-left: auto;
  margin-top: auto;
  width: 50px;
  height: 50px;
  display: inline-block;
  background: url('../images/icon_main.png') no-repeat 0 0;
  background-size: auto 50px;
}
.main-list .btn .icon.icon-01 {
  background-position-x: 0;
}
.main-list .btn .icon.icon-02 {
  background-position-x: -50px;
}
.main-list .btn .icon.icon-03 {
  background-position-x: -100px;
}
.main-list .btn .icon.icon-04 {
  background-position-x: -150px;
}
.main-list .btn .icon.icon-05 {
  background-position-x: -200px;
}
.main-list .btn .icon.icon-06 {
  background-position-x: -250px;
}
.main-list .btn .text {
  line-height: 1.2;
  font-size: 18px;
  font-weight: bold;
  color: var(--c-text-d);
  text-align: left;
}
.main-list .btn .text small {
  font-size: 12px;
  color: var(--c-text-sub);
  display: block;
  margin-top: 4px;
}
.main-list .btn:active {
  /*20251014 hover -> active로 변경*/
  background-color: var(--c-bg-l);
}
.main-list .btn.btn-sm {
  flex: 1 1 100%;
  height: auto !important;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.main-list .btn.btn-txt {
  height: auto !important;
  font-size: 14px;
}
.select-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.select-list .list {
  flex: 1;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2);
  color: var(--c-text);
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
}
.select-list .list .list-title {
  width: 100%;
  display: flex;
  align-items: center;
  line-height: 1.2;
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: bold;
  color: var(--c-text-d);
  text-align: left;
}
.select-list .list .list-title .btn-more {
  font-size: 14px;
  color: var(--c-text);
  margin-left: auto;
  display: flex;
  align-items: center;
  font-weight: 500;
}
.select-list .list .list-title .btn-more::after {
  content: '';
  display: inline-block;
  width: 30px;
  height: 30px;
  margin: 0 -5px;
  background: url(../images/icon_ui.png) no-repeat -60px 0;
  background-size: auto 30px;
}
.select-list .list .list-info {
  line-height: 1.2;
  font-size: 14px;
  font-weight: 500;
  color: var(--c-text-d);
  text-align: left;
}
.select-list .list .list-info small {
  font-size: 14px;
  color: var(--c-text-sub);
  display: block;
  margin-top: 4px;
}
.select-list .list .list-date {
    font-size: 14px;
    color: var(--c-text-sub);
    display: block;
    margin-top: 4px;
}
.select-list .list .btn-select {
  background-color: var(--c-main);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  width: 78px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}
.select-list .list .btn-select:active {
  background-color: var(--c-blue-l);
}
.select-list .list.list-sm {
  gap: 10px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
}
.select-list .list.list-sm .list-info {
  font-size: 16px;
}
.select-list .list.list-sm .list-info span {
  font-size: 14px;
  color: var(--c-text-sub);
}
.select-list .list.list-sm .list-info span::before {
  content: '| ';
  font-size: 12px;
}
.select-list .list.list-sm .list-detail {
    font-size: 14px;
    color: var(--c-text-sub);
}
.select-list .list.list-sm .list-detail::before {
    content: '| ';
    font-size: 12px;
}
.select-list .list.list-sm:before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  background: url(../images/icon_main.png) no-repeat -160px 0;
  background-size: auto 40px;
}
.select-list .list.list-sm .btn-select {
  font-size: 12px;
  width: 39px;
  height: 32px;
}
.select-list .btn-select-call {
  width: 100%;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2);
  color: var(--c-text);
  display: flex;
  align-items: center;
  padding: 16px 20px;
}
.select-list .btn-select-call::after {
  content: '';
  width: 30px;
  height: 30px;
  display: block;
  border-radius: 30px;
  border: 5px solid #f0f2f5;
  background: #f0f2f5 url(../images/icon_ui.png) no-repeat -270px 0;
  background-size: auto 30px;
  margin-left: auto;
}
.select-list .btn-select-call .text {
  text-align: left;
  font-size: 16px;
  font-weight: 500;
}
.select-list .btn-select-call .text small {
  font-size: 14px;
  font-weight: 400;
  display: block;
  color: var(--c-text-sub);
}
.select-list .btn-select-call:active {
  background-color: var(--c-bg-l);
}
.appo-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.appo-list .list {
  flex: 1;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2);
  color: var(--c-text);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 20px;
}
.appo-list .list:before {
  content: '';
  display: inline-block;
  width: 56px;
  height: 56px;
  border-radius: 56px;
  margin-right: -6px;
  background: url(../images/icon_main.png) no-repeat -224px 0;
  background-size: auto 56px;
}
.appo-list .list .text {
  /*20251014 add*/
  flex: 1;
  text-align: left;
}
.appo-list .list .text .date {
  font-size: 16px;
  font-weight: 700;
  color: var(--c-text-d);
  mask-border: 4px;
}
.appo-list .list .text p {
  font-size: 14px;
  display: block;
  line-height: 1.2;
}
.appo-list .list .text p span {
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  color: var(--c-text-sub);
}
.appo-list .list .text p span + span::before {
  content: '| ';
  display: inline-block;
  color: #737475;
  font-size: 8px;
  padding: 2px 3px;
  vertical-align: middle;
}
.appo-list .list .btn-group {
  flex: 0 1 100%;
  justify-content: flex-end;
  margin-top: 0;
}
.appo-list .list .btn-group .btn {
  flex: 0 1 78px;
  height: 40px;
  width: 78px;
  font-size: 14px;
}
.appo-list .btn-select-call {
  width: 100%;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2);
  color: var(--c-text);
  display: flex;
  align-items: center;
  padding: 16px 20px;
}
.appo-list .btn-select-call::after {
  content: '';
  width: 30px;
  height: 30px;
  display: block;
  border-radius: 30px;
  border: 5px solid #f0f2f5;
  background: #f0f2f5 url(../images/icon_ui.png) no-repeat -270px 0;
  background-size: auto 30px;
  margin-left: auto;
}
.appo-list .btn-select-call .text {
  text-align: left;
  font-size: 16px;
  font-weight: 500;
}
.appo-list .btn-select-call .text small {
  font-size: 14px;
  font-weight: 400;
  display: block;
  color: var(--c-text-sub);
}
.appo-list .btn-select-call:active {
  background-color: var(--c-bg-l);
}
.btn-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.btn-list .btn {
  text-align: center;
  flex: 1;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2);
  color: var(--c-text);
  display: flex;
  align-items: center;
  padding: 13px 13px 13px 20px;
  width: 100%;
}
.btn-list .btn .icon {
  width: 44px;
  height: 44px;
  margin: 3px 10px 3px 0;
}
.btn-list .btn .icon.icon-app1 {
  background: url(../images/icon_app1.png) no-repeat 0 0;
  background-size: auto 100%;
}
.btn-list .btn .icon.icon-app2 {
  background: url(../images/icon_app2.png) no-repeat 0 0;
  background-size: auto 100%;
}
.btn-list .btn .text {
  font-size: 14px;
  font-weight: 500;
  color: var(--c-text-d);
  text-align: left;
}
.btn-list .btn .text.text-lg {
  font-size: 18px !important;
}
.btn-list .btn .text small {
  display: block;
  font-size: 12px;
  color: #757575;
}
.btn-list .btn:after {
  content: '';
  display: inline-block;
  margin-left: auto;
  width: 30px;
  height: 30px;
  background: url('../images/icon_ui.png') no-repeat -60px 0px;
  background-size: auto 30px;
}
.btn-list .btn.btn-link:after {
  background-position-x: -90px;
}
.btn-list .btn.btn-tel:after {
  background-position-x: -510px;
}
.btn-list .btn.btn-down::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url('../images/icon_ui.png') no-repeat -420px 0px;
  background-size: auto 30px;
}
.btn-list .btn:active {
  background-color: var(--c-main);
}
.btn-list .btn:active .text {
  color: #fff;
}
.btn-list .btn:active .text small {
  color: #fff;
}
.btn-list .btn:active:after,
.btn-list .btn:active::before {
  filter: invert(1);
  -webkit-filter: invert(1);
}
.btn-list.btn-list-sm {
  flex-direction: row;
  flex-wrap: wrap;
}
.btn-list.btn-list-sm .btn {
  flex: 1;
  min-width: 45%;
  padding: 15px 12px !important;
  flex-direction: row-reverse;
}
.btn-list.btn-list-sm .btn::before {
  margin: 0;
}
.btn-list.btn-list-sm .btn .text {
  flex: 1;
  text-align: left;
}
.btn-list.col-2 {
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
}
.btn-list.col-2 .btn {
  flex: 0 1 calc(50% - 5px);
}
.notice-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.notice-list .btn {
  text-align: center;
  flex: 1;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2);
  color: var(--c-text);
  display: flex;
  align-items: center;
  padding: 13px 13px 13px 20px;
}
.notice-list .btn .text {
  font-size: 14px;
  font-weight: 500;
  color: var(--c-text-d);
  text-align: left;
}
.notice-list .btn .text small {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  font-weight: 400;
  color: var(--c-text-sub);
}
.notice-list .btn:after {
  content: '';
  display: inline-block;
  margin-left: auto;
  width: 30px;
  height: 30px;
  background: url('../images/icon_ui.png') no-repeat -60px 0px;
  background-size: auto 30px;
}
.notice-list .btn:active {
  background-color: var(--c-main);
}
.notice-list .btn:active .text,
.notice-list .btn:active small {
  color: #fff;
}
.notice-list .btn:active::after {
  filter: invert(1);
  -webkit-filter: invert(1);
}
.floatR {
  float: right !important;
}
.floatL {
  float: left !important;
}
.text-center {
  text-align: center !important;
}
.text-left {
  text-align: left !important;
}
.text-right {
  text-align: right !important;
}
.text-justify {
  text-align: justify !important;
}
.text-top {
  vertical-align: top !important;
}
.m-0 {
  margin: 0 !important;
}
.m-r-0 {
  margin-right: 0 !important;
}
.m-l-0 {
  margin-left: 0 !important;
}
.m-t-0 {
  margin-top: 0px !important;
}
.m-b-0 {
  margin-bottom: 0px !important;
}
.m-t-5 {
  margin-top: 5px !important;
}
.m-t-10 {
  margin-top: 10px !important;
}
.m-t-15 {
  margin-top: 15px !important;
}
.m-t-20 {
  margin-top: 20px !important;
}
.m-t-25 {
  margin-top: 25px !important;
}
.m-t-30 {
  margin-top: 30px !important;
}
.m-t-35 {
  margin-top: 35px !important;
}
.m-t-40 {
  margin-top: 40px !important;
}
.m-t-50 {
  margin-top: 50px !important;
}
.m-b-5 {
  margin-bottom: 5px !important;
}
.m-b-10 {
  margin-bottom: 10px !important;
}
.m-b-30 {
  margin-bottom: 30px !important;
}
.m-b-50 {
  margin-bottom: 50px !important;
}
.m-r-5 {
  margin-right: 5px !important;
}
.m-r-10 {
  margin-right: 10px !important;
}
.m-r-20 {
  margin-right: 20px !important;
}
.m-l-10 {
  margin-left: 10px !important;
}
.m-l-20 {
  margin-left: 20px !important;
}
.p-0 {
  padding: 0 !important;
}
.p-t-0 {
  padding-top: 0 !important;
}
.p-b-0 {
  padding-bottom: 0 !important;
}
.p-l-0 {
  padding-left: 0 !important;
}
.p-r-0 {
  padding-right: 0 !important;
}
.p-t-5 {
  padding-top: 5px !important;
}
.p-t-10 {
  padding-top: 10px !important;
}
.p-t-20 {
  padding-top: 20px !important;
}
.p-t-30 {
  padding-top: 30px !important;
}
.p-b-10 {
  padding-bottom: 10px !important;
}
.p-b-20 {
  padding-bottom: 20px !important;
}
.p-b-30 {
  padding-bottom: 30px !important;
}
.p-l-10 {
  padding-left: 10px;
}
.p-r-10 {
  padding-right: 10px;
}
.p-l-5 {
  padding-left: 5px;
}
.p-r-5 {
  padding-right: 5px;
}
.loading_full {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loading_full img {
  width: 120px;
  height: auto;
}
.calendar-container {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.calendar-container .calendar-wrap {
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2);
  padding: 20px;
}
.calendar-container .time-selection {
  padding: 20px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2);
}
.calendar-container .time-selection .time-section:first-child {
    margin-bottom: 15px;
}
.calendar-container .time-selection .time-section .no-data {
    text-align: center;
    color: #F04452;
}
.calendar-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 14px;
}
.calendar-header .nav-btn {
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: inline-block;
  background: url(../images/icon_ui.png) no-repeat -60px 0;
  background-size: auto 30px;
  border-radius: 8px;
}
.calendar-header .nav-btn#prevMonth {
  transform: rotate(-180deg);
}
.calendar-header .nav-btn:active {
  background-color: var(--c-bg-l);
}
.calendar-header .month-year {
  font-size: 16px;
  font-weight: 600;
  color: #454545;
}
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.calendar-grid .day-header {
  text-align: center;
  padding: 12px 0;
  font-size: 14px;
  color: #666;
  font-weight: 500;
}
.calendar-grid .day-cell {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  position: relative;
  max-height: 40px;
}
.calendar-grid .day-cell:not(.other-month):not(.disabled):active {
  background-color: #e3f2fd;
}
.calendar-grid .day-cell.other-month {
  color: #ccc;
  cursor: not-allowed;
}
.calendar-grid .day-cell.disabled {
  color: #000;
  cursor: not-allowed;
}
.calendar-grid .day-cell.available {
  color: #000;
  background-color: #e1e3e5;
}
.calendar-grid .day-cell.selected {
  background-color: #2196f3;
  color: white;
}
.calendar-grid .day-cell.today {
  position: relative;
}
.calendar-grid .day-cell.today::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: calc(50% - 2px);
  display: inline-block;
  width: 4px;
  height: 4px;
  background-color: #f04452;
  border-radius: 4px;
}
.legend {
  display: flex;
  gap: 16px;
  font-size: 12px;
  padding: 10px 0;
  align-items: center;
  justify-content: center;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.legend-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
}
.legend-dot.selected {
  background-color: var(--c-main);
}
.legend-dot.available {
  background-color: #e1e3e5;
}
.legend-dot.today {
  background-color: #f04452;
  width: 6px;
  height: 6px;
}
.time-selection {
  padding-top: 20px;
  display: none;
}
.time-selection h3 {
  font-size: 14px;
  margin-bottom: 12px;
  color: #666;
}
.time-selection .time-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.time-slot {
  padding: 8px 12px;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  font-size: 12px;
  background-color: #f0f2f5;
}
.time-slot:hover {
  border-color: #2196f3;
  background-color: #f3f9ff;
}
.time-slot.selected {
  background-color: var(--c-main);
  color: #fff;
}
.time-slot.disabled {
  color: #c8c9cc;
  cursor: not-allowed;
}
#floating_git_version {
    position: fixed;
    bottom: 20px; /* 화면 하단에서 20px 위에 배치 */
    left: 50%;
    transform: translateX(-50%); /* 요소의 가로 중앙을 화면 가운데에 맞춤 */
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 12px;
    z-index: 9999;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s ease;
}