.pc {
	display: block;
}
.m {
	display: none;
}
@media screen and (max-width:1000px) {
    .pc {
		display: none;
	}
	.m {
		display: block;
	}
}

/* -- 常駐選單 --------------------------------------------------------------------------------- */

nav {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 999;
    filter: drop-shadow(0px 3px 2px rgba(0, 0, 0, 0.4));
}

.media-link {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 30px;
    width: 55px;
    margin-bottom: 10px;
}

.media-link a {
    text-decoration: none;
}

.go-top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 30px;
}

.tab-opt a {
    position: relative;
    text-align: center;
    font-size: 1.2rem;
    color: #fff;
    padding: 15px 0px 10px;
    filter: drop-shadow( inset 2px 3px 5px rgba(0, 0, 0, 0.5));
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}
.go-top.tab-opt a {
    padding: 17px 0px;
}
.tab-opt a:hover {
    color: #5c6b54;
}

.media-link a::after {
    content: '';
    width: 100%;
    height: 100%;
    border-width: 0;
    border-right: 1px solid;
    border-image: linear-gradient(rgba(255, 255, 255, 0), #fff, rgba(255, 255, 255, 0)) 1 100%;
    position: absolute;
    right: 0;
    bottom: 0;
    pointer-events: none;
    transform: rotateZ(-90deg);
}

.media-link a:first-of-type::after {
    display: none;
}

.media-link a span {
    font-size: 0.7rem;
    margin-top: 8px;
}

@media screen and (max-width: 1000px) {
    nav {
        top: unset;
        left: 0px;
        right: 0px;
        bottom: 0px;
        z-index: 999;
        filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.5));
        transform: translateY(0%);
    }
    .media-link {
        flex-direction: row;
        justify-content: space-around;
        align-self: center;
        border-radius: 0px;
        width: 100%;
        margin-bottom: 0px;
    }
    .media-link a {
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    .media-link a span {
        display: inline;
        font-size: 12px;
        margin-top: 6px;
    }
    .media-link .icon-arrow-up {
        display: block;
    }
    .go-top {
        display: none;
    }
    .media-link a::after {
        transform: rotateZ(180deg);
    }
}

.num {
    writing-mode: horizontal-tb;
    transform: translate(-10px, 5px);
}

@media screen and (max-width:375px) {
    .num {
        display: contents;
    }
}

/* -- 感謝頁 --------------------------------------------------------------------------------- */
.Area.thanks {
    /*background: url(../image/bg.jpg);*/
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-color: #d6d6ce;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center; /* 水平居中 */
    align-items: center;     /* 垂直居中 */
}
.Area.thanks .container {
    color: #4b2015;
    text-align: center;
    display: inline-block;
}
.thanks h3 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
}
.thanks p {
    font-size: 2rem;
    line-height: 1.5;
}
.thanks a {
    font-size: 1.5rem;
    line-height: 1.5;
    color: #000;
    text-decoration: underline;

}
.thanks a:hover {
    color: #7a1111;
}

/* -- 主視覺 --------------------------------------------------------------------------------- */

.Banner {
    width: 100%;
	animation: fadein 6s ease;
}
@keyframes fadein {
  0% {opacity: 0;}
  50% {opacity: 1;}
}

.pc_banner {
    display: block;
    width: 100%;
    margin: auto;
    max-width: 900px;
}

.mobile_banner {
    display: none;
    width: 100%;
    margin: auto;
}

@media screen and (max-width: 959px) {
    .mobile_banner {
        display: block;
    }
    .pc_banner {
        display: none;
    }
}

.slick-prev,
.slick-next {
    cursor: pointer;
    position: absolute;
    border-radius: 30px;
    border: 1px #333;
    height: 40px;
    width: 40px;
    top: 43%;
    z-index: 1;
    color: transparent;
    background-position: center;
    background-size: 80% auto;
}
.slick-prev {
    left: 2%;
    background: url(../image/arrow-prev.svg) no-repeat #333;
}
.slick-next {
    right: 2%;
    background: url(../image/arrow-next.svg) no-repeat #333;
}

.Area .container {
    width: 100%;
    max-width: 1100px;
    /* padding-right: 15px;
    padding-left: 15px; */
    margin-right: auto;
    margin-left: auto;
}
.Area .container img {
    max-width: 100%;
}


.slider {
    width: 100%;
    max-width: 1100px;
    z-index: 2;
}

.slider img {
    width: 100%;
    vertical-align: middle;
    border-style: none;
}


/* -- 預約表單 --------------------------------------------------------------------------------- */

.contact {
    /* background-image: url(../image/bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover; */
}

@media screen and (max-width: 1000px) {
    .contact {
        padding: 0;
    }
}

.form_box {
    width: 100%;
    max-width: 1100px;
    height: auto;
    margin: auto;
    /*background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: multiply;
    box-shadow: 0px 5px 15px 1px rgb(0 0 0 / 50%);*/
	padding: 40px 0;
}

@media screen and (max-width: 1000px) {
    .form_box {
        box-shadow: none;
        background-color: #f5f5f5;
    }
}

.form_box .title {
    width: 100%;
    font-size: 2.2rem;
    text-align: center;
    font-weight: 700;
    letter-spacing: 10px;
    text-indent: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: unset;
    padding-right: unset;
    padding: 40px 0;
}

@media screen and (max-width: 767px) {
    .form_box .intro_title {
        font-size: 1.8rem;
        width: 250px;
    }
}

@media screen and (max-width: 375px) {
    .form_box .intro_title {
        letter-spacing: 4px;
        text-indent: 4px;
    }
}

.form_box .title div:first-child {
    width: 30%;
    height: 1px;
    margin-left: 30px;
}

.form_box .title div:nth-child(2) {
    width: 30%;
}

@media screen and (max-width: 767px) {
    .form_box .title div:nth-child(2) {
        font-size: 2rem;
    }
}

@media screen and (max-width: 639px) {
    .form_box .title div:nth-child(2) {
        width: 100%;
    }
}

.form_box .title div:last-child {
    width: 30%;
    height: 1px;
    margin-right: 30px;
}

.form_box label.name::after,
.form_box label.mobile::after {
    content: '*';
    color: red;
}

.form_box label.gender::after,
.form_box label.time::after {
    content: "*";
    color: transparent;
}

.form_box label {
    display: block;
    color: #333;
    margin: auto;
    font-size: 24px;
    font-weight: 400;
    /*width: 1000px;*/
    width: 100%;
}

@media screen and (max-width: 767px) {
    .form_box label {
        font-size: 18px;
    }
}

.form_box .ipt_name,
.form_box .ipt_mobile,
.form_box .ipt_time,
.form_box .ipt_content,
.form_box .slt_gender,
.form_box .slt_time {
    display: block;
    margin: auto;
    border-radius: 5px;
    margin-top: 10px;
    margin-bottom: 20px;
    outline: none;
    width: 100%;
    font-size: 20px;
    /* border: none; */
    border: 1px solid #333;
    /* padding: 10px; */
    text-indent: 5px;
    line-height: 30px;
}

@media screen and (max-width: 767px) {
    .form_box .ipt_name,
    .form_box .ipt_mobile,
    .form_box .ipt_time,
	.form_box .ipt_content,
    .form_box .slt_gender,
    .form_box .slt_time {
        font-size: 16px;
    }
}

.form_box .slt_gender {
    background-color: #fff;
    width: 100%;
    height: 30px;
    /* padding: 4px; */
    text-indent: 1px;
}
.form_box .slt_time{
    text-indent: 5px;
}

@media screen and (max-width: 1200px) {
    .form_box label {
        width: 800px;
    }
    .form_box .ipt_name,
    .form_box .ipt_mobile,
    .form_box .ipt_time,
	.form_box .ipt_content {
        width: 800px;
    }
    .form_box .slt_gender,
    .form_box .slt_time {
        width: 800px;
    }
}

@media screen and (max-width: 959px) {
    .form_box label {
        width: 80%;
    }
    .form_box .ipt_name,
    .form_box .ipt_mobile,
    .form_box .ipt_time,
	.form_box .ipt_content {
        width: 80%;
    }
    .form_box .slt_gender,
    .form_box .slt_time {
        width: 80%;
    }
    .control-group.privacy-remark.animate-spy {
        padding: 0 10%;
    }

}

.form_box .send,
.form_box .clear {
    background-color: #1ea1d9;
    color: #fff;
    width: 140px;
    height: 50px;
    outline: none;
    font-size: 22px;
    font-weight: 700;
    border-radius: 10px;
    margin: 5px;
    margin-top: 30px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: .3s ease-in-out;
}

.form_box .send:hover,
.form_box .clear:hover {
    background-color: #fff;
    border: 1px solid #8ea382;
    color: #8ea382;
}

@media screen and (max-width: 399px) {
    .form_box .send,
    .clear {
        margin: unset;
        margin-top: 30px;
    }
}

.over-border form>.control-group:last-child {
    padding-bottom: 30px;
}

/* footer頁尾 ------------------------------------------------------------------------------------- */
footer {
    font-family: 'Noto Serif TC', serif;
    background-size: cover;
    line-height: 1.6;
	text-align: center;
}
footer .info {
	position: relative;
	display: inline-block;
	overflow: hidden;
	min-width: 900px;
	font-size: 19px;
	padding: 40px 0 30px;
}
footer .info ul {
	position: relative;
	display: block;
	float: left;
	overflow: hidden;
	width: 50%;
	text-align: center;
}
footer .info ul li {
	position: relative;
	display: block;
	text-align: left;
	padding: 10px 0 10px 20px;
	vertical-align: bottom;
}
footer .info ul li span {
	vertical-align: bottom;
	border-left: 7px solid #fff; 
	padding: 0 5px 0 12px;
	font-weight: bold;
}
footer .copyright {
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
}

footer .copyright span {
	padding-right: 5px;
}

.copyright img {
    height: 14px;
    width: auto;
    transform: translateY(-2px);
}

@media screen and (max-width: 1000px) {
	footer {
		padding-bottom: 70px;
	}
	footer .info {
		min-width: auto;
		font-size: 15px;
		padding: 30px;
	}
	footer .info ul {
		width: 100%;
	}
	footer .info ul li {
		padding: 5px 0;
	}
	footer .info ul li span {
		padding: 0 5px 0 0;
		border-left: none;
	}
	footer .copyright {
		display: none;
	}
}

@media screen and (max-width: 518px) {
    .br {
        display: none;
    }
}

#form1 .privacy-remark{
    font-size: 14px;
    margin-bottom: 20px;
}
#form1 .privacy-remark li{ padding-bottom: unset;}

#form1 .privacy-remark span{
    display: block;
    margin: auto;
    width: 1000px;
}
#form1 .privacy-remark ul{
    display: block;
    margin: auto;
    width: 1000px;
    line-height: 1.44;
    margin-top: 10px;
    padding-left: unset;
}

@media screen and (max-width: 1200px){
    #form1 .privacy-remark span{ width: 800px;}
    #form1 .privacy-remark ul{ width: 800px;}
}
@media screen and (max-width: 959px){
    #form1 .privacy-remark span{ width: 80%;}
    #form1 .privacy-remark ul{ width: 80%;}
}

/* = sweetalert
-------------------------------------------------------------- */
#swal2-content{ text-align: justify; height: 200px; overflow-y: scroll; line-height: 1.44;}
.swal2-header{ margin-top: 0.75em;}
.swal2-title{ margin: 0 0 0.6em;}

/* 顏色調整 -------------------------------------------------------------- */
body {
	background: #fff;
}
.Banner {
    background: #30aeaa;
}
.Area {
    background: #fff;
}
.form_box .send,
.form_box .clear {
    background-color: #000;
    color: #fff;
}

.form_box .send:hover,
.form_box .clear:hover {
    background-color: #317976;
    color: #fff;
}
footer {
    color: #fff;
    background-color: #30aeaa;
}
/* 常駐列 */
.media-link,
.go-top {
    background: #3c3c3c;
}
.tab-opt a:hover {
    color: #fff;
}

/* 表單 */
.contact {
    background-color: #30aeaa;
}
.form_box {
    background-color: #30aeaa;
	color: #fff;
}
.form_box .title {
    color: #fff;
}
.form_box .title .line1,
.form_box .title .line2 {
	background: #eee;
}
.form_box label {
    color: #fff;
}

.sale-off {
    pointer-events: none;
    background-color: #aaa;
    color: #ccc;
}

@media screen and (max-width: 1000px) {
    .media-link {
		background: #00000090;
	}
}

.Area .container,
.form_box {
    max-width: 900px;
}