@charset "UTF-8";

.content .moreBtn1 {
    position: relative;
    display: inline-block;
    background: #c9a063;
    border-radius: 3px;
    font-size: 13px;
    line-height: 30px;
    color:#fff;
    padding: 0 30px 0 10px;
    margin: 20px 0 0 0;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    text-align: left;
    letter-spacing: 2px;
}
.content .moreBtn1 a {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top:0;
    left: 0;
}
.content .moreBtn1:hover {
    background: #eabb75;
}
.content .moreBtn1::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    right:10px;
    top:9px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: translate(-7px,0) rotate(45deg);
    -webkit-transform: translate(-7px,0) rotate(45deg);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}
.content .moreBtn1:hover::after {
    transform: translate(0,0) rotate(45deg);
    -webkit-transform: translate(0,0) rotate(45deg);
}


@media screen and (max-width: 1050px) {
    .content .moreBtn1 {
        display: inline-block;
        text-align: center;
        width:150px;
        background: #c9a063;
        font-size: 15px;
        padding: 7px 30px 7px 10px;
        margin: 30px 0 0 0;
    }
    .content .moreBtn1::after {
        top:17px;
    }
}

.appointmentFormBox {
    position: relative;
    display: block;
    width: 100%;
    text-align: center;
    padding: 0 0 20px 0;
}
.appointmentFormBox > ul {
    position: relative;
    display: inline-block;
    margin: 0;
}
.appointmentFormBox > ul > li {
    position: relative;
    display: block;
    margin: 20px 0 25px 0;
}
.appointmentFormBox > ul > li > dl {
    position: relative;
    display: block;
}
.appointmentFormBox > ul > li > dl > dt {
    position: relative;
    display: inline-block;
    width: 170px;
    padding: 0 15px 0 0;
    text-align: left;
    font-size: 15px;
    line-height: 24px;
    color:#000;
    vertical-align: top;
    letter-spacing: 1px;
}
.appointmentFormBox > ul > li > dl > dt span {
    vertical-align: middle;
}
.appointmentFormBox > ul > li > dl > dt span.required {
    float: right;
    font-size: 12px;
    color:#bf8288;
}
.appointmentFormBox > ul > li > dl > dd {
    position: relative;
    display: inline-block;
    width: 650px;
    text-align: left;
    vertical-align: top;
    font-size: 15px;
    line-height: 24px;
}
.appointmentFormBox > ul > li > dl > dd span {
    position: relative;
    display: inline-block;
    vertical-align: middle;
}
.appointmentFormBox > ul > li > dl > dd span.colorText {
    color:#c9a063;
}
.appointmentFormBox > ul > li.firstBox > dl > dd span {
    width: 80px;
}
.appointmentFormBox > ul > li.genderBox > dl > dd span {
    width: 80px;
}
.appointmentFormBox > ul > li > dl > dd input[type="text"],.appointmentFormBox > ul > li > dl > dd input[type="tel"] {
    position: relative;
    display: block;
    width: 300px;
    height: 30px;
    border: 1px solid #ccc;
    padding: 0 15px 0 15px;
}
.appointmentFormBox > ul > li > dl > dd textarea {
    position: relative;
    display: block;
    width: 100%;
    height: 200px;
    border: 1px solid #ccc;
    padding: 15px;
}

.appointmentFormBox > ul > li > dl > dd input[type="radio"] {
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

.appointmentFormBox > ul > li > dl > dd select {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 30px;
    border: 1px solid #ccc;
    padding: 0 5px 0 5px;
}
.appointmentFormBox > ul > li > dl > dd .selectBox {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    
}
.appointmentFormBox > ul > li.dateBox > dl > dd br {
    display: none;
}
.appointmentFormBox > ul > li.dateBox > dl > dd .selectBox {
    width: 60px;
}
.appointmentFormBox > ul > li.dateBox > dl > dd .selectBox:first-child {
    width: 80px;
}
.appointmentFormBox > ul > li.dateBox > dl > dd span {
    margin: 0 15px 0 0;
}
.appointmentFormBox > ul > li.eventBox > dl > dd .selectBox {
    width: 300px;
}
@media screen and (max-width: 900px) {
    .appointmentFormBox > ul {
        margin: 0;
    }
    .appointmentFormBox > ul > li > dl > dt {
        position: relative;
        display: block;
        width: auto;
        padding: 0;
    }
    .appointmentFormBox > ul > li > dl > dt span.required {
        float:none;
        padding: 0 0 0 10px;
    }
    .appointmentFormBox > ul {
        width: 70%;
    }
    .appointmentFormBox > ul > li {
        width: 100%;
    }
    .appointmentFormBox > ul > li > dl {
        width: 100%;
    }
    .appointmentFormBox > ul > li > dl > dd {
        width: 100%;
    }
    .appointmentFormBox > ul > li:first-child {
        margin: 0 0 0 0;
    }
    .appointmentFormBox > ul > li > dl > dd input[type="text"],.appointmentFormBox > ul > li > dl > dd input[type="tel"] {
        width: 100%;
    }
    .appointmentFormBox > ul > li.eventBox > dl > dd .selectBox {
        width: 100%;
    }
    .appointmentFormBox > ul > li.dateBox > dl > dd select {
        padding: 0;
    }
    .appointmentFormBox > ul > li.dateBox > dl > dd .selectBox {
        width: 45px;
    }
    .appointmentFormBox > ul > li.dateBox > dl > dd .selectBox:first-child {
        width: 60px;
    }
    .appointmentFormBox > ul > li.dateBox > dl > dd span {
        margin: 0 10px 0 0;
    }
}
@media screen and (max-width: 600px) {
     .appointmentFormBox > ul {
        width: 100%;
    }
}
@media screen and (max-width: 500px) {
    .appointmentFormBox > ul > li.dateBox > dl > dd br {
        position: relative;
        display: block;
    }
    .appointmentFormBox > ul > li.dateBox > dl > dd {
        line-height: 40px;
    }
}
@media screen and (max-width: 400px) {
    .appointmentFormBox > ul > li.dateBox > dl > dd span {
        margin: 0;
    }
}
.mainBox  .sendBtnBox {
    position: relative;
    display: block;
    width: 100%;
    margin: 40px 0 40px 0;
    padding: 30px 0 0 0;
    border-top:1px solid #ddd;
    text-align: center;
}
.mainBox  .sendBtnBox > .sendBtn {
    position: relative;
    display: inline-block;
    font-size: 18px;
    line-height: 18px;
    padding: 15px 35px 15px 35px;
    background: #c9a063;
    letter-spacing: 3px;
    color:#fff;
    border-radius:8px;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    cursor: pointer;
}
.mainBox  .sendBtnBox > .sendBtn:hover {
    background: #eaba73;
}
.mainBox  .sendBtnBox > .sendBtn a {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
.mainBox .contactNote {
    position: relative;
    display: block;
    width: 100%;
    margin: 40px 0 0 0;
}
.mainBox .contactNote span {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    font-size: 15px;
    line-height: 25px;
    letter-spacing: 1px;
}
.mainBox .contactNote span.btn {
    margin: 5px;
    padding: 0 10px 0 10px;
    background: #c9a063;
    color:#fff;
    border-radius: 5px;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    cursor: pointer;
}
.mainBox .contactNote span.btn:hover {
    background: #eaba73;
}
.mainBox .contactNote span.btn.btn1::before {
    content: "";
    position: relative;
    display: inline-block;
    width: 18px;
    height: 18px;
    vertical-align: middle;
    top:-2px;
    margin: 0 5px 0 0;
    background: url(../images/icon_contact_btn1.svg) no-repeat center center;
    background-size: contain;
}
.mainBox .contactNote span.btn.btn2::before {
    content: "";
    position: relative;
    display: inline-block;
    width: 18px;
    height: 18px;
    vertical-align: middle;
    top:-2px;
    margin: 0 5px 0 0;
    background: url(../images/icon_func_icon3_hover.svg) no-repeat center center;
    background-size: contain;
}
.mainBox .productSlideBox {
    position: relative;
    display: block;
    width: 100%;
    text-align: center;
    font-size: 0;
    line-height: 0;
    letter-spacing: 0;
    margin: 30px 0 0 0;
}
.mainBox .productSlideBox .backwardBtn {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 60px;
    vertical-align: middle;
    cursor: pointer;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
}
.mainBox .productSlideBox .backwardBtn:hover {
    background: #f6f6f6;
}
.mainBox .productSlideBox .backwardBtn.end {
    opacity: 0.3;
}
.mainBox .productSlideBox .forwardBtn {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 60px;
    vertical-align: middle;
    cursor: pointer;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
}
.mainBox .productSlideBox .forwardBtn:hover {
    background: #f6f6f6;
}
.mainBox .productSlideBox .forwardBtn.end {
    opacity: 0.3;
}
.mainBox .productSlideBox .backwardBtn::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background: url(../images/icon_arrow_left.svg) no-repeat center center;
    background-size: contain;
}
.mainBox .productSlideBox .forwardBtn::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background: url(../images/icon_arrow_right.svg) no-repeat center center;
    background-size: contain;
}
.mainBox .productSlideBox .slideGroup {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: calc(100% - 80px);
    text-align: left;
    overflow: hidden;
}
.mainBox .productSlideBox .slideGroup .slideBox {
    position: relative;
    display: block;
    width: 1000%;
    white-space:nowrap;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
}
.mainBox .productSlideBox .slideGroup .slideBox ul {
    position: relative;
    display: inline-block;
    width: 10%;
}
.mainBox .productSlideBox .slideGroup .slideBox ul li {
    position: relative;
    display: inline-block;
    width: calc(100% / 3 - 8%);
    margin: 0 4% 0 4%;
    white-space:normal;
}
.mainBox .productSlideBox .slideGroup .slideBox ul li .imgBox {
    position: relative;
    display: block;
    width: 100%;
    border:1px solid #eee;
}
.mainBox .productSlideBox .slideGroup .slideBox ul li .imgBox img {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
}
.mainBox .productSlideBox .slideGroup .slideBox ul li .pName {
    position: relative;
    display: block;
    font-size: 13px;
    line-height: 18px;
    margin: 10px 0 0 0;
}
.mainBox .productSlideBox .slideGroup .slideBox ul li .pPrice {
    position: relative;
    display: block;
    font-size: 15px;
    line-height: 18px;
    margin: 5px 0 0 0;
    color:#c9a063;
    letter-spacing: 1px;
}
.mainBox .productSlideBox .slideGroup .slideBox ul li .closeBtn {
    position: absolute;
    display: block;
    width: 20px;
    height: 20px;
    background: #c9a063;
    top:6px;
    right:6px;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
}
.mainBox .productSlideBox .slideGroup .slideBox ul li .closeBtn:hover {
    opacity: 1;
}
.mainBox .productSlideBox .slideGroup .slideBox ul li .closeBtn::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    left: 0;
    top:49%;
    background: #fff;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}
.mainBox .productSlideBox .slideGroup .slideBox ul li .closeBtn::after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    left: 0;
    top:49%;
    background: #fff;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}
@media screen and (max-width: 700px) {
    .mainBox .productSlideBox .slideGroup .slideBox ul {
        position: relative;
        display: inline-block;
        width: 15%;
    }
}
@media screen and (max-width: 450px) {
    .mainBox .productSlideBox .slideGroup .slideBox ul {
        position: relative;
        display: inline-block;
        width: 30%;
    }
}

#cover-spin {
    position:fixed;
    width:100%;
    left:0;right:0;top:0;bottom:0;
    background-color: rgba(255,255,255,0.7);
    z-index:9999;
    display:none;
}

@-webkit-keyframes spin {
	from {-webkit-transform:rotate(0deg);}
	to {-webkit-transform:rotate(360deg);}
}

@keyframes spin {
	from {transform:rotate(0deg);}
	to {transform:rotate(360deg);}
}

#cover-spin::after {
    content:'';
    display:block;
    position:absolute;
    left:48%;top:40%;
    width:40px;height:40px;
    border-style:solid;
    border-color:black;
    border-top-color:transparent;
    border-width: 4px;
    border-radius:50%;
    -webkit-animation: spin .8s linear infinite;
    animation: spin .8s linear infinite;
}
