/* default style setting */
*,
html,
body {
    scroll-behavior: smooth;
    --mainColor: #231815;
    --secondaryColor: #008342;
    --thirdColor: #e05f31;
    --darkColor: #202121;
    --darkColorRGB: 32, 33, 33;
    --lightColor: #f0fcff;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
    /*font-family: 'Noto Sans TC', sans-serif;*/
    font-family: "Noto Serif TC", serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-smooth: always;
}

body::-webkit-scrollbar {
    display: none;
}

body {
    -ms-overflow-style: none;
    background-image: url("../images/bg.png");
    background-repeat: repeat;
    background-attachment: fixed;
}

a,
a:focus,
a:hover {
    text-decoration: none;
    outline: none;
    box-shadow: none;
    border: none;
}

button,
input {
    outline: none;
    box-shadow: none;
    border: none;
}

.border-unset {
    outline: none !important;
    box-shadow: none !important;
    border: unset !important;
}

.btn,
.btn:hover,
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
    outline: none !important;
    box-shadow: none !important;
}

.color-dark {
    color: var(--darkColor) !important;
}

.color-light {
    color: var(--lightColor) !important;
}

.color-main {
    color: var(--mainColor) !important;
}

.color-secondary {
    color: var(--secondaryColor) !important;
}

.color-third {
    color: var(--thirdColor) !important;
}

.bg-dark {
    background-color: var(--darkColor) !important;
}

.bg-light {
    background-color: var(--lightColor) !important;
}

.bg-main {
    background-color: var(--mainColor) !important;
}

.bg-secondary {
    background-color: var(--secondaryColor) !important;
}

.bg-third {
    background-color: var(--thirdColor) !important;
}

/* more default*/
.img-default {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.h-100vh-fluid {
    height: 100vh !important;
}

.text-white-space-nowrap {
    white-space: nowrap;
}

@media screen and (min-width: 768px) {
    .md-justify-content-start {
        justify-content: flex-start !important;
    }

    .md-justify-content-center {
        justify-content: center !important;
    }

    .md-justify-content-end {
        justify-content: flex-end !important;
    }

    .md-justify-content-between {
        justify-content: space-between !important;
    }

    .md-align-items-start {
        align-items: flex-start !important;
    }

    .md-align-items-center {
        align-items: center !important;
    }

    .md-align-items-end {
        align-items: flex-end !important;
    }

    .md-align-items-end {
        justify-content: space-between !important;
    }
}

@media screen and (max-width: 767px) {
    .sm-pb-100 {
        padding-bottom: 100% !important;
        height: 0 !important;
    }
}

/* font setting */
.text-straight {
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}

@media screen and (max-width: 767px) {
    h3 {
        font-size: 1.25rem;
    }

    h5 {
        font-size: 1rem;
    }

    p {
        font-size: 0.85rem;
    }
}

/* arrow */
.arrow {
    width: 40px;
    height: 40px;
    position: relative;
    display: inline-block;
    /*margin: 10px;*/
}

.arrow::before,
.arrow::after {
    content: "";
    border-color: transparent;
    border-style: solid;
    position: absolute;
}

.arrow-left::before {
    border: none;
    background-color: #fff;
    height: 5px;
    width: 30px;
    top: calc(50% - 2.5px);
    right: 0;
    border-radius: 999rem;
}

.arrow-left::after {
    left: -8px;
    top: calc(50% - 10px);
    border-width: 10px 10px;
    border-right-color: #fff;
}

.arrow-right::before {
    border: none;
    background-color: #fff;
    height: 5px;
    width: 30px;
    top: calc(50% - 2.5px);
    left: 0;
    border-radius: 999rem;
}

.arrow-right::after {
    left: 28px;
    top: calc(50% - 10px);
    border-width: 10px 10px;
    border-left-color: #fff;
}

/* circle */
.circle {
    width: 40px;
    height: 40px;
    position: relative;
    display: inline-block;
    border-radius: 999rem;
}

.circle::before,
.circle::after {
    content: "";
    border-color: transparent;
    border-style: solid;
    position: absolute;
    border-radius: 999rem;
}

.circle-double::before {
    height: 40px;
    width: 40px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    border: 5px solid #fff;
    border-radius: 999rem;
}

.circle-double::after {
    height: 20px;
    width: 20px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background-color: #fff;
    border-radius: 999rem;
}

/* Nav icon */
#nav-icon {
    width: 30px;
    height: 24px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    cursor: pointer;
}

#nav-icon span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background-color: var(--mainColor);
    border-radius: 10px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}

#nav-icon span:nth-child(1) {
    top: 0px;
}

#nav-icon span:nth-child(2),
#nav-icon span:nth-child(3) {
    top: 10px;
}

#nav-icon span:nth-child(4) {
    top: 20px;
}

#nav-icon.open span:nth-child(1) {
    top: 10px;
    width: 0%;
    left: 50%;
}

#nav-icon.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

#nav-icon.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#nav-icon.open span:nth-child(4) {
    top: 10px;
    width: 0%;
    left: 50%;
}

.nav-logo {
    width: 100px;
}

@media screen and (min-width: 768px) {
    .nav-logo {
        width: 120px;
    }
}

/* Nav Bar Top */
#navbar .nav-link {
    min-width: 5rem;
    color: var(--darkColor);
    cursor: pointer;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -ms-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

#navbar .nav-link:hover {
    color: var(--secondaryColor);
}

/* Nav Bar Right*/
#navbar-r {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    height: 32rem;
    z-index: 20;
    opacity: 0;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -ms-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

#navbar-r.show {
    opacity: 1;
}

.navbar-r-btn {
    width: 6rem;
    height: 6rem;
    padding: 1rem 0.5rem;
    text-align: center;
    color: #fff;
    font-family: "Noto Sans TC", sans-serif;
}

.navbar-r-btn:first-child {
    background-color: #737c7b;
}

.navbar-r-btn:nth-child(2) {
    background-color: #00b900;
}

.navbar-r-btn:nth-child(3) {
    background-color: rgb(24, 119, 242);
}

.navbar-r-btn:last-child {
    background-color: var(--darkColor);
}

.navbar-r-btn {
    color: #fff;
    cursor: pointer;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -ms-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

.navbar-r-btn:hover {
    color: rgba(255, 255, 255, 0.8);
}

.navbar-r-btn h5 {
    font-size: 1.25rem;
}

#navbar-b {
    position: fixed;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 100vw;
    padding: 0.5rem 0;
    z-index: 20;
    background-color: var(--darkColor);
    opacity: 0;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -ms-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

#navbar-b.show {
    opacity: 1;
}

#navbar-b p {
    font-size: 0.75rem;
}

/* slick */
/*.slick-slide,
.slick-current {
    position: relative;
}

.slick-slide::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.35);
    -webkit-transition: all .5s ease;
       -moz-transition: all .5s ease;
        -ms-transition: all .5s ease;
         -o-transition: all .5s ease;
            transition: all .5s ease;
}

.slick-current::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: unset;
}*/

.slick-arrow {
    position: absolute;
    z-index: 10;
}

.slick-arrow:hover {
}

.slick-prev {
    left: 0;
}

.slick-next {
    right: 0;
}

.slick-prev::before,
.slick-next:before {
    content: "";
}

.slick-prev::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 10px 10px 0;
    border-color: transparent #fff transparent transparent;
    line-height: 0px;
    _border-color: #000000 #fff #000000 #000000;
    _filter: progid:DXImageTransform.Microsoft.Chroma(color='#000000');
}

.slick-next::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent #fff;
    line-height: 0px;
    _border-color: #000000 #000000 #000000 #fff;
    _filter: progid:DXImageTransform.Microsoft.Chroma(color='#000000');
}

/* carousel-indicators li */
.carousel-indicators li {
    width: 12px;
    height: 12px;
    border-radius: 999rem;
    border-top: unset;
    border-bottom: unset;
    margin: 0 4px;
    background-color: rgba(255, 255, 255, 0.4);
}

.carousel-indicators li:first-child {
    margin-left: 0 !important;
}

.carousel-indicators li:last-child {
    margin-right: 0 !important;
}

.carousel-indicators li.active {
    background-color: rgba(0, 0, 0, 0.6);
}

.carousel-caption-lb {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40%;
    padding: 10px;
    margin: 0;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 500;
    text-align: left;
    font-family: "Noto Sans TC", sans-serif;
    background: -webkit-linear-gradient(right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    background: -o-linear-gradient(right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    background: linear-gradient(right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.carousel-caption-rb {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 40%;
    padding: 10px;
    margin: 0;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 500;
    text-align: right;
    font-family: "Noto Sans TC", sans-serif;
    background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    background: -o-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    background: linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
}

@media screen and (min-width: 768px) {
    .carousel-indicators li {
        width: 15px;
        height: 15px;
        margin: 0 5px;
    }

    .carousel-caption-lb {
        font-size: 0.9rem;
    }
}

/* section */
section {
    position: relative;
}

.btn-tag-brand,
.btn-tag-seiko-aesthetics,
.btn-tag-master {
    padding: 10px 0px;
    border: 1px solid var(--darkColor);
    width: calc(50% - 5px);
    background-color: rgba(0, 0, 0, 0);
    color: #000;
    cursor: pointer;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -ms-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

.btn-tag-brand:hover,
.btn-tag-seiko-aesthetics:hover,
.btn-tag-master:hover {
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
}

.btn-tag-brand.activity,
.btn-tag-seiko-aesthetics.activity,
.btn-tag-master.activity {
    background-color: rgba(0, 0, 0, 1);
    color: #fff;
}

@media screen and (min-width: 768px) {
    .btn-tag-brand,
    .btn-tag-seiko-aesthetics,
    .btn-tag-master {
        width: 10rem;
    }
}

#reservation .logo {
    width: 200px;
    height: auto;
    /*padding-bottom: calc( 100% * ( 98 / 401) );*/
    margin-top: 20px;
    margin-bottom: 30px;
}

.reservation-main {
    background-repeat: repeat;
    /*background-image: url(../images/bg.png);*/
    background-color: rgba(0, 70, 35, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.05);
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
    position: relative;
}

.reservation-main::after {
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    position: absolute;
    border: 1px dotted #eee;
}

.reservation-main h4 {
    font-size: 2rem;
    position: relative;
}

.reservation-main h4::after {
    content: "";
    position: absolute;
    width: 6rem;
    height: 2px;
    border-bottom: 2px solid var(--thirdColor);
    bottom: -10px;
    left: 0;
    right: 0;
    margin: auto;
}

.reservation-main .information {
    position: relative;
    z-index: 2;
}

.reservation-main .information h4 {
    font-size: 1.4rem;
    position: relative;
}

.reservation-main .information h4::after {
    content: "";
    position: absolute;
    width: 2.8rem;
    height: 2px;
    border-bottom: 2px solid var(--thirdColor);
    bottom: -10px;
    left: 0;
    margin: unset;
}

@media screen and (min-width: 768px) {
    #reservation .logo {
        width: 350px;
        margin-top: 40px;
        margin-bottom: 80px;
    }
    .reservation-main h4 {
        font-size: 3rem;
    }
}

form {
    position: relative;
    z-index: 1;
}

form input.form-control,
form input.form-control:focus,
form select.form-control,
form select.form-control:focus {
    font-size: 0.9rem;
    background-color: rgba(0, 0, 0, 0);
    color: var(--lightColor);
    border-radius: unset;
}

form input.form-control::placeholder,
form select.form-control::placeholder {
    /* CSS 3 標準 */
    color: var(--lightColor);
    font-size: 0.9rem;
}

form input.form-control::-webkit-input-placeholder,
form select.form-control::-webkit-input-placeholder {
    /* Chrome, Safari */
    color: var(--lightColor);
    font-size: 0.9rem;
}

form input.form-control:-ms-input-placeholder,
form select.form-control:-ms-input-placeholder {
    /* IE 10+ */
    color: var(--lightColor);
    font-size: 0.9rem;
}

form input.form-control::-moz-placeholder,
form select.form-control::-moz-placeholder {
    /* Firefox 19+ */
    color: var(--lightColor);
    opacity: 1;
    font-size: 0.9rem;
}

.btn-Submit {
    border-radius: unset;
    background-color: rgba(0, 0, 0, 0.6);
    -webkit-transition: all .25s ease-in-out;
       -moz-transition: all .25s ease-in-out;
        -ms-transition: all .25s ease-in-out;
         -o-transition: all .25s ease-in-out;
            transition: all .25s ease-in-out;
}

.btn-Submit:hover {
    background-color: rgba(0, 0, 0, 0.3);
    border-bottom: 2px solid rgba(0, 0, 0, 0.6);
}

#SendSmsVerifyCodeBtn {
    font-size: 0.9rem;
    border-radius: unset;
    position: relative;
    overflow: hidden;
}

#SendSmsVerifyCodeBtn::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 3px;
    border-radius: 999rem;
    right: 0;
    left: 0;
    bottom: -1px;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0);
    -webkit-transition: all .25s ease-in-out;
       -moz-transition: all .25s ease-in-out;
        -ms-transition: all .25s ease-in-out;
         -o-transition: all .25s ease-in-out;
            transition: all .25s ease-in-out;
}

#SendSmsVerifyCodeBtn:hover::after {
    background-color: rgba(0, 0, 0, 0.15);
}

/* draw */
#canvasContainer {
    height: 90vh;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
}

canvas {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-transform3d: translate(0, 0, 0);
    -moz-transform3d: translate(0, 0, 0);
    transform3d: translate(0, 0, 0);
}
