@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Monofett&family=Noto+Sans+TC:wght@100..900&display=swap');

:root {
  --font-size-base: 16px;
  --color-primary: #449B79;
  --color-primary-90: #3FAD95;
  --color-primary-80: #57BCA6;
  --color-yellow: #F5E929;
  --color-black: #000000;
  --color-heading: #0C0C0C;
  --color-dark: #3C3C3C;
  --color-title: #464646;
  --color-secondary: #2E2E2E;
  --color-muted: #818181;
  --color-button: #373737;
  --color-meta: #292929;
  --color-button-primary: #2F2F2F;
  --bg-overlay-muted: #C7CCCC33;
  --bg-tint-primary: #D5E5E2;
  --bg-light: #F7F7F7;
  --bg-pale: #F0F0F0;
  --bg-soft: #EBEDED;
  --bg-subtle: #DFDFDF;
  --bg-hover: #E8E8E8;
  --border-color-muted: #919191;
  --border-color-light: #797979;
  --border-color-default: #828282;
  --border-color-dashed: #BABABA;
  --border-color-soft: #CACACA;
  
  --swiper-pagination-color: var(--color-primary);
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-bullet-inactive-color: var(--bs-white);
  --swiper-pagination-bullet-horizontal-gap: 2px;
  --swiper-navigation-size: 40px;  
}
html {
  font-size: var(--font-size-base);
}
body, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Noto Sans TC", "微軟正黑體", "Microsoft JhengHei", "PingFang TC", "Helvetica Neue", Helvetica, Arial, sans-serif;
  width: 100%;
  overflow-x: hidden;
  font-size: 1rem;
  line-height: normal;
  letter-spacing: .48px;
  color: var(--color-black);
  word-break: break-all;
  word-break: break-word;
  white-space: normal;
  background: var(--bg-soft) url(../images/bg/bg.svg);
}
/* Gobal setting */
a {
  color: inherit;
  transition: all .25s;
  text-decoration: none;
}
a:focus, a:hover, a:active, a:visited {
  text-decoration: none;
  color: inherit;
  text-decoration: none;
}
ul, li {
  padding-left: 0;
  margin-bottom: 0;
}
dl, ol, ul {
  padding-inline-start: 20px;
}
button {
  background: none;
  border: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
  line-height: normal;
  overflow: visible;
  padding: 0;
  transition: all .25s;
  -webkit-appearance: button;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
:focus:not(:focus-visible) {
  outline: 0;
}
.form-group {
  margin-bottom: 20px;
}
.form-group .form-control,
.form-group .form-control:focus,
.form-group select {
  font-size: 1rem;
  line-height: 1.5;
  padding-left: 15px;
  padding-right: 15px;
  color: #797979;
  background-color: #fff;
  border: 1px solid #9a9a9a;
}
.form-group .form-control:not(textarea),
.form-group .form-control:not(textarea):focus,
.form-group select {
  height: calc(2.375rem + 2px);
}
.form-control::placeholder,
.form-control::-webkit-input-placeholder,
input::-webkit-input-placeholder,
::-webkit-input-placeholder {
  color: #bfbfbf;
}
.form-control,
.form-control:focus {
  border: 1px solid #c3c3c3;
  background: #fff;
  border-radius: 0;
  box-shadow: none;
  /* -webkit-appearance: none; */
}
.form-group .form-control[disabled],
.form-group .form-control:disabled {
  background-color: var(--bg-border);
  color: #797877;
}
.form-group .row {
  margin-left: -12px;
  margin-right: -12px;
}
.form-group .row > [class^="col"] {
  padding-left: 12px;
  padding-right: 12px;
}
.custom-control-label::after {
  width: 18px;
  height: 18px;
  top: 3px;
}
.custom-checkbox .custom-control-label::before {
  border-radius: 0;
}
.custom-control-input:checked~.custom-control-label::before {
  border-color: transparent;
  background-color: #23d2b4;
}
.form-select {
  border-radius: 15px;
  padding: 10px 40px 10px 14px;
  color: var(--bs-white);
  background-color: var(--color-primary-90);
  background-size: 16px 7px;
  --bs-form-select-bg-img: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTAiIHZpZXdCb3g9IjAgMCAxOCAxMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEgMUw5IDhMMTcgMSIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIyIi8+Cjwvc3ZnPgo=");
}
.form-select:focus {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxMCIgdmlld0JveD0iMCAwIDE4IDEwIiBmaWxsPSJub25lIj4KPHBhdGggZD0iTTEgOUw5IDJMMTcgOSIgc3Ryb2tlPSIjRjVFOTI5IiBzdHJva2Utd2lkdGg9IjIiLz4KPC9zdmc+")
}
.form-group input[type="submit"] {
  border: 0;
  padding: 0;
}
.form-group label.error {
  font-weight: normal;
}
button:focus {
  outline: 0;
}
.modal .btn-close {
  text-shadow: none;
  opacity: 1;
  width: 20px;
  height: 20px;
  z-index: 9;
  padding: 0;
}
.modal-open ::-webkit-scrollbar {
  background-color: transparent;
}
.modal-content {
  border: 0;
  border-radius: 10px;
}
.modal-body {
  padding: 1.25rem;
}
.modal-backdrop {
  background-color: rgba(0,0,0,0.85);
}
nav[aria-label="Page navigation"] {
  margin-top: 45px;
}
.page-link[aria-label] span {
  width: 24px;
  height: 24px;
  background-size: 100%;
  display: block;
}
.page-link[aria-label] span {
  background-image: url(../images/icon/icon-chevron-right.svg);
}
.page-link[aria-label="Previous"] span {
  transform: rotate(-180deg);
}
.disabled .page-link[aria-label] span {
  opacity: .2;
}
.page-item.disabled .page-link {
  background-color: transparent;
  border: 0;
}
.page-link {
  --bs-pagination-border-radius: 0;
  --bs-pagination-hover-bg: transparent;
  --bs-pagination-bg: transparent;
  --bs-pagination-font-size: 1.375rem;
  padding: 6px 10px;
  line-height: 1;
  border: 0;
  color: var(--color-black);
  min-width: 33px;
  width: 100%;
}
.page-link:not([aria-label]) {
  border-radius: 100%;
  padding: 4px 10px 8px;
}
.page-item.active .page-link:not([aria-label]),
.page-link:not([aria-label]):hover {
  color: var(--bs-white);
  background-color: var(--color-primary-90);
}
.page-link:focus {
  box-shadow: none;
}
.nav-pills {
}
.nav-pills .nav-item + .nav-item .nav-link {
  border-left: 0;
}
.nav-pills .nav-link {
  border: 1px solid var(--color-primary-90);
  padding: 6px 12px;
  color: var(--color-primary-90);
  background-color: var(--bs-white);
  border-radius: 0;
  letter-spacing: 1px;
}
.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  color: var(--bs-white);
  background-color: var(--color-primary-90);
  font-weight: 500;
}
.nav-pills .nav-item:first-child .nav-link {
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}
.nav-pills .nav-item:last-child .nav-link {
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}
.limitLine {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  /* white-space: nowrap; */
  -webkit-line-clamp: 2;
  -moz-line-clamp: 2;
}
.bg-wrapper {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.border-dashed {
  padding-bottom: 8px;
  border-bottom: 2px dashed var(--border-color-dashed);
}
.p-2x2 {
  padding: 20px;
}
.mt-02 {
  margin-top: 2px;
}
.mt-32 {
  margin-top: 32px;
}
.mb-20 {
  margin-bottom: 20px;
}
.g-2 {
  gap: 2px;
}
.gap-10 {
  gap: 10px;
}
.gap-12 {
  gap: 12px;
}
.gap-14 {
  gap: 14px;
}
.gap-18 {
  gap: 18px;
}
.gap-20 {
  gap: 20px;
}
.gap-30 {
  gap: 30px;
}
.gap-50 {
  gap: 50px;
}

/*CSS layout*/
.frss {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: flex-start;
}
.frcs {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
}
.frcc {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}
.frcb {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}
.frca {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-around;
}
.frce {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-end;
}
.frsb {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: space-between;
}
.frsc {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: center;
}
.fres {
	display: flex;
	flex-direction: row;
	align-items: flex-end;
	justify-content: flex-start;
}
.fcss {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
}
.fccs {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
}
.fcsb {
  display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
}
.fccs {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
}
.fccc {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.fccb {
  display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
}
.fcsc {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
}
.fcsb {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
}
.fces {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: flex-start;
}
.fceb {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: space-between;
}
.fcec {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: center;
}

h1,.h1,h2,.h2,h3,.h3,h4,.h4,h5,.h5,h6,.h6 {
  margin-bottom: 0;
}
h1, .h1 {
  font-size: ;
  line-height: ;
}
.h2 {
  font-size: 1.875rem;
  line-height: normal;
  font-weight: 700;
  letter-spacing: 3px
}
.h3 {
  font-size: 1.4375rem;
  line-height: normal;
  letter-spacing: 2.3px;
}
.h4 {
  font-size: 1.25rem;
  line-height: 1.4;
  letter-spacing: 2px;
}
.h5 {
  font-size: 1.125rem;
  line-height: normal;
}
.h6 {
  font-size: .9375rem;
  line-height: normal;
}
.h6-btn {
  font-size: 1.125rem;
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: 1.08px;
}
.tiny {
  font-size: .8125rem;
}
.tiny-s {
  font-size: 8px;
}
.details-pp,
.details-p p {
  font-size: 1.0625rem;
  line-height: 1.82;
  color: var(--color-title);
}
.details-p img {
  max-width: 100%;
  height: auto;
  margin: 16px 0;
}
p:last-child {
  margin-bottom: 0;
}
span.require {
  color: #ff0000;
}
.badge {
  --bs-badge-font-weight: normal;
  --bs-badge-font-size: 1.0625rem;
  --bs-badge-padding-x: 12px;
  --bs-badge-padding-y: 6px;
  --bs-badge-border-radius: 11px;
  letter-spacing: 0.68px;
  border: 1px solid var(--color-primary-80);
}
.fw-350 {
  font-weight: 350;
}
.fw-500 {
  font-weight: 500;
}
.text-primary {
  color: var(--color-primary)!important;
}
.text-primary-90 {
  color: var(--color-primary-90)!important;
}
.text-primary-80 {
  color: var(--color-primary-80)!important;
}
.text-dark {
  color: var(--color-dark)!important;
}
.text-muted {
  color: var(--color-muted)!important;
}
.bg-primary {
  background-color: var(--bg-overlay-muted)!important;
}
.btn-base {
  text-decoration: none;
  border: 1px solid;
  border-radius: 33px;
  padding: 10px;
  font-size: 1.125rem;
  line-height: 1.278;
  font-weight: 500;
  letter-spacing: 1.08px;
  transition: all 0.2s ease;
  box-shadow: 4px 4px 0px #524F60;
  background-color: var(--bs-white);
}
.btn-base.has-icon {
  padding: 14px 32px;
  width: 250px;
}
.btn-base.has-tiny-icon {
  padding: 6px 25px;
}
.btn-pill {
  padding: 20px;
  color: var(--color-primary-90);
  background-color: var(--bs-white);
  border: 1px solid var(--color-primary-90);
  border-radius: 48px;
  line-height: 1.5;
  min-width: 170px;
  text-align: center;
}
.btn-pill.small {
  padding: 4px 18px;
  min-width: initial;
}
.btn-section-label {
  justify-content: center;
  display: inline-flex;
  padding: 4px 10px;
  color: var(--color-primary-90)!important;
  background-color: var(--bs-white);
  border: 1px solid var(--color-primary-90);
  font-weight: bold;
}
.btn-ghost {
  background-color: var(--bg-pale);
  border: none;
  border-radius: 999px;
  padding: 4px 13px; /* 可由其他 class 覆蓋 */
  font-size: .875rem;
  line-height: 1.29;
  display: inline-block;
  transition: background-color 0.2s ease;
}
.btn-outline {
  background-color: var(--bs-white);
  border: 1px solid var(--color-dark);
  border-radius: 35px;
  padding:4px 15px;
  font-size: .875rem;
  line-height: 1.29;
  letter-spacing: 0.56px;
  color: var(--color-dark);
}
.btn-pill-img {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 22px 20px;
  background: no-repeat center center / 100% 100% url(../images/bg/bg-day.png);
  color: var(--color-primary-90);
}
.btn--locate {
  min-width: 141px;
}
.btn--vertical,
.btn--vertical-all {
  padding: 10px 4px;
  border-radius: 999px;
  line-height: 18px;
  font-size: .875rem;
  font-weight: normal;
  letter-spacing: 3.5px;
}
.btn--primary {
  color: var(--color-button-primary)!important;
  border-color: var(--color-primary-80)!important;
  box-shadow: 4px 4px 0px var(--color-primary-80)!important;
}
.btn--fill {
  color: var(--bs-white)!important;
  background-color: var(--color-primary-90)!important;
}
.btn-base:hover,
.btn-pill:hover,
.btn-section-label:hover,
.btn-outline:hover {
  background-color: var(--bg-soft);
}
.topic-item .btn-pill:hover {
  background-color: var(--bs-white)!important;
}
.icon.marker {
  width: 17px;
  height: 17px;
  background: no-repeat center / auto 100% url(../images/icon/icon-marker.svg);
}
.icon.star {
  width: 18px;
  height: 18px;
  background: no-repeat center / auto 100% url(../images/icon/icon-star.svg);
}
.icon.star.active {
  background-image: url(../images/icon/icon-star_active.svg);
}
.icon-category {
  width: 24px;
  height: 24px;
}
.icon.activity_announcement {
  background: no-repeat url(../images/icon/icon-megaphone.svg);
}
.icon.facility_maintenance {
  background: no-repeat url(../images/icon/icon-road-cone.svg);
}
.icon.government_achievement {
  background: no-repeat url(../images/icon/icon-trophy.svg);
}
.icon.attachment {
  width: 20px;
  height: 20px;
  background: no-repeat url(../images/icon/icon-attach.svg);
}
.icon.navigate {
  width: 12px;
  height: 12px;
  background: no-repeat center / 100% url(../images/icon/icon-navigate.svg);
}
.icon.car {
  width: 20px;
  height: 20px;
  background: no-repeat center / 100% auto url(../images/icon/icon-car.svg);
}
.active .icon.car {
  background: no-repeat center / 100% auto url(../images/icon/icon-car_active.svg);
}
.icon.bus_b {
  width: 20px;
  height: 20px;
  background: no-repeat center / 100% auto url(../images/icon/icon-bus_b.svg);
}
.active .icon.bus_b {
  background: no-repeat center / 100% auto url(../images/icon/icon-bus_b_active.svg);
}
.icon.bike {
  width: 20px;
  height: 20px;
  background: no-repeat center / 100% auto url(../images/icon/icon-bike.svg);
}
.active .icon.bike {
  background: no-repeat center / 100% auto url(../images/icon/icon-bike_active.svg);
}
.social-icon {
  width: 32px;
  height: 32px;
}
.facebook-icon {
  background-image: url(../images/icon/icon-facebook.svg);
}
.instagram-icon {
  background-image: url(../images/icon/icon-instagram.svg);
}
.mail-icon {
  background-image: url(../images/icon/icon-mail.svg);
}

/*** plugin component ***/
.swiper-pagination-bullet {
  border: 1px solid var(--color-primary);
}
.swiper-button {
  gap: 6px;
}
.swiper-button.frcc {
  position: absolute;
  right: 10px;
  bottom: 23px;
}
.swiper-button.frcs {
  margin-top: 30px;
}
.swiper-button .swiper-button-dir {
  left: initial;
  top: initial;
  left: initial;
  right: initial;
  margin-top: initial;
}
.swiper-button-next, .swiper-button-prev {
  width: 40px;
  height: 40px;
  text-indent: -99px;
  text-indent: -9999px;
  background: no-repeat url(../images/icon/icon-arrow-L.svg);
  transition: all .25s ease-out;
}
.swiper-button-next:hover, .swiper-button-prev:hover {
  background: no-repeat url(../images/icon/icon-arrow-L_active.svg);
}
.swiper-button-next {
  transform: rotate(180deg);
}
/*** plugin component END ***/

/*** custom component ***/
/* ratio */
.ratio::before { padding-top: 60%; }
.ratio > img { object-fit: cover; }
/* backTop按鈕 */
.back-top {
  position: fixed;
  bottom: 26px;
  left: 22px;
  z-index: 999;
  display: none;
  width: 40px;
  height: 40px;
  background: no-repeat url(../images/icon/icon-arrow-T.svg);
  transition: all .25s ease-out;
}
.back-top:hover {
  background: no-repeat url(../images/icon/icon-arrow-T_active.svg);
}
/* Skip Link 樣式 */
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  transform: translateX(-200%);
  z-index: 9999;
  background-color: var(--color-primary-80);
  backdrop-filter: blur(10px);
  color: var(--bs-white);
  padding: 8px 20px;
  text-decoration: none;
  font-size: .875rem;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-out;
}
.skip-link:focus {
    transform: translateX(0);
}
.sec-header {
  margin-bottom: 52px;
}
.en-title {
  font-family: "Monofett", "Noto Sans TC", serif;
  font-size: 2.8125rem;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 2.7px;
  color: var(--color-primary-80);
}
.zh-title {
  letter-spacing: 4.2px;
}
.zh-title::before, .zh-title::after {
  content: '';
  display: block;
}
/* parkGo */
.parkGo {
  color: var(--color-primary);
  font-weight: 900;
  font-size: 1.5625rem;
  line-height: normal;
  letter-spacing: 1.5px;
}
.park-finder__subtitle {
  letter-spacing: 0.9px;
} 
/* 字級設定 */
.fs-style {
  cursor: pointer;
  border: 1px solid var(--border-color-muted);
  background-color: var(--bs-white);
}
.fs-settings-btn span,
.fs-style label {
  line-height: 1;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
.fs-options {
  position: absolute;
  transform: scaleY(0);
  transform-origin: top;
  opacity: 0;
  transition: transform 0.2s ease-out, opacity 0.2s ease-out;
}
.fs-options.active {
  transform: scaleY(1);
  opacity: 1;
}
.fs-option {
  transition: background-color 0.25s ease-out;
  user-select: none;
}
.fs-option input[type="radio"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.size-small {
  font-size: 12px;
}
.size-medium {
  font-size: 16px;
}
.size-large {
  font-size: 22px;
}
.fs-option:hover {
  background-color: var(--border-color-soft);
  color: var(--bs-white);
}
.fs-option input[type="radio"]:checked+label {
  background-color: var(--border-color-soft);
  color: var(--bs-white);
}
.fs-option input[type="radio"]:focus-visible+label {
  outline: 2px solid var(--focus-color);
  outline-offset: -2px;
}
.dot, .decorate-x::before, .decorate-x::after {
  content: '';
  width: 5px;
  height: 5px;
  background-color: var(--color-yellow);
  position: absolute;
}
.decorate-x {
  position: relative;
  display: inline-block;
  padding: 0 15px;
  color: var(--color-title);
}
.decorate-x::before, .decorate-x::after {
  top: 50%;
  transform: translateY(-50%);
}
.decorate-x::before { left: 0; }
.decorate-x::after { right: 0; }
/* 首頁搜尋元件 */
.park-finder {
  max-width: 332px;
  width: 100%;
  position: relative;
  border-radius: 30px;
  border: 1px solid var(--color-primary);
  background-color: var(--bs-white);
}
.park-finder__filters {
  gap: 6px;
}
.park-finder__nearby {
  border-radius: 3px;
  border: 1px dashed var(--color-primary-80);
}
/* 固定搜尋列 */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fixed-search {
  position: fixed;
  left: 20px;
  bottom: 26px;
  z-index: 11;
}
.fixed-search .logo-button,
.fixed-search .fixed-close-button {
  border-radius: 19px;
  background: var(--color-primary);
  color: var(--bs-white);
  padding: 7px 33px;
  min-width: 208px;
  letter-spacing: 0.96px;
}
.fixed-search .parkGo {
  font-size: .8125rem;
  color: var(--color-yellow);
}
.fixed-search .fixed-close-button {
  /* display: none; */
  cursor: pointer;
  transition: all 0.3s ease;
}
.fixed-filter-section {
  gap: 10px;
  flex: 1;
  background-color: #EDEDED;
  border-radius: 30px;
  padding: 0 23px;
  animation: slideIn 0.4s ease;
}
.filter-group {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #EDEDED;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}
.filter-group .form-select {
  min-width: 120px;
  background-color: #EDEDED;
  color: var(--color-dark);
  border: 0;
  border-radius: 0;
  padding: 10px 14px;
  font-weight: 500;
  background-image: url(../images/icon/icon-chevron-down.svg);
}
.filter-group .form-select:focus {
  background-image: url(../images/icon/icon-chevron-top.svg);
}
.search-button {
  background-color: var(--color-primary-90);
  color: var(--bs-white);
  border: none;
  padding: 3px 14px;
  border-radius: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  gap: 2px;
  letter-spacing: 0.32px;
}
/* 卡片 */
.park-category {
  padding: 0 6px;
}
.park-category.position-absolute {
  bottom: -11px;
}
.card { border-radius: 0; }
.card a { text-decoration: none; }
.card .thumbnail.ratio::before { padding-top: 60%; }
.card-title {font-weight: bold;}
/* 公園卡片 .card.park-card */
.card.park-card .thumbnail {
  border-radius: 17px;
  border: 2px solid var(--bs-white);
}
.card.park-card .card-body {
  padding: 16px 0 35px;
}
.card.park-card .card-subtitle {
  letter-spacing: 0.68px;
}
/* 小旅行卡片 .card.journal-card */
.journal-card-list {
  border-top: 1px solid var(--border-color-default);
  border-bottom: 1px solid var(--border-color-default);
}
.card.journal-card + .card.journal-card {
  border-top: 1px solid var(--border-color-default)!important;
}
.card.journal-card .card-body {
  padding: 20px;
  grid-auto-rows: max-content;
}
/* 公園特色卡片 .card.topic-card */
.card.topic-card {
  border: 0;
  border-top: 1px solid var(--border-color-default);
  border-bottom: 1px solid var(--border-color-default);
}
.card.topic-card .thumbnail.ratio::before { padding-top: 74%; }
.card.topic-card .card-body {
  padding: 20px;
}
/* 附近推薦商家卡片 .card.store-card */
.card.store-card .ratio::before {
    padding-top: 100%;
}
.card.store-card .card-body {
  padding: 9px 0 0 0;
}
.store-service {
  gap: 2.5px;
}
.store-service-item::before {
  content: '';
  display: flex;
  width: 16px;
  height: 16px;
  background: no-repeat url(../images/icon/icon-checkmark.svg);
  margin-right: 5px;
}
/*** custom component END ***/

/* navbar */
.navbar {
  padding: 0;
  z-index: 99;
  /* position: absolute;
  top: 0;
  left: 0;
  right: 0; */
  width: 100%;
}
.navbar-brand {
  padding: 0;
  line-height: 1;
}
.navbar .nav-link {
  color: #000;
  line-height: normal;
  letter-spacing: 1.28px;
  font-weight: bold;
  overflow: hidden;
  position: relative;
  transition: all .35s ease-out;
}
.navbar .nav-link:hover,
.navbar .nav-link:focus,
.navbar .nav-link.active {
  color: #000;
}
.navbar-nav .dropdown-menu {
  padding: 15px 0;
  background-color: transparent;
  border: 0;
  border-radius: 0;
}
.dropdown-item {
  font-size: .9375rem;
  line-height: 1.73;
  font-weight: bold;
  padding: 0 15px;
  color: #fff!important;
}
.dropdown-item:focus,
.dropdown-item:hover {
  background-color: transparent;
  color: #fff;
}
.navbar-toggler-icon {
  width: 24px;
  height: 24px;
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMTkiIHZpZXdCb3g9IjAgMCAyNCAxOSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTI0IDAuMjI2NTYySDBWMi40MDgzOEgyNFYwLjIyNjU2MloiIGZpbGw9IiMwQjA5MEEiLz4KPHBhdGggZD0iTTI0IDguNDA4MkgwVjEwLjU5SDI0VjguNDA4MloiIGZpbGw9IiMwQjA5MEEiLz4KPHBhdGggZD0iTTI0IDE2LjU4OThIMFYxOC43NzE3SDI0VjE2LjU4OThaIiBmaWxsPSIjMEIwOTBBIi8+Cjwvc3ZnPgo=");
}
[aria-expanded="true"] .navbar-toggler-icon {
  background-size: 100%;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTkiIGhlaWdodD0iMTkiIHZpZXdCb3g9IjAgMCAxOSAxOSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE5IDEuNTQyOTdMMTEuMjIxNyA5LjMyMTI5TDE4Ljg3MTEgMTYuOTcwN0wxNy4zMjgxIDE4LjUxMzdMOS42Nzg3MSAxMC44NjQzTDIuMDI5MyAxOC41MTM3TDAuNDg2MzI4IDE2Ljk3MDdMOC4xMzU3NCA5LjMyMTI5TDAuMzU3NDIyIDEuNTQyOTdMMS45MDAzOSAwTDkuNjc4NzEgNy43NzgzMkwxNy40NTcgMEwxOSAxLjU0Mjk3WiIgZmlsbD0iIzBCMDkwQSIvPgo8L3N2Zz4K")
}

/* footer */
.site-footer {
  border-top: 1px solid var(--border-color-light);
  background: var(--bg-subtle);
  padding: 58px 0;
  margin-top: auto;
}
.footer-container {
  max-width: 1230px;
  margin: 0 auto;
  padding: 0 15px;
  color: var(--color-button) !important;
}
.footer-container .fw-bold {
  letter-spacing: 1.76px;
}
.footer-container :not(.fw-bold) {
  letter-spacing: 1.5px;
  font-weight: 300;
  font-size: .9375rem;
  line-height: 1.5;
}
.footer-primary {
  display: flex;
  flex-direction: column;
}
.footer-primary__bottom {
  gap: 34px;
}
.phone-number a {
  color: inherit;
  text-decoration: none;
}
.phone-number a:hover,
.phone-number a:focus {
  color: #28a745;
  text-decoration: underline;
}
.social-media {
  display: flex;
}
.social-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 15px;
}
.social-item {
  margin: 0;
}
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}
.social-link:hover,
.social-link:focus {
  transform: translateY(-2px);
}
.branding-section {
  gap: 20px;
}

main {}
/*** index ***/
.index,
.index main {
  background-color: var(--bs-white);
}
.index main {
  padding-bottom:100px;
}
.index main section:not(.index-news) {
  background-image: url(../images/bg/bg.svg);
}
#indexHeroSwiper .swiper-slide .ratio::before {
  padding-top: 46.39%;
}
#indexHeroSwiper .swiper-slide img {
  object-position: center;
  object-fit: cover;
}
.index-recommended {
  padding: 30px 0;
}
.index-recommended .swiper-container {
  margin-left: 12px;
}
.index-journal {
  padding-top: 130px;
  padding-bottom: 160px;
}
.external-resource {
  height: 19px;
}
.index-news {
  padding: 40px 0;
}
.news-item.border-bottom {
  border-bottom-color: var(--border-color-soft)!important;
}
.news-item-content {
  padding: 14px 10px;
}
.news-title {
  color: var(--color-title);
}
.news-date {
  color: var(--color-meta);
}
.index-news .sec-action {
  margin-top: 50px;
}
/*** index END ***/

body:not(.index) main {
  padding: 50px 0 100px;
}

/*** park ***/
.park-list {
  grid-template-columns: 1fr;
  gap: 30px;
}
/*** park END ***/

/*** park detail ***/
.parkDetail main > .layout {
  max-width: 924px;
  margin: auto;
}
.parkDetail main section + section {
  margin-top: 50px;
}
.park-name {
  padding: 0 40px;
  border: 1px solid var(--color-button-primary);
  background: var(--bs-white);
  box-shadow: 4px 4px 0 0 var(--color-primary-90);
}
.sec-hero > div { 
  width: 100%;
}
.sec-hero .layout {
  max-width: 800px!important;
  width: 100%;
  margin: auto;
}
.sec-hero-announcement .wrapper {
  padding: 4px 40px;
  border-right: 1px solid var(--color-black);
  border-left: 1px solid var(--color-black);
  gap: 6px;
}
.hero-announcement-item {
  background-color: var(--bs-white);
  padding: 0 27px;
  font-weight: 500;
}
.hero-announcement-item::before {
  content: '';
  display: flex;
  width: 5px;
  height: 5px;
  background-color: var(--color-yellow);
  flex-shrink: 0;
}
#parkDetailSwiper .swiper-slide img {
  border: 1px solid var(--color-primary-80);
}
.sec-hero-topic {
  padding: 14px 20px;
}
.location-info__card {
  border: 1px solid var(--color-primary-90);
  border-radius: 20px;
}
.location-info__address {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom: 1px solid var(--color-primary-90);
  background-color: var(--bg-tint-primary);
  padding: 12px 0;
}
.location-info__content {
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.location-info__map iframe {
  min-height: 444px;
  border-bottom-left-radius: 20px;
}
.location-info__sidebar {
  padding: 12px 26px;
}
.transport-option {
  padding: 5px 12px;
  border-radius: 18px;
}
.transport-option.active {
  background-color: #719191;
}
.transport-option:hover {
  background-color: var(--bg-hover);
}
.place-option {
  padding: 10px;
  border-radius: 100%;
}
.place-option.store {
  background-color: #4F8E4E;
}
.place-option.store:hover {
  background-color: #73A472;
}
.place-option.hostipal {
  background-color: #DE6477;
}
.place-option.hostipal:hover {
  background-color: #F19CA3;
}
.location-info__transport .frcs + .frcs {
  padding-left: 20px!important;
  margin-left: 12px;
  border-left: 1px solid #A5A5A5;
}
.location-info__transport {
  padding-bottom: 12px;
  border-bottom: 1px solid #EBEBEB;
}
.location-service {
  padding: 30px 37px;
  border-radius: 15px;
  border: 1px solid var(--color-primary);
  background: var(--bs-white);
  box-shadow: 6px 6px 0 0 var(--color-primary);
}
.location-service .row {
  gap: 32px 8px;
}
.service-group ul,
.service-group ul li + li {
  margin-top: 2px;
}
.service-group ul li,
.service-group .service-content {
  font-size: .875rem;
  color: #2A2A2A;
}
.parkDetail-recommend {
  padding: 40px 0;
}
.recommendation-list {
  min-width: calc(100% - 46px)
}
/*** park detail END***/

/*** trip detail ***/
.sub-title.text-primary-80 {
  color: var(--color-primary)!important;
}
.tripDetail main > .layout {
    max-width: 1004px;
    margin: auto;
}
#parkDetailThumbs .swiper-slide:not(.swiper-slide-thumb-active) .ratio::after,
#tripDetailThumbs .swiper-slide:not(.swiper-slide-thumb-active) .ratio::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  pointer-events: none;
  z-index: 1;
}
#tripDetailSwiper .swiper-slide img {
  border: 1px solid var(--color-dark);
}
.trip-highlight {
  border-right: 1px solid var(--color-dark);
  border-left: 1px solid var(--color-dark);
  padding: 6px 10px;
}
.tripDetail main section + section {
  margin-top: 30px;
}
.trip-schedule-block {
  position: relative;
  padding: 10px 40px;
}
.trip-schedule-block::before,
.trip-schedule-block:last-child::after {
  content: '';
  position: absolute;
  display: block;
  width: 10px;
  height: 10px;
  background-color: #464646;
  border-radius: 100%;
  left: 36px;
}
.trip-schedule-block::before {
  top: 10px;
}
.trip-schedule-block::after {
  bottom: 10px;
}
.trip-schedule-block .wrapper {
  padding-left: 40px;
  border-left: 2px solid #464646;
}
.trip-schedule-header {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.trip-description p {
  margin-bottom: 0;
}
.trip-location-card {
  width: 92%;
  position: relative;
  display: inline-flex;
  padding: 20px;
  gap: 19px;
  border-radius: 30px;
  border: 1px solid var(--color-dark);
  background-color: #F4F4F4;
  box-shadow: 6px 6px 0px var(--color-primary-90);
}
.location-image.ratio::before {
  aspect-ratio: 5/3;
}
.location-image img {
  border-radius: 13px;
}
.location-name {
  font-size: 1.3125rem;
  letter-spacing: 2.1px;
  font-weight: 500;
}
.tripDetail-topic .details-p img {
  margin: 20px 0;
  height: auto;
}
/*** trip detail END ***/

/*** news ***/
.news-main .news-list {
  padding: 30px 0;
  background-color: var(--bs-white);
}
/*** news END ***/

/*** news detail ***/
.newsDetail main > .layout {
  max-width: 1010px;
  margin: auto;
}
.newsDetail-hero .btn-section-label {
  min-width: 88px;
}
.news-publisher span {
  line-height: 1;
}
.news-publisher span + span {
  padding-left: 20px;
  margin-left: 20px;
  border-left: 1px solid #B8B8B8;
}
.news-content figure  {
  text-align: center;
  margin: 0;
}
.attachment-list {
  padding: 0;
  gap: 10px;
}
.attachment-link {
  text-decoration: none;
}
.attachment-label {
  background-color: var(--bs-white);
  padding: 6px 14px;
}
.attachment-label::before {
  content: '';
  display: flex;
  width: 20px;
  height: 20px;
  margin-right: 6px;
  background: no-repeat url(../images/icon/icon-attach.svg);
}
.newsDetail-main .action-row { margin-top: 45px; }
/*** news detail END ***/

/* comingsoon */
.comingsoon {
  width: 100vw;
  height: 100dvh;
}
.comingsoon img {
  max-width: 90%;
  max-height: 80%;
  width: auto;
  margin: auto;
}
/* comingsoon */

.announcement-img {
  text-align: center;
}
.announcement-img img {
  max-width: 100%;
  height: auto;
  margin: 14px auto;}
#announcementModal .action-row {
margin-top: 14px;
}
#announcementModal .h6-btn {font-size: 1rem;}
@media screen and (min-width: 576px) {
  .modal-dialog {
    --bs-modal-width: 540px;
  }
  /*** index ***/
  .index-recommended .swiper-container {
    margin-left: calc((100% - 516px) / 2);
    max-width: calc(100% - ((100% - 516px) / 2));
  }
  /*** index END ***/
}
@media screen and (min-width: 768px) {
  .p-md-2x4 {
    padding: 20px 40px;
  }
  .gap-md-18 {
    gap: 18px;
  }
  .gap-10 {
    gap: 10px;
  }
  .gap-14 {
    gap: 14px;
  }
  .btn--vertical {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    height: auto;
    white-space: nowrap;
  }
  /*** custom component ***/
  /* 卡片 */
  /* 小旅行卡片 .card.journal-card */
  .journal-card-list {
    margin: 0 11px;
  }
  .card.journal-card .d-grid {
    grid-template-columns: 26.79% 1fr 48px;
    gap: 30px;
  }
  .card.journal-card .card-title {
    height: 56px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    /* white-space: nowrap; */
    -webkit-line-clamp: 2;
    -moz-line-clamp: 2;
  }
  .card.journal-card .card-action {
    padding-right: 20px;
  }
  /*** custom component END ***/

  /* footer */
  .footer-container {
    grid-template-columns: 60.42% 1fr;
    gap: 20px;
  }
  .footer-primary__top {
    margin-bottom: 18px;
    gap: 50px;
  }
  .nav-list {
    width: 100px;
  }
  .branding-section {
    height: 100%;
  }

  /*** index ***/
  .index-recommended .swiper-container {
    margin-left: calc((100% - 696px) / 2);
    max-width: calc(100% - ((100% - 696px) / 2));
  }
  /*** index END ***/

  /*** park ***/
  .park-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 23px;
  }
  /*** park END ***/

  /*** trip ***/
  .trip-finder__filters .form-select {
    width: 180px;
    gap: 6px;
  }
  /*** trip END***/

  /*** trip detail ***/  
  .tripD-topic-item figure {
    padding: 20px 36px;
  }
  .trip-location-card {
    grid-template-columns: 29.5% 1fr;
    width: 82.8%;
  }
  .trip-location-card .location-image {
    max-width: 29.5%;
  }
  .trip-location-card .btn-outline {
    position: absolute;
    right: -36px;
    top: 50%;
    transform: translateY(-50%);
    text-decoration: none;
    white-space: nowrap;
  }
  /*** trip detail END ***/

  /*** news ***/
  .news-main .nav-pills .nav-link {min-width: 88px;}
  .news-main .news-item-content {
    padding-left: 30px;
    padding-right: 30px;
  }
  /*** news END ***/
}
@media screen and (min-width: 992px) {
  /*** custom component ***/
  /* 字級設定 */
  .fs-option {
    border-top: 0;
  }
  /* 首頁搜尋元件 */
  .park-finder {
    width: 230px;
    z-index: 1;
  }
  /* 固定搜尋列 */
  .filter-group .form-select {
    min-width: 180px;
  }
  /* 公園特色卡片 .card.topic-card */
  .card.topic-card .wrapper {
    grid-template-columns: 31.2% 58.9%;
    justify-content: space-between;
  }
  .card.topic-card .card-body {
    grid-template-columns: repeat(2, 1fr);
  }
  /*** custom component END ***/

  .navbar {
    padding: 16px 40px 16px 29px;
  }
  .navbar-brand img {
  }
  .navbar-expand-lg .navbar-collapse {
    gap: 36px;
    margin-top: 12px;
  }
  .navbar-expand-lg .navbar-nav {
    padding: 3px 50px 3px 50px;
    background: no-repeat left center / contain url(../images/icon/icon-mascot1.svg), 
    no-repeat right center / contain url(../images/icon/icon-mascot2.svg);
  }
  .navbar-expand-lg  .navbar-nav .nav-item {
    transition: all .35s;
    padding: 4px 0;
  }
  .navbar-expand-lg  .navbar-nav .nav-item + .nav-item .nav-link {
    border-left: 1px solid var(--border-color-default);
  }
  .navbar-expand-lg  .navbar-nav .nav-link {
    padding: 0 15px;
    line-height: 1;
  }
  .navbar .nav-link:hover::after,
  .navbar .nav-link[aria-expanded="true"]::after {
    transform: rotate(180deg);
  }
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
  }
  .dropdown-item + .dropdown-item {
    margin-top: 10px;
  }

  /*** index ***/
  #indexHeroSwiper .swiper-slide .ratio::before {
    min-height: 500px;
  }
  .index .park-finder {
    width: 230px;
    position: absolute;
    left: 5.21vw;
    top: 50%;
    transform: translateY(-50%);
  }
  .index-recommended {
    margin-top: 146px;
  }
  .index-recommended .swiper-container {
    margin-left: calc((100% - 936px) / 2);
    max-width: calc(100% - ((100% - 936px) / 2));
  }
  /*** index END ***/

  /*** park detail ***/
    #parkDetailThumbs {
      width: calc(100% - 88px) !important;
      margin: auto;
  }
  .location-info__content {
    grid-template-columns: 62.6% 1fr;
  }
  .location-info__sidebar {
    border-left: 1px solid var(--color-primary-90);
  }
  .location-service {
    margin: 30px 50px;
  }
  .parkDetail-recommend .frss {
    gap: 24px;
  }
  /*** park detail END***/

  /*** trip detail ***/
  #tripDetailThumbs {
    width: calc(100% - 50px)!important;
    margin: auto;
  }
  .tripD-topic-item figure {
    padding: 20px 36px;
  }
  /*** trip detail END***/
}
@media screen and (min-width: 1200px) {
  /*** index ***/
  .index-recommended .swiper-container {
    margin-left: calc((100% - 1116px) / 2);
    max-width: calc(100% - ((100% - 1116px) / 2));
  }
  /*** index END ***/
  /*** park ***/
  .park-list {
    grid-template-columns: repeat(3, 1fr);
  }
  /*** park END ***/
}
@media screen and (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1304px;
    }

    /*** index ***/
    .index-recommended .swiper-container {
      margin-left: calc( (100% - 1280px) / 2);
      max-width: calc( 100% - ((100% - 1280px) / 2) );
    }
    /*** index END ***/

    /*** park ***/
    .park-main .container {
      max-width: 1256px;
    }
    .park-main .container >.row {
      gap: 32px;
    }
    /*** park END ***/

    /* trip */
    .trip-main .container,
    .news-main .container {
      max-width: 1282px;
    }
    /* trip END */
}
@media screen and (max-width: 991px) {
  /*** custom component ***/
  /* 字級設定 */
  .fs-settings {
    display: flex;
    flex-flow: row nowrap;
  }
  .fs-options {
    transform: scaleX(0);
    transform-origin: left;
  }
  .fs-options.active {
    transform: scaleX(1) translateX(31px);
  }
  .fs-option +.fs-option {
    border-left: 0;
  }
  /* 首頁搜尋元件 */
  .park-finder {
    margin: 20px auto 30px;
  }
  .park-finder form {
    padding: 20px 30px;
  }
  /* 固定搜尋列 */
  .fixed-filter-section {
    order: -1;
    padding: 10px 23px;
  }
  /* 公園特色卡片 .card.topic-card */
  .card.topic-card .card-body {
    padding: 20px 10px;
  }
  /*** custom component END ***/

  .navbar-nav {
    width: 100%;
    margin-bottom: 55px;
  }
  .navbar-collapse {
    padding: 30px 34px;
    background-color: var(--bs-white);
  }
  .navbar-brand {
    padding: 10px;
  }
  .navbar-toggler {
    border: 0;
    padding: 0 20px 0 0;
    z-index: 2;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    font-size: 1.25rem;
    padding: 10px 0;
  }
  .navbar-nav .nav-item.dropdown + .nav-item.dropdown {
    border-top: 1px solid #fff;
  }
  .navbar-nav .dropdown-menu {
    padding: 0 0 9px;
  }
  .dropdown-item {
    font-size: 1.125rem;
    line-height: 1.73;
    padding: 7px 50px;
    white-space: pre-wrap;
  }
}
@media screen and (max-width: 767px) {
  .p-l-2x2 {
    padding: 20px;
  }
  .form-select {
    padding: 10px 30px 10px 14px;
  }
  nav[aria-label="Page navigation"] {
    margin-top: 35px;
  }
  .page-link {
    --bs-pagination-font-size: 1.125rem;
  }
  h1, .h1 {
    font-size: ;
    line-height: ;
  }
  .h2 {
    font-size: 1.4375rem;
  }
  .h3 {
    font-size: 1.3125rem;
    letter-spacing: 2.1px;
  }
  .h4 {
    font-size: 1.125rem;
    line-height: 1.3
  }
  .h6-btn {
    font-size: 1rem;
    line-height: normal;
    letter-spacing: 0.96px;
  }
  .btn-base:not(.btn--vertical-all) {
    font-size: 1rem;
    line-height: normal;
    letter-spacing: 0.96px;
  }
  .btn-base.has-icon {
    padding: 10px 15px;
    width: 190px;
  }
  .btn--vertical {
    padding: 6px 14px;
    letter-spacing: 0.56px;
    line-height: 1;
  }
  /*** custom component ***/
  .en-title {
    font-size: 1.875rem;
    letter-spacing: 1.8px;
  }
  .zh-title {
    letter-spacing: 3.22px;
  }
  /* 固定搜尋列 */
  .fixed-search {
    display: none!important;
  }
  /* 小旅行卡片 .card.journal-card */
  .card.journal-card .card-action {
    padding-bottom: 20px;
    padding-right: 10px;
  }
  /*** custom component END ***/

  /* footer */
  .site-footer {
    padding: 30px 5px 60px;
  }
  .footer-about-nav {
    margin: 20px 0 50px;
  }
  .footer-primary__bottom {
    gap: 20px;
  }
  .branding-section {
    margin-top: 30px;
  }
  .mascot-image {
    width: clamp(111px, 28.24vw, 140px);
  }

  /*** index ***/
  #indexHeroSwiper .swiper-slide .ratio::before {
    padding-top: 66.4%;
  }
  .index-news {
    padding-top: 30px;
  }
  .index-journal {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .card.journal-card .card-heading {
    gap: 6px;
  }
  .card.journal-card .card-body {
    padding: 10px;
  }
  .news-item-content .gap-18 {
    gap: 10px;
  }
  .news-date {
    font-size: .75rem;
    margin-left: 34px;
  }
  .index-news .sec-action {
    margin-top: 35px;
  }
  /*** index END ***/

  body:not(.index) main {
    padding: 24px 0 96px;
  }
  /*** park ***/
  .park-main .park-finder {
    margin-top: 0;
  }
  .park-list {
    margin-top: 30px;
  }
  .park-list .card.park-card .card-body {
    padding-bottom: 12px;
  }

  /*** park detail***/
  .sec-hero-header > .fcsb.align-items-md-end {
    width: 100%;
  }
  .sec-hero-header > .fccb.flex-md-row.gap-14.w-100 {
    align-items: flex-start;
  }
  .sec-hero-announcement .wrapper {
    padding: 4px 10px;
  }
  .location-info__map iframe {
    min-height: 240px;
    border-bottom-left-radius: 0;
  }
  .location-service {
    padding: 30px 18px;
  }
  .parkDetail-recommend .frss {
    gap: 16px;
  }
  /*** park detail END***/

  /*** news ***/
  .news-finder__filters {
    justify-content: center;
  }
  /*** news END ***/

  /*** trip detail ***/
  .trip-schedule-block {
    padding: 10px 8px;
  }
  .trip-schedule-block .wrapper {
    padding-left: 20px;
  }
  .trip-schedule-block::before,
  .trip-schedule-block:last-child::after {
    left: 4px;
  }
  /*** trip detail ***/

  /*** news detail ***/
  .attachment-list {
    gap: 30px;
  }
  .attachment-label {
    font-size: 1rem;
    letter-spacing: 0.96px;
  }
  .newsDetail-main .action-row { margin-top: 32px; }
  /*** news detail END ***/
}
@media screen and (max-width: 480px) {
  .recommendation-list {
    margin-right: -12px;
    min-width: calc(100% - 34px);
  }
}
