@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/*
    Theme color: #bf9d82; #bf9b69
    Theme light: #eec6a8; #e5c59a
    Theme dark: #9d7355; #6c4a31; 
*/

@font-face {
  font-family: mellony;
  src: url(font/mellonydrybrush.ttf);
}

:root {
  --theme-color: #556EE6;
	--theme-color-light: #556EE6;
  --theme-color-bg: #556EE6;
  --theme-color-dark: #6c4a31;
  --theme-color-grey: #4E4E4E;
	--theme-color-red: #F99F9F;
	--font-title: 'Playfair Display', serif, "微軟正黑體","Microsoft YaHei","宋體",Arial,"Microsoft JhengHei";
	--font: 'Roboto', sans-serif, "微軟正黑體","Microsoft YaHei","宋體",Arial,"Microsoft JhengHei";
}

* {
  color: var(--theme-color-grey);
	font-size: 14px;
  font-family: var(--font);
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
          -webkit-text-size-adjust: 100%;
}

html, body {
  height: 100%;
  padding: 0px;
  margin: 0px auto;
  text-align: center;
}

body {
  display: inline-block;
  position: relative;
  min-width: 1200px;
  width: 100%;
  min-height: 100%;
  background-color: #fff;
  background-size: contain;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

div, span, p {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
p {
  padding: 0;
  margin: 0;
}
img {
  width: 100%;
  height: auto;
}
ul {
  margin: 0;
  padding: 0;
}
a {
  text-decoration: underline;
}
a, span, i, b, u, strong, strike, sup, sub {
  color: inherit;
  font-size: inherit;
  font-family: inherit;
}

.noselect,no-select {
	-webkit-user-select: none;  /* Chrome all / Safari all */
  -moz-user-select: none;     /* Firefox all */
  -ms-user-select: none;      /* IE 10+ */
  user-select: none;          /* Likely future */   
}

input:not([type=checkbox]) {
  display: inline-block;
	width: auto;
  height: 30px;
  padding: 2px 2px;
  color: var(--theme-color-grey);
  font-size: 14px;
  text-align: left;
	background-color: #FFF;
  border: none;
  border-radius: 15px;
  box-shadow: 0 0 2px rgba(0, 0, 0, .25);
  transition: all ease-in-out .2s;
}
select {
  display: inline-block;
	width: auto;
  height: 30px;
  padding: 2px 2px;
  color: var(--theme-color-grey);
  font-size: 14px;
  text-align: left;
  background-color: #FFF;
  background-image: url('/image/icon-select.png');
  background-size: auto 8px;
  background-position: calc(100% - 10px) center;
  background-repeat: no-repeat;
  border: none;
  border-radius: 15px;
  box-shadow: 0 0 2px rgba(0, 0, 0, .25);
  cursor: pointer;
  transition: all ease-in-out .2s;
  -webkit-appearance: none;
  -moz-appearance:    none;
  appearance:         none;
}
select:invalid {
	color: #9e9e9e;
}
select:invalid option {
	color: var(--theme-color-grey);
}
textarea {
  display: inline-block;
	width: auto;
  height: 120px;
  padding: 2px 2px;
  color: var(--theme-color-grey);
  font-size: 14px;
  text-align: left;
	background-color: #FFF;
  border-radius: 15px;
  box-shadow: 0 0 2px rgba(0, 0, 0, .25);
	resize: none;
  transition: all ease-in-out .2s;
}

input:focus,
select:focus,
textarea:focus {
  outline: 0;
  border-color: var(--theme-color-bg);
}

input:disabled,
select:disabled,
textarea:disabled {
  cursor: not-allowed;
}

::-moz-selection { /* Code for Firefox */
  background: var(--theme-color); 
  color: #fff;
}
::selection {
  background: var(--theme-color); 
  color: #fff;
}
::-webkit-input-placeholder {
   color: #CCC;
}
:-moz-placeholder { /* Firefox 18- */
   color: #CCC;  
}
::-moz-placeholder {  /* Firefox 19+ */
   color: #CCC;  
}
:-ms-input-placeholder {  
   color: #CCC;  
}
input:focus::-webkit-input-placeholder {
   color: var(--theme-color-light);
}
input:focus:-moz-placeholder { /* Firefox 18- */
   color: var(--theme-color-light);
}
input:focus::-moz-placeholder {  /* Firefox 19+ */
   color: var(--theme-color-light);
}
input:focus:-ms-input-placeholder {  
   color: var(--theme-color-light);
}

button {
  display: inline-block;
  vertical-align: middle;
  padding: .6em 1.8em .6em 1.8em;
  color: #FFF;
  font-size: 14px;
  text-align: center;
	text-transform: uppercase;
  white-space: nowrap;
  background-color: #000;
  background-size: 16px;
  background-position: center center;
  background-repeat: no-repeat;
  border: none;
  box-shadow: 0 0 2px rgba(0, 0, 0, .25);
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;  /* Chrome all / Safari all */
  -moz-user-select: none;     /* Firefox all */
  -ms-user-select: none;      /* IE 10+ */
  user-select: none;          /* Likely future */
  -webkit-appearance: value;
  -moz-appearance:    value;
  appearance:         value;
  transition: background-image ease-in-out .2s;
}
button:hover {
  box-shadow: 0 0 6px rgba(0, 0, 0, .4);
}
button.s {
  padding: .4em 1.2em .3em 1.2em;
  font-size: 12px;
  background-size: 12px;
}
button.load {
	color: rgba(0, 0, 0, 0);
	background-image: url('/image/load.gif');
	cursor: not-allowed;
}
button:disabled {
	color: #ccc;
	cursor: not-allowed;
}
button.dark {
  background-color: #333;
}
button.grey {
  background-color: #666;
}
button.light {
  background-color: #CCC;
}
button.red {
  background-color: #E74C3C !important;
}
button.orange {
  background-color: #E67E22 !important;
}
button.yellow {
  background-color: #F1C40F !important;
}
button.green {
  background-color: #2ECC71 !important;
}
button.cyan {
  background-color: #1ABC9C !important;
}
button.blue {
  background-color: #3498DB !important;
}
button.violet {
  background-color: #9B59B6 !important;
}
button.navy {
  background-color: #2C4965 !important;
}

.facebook-button {
  display: inline-block;
  vertical-align: middle;
  padding: .6em 1.5em .6em 1.5em;
  padding-left: 45px;
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  background-color: #1877f2;
  background-image: url('/image/button-facebook.png');
  background-size: 22px;
  background-position: 10px center;
  background-repeat: no-repeat;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;  /* Chrome all / Safari all */
  -moz-user-select: none;     /* Firefox all */
  -ms-user-select: none;      /* IE 10+ */
  user-select: none;          /* Likely future */
  -webkit-appearance: value;
  -moz-appearance:    value;
  appearance:         value;
  transition: background-color ease-in-out .2s;
}
.facebook-button:hover {
  background-color: #4267b2;
}
.google-button {
  display: inline-block;
  vertical-align: middle;
  padding: .6em 1.5em .6em 1.5em;
  padding-left: 45px;
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  background-color: #F44336;
  background-image: url('/image/button-google.png');
  background-size: 22px;
  background-position: 10px center;
  background-repeat: no-repeat;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;  /* Chrome all / Safari all */
  -moz-user-select: none;     /* Firefox all */
  -ms-user-select: none;      /* IE 10+ */
  user-select: none;          /* Likely future */
  -webkit-appearance: value;
  -moz-appearance:    value;
  appearance:         value;
  transition: background-color ease-in-out .2s;
}
.google-button:hover {
  background-color: #E53935;
}

.uicheckbox {
  display: inline-block;
  width: 100%;
  font-size: 0;
  cursor: pointer;
}
.uicheckbox.checked {

}
.uicheckbox .box {
  display: inline-block;
  vertical-align: top;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  background-size: auto 80%;
  background-position: center;
  background-repeat: no-repeat;
  border: 2px solid var(--theme-color);
  border-radius: 1px;
  transition: all ease-in-out .2s;
}
.uicheckbox.checked .box {
  background-image: url('/image/icon-tick.png');
}
.uicheckbox .label {
  display: inline-block;
  vertical-align: top;
  width: calc(100% - 16px);
  line-height: 1.5em;
  padding-left: 15px;
  color: var(--theme-color-grey);
  font-size: 14px;
  text-align: left;
}
.uicheckbox.checked .label {

}



.header {
  display: none !important;
}
.footer {
  display: inline-block;
  width: 100%;
  text-align: center;
}
.footer .container {
  display: inline-flex;
  flex-direction: row;
  width: 100%;
  padding: 60px 90px;
  border-top: 1px solid #EEE;
  border-bottom: 1px solid #EEE;
}
.footer .col {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.footer .col:nth-child(2) {
  padding-top: 105px;
}
.footer .col:nth-child(3) {
  flex-direction: row;
  align-items: center;
}
.footer .row {
  margin-top: 20px;
  text-align: left;
}
.footer .logo {
  display: inline-block;
  width: 90px;
  height: 90px;
  margin-bottom: 20px;
  background-image: url('/image/logo-sq.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.footer .text {
  display: inline-block;
  width: 100%;
  margin-bottom: 15px;
  color: #000;
  font-size: 14px;
  text-align: left;
  line-height: 2em;
}
.footer .menu-item {
  display: inline-block;
  width: 100%;
  margin-bottom: 10px;
  color: #000;
  font-size: 14px;
  text-align: left;
  cursor: pointer;
}
.footer .social {
  display: inline-block;
  vertical-align: middle;
  width: 30px;
  height: 30px;
  background-size: auto 18px;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: all ease-in-out .2s;
}
.footer .social:hover {
  background-color: #DDD;
}
.footer .social[name=facebook] {
  background-image: url('/image/footer-fb.png');
}
.footer .social[name=instagram] {
  background-image: url('/image/footer-ig.png');
}
.footer .social[name=linkedin] {
  background-image: url('/image/footer-in.png');
}
.footer input {
  flex: 1;
  padding: 4px 4px;
  border-bottom: 1px solid #DDD;
  box-shadow: none;
}
.footer button {
  vertical-align: middle;
  margin-left: 15px;
  color: #BBB;
  letter-spacing: 1px;
  background-color: transparent;
  box-shadow: none;
}


.footer .copyright {
  display: inline-block;
  width: 100%;
  padding: 20px 0;
  color: #000;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
}

/* Init */
[data-lang] {
	opacity: 0;
}



/* Smartphones (portrait) */
@media only screen and (max-width: 480px) {
  body {
    min-width: 0 !important;
  }
  .no-mobile {
    display: none !important;
  }
	
	.footer .container {
		display: none;
	}
	.footer .copyright {
		border-top: 1px solid #CCC;
	}
}

/* Smartphones (Landscape) / Tablet (portrait) */
@media only screen and (min-width: 481px) and (max-width: 800px) {
  body {
    min-width: 0 !important;
  }

  .no-mobile {
    display: none !important;
  }
}

/* Tablet (Landscape) */
@media only screen and (min-width: 801px) and (max-width: 1200px) {
  body {
    min-width: 0 !important;
  }
}

/* Laptop */
@media only screen and (min-width: 1201px) and (max-width: 1600px) {
  
}

/* Desktop */
@media only screen and (min-width: 1601px) {
  
}