/*
less:
.main{
	width: 300px;
	.atSmall({
		width: 100%;
	});
}

compailed css:
.main{
	width: 300px;
}
@media (max-width:780px){
	.main{
		width: 100%;
	}
}
*/
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}
/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}
/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}
/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}
/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}
/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */
}
/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}
/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}
/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}
/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}
/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}
/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}
/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}
/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}
/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}
/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}
/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}
/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}
/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}
/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}
/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}
/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}
/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}
@tailwind base;
@tailwind components;
@tailwind utilities;
@font-face {
  font-family: 'Noto Sans';
  font-style: italic;
  font-weight: 100;
  font-stretch: normal;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/notosans/v36/o-0kIpQlx3QUlC5A4PNr4C5OaxRsfNNlKbCePevHtVtX57DGjDU1QDcf6Vc.ttf) format('truetype');
}
@font-face {
  font-family: 'Noto Sans';
  font-style: italic;
  font-weight: 200;
  font-stretch: normal;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/notosans/v36/o-0kIpQlx3QUlC5A4PNr4C5OaxRsfNNlKbCePevHtVtX57DGjDU1QLce6Vc.ttf) format('truetype');
}
@font-face {
  font-family: 'Noto Sans';
  font-style: italic;
  font-weight: 300;
  font-stretch: normal;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/notosans/v36/o-0kIpQlx3QUlC5A4PNr4C5OaxRsfNNlKbCePevHtVtX57DGjDU1QGke6Vc.ttf) format('truetype');
}
@font-face {
  font-family: 'Noto Sans';
  font-style: italic;
  font-weight: 400;
  font-stretch: normal;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/notosans/v36/o-0kIpQlx3QUlC5A4PNr4C5OaxRsfNNlKbCePevHtVtX57DGjDU1QDce6Vc.ttf) format('truetype');
}
@font-face {
  font-family: 'Noto Sans';
  font-style: italic;
  font-weight: 500;
  font-stretch: normal;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/notosans/v36/o-0kIpQlx3QUlC5A4PNr4C5OaxRsfNNlKbCePevHtVtX57DGjDU1QAUe6Vc.ttf) format('truetype');
}
@font-face {
  font-family: 'Noto Sans';
  font-style: italic;
  font-weight: 600;
  font-stretch: normal;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/notosans/v36/o-0kIpQlx3QUlC5A4PNr4C5OaxRsfNNlKbCePevHtVtX57DGjDU1QOkZ6Vc.ttf) format('truetype');
}
@font-face {
  font-family: 'Noto Sans';
  font-style: italic;
  font-weight: 700;
  font-stretch: normal;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/notosans/v36/o-0kIpQlx3QUlC5A4PNr4C5OaxRsfNNlKbCePevHtVtX57DGjDU1QNAZ6Vc.ttf) format('truetype');
}
@font-face {
  font-family: 'Noto Sans';
  font-style: italic;
  font-weight: 800;
  font-stretch: normal;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/notosans/v36/o-0kIpQlx3QUlC5A4PNr4C5OaxRsfNNlKbCePevHtVtX57DGjDU1QLcZ6Vc.ttf) format('truetype');
}
@font-face {
  font-family: 'Noto Sans';
  font-style: italic;
  font-weight: 900;
  font-stretch: normal;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/notosans/v36/o-0kIpQlx3QUlC5A4PNr4C5OaxRsfNNlKbCePevHtVtX57DGjDU1QJ4Z6Vc.ttf) format('truetype');
}
@font-face {
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 100;
  font-stretch: normal;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/notosans/v36/o-0mIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjcz6L1SoM-jCpoiyD9At9d.ttf) format('truetype');
}
@font-face {
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 200;
  font-stretch: normal;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/notosans/v36/o-0mIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjcz6L1SoM-jCpoiyB9A99d.ttf) format('truetype');
}
@font-face {
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 300;
  font-stretch: normal;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/notosans/v36/o-0mIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjcz6L1SoM-jCpoiyCjA99d.ttf) format('truetype');
}
@font-face {
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: normal;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/notosans/v36/o-0mIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjcz6L1SoM-jCpoiyD9A99d.ttf) format('truetype');
}
@font-face {
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 500;
  font-stretch: normal;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/notosans/v36/o-0mIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjcz6L1SoM-jCpoiyDPA99d.ttf) format('truetype');
}
@font-face {
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 600;
  font-stretch: normal;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/notosans/v36/o-0mIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjcz6L1SoM-jCpoiyAjBN9d.ttf) format('truetype');
}
@font-face {
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 700;
  font-stretch: normal;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/notosans/v36/o-0mIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjcz6L1SoM-jCpoiyAaBN9d.ttf) format('truetype');
}
@font-face {
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 800;
  font-stretch: normal;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/notosans/v36/o-0mIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjcz6L1SoM-jCpoiyB9BN9d.ttf) format('truetype');
}
@font-face {
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 900;
  font-stretch: normal;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/notosans/v36/o-0mIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjcz6L1SoM-jCpoiyBUBN9d.ttf) format('truetype');
}
body,
html {
  font-family: "Noto Sans", PingFang TC, Microsoft JhengHei, Arial, Helvetica, sans-serif;
  font-size: 16px;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
}
input,
textarea,
select {
  padding: 0;
  border: none;
  background-color: transparent;
  outline: 0;
  margin: 0;
  font-family: inherit;
  border-radius: 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-appearance: none;
}
input:focus,
textarea:focus,
select:focus {
  -webkit-appearance: none;
}
input[type="button"] {
  cursor: pointer;
  padding: 0;
  border: none;
  background-color: transparent;
  outline: 0;
  margin: 0;
  font-family: inherit;
}
*:focus {
  outline: 0;
}
.hide-text {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  text-indent: 110%;
}
.hide-title {
  display: block;
  margin: 0;
  white-space: nowrap;
  width: 0;
  height: 0;
  position: absolute;
  overflow: hidden;
  text-indent: 2px;
}
.debug {
  outline: #f0f 1px solid;
}
.debug div,
.debug p {
  outline: #f00 1px solid;
}
@media screen and (min-width: 780px) {
  .hide-pc {
    display: none !important;
  }
}
@media screen and (max-width: 780px) {
  .hide-mb {
    display: none !important;
  }
}
@-webkit-keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fade {
  opacity: 0;
  display: none;
}
@media screen and (min-width: 780px) {
  .fade--pc {
    opacity: 0;
    display: none;
  }
}
@media screen and (max-width: 780px) {
  .fade--mb {
    opacity: 0;
    display: none;
  }
}
.faded {
  display: block;
  -webkit-animation: fade-in 0.3s;
          animation: fade-in 0.3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.wrap {
  max-width: 1800px;
  width: 90%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.link {
  color: #FF7A18;
}
.link:hover {
  color: #dc6811;
}
.btn {
  color: #FF7A18;
  display: block;
  border: #FF7A18 1px solid;
  border-radius: 0.375rem;
  text-align: center;
  padding: 8px 20px;
}
.btn:hover {
  color: #dc6811;
  border: #dc6811 1px solid;
}
.ellipsis {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ellipsis--2 {
  -webkit-line-clamp: 2;
}
.ellipsis--3 {
  -webkit-line-clamp: 3;
}
h2 {
  text-align: center;
  font-size: 2.25rem;
}
h3 {
  font-size: 1.875rem;
  line-height: 2.25rem;
  text-align: center;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
h4 {
  font-size: 1.25rem;
  line-height: 1.75rem;
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
body {
  padding-top: 77px;
}
@media (max-width: 780px) {
  body {
    padding-top: 60px;
  }
}
header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: fixed;
  background-color: #FFF;
  width: 100%;
  height: 77px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  top: 0;
  left: 0;
  z-index: 50;
}
@media (max-width: 780px) {
  header {
    height: 60px;
  }
}
header:before {
  -webkit-box-shadow: 0px 4px 10px 0px #00000026;
          box-shadow: 0px 4px 10px 0px #00000026;
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 51;
  pointer-events: none;
}
header .wrap {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .wrap #logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
header .wrap #logo .logo {
  background: #fff url('../images/logo.png') 0px 0px no-repeat;
  background-size: 100%;
  width: 138px;
  height: 40px;
  display: block;
  margin-right: 50px;
  margin-top: -5px;
  position: relative;
}
header .wrap nav .nav__mobile-icon {
  position: relative;
  width: 25px;
  height: 25px;
  right: 10%;
}
header .wrap nav .nav__mobile-icon::before {
  position: absolute;
  display: block;
  width: 18px;
  top: 5px;
  content: '';
  border-top: #EE751B 2px solid;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform-origin: top left;
          transform-origin: top left;
}
header .wrap nav .nav__mobile-icon::after {
  position: absolute;
  display: block;
  width: 18px;
  top: 18px;
  content: '';
  border-top: #EE751B 2px solid;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
}
header .wrap nav .nav__mobile-icon.active::before {
  content: "";
  width: 19px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
header .wrap nav .nav__mobile-icon.active::after {
  content: "";
  width: 19px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
header .wrap nav .mobile-menu {
  background: #fff;
  width: 100%;
  display: block;
  position: absolute;
  top: -200vh;
  left: 0;
  z-index: 50;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  padding-top: 20px;
}
header .wrap nav .mobile-menu.active {
  opacity: 1;
  top: 60px;
}
header .wrap nav .mobile-menu ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  -webkit-padding-start: 0px;
          padding-inline-start: 0px;
}
header .wrap nav .mobile-menu ul li {
  margin: 0% 5%;
  border-bottom: #FF7A18 1px solid;
}
header .wrap nav .mobile-menu ul li:first-child {
  border-top: #FF7A18 1px solid;
}
header .wrap nav .mobile-menu ul li a {
  padding: 4.6% 0;
  display: block;
  font-size: 18px;
  letter-spacing: 3px;
}
header .wrap nav .mobile-menu .mobile-menu-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
header .wrap nav .mobile-menu .mobile-menu-btn .btn {
  display: block;
  width: 30%;
  padding: 10% 0;
  margin: 3.5% 5% 7%;
}
header .wrap nav .mobile-menu .mobile-menu-btn .btn:first-child {
  background: #FF7A18;
  color: #fff;
}
#kv {
  max-width: 1920px;
  background-color: #FFDD2C;
  width: 91.66666667%;
  margin: 0 auto;
  margin-top: 36px;
  border-radius: 0.75rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-bottom: 97px;
}
@media (max-width: 780px) {
  #kv {
    height: auto;
    margin-top: 20px;
  }
}
#kv .title {
  position: relative;
  max-width: 1000px;
  margin: 140px auto 0;
  padding-bottom: 30px;
  z-index: 1;
  background: url('../images/kv-title-underline.png') center bottom no-repeat;
  background-size: auto 25px;
  font-size: 100px;
  font-weight: bold;
  text-align: center;
  display: inline-block;
  -webkit-animation: fadeIn 2s 0s;
          animation: fadeIn 2s 0s;
  -webkit-animation-fill-mode: backwards;
          animation-fill-mode: backwards;
}
@media (max-width: 780px) {
  #kv .title {
    font-size: 36px;
    background-size: auto 9px;
    padding-bottom: 10px;
    margin-top: 40px;
  }
}
#kv .title:before {
  content: '';
  position: absolute;
  display: block;
  background: url('../images/kv-title-left.png') no-repeat;
  background-size: contain;
  width: 85px;
  height: 64px;
  top: -50%;
  left: -2%;
}
@media (max-width: 780px) {
  #kv .title:before {
    height: 21.33333333px;
  }
}
#kv .title:after {
  content: '';
  position: absolute;
  display: block;
  background: url('../images/kv-title-right.png') no-repeat;
  background-size: contain;
  width: 53px;
  height: 43px;
  top: -20%;
  left: 102%;
}
@media (max-width: 780px) {
  #kv .title:after {
    height: 14.33333333px;
  }
}
#kv .sub-title {
  background: url('../images/subtitle-bg.png') center top no-repeat;
  display: block;
  width: 670px;
  line-height: 41px;
  color: #fff;
  margin: 20px auto 0;
  padding: 0;
  position: relative;
  font-size: 18px;
  font-weight: bold;
  z-index: 1;
  -webkit-animation: fadeIn 2.25s 0.75s;
          animation: fadeIn 2.25s 0.75s;
  -webkit-animation-fill-mode: backwards;
          animation-fill-mode: backwards;
}
@media (max-width: 780px) {
  #kv .sub-title {
    background-image: url('../images/subtitle-bg-m.png');
    width: 95%;
    background-size: 100% 100%;
    font-size: 14px;
    line-height: 1.4;
    padding: 10px 0;
  }
}
#kv .content {
  display: block;
  position: relative;
  margin: 20px auto 0;
  font-size: 24px;
  line-height: 1.68;
  z-index: 1;
  width: 90%;
  -webkit-animation: fadeIn 2.5s 1.5s;
          animation: fadeIn 2.5s 1.5s;
  -webkit-animation-fill-mode: backwards;
          animation-fill-mode: backwards;
}
@media (max-width: 780px) {
  #kv .content {
    font-size: 16px;
    line-height: 1.5;
    margin-top: 0;
  }
}
.mentors {
  position: relative;
  max-width: 1000px;
  width: 90%;
  margin: auto;
  margin-top: 20px;
  overflow: visible;
  -webkit-animation: fadeIn 2.75s 2.25s;
          animation: fadeIn 2.75s 2.25s;
  -webkit-animation-fill-mode: backwards;
          animation-fill-mode: backwards;
}
@media (max-width: 780px) {
  .mentors {
    width: 100%;
    margin-top: 10px;
  }
}
.mentors-bg {
  position: absolute;
  width: 100%;
  height: 100%;
}
.mentors-bg .mentor-bg {
  background: #FFDD2C center no-repeat;
  background-size: auto 100%;
}
@media (max-width: 780px) {
  .mentors-bg .mentor-bg {
    background-size: 100% 100%;
  }
}
.mentor {
  font-size: 18px;
  margin: auto;
  width: 100%;
  max-width: 16.66666667%;
}
@media (max-width: 780px) {
  .mentor {
    width: 44.44444444%;
    max-width: 200px;
  }
}
.mentor__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.mentor__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.mentor__image:before {
  display: block;
  width: 100%;
  height: 100%;
  content: '';
  background: center bottom no-repeat;
  background-size: 80%;
  margin: auto;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-property: background-size, margin-top;
  transition-property: background-size, margin-top;
}
@media (max-width: 780px) {
  .mentor__image:before {
    background-position-y: center;
    background-size: 60%;
  }
}
@media (max-width: 780px) {
  .mentor__image {
    font-size: 24px;
    pointer-events: none;
  }
}
.mentor.kv-active-slide .mentor__image {
  pointer-events: auto;
}
.mentor.kv-active-slide .mentor__image:before {
  margin-top: -5px;
  background-size: 90%;
}
@media (max-width: 780px) {
  .mentor.kv-active-slide .mentor__image:before {
    bottom: 0;
  }
}
.mentor.kv-active-slide .mentor__name {
  opacity: 1;
}
.mentor__name {
  position: absolute;
  width: 100%;
  bottom: -30px;
}
@media (max-width: 780px) {
  .mentor__name {
    opacity: 0;
    -webkit-transition-duration: 0.3s;
            transition-duration: 0.3s;
    -webkit-transition-property: opacity;
    transition-property: opacity;
  }
}
.mentor__arrow {
  position: absolute;
  top: 0;
  width: 28%;
  height: calc(100% + 30px);
  background: url(../images/arrow-left.png) 95% 40% no-repeat;
  z-index: 1;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}
.mentor__arrow--prev {
  left: 0;
}
.mentor__arrow--next {
  right: 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  background-position-y: 60%;
}
.mentor__arrow--disabled {
  opacity: 0;
}
.mentors-bg .swiper-wrapper {
  -webkit-animation: fadeIn 2.75s 2.25s;
          animation: fadeIn 2.75s 2.25s;
  -webkit-animation-fill-mode: backwards;
          animation-fill-mode: backwards;
}
.go-form {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #FF7A18;
  line-height: 47px;
  color: #FFF;
  font-size: 18px;
  border-radius: 24px 24px 0 0;
  padding-right: 15px;
  padding-left: 15px;
  -webkit-animation: fadeIn 2.75s 3.25s;
          animation: fadeIn 2.75s 3.25s;
  -webkit-animation-fill-mode: backwards;
          animation-fill-mode: backwards;
  -webkit-transition: background-color 0.5s;
  transition: background-color 0.5s;
  text-wrap: nowrap;
}
.go-form:after {
  content: '';
  background: url(../images/kv-button.png) no-repeat center;
  width: 10px;
  height: 15px;
  display: inline-block;
  vertical-align: -0.05em;
  margin-left: 0.25rem;
}
.go-form:hover {
  background-color: #000;
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
[data-topic="water-leakage"] .mentor__image:before {
  background-image: url(../images/kv-water-leakage-mentor1.png);
}
[data-topic="water-leakage"].kv-active-slide .mentor__image:before {
  background-image: url(../images/kv-water-leakage-mentor2.png);
}
[data-topic="water-leakage"].mentor-bg {
  background-image: url(../images/kv-water-leakage-bg.png);
}
@media (max-width: 780px) {
  [data-topic="water-leakage"].mentor-bg {
    background-image: url(../images/kv-water-leakage-bg-m.png);
  }
}
[data-topic="house-electricity"] .mentor__image:before {
  background-image: url(../images/kv-house-electricity-mentor1.png);
}
[data-topic="house-electricity"].kv-active-slide .mentor__image:before {
  background-image: url(../images/kv-house-electricity-mentor2.png);
}
[data-topic="house-electricity"].mentor-bg {
  background-image: url(../images/kv-house-electricity-bg.png);
}
@media (max-width: 780px) {
  [data-topic="house-electricity"].mentor-bg {
    background-image: url(../images/kv-house-electricity-bg-m.png);
  }
}
[data-topic="interior-layout"] .mentor__image:before {
  background-image: url(../images/kv-interior-layout-mentor1.png);
}
[data-topic="interior-layout"].kv-active-slide .mentor__image:before {
  background-image: url(../images/kv-interior-layout-mentor2.png);
}
[data-topic="interior-layout"].mentor-bg {
  background-image: url(../images/kv-interior-layout-bg.png);
}
@media (max-width: 780px) {
  [data-topic="interior-layout"].mentor-bg {
    background-image: url(../images/kv-interior-layout-bg-m.png);
  }
}
[data-topic="renovation-cost"] .mentor__image:before {
  background-image: url(../images/kv-renovation-cost-mentor1.png);
}
[data-topic="renovation-cost"].kv-active-slide .mentor__image:before {
  background-image: url(../images/kv-renovation-cost-mentor2.png);
}
[data-topic="renovation-cost"].mentor-bg {
  background-image: url(../images/kv-renovation-cost-bg.png);
}
@media (max-width: 780px) {
  [data-topic="renovation-cost"].mentor-bg {
    background-image: url(../images/kv-renovation-cost-bg-m.png);
  }
}
[data-topic="daylighting"] .mentor__image:before {
  background-image: url(../images/kv-daylighting-mentor1.png);
}
[data-topic="daylighting"].kv-active-slide .mentor__image:before {
  background-image: url(../images/kv-daylighting-mentor2.png);
}
[data-topic="daylighting"].mentor-bg {
  background-image: url(../images/kv-daylighting-bg.png);
}
@media (max-width: 780px) {
  [data-topic="daylighting"].mentor-bg {
    background-image: url(../images/kv-daylighting-bg-m.png);
  }
}
[data-topic="pest-control"] .mentor__image:before {
  background-image: url(../images/kv-pest-control-mentor1.png);
}
[data-topic="pest-control"].kv-active-slide .mentor__image:before {
  background-image: url(../images/kv-pest-control-mentor2.png);
}
[data-topic="pest-control"].mentor-bg {
  background-image: url(../images/kv-pest-control-bg.png);
}
@media (max-width: 780px) {
  [data-topic="pest-control"].mentor-bg {
    background-image: url(../images/kv-pest-control-bg-m.png);
  }
}
#topic {
  padding-top: 3rem;
}
#topic .wrap {
  width: 950px;
  max-width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 780px) {
  #topic .wrap {
    min-width: auto;
    width: 95%;
    -webkit-column-gap: 2.5%;
       -moz-column-gap: 2.5%;
            column-gap: 2.5%;
  }
}
#topic .wrap .topic {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #000;
  color: white;
  font-size: 1.5rem;
  padding: 10px;
  border-radius: 35px;
  max-width: 250px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 33.33%;
          flex: 1 1 33.33%;
  border: 4px solid #000;
  margin-left: 10px;
  margin-right: 10px;
  margin-top: 30px;
  -webkit-transition: background 300ms;
  transition: background 300ms;
}
@media (max-width: 780px) {
  #topic .wrap .topic {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: auto;
    margin-left: 0;
    margin-right: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 48%;
            flex: 1 1 48%;
    font-size: 1.2rem;
  }
}
#topic .wrap .topic:hover {
  background-color: #FFEE13;
  border: 4px solid #000;
  color: #27313B;
  font-weight: bold;
}
#topic .wrap .topic:hover .icon__1 {
  width: 55px;
  height: 55px;
  margin-right: 10px;
  background: url('../images/topic-icon1-hover.png') no-repeat;
}
#topic .wrap .topic:hover .icon__2 {
  width: 55px;
  height: 55px;
  margin-right: 10px;
  background: url('../images/topic-icon2-hover.png') no-repeat;
}
#topic .wrap .topic:hover .icon__3 {
  width: 55px;
  height: 55px;
  margin-right: 10px;
  background: url('../images/topic-icon3-hover.png') no-repeat;
}
#topic .wrap .topic:hover .icon__4 {
  width: 55px;
  height: 55px;
  margin-right: 10px;
  background: url('../images/topic-icon4-hover.png') no-repeat;
}
#topic .wrap .topic:hover .icon__5 {
  width: 55px;
  height: 55px;
  margin-right: 10px;
  background: url('../images/topic-icon5-hover.png') no-repeat;
}
#topic .wrap .topic:hover .icon__6 {
  width: 55px;
  height: 55px;
  margin-right: 10px;
  background: url('../images/topic-icon6-hover.png') no-repeat;
}
#topic .wrap .topic .iconSetting {
  width: 55px;
  height: 55px;
  margin-right: 10px;
}
#topic .wrap .topic .icon__1 {
  width: 55px;
  height: 55px;
  margin-right: 10px;
  background: url('../images/topic-icon1.png') no-repeat;
}
#topic .wrap .topic .icon__2 {
  width: 55px;
  height: 55px;
  margin-right: 10px;
  background: url('../images/topic-icon2.png') no-repeat;
}
#topic .wrap .topic .icon__3 {
  width: 55px;
  height: 55px;
  margin-right: 10px;
  background: url('../images/topic-icon3.png') no-repeat;
}
#topic .wrap .topic .icon__4 {
  width: 55px;
  height: 55px;
  margin-right: 10px;
  background: url('../images/topic-icon4.png') no-repeat;
}
#topic .wrap .topic .icon__5 {
  width: 55px;
  height: 55px;
  margin-right: 10px;
  background: url('../images/topic-icon5.png') no-repeat;
}
#topic .wrap .topic .icon__6 {
  width: 55px;
  height: 55px;
  margin-right: 10px;
  background: url('../images/topic-icon6.png') no-repeat;
}
#topic .wrap .topic__content {
  width: 70%;
  text-align: center;
}
.section {
  padding: 5% 5% 100px;
  background-color: #F4F4F4;
  width: 85%;
  margin: 0 auto;
  margin-top: 36px;
  border-radius: 0.75rem;
  text-align: center;
  position: relative;
}
@media (max-width: 780px) {
  .section {
    padding-bottom: 50px;
  }
}
.section.answer {
  padding: 5% 5% 5%;
  background: #FFDD2C url(../images/bg.png) center top repeat-y;
  background-size: 100% auto;
  margin-top: -30px;
  z-index: 3;
}
@media (max-width: 780px) {
  .section.answer {
    background-image: url(../images/bg-m.png);
  }
}
.section.answer:after {
  content: "";
  width: 0;
  height: 0;
  border: 25px solid;
  border-width: 47px 25px;
  border-color: transparent transparent #FFDD2C transparent;
  position: absolute;
  left: 50%;
  top: -93px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.section.answer h3 {
  font-size: 20px;
  border-left: #000 7px solid;
  text-align: left;
  padding: 0 0 0 20px;
  margin-top: 50px;
}
#pest-control .section.answer {
  margin-bottom: -55px;
}
.question {
  position: relative;
}
@media (max-width: 780px) {
  .question {
    width: 90%;
  }
}
.question.swiper,
.question .swiper-wrapper {
  overflow: visible;
}
.question .choice {
  display: block;
  background: #000000;
  color: #fff;
  width: 260px;
  font-size: 20px;
  border-radius: 20px;
  padding: 20px 0;
  margin: 10px;
  -webkit-transition: background 300ms;
  transition: background 300ms;
  cursor: pointer;
}
.question .choice:hover,
.question .choice.active {
  background: #F9ED50;
  color: #000;
}
@media (max-width: 780px) {
  .question .choice {
    background: #F9ED50;
    border-radius: 25px;
    color: #000;
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    margin: 20px auto 50px auto;
    padding: 30px 0;
    width: auto;
  }
  .question .choice.active {
    opacity: 1;
  }
}
.question__arrow {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.question__arrow--left {
  position: absolute;
  background: url('../images/arrow-left.png') center no-repeat;
  z-index: 7;
  width: 30px;
  height: 25px;
  padding: 20px 0;
  top: 30px;
  left: -30px;
}
.question__arrow--right {
  position: absolute;
  background: url('../images/arrow-left.png') center no-repeat;
  z-index: 7;
  width: 30px;
  height: 25px;
  padding: 20px 0;
  top: 30px;
  right: -30px;
  rotate: -180deg;
}
.question__arrow--disabled {
  opacity: 0;
}
.subcontent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 780px) {
  .subcontent {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.subcontent.grouped {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.grouped__title {
  font-size: 16px;
}
@media (max-width: 780px) {
  .grouped .question {
    opacity: 0;
    display: none;
  }
  .grouped .question.toggled {
    display: block;
    -webkit-animation: fade-in 0.3s;
            animation: fade-in 0.3s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
  }
}
.grouped__toggle-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin: 20px auto 10px;
  font-size: 18px;
}
.grouped__toggle {
  display: block;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0 5px;
  border: 1px solid #000;
  border-radius: 5px;
  line-height: 40px;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-property: color, background-color;
  transition-property: color, background-color;
}
.grouped__toggle.toggled {
  color: #FFF;
  background-color: #000;
}
.answer__inner {
  width: 70%;
  text-align: center;
  margin: 0 auto;
  padding: 20px;
  background: #FFF67A;
  border-radius: 30px;
}
@media (max-width: 1070px) {
  .answer__inner {
    width: 80%;
  }
}
@media (max-width: 780px) {
  .answer__inner {
    width: 90%;
  }
}
@media (max-width: 780px) {
  .answer__inner .text {
    line-height: 1.4rem;
    letter-spacing: 1px;
  }
}
.answer__toggle {
  display: block;
  margin: 5% auto;
  padding: 20px;
  text-align: center;
  background: #000;
  color: #fff;
  width: 65%;
  border-radius: 25px;
}
.answer__toggle.toggled {
  display: none;
}
.answer__articles {
  width: 80%;
  margin: auto;
}
@media (max-width: 1070px) {
  .answer__articles {
    width: 90%;
  }
}
@media (max-width: 780px) {
  .answer__articles {
    width: 100%;
  }
}
.gotop {
  display: block;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
  background: #000;
  color: #fff;
  width: 380px;
  border-radius: 25px;
  -webkit-transition: all 500ms;
  transition: all 500ms;
}
@media (max-width: 780px) {
  .gotop {
    width: 65%;
  }
}
.gotop:hover {
  background: #FF7A18;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.list {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0;
  margin: 0 0 20px;
}
@media (max-width: 780px) {
  .list {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    position: relative;
    margin-bottom: 0;
  }
}
.list__container {
  overflow: visible;
}
.list__item {
  margin: 1.66666667%;
  -webkit-box-flex: 30%;
      -ms-flex: 30% 0;
          flex: 30% 0;
  height: auto;
}
@media (max-width: 780px) {
  .list__item {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
    margin: 0;
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    height: 100%;
  }
}
@media (max-width: 780px) {
  .list__item--actived {
    opacity: 1;
  }
}
.list__item > a {
  display: block;
  height: 100%;
}
.list__inner {
  border-radius: 30px;
  background: #fff;
  font-size: 18px;
  overflow: hidden;
  height: 100%;
}
@media (max-width: 780px) {
  .list__inner {
    margin: 20px auto;
    width: 88%;
  }
}
.list__inner img {
  width: 100%;
  aspect-ratio: 1.5;
  -o-object-fit: cover;
     object-fit: cover;
}
.list__inner h4 {
  padding: 10px 20px 0;
  text-align: left;
  line-height: 1.5;
  font-size: 18px;
}
.list__inner p {
  padding: 0px 20px;
  text-align: left;
  line-height: 1.5;
}
.list__inner p.color-gray {
  color: #515151;
}
.list__inner .designer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0px 20px 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.list__inner .designer .left-content .design-photo {
  background-size: contain;
  background-position: top center;
  width: 60px;
  height: 60px;
  text-indent: -9999px;
  overflow: hidden;
  border-radius: 50px;
}
.list__inner .designer .right-content {
  margin-left: 10px;
}
.list__inner .designer .right-content p {
  font-size: 14px;
  padding: 0;
  line-height: 1;
}
.list__inner .designer .right-content p span {
  font-size: 20px;
}
.list__inner .designer p.designer-name {
  line-height: 1.5em;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.list__arrow {
  position: absolute;
  top: 0;
  width: calc(10vw + 20px);
  height: 100%;
  background: url(../images/arrow-left.png) 82% 50% no-repeat;
  z-index: 1;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}
.list__arrow--prev {
  left: -10vw;
}
.list__arrow--next {
  right: -10vw;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.list__arrow--disabled {
  opacity: 0;
}
.list__pagination {
  margin: 20px auto 35px;
}
.list__pagination .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background-color: #FFF250;
  opacity: 1;
  margin-right: 5px !important;
  margin-left: 5px !important;
}
.list__pagination .swiper-pagination-bullet-active {
  background-color: #FF7A18;
}
.professional {
  background: center no-repeat;
  background-size: contain;
  max-width: 300px;
  width: 100%;
  height: 380px;
  margin: 0 30px;
}
.interior-video a::before {
  content: ' ';
  /* 播放圖標，可以換成其他的字元或圖片 */
  background: url('../images/play.svg') no-repeat;
  width: 50px;
  height: 50px;
  position: absolute;
  /* 絕對定位來放置圖標 */
  top: 28%;
  /* 垂直居中 */
  left: 50%;
  /* 水平居中 */
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  /* 完全居中對齊 */
  font-size: 2rem;
  /* 圖標大小 */
  color: white;
  /* 圖標顏色 */
  pointer-events: none;
  /* 防止圖標阻擋對圖片的點擊操作 */
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}
#water-leakage .professional {
  background-image: url('../images/water-leakage1.png');
}
#water-leakage .professional.hover {
  background-image: url('../images/water-leakage2.png');
}
#water-leakage .professional.actived:not(.hover),
#water-leakage .professional.hover.active {
  background-image: url('../images/water-leakage3.png');
}
#house-electricity .professional {
  background-image: url('../images/house-electricity1.png');
}
#house-electricity .professional.hover {
  background-image: url('../images/house-electricity2.png');
}
#house-electricity .professional.actived:not(.hover),
#house-electricity .professional.hover.active {
  background-image: url('../images/house-electricity3.png');
}
#interior-layout .professional {
  background-image: url('../images/interior-layout1.png');
}
#interior-layout .professional.hover {
  background-image: url('../images/interior-layout2.png');
}
#interior-layout .professional.actived:not(.hover),
#interior-layout .professional.hover.active {
  background-image: url('../images/interior-layout3.png');
}
#renovation-cost .professional {
  background-image: url('../images/renovation-cost1.png');
}
#renovation-cost .professional.hover {
  background-image: url('../images/renovation-cost2.png');
}
#renovation-cost .professional.actived:not(.hover),
#renovation-cost .professional.hover.active {
  background-image: url('../images/renovation-cost3.png');
}
#daylighting .professional {
  background-image: url('../images/daylighting1.png');
}
#daylighting .professional.hover {
  background-image: url('../images/daylighting2.png');
}
#daylighting .professional.actived:not(.hover),
#daylighting .professional.hover.active {
  background-image: url('../images/daylighting3.png');
}
#pest-control .professional {
  background-image: url('../images/pest-control1.png');
}
#pest-control .professional.hover {
  background-image: url('../images/pest-control2.png');
}
#pest-control .professional.actived:not(.hover),
#pest-control .professional.hover.active {
  background-image: url('../images/pest-control3.png');
}
#form {
  position: relative;
}
@media (max-width: 780px) {
  #form h3 {
    margin-top: 50px;
  }
}
@media (max-width: 780px) {
  #form h4 {
    font-size: 16px;
    font-weight: normal;
  }
}
#form .section {
  position: relative;
  background: #FFB800;
  z-index: 2;
}
#form .section form {
  max-width: 950px;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 780px) {
  #form .section form {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
#form .section form .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  max-width: 425px;
  width: 50%;
}
@media (max-width: 780px) {
  #form .section form .form-group {
    width: 100%;
  }
}
#form .section form .form-group-inline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 780px) {
  #form .section form .form-group-inline {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    max-width: 425px;
  }
}
#form .section form .form-group-inline p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 0 10px 0;
}
#form .section form .form-group-inline label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
#form .section form .form-group-inline input[type="checkbox"],
#form .section form .form-group-inline input[type="radio"] {
  width: 20px;
  height: 20px;
  background: #fff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0 10px 0;
  font: inherit;
  color: currentColor;
  border: #FF7A18 1px solid;
  -webkit-transform: translateY(-0.075em);
          transform: translateY(-0.075em);
}
#form .section form .form-group-inline input[type="checkbox"]:checked,
#form .section form .form-group-inline input[type="radio"]:checked {
  background: #FF7A18;
  outline: #fff 1px solid;
}
#form .section form .form-group-inline input[type="checkbox"]::after,
#form .section form .form-group-inline input[type="radio"]::after {
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}
#form .section form .form-group label {
  font-size: 1rem;
  padding: 10px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
#form .section form .form-group input,
#form .section form .form-group select {
  background: #fff;
  padding: 10px;
  width: 90%;
  position: relative;
}
@media (max-width: 780px) {
  #form .section form .form-group input,
  #form .section form .form-group select {
    width: 93%;
  }
}
#form .section form .form-group input[type="checkbox"],
#form .section form .form-group input[type="radio"] {
  width: 20px;
  height: 20px;
  background: #fff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0 10px 0;
  font: inherit;
  color: currentColor;
  border: #FF7A18 1px solid;
  -webkit-transform: translateY(-0.075em);
          transform: translateY(-0.075em);
}
@media (max-width: 780px) {
  #form .section form .form-group input[type="checkbox"],
  #form .section form .form-group input[type="radio"] {
    margin-left: 0;
  }
}
#form .section form .form-group input[type="checkbox"]:checked,
#form .section form .form-group input[type="radio"]:checked {
  background: #FF7A18;
  outline: #fff 1px solid;
}
#form .section form .form-group input[type="checkbox"]::after,
#form .section form .form-group input[type="radio"]::after {
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}
#form .section form .form-group select {
  width: 95%;
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #fff url(../images/arrow.png) no-repeat 98% center;
  cursor: pointer;
}
@media (max-width: 780px) {
  #form .section form .form-group select {
    width: 99%;
  }
}
#form .section form .form-group p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 10px 0 0 0;
}
@media (max-width: 780px) {
  #form .section form .form-group p {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #form .section form .form-group p span {
    padding: 0 10px;
  }
  #form .section form .form-group p span:last-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  #form .section form .form-group p span:last-child label {
    margin-right: 20px;
  }
}
@media (max-width: 780px) and (max-width: 780px) {
  #form .section form .form-group p span:last-child label {
    padding-left: 0;
  }
}
#form .section form .submit {
  background: #fff;
  font-weight: bold;
  font-size: 18px;
  border-radius: 30px;
  text-align: center;
  padding: 25px 70px;
  -webkit-transition: all 500ms;
  transition: all 500ms;
  cursor: pointer;
  color: #000;
}
@media (max-width: 780px) {
  #form .section form .submit {
    padding: 25px 60px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    white-space: break-spaces;
  }
}
#form .section form .submit:hover {
  background: #000;
  color: #fff;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
#form .memo {
  font-size: 0.8rem;
}
#form .memo a {
  text-decoration: underline;
}
footer {
  position: relative;
}
@media (max-width: 780px) {
  footer h4 {
    text-align: left;
  }
}
footer .footer__section {
  padding: 5% 5% 100px;
  background-color: #F4F4F4;
  width: 85%;
  margin: 0 auto;
  margin-top: 36px;
  border-radius: 0.75rem;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  position: relative;
  z-index: 0;
  background: #FFDD2C;
  margin-top: -30px;
  border-radius: 0;
}
@media (max-width: 780px) {
  footer .footer__section {
    padding-bottom: 50px;
  }
}
footer .footer__section.answer {
  padding: 5% 5% 5%;
  background: #FFDD2C url(../images/bg.png) center top repeat-y;
  background-size: 100% auto;
  margin-top: -30px;
  z-index: 3;
}
@media (max-width: 780px) {
  footer .footer__section.answer {
    background-image: url(../images/bg-m.png);
  }
}
footer .footer__section.answer:after {
  content: "";
  width: 0;
  height: 0;
  border: 25px solid;
  border-width: 47px 25px;
  border-color: transparent transparent #FFDD2C transparent;
  position: absolute;
  left: 50%;
  top: -93px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
footer .footer__section.answer h3 {
  font-size: 20px;
  border-left: #000 7px solid;
  text-align: left;
  padding: 0 0 0 20px;
  margin-top: 50px;
}
#pest-control footer .footer__section.answer {
  margin-bottom: -55px;
}
@media (max-width: 780px) {
  footer .footer__section {
    margin-top: -10px;
    padding: 10%;
    width: 75%;
  }
}
@media (max-width: 780px) {
  footer .footer__section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
footer .footer__section--left-wrap {
  font-size: 14px;
  text-align: left;
}
footer .footer__section--left-wrap .lecture {
  background: url('../images/other-website.png') 0px 0px no-repeat;
  padding: 1px 0 2px 20px;
}
footer .footer__section--left-wrap .agent {
  background: url('../images/other-website.png') 0px -26px no-repeat;
  padding: 1px 0 2px 20px;
}
footer .footer__section--left-wrap .gstv {
  background: url('../images/other-website.png') 0px -51px no-repeat;
  padding: 1px 0 2px 20px;
}
footer .footer__section--left-wrap .ada-award {
  background: url('../images/other-website.png') 0px -76px no-repeat;
  padding: 1px 0 2px 20px;
}
footer .footer__section--left-wrap .leju {
  background: url('../images/other-website.png') 0px -97px no-repeat;
  padding: 1px 0 2px 20px;
}
footer .footer__section--middle-wrap {
  width: 36%;
  border-left: #FFB800 1px solid;
  border-right: #FFB800 1px solid;
}
@media (max-width: 780px) {
  footer .footer__section--middle-wrap {
    width: 100%;
    border: none;
    border-top: #FFB800 1px solid;
    border-bottom: #FFB800 1px solid;
    padding: 10% 0;
    margin: 10% 0;
  }
}
footer .footer__section ul {
  list-style: none;
  -webkit-padding-start: 0px;
          padding-inline-start: 0px;
}
footer .footer__section ul.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
footer .footer__section ul.flex .social-link {
  white-space: nowrap;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  text-indent: 110%;
  background: url('../images/social.png') no-repeat;
  background-size: cover;
  display: block;
  width: 50px;
  height: 50px;
  -webkit-transition: background-image 0.3s;
  transition: background-image 0.3s;
  border-radius: 50%;
  margin: 0 5px;
}
footer .footer__section ul.flex .social-link:hover {
  background-image: url('../images/social-hover.png');
}
footer .footer__section ul.flex .facebook {
  background-position: 0% 0%;
}
footer .footer__section ul.flex .line {
  background-position: 25% 0%;
}
footer .footer__section ul.flex .youtube {
  background-position: 50% 0%;
}
footer .footer__section ul.flex .instagram {
  background-position: 75% 0%;
}
footer .footer__section ul.flex .tiktok {
  background-position: 100% 0%;
}
footer .footer__section ul a {
  display: inline-block;
}
footer .footer__section ul a.under-line {
  text-decoration: underline;
  margin: 5px 10px;
}
@media (max-width: 780px) {
  footer .footer__section ul a {
    margin: 0 4px;
  }
}
footer .footer__copyright {
  font-size: 16px;
  position: relative;
  background: #FFB800;
  padding: 0.5% 5%;
  display: block;
  width: 85%;
  margin: 0 auto 30px;
  border-bottom-left-radius: 0.75rem;
  border-bottom-right-radius: 0.75rem;
  text-align: center;
}
@media (max-width: 780px) {
  footer .footer__copyright {
    font-size: 14px;
    line-height: 1.5;
  }
}
.quick-nav {
  position: fixed;
  z-index: 999;
  right: 4.5vw;
  bottom: 5.5vw;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  opacity: 0;
  display: none;
}
@media (max-width: 1070px) {
  .quick-nav {
    right: 1vw;
  }
}
.quick-nav__item {
  height: 3.5em;
  margin-right: 22px;
  position: relative;
}
.quick-nav__item:after {
  content: '';
  display: block;
  background: #000;
  width: 4px;
  height: 100%;
  position: absolute;
  right: -2px;
  top: 15px;
  pointer-events: none;
}
.quick-nav__item:before {
  content: '';
  display: block;
  background: #000;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  position: absolute;
  right: -6px;
  top: 10px;
  pointer-events: none;
}
.quick-nav__text {
  font-size: 14px;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-property: font-size, color;
  transition-property: font-size, color;
  line-height: 30px;
  padding-right: 5px;
  padding-left: 10px;
  border-radius: 5px;
  display: block;
  text-shadow: rgba(255, 255, 255, 0.5) 0 0 2px;
}
.quick-nav__section {
  vertical-align: middle;
  display: inline-block;
  padding-right: 38px;
  margin-right: -15px;
}
.quick-nav__section--actived .quick-nav__text,
.quick-nav__section:hover .quick-nav__text,
.quick-nav__section:active .quick-nav__text {
  font-size: 16px;
  color: #F9ED50;
  background-color: #000;
}
.quick-nav__section--actived .quick-nav__triangle:after,
.quick-nav__section:hover .quick-nav__triangle:after,
.quick-nav__section:active .quick-nav__triangle:after {
  background-color: #000;
}
.quick-nav__triangle {
  position: absolute;
  top: 0;
  right: -21px;
  width: 46px;
  height: 30px;
  overflow: hidden;
  pointer-events: none;
}
.quick-nav__triangle:after {
  content: '';
  display: block;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 20px;
  height: 20px;
  top: 5px;
  left: -10px;
  position: relative;
  border-top-right-radius: 5px;
}
.quick-nav__page-top {
  background: #000 url(../images/top-arrow.png) center 25% no-repeat;
  color: #FFF;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 22px;
  display: block;
  font-size: 12px;
  z-index: 1;
}
@media (max-width: 780px) {
  .quick-nav__page-top {
    background-image: url(../images/top-arrow-m.png);
    width: 60px;
    height: 60px;
    padding-top: 30px;
    position: fixed;
    bottom: 7.5vw;
    right: 4vw;
    z-index: 999;
    font-size: 16px;
    opacity: 0;
    display: none;
  }
}
.quick-nav__toggle-issues {
  -webkit-writing-mode: tb;
      -ms-writing-mode: tb;
          writing-mode: tb;
  position: fixed;
  bottom: 33.33vh;
  right: 0;
  z-index: 999;
  letter-spacing: 0.2em;
  background: #000;
  color: #FFF;
  padding: 20px 10px;
  border-radius: 16px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  font-size: 16px;
  opacity: 0;
  display: none;
}
@media (max-width: 780px) {
  .is-over-first-screen .quick-nav__page-top {
    display: block;
    -webkit-animation: fade-in 0.3s;
            animation: fade-in 0.3s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
  }
}
.is-over-issue-screen .quick-nav,
.is-over-issue-screen .quick-nav__toggle-issues {
  display: block;
  -webkit-animation: fade-in 0.3s;
          animation: fade-in 0.3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.is-over-issue-screen .quick-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
}
.designer__swiper {
  margin: 100px auto;
  position: relative;
  max-width: 60%;
}
.designer__swiper-title {
  font-size: 1.875rem;
  line-height: 2.25rem;
  text-align: center;
  margin-top: 0.5rem;
  margin-bottom: 2.5rem;
  font-weight: 500;
}
.designer__swiper-slide:hover .designer__img-border {
  opacity: 1;
}
.designer__swiper-slide:hover .designer__title {
  color: #FF7A18;
}
.designer__swiper-slide:hover .designer__name {
  color: #FF7A18;
}
.designer__img {
  margin: 0 auto 15px;
  height: 150px;
  width: 150px;
  border-radius: 100px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16078431);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16078431);
  -webkit-transition: 0.3s all ease-in;
  transition: 0.3s all ease-in;
  overflow: unset;
  display: block;
}
.designer__img-link {
  display: block;
  position: relative;
}
.designer__img-item {
  height: 150px;
  width: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 100px;
  -webkit-transform: scale(1) !important;
          transform: scale(1) !important;
  -o-object-position: top;
     object-position: top;
}
.designer__img-border {
  opacity: 0;
  display: block;
  border: 2px solid #FF7A18;
  width: 160px;
  height: 160px;
  position: absolute;
  top: -6.5px;
  left: -7.5px;
  border-radius: 100px;
  z-index: 100;
}
.designer__title {
  font-size: 1rem;
  color: #727272;
  width: 100%;
  /* 設定元素寬度 */
  white-space: nowrap;
  /* 禁止換行 */
  overflow: hidden;
  /* 隱藏超出容器的部分 */
  text-overflow: ellipsis;
  /* 使用省略號來表示溢出的文字 */
}
.designer__name {
  font-size: 0.85rem;
  font-weight: 400;
  color: #727272;
  line-height: 1;
}
.swiper-container {
  padding: 20px 0;
  position: static;
}
.swiper-button-next {
  width: 35px;
  height: 35px;
  z-index: 40;
  -webkit-box-shadow: 2px 2px 7px #979797;
          box-shadow: 2px 2px 7px #979797;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  right: -60px;
}
.swiper-button-next:after {
  color: #989898;
  font-size: 15px;
}
.swiper-button-prev {
  width: 35px;
  height: 35px;
  z-index: 40;
  -webkit-box-shadow: 2px 2px 7px #979797;
          box-shadow: 2px 2px 7px #979797;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  left: -60px;
}
.swiper-button-prev:after {
  font-size: 15px;
  color: #989898;
}
