@charset "UTF-8";
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

:focus {
  outline: 0;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  width: 100%;
  image-rendering: -webkit-optimize-contrast;
  display: block;
}

a, img {
  border: none;
}

a {
  text-decoration: none;
  outline: none;
}
a:hover {
  text-decoration: none;
}

@keyframes circle {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.color-orange {
  color: #e85b20;
}

.d-flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.d-grid {
  display: grid;
}

.gap10 {
  gap: 10px;
}

.h-40 {
  width: 100%;
  height: 40px;
}

/*!
 * animate.css -https://daneden.github.io/animate.css/
 * Version - 3.7.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2019 Daniel Eden
 */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}
@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  animation-name: slideInDown;
}
@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  animation-name: slideInLeft;
}
@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  animation-name: slideInRight;
}
@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  animation-name: slideInUp;
}
@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  animation-name: slideOutDown;
}
@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  animation-name: slideOutLeft;
}
@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  animation-name: slideOutRight;
}
@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  animation-name: slideOutUp;
}
@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  animation-name: rubberBand;
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

.animated.delay-1s {
  animation-delay: 1s;
}

.animated.delay-2s {
  animation-delay: 2s;
}

.animated.delay-3s {
  animation-delay: 3s;
}

.animated.delay-4s {
  animation-delay: 4s;
}

.animated.delay-5s {
  animation-delay: 5s;
}

.animated.fast {
  animation-duration: 800ms;
}

.animated.faster {
  animation-duration: 500ms;
}

.animated.slow {
  animation-duration: 2s;
}

.animated.slower {
  animation-duration: 3s;
}

@media (print), (prefers-reduced-motion: reduce) {
  .animated {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }
}
html {
  scroll-behavior: smooth;
}

a, a:hover, a:active, a:visited {
  color: #333;
}

h1 {
  text-indent: 101%;
  overflow: hidden;
  white-space: nowrap;
  position: absolute;
}

.icon {
  fill: currentColor;
}

#dmheader {
  display: none !important;
}

.container {
  font: 14px/1.8 verdana, 微軟正黑體;
}

.mainHeader {
  box-sizing: border-box;
  background: #fff;
  padding: 15px 0;
  box-shadow: 0 3px 20px 0 rgba(128, 128, 128, 0.3);
  border-bottom: 1px solid #ccc;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}
.mainHeader .d-flex {
  width: 90%;
  max-width: 1600px;
  margin: 0 auto;
}

.main {
  flex-direction: column;
}
.main .main-block {
  padding: 50px 0;
}
.main .grid-wrap {
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .main .grid-wrap {
    padding: 0 60px;
    width: 100%;
    max-width: 1500px;
  }
}
@media (min-width: 1200px) {
  .main .grid-wrap {
    width: 90%;
  }
}

#fly {
  background: #fff;
  padding-top: 120px;
}
@media (min-width: 768px) {
  #fly {
    background: url(../images/fly_bk.jpg) #f1f1f1 no-repeat bottom;
  }
}
#fly .grid-wrap {
  justify-content: flex-end;
}
@media (min-width: 1200px) {
  #fly .grid-wrap {
    background: url(../images/fly_photo.png) no-repeat left 70px;
  }
}

.tabs {
  max-width: 1000px;
  width: 100%;
}
@media (min-width: 1200px) {
  .tabs {
    margin: 70px 0;
  }
}
.tabs .tabs__top {
  gap: 10px;
}
@media (min-width: 768px) {
  .tabs .tabs__top {
    justify-content: flex-end;
    padding: 0 5px;
  }
}
.tabs .tabs__title {
  text-align: center;
  margin-bottom: 10px;
  font: 40px "M PLUS Rounded 1c", verdana;
  color: #005eb8;
  letter-spacing: 2px;
}
@media (min-width: 768px) {
  .tabs .tabs__title {
    font: bold 60px "M PLUS Rounded 1c", verdana;
  }
}
.tabs .tabs__content {
  border-top: 3px solid #005eb8;
  padding: 20px 0;
}
@media (min-width: 768px) {
  .tabs .tabs__content {
    padding: 40px 20px;
    background: #fff;
    border-radius: 0 0 10px 10px;
  }
}
.tabs .tabs-nav {
  font: bold 16px "M PLUS Rounded 1c", verdana;
  padding: 8px 10px 5px 10px;
  color: #fff;
  border-radius: 10px 10px 0 0;
  background: #00A3E0;
  cursor: pointer;
  border: none;
  letter-spacing: 1px;
}
@media (min-width: 768px) {
  .tabs .tabs-nav {
    padding: 8px 15px 5px 15px;
  }
}
.tabs .tabs-nav:hover {
  background: #33B5E6;
}
.tabs .tabs-nav.active {
  background: #005eb8;
}
.tabs .content {
  display: none;
}
.tabs .content.active {
  display: block;
}

.faq .icon-arrow {
  width: 20px;
  height: 20px;
  flex-grow: 0;
  padding-top: 3px;
  color: #999;
}
.faq .textDate {
  color: #666;
  width: 90px;
  flex-shrink: 0;
}
.faq .textContents {
  font-size: 16px;
  text-shadow: 0 0 0 #000;
}
@media (min-width: 768px) {
  .faq .textContents {
    font-size: 18px;
  }
}
.faq .textLink {
  text-decoration: underline;
}
.faq .textLink:hover {
  color: #33B5E6;
}
.faq .faq__btn {
  padding: 20px;
  justify-content: space-between;
  gap: 20px;
}
@media (min-width: 768px) {
  .faq .faq__btn {
    align-items: center;
    cursor: pointer;
  }
}
.faq .faq__btn .col-01 {
  display: flex;
}
@media (min-width: 768px) {
  .faq .faq__btn .col-01 {
    align-items: center;
  }
}
.faq .faq__content {
  display: none;
  padding: 20px 10px;
}
@media (min-width: 768px) {
  .faq .faq__content {
    padding: 20px;
  }
}
.faq .faq__content ul {
  margin-bottom: 20px;
}
.faq .faq__content ol {
  margin-left: 20px;
}
.faq .faq__content ol li {
  list-style-type: disc;
}
.faq .faq__list {
  border-bottom: 1px solid #333;
}
.faq .faq__list:hover .faq__btn {
  background: #f6f6f6;
}

.faq__btn.active {
  background: #f6f6f6;
}
.faq__btn.active .icon-arrow {
  transform: rotate(-180deg);
  color: #005eb8;
}
.faq__btn.active .textDate,
.faq__btn.active .textContents {
  color: #005eb8;
}

.submail,
.contact {
  color: #fff;
}
.submail .mainSub,
.contact .mainSub {
  font-size: 24px;
  font-weight: bold;
}
.submail .grid-wrap,
.contact .grid-wrap {
  max-width: 1000px;
}

.submail {
  background: url(../images/email_bk.jpg) #00a3e0 no-repeat -380px 0;
}
@media (min-width: 768px) {
  .submail {
    background: url(../images/email_bk.jpg) #00a3e0 no-repeat center;
  }
}
.submail .grid__content {
  gap: 10px;
  flex-direction: column;
}
@media (min-width: 768px) {
  .submail .grid__content {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }
}
.submail .textContents {
  font-size: 15px;
}
.submail .submail__btn {
  border-radius: 5px;
  color: #fff;
  text-align: center;
  font-size: 15px;
  padding: 5px 10px;
  border: 1px solid #fff;
  min-width: 120px;
}
.submail .submail__btn:hover {
  background: #fff;
  color: #00a3e0;
}

.contact {
  background: url(../images/phone_bk.jpg) #005eb8 no-repeat -380px bottom;
}
@media (min-width: 768px) {
  .contact {
    background: url(../images/phone_bk.jpg) #005eb8 no-repeat center;
  }
}
.contact .textSub {
  font-size: 15px;
  color: #FFD133;
}
.contact .grid__content {
  gap: 20px 40px;
  flex-wrap: wrap;
}

.scrollbar {
  overflow-y: auto;
  margin-bottom: 20px;
}
.scrollbar::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
.scrollbar::-webkit-scrollbar-track {
  background: #EBEBEB;
}
.scrollbar::-webkit-scrollbar-thumb {
  border-radius: 25px;
  background: #b8b8b8;
}
.scrollbar::-webkit-scrollbar-thumb:hover {
  background: #b8b8b8;
}

.schedule-wrap,
.calendar-wrap {
  box-sizing: border-box;
  width: 100%;
  border: 1px solid #94BEE8;
}
.schedule-wrap th, .schedule-wrap td,
.calendar-wrap th,
.calendar-wrap td {
  box-sizing: border-box;
  border: 1px solid #94BEE8;
  min-width: 80px;
}
.schedule-wrap .caption,
.calendar-wrap .caption {
  background: #669ED4;
  color: #fff;
}

.schedule-title {
  background: #5B8EBE;
  color: #fff;
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 80px;
}

.schedule-wrap th, .schedule-wrap td {
  vertical-align: top;
  padding: 8px;
}
.schedule-wrap .sm {
  width: 80px;
}
.schedule-wrap .md {
  width: 110px;
}

.calendar-wrap th, .calendar-wrap td {
  width: 14.2857142857%;
  padding: 8px;
}
.calendar-wrap .calendar__num {
  color: #d5d5d5;
  font: bold 26px/1 verdana;
}
.calendar-wrap .calendar__text {
  gap: 8px;
}
.calendar-wrap .calendar__text span {
  font-size: 14px;
  border-radius: 5px;
  background: #FFF5E8;
  padding: 5px 10px;
}
.calendar-wrap th.sat, .calendar-wrap th.sun {
  background: #5B8EBE;
}
.calendar-wrap td.sat .calendar__num, .calendar-wrap td.sun .calendar__num {
  color: #FF9E1B;
}

#back-top,
#gotop {
  right: 50px !important;
  left: unset !important;
}

.faq__pic {
  gap: 10px;
  flex-direction: column;
}
@media (min-width: 768px) {
  .faq__pic {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.faq__pic figure {
  border-radius: 10px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .faq__pic figure {
    width: calc((100% - 10px) / 2);
  }
}

.wh-auto {
  flex: 0 0 auto;
}

.QR {
  margin-top: 20px;
  justify-content: flex-end;
}
.QR .wh-auto {
  width: 100px;
  height: 100px;
}