@charset "utf-8";

/* === 全域基礎設定 (Base Reset) === */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft JhengHei", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.3;
  letter-spacing: 0.05em;
  color: #333;
  -webkit-font-smoothing: antialiased;
  /* 選用：讓 Mac 系統下的字體渲染更滑順 */
}

h1,
h2,
h3,
h4,
h5,
h6,
ul,
li,
ol,
dl,
dd {
  margin: 0;
  padding: 0;
}

img {
  border: none;
  vertical-align: middle;
}

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

table tr td,
table tr th {
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

/* === 表單設定 (Forms) === */
input,
select,
textarea,
button {
  font-family: inherit;
  font-size: 100%;
  vertical-align: middle;
  outline: none;
  /* 移除點擊時的預設藍框，建議需另外設計 :focus 樣式以維持無障礙體驗 */
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea {
  border: 1px solid #ccc;
  padding: 8px 12px;
  color: #666666;
  border-radius: 0;
  /* 確保在 iOS 上不會有預設圓角 */
}

textarea {
  resize: vertical;
  /* 建議：只允許垂直調整大小，避免破壞版面 */
}

/* 移除按鈕預設外觀 */
input[type="submit"],
input[type="reset"],
input[type="button"],
button {
  cursor: pointer;
  -webkit-appearance: none;
  /* iOS Safari */
  appearance: none;
  /* 標準現代語法 */
  border: none;
  /* 建議：通常自訂按鈕會需要移除預設邊框，視需求開啟 */
  background: transparent;
  /* 建議：重置背景色 */
}

/* === 行動版設定 === */
#navmenu {
  display: none;
}

#menu-btn {
  display: none;
}

#toolbarnav {
  display: none;
}

/* === 主內容 === */
#w {
  margin: 0;
}

#w #pagebody {
  margin: 0;
}

#w #pagebody #content {
  padding-top: 100px;
}

/* === Header 基礎設定 === */
header {
  position: fixed;
  width: 100%;
  height: 100px;
  z-index: 250;
  color: #fff;
  box-shadow: 0 15px 30px -2px rgba(0, 0, 0, 0.1);
}

header.fix {
  height: 50px;
  transition: all 0.3s ease-in-out;
  background: linear-gradient(to right, #b0665d, #bf782a);
}

/* === Logo 設定 === */
#logo {
  position: absolute;
  top: 15px;
  left: 15px;
  background-image: url(../images/svg/logo.svg);
  background-position: left center;
  background-repeat: no-repeat;
  padding-left: 80px;
}

header.fix #logo {
  background-image: none;
  transition: all 0.3s ease-in-out;
  padding-left: 0;
  top: 5px;
  left: 5px;
}

header #logo h1,
header #logo h2 {
  font-size: 2rem;
}

#logo a {
  display: block;
  padding-top: 5px;
  color: #6d6d6d;
  font-weight: 500;
}

header.fix #logo a {
  display: block;
  padding-top: 0;
  color: #fff;
  font-size: 70%;
}

header.fix #logo div.big {
  margin-bottom: 0;
}

#logo div.small {
  font-size: 0.5em;
  padding-left: 5px;
}

header.fix #logo div.small {
  padding-left: 0;
}

/* === 導覽列 (Navigation) 設定 === */
nav {
  position: absolute;
  top: 35px;
  right: 15px;
}

header.fix nav {
  top: 0;
  right: 5px;
}

header.fix nav li,
header.fix nav li a {
  color: #fff;
}

/*第一層*/
ul.navigation li {
  display: inline-block;
  position: relative;
  color: #434343;
  font-size: 1.2rem;
  line-height: 50px;
  padding: 0 15px;
}

ul.navigation li a {
  display: block;
}

ul.navigation li:hover a {
  color: #fff;
}

/*第二層*/
ul.navigation li>ul {
  position: absolute;
  left: 0;
  width: 100%;
  display: none;
}

ul.navigation li:hover>ul {
  display: block;
}

ul.navigation li>ul>li {
  background: #433d3b;
  color: #fff;
  width: 100%;
  text-align: center;

  line-height: 25px;
  padding: 10px 0;
}

ul.navigation li>ul>li:hover {
  background: #433d3b;
  color: #fff;
}

/*連結高度*/
.addheight:hover {
  background: #433d3b;
  color: #fff;
}

.addheight ul li a {
  color: #fff;
  font-size: 1rem;
}

/*統一設定*/
.loader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 999999;
  background: url(../images/loader.gif) center no-repeat #fbfbfb;
}

.rel {
  position: relative;
}

.container {
  margin: 0 auto;
  padding: 10px;
  max-width: 1200px;
}

.web {
  display: block;
}

.mobile {
  display: none;
}

.red {
  color: #b81c22;
  font-weight: 600;
}

/*首頁*/
#banner {
  background-image: url(../images/banner.jpg);
  background-repeat: no-repeat;
  background-position: center;
  height: 600px;
  padding-top: 200px;
  text-align: right;
}

#banner h3 {
  font-size: 1.4em;
  font-weight: 600;
  color: #6d6d6d;
  padding-left: 60px;
}

#banner h2 {
  font-size: 2.3em;
  font-weight: 700;
  color: #bf782a;
  padding-bottom: 25px;
}

#banner a {
  display: inline-block;
  background-color: #bdac96;
  font-size: 1.1em;
  font-weight: 500;
  color: #fff;
  padding: 10px 25px;
  border-radius: 25px;
  cursor: pointer;
}

#banner a:hover {
  background-color: #bd964f;
  color: #fff;
  transition: all 0.5s ease-in-out;
}

/*首頁關於*/
#index-about {
  padding: 50px 0;
  text-align: center;
}

#index-about h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #bf782a;
  padding-bottom: 25px;
}

#index-about p {
  color: #666666;
  line-height: 1.6;
}

#out-items {
  display: flex;
  padding-top: 80px;
  gap: 20px;
}

#out-items .item {
  float: 1;
  text-align: center;
  margin-bottom: 30px;
}

#out-items .item img {
  border-radius: 100%;
  overflow: hidden;
  margin-bottom: 25px;
  border: 10px solid #eeeeee;
}

#out-items .item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #525252;
  padding: 15px 0;
}

#out-items .item p {
  font-size: 1rem;
  color: #666666;
  line-height: 1.6;
  padding: 0 10px;
}

/*首頁聯絡我們*/
#index-contact {
  background-color: #feecd5;
  background-image: url(../images/index-contact-bg.jpg);
  background-repeat: no-repeat;
  background-position: left center;
  height: 387px;
  margin-top: 50px;
  position: relative;
}

#contact-txt {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(to right, #d0bba7 70%, #feecd5 100%);
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 10% 100%, 0 50%);
  padding: 80px 40px 50px 12%;
  box-sizing: border-box;
  color: #fff;
}

#contact-txt h3 {
  font-size: 2rem;
  font-weight: 600;
  padding-bottom: 25px;
}

#contact-txt li {
  margin-bottom: 10px;
  font-size: 1.1em;
  font-weight: 600;
}

/*首頁環境介紹*/
#index-environment {
  padding: 50px 0;
  text-align: center;
}

#index-environment h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #bf782a;
  padding-bottom: 25px;
}

#index-environment p {
  color: #666666;
  line-height: 1.6;
  padding-bottom: 40px;
}

/*首頁環境介紹-圖片展示*/
.env-gallery-container {
  display: flex;
  gap: 20px;
  margin: 0 auto;
}

/* 左側：大圖區 */
.gallery-main-image {
  flex: 3;
  max-height: 670px;
}

.gallery-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 右側：縮圖滾動區 */
.gallery-thumbnails {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 670px;
  overflow-y: auto;
  scrollbar-width: thin;
  /* 美化滾動條 (可選) */
  scrollbar-color: #ccc #f0f0f0;
  /* 美化滾動條 (可選) */
}

.gallery-thumbnails img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  cursor: pointer;
  transition: opacity 0.3s ease;
  border: 3px solid transparent;
  /* 預留邊框空間 */
}

.gallery-thumbnails img:hover {
  opacity: 0.7;
}

/* 目前選中的縮圖樣式 */
.gallery-thumbnails img.active {
  opacity: 1;
  border-color: #bf782a;
}

/*內頁編輯器*/
.ckediter {
  margin: 0 auto;
  padding: 10px;
  box-sizing: border-box;
}

.ckediter img {
  max-width: 100%;
  height: auto !important;
}

/* 排除掉 .ckediter 裡的內容，讓編輯器恢復預設 */
.ckediter h1,
.ckediter h2,
.ckediter h3,
.ckediter h4,
.ckediter h5,
.ckediter h6,
.ckediter ul,
.ckediter ol,
.ckediter li {
  margin: revert;
  padding: revert;
}

.ckediter blockquote {
  margin: 25px 0;
  padding: 15px 25px;
  border-left: 5px solid #bf782a;
  background-color: #fcf8f3;
  color: #525252;
  font-style: normal;
  line-height: 1.8;
}

#main {
  max-width: 800px;
  margin: 35px auto;
}

/*回上頁*/
.back {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 50px 10px;
  cursor: pointer;
}

/*麵包屑*/
#sitemap ul {
  text-align: right;
  padding: 15px 15px 5px 0;
}

#sitemap li {
  display: inline-block;
  font-size: 0.9em;
  color: #666666;
  padding: 0 5px;
}

#sitemap li:after {
  content: " / ";
  margin-left: 5px;
  color: #dbad89;
}

#sitemap li:last-child:after {
  content: "  ";
}

#sitemap li a {
  color: #666666;
}

#sitemap li a:hover {
  color: #b7794a;
}

#sitemap li:last-child {
  border-right: none;
  color: #bd9474;
}

/*分頁*/
#page {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 60px;
  font-family: sans-serif;
}

#page li {
  list-style-type: none;
}

#page .page-numbers {
  display: inline-block;
  color: #999;
  text-decoration: none;
  font-size: 15px;
  padding: 5px 10px;
  margin: 0 3px;
  transition: color 0.2s ease;
}

#page a.page-numbers:hover {
  color: #c83c23;
}

#page .page-numbers.current {
  color: #333;
  font-weight: bold;
  cursor: default;
  pointer-events: none;
}

#page .page-numbers i {
  font-size: 12px;
  vertical-align: middle;
}

/*內頁共用設定*/
h1.title {
  font-size: 2rem;
  font-weight: 700;
  color: #bf782a;
  text-align: center;
  padding: 50px 0;
}


/*服務項目top*/
#banner-inner {
  background-image: url(../images/daycare-service-banner.jpg);
  background-repeat: no-repeat;
  background-position: center;
  height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  ;
}

#banner-inner h1 {
  font-size: 2.5em;
  font-weight: 700;
  color: #938470;
  text-align: center;
}

#banner-inner-nav {
  position: absolute;
  bottom: -20px;
  background-color: #fff;
  border-radius: 50px;
  box-shadow: 0 0 50px 20px rgba(0, 0, 0, .05);
  padding: 20px 25px;
  display: flex;
  justify-content: center;
  left: 50%;
  transform: translateX(-50%);
}

#banner-inner-nav li {
  display: inline-block;
  margin: 0 15px;
  font-size: 1.2em;
  font-weight: 600;
}

#banner-inner-nav li::after {
  content: "|";
  margin-left: 25px;
  color: #eee;
}

#banner-inner-nav li:last-child::after {
  content: "";
}

#banner-inner-nav li a {
  color: #ac9b88;
}

#banner-inner-nav li a:hover {
  color: #bf782a;
  transition: all 0.3s ease-in-out;
}

/*服務項目-日照服務*/
#daycare {
  padding: 50px 0;
  border-bottom: 1px solid #eeeeee;
}

#daycare h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #bf782a;
  padding-bottom: 50px;
  text-align: center;
}

#daycare .column-container {
  display: flex;
  flex-direction: row;
  gap: 40px;
}

#daycare .column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#daycare .column .item {
  margin-bottom: 25px;
}

#daycare .column .item h3 {
  font-size: 1.3em;
  font-weight: 600;
  color: #525252;
  padding-bottom: 10px;
}

#daycare .column .item p {
  font-size: 1em;
  line-height: 1.6;
  margin: 15px 0 10px 0;
}

#daycare .column .item li {
  line-height: 1.6;
}

#daycare .column .item ul {
  margin-top: 20px;
  list-style-type: none;
}

#daycare .column .item li {
  line-height: 1.6;
  margin-bottom: 10px;
}

#daycare .column .item li::before {
  content: " ‧ ";
  color: #1b1b1b;
}


/*服務項目-收費及補助標準*/
#fees {
  padding: 50px 0;
  border-bottom: 1px solid #eeeeee;
}

#fees h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #bf782a;
  padding-bottom: 50px;
  text-align: center;
}

#fees ul {
  margin-top: 20px;
  list-style-type: none;
}

#fees li {
  line-height: 1.6;
  margin-bottom: 10px;
}

#fees li::before {
  content: " ‧ ";
  color: #1b1b1b;
}

/*表格*/
table.surgery-table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Noto Sans TC", sans-serif;
  margin: 2rem 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

table.surgery-table th,
table.surgery-table td {
  border: 1px solid #ddd;
  padding: 1rem;
  text-align: center;
  vertical-align: middle;
}

table.surgery-table th {
  background-color: #f2f2f2;
  color: #333;
  font-size: 1.1rem;
}

table.surgery-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

table.surgery-table caption {
  caption-side: top;
  text-align: center;
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

table.surgery-table b {
  font-family: "Noto Serif TC", serif;
  font-size: 1.2em;
}

/*服務項目-長照服務申請流程*/
#apply {
  padding: 50px 0;
}

#apply h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #bf782a;
  padding-bottom: 50px;
}

#apply .column-container {
  display: flex;
  flex-direction: row;
  gap: 40px;
}

#apply .column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#apply .column h3 {
  font-size: 1.3em;
  font-weight: 600;
  color: #525252;
  padding-bottom: 10px;
}

#apply .column li {
  font-size: 1em;
  line-height: 1.6;
  margin: 15px 0 10px 15px;
}

#apply a {
  display: inline-block;
  color: #bf782a;
  margin: 15px 0;
  padding: 5px;
  border-bottom: 1px solid #bf782a;
  align-self: flex-start;
}

#apply a:hover {
  color: #938470;
  border-bottom: 1px solid #938470;
  transition: all 0.3s ease-in-out;
}

.flowchart-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 800px;
}

/* 流程步驟方塊 */
.flow-step {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 16px 24px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin: 10px 0;
  width: 90%;
  max-width: 450px;
  /* 限制方塊最大寬度 */
  box-sizing: border-box;
  /* 確保 padding 不會撐開寬度 */
}

.flow-step p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
}

.flow-step span {
  font-size: 0.9rem;
  color: #666;
}

.flow-arrow {
  font-size: 24px;
  color: #b0b0b0;
  margin: 4px 0;
}

.flow-arrow-decision {
  font-size: 24px;
  margin: 4px 0;
}

.flow-decision-branch {
  display: flex;
  justify-content: space-around;
  width: 100%;
  margin-top: 10px;
}

/* 個別路徑 (YES 和 NO) */
.flow-path {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 48%;
}

.path-label {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.path-yes .path-label {
  color: #e74c3c;
}

.path-yes .flow-arrow-decision {
  color: #e74c3c;
}

.path-yes .flow-step {
  background-color: #fff6f5;
  border-color: #f5c6c0;
}

.path-yes .step-final-yes p {
  color: #c0392b;
  font-weight: 600;
}

.path-no .path-label {
  color: #95a5a6;
}

.path-no .flow-arrow-decision {
  color: #95a5a6;
}

.path-no .flow-step {
  background-color: #f8f9f9;
  border-color: #bdc3c7;
}

/*活動訊息*/
#event-photos {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

#event-photos .album-card {
  width: calc((100% - 80px) / 3);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

#event-photos .album-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: top center;
  /*裁切從預設保留中間變成保留上方*/
}

#event-photos .album-info {
  padding: 15px 15px 25px 15px;
}

#event-photos .album-info h3 {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#event-photos .album-info p {
  font-size: 1rem;
  color: #666;
  margin: 4px 0 0;
}

/*活動訊息內頁*/
.title-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #eeeeee;
  padding-bottom: 10px;
  margin-bottom: 30px;
}

.title-top h1 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #bf782a;
}

.title-top .year {
  font-size: 0.8rem;
  font-weight: 500;
  color: #666666;
  margin-top: 5px;
  text-align: center;
}

.title-top .date {
  font-size: 1rem;
  font-weight: 700;
  color: #666666;
  line-height: 1;
}

/*衛教文章*/
.news {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid #dcdcdc;
  margin: 15px 0;
  padding: 15px 0;
}

.newsin {
  flex-grow: 1;
}

.newsin h3 {
  color: #626262;
  font-size: 1.2em;
  line-height: 1.4;
  font-weight: bold;
  transition: color 0.3s;
}

.newsin a:hover h3 {
  color: #000;
}

.newsdate {
  text-align: right;
  flex-shrink: 0;

}

.newsdate .date {
  font-size: 1rem;
  font-weight: 700;
  color: #666666;
  line-height: 1;
}

.newsdate .year {
  font-size: 0.8rem;
  font-weight: 500;
  color: #666666;
  margin-top: 5px;
}


/*衛教文章+線上QA-分類*/
.sublink-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1em;
  flex-wrap: wrap;
}

.sublink-left {
  flex: 1;
}

.sublink-right {
  flex: 1;
  text-align: right;
  padding-bottom: 10px;
}

.sublink-right select {
  border: 1px solid #bfbfbf;
  border-radius: 6px 6px 0 0;
  font-size: 1em;
}

.sublink-right select:focus,
.sublink-right option:focus {
  outline: none;
}

/*線上QA*/
.qa-list {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.qa-item {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 1em;
  border: 1px solid #ccc;
  border-radius: 6px;
  transition: background 0.3s;
}

.qa-item:hover {
  background: #f9f9f9;
}

.qa-item dl {
  margin: 0;
}

.qa-item dt {
  font-weight: bold;
  color: #222;
}

.qa-item dd {
  margin: 0.5em 0 0;
  color: #666;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

/*線上QA內頁*/
.qa-article {
  max-width: 800px;
  margin: 30px auto 0 auto;
  background: #fff;
  padding: 35px 25px 10px 25px;
}

.question-title {
  font-size: 1.6em;
  line-height: 1.3em;
  margin-bottom: 0.5em;
  color: #222;
}

.meta {
  font-size: 0.9em;
  color: #888;
  margin-bottom: 1.5em;
}

.answer-body p {
  line-height: 1.6;
  margin-bottom: 1em;
}

.answer-body img {
  max-width: 100%;
  margin-top: 1em;
  border-radius: 6px;
}

.doctor-info {
  background: #f9f9f9;
  padding: 1em;
  margin-top: 2em;
  border-left: 4px solid #ccc;
}

.center-red {
  text-align: center;
  color: #C91E21;
  font-size: 0.8em;
}

/*預約諮詢資料*/
#contact {
  display: flex;
  flex-direction: row;
}

#contact-img {
  flex: 1;
  padding: 0 25px;
  letter-spacing: 0.5px;
  color: #666666;
  margin-bottom: 50px;
}

#contact-info {
  flex: 1;
}

#contact-info h2 {
  font-size: 1.5em;
  font-weight: 800;
  color: #666666;
  padding-bottom: 25px;
}

#contact-info ul.clinic-info li {
  list-style-type: none;
  padding-bottom: 10px;
  color: #666666;
}

#contact-info ul.clinic-info li a {
  color: #6a6260;
  font-weight: 800;
}

#contact-info ul.clinic-info li i {
  color: #c0ad94;
}


/*診所資訊-社群*/
#contact-info ul.socialicon {
  list-style-type: none;
  margin-top: 15px;
}

#contact-info ul.socialicon li a {
  display: inline-block;
  margin-bottom: 15px;
  padding: 5px 15px 5px 5px;
  border-radius: 50px;
  background: #fff;
  border: 1px solid #e3bf8c;
  color: #af9f87;
  font-size: 0.9em;
}

#contact-info ul.socialicon li a:hover {
  color: #eee;
  transition: all .5s ease-in-out;
}

#contact-info ul.socialicon li a i {
  padding-left: 3px;
}

/* 額外針對每個社群設定 hover 色 */
#contact-info ul.socialicon li a.line:hover {
  background: #06C755;
}

#contact-info ul.socialicon li a.facebook:hover {
  background: #1877F2;
}

/* 小圓形 icon 容器 */
.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: white;
  font-size: 16px;
  flex-shrink: 0;
}

/* 各社群的背景色 */
.line-icon {
  background-color: #06C755;
}

.instagram-icon {
  background-color: #E1306C;
}

.facebook-icon {
  background-color: #1877F2;
}




/*尾部*/
footer {
  padding: 25px 15px;
  background: #f6f6f6;
  display: flex;
  justify-content: space-between;
}

footer li {
  list-style-type: none;
}

footer .column-left {
  display: flex;
  flex-direction: column;
  padding: 25px 5px 5px 25px;
}

footer .column-right {
  display: flex;
  flex-direction: column;
  padding: 25px 25px 5px 5px;
}

#footernav li {
  margin-top: 15px;
  margin-left: 15px;
}

#footernav02 li {
  font-size: 1rem;
  padding-bottom: 8px;
  font-style: normal;
}

#footernav02 li a {
  color: #1b1b1b;
}

#footernav li#footerlogo {
  background-image: url(../images/svg/logo.svg);
  background-position: left center;
  background-repeat: no-repeat;
  padding-left: 100px;
  padding-top: 25px;
  color: #6d6d6d;
}

#footernav li#footerlogo div.big {
  font-size: 2rem;
  margin-bottom: 5px;
}

#footernav li#footerlogo div.small {
  font-size: 1em;
}

#footernav li#copyright {
  font-size: 0.8rem;
  color: #1b1b1b;
  padding-left: 5px;
}

#bottom {
  width: 100%;
  background: #a88b54;
  padding: 10px;
  color: #eeeeee;
  text-align: center;
  font-size: 0.8em;
}

/*網站全局右下社群*/
#line-btn {
  position: fixed;
  right: 10px;
  bottom: 50px;
  border-radius: 50px;
  padding: 10px 5px;
  background: #fff;
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#line-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  color: #fff;
  font-size: 1.5em;
  transition: transform 0.1s ease-out;
  margin: 0 auto;
}

#line-btn a.line {
  background: #06C755;
}

#line-btn a.fb {
  background: #1877F2;
}

#line-btn a:hover {
  transition: all .5s ease-in-out;
  transform: scale(1.2);
}