@charset "UTF-8";

@font-face {
    font-family: 'nanum';
    src: url("../webfonts/NanumMyeongjo-Bold.woff") format("woff");
    font-weight: 600;
}

@font-face {
    font-family: 'nanum';
    src: url("../webfonts/NanumMyeongjo-ExtraBold.woff") format("woff");
    font-weight: 800;
}

@font-face {
    font-family: 'spoqa';
    src: url("../webfonts/Spoqa_Han_Sans_Thin.woff") format("woff");
    font-weight: 300;
}

/*root*/
:root {
    --normal: 'spoqa';
    --serif: 'nanum';
    --red: #AF1818;
    --blue: #2B529C;
}

.mt0{
    margin-top: 0 !important;
}

.count {
    display: flex;
}

.count > .count_in {
    width: auto;
    float: none;
    flex: 1;
}

.box_list_option .txt_info strong {
    color: #AF1818;
}

.check-list-wrap {
    padding-bottom: 125px;
}

.check-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 30px 8px 30px 16px;
    border-bottom: 1px dotted #ddd;
}

.check-list:last-child {
    border-bottom: 1px solid #ddd;
}

.check-list-info {
    flex: 0 0 1100px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.check-list-info dl {
    display: flex;
    gap: 12px;
}

.check-list-info dd {
    flex-basis: 200px;
    font-size: 16px;
    font-weight: 300;
}

.check-list-info dd b {
    color: #000;
    font-weight: 400;
    font-size: 13px;
    margin-right: 10px;
    position: relative;
}

.check-list-info dd b::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: #000;
    transform: translateY(-50%);
}

.btn-check-area {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 220px;
    justify-content: flex-end;
}

.btn-check-area button {
    width: 105px;
    line-height: 35px;
    font-size: 14px;
    border: 1px solid #000;
    background-color: #000;
    color: #fff;
    font-family: var(--serif);
}

.btn-check-area button.delegate {
    background: #738390;
    border-color: #738390;
}

.btn-check-area button.info-change {
    background: #738390;
    border-color: #738390;
    letter-spacing: -0.8px;
}

.btn-check-area button.partner {
    background: #44535E;
    border-color: #44535E;
}

.btn-check-area button.voucher {
    background: #999;
    border-color: #999;
}

.btn-check-area button.cancel {
    background: #fff;
    color: #000;
    border-color: #000;
}

.btn-check-area span {
    font-size: 14px;
    font-family: var(--serif);
    width: 105px;
    text-align: center;
}

.check-list.finish .check-list-info,
.check-list.finish .btn-check-area {
    opacity: 0.4;
    filter: grayscale(100%);
}

.wait-list-inner .check-list-info dl {
    gap: 60px;
}

.wait-list-inner .check-list-info dl dd {
    flex-basis: auto;
    font-size: 16px;
    font-weight: 300;
}

.info-wrap {
    margin-bottom: 100px;
}

.info-title {
    font-size: 20px;
    font-family: var(--serif);
    padding-bottom: 20px;
}

.info-section {
    background-color: #FBFBFBAB;
    margin-bottom: 40px;
    padding: 55px 40px;
    display: flex;
    gap: 60px;
}

.info-section-box {
    display: flex;
    flex: 0 0 calc(50% - 30px);
}

.info-section-box.w100 {
    display: flex;
    flex: 0 0 100%;
}

.info-section-box h2 {
    flex: 0 0 150px;
}

.info-section-box ul li {
    color: #5E5E5E;
    font-size: 14px;
    line-height: 2em;
}

.info-section-box ul li span {
    color: #AA3030;
}

.info-section-box ul li p {
    color: #000;
}

.info-section-box ul li .info-title {
    color: #000;
}


/*기본레이어팝업*/
.layer-basic-pop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.layer-basic-pop.bg-none {
    background-color: transparent;
}

.layer-basic-pop.active {
    display: flex;
    justify-content: center;
    align-items: safe center;
    overflow-y: auto;
    padding: 40px 0;
}

.popup-content {
    background: #fff;
    padding: 40px 30px;
    max-width: 800px;
    width: 100%;
    position: relative;
}

.popup-content.w800 {
    width: 800px;
}

.btn-popup-close {
    position: absolute;
    right: 0;
    top: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    transform: translateY(-50%);
}

.btn-popup-close::before,
.btn-popup-close::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 1px;
    background: #666;
}

.btn-popup-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.btn-popup-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.pop-head-tit {
    position: relative;
    font-size: 32px;
    font-family: var(--serif);
}

.pop-gray-area {
    background-color: #f4f7fa;
    padding: 40px;
    margin: 32px 0;
}

.pop-sub-tit {
    font-size: 20px;
    font-family: var(--serif);
    padding-top: 16px;
    padding-bottom: 4px;
}

.pop-main-tit{
    position: relative;
    font-size: 20px;
    font-family: var(--serif);
}

.pop-main-tit::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #000;
    position: absolute;
    left: -14px;
    top: 50%;
    transform: translateY(-50%);
}

.popup-content h3{
    font-size: 14px;
}

.pt0 {
    padding-top: 0;
}

.btn-pop-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.btn-pop-wrap a {
    display: block;
    width: 300px;
    line-height: 61px;
    border: 1px solid #979797;
    background-color: #fff;
    font-family: var(--serif);
    text-align: center;
    font-weight: 600;
}

.btn-pop-wrap a.on {
    background-color: #000;
    color: #fff;
    border: 1px solid #000;
}

.btn-pop-wrap a:hover {
    background-color: #5E7282;
    color: #fff;
    border: 1px solid #5E7282;
}

.mypage-confirm-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}

.mypage-confirm-list ul {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.mypage-confirm-list ul li {
    flex: 1 0 calc(50% - 8px);
}

.mypage-confirm-list ul li strong {
    color: #748491;
    font-size: 14px;
    padding-bottom: 8px;
    display: block;
}

.mypage-confirm-list ul li p {
    font-size: 15px;
}

.mypage-confirm-list ul li p input[type=text]{
    width: 100%;
    height: 50px;
    border: 1px solid #ddd;
    padding: 0 12px;
}

.mypage-confirm-list ul li p input[type=text]::placeholder{
    color: #BABABA;
}

.mypage-confirm-list.partner{
    margin-top: 0;
    padding-bottom: 30px;
    border-bottom: 1px dotted #ddd;
}

.partner-box{
    padding-bottom: 10px;
}

.radio-gender {
  display: flex;
  gap: 8px;
}

.radio-gender input[type="radio"] {
  display: none;
}

.radio-gender span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  font-size: 15px;
  color: #000;
  background: #fff;
  border: 1px solid #ddd;
  cursor: pointer;
}

.radio-gender input[type="radio"]:checked + span {
  background: #738390;
  color: #fff;
}

.radio-gender input[type="radio"][value="F"]:checked + span {
  background: #D34198;
  color: #fff;
}

.radio-gender input[type="radio"]:readonly {
  pointer-events: none;
}

.radio-gender.readonly label {
  pointer-events: none;
}

.confirm-sum {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid #D7D7D7;
}

.confirm-sum strong {
    color: #748491;
    font-size: 14px;
}

.confirm-sum span {
    font-size: 32px;
}

.pop-info-area {
    width: 700px;
    padding: 27px 45px;
    margin: 35px 0 20px;
}

.bg-gray {
    background-color: #F4F7FA;
}

.pop-complete {
    text-align: center;
    padding: 100px 0;
    font-family: var(--serif);
    margin-bottom: 35px;
}

.pop-complete p {
    font-size: 24px;
    line-height: 1.8em;
}

.pop-complete p b {
    font-weight: 600;
}

.pop-complete h2 {
    font-weight: 600;
    font-size: 26px;
    padding: 34px 0;
}

.pop-complete em {
    font-size: 18px;
    font-family: var(--normal);
}

.rule-list {
    display: flex;
    align-items: flex-start;
    gap: 45px;
    margin-top: 20px;
}

.rule-list li h3 {
    color: #000;
}

.rule-list.column{
    flex-direction: column;
    gap: 20px;
}

.room-list-inner .check-list-info dl{
    gap: 50px;
}

.room-list-inner .check-list-info dd{
    flex-basis: auto;
}

.cancel-confirm-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #D7D7D7;
}

.cancel-confirm-list ul {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.cancel-confirm-list ul li {
    flex: 1 0 50%;
}

.cancel-confirm-list ul li strong {
    color: #748491;
    font-size: 14px;
    padding-bottom: 8px;
}

.cancel-confirm-list ul li p {
    font-size: 15px;
}

.cancel-confirm-list:nth-last-child(2){
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 15px;
}

/* 투숙객 정보 변경 */
.reser-info-wrap {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.reser-confirm-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}

.reser-confirm-list ul {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.reser-confirm-list ul li {
    flex: 1 0 calc(50% - 8px);
}

.reser-confirm-list ul li strong {
    color: #748491;
    font-size: 14px;
    padding-bottom: 8px;
    display: block;
}

.reser-confirm-list ul li p {
    font-size: 15px;
}

.enter-info-inner input[type="text"] {
    width: 100%;
    padding: 17px 20px;
    background-color: #fff;
    border: 1px solid #ddd;
}

.enter-info-inner h2 {
    position: relative;
    font-size: 20px;
    font-family: var(--serif);
}

.enter-info-inner h2::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #000;
    position: absolute;
    left: -14px;
    top: 50%;
    transform: translateY(-50%);
}










