@charset "utf-8";


#wrap {
    position: relative;
    padding-bottom: 220px;
}

/*footer*/
.footer {
    width: 100%;
    background-color: #fff;
    position: absolute;
    bottom: 0;
}

.footerTabBox {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #f2f2f2;
}

.footerTabBox .footerTab {
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}

.footerTabBox .footerTab a {
    float: left;
    width: 25%;
    font-size: 13px;
    text-align: center;
    color: #919191;
    padding: 15px 0;
}

.footerTabBox .footerTab a p img {
    width: 50%;
    max-width: 45px;
}

.addBox {
    text-align: center;
    font-size: 0.75rem;
    line-height: 1.5em;
    padding: 20px 0;
    color: #777;
}

/*header*/
.topmenuWrap {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background-color: transparent;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    text-align: center;
}

.topmenuWrap .topReser {
    position: absolute;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
    background: url(/mobile/images/calendar_w.svg) no-repeat center center;
    background-size: 40px;
    display: block;
    width: 40px;
    height: 40px;
}

.topmenuWrap .logo {
    width: 100px;
    height: 50px;
    text-align: center;
    display: inline-block;
    margin: 10px auto;
    background: url(/mobile/images/logo_w.svg) no-repeat center center;
    background-size: auto 50px;
}

.topmenuWrap .mborder {
    border-bottom: 1px solid #a0a0a0;
    width: 96%;
    margin: 0 auto;
    display: none;
}

.country {
    position: absolute;
    height: 23px;
    top: 50%;
    right: 50px;
    font-size: 0.75rem;
    color: #fff;
    border-radius: 6px;
    border: 1px solid #fff;
    transform: translateY(-50%);
}

.country .select {
    border: 0;
    background: url(/mobile/images/ic_tri.svg) no-repeat right 5px center;
    padding: 0 15px 0 5px;
    color: #fff;
    height: 100%;
    line-height: 20px;
    text-indent: 0;
}

.country .select option {
    color: #000;
    background-color: #fff;
    text-indent: 0;
    padding: auto;
    /* 필요하면 배경도 지정 */
}

.topmenuWrap.white {
    background-color: #fff;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.topmenuWrap.white .topReser {
    background: url(/mobile/images/calendar.svg) no-repeat center center;
    background-size: 40px;
    display: block;
    width: 40px;
    height: 40px;
}

.topmenuWrap.white .logo {
    background: url(/mobile/images/logo.svg) no-repeat center center;
    background-size: auto 50px;
}

.topmenuWrap.white .toggle-btn .bar {
    background-color: #000;
}

.topmenuWrap.white .mborder {
    border-bottom: 0;
}

.topmenuWrap.white2 {
    background-color: #fff;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.topmenuWrap.white2 .topReser {
    background: url(/mobile/images/calendar.svg) no-repeat center center;
    background-size: 40px;
    display: block;
    width: 40px;
    height: 40px;
}

.topmenuWrap.white2 .logo {
    background: url(/mobile/images/logo.svg) no-repeat center center;
    background-size: auto 50px;
}

.topmenuWrap.white2 .toggle-btn .bar {
    background-color: #000;
}

.topmenuWrap.white2 .mborder {
    border-bottom: 1px solid #a0a0a0;
    width: 100%;
    margin: 0 auto;
}

.topmenuWrap.white .country,
.topmenuWrap.white2 .country {
    color: #000;
    border: 1px solid #000;
}

.topmenuWrap.white .country .select,
.topmenuWrap.white2 .country .select{
    color: #000;
     background: url(/mobile/images/ic_tri2.svg) no-repeat right 5px center;
    background-size: 7px;
}


/*menu*/
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    min-width: 320px;
    opacity: 0;
    visibility: hidden;
    z-index: 10;
    transition: all 500ms cubic-bezier(.7, .2, .27, .93);
    -webkit-transform: translateY(-100vh);
    transform: translateY(-100vh);
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    position: relative;
    left: 50%;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

nav ul li {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 0;
}

nav ul li a {
    display: block;
    font-size: 1.25em;
    text-decoration: none;
    text-align: left;
    color: #464646;
    padding: 1em 20px;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

nav ul li a span {
    float: right;
}

nav h2 {
    text-align: center;
    position: relative;
    padding: 0.64em 0;
}

nav h2 img {
    width: 75px;
}

.toggle-btn {
    display: block;
    position: fixed;
    z-index: 100;
    right: 5px;
    top: 18px;
    cursor: pointer;
}

.toggle-btn .bar {
    width: 30px;
    height: 2px;
    margin: 7px auto;
    background-color: #fff;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-radius: 6px;
}

.toggle-btn .bar:nth-child(2) {
    width: 20px;
    margin-left: 10px;
}

#toggle:checked ~ nav {
    opacity: 1;
    visibility: visible;
    z-index: 90;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
}

#toggle:checked ~ .navBg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 1;
    transition: all 500ms cubic-bezier(.7, .2, .27, .93);
}

#toggle:checked ~ nav ul {
    width: 100%;
}

#toggle:checked ~ nav ul li {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
    border-bottom: 1px solid #ddd;
}

#toggle:checked + label.toggle-btn .bar {
    background-color: #444;
}

#toggle:checked + label.toggle-btn .bar:nth-child(2) {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
    opacity: 0;
}

#toggle:checked + label.toggle-btn .bar:nth-child(1) {
    -webkit-transform: translateY(7px) rotate(45deg);
    transform: translateY(7px) rotate(45deg);
}

#toggle:checked + label.toggle-btn .bar:nth-child(3) {
    -webkit-transform: translateY(-11px) rotate(-45deg);
    transform: translateY(-11px) rotate(-45deg);
}

.topNav {
    position: relative;
    width: 100%;
    padding: 20px;
    background-color: #fff;
}

.nav-logo-area {
    text-align: center;
}

.topNav .navlogo {
    width: 150px;
    margin: 20px auto 10px;
}

.topNav .nav-link {
    position: absolute;
    right: 20px;
    bottom: 20px;
    color: #28292d;
    font-size: 1rem;
}

.arrow {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-top: 2px solid #28292d;
    border-right: 2px solid #28292d;
}

.margin-4 {
    margin-bottom: 3px;
}

.arrow-right {
    transform: rotate(45deg);
}

.allMenu {
    background-color: #f8f8f8;
    width: 100%;
    clear: both;
    padding: 20px;
}

.allMenu h2 {
    font-weight: 18px;
    color: #28292d;
    text-align: left;
}

.allMenu ul {
    padding: 7px 0;
    width: 100%;
    overflow: hidden;
    border-bottom: 1px dashed #ddd;
    font-size: 0;
    text-align: center;
    max-width: 425px;
}

.allMenu ul:last-child {
    border-bottom: 0;
}

.allMenu ul li {
    width: 30%;
    display: inline-block;
    background-color: #fff;
    border-radius: 15px;
    margin-left: 4%;
    box-shadow: 0 0 9px rgba(201, 201, 201, 0.4);
    text-align: center;
    padding: 10px 0;
    font-size: 13px;
    color: #737373;
    max-width: 110px;
}

.allMenu ul li:first-child {
    margin-left: 0;
}

.allMenu ul li.on {
    background-color: var(--main-color);
    color: #fff;
}

.allMenu ul li p {
    text-align: center;
}

.allMenu ul li p img {
    width: 40%;
    padding-bottom: 10px;
    max-width: 35px;
}

.allMenuText {
    width: 100%;
    text-align: center;
    background-color: #f8f8f8;
}

.allMenuText h2 {
    font-size: 16px;
}

.allMenuText h3 {
    font-size: 13px;
    line-height: 18px;
    padding-bottom: 30px;
}

.allMenuBtn {
    width: 100%;
    border-radius: 0 0 20px 20px;
    text-align: center;
    overflow: hidden;
    background-color: #353439;
}

.allMenuBtn a {
    width: 50%;
    float: left;
    text-align: center;
    color: #fff;
    padding: 10px 0;
}
