@charset "UTF-8";
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 180%;
  color: #585858;
  padding-top: 130px;
  padding-bottom: 64px;
}
@media screen and (min-width: 768px) {
  body {
    padding-top: 70px;
    padding-bottom: 0;
  }
}

.place-link {
  color: #585858;
}
.place-link:hover {
  color: #000 !important;
}

.pretty {
  position: relative;
  display: inline-block;
  line-height: 1;
}
.pretty input {
  position: absolute;
  left: 0;
  top: 0;
  min-width: 1em;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0;
  margin: 0;
  padding: 0;
  cursor: pointer;
}
.pretty svg {
  margin: 0;
  text-align: center;
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  position: absolute;
  font-size: 1em;
  width: calc(1em + 2px);
  height: calc(1em + 2px);
  left: 0;
  z-index: 1;
  text-align: center;
  line-height: normal;
  top: calc(0% - (100% - 1em) - 8%);
  border: 1px solid transparent;
  opacity: 0;
}
.pretty label {
  position: initial;
  display: inline-block;
  font-weight: 400;
  margin: 0;
  text-indent: 1.5em;
  min-width: calc(1em + 2px);
}
.pretty label:before, .pretty label:after {
  content: "";
  width: calc(1em + 2px);
  height: calc(1em + 2px);
  display: block;
  box-sizing: border-box;
  border-radius: 0;
  border: 1px solid transparent;
  z-index: 0;
  position: absolute;
  left: 0;
  top: calc(0% - (100% - 1em) - 8%);
  background-color: transparent;
  border-radius: 20%;
}
.pretty label:before {
  border-color: #bdc3c7;
}
.pretty input:checked ~ .state svg {
  opacity: 1;
  color: #fff;
  stroke: #fff;
}
.pretty input:checked ~ .state label:after {
  background-color: #2FADCF !important;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 15px;
}
.select2-container .select2-selection--single {
  height: 40px;
  border: none;
  background: #F5F5F5;
}
.select2-container .select2-selection--single .select2-selection__rendered {
  line-height: 40px;
}
.select2-container .select2-selection--single .select2-selection__arrow {
  top: 6px;
}
.select2-container .select2-results__option--highlighted.select2-results__option--selectable {
  background: #2FADCF;
}
.select2-container.select2-container--open .select2-dropdown--below, .select2-container.select2-container--open .select2-dropdown--above {
  border-radius: 4px;
  transform: translateY(5px);
  border: 1px solid #dddddd;
}
.select2-container.select2-container--open .select2-dropdown--below.select2-dropdown--above, .select2-container.select2-container--open .select2-dropdown--above.select2-dropdown--above {
  transform: translateY(-5px);
}

.datepicker-cell.selected, .datepicker-cell.selected:hover {
  background-color: #2FADCF;
}

a {
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

section {
  padding: 40px 0;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  section {
    padding: 70px 0;
  }
}

h2 {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 140%;
  color: #0C3178;
  margin: 0 0 30px 0;
}
@media screen and (min-width: 768px) {
  h2 {
    text-align: left;
    font-size: 32px;
  }
}

p {
  margin-bottom: 1em;
}
p:last-child {
  margin-bottom: 0;
}

a {
  text-decoration: none;
}

.container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}

.pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .m {
    display: none;
  }
}

.vid-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}
.vid-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.readmore {
  text-align: center;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .readmore {
    margin-bottom: 0;
    justify-content: flex-start;
  }
}
.readmore a {
  color: #0C3178;
  padding: 2px 24px;
  border: 1px solid #0C3178;
  border-radius: 30px;
  display: block;
  transition: all 0.4s;
}
.readmore a:hover {
  background: #0C3178;
  color: #fff;
}

header {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
header > div {
  position: relative;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
@media screen and (min-width: 1200px) {
  header > div {
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.25);
  }
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  height: 70px;
}
header .container .brand-logo img {
  height: 25px;
}
@media screen and (min-width: 1200px) {
  header .container .brand-logo img {
    height: 34px;
  }
}
header .container nav {
  display: none;
}
@media screen and (min-width: 1200px) {
  header .container nav {
    display: block;
  }
}
header .container nav > ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .container nav > ul a {
  line-height: 16px;
  padding: 27px 3px;
}
header .container nav li {
  position: relative;
  white-space: nowrap;
}
header .container nav li:hover ul {
  display: block;
}
header .container nav ul ul {
  display: none;
  position: absolute;
  bottom: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  min-width: 100%;
  transform: translateY(100%);
  background: #fff;
  padding: 10px 0 15px 0;
}
header .container nav ul ul a {
  margin: 0;
  padding: 10px;
  transition: all 0.2s;
}
header .container nav a {
  color: #585858;
  display: block;
  padding: 6px 3px;
  margin: 0 6px;
  font-weight: 500;
  transition: all 0.2s;
}
header .container nav a:hover, header .container nav a.active {
  color: #2FADCF;
}
header .container .social {
  display: none;
}
@media screen and (min-width: 1200px) {
  header .container .social {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
header .container .social a {
  display: block;
  padding: 3.5px 0;
  margin: 0 3.5px;
  opacity: 0.85;
  transition: all 0.2s;
}
header .container .social a:hover {
  opacity: 1;
}
header .container .act {
  display: flex;
}
header .container .order {
  background: #2FADCF;
  color: #fff;
  padding: 3px 16px;
  border-radius: 30px;
  opacity: 0.85;
  transition: all 0.2s;
}
@media screen and (min-width: 1200px) {
  header .container .order {
    padding: 5px 20px;
  }
}
header .container .order:hover {
  opacity: 1;
}
header .container .mobile-ham {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
  margin-left: 20px;
  cursor: pointer;
}
@media screen and (min-width: 1200px) {
  header .container .mobile-ham {
    display: none;
  }
}
header .container .mobile-ham svg {
  width: 29px;
}
header .container .mobile-ham .mobile-ham-close-icon {
  display: none;
}
header .container .mobile-ham.open .mobile-ham-icon {
  display: none;
}
header .container .mobile-ham.open .mobile-ham-close-icon {
  display: block;
}
header .mob-order {
  background: #2FADCF;
  color: #fff;
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 2px;
}
@media screen and (min-width: 768px) {
  header .mob-order {
    display: none;
  }
}

#mob-nav {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: calc(100% - 0px);
  z-index: 999;
}
@media screen and (min-width: 1200px) {
  #mob-nav {
    display: none !important;
  }
}
#mob-nav .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0b0b0b;
  opacity: 0;
  transition: opacity 0.25s;
}
#mob-nav .nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 260px;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
  overflow-y: auto;
  transform: translateX(270px);
  transition: transform 0.2s;
}
#mob-nav.open .overlay {
  opacity: 0.7;
}
#mob-nav.open .nav-panel {
  transform: translateX(0);
}
#mob-nav nav {
  padding: 30px 0;
}
#mob-nav nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#mob-nav nav li a {
  color: hsla(0, 0%, 40%, 0.85);
  padding: 15px 0 15px 20px;
  display: block;
  font-size: 15px;
  transition: all 0.3s;
  width: calc(100% - 50px);
}
#mob-nav nav li a:hover {
  color: hsla(0, 0%, 7%, 0.85);
}
#mob-nav nav > ul li {
  border-bottom: 1px solid #ececec;
}
#mob-nav nav > ul li ul {
  display: none;
  padding-left: 20px;
}
#mob-nav nav > ul li ul li a {
  font-size: 14px;
  padding: 15px 20px;
  width: 100%;
  line-height: 1.4;
}
#mob-nav nav > ul li.open {
  background: rgba(0, 0, 0, 0.05);
}
#mob-nav nav > ul > li:hover {
  background: rgba(0, 0, 0, 0.05);
}
#mob-nav .social {
  display: flex;
  justify-content: center;
  padding-bottom: 30px;
}
#mob-nav .social a {
  padding: 10px 6px;
}
#mob-nav .social img {
  width: 34px;
  filter: brightness(0) invert(0);
  opacity: 0.4;
}
#mob-nav .has-children {
  position: relative;
}
#mob-nav .has-children:after {
  content: "";
  position: absolute;
  top: 23px;
  right: 15px;
  width: 15px;
  height: 15px;
  background-image: url(../img/nav-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  transform-origin: center center;
  transition: transform 0.4s;
}
#mob-nav .has-children.open:after {
  transform: rotate(180deg);
}

footer {
  background: #000;
  color: #fff;
  padding: 40px 0 100px 0;
}
@media screen and (min-width: 768px) {
  footer {
    padding: 40px 0;
  }
}
@media screen and (min-width: 768px) {
  footer .container > div {
    display: flex;
    justify-content: space-between;
    max-width: 1016px;
  }
}
footer .logo img {
  margin-bottom: 30px;
}
footer .social {
  text-align: center;
  display: flex;
  justify-content: center;
}
footer .social img {
  margin: 0 5px;
  width: 40px;
  filter: brightness(0) invert(1);
  transition: all 0.2s;
}
@media screen and (min-width: 768px) {
  footer .social img {
    opacity: 0.8;
  }
}
footer .social img:hover {
  opacity: 1;
}
footer .grid {
  display: none;
}
@media screen and (min-width: 768px) {
  footer .grid {
    display: block;
  }
}
footer .grid:nth-child(1) {
  display: block;
}
footer .grid .title {
  color: #FFF;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px; /* 125% */
  letter-spacing: 2.4px;
  margin-bottom: 20px;
}
footer .grid .link {
  color: #FFF;
  line-height: 26px; /* 162.5% */
  letter-spacing: 1.6px;
  opacity: 0.5;
  transition: all 0.2s;
}
footer .grid .link:hover {
  opacity: 1;
}
footer .copyright {
  display: block !important;
  margin-top: 40px;
  color: gray;
  font-size: 14px;
}

.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.5;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #fff;
  opacity: 1;
}

#fixed-social {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 64px;
  background: #2FADCF;
  box-shadow: 0px -3px 4px 0px rgba(12, 49, 120, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99;
}
@media screen and (min-width: 768px) {
  #fixed-social {
    background: none;
    right: 50px;
    bottom: 100px;
    width: 40px;
    height: auto;
    display: block;
    box-shadow: none;
  }
}
#fixed-social svg {
  width: 40px;
  height: auto;
  margin: 0 10px;
  display: block;
}
@media screen and (min-width: 768px) {
  #fixed-social svg {
    margin: 0 0 10px 0;
  }
}
#fixed-social .gotop {
  cursor: pointer;
}
#fixed-social .gotop svg {
  width: 35px;
  margin: 5px auto 0 auto;
}

#breadcrumb {
  color: #585858;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding-bottom: 0;
}
#breadcrumb a {
  color: #585858;
}
#breadcrumb a:hover {
  text-decoration: underline;
}
#breadcrumb .active {
  color: #2FADCF;
  font-weight: 500;
}

#page-banner {
  padding: 0;
  position: relative;
  overflow: hidden;
}
#page-banner img {
  min-height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}
#page-banner .text-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10px;
}
#page-banner .text-wrapper h1 {
  letter-spacing: 2px;
  font-size: 20px;
  margin: 0;
}
@media screen and (min-width: 768px) {
  #page-banner .text-wrapper h1 {
    font-size: 30px;
  }
}
#page-banner .text-wrapper .desc {
  font-size: 14px;
  line-height: 150%;
}
@media screen and (min-width: 768px) {
  #page-banner .text-wrapper .desc {
    font-size: 16px;
    margin-top: 10px;
  }
}

#order .tags {
  text-align: center;
  color: #2FADCF;
  font-size: 18px;
  font-weight: 700;
  margin: 0 30px;
}
@media screen and (min-width: 768px) {
  #order .tags {
    font-size: 20px;
  }
}
#order .tags span {
  white-space: nowrap;
}
#order .order-title {
  border-radius: 30px;
  background: #2FADCF;
  color: #fff;
  padding: 10px 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  max-width: 200px;
  margin: 0 auto 30px auto;
  transition: all 0.2s;
}
#order .order-title svg {
  width: 30px;
  height: auto;
}
#order a .title:hover {
  background: #2996b3;
}
#order .row {
  margin: 0 -20px;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
}
#order .col, #order .col-2 {
  width: 100%;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  #order .col-2 {
    width: 50%;
  }
}
#order .form-group {
  margin-bottom: 30px;
}
#order .form-group > label {
  display: block;
}
#order .form-group > label span {
  color: #2FADCF;
}
#order .form-group input, #order .form-group textarea {
  display: block;
  width: 100%;
  border: none;
  background: #F5F5F5;
  font-size: 16px;
  line-height: 20px;
  padding: 10px 15px;
  border-radius: 6px;
}
#order .form-group input:focus, #order .form-group textarea:focus {
  outline: none;
}
#order .form-group textarea {
  resize: none;
}
#order form button.submit {
  color: #fff;
  background: #2FADCF;
  border: 1px solid #2FADCF;
  padding: 7px 50px;
  margin-bottom: 20px;
  border-radius: 40px;
  font-size: 18px;
  display: inline-block;
  cursor: pointer;
  margin-top: 30px;
  transition: all 0.2s;
}
#order form button.submit:hover {
  background: #2996b3;
}
#order .notice, #order .agree {
  font-size: 15px;
  /* 為了可以放連結 */
  /* Make pretty checkbox handle links in labels, thanks goes to pmonte, for a pointer in the right direction */
}
@media screen and (min-width: 768px) {
  #order .notice, #order .agree {
    text-align: center;
  }
}
#order .notice .notice-title, #order .agree .notice-title {
  color: #2FADCF;
  border: 1px solid #2FADCF;
  padding: 7px 50px;
  margin-bottom: 20px;
  border-radius: 40px;
  font-size: 18px;
  display: inline-block;
}
#order .notice span.blue, #order .agree span.blue {
  color: #2FADCF;
}
#order .notice .pretty label, #order .agree .pretty label {
  line-height: 180%;
  text-indent: 0;
  padding-left: 1.5em;
}
#order .notice .pretty label:after, #order .notice .pretty label:before,
#order .notice .pretty.p-svg svg, #order .agree .pretty label:after, #order .agree .pretty label:before,
#order .agree .pretty.p-svg svg {
  top: 0.4em;
}
#order .notice .pretty label, #order .agree .pretty label {
  white-space: normal;
  text-indent: unset;
  padding-left: 1.5em; /* Change to your preferred dimensions */
}
#order .notice .pretty a, #order .agree .pretty a {
  z-index: 3;
  position: relative;
}
#order .agree {
  margin-top: 30px;
}
#order .agree a {
  color: #2FADCF;
}
#order .agree a:hover {
  text-decoration: underline;
}

#success-case .content {
  padding: 20px 20px 30px 20px;
}
@media screen and (min-width: 768px) {
  #success-case .content {
    padding: 14px;
    padding: 20px;
  }
}
#success-case .content .date {
  color: #979797;
  font-weight: 700;
  line-height: 28px; /* 175% */
  text-align: center;
}
@media screen and (min-width: 768px) {
  #success-case .content .date {
    text-align: left;
  }
}
#success-case .content .title {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px; /* 140% */
  margin-bottom: 14px;
}
#success-case .readmore {
  margin: 0;
}

article .photo {
  overflow: hidden;
  border-top-right-radius: 30px;
  border-bottom-left-radius: 30px;
  margin-bottom: 10px;
  height: 0;
  padding-top: 56.25%;
  position: relative;
}
article .photo img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
article .time {
  color: #585858;
  font-size: 15px;
}
article h3 {
  margin: 0;
  color: #0C3178;
  font-size: 18px;
  font-weight: 700;
  line-height: 133.333%;
  margin-bottom: 2px;
}
article .desc {
  color: #585858;
  font-size: 15px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  line-height: 24px;
  height: 48px;
}
article .readmore {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
}
article .readmore a {
  display: block;
  background: #0C3178;
  color: #fff;
  border-radius: 10px;
  transition: all 0.2s;
  padding: 6px 10px;
  margin-top: 13px;
  width: 160px;
}
article .readmore a:hover {
  background: #082253;
}
article .tag {
  text-align: left;
  font-size: 14px;
  color: #2FADCF;
}

@media screen and (min-width: 768px) {
  #list .wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    margin: 0 -15px;
  }
}
#list .empty {
  text-align: center;
  font-size: 20px;
  min-height: calc(100vh - 525px);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  #list .empty {
    min-height: calc(100vh - 660px);
  }
}
#list article {
  display: block;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  #list article {
    margin-bottom: 60px;
    width: 50%;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
  }
}
@media screen and (min-width: 992px) {
  #list article {
    width: 33.333%;
  }
}

#pagination {
  display: flex;
  justify-content: center;
  margin-top: 100px;
}
#pagination li {
  margin-bottom: 5px;
}
#pagination a, #pagination span {
  background: #F0F0F0;
  border: none;
  color: #b4aeae;
  box-shadow: none;
  font-size: 16px;
}
#pagination a:hover, #pagination span:hover {
  background: #e3e1e1;
}
#pagination .current, #pagination .current:hover {
  background: #2FADCF;
  color: #fff;
}
#pagination li.disabled {
  display: none;
}

#detail .container {
  max-width: 960px;
}
#detail .photo {
  overflow: hidden;
  border-top-right-radius: 30px;
  border-bottom-left-radius: 30px;
}
#detail .photo img {
  width: 100%;
}
#detail .time {
  text-align: center;
  margin: 15px 0;
}
#detail h1 {
  text-align: center;
  color: #0C3178;
  margin: 0 0 20px 0;
  font-size: 24px;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  #detail h1 {
    font-size: 32px;
  }
}
#detail h2 {
  margin: 1rem 0;
  color: #0C3178;
  font-weight: 700;
  font-size: 20px;
}
#detail h2 a {
  color: #2FADCF;
  text-decoration: none;
}
#detail h2 a:hover {
  text-decoration: underline;
}
#detail p, #detail figure {
  margin: 1rem 0;
}
#detail p a, #detail figure a {
  color: #2FADCF;
  text-decoration: none;
}
#detail p a:hover, #detail figure a:hover {
  text-decoration: underline;
}
#detail figure {
  width: 100%;
  max-width: 600px;
  display: block;
  margin: 1.2rem auto;
}
#detail figure img {
  width: 100%;
}
#detail figure figcaption {
  text-align: center;
  font-size: 15px;
  color: #999999;
}
#detail .back {
  display: block;
  background: #0C3178;
  color: #fff;
  border-radius: 10px;
  transition: all 0.2s;
  padding: 6px 10px;
  margin: 100px auto 0 auto;
  width: 160px;
  text-align: center;
  cursor: pointer;
}
#detail .back:hover {
  background: #082253;
}
#detail .slider {
  padding: 0 40px;
  position: relative;
}
@media screen and (min-width: 768px) {
  #detail .slider {
    padding: 0 50px;
  }
}
#detail .related {
  padding-top: 100px;
}
#detail .related .related-title {
  font-size: 20px;
  text-align: center;
  color: #0C3178;
  font-weight: 700;
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}
#detail .related .related-title span {
  border-bottom: 2px solid;
  display: block;
  padding: 0 30px 4px 30px;
}
#detail .related .swiper-wrapper {
  align-items: stretch;
}
#detail .related .swiper-slide {
  height: auto;
}
#detail .related article {
  height: 100%;
  display: flex;
  flex-direction: column;
}
#detail .swiper-button-next, #detail .swiper-button-prev {
  margin: 0;
  width: 30px;
  height: 30px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
@media screen and (min-width: 768px) {
  #detail .swiper-button-next, #detail .swiper-button-prev {
    width: 36px;
    height: 36px;
    top: 120px;
  }
}
#detail .swiper-button-next:after, #detail .swiper-button-prev:after {
  display: none;
}
#detail .swiper-button-next.swiper-button-prev, #detail .swiper-button-prev.swiper-button-prev {
  background-image: url(../img/home/arrow-prev.svg);
  left: 0;
}
#detail .swiper-button-next.swiper-button-next, #detail .swiper-button-prev.swiper-button-next {
  background-image: url(../img/home/arrow-next.svg);
  right: 0;
}/*# sourceMappingURL=posts.css.map */