@charset "UTF-8";
/*▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣*/
/*
    * @Document   : module.css
    * @comment    : 사이트 전체 관련 CSS(공통요소) : BEM 방식
    * @comment    : 2019-08 티켓팅 프로세스 개선
*/
/*▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣*/
/*▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣*/
/*
    * @Document   : Skip to Navigation
    * @comment    : 접근성을 위한 Skip to Navigation
*/
/*▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣*/
/* 태그 및 Class 사용법 참고용
	<!-- Skip to Navigation -->
	<div id="skipnavi">
		<a href="#">본문 바로가기</a>
		<a href="#">주메뉴 바로가 </a>
	</div>
	<!-- //Skip to Navigation -->
*/
#skipnavi {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  margin-left: 0;
  z-index: 99999;
}

#skipnavi a {
  position: absolute;
  left: -99999px;
  display: block;
  width: 100%;
  text-align: center;
  font-size: 1.4em;
  background-color: #323232;
}

#skipnavi a:focus, #skipnavi a:active {
  position: relative;
  left: 0;
  z-index: 9999;
  width: 100%;
  padding: 10px;
  text-decoration: none;
}

#skipnavi a:link, #skipnavi a:visited, #skipnavi a:hover, #skipnavi a:active {
  color: #fff;
}

/*▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣*/
/*
    * @Document   : global
    * @comment    : global 사이트 전체 반복적으로 들어가는 클래스명
*/
/*▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣*/
.position {
  position: relative;
}

.position__left {
  position: absolute;
  top: 0;
  left: 0;
}

.position__right {
  position: absolute;
  top: 0;
  right: 0;
}

.position__right--tb-title {
  top: 6px;
  right: 5px;
}

.position__right--input-calendar {
  top: 10px;
}

.position__right--input-address {
  top: 8px;
}

.float {
  overflow: hidden;
}

.float__left {
  float: left;
}

.float__right {
  float: right;
}

.clear-both {
  clear: both;
}

.point-color-blue {
  color: #2b72c9;
}

.point-color-red {
  color: #ed1c24;
}

.rest-max-height {
  max-height: 400px !important;
}

.gap-none {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-top: 0  !important;
  margin-bottom: 0 !important;
}

.disable-global {
  color: #cccccc !important;
}

.disable-global:link, .disable-global:hover, .disable-global:focus, .disable-global:active {
  color: #cccccc;
}

.disable-input {
  pointer-events: none;
  color: #cccccc !important;
  background-color: #fff;
}

.disable-button {
  border-color: #ccc !important;
  background-color: #ccc !important;
}

/*▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣*/
/*
    * @Document   : inputLineBox
    * @comment    : inputLineBox 스타일
*/
/*▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣*/
.input {
  position: relative;
  border-bottom: 1px solid #d9d9d9;
  font-family: "Noto Sans";
  font-weight: 400;
  /* fontSize And lineHeight (42px / 56px) */
  font-size: 0.93333rem;
  line-height: 1.24444rem;
  text-align: left;
  color: #505050;
}

.input input::-webkit-input-placeholder {
  line-height: normal !important;
}

.input--half {
  width: 45% !important;
}

.input input::-webkit-input-placeholder {
  font-family: "Noto Sans";
  font-weight: 400;
  /* fontSize And lineHeight (45px / 45px) */
  font-size: 1rem;
  line-height: 1rem;
  text-align: left;
  color: #cccccc;
}

.input input::-moz-placeholder {
  font-family: "Noto Sans";
  font-weight: 400;
  /* fontSize And lineHeight (45px / 45px) */
  font-size: 1rem;
  line-height: 1rem;
  text-align: left;
  color: #cccccc;
}

.input input[type="email"] {
  width: 100%;
  border: 0;
  padding: 10px 0;
  font-family: "Noto Sans";
  font-weight: 400;
  /* fontSize And lineHeight (45px / 45px) */
  font-size: 1rem;
  line-height: 1rem;
  text-align: left;
  color: #505050;
}

.input--readonly {
  background-color: #eaeaea;
}

.input--readonly input[type='text'] {
  background-color: #eaeaea;
}

.input--select {
  margin-bottom: 10px;
}

.input--select select {
  border: 0;
  width: 100%;
  padding: 10px 0;
  font-family: "Noto Sans";
  font-weight: 400;
  /* fontSize And lineHeight (45px / 45px) */
  font-size: 1rem;
  line-height: 1rem;
  text-align: left;
  color: #505050;
  background: url("../../adventure/img/common/bg_select.png") no-repeat right 50%;
  background-size: 12px;
}

.input--select-terms {
  margin: 0 15px;
}

.input--select-terms select {
  border: 0;
  width: 100%;
  padding: 10px 0;
  font-family: "Noto Sans";
  font-weight: 400;
  /* fontSize And lineHeight (45px / 45px) */
  font-size: 1rem;
  line-height: 1rem;
  text-align: left;
  color: #505050;
  background: url("../../adventure/img/common/bg_select.png") no-repeat right 50%;
  background-size: 12px;
}

.input--select-alliance {
  padding-right: 10px;
  margin-bottom: 5px;
}

.input--select-alliance select {
  border: 0;
  width: 100%;
  padding: 10px 0;
  font-family: "Noto Sans";
  font-weight: 400;
  /* fontSize And lineHeight (45px / 45px) */
  font-size: 1rem;
  line-height: 1rem;
  text-align: left;
  color: #505050;
  background: url("../../adventure/img/common/bg_select.png") no-repeat right 50%;
  background-size: 12px;
}

.input--select-signgle select {
  border: 0;
  width: 100%;
  padding: 14px 0;
  font-family: "Noto Sans";
  font-weight: 400;
  /* fontSize And lineHeight (45px / 45px) */
  font-size: 1rem;
  line-height: 1rem;
  text-align: left;
  color: #505050;
  background: url("../../adventure/img/common/bg_select.png") no-repeat right 50%;
  background-size: 12px;
}

.input--text input[type="text"] {
  width: 100%;
  border: 0;
  padding: 10px 0;
  font-family: "Noto Sans";
  font-weight: 400;
  /* fontSize And lineHeight (45px / 45px) */
  font-size: 1rem;
  line-height: 1rem;
  text-align: left;
  color: #505050;
}

.input--search {
  padding-right: 10px;
}

.input--search input[type="search"] {
  width: 100%;
  border: 0;
  padding: 10px 0;
  font-family: "Noto Sans";
  font-weight: 400;
  /* fontSize And lineHeight (45px / 45px) */
  font-size: 1rem;
  line-height: 1rem;
  text-align: left;
  color: #505050;
}

.input--number input[type="number"] {
  width: 100%;
  border: 0;
  padding: 10px 0;
  font-family: "Noto Sans";
  font-weight: 400;
  /* fontSize And lineHeight (45px / 45px) */
  font-size: 1rem;
  line-height: 1rem;
  text-align: left;
  color: #505050;
}

.input--my-card input[type="number"] {
  width: 100%;
  border: 0;
  padding: 10px 0;
  font-family: "Noto Sans";
  font-weight: 400;
  /* fontSize And lineHeight (45px / 45px) */
  font-size: 1rem;
  line-height: 1rem;
  text-align: left;
  color: #cccccc;
}

.input__textarea {
  border: none;
  height: 160px;
  width: 100%;
}

.input-textarea {
  padding: 20px 15px;
}

.input-textarea textarea {
  min-height: 270px;
  width: 100%;
  border: 0;
  font-family: "Noto Sans";
  font-weight: 400;
  /* fontSize And lineHeight (45px / 65px) */
  font-size: 1rem;
  line-height: 1.44444rem;
  text-align: left;
  color: #505050;
}

.input-card-type {
  width: 100%;
  font-size: 0;
  margin-bottom: 17px;
}

.input-card-type__list {
  display: inline-block;
  width: 22.70408163265306%;
}

.input-card-type__list input {
  width: 100%;
  font-family: "Noto Sans";
  font-weight: 400;
  /* fontSize And lineHeight (45px / 45px) */
  font-size: 1rem;
  line-height: 1rem;
  text-align: center;
  color: #cccccc;
}

.input-card-type__list-line {
  display: inline-block;
  width: 3.061224489795918%;
  text-align: center;
}

.input-card-type__list-line span {
  display: inline-block;
  width: 100%;
  height: 1px;
  background-color: #d9d9d9;
}

.input-division-2 {
  overflow: hidden;
}

.input-division-2 .input:nth-child(1) {
  float: left;
  width: 34.93151%;
  margin-right: 7.07763%;
  margin-bottom: 0;
}

.input-division-2 .input:nth-child(1) select {
  padding: 14px 0;
}

.input-division-2 .input:nth-child(2) {
  float: left;
  width: 57.87671%;
}

.input-division-3 {
  overflow: hidden;
}

.input-division-3 .input:nth-child(1) {
  float: left;
  width: 46.46119%;
}

.input-division-3 .input-list-field__icon-email:nth-child(2) {
  float: left;
  width: 7.07763%;
  padding: 10px 0;
  text-align: center;
  font-family: "Noto Sans";
  font-weight: 400;
  /* fontSize And lineHeight (45px / 65px) */
  font-size: 1rem;
  line-height: 1.44444rem;
  text-align: center;
  color: #505050;
}

.input-division-3 .input:nth-child(3) {
  float: left;
  width: 46.46119%;
  margin-bottom: 0;
}

.input-division-3 .input:nth-child(3) select {
  padding: 14px 0;
}

.btn-table {
  display: table;
  table-layout: fixed;
  border-collapse: separate;
}

.btn-table--layer-footer {
  border-top: 1px solid #ed1c24;
}

.btn-table--layer-footer .btn--layer-cancell {
  padding: 15px 0;
}

.btn-table--layer-footer .btn--layer-conf {
  padding: 15px 0;
}

.btn-table--coupon {
  border: 1px solid #2b72c9;
  border-radius: 4px;
  overflow: hidden;
}

.btn-table__cell {
  display: table-cell;
  width: 1%;
  vertical-align: top;
}

.btn-table__cell:first-child .btn-table__cell__gap {
  margin-left: 0;
}

.btn-table__cell:last-child .btn-table__cell__gap {
  margin-right: 0;
}

.btn-table__cell__gap {
  margin: 0 5px;
}

.btn-table__cell__gap--m0 {
  margin: 0;
}

.btn-table__cell__gap .btn--layer-conf {
  border: none;
}

.btn-group {
  margin: 25px 14px 0 14px;
  font-size: 0;
}

.btn-group:last-child {
  margin-bottom: 0;
}

.btn-group--justified {
  display: table;
  table-layout: fixed;
  border-collapse: separate;
}

.btn-group--justified__group-gap {
  display: table-cell;
  width: 1%;
}

.btn-group--justified__group-gap .btn {
  display: block;
  margin-left: 5px;
  margin-right: 5px;
}

.btn-group--justified__group-gap:first-child .btn {
  margin-left: 0;
}

.btn-group--justified__group-gap:last-child .btn {
  margin-right: 0;
}

.btn-group--justified__group {
  display: table-cell;
  width: 1%;
}

.btn-group--justified__group .btn {
  display: block;
}

.btn-group--left {
  text-align: left;
}

.btn-group--center {
  text-align: center;
}

.btn-group--right {
  text-align: right;
}

.btn-group--alliance {
  margin: 18px 0 30px 0;
}

.btn-group--alliance .btn-table {
  width: 100%;
}

.btn {
  display: inline-block;
  padding: 0;
  font-size: 0;
  line-height: 0;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  vertical-align: middle;
  touch-action: manipulation;
  -ms-touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  color: #fff;
  border: none;
  border-radius: 0;
  background-image: none;
  background-color: #fff;
  margin: 0;
  width: 24px;
  height: 46px;
  /* 웹티켓 전용 아이콘 디자인 버튼 */
  /* //웹티켓 전용 아이콘 디자인 버튼 */
}

.btn:first-child {
  margin-left: 0;
}

.btn:last-child {
  margin-right: 0;
}

.btn:hover, .btn:focus, .btn:active {
  color: #fff;
  background-color: #fff;
}

.btn--default {
  display: inline-block;
  width: auto;
  height: auto;
  border: 1px solid #cccccc;
  border-radius: 4px;
  padding: 7px 15px;
  font-family: "Noto Sans";
  font-weight: 400;
  /* fontSize And lineHeight (39px / 39px) */
  font-size: 0.86667rem;
  line-height: 0.86667rem;
  text-align: center;
  color: #777777;
}

.btn--default:hover, .btn--default:focus, .btn--default:active {
  color: #777777;
  background-color: #fff;
}

.btn--clause {
  display: inline-block;
  width: auto;
  height: auto;
  border: 1px solid #cccccc;
  border-radius: 4px;
  padding: 7px 9px;
  font-family: "Noto Sans";
  font-weight: 400;
  /* fontSize And lineHeight (39px / 39px) */
  font-size: 0.86667rem;
  line-height: 0.86667rem;
  text-align: center;
  color: #777777;
  color: #777777 !important;
  top: 50%;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
}

.btn--clause:hover, .btn--clause:focus, .btn--clause:active {
  color: #777777;
  background-color: #fff;
}

.btn--block {
  display: block;
  width: 100% !important;
}

.btn--bg-color-0 {
  background-color: transparent !important;
}

.btn--mega-menu {
  position: relative;
  width: 24px;
  height: 46px;
}

.btn--mega-menu:hover, .btn--mega-menu:focus, .btn--mega-menu:active {
  color: #fff;
  background-color: #fff;
}

.btn--mega-menu__bar {
  position: absolute;
  top: 23px;
  left: 0;
  display: block;
  width: 24px;
  height: 2px;
  background-color: #e12f36;
}

.btn--mega-menu::after, .btn--mega-menu::before {
  position: absolute;
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: #e12f36;
}

.btn--mega-menu::after {
  top: 15px;
  left: 0;
}

.btn--mega-menu::before {
  bottom: 13px;
  left: 0;
}

.btn--mega-menu.btn--mega-menu-active::after, .btn--mega-menu.btn--mega-menu-active::before {
  background-color: #fff;
}

.btn--mega-menu.btn--mega-menu-active .btn--mega-menu__bar {
  background-color: #fff;
}

.btn--calendar {
  width: 25px;
  height: 21px;
  background: url("../../adventure/img/common/imgSet.png") no-repeat -66px 0;
  -webkit-background-size: 300px 300px;
  background-size: 300px 300px;
}

.btn--calendar-day {
  width: 100%;
  height: 30px;
  font-family: "Noto Sans";
  font-weight: 400;
  /* fontSize And lineHeight (42px / 42px) */
  font-size: 0.93333rem;
  line-height: 0.93333rem;
  text-align: center;
  color: #505050;
}

.btn--calendar-day:link, .btn--calendar-day:hover, .btn--calendar-day:focus, .btn--calendar-day:active {
  color: #505050;
}

.btn--prev-month {
  position: relative;
  width: 55px;
}

.btn--prev-month:before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid #000;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 6px 6px 6px 6px;
  border-color: transparent #505050 transparent transparent;
}

.btn--next-month {
  position: relative;
  width: 55px;
}

.btn--next-month:before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid #000;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 6px 6px 6px 6px;
  border-color: transparent transparent transparent #505050;
}

.btn--prev-rest-month {
  position: relative;
  width: 35px;
}

.btn--prev-rest-month:before {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  width: 9px;
  height: 9px;
  margin-top: 0px;
  border: 1px solid #777777;
  border-top: transparent;
  border-right: transparent;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.btn--next-rest-month {
  position: relative;
  width: 35px;
}

.btn--next-rest-month:before {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  width: 9px;
  height: 9px;
  margin-top: 0px;
  border: 1px solid #777777;
  border-top: transparent;
  border-left: transparent;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.btn--layer-conf {
  display: block;
  width: 100%;
  border: 1px solid #e92d2d;
  padding: 15px 18px;
  font-family: "Noto Sans";
  font-weight: 500;
  /* fontSize And lineHeight (45px / 45px) */
  font-size: 1rem;
  line-height: 1rem;
  text-align: center;
  color: #fff;
  color: #fff !important;
  background-color: #e92d2d;
}

.btn--layer-conf:link, .btn--layer-conf:hover, .btn--layer-conf:focus, .btn--layer-conf:active {
  color: #fff;
  background-color: #e92d2d;
}

.btn--update {
  display: block;
  width: 100%;
  border: 1px solid #e92d2d;
  padding: 15px 18px;
  border-radius: 4px;
  font-family: "Noto Sans";
  font-weight: 500;
  /* fontSize And lineHeight (45px / 45px) */
  font-size: 1rem;
  line-height: 1rem;
  text-align: center;
  color: #fff;
  color: #fff !important;
  background-color: #e92d2d;
}

.btn--update:link, .btn--update:hover, .btn--update:focus, .btn--update:active {
  color: #fff;
  background-color: #e92d2d;
}

.btn--conpou-cancle {
  display: block;
  width: 100%;
  padding: 15px 18px;
  font-family: "Noto Sans";
  font-weight: 500;
  /* fontSize And lineHeight (45px / 45px) */
  font-size: 1rem;
  line-height: 1rem;
  text-align: center;
  color: #fff;
  color: #2b72c9 !important;
  background-color: #fff;
}

.btn--conpou-cancle:link, .btn--conpou-cancle:hover, .btn--conpou-cancle:focus, .btn--conpou-cancle:active {
  color: #fff;
  background-color: #fff;
}

.btn--conpou-confirm {
  display: block;
  width: 100%;
  padding: 15px 18px;
  font-family: "Noto Sans";
  font-weight: 500;
  /* fontSize And lineHeight (45px / 45px) */
  font-size: 1rem;
  line-height: 1rem;
  text-align: center;
  color: #fff;
  color: #fff !important;
  background-color: #2b72c9;
}

.btn--conpou-confirm:link, .btn--conpou-confirm:hover, .btn--conpou-confirm:focus, .btn--conpou-confirm:active {
  color: #fff;
  background-color: #2b72c9;
}

.btn--search {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 36px;
  height: 100%;
  background: url("../../adventure/img/common/icon_search.png") no-repeat 50% 50%;
  background-size: 12px;
  background-color: #fff;
}

.btn--into {
  display: inline-block;
  width: auto;
  height: auto;
  border: 1px solid #2b72c9;
  border-radius: 4px;
  padding: 15px 18px;
  font-family: "Noto Sans";
  font-weight: 500;
  /* fontSize And lineHeight (45px / 45px) */
  font-size: 1rem;
  line-height: 1rem;
  text-align: center;
  color: #fff;
  color: #fff !important;
  background-color: #2b72c9;
}

.btn--into:link, .btn--into:hover, .btn--into:focus, .btn--into:active {
  color: #fff;
  background-color: #2b72c9;
}

.btn--layer-cancell {
  display: block;
  width: 100%;
  height: auto;
  padding: 15px 18px;
  font-family: "Noto Sans";
  font-weight: 500;
  /* fontSize And lineHeight (45px / 45px) */
  font-size: 1rem;
  line-height: 1rem;
  text-align: center;
  color: #e92d2d;
  color: #e92d2d !important;
}

.btn--layer-cancell:link, .btn--layer-cancell:hover, .btn--layer-cancell:focus, .btn--layer-cancell:active {
  color: #e92d2d;
  background-color: #fff;
}

.btn--layer-cancell__num {
  font-family: "Lato";
  font-weight: 700;
  /* fontSize And lineHeight (54px / 54px) */
  font-size: 1.2rem;
  line-height: 1.2rem;
  text-align: center;
  color: #fff;
}

.btn--tooltip {
  width: 21px;
  height: 21px;
  background: url("../../adventure/img/common/imgSet.png") no-repeat -133px 0;
  -webkit-background-size: 300px 300px;
  background-size: 300px 300px;
}

.btn--minus {
  float: left;
  position: relative;
  width: 24px;
  height: 24px;
  border: 1px solid #505050;
  border-radius: 3px;
}

.btn--minus::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1px;
  background-color: #505050;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.btn--plus {
  float: right;
  position: relative;
  width: 24px;
  height: 24px;
  border: 1px solid #505050;
  border-radius: 3px;
}

.btn--plus::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1px;
  background-color: #505050;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.btn--plus::before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 12px;
  background-color: #505050;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.btn--share {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 75px;
  height: 24px;
  background: url("../../adventure/img/common/bg_sns.png") no-repeat 0 2px;
  -webkit-background-size: 20px 20px;
  background-size: 20px 20px;
}

.btn--share__text {
  padding-left: 25px;
  font-family: "Noto Sans";
  font-weight: 400;
  /* fontSize And lineHeight (39px / 39px) */
  font-size: 0.86667rem;
  line-height: 0.86667rem;
  text-align: center;
  color: #777777;
}

.btn--confirm {
  display: inline-block;
  width: auto;
  height: auto;
  border-radius: 4px;
  padding: 7px 15px;
  font-family: "Noto Sans";
  font-weight: 400;
  /* fontSize And lineHeight (39px / 39px) */
  font-size: 0.86667rem;
  line-height: 0.86667rem;
  text-align: center;
  color: #fff;
  color: #fff !important;
  background-color: #2b72c9;
}

.btn--confirm:link, .btn--confirm:hover, .btn--confirm:focus, .btn--confirm:active {
  color: #e92d2d;
  background-color: #2b72c9;
}

.btn--adult {
  background-color: #222222;
}

.btn--adult:link, .btn--adult:hover, .btn--adult:focus, .btn--adult:active {
  background-color: #222222;
}

.btn--adolescent {
  background-color: #0159c3;
}

.btn--adolescent:link, .btn--adolescent:hover, .btn--adolescent:focus, .btn--adolescent:active {
  background-color: #0159c3;
}

.btn--child {
  background-color: #006c54;
}

.btn--child:link, .btn--child:hover, .btn--child:focus, .btn--child:active {
  background-color: #006c54;
}

.btn--ticket-common {
  background-color: #222222;
}

.btn--authe {
  display: inline-block;
  width: auto;
  height: auto;
  border-radius: 4px;
  padding: 8px 10px;
  font-family: "Noto Sans";
  font-weight: 400;
  /* fontSize And lineHeight (39px / 39px) */
  font-size: 0.86667rem;
  line-height: 0.86667rem;
  text-align: center;
  color: #fff;
  color: #fff !important;
  background-color: #2b72c9;
  top: 50%;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
}

.btn--authe:link, .btn--authe:hover, .btn--authe:focus, .btn--authe:active {
  background-color: #2b72c9;
}

.btn--authe--disabled {
  background-color: #cccccc;
}

.btn--authe--disabled:link, .btn--authe--disabled:hover, .btn--authe--disabled:focus, .btn--authe--disabled:active {
  background-color: #cccccc;
}

.btn--border-red {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid #e92d2d;
  border-radius: 4px;
  padding: 15px 18px;
  font-family: "Noto Sans";
  font-weight: 400;
  /* fontSize And lineHeight (45px / 45px) */
  font-size: 1rem;
  line-height: 1rem;
  text-align: center;
  color: #e92d2d;
  color: #e92d2d !important;
}

.btn--border-red:link, .btn--border-red:hover, .btn--border-red:focus, .btn--border-red:active {
  color: #e92d2d;
  background-color: #fff;
}

.btn--border-red__num {
  font-family: "Lato";
  font-weight: 700;
  /* fontSize And lineHeight (54px / 54px) */
  font-size: 1.2rem;
  line-height: 1.2rem;
  text-align: center;
  color: #fff;
}

.btn--red-bg {
  display: block;
  width: auto;
  height: auto;
  border: 1px solid #e92d2d;
  border-radius: 4px;
  padding: 15px 18px;
  font-family: "Noto Sans";
  font-weight: 500;
  /* fontSize And lineHeight (45px / 45px) */
  font-size: 1rem;
  line-height: 1rem;
  text-align: center;
  color: #fff;
  color: #fff !important;
  background-color: #e92d2d;
}

.btn--red-bg:link, .btn--red-bg:hover, .btn--red-bg:focus, .btn--red-bg:active {
  color: #fff;
  background-color: #e92d2d;
}

.btn--line {
  display: block;
  width: auto;
  height: auto;
  border: 1px solid #2b72c9;
  border-radius: 4px;
  padding: 15px 18px;
  font-family: "Noto Sans";
  font-weight: 500;
  /* fontSize And lineHeight (45px / 45px) */
  font-size: 1rem;
  line-height: 1rem;
  text-align: center;
  color: #2b72c9;
  color: #2b72c9 !important;
  background-color: #fff;
}

.btn--line:link, .btn--line:hover, .btn--line:focus, .btn--line:active {
  color: #2b72c9;
  background-color: #fff;
}

.btn--deactivate {
  display: block;
  border: 1px solid #999999;
  background-color: #999999;
  opacity: 0.5;
}

.btn--deactivate:link, .btn--deactivate:hover, .btn--deactivate:focus, .btn--deactivate:active {
  color: #fff;
  background-color: #999999;
}

.btn--black-bg {
  display: block;
  width: auto;
  height: auto;
  border: 1px solid #505050;
  border-radius: 4px;
  padding: 15px 18px;
  font-family: "Noto Sans";
  font-weight: 500;
  /* fontSize And lineHeight (45px / 45px) */
  font-size: 1rem;
  line-height: 1rem;
  text-align: center;
  color: #fff;
  color: #fff !important;
  background-color: #505050;
}

.btn--black-bg:link, .btn--black-bg:hover, .btn--black-bg:focus, .btn--black-bg:active {
  color: #fff;
  background-color: #505050;
}

.btn--border-blue {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid #2b72c9;
  border-radius: 4px;
  padding: 15px 18px;
  font-family: "Noto Sans";
  font-weight: 400;
  /* fontSize And lineHeight (45px / 45px) */
  font-size: 1rem;
  line-height: 1rem;
  text-align: center;
  color: #2b72c9;
  color: #2b72c9 !important;
}

.btn--border-blue:link, .btn--border-blue:hover, .btn--border-blue:focus, .btn--border-blue:active {
  color: #2b72c9;
  background-color: #fff;
}

.btn--blue-bg {
  display: block;
  width: auto;
  height: auto;
  border: 1px solid #2b72c9;
  border-radius: 4px;
  padding: 15px 18px;
  font-family: "Noto Sans";
  font-weight: 500;
  /* fontSize And lineHeight (45px / 45px) */
  font-size: 1rem;
  line-height: 1rem;
  text-align: center;
  color: #fff;
  color: #fff !important;
  background-color: #2b72c9;
}

.btn--blue-bg:link, .btn--blue-bg:hover, .btn--blue-bg:focus, .btn--blue-bg:active {
  color: #fff;
  background-color: #2b72c9;
}

.btn--border-black {
  display: inline-block;
  width: auto;
  height: auto;
  border: 1px solid #222222;
  border-radius: 4px;
  padding: 6px 10px;
  font-family: "Noto Sans";
  font-weight: 500;
  /* fontSize And lineHeight (39px / 39px) */
  font-size: 0.86667rem;
  line-height: 0.86667rem;
  text-align: center;
  color: #222222;
  color: #222222 !important;
}

.btn--border-black:link, .btn--border-black:hover, .btn--border-black:focus, .btn--border-black:active {
  color: #222222;
  background-color: #ffffff;
}

.btn--border-black__num {
  font-family: "Lato";
  font-weight: 700;
  /* fontSize And lineHeight (45px / 45px) */
  font-size: 1rem;
  line-height: 1rem;
  text-align: center;
  color: #222222;
}

.btn--login {
  width: auto;
  height: auto;
  font-family: "Noto Sans";
  font-weight: 700;
  /* fontSize And lineHeight (27px / 27px) */
  font-size: 0.6rem;
  line-height: 0.6rem;
  text-align: center;
  color: #ffe795;
  padding: 4px 7px;
  border-radius: 12px;
  border: 1px solid #ffe795;
  background-color: transparent;
}

.btn--login:link, .btn--login:hover, .btn--login:focus, .btn--login:active {
  color: #ffe795;
  background-color: transparent;
}

.btn--app-use {
  background-color: transparent;
}

.btn-link {
  display: inline-block;
  width: 24px;
  height: 46px;
  font-size: 0;
  vertical-align: bottom;
}

.btn-link--lpoint {
  position: fixed;
  left: 20px;
  bottom: 66px;
  width: 36px;
  height: 46px;
  background: url("../../adventure/img/common/img_lpoint.png") no-repeat 0 0;
  -webkit-background-size: 36px 46px;
  background-size: 36px 46px;
}

.switch-bx {
  width: 120px;
  height: 50px;
  position: relative;
  border-radius: 50px 50px / 50px 50px;
  overflow: hidden;
}

.switch-bx__radio {
  display: none;
}

.switch-bx__bg {
  background-color: #ccc;
  width: 100%;
  height: 100%;
}

.switch-bx__btn {
  pointer-events: none;
  opacity: 1;
  border-radius: 50%;
  display: inline-block;
  width: 50px;
  height: 50px;
  background-color: #fff;
  border: 1px solid black;
  position: absolute;
  left: 0px;
  top: 0px;
}

/*▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣*/
/*
    * @Document   : gradation
    * @comment    : gradation 스타일
*/
/*▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣*/
/*
    * 좌,우측 사라지는 효과
     */
.gradient-disappear {
  position: absolute;
  top: 0;
  left: 0;
  height: 38px;
  width: 100%;
  pointer-events: none;
}

.gradient-disappear::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 40px;
  width: 60px;
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, white 50%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, white 50%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

.gradient-disappear::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  height: 40px;
  width: 60px;
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, white 50%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, white 50%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

/*▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣*/
/*
    * @Document   : tab
    * @comment    : tab 버튼 스타일
*/
/*▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣*/
.tab-line {
  position: relative;
  display: table;
  table-layout: fixed;
  width: 100%;
  height: 51px;
}

.tab-line::after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  height: 2px;
  background-color: #000;
}

.tab-line__list {
  position: relative;
  display: table-cell;
  width: 50%;
  text-align: center;
  border: 1px solid #ddd;
  border-right: 1px solid #ddd;
  border-left: 0;
}

.tab-line__list:first-child {
  border-left: 1px solid #ddd;
}

.tab-line__list--active {
  border: 2px solid #000;
}

.tab-line__list--active:first-child {
  border-left: 2px solid #000;
}

.tab-line__list--active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background-color: #fff;
  z-index: 2;
}

.tab-line__list__link {
  display: block;
  line-height: 40px;
}

.tab-box {
  position: relative;
  display: table;
  table-layout: fixed;
  width: 100%;
  height: 51px;
}

.tab-box__list {
  position: relative;
  display: table-cell;
  width: 50%;
  text-align: center;
  vertical-align: middle;
  background-color: #3e3e4d;
}

.tab-box__list--active {
  font-family: "Noto Sans";
  font-weight: 500;
  /* fontSize And lineHeight (45px / 145px) */
  font-size: 1rem;
  line-height: 3.22222rem;
  text-align: center;
  color: #fff;
  background-color: #2b72c9;
}

.tab-box__list__link {
  display: block;
  font-family: "Noto Sans";
  font-weight: 400;
  /* fontSize And lineHeight (45px / 145px) */
  font-size: 1rem;
  line-height: 3.22222rem;
  text-align: center;
  color: #fff;
  height: 100%;
}

.tab-box__list__link:link, .tab-box__list__link:visited, .tab-box__list__link:focus, .tab-box__list__link:active {
  color: #fff;
}

.tab-multi {
  margin-top: -1px;
  margin-bottom: 21px;
  overflow: hidden;
  border-bottom: 1px solid #dddddd;
}

.tab-multi__list {
  float: left;
  width: 50%;
  display: table;
  border-top: 1px solid #dddddd;
  border-left: 1px solid #dddddd;
}

.tab-multi__list--active {
  font-family: "Noto Sans";
  font-weight: 500;
  /* fontSize And lineHeight (45px / 55px) */
  font-size: 1rem;
  line-height: 1.22222rem;
  text-align: center;
  color: #fff;
  background-color: #2b72c9;
}

.tab-multi__list--active a:link,
.tab-multi__list--active a:visited,
.tab-multi__list--active a:focus,
.tab-multi__list--active a:active {
  color: #fff;
}

.tab-multi__list__link {
  display: table-cell;
  height: 50px;
  width: 100%;
  vertical-align: middle;
  font-family: "Noto Sans";
  font-weight: 400;
  /* fontSize And lineHeight (45px / 55px) */
  font-size: 1rem;
  line-height: 1.22222rem;
  text-align: center;
  color: #3e3e4d;
}

/*▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣*/
/*
    * @Document   : modal
    * @comment    : modal 스타일
*/
/*▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣*/
.popup {
  display: none;
  position: fixed;
  width: 100%;
  left: 0px;
  top: 0px;
  z-index: 9999;
}

.popup-container {
  position: relative;
  z-index: 100;
}

.popup-list {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100%;
  background: #fff;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  border-radius: 4px;
}

.popup-list__main {
  background-color: transparent;
  text-align: center;
}

.popup-list__main-bx {
  width: 292px;
  display: inline-block;
}

.popup-list__main-btn-close {
  text-align: right;
}

.popup-list__main-btn-close a img {
  display: inline-block;
  margin-right: 14px;
  width: 15px;
}

.popup-list__main-content {
  text-align: center;
  margin-bottom: 10px;
}

.popup-list__main-content img {
  display: inline-block;
}

.popup-list__main-control a {
  text-align: center;
  display: inline-block;
  width: 140px;
  font-family: "Noto Sans";
  font-weight: 400;
  /* fontSize And lineHeight (45px / 45px) */
  font-size: 1rem;
  line-height: 1rem;
  text-align: center;
  color: #ffffff;
}

.popup-list__main-control img {
  display: inline-block;
  width: 2px;
  position: relative;
  top: 3px;
}

.popup-dimmed {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.5);
}

.popup_content {
  overflow-y: auto;
  max-height: 335px;
}

.popup_content__txt-bx {
  padding: 18px 11px;
}

.popup_content__sub-title {
  margin-bottom: 11px;
}

.popup_content__style-confirm {
  text-align: center;
}

.popup_content__img {
  width: 52px;
  display: inline-block;
  margin-bottom: 23px;
}

.popup_content__email-box {
  border: none !important;
}

.popup_content--no-bottom-line {
  padding-top: 0 !important;
}

.popup_content--space-left-right {
  padding-left: 18px;
  padding-right: 18px;
}

.popup_header {
  padding: 17px 0;
  border-bottom: 1px solid #dddddd;
}

.popup_header__title {
  font-family: "Noto Sans";
  font-weight: 500;
  /* fontSize And lineHeight (48px / 48px) */
  font-size: 1.06667rem;
  line-height: 1.06667rem;
  text-align: center;
  color: #222222;
}

.popup_header__title--left {
  padding-left: 15px;
  font-family: "Noto Sans";
  font-weight: 500;
  /* fontSize And lineHeight (48px / 48px) */
  font-size: 1.06667rem;
  line-height: 1.06667rem;
  text-align: left;
  color: #222222;
}

.popup_header--no-bottom-line {
  border-bottom: none;
}

.popup_footer .btn-table .btn-table__cell .btn-table__cell__gap {
  margin: 0;
}

.popup_footer .btn-table .btn-table__cell .btn-table__cell__gap .btn--layer-conf {
  border: 0;
}

.full-popup-wrap {
  display: none;
  background-color: #fff;
}

.full-popup-list {
  display: none;
}

.full-popup-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  padding: 17px 0;
  border-bottom: 1px solid #dddddd;
  z-index: 500;
}

.full-popup-header--use-guide {
  border-bottom: 0;
  background-color: transparent;
}

.full-popup-header__title {
  font-family: "Noto Sans";
  font-weight: 500;
  /* fontSize And lineHeight (48px / 48px) */
  font-size: 1.06667rem;
  line-height: 1.06667rem;
  text-align: center;
  color: #222222;
}

.full-popup-header__title--left {
  padding-left: 15px;
  font-family: "Noto Sans";
  font-weight: 500;
  /* fontSize And lineHeight (48px / 48px) */
  font-size: 1.06667rem;
  line-height: 1.06667rem;
  text-align: left;
  color: #222222;
}

.full-popup-content {
  padding-top: 51px;
  padding-bottom: 0;
}

.full-popup-content__img {
  margin-left: auto;
  margin-right: auto;
  width: 52px;
  margin-bottom: 23px;
}

.full-popup-content--none-gap {
  padding-bottom: 0;
}

.full-popup-content--use-guide {
  padding-top: 0;
  padding-bottom: 0;
}

.full-popup-content--use-guide img {
  display: inline-block;
  width: 100%;
}

.full-popup-footer {
  width: 100%;
  background-color: #fff;
}

.full-popup-footer__inner {
  padding: 15px 14px;
}

/*▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣*/
/*
    * @Document   : modal
    * @comment    : modal 스타일
*/
/*▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣*/
.modal-dim {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 500;
  background-color: rgba(0, 0, 0, 0.7);
}

/*▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣*/
/*
    * @Document   : bullet
    * @comment    : bullet 스타일
*/
/*▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣*/
.bullet {
  position: relative;
}

.bullet--arrow-left::after {
  display: block;
  position: absolute;
  top: 50%;
  left: 10px;
  content: "";
  width: 14px;
  height: 14px;
  margin-top: -8px;
  border: 1px solid #fff;
  border-bottom: transparent;
  border-left: transparent;
  -webkit-transform: rotate(220deg);
  -ms-transform: rotate(220deg);
  transform: rotate(220deg);
}

.bullet--head-prev {
  margin-left: 10px;
}

.bullet--head-prev::after {
  display: block;
  position: absolute;
  top: 50%;
  left: 10px;
  content: "";
  width: 14px;
  height: 14px;
  margin-top: -8px;
  border: 2px solid #e12f36;
  border-bottom: transparent;
  border-left: transparent;
  -webkit-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
}

.bullet--arrow-right::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 9px;
  content: "";
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border: 1px solid #777777;
  border-bottom: transparent;
  border-left: transparent;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.bullet--arrow-down::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 10px;
  content: "";
  width: 14px;
  height: 14px;
  margin-top: -10px;
  border: 1px solid #fff;
  border-bottom: transparent;
  border-left: transparent;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}

.bullet--rectangle {
  text-indent: -5px;
  padding-left: 5px;
  padding-bottom: 5px;
}

.bullet--rectangle:before {
  content: '';
  display: inline-block;
  text-indent: -5px;
  width: 3px;
  height: 3px;
  vertical-align: top;
  margin-top: 10px;
  background-color: #505050;
}

.bullet--circle {
  text-indent: -5px;
  padding-left: 5px;
  padding-bottom: 5px;
}

.bullet--circle:before {
  content: '';
  display: inline-block;
  text-indent: -5px;
  width: 3px;
  height: 3px;
  vertical-align: top;
  margin-top: 10px;
  border-radius: 50%;
  background-color: #505050;
}

.bullet--circle--card-result {
  text-indent: -8px;
  padding-left: 8px;
}

.bullet--circle--card-result:before {
  content: '';
  display: inline-block;
  margin-right: 5px;
  width: 2px;
  height: 2px;
  vertical-align: top;
  margin-top: 7px;
  border-radius: 50%;
  background-color: #505050;
}

.bullet--circle-6 {
  text-indent: -5px;
  padding-left: 5px;
  padding-bottom: 5px;
}

.bullet--circle-6:before {
  content: '';
  display: inline-block;
  text-indent: -5px;
  width: 2px;
  height: 2px;
  vertical-align: top;
  margin-top: 10px;
  margin-right: 6px;
  border-radius: 50%;
  background-color: #505050;
}

.bullet--circle-6--card-result {
  text-indent: -8px;
  padding-left: 8px;
}

.bullet--circle-6--card-result:before {
  content: '';
  display: inline-block;
  margin-right: 5px;
  width: 2px;
  height: 2px;
  vertical-align: top;
  margin-top: 7px;
  border-radius: 50%;
  background-color: #505050;
}

.bullet--circle-9 {
  text-indent: -5px;
  padding-left: 5px;
  padding-bottom: 5px;
}

.bullet--circle-9:before {
  content: '';
  display: inline-block;
  text-indent: -5px;
  width: 3px;
  height: 3px;
  vertical-align: top;
  margin-top: 8px;
  margin-right: 4px;
  border-radius: 50%;
  background-color: #505050;
}

.bullet--circle-9--card-result {
  text-indent: -8px;
  padding-left: 8px;
}

.bullet--circle-9--card-result:before {
  content: '';
  display: inline-block;
  margin-right: 5px;
  width: 2px;
  height: 2px;
  vertical-align: top;
  margin-top: 7px;
  border-radius: 50%;
  background-color: #505050;
}

.bullet--text-info {
  padding-bottom: 5px;
  padding-left: 5px;
  text-indent: -5px;
}

.bullet--text-info:before {
  content: '';
  display: inline-block;
  width: 2px;
  height: 2px;
  vertical-align: middle;
  margin-right: 5px;
  border-radius: 50%;
  background-color: #505050;
}

.bullet--text-important {
  padding-bottom: 5px;
  padding-left: 5px;
  text-indent: -5px;
}

.bullet--text-important:before {
  content: '※';
  padding-right: 5px;
  display: inline-block;
  width: 2px;
  border-radius: 50%;
}

.bullet--text-indent {
  text-indent: -5px;
  padding-left: 5px;
  padding-bottom: 2px;
}

.bullet--triangl-top:before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 10px;
  left: 10px;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 3px 3px 3px 3px;
  border-color: transparent transparent #222 transparent;
}

.bullet--triangl-right:before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 10px;
  left: 10px;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 3px 3px 3px 3px;
  border-color: transparent transparent transparent #222;
}

.bullet--triangl-bottom:before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 10px;
  left: 10px;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 3px 3px 3px 3px;
  border-color: #222 transparent transparent transparent;
}

.bullet--triangl-left:before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 10px;
  left: 10px;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 3px 3px 3px 3px;
  border-color: transparent #222 transparent transparent;
}

.bullet--cross {
  position: absolute;
  top: 14px;
  right: 15px;
  width: 21px;
  height: 21px;
  padding: 0;
  border-radius: 0;
  margin: 0;
}

.bullet--cross__inside {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  text-indent: -500rem;
  transform: rotate(45deg);
}

.bullet--cross__inside::before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 320px;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  width: 100%;
  height: 1px;
  background-color: #ffffff;
}

.bullet--cross__inside::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 320px;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  width: 1px;
  height: 100%;
  background-color: #ffffff;
}

.bullet--cross__inside--pop-green::before {
  background-color: #777777;
}

.bullet--cross__inside--pop-green::after {
  background-color: #777777;
}

.bullet--cross__inside--update::before {
  content: '';
  height: 2px;
  background-color: #e12f36;
}

.bullet--cross__inside--update::after {
  content: '';
  width: 2px;
  background-color: #e12f36;
}

.bullet--cross-guide {
  position: absolute;
  top: 14px;
  right: 15px;
  width: 22px;
  height: 22px;
  padding: 0;
  border-radius: 0;
  margin: 0;
}

.bullet--cross-guide__app-use {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  text-indent: -500rem;
  transform: rotate(45deg);
}

.bullet--cross-guide__app-use::before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  width: 100%;
  height: 1px;
  background-color: #fff;
}

.bullet--cross-guide__app-use::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  width: 1px;
  height: 100%;
  background-color: #fff;
}

.bullet--essential-left::before {
  content: '*';
  display: inline-block;
  vertical-align: middle;
  font-family: "Noto Sans";
  font-weight: 500;
  /* fontSize And lineHeight (45px / 45px) */
  font-size: 1rem;
  line-height: 1rem;
  text-align: left;
  color: #e12f36;
}

.bullet--essential-right::after {
  content: '*';
  display: inline-block;
  width: 5px;
  height: 5px;
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Noto Sans";
  font-weight: 500;
  /* fontSize And lineHeight (45px / 45px) */
  font-size: 1rem;
  line-height: 1rem;
  text-align: left;
  color: #e12f36;
}

.hamburger:after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 40%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-indent: -500em;
  width: 20px;
  height: 1px;
  background-color: #565758;
}

.hamburger:before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 63%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-indent: -500em;
  width: 20px;
  height: 1px;
  background-color: #565758;
}

/*▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣*/
/*
    * @Document   : imgicon
    * @comment    : imgicon : 이미지 아이콘
*/
/*▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣*/
.icon-calendar__btn {
  position: absolute;
  right: 0;
  display: inline-block;
  width: 30px;
  height: 30px;
  background: #fff url("../../adventure/img/common/icon_calendar.png") no-repeat center;
  border: 1px solid #ddd;
  border-radius: 2px;
  text-indent: -9999px;
}

.icon-email::before {
  content: '';
  font-size: 0;
  display: inline-block;
  width: 15px;
  height: 10px;
  margin-right: 10px;
  background: #fff url("../../adventure/img/sub/icon_email.png") no-repeat 0 0;
  background-size: 15px 10px;
}

.icon-phone::before {
  content: '';
  font-size: 0;
  display: inline-block;
  width: 15px;
  height: 10px;
  margin-right: 10px;
  background: #fff url("../../adventure/img/sub/icon_phone.png") no-repeat 0 0;
  background-size: 15px 10px;
}

/*▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣*/
/*
    * @Document   : table
    * @comment    : table 스타일
*/
/*▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣*/
/* table list */
.tb-list-wrap {
  padding: 0 14px;
}

.tb-list-wrap__title {
  padding-bottom: 10px;
  font-family: "Noto Sans";
  font-weight: 500;
  /* fontSize And lineHeight (48px / 48px) */
  font-size: 1.06667rem;
  line-height: 1.06667rem;
  text-align: left;
  color: #444444;
}

.tb-list-wrap__sub-title {
  padding-top: 18px;
  padding-bottom: 6px;
  font-family: "Noto Sans";
  font-weight: 500;
  /* fontSize And lineHeight (42px / 48px) */
  font-size: 0.93333rem;
  line-height: 1.06667rem;
  text-align: left;
  color: #505050;
}

.tb-list-wrap__single-text {
  padding-top: 20px;
  padding-bottom: 6px;
}

.tb-list-wrap__list {
  width: 100%;
  margin: 0;
  border: 0;
  border-top: 2px solid #3c3c4d;
  border-bottom: 2px solid #cccccc;
  table-layout: fixed;
  border-spacing: 0;
}

.tb-list-wrap__list tbody tr:last-child th {
  border-bottom: 0;
}

.tb-list-wrap__list tbody tr:last-child td {
  border-bottom: 0;
}

.tb-list-wrap__list tbody th {
  padding: 10px;
  border: 0 none;
  width: 14%;
  height: auto;
  word-break: keep-all;
  background-color: #f8f8f8;
  border-bottom: 1px solid #d9d9d9;
  font-family: "Noto Sans";
  font-weight: 500;
  /* fontSize And lineHeight (42px / 60px) */
  font-size: 0.93333rem;
  line-height: 1.33333rem;
  text-align: left;
  color: #505050;
}

.tb-list-wrap__list tbody td {
  padding: 10px 20px;
  border: 0 none;
  width: 14%;
  height: auto;
  word-wrap: break-word;
  border-left: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  font-family: "Noto Sans";
  font-weight: 400;
  /* fontSize And lineHeight (42px / 60px) */
  font-size: 0.93333rem;
  line-height: 1.33333rem;
  text-align: left;
  color: #505050;
}

.tb-list-wrap__list tfoot th {
  padding: 10px;
  border: 0 none;
  width: 14%;
  height: auto;
  word-break: keep-all;
  background-color: #f8f8f8;
  border-top: 2px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  font-family: "Noto Sans";
  font-weight: 500;
  /* fontSize And lineHeight (42px / 60px) */
  font-size: 0.93333rem;
  line-height: 1.33333rem;
  text-align: left;
  color: #505050;
}

.tb-list-wrap__list tfoot td {
  padding: 10px 20px;
  border: 0 none;
  width: 14%;
  height: auto;
  word-wrap: break-word;
  border-left: 1px solid #d9d9d9;
  border-top: 2px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  font-family: "Noto Sans";
  font-weight: 400;
  /* fontSize And lineHeight (42px / 60px) */
  font-size: 0.93333rem;
  line-height: 1.33333rem;
  text-align: left;
  color: #505050;
}

.tb-list-wrap__list-gr {
  width: 100%;
  margin: 0;
  border: 0;
  table-layout: fixed;
  border-spacing: 0;
}

.tb-list-wrap__list-gr tbody th, .tb-list-wrap__list-gr tbody td {
  padding: 0;
  height: auto;
  border: 0;
  background: none;
}

.tb-list-wrap__list-gr tbody tr:first-child td:last-child {
  position: relative;
}

.tb-list-wrap__list-gr tbody tr:first-child td:last-child::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 13px;
  content: "";
  width: 8px;
  height: 8px;
  margin-top: -8px;
  border: 2px solid #777777;
  border-bottom: transparent;
  border-left: transparent;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.tb-list-wrap__list-gr tbody tr td:last-child p {
  padding-right: 35px;
}

.tb-list-wrap__list-gr tbody tr:last-child th,
.tb-list-wrap__list-gr tbody tr:last-child td {
  padding-bottom: 0;
}

.tb-list-wrap__list-gr tbody th {
  padding-left: 13px;
  width: 75px;
  word-break: keep-all;
  font-family: "Noto Sans";
  font-weight: 400;
  /* fontSize And lineHeight (40px / 40px) */
  font-size: 0.88889rem;
  line-height: 0.88889rem;
  text-align: left;
  color: #777777;
}

.tb-list-wrap__list-gr tbody td {
  word-wrap: break-word;
  font-family: "Noto Sans";
  font-weight: 400;
  /* fontSize And lineHeight (58px / 80px) */
  font-size: 1.28889rem;
  line-height: 1.77778rem;
  text-align: left;
  color: #505050;
}

.tb-list-wrap__list-gr tbody td .text {
  font-family: "Noto Sans";
  font-weight: 400;
  /* fontSize And lineHeight (40px / 40px) */
  font-size: 0.88889rem;
  line-height: 0.88889rem;
  text-align: right;
  color: #777777;
}

.tb-list-wrap__list-row {
  width: 100%;
  margin: 0;
  border: 0;
  border-top: 2px solid #3c3c4d;
  border-bottom: 2px solid #cccccc;
  table-layout: fixed;
  border-spacing: 0;
}

.tb-list-wrap__list-row thead th {
  padding: 10px;
  border: 0 none;
  width: 14%;
  height: auto;
  word-break: keep-all;
  background-color: #f8f8f8;
  border-left: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  font-family: "Noto Sans";
  font-weight: 500;
  /* fontSize And lineHeight (42px / 60px) */
  font-size: 0.93333rem;
  line-height: 1.33333rem;
  text-align: left;
  color: #505050;
}

.tb-list-wrap__list-row thead th:first-child {
  border-left: none;
}

.tb-list-wrap__list-row thead td {
  padding: 10px 20px;
  border: 0 none;
  width: 14%;
  height: auto;
  word-wrap: break-word;
  border-left: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  font-family: "Noto Sans";
  font-weight: 400;
  /* fontSize And lineHeight (42px / 60px) */
  font-size: 0.93333rem;
  line-height: 1.33333rem;
  text-align: left;
  color: #505050;
}

.tb-list-wrap__list-row tbody th {
  padding: 10px;
  border: 0 none;
  width: 14%;
  height: auto;
  word-wrap: break-word;
  background-color: #f8f8f8;
  border-bottom: 1px solid #d9d9d9;
  font-family: "Noto Sans";
  font-weight: 500;
  /* fontSize And lineHeight (42px / 60px) */
  font-size: 0.93333rem;
  line-height: 1.33333rem;
  text-align: left;
  color: #505050;
}

.tb-list-wrap__list-row tbody td {
  padding: 10px;
  border: 0 none;
  width: 14%;
  height: auto;
  word-wrap: break-word;
  border-left: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  font-family: "Noto Sans";
  font-weight: 400;
  /* fontSize And lineHeight (42px / 60px) */
  font-size: 0.93333rem;
  line-height: 1.33333rem;
  text-align: left;
  color: #505050;
}

.tb-list-wrap__list-row tbody td:first-child {
  border-left: none;
}

.tb-list-wrap--company-info {
  margin: 20px 0 30px 0;
}

.tb-list-wrap--receipt {
  padding: 0;
}

.tb-list-wrap__receipt-list {
  width: 100%;
  margin: 0;
  border: 0;
  border-top: none;
  border-bottom: none;
  table-layout: fixed;
  border-spacing: 0;
}

.tb-list-wrap__receipt-list tbody tr:last-child th {
  border-bottom: 0;
}

.tb-list-wrap__receipt-list tbody tr:last-child td {
  border-bottom: 0;
}

.tb-list-wrap__receipt-list tbody th, .tb-list-wrap__receipt-list tbody td {
  padding: 8px 0;
  border: 0 none;
  width: 14%;
  height: auto;
  word-wrap: break-word;
  border-left: none;
  border-bottom: none;
  background-color: #fff;
  font-family: "Noto Sans";
  font-weight: 400;
  /* fontSize And lineHeight (42px / 42px) */
  font-size: 0.93333rem;
  line-height: 0.93333rem;
  text-align: left;
  color: #505050;
}

.tb-list-wrap__receipt-list tbody th.text, .tb-list-wrap__receipt-list tbody td.text {
  font-family: "Noto Sans";
  font-weight: 400;
  /* fontSize And lineHeight (60px / 60px) */
  font-size: 1.33333rem;
  line-height: 1.33333rem;
  text-align: left;
  color: #444444;
}

/* 달력 */
.calendar-table {
  width: 100%;
  margin: 0;
  border: 0;
  border-top: none;
  border-bottom: none;
  table-layout: fixed;
  border-spacing: 0;
}

.calendar-table thead th {
  padding: 0 0 20px 0;
  border: 0 none;
  width: 14%;
  height: auto;
  word-wrap: break-word;
  background-color: #ffffff;
  font-family: "Noto Sans";
  font-weight: 400;
  /* fontSize And lineHeight (39px / 39px) */
  font-size: 0.86667rem;
  line-height: 0.86667rem;
  text-align: center;
  color: #505050;
}

.calendar-table tbody td {
  padding: 0 0 8px 0;
  border: 0 none;
  width: 14%;
  height: auto;
  word-wrap: break-word;
}

.calendar-table__sun {
  color: #e12f36;
}

.calendar-table__sun-disable {
  color: #f6aaad !important;
}

.calendar-table__sat {
  color: #2ea4ff;
}

.calendar-table__sat-disable {
  color: #bed6fe !important;
}

/* 테이블 공통 정렬 */
.tb-left {
  text-align: left !important;
}

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

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

.tb-bg {
  background-color: #f8f8f8;
}

.tb-border-left-remove {
  border-left: none !important;
}

/* 테이블 공통 링크 */
.link:link, .link:visited, .link:hover, .link:active {
  text-decoration: underline;
}

/* 영수증 테이블 가이드 라인*/
.tb-guide-line {
  display: block;
  background-color: #d9d9d9;
  height: 1px;
  border: 0;
}

.tb-guide-line2 {
  display: block;
  background-color: #3c3c4d;
  height: 2px;
  border: 0;
}

/*▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣*/
/*
    * @Document   : dropdown
    * @comment    : dropdown 스타일
*/
/*▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣*/
.dropdown {
  position: relative;
  margin-bottom: 9px;
}

.dropdown:last-child {
  margin-bottom: 0;
}

.dropdown-combo {
  position: relative;
  display: block;
  width: 190px;
  height: 33px;
  cursor: pointer;
}

.dropdown-combo__select {
  position: relative;
  display: block;
  padding: 0 8px;
  line-height: 33px;
  background: #404a58;
}

.dropdown-combo__select:link, .dropdown-combo__select:visited {
  color: #fff;
}

.dropdown-combo__select:hover, .dropdown-combo__select:active {
  color: #fff;
  text-decoration: underline;
}

.dropdown-combo__select:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 33px;
  height: 33px;
  cursor: pointer;
}

.dropdown-combo__select--active:after {
  transform: rotate(-180deg);
}

.dropdown-option {
  position: absolute;
  left: 0;
  width: 190px;
  background: #293444;
  display: none;
}

.dropdown-option-group {
  padding: 11px 14px;
}

.dropdown-link {
  display: block;
  line-height: 30px;
  color: #fff;
}

.dropdown-link:link, .dropdown-link:visited {
  color: #fff;
}

.dropdown-link:hover, .dropdown-link:active {
  color: #fff;
  text-decoration: underline;
}

/*▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣*/
/*
    * @Document   : dim
    * @comment    : dim 스타일
*/
/*▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣*/
/* 태그 및 Class 사용법 참고용
	<!-- dim -->
	<div class="dim"></div>
	<!-- //dim -->
*/
.dim {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 50;
}

/*▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣*/
/*
    * @Document   : keyFrames
    * @comment    : keyFrames 공통
*/
/*▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣*/
/* 예시(CSS animation 또는 jQuery로 가능)
    -CSS 초기 설정
        .img{
            display: inline-block;
            transform: translate3d(0, 200px, 0);
        }

    -keyFrames 설정
        @-webkit-keyframes t3d-info {
          from {
                transform: translate3d(0, 200px, 0);
          }
          to {
                transform: translate3d(0, 0, 0);
          }
        }

    -사용(CSS animation 이용 # CSS 이용시 위 CSS 초기 설정 및 keyFrames가 다를 수 있음 #)
        .img{
            animation: t3d-info 5s infinite;
        }

    -사용(jQuery 이용)
        function visualTextMotion(){
            $('.img').css({
                'transform' : 'translate3d(0, 0, 0)',
                "animation": "t3d-info 1.3s cubic-bezier(0.645, 0.045, 0.355, 1.000) .15s both" ,
            })
        }
*/
.text-motion {
  display: block;
  overflow: hidden;
}

.text-motion__left {
  display: inline-block;
  transform: translate3d(-140px, 0, 0);
  animation: text-motion-left 0.6s cubic-bezier(0.645, 0.045, 0.355, 1) 0.15s both;
}

.text-motion__up {
  display: inline-block;
  transform: translate3d(0, 40px, 0);
  animation: text-motion-up 0.6s cubic-bezier(0.645, 0.045, 0.355, 1) 0.15s both;
}

.text-motion__right {
  display: inline-block;
  transform: translate3d(0, 40px, 0);
  animation: text-motion-up 0.6s cubic-bezier(0.645, 0.045, 0.355, 1) 0.15s both;
}

.text-motion__down {
  display: inline-block;
  transform: translate3d(0, 40px, 0);
  animation: text-motion-up 0.6s cubic-bezier(0.645, 0.045, 0.355, 1) 0.15s both;
}

@keyframes text-motion-left {
  from {
    transform: translate3d(-140px, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes text-motion-up {
  from {
    transform: translate3d(0, -40px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes text-motion-right {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes text-motion-down {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

.under-line {
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.under-line:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: green;
  opacity: 0;
  transition-property: all;
  transition-duration: .5s;
  transition-timing-function: ease-in-out;
  transition-delay: initial;
}

.under-line--left:before {
  width: 0;
}

.under-line--left:hover::before {
  opacity: 1;
  width: 100%;
}

.under-line--center:before {
  width: 100%;
  transform: scaleX(0);
}

.under-line--center:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.under-line--right:before {
  left: inherit;
  right: 0;
}

.under-line--right:hover::before {
  opacity: 1;
  width: 100%;
}

.under-line--left-to-right:before {
  left: inherit;
  right: 0;
}

.under-line--left-to-right:hover::before {
  left: 0;
  opacity: 1;
  width: 100%;
}

.under-line--right-to-left:before {
  left: inherit;
}

.under-line--right-to-left:hover::before {
  right: 0;
  opacity: 1;
  width: 100%;
}

.spinner {
  display: inline-block;
  transform: rotate(0);
  transition-property: all;
  transition-duration: .5s;
  transition-timing-function: ease-in-out;
  transition-delay: initial;
}

.spinner:hover {
  transform: rotate(180deg);
}

/*▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣*/
/*
    * @Document   : accordion
    * @comment    : accordion 스타일
*/
/*▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣*/
.accordion-list.init_on .accordion-list__container {
  height: 100%;
}

.accordion-list.init_on .accordion-arrow {
  transform: rotate(180deg);
}

.accordion-content {
  border-bottom: 1px solid #e4e4e4;
}

.accordion-list:first-child {
  border-top: 1px solid #e4e4e4;
}

.accordion-list__header {
  width: 100%;
  background-color: #fafafa;
}

.accordion-list__header-btn {
  overflow: hidden;
  padding: 15px;
  display: block;
  border-bottom: 1px solid #e4e4e4;
}

.accordion-list__header-btn h2 {
  float: left;
}

.accordion-list__icon {
  float: right;
  overflow: hidden;
}

.accordion-list__icon span {
  float: left;
  font-size: 1em;
  margin-right: 15px;
  color: #2b72c9;
}

.accordion-list__icon img {
  float: left;
  width: 12px;
  margin-top: 8px;
}

.accordion-list__container {
  height: 0px;
  overflow: hidden;
}

/*▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣*/
/*
    * @Document   : checkbox
    * @comment    : checkbox 스타일
*/
/*▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣*/
.chk-box input[type=checkbox] {
  display: none;
}

.chk-box input[type=checkbox] + label {
  display: inline-block;
  cursor: pointer;
  position: relative;
  padding-left: 25px;
  font-size: 15px;
  vertical-align: top;
}

.chk-box input[type=checkbox] + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  background: url("../../adventure/img/common/bg_chk_off.png") no-repeat 0 0;
  background-size: 20px 20px;
}

.chk-box input[type=checkbox]:checked + label:before {
  background: url("../../adventure/img/common/bg_chk_on.png") no-repeat 0 0;
  background-size: 20px 20px;
}

.chk-box-alliance {
  overflow: hidden;
  margin-right: 6px;
}

.chk-box-alliance input[type=checkbox] {
  display: none;
}

.chk-box-alliance input[type=checkbox] + label {
  display: block;
  cursor: pointer;
  font-size: 15px;
  vertical-align: top;
  text-align: center;
  padding-left: 0;
}

.chk-box-alliance input[type=checkbox] + label img {
  margin-left: auto;
  margin-right: auto;
  width: 82px;
  height: 33px;
  padding: 2px 0;
}

.chk-box-alliance input[type=checkbox] + label:before {
  content: '';
  display: none;
}

.chk-box-alliance input[type=checkbox] + label {
  content: "";
  overflow: hidden;
  display: block;
  border: 1px solid #d9d9d9;
  border-radius: 3px;
}

.chk-box-alliance input[type=checkbox]:checked + label {
  border: 1px solid #2b72c9;
}

/*▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣*/
/*
    * @Document   : radiobox
    * @comment    : radiobox 스타일
*/
/*▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣*/
.radio-box input[type=radio] {
  display: none;
}

.radio-box input[type=radio] + label {
  display: inline-block;
  cursor: pointer;
  position: relative;
  padding-left: 25px;
  font-size: 15px;
  vertical-align: top;
  font-family: "Noto Sans";
  font-weight: 500;
  /* fontSize And lineHeight (45px / 57px) */
  font-size: 1rem;
  line-height: 1.26667rem;
  text-align: left;
  color: #222222;
}

.radio-box input[type=radio] + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  background: url("../../adventure/img/common/bg_radio_off.png") no-repeat 0 0;
  background-size: 20px 20px;
}

.radio-box input[type=radio]:checked + label:before {
  background: url("../../adventure/img/common/bg_radio_on.png") no-repeat 0 0;
  background-size: 20px 20px;
}

.radio-box--ticket-radio {
  margin-bottom: 30px;
}

.radio-box--ticket-radio input[type=radio] + label {
  padding-left: 33px;
}

.radio-box--ticket-radio input[type=radio] + label:before {
  content: "";
  top: 50%;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
}

/*▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣*/
/*
    * @Document   : tooltip
    * @comment    : tooltip 스타일
*/
/*▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣*/
.standard-wrap {
  padding: 20px 14px;
}

.standard {
  overflow: hidden;
  padding-bottom: 20px;
}

.standard:last-child {
  padding-bottom: 0;
}

.standard__title {
  float: left;
  width: 60px;
  font-family: "Noto Sans";
  font-weight: 500;
  /* fontSize And lineHeight (48px / 48px) */
  font-size: 1.06667rem;
  line-height: 1.06667rem;
  text-align: left;
  color: #222222;
}

.standard__info {
  float: left;
  font-family: "Noto Sans";
  font-weight: 400;
  /* fontSize And lineHeight (39px / 39px) */
  font-size: 0.86667rem;
  line-height: 0.86667rem;
  text-align: left;
  color: #555555;
}

/*▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣*/
/*
    * @Document   : shareSns
    * @comment    : shareSns 스타일
*/
/*▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣▣*/
.share-sns {
  overflow: hidden;
  padding: 30px;
}

.share-sns__popup {
  text-align: center;
  float: left;
  width: 33.3333%;
}

.share-sns__popup__img {
  margin: 0 auto;
  width: 40px;
}

.share-sns__popup__text {
  padding-top: 5px;
  font-family: "Noto Sans";
  font-weight: 400;
  /* fontSize And lineHeight (39px / 39px) */
  font-size: 0.86667rem;
  line-height: 0.86667rem;
  text-align: center;
  color: #555555;
}

.share-sns-login {
  overflow: hidden;
  padding: 30px;
}

.share-sns-login__link {
  display: block;
  text-align: center;
  float: left;
  width: 50%;
}

.share-sns-login__img {
  margin-left: auto;
  margin-right: auto;
  width: 45px;
  padding-bottom: 13px;
}

.share-sns-login__text {
  font-family: "Noto Sans";
  font-weight: 400;
  /* fontSize And lineHeight (39px / 51px) */
  font-size: 0.86667rem;
  line-height: 1.13333rem;
  text-align: center;
  color: #555555;
}

.qr-style {
  text-align: center;
}

.qr-style__img-bx {
  position: relative;
  width: 119px;
  display: inline-block;
  margin-bottom: 6px;
}

.qr-style__num {
  font-family: "Latos";
  font-weight: 400;
  /* fontSize And lineHeight (39px / 39px) */
  font-size: 0.86667rem;
  line-height: 0.86667rem;
  text-align: center;
  color: #505050;
}

.popup-worker-box {
  padding: 17px;
}

.popup-worker-box__head {
  text-align: left;
  margin-bottom: 17px;
  font-family: "Noto Sans";
  font-weight: 500;
  /* fontSize And lineHeight (45px / 45px) */
  font-size: 1rem;
  line-height: 1rem;
  text-align: left;
  color: #505050;
}

.popup-worker-box__head span {
  margin-left: 13px;
  font-family: "Noto Sans";
  font-weight: 400;
  /* fontSize And lineHeight (45px / 45px) */
  font-size: 1rem;
  line-height: 1rem;
  text-align: left;
  color: #2b72c9;
}

.popup-worker-box__list {
  margin-bottom: 17px;
}

.popup-worker-box .box-round__head {
  border-bottom: none;
}

.radio-input-box {
  text-align: left;
}

.radio-input-box__input-type {
  margin-left: 25px;
}

.radio-input-box.complete .radio-input-box__radio-type input[type=radio] + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  background: url("../../adventure/img/common/bg_radio_dimmed.png") no-repeat 0 0;
  background-size: 20px 20px;
}

.radio-input-box.complete .radio-input-box__input-type input {
  color: #2b72c9;
}

.input-default {
  padding: 8px 0;
  border-bottom: 1px solid #d9d9d9;
}

.input-default--bb {
  border-bottom: 1px solid #2b72c9;
}

.input-default__bx {
  border: none;
  background-color: none;
}

.input-default__bx--bottom-line {
  width: 100%;
  font-family: "Noto Sans";
  font-weight: 400;
  /* fontSize And lineHeight (45px / 45px) */
  font-size: 1rem;
  line-height: 1rem;
  text-align: left;
  color: #505050;
}

.input-default--inline {
  display: inline-block;
  width: 31%;
  margin-right: 2%;
}

.input-default--inline:last-child {
  margin-right: 0;
}

.select-style {
  padding: 8px 0;
  border-bottom: 1px solid #d9d9d9;
}

.select-style__bx {
  border: none;
  width: 100%;
}

.select-style__bx--bottom-arrow {
  background-color: transparent;
  background-image: url("../../adventure/img/common/bg_select_arrow.png");
  background-repeat: no-repeat;
  background-size: 12px 6px;
  background-position: center right;
  padding: 3px;
  font-family: "Noto Sans";
  font-weight: 400;
  /* fontSize And lineHeight (45px / 45px) */
  font-size: 1rem;
  line-height: 1rem;
  text-align: left;
  color: #cccccc;
}

.text-style {
  margin-bottom: 15px;
  font-family: "Noto Sans";
  font-weight: 400;
  /* fontSize And lineHeight (42px / 54px) */
  font-size: 0.93333rem;
  line-height: 1.2rem;
  text-align: left;
  color: #505050;
}

.text-style--dot {
  padding-left: 10px;
  position: relative;
  margin-bottom: 5px;
}

.text-style--dot::before {
  content: '·';
  position: absolute;
  height: 100%;
  left: 0px;
}

.text-style--before-icon {
  font-family: "Noto Sans";
  font-weight: 500;
  /* fontSize And lineHeight (39px / 39px) */
  font-size: 0.86667rem;
  line-height: 0.86667rem;
  text-align: left;
  color: #222222;
  padding-left: 25px;
  position: relative;
}

.text-style--before-icon__icon {
  width: 19px;
  display: inline-block;
  position: absolute;
  left: 0;
  padding-top: 1px;
}

.text-style--before-icon__num {
  color: #2b72c9;
}

.text-style--center {
  text-align: center;
}

.text-style--title {
  font-family: "Noto Sans";
  font-weight: 500;
  /* fontSize And lineHeight (48px / 60px) */
  font-size: 1.06667rem;
  line-height: 1.33333rem;
  text-align: center;
  color: #505050;
}

.text-style--weight-500 {
  font-weight: 500;
}

.text-style__right_star {
  font-family: "Noto Sans";
  font-weight: 500;
  /* fontSize And lineHeight (42px / 54px) */
  font-size: 0.93333rem;
  line-height: 1.2rem;
  text-align: left;
  color: #505050;
}

.text-style__right_star--star {
  font-family: "Noto Sans";
  font-weight: 500;
  /* fontSize And lineHeight (45px / 45px) */
  font-size: 1rem;
  line-height: 1rem;
  text-align: left;
  color: #e12f36;
}

.title-style {
  font-family: "Noto Sans";
  font-weight: 500;
  /* fontSize And lineHeight (57px / 57px) */
  font-size: 1.26667rem;
  line-height: 1.26667rem;
  text-align: left;
  color: #222222;
  background-color: #fafafa;
  border-bottom: 1px solid #e4e4e4;
  padding: 15px;
}

.email-bx {
  overflow: hidden;
}

.email-bx__user-id {
  float: left;
  width: 40%;
}

.email-bx__email-txt {
  font-family: "Noto Sans";
  font-weight: 400;
  /* fontSize And lineHeight (45px / 120px) */
  font-size: 1rem;
  line-height: 2.66667rem;
  text-align: center;
  color: #505050;
  float: left;
  width: 10%;
}

.email-bx__user-email-select {
  float: left;
  width: 40%;
}

.email-bx__user-email-input {
  width: 100%;
  clear: both;
}

.tab-style__tab-menu-bx {
  font-size: 0;
  border-bottom: 1px solid #d9d9d9;
}

.tab-style__btn {
  display: inline-block;
  width: 33%;
  position: relative;
  top: 1px;
  font-family: "Noto Sans";
  font-weight: 500;
  /* fontSize And lineHeight (42px / 120px) */
  font-size: 0.93333rem;
  line-height: 2.66667rem;
  text-align: center;
  color: #505050;
}

.tab-style__btn > a {
  display: block;
  width: 100%;
}

.tab-style__btn--active {
  border-bottom: 2px solid #2b72c9;
}

.tab-style__btn--active > a {
  color: #2b72c9;
}

.img-text-style-bx {
  text-align: center;
}

.img-text-style {
  font-size: 0;
}

.img-text-style__img-view {
  position: relative;
  display: inline-block;
  width: 93px;
  height: 93px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.img-text-style__img-view__icon {
  display: inline-block;
  width: 33px;
  height: 33px;
  border-radius: 100%;
  overflow: hidden;
  background-color: #2b72c9;
  font-family: "Noto Sans";
  font-weight: 500;
  /* fontSize And lineHeight (36px / 105px) */
  font-size: 0.8rem;
  line-height: 2.33333rem;
  text-align: center;
  color: #fff;
}

.img-text-style__img-view__icon--left-top {
  position: absolute;
  left: -13px;
  top: -16px;
}

.img-text-style__img-view__icon--right-top {
  float: right;
}

.img-text-style__img-view__icon--big {
  width: 39px;
  height: 39px;
  font-family: "Noto Sans";
  font-weight: 500;
  /* fontSize And lineHeight (42px / 125px) */
  font-size: 0.93333rem;
  line-height: 2.77778rem;
  text-align: center;
  color: #fff;
}

.img-text-style__info-box {
  overflow: hidden;
  width: 216px !important;
}

.img-text-style__info-box dl {
  float: left;
  width: 148px;
}

.img-text-style__info-box span {
  float: right;
}

.img-text-style__img-ticket {
  display: inline-block;
  width: 71px;
  margin-right: 32px;
}

.img-text-style__txt-ticket {
  display: inline-block;
  position: relative;
  top: -20px;
  width: 104px;
}

.img-text-style__txt-ticket dt {
  margin-bottom: 4px;
  font-family: "Noto Sans";
  font-weight: 500;
  /* fontSize And lineHeight (39px / 39px) */
  font-size: 0.86667rem;
  line-height: 0.86667rem;
  text-align: left;
  color: #2b72c9;
}

.img-text-style__txt-ticket dd {
  font-family: "Noto Sans";
  font-weight: 500;
  /* fontSize And lineHeight (39px / 39px) */
  font-size: 0.86667rem;
  line-height: 0.86667rem;
  text-align: left;
  color: #777777;
}

.img-text-style__text {
  box-sizing: border-box;
  padding-left: 13px;
  display: inline-block;
  width: 50%;
  height: 93px;
  overflow: hidden;
}

.img-text-style__text dl dt {
  margin-bottom: 9px;
  font-family: "Noto Sans";
  font-weight: 500;
  /* fontSize And lineHeight (42px / 54px) */
  font-size: 0.93333rem;
  line-height: 1.2rem;
  text-align: left;
  color: #222222;
  white-space: normal;
  text-align: left;
  word-wrap: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.img-text-style__text dl dd {
  margin-bottom: 6px;
  font-family: "Noto Sans";
  font-weight: 400;
  /* fontSize And lineHeight (36px / 36px) */
  font-size: 0.8rem;
  line-height: 0.8rem;
  text-align: left;
  color: #777777;
}

.img-text-style__text--fz dl dt {
  font-family: "Noto Sans";
  font-weight: 500;
  /* fontSize And lineHeight (52px / 62px) */
  font-size: 1.15556rem;
  line-height: 1.37778rem;
  text-align: left;
  color: #222222;
}

.img-text-style__text--fz dl dd {
  font-family: "Noto Sans";
  font-weight: 400;
  /* fontSize And lineHeight (39px / 39px) */
  font-size: 0.86667rem;
  line-height: 0.86667rem;
  text-align: left;
  color: #777777;
}

.img-text-style--mb0 {
  margin-bottom: 0 !important;
}

.btn-style {
  font-family: "Noto Sans";
  font-weight: 400;
  /* fontSize And lineHeight (33px / 33px) */
  font-size: 0.73333rem;
  line-height: 0.73333rem;
  text-align: left;
  color: #ffffff;
  padding: 4px;
  border-radius: 3px;
  border: 1px solid #ffffff;
}

select {
  -webkit-border-radius: 0;
  -webkit-appearance: none;
}
