@charset "UTF-8";

html,
body {
  font-family: "Noto Sans TC", sans-serif, Arial, "Microsoft JhengHei", Helvetica;
  font-size: 16px;
  line-height: 1.5;
  color: #000;
}

a,
button {
  padding: 0;
  background: none;
  border: none;
  outline: none;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
   * Remove the gap between audio, canvas, iframes,
   * images, videos and the bottom of their containers:
   * https://github.com/h5bp/html5-boilerplate/issues/440
   */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
  resize: vertical;
}

/*
 * Browser Upgrade Prompt
 */

.browserupgrade {
  position: absolute;
  top: 0;
  display: block;
  width: 100%;
  margin: 0.2em 0;
  background: #ccc;
  padding: 0.2em 0;
}

body {
  overflow-x: hidden;
}

.container {
  overflow: hidden;
}

/* ------------------------------- Header ------------------------------- */

.header {
  position: fixed;
  top: 0;
  left: 0;
  box-sizing: border-box;
  width: 100%;
  padding: 30px 20px;
  box-shadow: 0px 2px 15px 0 rgba(3, 3, 3, 0.45);
  background-color: #fff;
  z-index: 99;
}

.header-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
}

.header-item {
  position: relative;
}

.header-l1 {
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}

.header-l1 i {
  flex: 0 0 auto;
}

.header-l1 img {
  height: 36px;
}

.header-l1 span {
  flex: 0 0 auto;
  font-size: 20px;
  letter-spacing: 1px;
  color: #d97902;
}

.header-collapse {
  display: none;
}

.header-child {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
  box-sizing: border-box;
  display: none;
  width: 155px;
  padding-top: 30px;
  text-align: center;
}

.header-child div {
  padding: 16px 28px;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  background-color: rgba(255, 255, 255, 0.7);
}

.header-l2 {
  display: block;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1.35px;
  color: #d97902;
  text-decoration: none;
}

.header-l2 + .header-l2 {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #fff;
}

.header-burger {
  display: none;
}

@media only screen and (min-width: 1024px) {
  .header-item:hover .header-child,
  .header-item:focus .header-child {
    display: block;
  }

  .header-item:hover .header-l1 span::after {
    width: 100%;
  }

  .header-l1 span {
    position: relative;
  }

  .header-l1 span::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #000;
    transition: 0.3s;
  }

  .header-l2 {
    transition: 0.3s;
  }

  .header-l2:hover {
    color: #000;
  }
}

@media only screen and (max-width: 1279px) {
  .header {
    padding: 20px;
  }

  .header-wrap {
    gap: 34px;
  }

  .header-l1 img {
    height: 25px;
  }

  .header-l1 span {
    font-size: 16px;
    letter-spacing: 0;
  }

  .header-child {
    width: 130px;
    padding-top: 20px;
  }

  .header-child div {
    padding: 14px 22px;
  }

  .header-l2 {
    font-size: 14px;
  }

  .header-l2 + .header-l2 {
    margin-top: 10px;
    padding-top: 10px;
  }
}

@media only screen and (max-width: 1023px) {
  .header {
    display: flex;
    justify-content: flex-end;
    padding: 10px;
  }

  .header-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px;
    background-color: #fff;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    overflow-y: auto;
  }

  .-menuOpen .header-nav {
    opacity: 1;
    pointer-events: visible;
  }

  .header-nav::before,
  .header-nav::after {
    content: "";
    display: block;
    height: 100%;
  }

  .header-wrap {
    flex-direction: column;
    gap: 44px;
    width: 100%;
  }

  .header-item {
    width: 100%;
  }

  .header-item + .header-item {
    position: relative;
  }

  .header-item + .header-item::before {
    content: "";
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 1px;
    background-color: #fde1e0;
  }

  .header-l1 i {
    width: 27px;
    text-align: center;
  }

  .header-collapse {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 27px;
    height: 27px;
    line-height: 27px;
    cursor: pointer;
  }

  .header-collapse::before {
    content: "＋";
  }

  .header-child {
    position: static;
    display: none;
    width: 100%;
    margin-top: 20px;
    padding-top: 0;
    text-align: left;
    transform: none;
  }

  .header-child div {
    padding: 0 20px;
  }

  .header-l2 {
    padding: 8px 12px;
    border-radius: 20px;
    background-color: #fdf9ef;
  }

  .header-l2 + .header-l2 {
    margin-top: 8px;
  }

  .header-item.-open .header-collapse::before {
    content: "－";
  }

  .header-burger {
    display: block;
  }
}

.burger {
  padding: 10px;
  cursor: pointer;
}

.burger-box {
  position: relative;
  width: 20px;
  height: 20px;
}

.burger-line {
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  border-radius: 3px;
  display: block;
  background-color: #000;
  transition: 0.3s;
}

.burger-line.-top {
  top: 0;
}

.burger-line.-mid {
  top: 50%;
}

.burger-line.-bottom {
  top: 100%;
}

.-menuOpen .burger-line.-top {
  top: 50%;
  transform: translate(0, -50%) rotate(45deg);
}

.-menuOpen .burger-line.-mid {
  opacity: 0;
}

.-menuOpen .burger-line.-bottom {
  top: 50%;
  transform: translate(0, -50%) rotate(-45deg);
}

/* ------------------------------- Main ------------------------------- */

.main {
  padding-top: 96px;
}

@media only screen and (max-width: 1279px) {
  .main {
    padding-top: 67px;
  }
}

@media only screen and (max-width: 1023px) {
  .main {
    padding-top: 60px;
  }
}

/* ------------------------------- Footer ------------------------------- */

.footer {
  padding: 14px;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 1.5px;
  text-align: center;
  color: #020202;
  background-color: #fdf9ef;
}

@media only screen and (max-width: 1023px) {
  .footer {
    padding: 10px;
    font-size: 12px;
    letter-spacing: 1px;
  }
}

/* ------------------------------- Floating tool ------------------------------- */

.float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 50;
}

.float button,
.float a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  border-radius: 50%;
  background-color: rgba(166, 166, 166, 0.6);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  cursor: pointer;
}

@media only screen and (min-width: 1024px) {
  .float button,
  .float a {
    transition: 0.3s;
  }

  .float button:hover,
  .float a:hover {
    background-color: #a6a6a6;
  }
}

@media only screen and (max-width: 767px) {
  .float {
    bottom: 5px;
    right: 5px;
    gap: 0;
  }

  .float button,
  .float a {
    width: 40px;
    height: 40px;
    font-size: 12px;
    transform: scale(0.9);
  }
}

.banner {
  position: relative;
  overflow: hidden;
}

.banner-bg {
  height: 430px;
}

.banner-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.banner-text {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
}

.banner-text img {
  height: 100%;
}

@media only screen and (max-width: 1279px) {
  .banner-bg {
    height: 330px;
  }
}

@media only screen and (max-width: 1023px) {
  .banner-bg {
    height: 240px;
  }
}

.moreBtn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 4px 16px;
  font-size: 15px;
  letter-spacing: 1.5px;
  color: #fff;
  text-decoration: none;
  background-color: #d97665;
}

.moreBtn::after {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 13px;
  margin-top: 1px;
  background: url(../image/icon/arrow-wt.svg) no-repeat center/contain;
}

.moreBtn.-bu {
  background-color: #8a94c0;
}

.moreBtn.-br {
  background-color: #967f42;
}

@media only screen and (min-width: 1024px) {
  .moreBtn {
    transition: 0.3s;
  }

  .moreBtn::after {
    transition: 0.3s;
  }

  .moreBtn:hover {
    background-color: #8a2b1b;
  }

  .moreBtn:hover::after {
    transform: translateX(60%);
  }

  .moreBtn:hover.-bu {
    background-color: #3e4b83;
  }

  .moreBtn:hover.-br {
    background-color: #775702;
  }
}

@media only screen and (max-width: 1023px) {
  .moreBtn {
    gap: 6px;
    padding: 3px 13px;
    font-size: 13px;
    letter-spacing: 1px;
  }

  .moreBtn::after {
    width: 6px;
    height: 10px;
  }
}

.icon {
  display: inline-block;
  vertical-align: middle;
  width: 26px;
  height: 26px;
  margin: 0 4px;
  font-size: 0;
  border-radius: 50%;
  background-color: #d95c93;
}

.icon img {
  width: 100%;
}

@media only screen and (min-width: 1024px) {
  .icon:hover {
    background-color: #cf3378;
  }
}

@media only screen and (max-width: 1023px) {
  .icon {
    width: 22px;
    height: 22px;
    margin: 0 2px;
  }
}

.btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  font-size: 16px;
  letter-spacing: 0.4px;
  color: #fff;
  text-decoration: none;
  background-color: #d95c93;
  cursor: pointer;
}

.btn::before {
  content: "";
  flex: 0 0 auto;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #fff url(../image/icon/arrow.svg) no-repeat center/contain;
}

.btn span {
  margin-bottom: 1px;
}

.btn[data-collapse]::before {
  transform: rotate(90deg);
  transition: 0.3s;
}

.-open .btn::before {
  transform: rotate(-90deg);
}

@media only screen and (min-width: 1024px) {
  .btn {
    transition: 0.3s;
  }

  .btn::before {
    transition: background-image 0.3s;
  }

  .btn:hover {
    box-shadow: 0 0 0 2px #d95c93;
    color: #d95c93;
    background-color: #fff;
  }

  .btn:hover::before {
    background-image: url(../image/icon/arrow-hover.svg);
  }
}

@media only screen and (max-width: 1023px) {
  .btn {
    gap: 4px;
    padding: 5px 13px;
    font-size: 14px;
  }

  .btn::before {
    width: 20px;
    height: 20px;
  }
}

.block {
  padding: 80px 20px 100px;
}

.block-wrap {
  max-width: 1100px;
  margin: 0 auto;
}

.block-title {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
}

.block-title img {
  flex: 0 0 auto;
  width: 48px;
}

.block-title span {
  flex: 0 0 auto;
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 1.4px;
  color: #d97902;
}

.block-title span.-bk {
  color: #282828;
}

.block-title::after {
  content: "";
  flex: 1;
  height: 2px;
  margin: 2px 0 0 5px;
  background-color: #282828;
}

.block-title + .block-content {
  margin-top: 50px;
}

.block.-og {
  background: url(../image/bg/og.jpg) no-repeat center/cover;
}

.block.-gn {
  background: url(../image/bg/gn.jpg) no-repeat center/cover;
}

.block + .block.-close {
  padding-top: 0;
}

@media only screen and (max-width: 1023px) {
  .block {
    padding: 60px 20px 70px;
  }

  .block-title {
    gap: 5px;
    padding: 0;
  }

  .block-title img {
    width: 38px;
  }

  .block-title span {
    font-size: 20px;
    letter-spacing: 0.8px;
  }

  .block-title::after {
    height: 1px;
    margin: 1px 0 0 2px;
  }

  .block-title + .block-content {
    margin-top: 30px;
  }
}

.intro-block + .intro-block {
  margin-top: 100px;
}

.intro-paragraph {
  padding: 0 24px;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 1.8px;
  color: #333;
}

.intro-paragraph + .intro-grid {
  margin-top: 42px;
}

.intro-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px 0;
}

.intro-item {
  flex: 0 0 auto;
  width: calc((100% - 60px) / 3);
}

.intro-pic {
  margin-bottom: 16px;
}

.intro-pic img {
  width: 100%;
}

.intro-title {
  position: relative;
  padding-bottom: 12px;
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: 2px;
  color: #333;
}

.intro-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150px;
  height: 1px;
  background-color: #c4c2c2;
}

.intro-text {
  margin-top: 8px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: #7d7d7d;
}

.intro-action {
  display: flex;
  justify-content: center;
  margin-top: 46px;
}

@media only screen and (max-width: 1279px) {
  .intro-item {
    width: calc((100% - 40px) / 3);
  }
}

@media only screen and (max-width: 1023px) {
  .intro-block + .intro-block {
    margin-top: 80px;
  }

  .intro-paragraph {
    padding: 0;
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 1px;
  }

  .intro-paragraph + .intro-grid {
    margin-top: 26px;
  }

  .intro-grid {
    gap: 36px 0;
  }

  .intro-item {
    width: calc((100% - 32px) / 3);
  }

  .intro-pic {
    margin-bottom: 10px;
  }

  .intro-title {
    padding-bottom: 10px;
    font-size: 18px;
    letter-spacing: 1px;
  }

  .intro-title::before {
    width: 100px;
  }

  .intro-text {
    margin-top: 6px;
    font-size: 14px;
    line-height: 1.6;
  }

  .intro-action {
    margin-top: 36px;
  }
}

@media only screen and (max-width: 767px) {
  .intro-item {
    width: 100%;
  }
}

.card {
  position: relative;
  padding: 22px;
  border-radius: 15px;
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.18);
  background-color: #fff;
}

.card + .card {
  margin-top: 70px;
}

.card-head {
  display: flex;
  gap: 30px;
}

.card-pic {
  flex: 0 0 auto;
  width: 400px;
}

.card-pic img {
  width: 100%;
}

.card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.6px;
  color: #de8cb1;
}

.card-address,
.card-date,
.card-tel {
  display: flex;
  gap: 6px;
  margin-top: 6px;
}

.card-address::before,
.card-date::before,
.card-tel::before {
  content: "";
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  margin-top: 5px;
  background: no-repeat center/contain;
}

.card-address > div,
.card-date > div,
.card-tel > div {
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: 0.45px;
  color: #656565;
}

.card-address::before {
  background-image: url(../image/icon/location.svg);
}

.card-date::before {
  background-image: url(../image/icon/clock.svg);
}
.card-tel::before {
  background-image: url(../image/icon/telephone.svg);
}

.card-social {
  flex: 1 0 auto;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  padding-bottom: 7px;
}

.card-social > a {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.card-social > a.-home {
  background: #a6a6a6 url(../image/icon/home.svg) no-repeat center/contain;
}

.card-social > a.-instagram {
  background: #a6a6a6 url(../image/icon/instagram.svg) no-repeat center/contain;
}

.card-social > a.-facebook {
  background: #a6a6a6 url(../image/icon/facebook.svg) no-repeat center/contain;
}

.card-social > a.-mail {
  background: #a6a6a6 url(../image/icon/mail.svg) no-repeat center/contain;
}

.card-social > a.-twitter {
  background: #a6a6a6 url(../image/icon/twitter.svg) no-repeat center/contain;
}

.card-social > a.-phone {
  background: #a6a6a6 url(../image/icon/phone.svg) no-repeat center/contain;
}

.card-text {
  margin-top: 6px;
  font-size: 18px;
  line-height: 1.66;
  letter-spacing: 0.45px;
  color: #656565;
}

.card-detail {
  display: none;
}

.card-detail::before {
  content: "";
  display: block;
  height: 30px;
}

.card-detail::after {
  content: "";
  display: block;
  height: 70px;
}

.card-btn {
  position: absolute;
  bottom: 22px;
  right: 22px;
}

@media only screen and (min-width: 1024px) {
  .card-social > a {
    transition: background-color 0.3s;
  }

  .card-social > a:hover {
    background-color: #545454;
  }
}

@media only screen and (max-width: 1023px) {
  .card {
    padding: 16px;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.18);
  }

  .card + .card {
    margin-top: 50px;
  }

  .card-head {
    gap: 16px;
  }

  .card-pic {
    width: 320px;
  }

  .card-title {
    font-size: 20px;
  }

  .card-address,
  .card-date {
    gap: 4px;
    margin-top: 4px;
  }

  .card-address::before,
  .card-date::before {
    width: 16px;
    height: 16px;
    margin-top: 4px;
  }

  .card-address > div,
  .card-date > div {
    font-size: 15px;
    line-height: 1.6;
  }

  .card-social {
    gap: 5px;
    padding-bottom: 0;
  }

  .card-social > a {
    width: 30px;
    height: 30px;
  }

  .card-text {
    margin-top: 4px;
    font-size: 14px;
    line-height: 1.6;
  }

  .card-btn {
    bottom: 16px;
    right: 16px;
  }

  .card-detail::before {
    height: 24px;
  }

  .card-detail::after {
    height: 54px;
  }
}

@media only screen and (max-width: 767px) {
  .card-head {
    flex-direction: column;
  }

  .card-pic {
    width: 100%;
  }

  .card-social {
    margin-top: 24px;
  }

  .card-btn:not(.-collapse) {
    position: static;
    display: flex;
    justify-content: flex-end;
    margin-top: 16px;
  }
}

.info + .info {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #aaaaaa;
}

.info-title {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  color: #de8cb1;
}

.info-text {
  margin-top: 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: #656565;
}

.info-table {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.7;
  color: #656565;
}

.info-table table {
  width: 100%;
  border-collapse: collapse;
}

.info-table table th,
.info-table table td {
  padding: 16px;
  vertical-align: top;
  font-weight: normal;
  text-align: left;
  border-top: 2px solid #fff;
}

.info-table table th {
  width: 25%;
  border-right: 2px solid #fff;
  background-color: #ffcdcc;
}

.info-table table td {
  background-color: #fde1e0;
}

.info-table + .info-text {
  margin-top: 12px;
}

.info-note {
  margin-top: 8px;
  font-size: 16px;
  font-weight: 500;
  color: #ef5a50;
}

@media only screen and (max-width: 1023px) {
  .info + .info {
    margin-top: 15px;
    padding-top: 15px;
  }

  .info-title {
    font-size: 18px;
  }

  .info-text {
    margin-top: 4px;
    font-size: 15px;
  }

  .info-table {
    margin-top: 10px;
    font-size: 15px;
  }

  .info-table table {
    display: block;
  }

  .info-table table tbody,
  .info-table table tr {
    display: block;
  }

  .info-table table th,
  .info-table table td {
    box-sizing: border-box;
    display: block;
    padding: 14px;
  }

  .info-table table th {
    width: 100%;
    border-right: none;
  }

  .info-table table td {
    border-top: 2px solid #fff;
  }

  .info-table + .info-text {
    margin-top: 10px;
  }

  .info-note {
    margin-top: 6px;
    font-size: 15px;
  }
}

ul,
ol {
  margin: 0;
}

.map-pic {
  margin-bottom: 12px;
  text-align: center;
}

.map-pic img {
  max-width: 100%;
}

.map-info {
  max-width: 810px;
  margin: 0 auto;
  padding: 24px 30px;
  border-radius: 15px;
  background-color: #e9e9e9;
}

.map-item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

.map-item + .map-item {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #b3b3b3;
}

.map-name {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
}

.map-name::before {
  content: "";
  width: 23px;
  height: 23px;
  margin: 0 5px;
  background: url(../image/icon/pin.png) no-repeat center/contain;
}

.map-val {
  flex: 1;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 1.8px;
}

@media only screen and (max-width: 1023px) {
  .map-info {
    padding: 18px 20px;
    border-radius: 12px;
  }

  .map-item {
    gap: 14px;
  }

  .map-item + .map-item {
    margin-top: 16px;
    padding-top: 16px;
  }

  .map-name {
    font-size: 15px;
  }

  .map-name::before {
    width: 18px;
    height: 18px;
    margin: 0 3px;
  }

  .map-val {
    font-size: 15px;
    letter-spacing: 1px;
  }
}

.calendar-text {
  padding: 0 24px;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 5px;
  color: #7d7d7d;
}

.calendar-pic {
  margin-top: 50px;
}

.calendar-pic img {
  max-width: 100%;
}

@media only screen and (max-width: 1023px) {
  .calendar-text {
    padding: 0;
    font-size: 15px;
    letter-spacing: 3px;
  }

  .calendar-pic {
    margin: 24px -8px 0 -8px;
  }
}

.traffic {
  text-align: center;
}

.traffic-text {
  font-size: 20px;
  letter-spacing: 1px;
  color: #282828;
}

.traffic-map {
  margin-top: 28px;
}

.traffic-map img {
  max-width: 100%;
}

@media only screen and (max-width: 1023px) {
  .traffic-text {
    font-size: 16px;
  }

  .traffic-map {
    margin-top: 24px;
  }
}

.roadmap {
  text-align: center;
}

.roadmap-wrap {
  display: inline-block;
}

.roadmap-pic img {
  max-width: 100%;
}

.roadmap-pic img:nth-child(2) {
  display: none;
}

.roadmap-note {
  margin-top: 38px;
  font-size: 16px;
  letter-spacing: 0.8px;
  text-align: left;
  color: #7d7d7d;
}

.roadmap-note p + p {
  margin-top: 0.8em;
}

@media only screen and (max-width: 1023px) {
  .roadmap-note {
    margin-top: 30px;
    font-size: 14px;
  }
}

@media only screen and (max-width: 767px) {
  .roadmap-pic img {
    height: 300px;
  }

  .roadmap-pic img:nth-child(1) {
    display: none;
  }

  .roadmap-pic img:nth-child(2) {
    display: inline-block;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-size: 1em;
}

p {
  margin: 0;
}

.title {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.title-icon {
  width: 100%;
  margin-bottom: 6px;
  text-align: right;
}

.title-icon img {
  height: 77px;
}

.title-ch {
  width: 72px;
  margin-bottom: 10px;
  padding-bottom: 4px;
  font-family: "Noto Serif TC", serif;
  font-size: 48px;
  font-weight: 300;
  line-height: 1.25;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
}

.title-en {
  width: 24px;
  font-family: "Raleway", "Noto Sans TC", sans-serif;
  font-optical-sizing: auto;
  font-size: 32px;
  font-weight: 300;
  line-height: 1.13;
  word-break: break-all;
}

.title.-rd {
  color: #8a2b1b;
}

.title.-rd .title-ch {
  border-color: #8a2b1b;
}

.title.-bu {
  color: #3e4b83;
}

.title.-bu .title-ch {
  border-color: #3e4b83;
}

.title.-br {
  color: #775702;
}

.title.-br .title-ch {
  border-color: #775702;
}

.title.-pl {
  color: #927baa;
}

.title.-pl .title-ch {
  border-color: #927baa;
}

.title.-og {
  color: #e79332;
}

.title.-og .title-ch {
  border-color: #e79332;
}

@media only screen and (max-width: 1023px) {
  .title-icon {
    margin-bottom: 4px;
  }

  .title-icon img {
    height: 34px;
  }

  .title-ch {
    width: 36px;
    margin-bottom: 4px;
    padding-bottom: 2px;
    font-size: 24px;
  }

  .title-en {
    width: 17px;
    font-size: 15px;
  }
}

@media only screen and (min-width: 1024px) {
  .mbOnly {
    display: none;
  }
}

@media only screen and (max-width: 1023px) {
  .pcOnly {
    display: none;
  }
}

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


/*# sourceMappingURL=main.css.map */
