/* ========================================
   1. 共用樣式 & 基礎設定
   ======================================== */
:root {
  --textColor: #483d3d;
  --titleColor: #250d61;
  --titleColor2: #015dae;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #fff;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

a {
  text-decoration: none;
  color: #2c283d;
}

section {
  min-height: auto;
}

/* 容器設定 */
.container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  z-index: 1;
}

/* 自定義滾動條 */
div::-webkit-scrollbar {
  width: 6px;
}

div::-webkit-scrollbar-track {
  background: #d1d1d1;
  border-radius: 2px;
}

div::-webkit-scrollbar-thumb {
  background: #6f42c1;
  width: 18px;
  border-radius: 10px;
}

div::-webkit-scrollbar-thumb:hover {
  background: #4719a2;
}

/* 隱藏區域 */
.hidden {
  display: none;
}

/* 連結樣式 */
.link {
  color: #4c4c4c;
  text-decoration: underline;
}

/* 分隔線優化 */
.dashed-divider {
  width: 100%;
  height: 1px;
  border: none;
  border-top: 1.5px dashed #A3A3A3;
  margin: 10px 0;
  opacity: 1;
  background-color: transparent;
}

.dashed-divider.purple {
  border-top-color: #BBA9FC;
}

/* 文字樣式 */
h4,
h5 {
  font-family: "Noto Sans TC", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.5;
}

h5 {
  padding: 0;
  margin: 0;
}

p {
  padding: 0;
  margin: 0;
  color: #4c4c4c;
}

.p-text {
  font-family: "Noto Sans TC", sans-serif;
  color: #4c4c4c;
  font-size: 1.12rem;
  line-height: 1.5;
  text-align: justify;
}

/* 標題與裝飾圖片 */
.title-pattern-image {
  width: 5rem;
  height: auto;
}

.title-pattern-image-line {
  width: 20rem;
  height: auto;
  margin-bottom: 15px;
}

.title-image {
  width: auto;
  height: 3rem;
  margin: 15px 0;
}

.subtitle-image {
  width: auto;
  height: 1.5rem;
}

/* 按鈕共用基礎樣式 (Capsule Buttons) */
[class*="capsule-button"] {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: "Noto Sans TC", sans-serif;
  padding: 10px 20px;
  color: white;
  text-decoration: none;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* 個別按鈕的顏色與特殊 padding 設定 */
.hero_capsule-button {
  padding: 10px 30px;
  background-color: #270089;
}

.hero_capsule-button:hover {
  background-color: #4111b8;
}

.capsule-button {
  background-color: #4719a2;
}

.capsule-button:hover {
  background-color: #6f42c1;
}

.action-capsule-button {
  background-color: #177213
}

.action-capsule-button:hover {
  background-color: #11900d;
}

.milestone-capsule-button {
  background-color: #ef449a;
}

.milestone-capsule-button:hover {
  background-color: #981255;
}

.article-capsule-button {
  background-color: #4724A1;
}

.article-capsule-button:hover {
  background-color: #4111b8;
}

/* 按鈕內元素樣式 */
[class*="capsule-button"] span {
  margin-right: 10px;
}

[class*="capsule-button"] img {
  width: 20px;
  height: auto;
  transition: transform 0.3s ease;
}

[class*="capsule-button"]:hover img {
  transform: translateX(5px);
}

/* ========================================
   2. 導覽列 (Navbar)
   ======================================== */
.custom-navbar {
  background-color: #ffffff;
  padding: 10px 0;
  display: flex;
  align-items: flex-end;
}

.nav-large {
  padding: 16px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
}

.nav-s {
  padding: 16px 0 16px 0px;
  display: none;
}

.navbar .container {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.navbar-brand {
  padding: 0;
}

.navbar-logo {
  height: 24px;
  width: auto;
  display: block;
}

.nav_link {
  display: flex;
  gap: 5px;
  align-items: center;
}

.nav_link img {
  height: 15px;
  display: block;
}

.nav_link a {
  line-height: 1;
}

.nav_link a:hover {
  color: #9157a4;
}

.navbar-nav .nav-link {
  color: #251f3f;
  font-family: "Noto Sans TC", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.5;
}

/* 漢堡選單 */
.navbar-toggler {
  border: 0px;
}

.custom-toggler {
  padding: 0 !important;
}

.navbar-toggler:focus {
  outline: none;
  color: #4719a2;
}

.navbar-collapse {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  background-color: #fff;
  z-index: 1050;
  width: 100%;
  padding: 30px;
  transform: translateX(100%);
  transition: transform 0.3s ease-out;
}

.navbar-collapse.show {
  transform: translateX(0);
}

.navbar-nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 20px;
  height: 100%;
}

.nav-link {
  color: #fff;
  font-size: 18px;
  padding: 10px 0;
  text-align: right;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 15px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1060;
}

.close-icon {
  width: 30px;
  height: 30px;
}

.decor-left-nav {
  position: absolute;
  width: 40%;
  top: 0;
  left: 0;
}

.decor-right-nav {
  position: absolute;
  width: 40%;
  bottom: 0;
  right: 0;
}

/* ========================================
   3. 首頁輪播圖 (Hero Carousel)
   ======================================== */
.logo {
  display: block;
  height: 250px;
}

.carousel-item {
  height: 100vh;
}

.carousel-content {
  height: 100%;
}

.carousel-control-prev,
.carousel-control-next {
  width: 5% !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero01-ESG {
  background-image: url("images/hero_bg01-turtle.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.hero01 {
  background-image: url("images/hero_bg01-ESG.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.hero02 {
  background-image: url("images/hero_bg02.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #dbdbdb;
  margin: 0 6px;
  opacity: 1;
  transition: background-color 0.3s;
  border: none;
}

.carousel-indicators .active {
  background-color: #4719a2;
}

/* ========================================
   4. 共用區塊結構與裝飾 (Sections Abstract & Title)
   ======================================== */
/* 共用 Abstract 標題排版 */
.action-abstract,
.milestone-abstract,
.article-abstract {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

/* 共用 Abstract 背景與置中設定 */
.action-abstract-bg,
.milestone-abstract-bg,
.article-abstract-bg {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-repeat: repeat-x;
  background-size: auto;
}

/* 分別載入獨立的背景圖片顏色 */
.action-abstract-bg {
  background-image: url("images/s01_abstract_bg.png");
}

.milestone-abstract-bg {
  background-image: url("images/s01_abstract_bg.png");
}

.article-abstract-bg {
  background-image: url("images/s03_abstract_bg.png");
}

.action-abstract-l,
.milestone-abstract-l,
.article-abstract-l {
  height: 100%;
}

/* ========================================
   新增區塊: ESG 快樂綠行動 (ESG)
   ======================================== */
.esg-abstract {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.esg-abstract-bg {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-repeat: repeat-x;
  background-size: auto;
  background-image: url("images/s01_abstract_bg.png");
}

.esg-abstract-l,
.esg-abstract-r {
  height: 100%;
}

.esg-section {
  background-color: #FFFDEE;
}

.esg-section h5 {
  color: #326131;
}

.esg-div {
  padding-top: 50px;
}

.esg-title {
  padding-top: 80px;
  background-color: #FFFDEE;
}

.esg-subtitle-tag {
  width: 15%;
}

/* ========================================
   5. 區塊: 快樂永續行動 (Action)
   ======================================== */
.action-section {
  background-color: #FFFDEE;
  position: relative;
}

.action-section h5 {
  color: #326131;
}

.action-div {
  padding-top: 50px;
  padding-bottom: 80px;
}

.action-title {
  padding-top: 80px;
  background-color: #FFFDEE;
}


.action-decort-bottom {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
}

/* 卡片設定 */
.card {
  border: 1px solid #d4d4d4;
  border-radius: 32px;
}

.card-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.action-part2 {
  color: #177213;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.action-part2 img {
  width: 20%;
  height: auto;
}

.action-part3 {
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
  border-radius: 32px;
}

.image-column {
  flex: 4;
  min-width: 300px;
}

.text-column {
  flex: 6;
  min-width: 300px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.text-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.image-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 32px 0 0 32px;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ========================================
   6. 區塊: 綠色里程碑 (Milestone)
   ======================================== */
.milestone-title {
  position: relative;
  padding: 80px 0 0 0;
}

.milestone-title-img {
  width: auto;
  margin: 24px 0;
}

.milestone-decot-title-r {
  position: absolute;
  right: 0;
  top: 0;
  height: 50%;
}

.milestone-decot-title-l {
  position: absolute;
  top: 0px;
  left: 0;
  height: 50%;
  z-index: -2;
}

.milestone-decot-r {
  position: absolute;
  right: 0;
  top: 0;
  height: 10%;
}

.milestone-decot-l {
  position: absolute;
  top: 50%;
  left: 0;
  height: 15%;
  z-index: -2;
}


.milestone-decot-center {
  position: absolute;
  right: 0;
  bottom: 50%;
  z-index: -2;
  height: 16%;
}

.milestone-decot-bottom {
  position: absolute;
  bottom: 0;
  left: 10%;
  z-index: -2;
}

.milestone-section {
  padding: 40px 0 40px;
  position: relative;
  z-index: 0;
  background-color: #FFFDEE;

}


.milestone-content {
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.milestone-part1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #af3b75;
  gap: 20px;
}

.milestone-part1 img {
  width: 30%;
}

.milestone-part2 {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  color: #326131;
  align-items: flex-start;
  gap: 20px;
}

.milestone-part3 {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  color: #326131;
  align-items: flex-start;
  gap: 20px;
  flex-direction: row-reverse;
}

.milestone-part4 {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  color: #af3b75;
  align-items: center;
  gap: 20px;
}

.milestone-part2 .image-section,
.milestone-part3 .image-section {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
}

.milestone-part4 .image-section {
  flex: 5;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.milestone-part2 .image-section img,
.milestone-part3 .image-section img,
.milestone-part4 .image-section img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.milestone-part2 .text-section,
.milestone-part3 .text-section {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.milestone-part4 .text-section {
  flex: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.milestone-part2 .text-content,
.milestone-part3 .text-content,
.milestone-part4 .text-content {
  flex: 1;
  justify-content: center;
}

.milestone-part4 img {
  width: 50%;
}

.milestone-part2 .bottom-image-container,
.milestone-part3 .bottom-image-container,
.milestone-part4 .bottom-image-container {
  width: 100%;
  height: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.milestone-part2 .bottom-image-container img,
.milestone-part3 .bottom-image-container img,
.milestone-part4 .bottom-image-container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* ========================================
   新增區塊：CSR 陪你一起走 (CSR)
   ======================================== */
.csr-title-pattern-image {
  width: 5rem;
  height: auto;
}

.csr-title-pattern-image-line {
  width: 20rem;
  height: auto;
  margin-bottom: 15px;
}

.csr-title-image {
  width: auto;
  height: 3rem;
  margin: 15px 0;
}

.csr-subtitle-image {
  width: auto;
  height: 1.5rem;
}

.csr-title {
  position: relative;
  padding: 80px 0 40px 0;
  background-color: #FAF7FF;
}

.csr-decot-center {
  position: absolute;
  right: 0;
  bottom: 50%;
  z-index: -2;
  height: 10%;
}

.csr-decot-bottom {
  position: absolute;
  bottom: 20px;
  left: 5%;
  z-index: -2;
  height: 10%;
}

.csr-decot-l {
  position: absolute;
  top: 280px;
  left: 2rem;
  height: 50%;
  z-index: -2;
}

.csr-section {

  position: relative;

  background-color: #FAF7FF;
}

.csr-content {
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.csr-abstract {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.csr-abstract-bg {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-repeat: repeat-x;
  background-size: auto;
  background-image: url("images/s03_abstract_bg.png");
}

.csr-abstract-l,
.csr-abstract-r {
  height: 100%;
}

.csr-part2 {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  color: #250D61;
  align-items: center;
  gap: 32px;
}

.csr-part2 .image-section {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
}

.csr-part2 .image-section img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.csr-part2 .text-section {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.csr-part2 .text-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.csr-capsule-button {
  background-color: #4724A1;
}

.csr-capsule-button:hover {
  background-color: #4111b8;
}

/* ========================================
   7. 區塊四：文章與心動小故事 (Article & Stories)
   ======================================== */
.article-title {
  position: relative;
  padding: 80px 0 0 0;
  background-color: #FAF7FF;
}

.article-decot-center {
  position: absolute;
  right: 0;
  bottom: 50%;
  z-index: -2;
  height: 10%;
}

.article-decot-bottom {
  position: absolute;
  bottom: 20px;
  left: 5%;
  z-index: -2;
  height: 10%;
}

.article-decot-r {
  position: absolute;
  right: 0;
  bottom: 10rem;
  height: 70%;
}

.article-decot-l {
  position: absolute;
  top: 280px;
  left: 2rem;
  height: 50%;
  z-index: -2;
}

.article-section {
  padding: 40px 0;
  position: relative;
  z-index: 0;
  background-color: #FAF7FF;
}

.article-content {
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.article-part1-img {
  overflow: hidden;
  border-radius: 24px;
}

.article-part1-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.article-part3-text {
  font-family: "Noto Sans TC", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

.article-part1 {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.article-part1 h5 {
  color: #250D61;
  text-align: center;
}

.article-part1-area1,
.article-part1-area2 {
  display: flex;
  align-items: center;
  gap: 20px;
}

.article-part1-area2 {
  flex-direction: row-reverse;
}

.article-part1-area1 .image,
.article-part1-area2 .image {
  flex: 1;
  overflow: hidden;
  min-width: 300px;
  border-radius: 24px;
}

.article-part1-area1 .image img,
.article-part1-area2 .image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.article-part1-area1 .text,
.article-part1-area2 .text {
  object-fit: contain;
  flex: 1;
}

.article-part1 .article-part1-l {
  display: block;
}

.article-part1 .article-part1-s {
  display: none !important;
}

.article-part2 {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  color: #250D61;
  align-items: center;
  gap: 32px;
}

.article-part3 {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  color: #250D61;
  align-items: center;
  gap: 32px;
  flex-direction: row-reverse;
}

.article-part2 .image-section,
.article-part3 .image-section {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
}

.article-part2 .image-section img,
.article-part3 .image-section img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.article-part2 .text-section,
.article-part3 .text-section {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-part2 .text-content,
.article-part3 .text-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.article-part2 .bottom-image-container,
.article-part3 .bottom-image-container {
  width: 100%;
  height: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.article-part2 .bottom-image-container img,
.article-part3 .bottom-image-container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Stories 獨立區塊 */
.stories-title {
  position: relative;
  padding: 80px;
}

.stories-decot-r {
  position: absolute;
  right: 0;
  bottom: -80px;
  height: 60%;
}

.stories-decot-l {
  position: absolute;
  bottom: -80px;
  left: 0;
  height: 60%;
}

.stories-section {
  background-color: #ecf9fe;
  padding: 80px 0 80px 0;
}

.stories-section h5 {
  color: #250d61;
}

.stories-div {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.stories-sub {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stories-sub .title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.stories-sub img {
  width: 30%;
}

.stories-sub p {
  text-align: left;
}

.stories-part1 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.stories-part2 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-direction: row-reverse;
}

.stories-part1 .image,
.stories-part2 .image {
  flex: 5;
  overflow: hidden;
  min-width: 300px;
}

.stories-part1 .image img,
.stories-part2 .image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.stories-part1 .text,
.stories-part2 .text {
  flex: 5;
  object-fit: contain;
  display: flex;
  flex-direction: column;
}

/* ========================================
   8. Modal (故事彈跳視窗)
   ======================================== */
.modal-content {
  padding: 20px;
}

.modal-body {
  display: flex;
  flex-direction: column;
  gap: 15px;
  overflow-x: hidden;
}

.story-img {
  border-radius: 15px;
}

.btn-close {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 0.5rem;
  background-color: white;
  border-radius: 0.25rem;
  opacity: 0.7;
  z-index: 99999;
}

.btn-close:hover {
  opacity: 1;
}

/* ========================================
   9. 其他元件 (Notes, Tabs, Footer, etc.)
   ======================================== */
.note-bg {
  background: #333;
  background-image: url(images/00-06_note-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.note-div {
  padding-top: 100px;
  padding-bottom: 100px;
}

.note p {
  color: #fff;
}

.noto-title {
  height: 2.1rem;
  width: auto;
}

.note-main {
  color: #fff;
  font-size: 0.8rem;
  line-height: 1.9;
  height: 20rem;
  overflow-y: scroll;
  padding-right: 15px;
}

.nav-tabs {
  display: flex;
  gap: 15px;
  border-bottom: none !important;
}

.nav-tabs .nav-link {
  border-radius: 50px;
  background-color: #fff;
  color: #4719a2;
  border: 2px solid #4719a2;
  padding: 10px 20px;
  transition: background-color 0.3s, color 0.3s;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-link:hover {
  background-color: #4719a2;
  color: #fff;
  border-color: #4719a2;
}

footer {
  width: 100%;
  background-color: #251f3f;
}

/* ========================================
   10. Media Queries (響應式設計)
   ======================================== */
@media (max-width: 1200px) {
  .nav-large {
    display: none;
  }

  .nav-s {
    display: block;
  }
}

@media (min-width: 768px) {
  .navbar-collapse {
    width: 50%;
  }
}

@media (max-width: 768px) {

  /* 文字標題與間距重置 */
  .title-pattern-image {
    height: 3rem;
  }

  .title-pattern-image-line {
    height: 0.3rem;
  }

  .title-image {
    height: 2rem;
    margin: 5px 0;
    max-width: 100%;
    padding: 0 1%;
  }

  .subtitle-image {
    height: 1.3rem;
  }

  .noto-title {
    height: 1.6rem;
  }

  .p-text {
    font-size: 1rem;
  }

  h4,
  h5 {
    font-size: 1.1rem !important;
  }

  .esg-abstract h4 {
    line-height: 1.5 !important;
    margin: 0 0 8px 0 !important;
    font-size: 1rem !important;
  }

  .action-abstract h4,
  .milestone-abstract h4,
  .article-abstract h4,
  .stories-abstract h4 {
    line-height: 1.5 !important;
    margin: 0 0 8px 0 !important;
    font-size: 1rem !important;
  }

  /* 首頁 Banner 響應式 */
  .logo {
    height: 150px;
  }

  .hero01 {
    background-image: url("images/hero_bg01-ESG_sm.jpg");
  }

  .hero02 {
    background-image: url("images/hero_bg02_sm.jpg");
  }

  .hero01-ESG {
    background-image: url("images/hero_bg01-turtle_sm.jpg");
  }

  /* 按鈕寬度 100% */
  [class*="capsule-button"] {
    width: 100%;
    display: flex;
  }

  /* ESG 快樂綠行動 */
  .esg-title {
    padding: 40px 0px 0px 0px;
  }

  /* 快樂永續行動 */
  .action-title {
    padding: 10px 0px;
  }

  .action-bg-tree01 {
    height: 200%;
    top: 0;
    left: 2%;
  }

  .action-bg-tree02 {
    height: 200%;
    bottom: 20%;
    right: 2%;
  }

  .action-part2 img {
    width: 40%;
  }

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

  .image-column,
  .text-column {
    flex: 1 0 100%;
    text-align: center;
  }

  .image-container {
    height: 300px;
    border-radius: 32px 32px 0 0;
  }

  /* 綠色里程碑 */
  .milestone-title-img {
    width: 100%;
  }

  .milestone-decot-title-r,
  .milestone-decot-title-l {
    height: 30%;
  }

  .milestone-decot-r,
  .milestone-decot-l,
  .s02_deco-l,
  .milestone-decot-center,
  .milestone-decot-bottom {
    display: none;
  }

  .milestone-content {
    padding: 20px;
  }

  .milestone-part1 img {
    width: 80%;
  }

  .milestone-part2,
  .milestone-part3,
  .milestone-part4 {
    flex-direction: column;
    text-align: center;
  }

  .milestone-part2 image-section,
  .milestone-part3 image-section,
  .milestone-part4 image-section {
    min-height: 300px;
  }

  .milestone-part2 bottom-image-container,
  .milestone-part3 bottom-image-container,
  .milestone-part4 bottom-image-container {
    height: 150px;
  }

  .milestone-part2 .image-section,
  .milestone-part2 .text-section,
  .milestone-part3 .image-section,
  .milestone-part3 .text-section,
  .milestone-part4 .image-section,
  .milestone-part4 .text-section {
    flex: 100%;
  }

  .milestone-part2 .text-section,
  .milestone-part3 .text-section,
  .milestone-part4 .text-section {
    flex-direction: column;
  }

  /* 文章與心動小故事 */
  .article-decot-r {
    height: 60%;
  }

  .article-decot-l,
  .article-decot-center,
  .article-decot-bottom {
    display: none;
  }

  .article-content {
    padding: 20px;
  }

  .article-part1-area1,
  .article-part1-area2 {
    flex-direction: column;
  }

  .article-part1-area1 .image .text,
  .article-part1-area2 .image .text {
    flex: 100%;
  }

  .article-part1-area1 .text {
    padding: 0;
  }

  .article-part1-l {
    display: none;
  }

  .article-part1-s {
    display: block;
  }

  .article-part2,
  .article-part3 {
    flex-direction: column;
  }

  .article-part2 image-section,
  .article-part3 image-section {
    min-height: 300px;
  }

  .article-part2 bottom-image-container,
  .article-part3 bottom-image-container {
    height: 150px;
  }

  .article-part2 .image-section,
  .article-part2 .text-section,
  .article-part3 .image-section,
  .article-part3 .text-section {
    flex: 100%;
  }

  .article-part2 .text-section,
  .article-part3 .text-section {
    flex-direction: column;
  }

  /* CSR 響應式 */
  .csr-title-pattern-image {
    height: 3rem;
  }

  .csr-title-pattern-image-line {
    height: 0.3rem;
  }

  .csr-title-image {
    height: 2rem;
    margin: 5px 0;
  }

  .csr-subtitle-image {
    height: 1.3rem;
  }

  .csr-decot-l,
  .csr-decot-center,
  .csr-decot-bottom {
    display: none;
  }

  .csr-title {
    padding: 40px 0 40px 0;
  }

  .csr-content {
    padding: 20px;
  }

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

  .csr-part2 .image-section,
  .csr-part2 .text-section {
    flex: 100%;
  }

  .csr-part2 .text-section {
    flex-direction: column;
  }

  .csr-item .text-section {
    width: 100%;
    padding: 0 15px;
  }

  .csr-item .text-content {
    width: 100%;
  }



  /* Stories 獨立區塊 */
  .stories-title {
    padding: 40px 0 40px 0;
  }

  .stories-decot-r,
  .stories-decot-l {
    bottom: -30px;
    height: 40%;
  }

  .stories-decot-center,
  .stories-decot-bottom {
    display: none;
  }

  .stories-part1,
  .stories-part2 {
    flex-direction: column;
  }

  .stories-part1 .text .image,
  .stories-part2 .text .image {
    flex: 100%;
  }

  /* 其他調整 */
  .middle-section {
    gap: 20px;
  }

  .bank-point-section-d {
    gap: 30px;
  }

  .story-item .text-section {
    width: 100%;
    padding: 0 15px;
  }

  .story-item .text-content {
    width: 100%;
  }

  #event-20th {
    margin-top: 0px;
    padding-top: 100px;
    padding-bottom: 50px;
  }

  .decor-left {
    top: 50%;
    width: 30%;
  }

  .decor-right {
    top: 0%;
    width: 30%;
  }

  .decor-right-end {
    width: 15%;
  }
}
