@charset "UTF-8";
/* CSS Document */
* {
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
}
body, html { 
    font-family: 'Noto Sans TC', "微軟正黑體", "Microsoft JhengHei", sans-serif;
    color: #333; 
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    width: 100%; 
    overflow-x: hidden; 
}

/* 所有圖片響應式伸縮 */
img { 
    max-width: 100%; 
    height: auto; 
    display: block; 
} 

/* --- HEADER --- */
:root {
    --header-height: 400px;
    --banner-top-height: 60px;
}
.site-header { 
    width: 100%; 
	padding: 0;
    position: sticky; /* Header 固定在頂端 */
    top: 0; 
    z-index: 999; 
    border-bottom: none; 
	line-height: 0;
    height: var(--header-height);

}

.header-inner { 
    display: flex; 
    justify-content: space-between;
	align-items: flex-start;
    margin: auto; 
	line-height: 0;
    height: 100%; 
    max-width: 100%; 
	position: relative;
}

/* Logo Wrapper*/
.logo-wrapper {
    padding: 0 !important; 
    display: flex;
    align-items: flex-start;
    height: 100%;
    max-width: 40%;
    flex-shrink: 0; 
}

.logo { 
    display: block; 
    width: 100%;
    height: auto;
	max-height: var(--header-height);
    margin: 0;
}
.header-icon-small {
    align-self: flex-start; 
    margin: -3.5% auto 0; 
    z-index: 998; 
    flex-grow: 1;
    text-align: center; 
}

.small-icon-img {
    width: 40%; 
    height: auto;
	max-width: 600px;
    object-fit: contain;
    display: inline-block; 
    line-height: 0;
    transition: transform 0.3s ease;
}

.small-icon-img:hover {
    transform: scale(1.05); 
}
.main-nav { 
    padding-right: 0px; 
}
/* Menu Icon 相關設定 */
#navMenu {
    position: fixed; 
    top: 0px !important; 
    right: 0px; 
    transform: none !important; 
    z-index: 1000;
    line-height: 0;
}
.menu-toggle {
    width: 90px; 
    height: 90px;
    background: transparent;
    padding: 0;
	padding-right: 0px !important;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    display: block; 
}

/* 漢堡圖片樣式 */
.hamburger-icon {
	width: 100%;
    height: 100%;
    min-width: 0 !important;
}
/* 預設只顯示漢堡圖示 */
.main-nav .menu-close-icon {
    display: none; 
}
/* 點擊展開時，顯示關閉圖示，隱藏漢堡圖示 */
nav.active .menu-open-icon {
    display: none;
}
nav.active .menu-close-icon {
    display: block; 
}


/* 選單文字選項 (收合狀態，點擊後展開) */
.main-nav .menu-list { 
    display: none; 
    position: absolute; 
    top: 90px;
    bottom: auto !important; 
    right: 0; /* 靠右側對齊 */
    flex-direction: column; 
    background: #F8D4A4;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    width: 150px;
    border-radius: 5px;
    padding: 5px; 
    margin-bottom: 0;
}

/* 使用者點擊漢堡圖示後，顯示選單 (由 JS 控制 .active) */
nav.active .menu-list { 
    display: flex !important; 
} 

/* 確保每個列表項目間有垂直間距 */
.menu-list li {
	padding: 0;
    margin-bottom: 5px; 
    display: flex;
    justify-content: center;
    align-items: center;
}
/* 移除最後一個項目的底部間距 */
.menu-list li:last-child {
    margin-bottom: 0; 
}

.menu-list a { 
	line-height: 0;
    text-decoration: none; 
    color: transparent; 
    transition: none; 
    padding: 0; 
	margin: 0;
    display: block; 
    font-size: 0; 
    overflow: hidden;
}
.menu-list a:hover {
    opacity: 0.7;
}

/* 選單圖片樣式 */
.menu-list .menu-img-item {
    width: 90%; 
    height: auto;
    margin: 0; 
    border-radius: 5px; 
    transition: opacity 0.3s ease;
}
.menu-list .menu-img-item:hover {
    opacity: 0.85; 
}

/* --- BANNER 輪播 --- */
.banner-overlay.banner-top {
    position: sticky; 
    top: 0; 
    left: 50%;
    transform: translateX(-50%); 
    width: auto; 
    max-width: 100%; 
    height: var(--banner-top-height); 
    object-fit: contain; 
    z-index: 1001; 
    pointer-events: none;
    line-height: 0;
    display: none; 
}

/* 輪播區塊總容器 */
.banner-wrap {
    position: relative; 
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: calc(-1 * var(--header-height)); 
    overflow: visible; 
    line-height: 0;
}

/* 圖片輪播視窗 */
.banner-slider {
    display: block; 
    position: relative;
    width: 100%;
    height: 600px;
    min-height: 200px; 
    z-index: 50; 
}

/* 每一張輪播圖片 */
.banner-slide {
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; 
    opacity: 0; 
    transition: opacity 1s ease-in-out; 
    object-fit: cover; 
    mask-image: none;
    -webkit-mask-image: none;
}
.banner-slide.active {
    opacity: 1; 
    position: relative; 
}


/* 底部覆蓋圖 (Banner_bottom) - 獨立定位在最上層 */
.banner-overlay.banner-bottom {
    position: absolute; 
    bottom: -40%;
    left: 50%;
    transform: translateX(-50%); 
    width: 100%; 
    height: 80%; 
    object-fit: contain; 
    z-index: 75;
    pointer-events: none;
    line-height: 0;
    max-width: 1920px; /* 限制寬度，避免過度拉伸 */
}


/* 輪播分頁圓點 (靠右、垂直居中排列) */
.banner-dots {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px; 
    z-index: 70;
    
    display: flex;
    flex-direction: column; /* 垂直排列 */
    gap: 10px;
}

.banner-dot {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ffffff; 
    opacity: 0.5;
    cursor: pointer;
    transition: all 0.3s;
}

.banner-dot.active,
.banner-dot:hover {
    background-color: #969289; 
    opacity: 1;
}

/* --- BANNER/ABOUT 頂部銜接區塊 --- */
.about-top-banner {
    width: 100%;
    margin-top: -16.5%; 
    margin-bottom: 0;
    line-height: 0; 
    z-index: 60; 
    position: relative; 
}

.about-banner-img {
    display: block;
    width: 100%;
    height: auto;
}

/* --- ABOUT SECTION --- */
#about {
    background-color: #f2eee9; 
    padding: 0px 5%;
    max-width: 100%;
    margin: auto;
    position: relative;
    overflow: hidden;
    padding-top: 20px; 
}

.two-col {
  display: flex;
  gap: 50px;
  align-items: center; 
}

/* 確保兩欄有彈性伸縮的特性 */
.two-col > div {
    flex: 1;
}

.section-title {
    max-width: 250px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
    margin-top: 20px;
    margin-bottom: 20px; 
}

.centered-text {
    text-align: center;
    margin-bottom: 100px;
}



/* 插圖 1 的容器 */
.about-illustrations-1 {
    margin-top: 10px;
}
.about-illustrations-1 img {
    width: 100% !important;
    max-width: 350px;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
	transition: transform 0.3s ease;
}
.about-illustrations-1 img:hover {
    transform: translateY(-5px);
}

/* 插圖 2 的特殊定位 */
.illustration-2 {
    position: absolute;
    bottom: 0;
    left: 48%;
    transform: translateX(-50%);
    width: 200px !important;
    height: auto;
    z-index: 10;
}

/* SPECIAL PETS */
#pets {	
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0; 
}
section#pets {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
}
.pets-row {
    display: flex;
    margin: auto;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 50px; 
    padding: 30px 0;
}

/* 特寵文字選項樣式：上橫線 - 文字 - 下橫線 */
.pet-option-text {
    position: relative;
    color: #8C8C8C;
    font-size: 1.5rem; 
    font-weight: bold;
	text-decoration: none;
    padding: 0 10px; /* 文字左右間距 */
    cursor: pointer;
    line-height: 1.2; /* 調整行高 */
    flex-shrink: 0;
    align-self: center; 
    transition: color 0.3s ease;
}

/* 上橫線 (Overline) */
.pet-option-text::before {
    content: '';
    position: absolute;
    top: -8px; /* 調整與文字的垂直距離 */
    left: 0;
    width: 100%;
    height: 1px; 
    background: #8C8C8C; 
}

/* 下橫線 (Underline) */
.pet-option-text::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 1px; 
    background: #8C8C8C;
}

.pet-option-text:hover {
    color: #657546;
}

.pet-option-text:hover::before,
.pet-option-text:hover::after {
    background: #969289;
}


/* --- 圖片自動輪播 (Tiling Footer Line Marquee) --- */

/* 圖片輪播外層容器 */
.tiling-footer-line {
    margin: 0; 
    padding: 20px 0; 
    width: 100vw;
    overflow: hidden;
    min-height: 180px;
    background-image: none;
    background-color: transparent; 
    animation: none; 
}

/* 滾動內容容器 */
.marquee-content {
    display: flex;
    white-space: nowrap; 
    width: fit-content;
    animation: marquee 60s linear infinite;
    margin-top: 20px; 
}

/* 滾動動畫定義 */
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } 
}

/* 每個圖片容器 */
.marquee-item {
    flex-shrink: 0; 
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
	
}

.marquee-item img {
	border-radius: 10px;
    width: 180px; 
    height: 120px;
   object-fit: cover;
    transition: transform 0.5s ease-in-out;
}

/* 關鍵：圖片上下交錯效果 */
.stagger-up {
    transform: translateY(-20px);
}

.stagger-down {
    transform: translateY(20px);
}


/* --- TEAM --- */
.team-wrap {
  position: relative;
  max-width: 1280px;
  margin: auto;
  padding: 0 40px;

}

/* 標題圖片樣式 */
.team-title {
    max-width: 250px;
    width: 100%;
	margin-top: 2.5rem;
    height: auto;
    margin-bottom: 2rem;
    margin-left: auto;
    margin-right: auto;
}

/* 用於顯示單頁內容的視窗 */
.team-viewport {
    overflow: hidden;
    width: 100%;
    min-width: 0;
}

.team-container {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
  justify-content: flex-start; 
  margin-bottom: 50px;
}

.team-card {
  flex: 0 0 calc(33.333%); 
  padding-top: 40px;
  text-align: center;
  border-radius: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  position: relative;
	
}
.team-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0px; 
    transform: translateX(10px); 
    top: 0;
    width: 1px;
    height: 100%; /* 讓分隔線與卡片等高 */
    background-color: #ddd; /* 使用原邊框顏色 */
    z-index: 5;
}

/* 定義對話框主體 */
    .team-title-box {
        position: absolute; /* 相對於 .team-card 定位 */
        top: 0px; /* 放在卡片頂部 */
        left: 50%;
        transform: translateX(-50%);
		height: 30px; 
        line-height: 30px;
        background-color: #969289; /* 對話框背景色 (使用主題色) */
        color:#fff; /* 文字顏色 */
        padding: 0 20px;
        border-radius: 15px; /* 圓角長方形 */
        font-weight:normal;
        font-size: 0.9em;
        white-space: nowrap; /* 確保文字不換行 */
        z-index: 10;
    }

    /* 使用 ::after 偽元素創建對話框下方的倒三角形箭頭 */
    .team-title-box::after {
        content: '';
        position: absolute;
        bottom: -10px; /* 將箭頭放在對話框下方 */
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        /* 使用 border 技巧創建倒三角形 */
        border-left: 10px solid transparent; 
        border-right: 10px solid transparent;
        border-top: 10px solid #969289; /* 顏色與對話框背景色相同 */
    }

.avatar-link {
    display: block;
    border-radius: 50%;
    overflow: hidden;
    width: 120px;
    height: 120px;
	margin-top: 20px;
    margin-bottom: 10px;
}

.team-card .avatar {
  width: 100%; 
  height: 100%;
  object-fit: cover; 
  border-radius: 50%; 
  transition: transform 0.4s ease; 

}
.avatar-link:hover .avatar {
    transform: scale(1.1); 
}

/* 成員名字與經歷文字樣式 */
.team-card p {
    margin: 5px 0;
    text-align: center;
    width: 100%;
}

/* 成員名字樣式 */
.team-card .member-name {
    font-size: 1.4rem;
    color: #657546;
    font-weight: bold;
}

/* 經歷樣式 */
.team-card .member-experience {
    font-size: 1rem;
    color: #555;
}

/* 成員照片的超連結容器 */
.avatar-link {
    display: block; 
    border-radius: 50%; 
    overflow: hidden; 
    width: 220px; 
    height: 220px; 
    margin-bottom: 10px;
}



/* 左右箭頭按鈕樣式 (已還原) */
.team-wrap .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 20;
  padding: 0;
  background: none;
}

.team-wrap .arrow img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.2s;
}

.team-wrap .arrow:hover img {
    transform: scale(1.1);
}

.team-wrap .arrow.left { left: 5px; } 
.team-wrap .arrow.right { right: 5px; }


/* 團隊滑動提示效果 */
.team-fade-overlay {
    position: absolute;
    top: 0;
    width: 40px;
    height: 100%;
    pointer-events: none;
    z-index: 10;
    transition: opacity 0.3s;
}

.team-fade-overlay.left {
    left: 40px;
    background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
}

.team-fade-overlay.right {
    right: 40px;
    background: linear-gradient(to left, #fff, rgba(255, 255, 255, 0));
}


/* --- ENVIRONMENT 區塊樣式 --- */
#env {
    background-color: #f2eee9; 
    padding: 30px 0px;
    width: 100%;
    margin: auto;
    overflow: hidden; 
}
.env-container {
    margin: auto; 
    padding: 0 5%;
    max-width: 1200px;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}
.env-left {
  flex: 0 0 calc(52% - 20px);
  overflow: hidden;
  border-radius: 12px;
  height: auto;           
  aspect-ratio: 4 / 3;
  position: sticky;
  top: 100px;
}
.env-left img {
  width: 100%;       
  height: 100%;      
  object-fit: cover; 
}

.env-right { 
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.section-title-right {
    width: 100%;       
    max-width: 250px;
    height: auto;
    display: block;
    margin: 0 auto 10px auto;
}

#envTitle {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #969289;
}

.env-options { 
    display: flex; 
    gap: 10px; 
    margin-bottom: 20px; 
    flex-wrap: wrap;
}

.env-options button {
    padding: 10px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
    background-color: transparent;
    border: 1px solid #969289;
    color: #969289;
}

.env-options button:hover {
    background-color: #969289;
	color: #fff;
}

.env-options button.active-option {
    background-color: #969289;
    color: #fff;
    border-color: #969289;
}

.env-thumbs-wrap {
    position: relative;
    overflow: hidden;
    padding: 0 60px;
    margin-top: 20px;
    width: 100%;
}

.env-thumbs-viewport {
    overflow: hidden;
    max-width: 380px;
    margin: auto;
}

.env-thumbs { 
    display: flex; 
    flex-wrap: nowrap;
    gap: 10px; 
    width: fit-content;
    transition: transform 0.5s ease;
    padding-bottom: 5px;
}
.env-thumbs img { 
    flex: 0 0 auto;
    width: 120px;
    height: 80px;
    background: #eee;
    cursor: pointer;
    border-radius: 5px;
    border: 2px solid transparent;
    transition: opacity 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.env-thumbs img:hover { 
    opacity: 0.7;
    border-color: #969289;
}


/* 院內環境縮圖箭頭按鈕樣式 */
.env-thumbs-wrap .env-thumb-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 10;
    padding: 0;
    background: none; 
}

.env-thumbs-wrap .env-thumb-arrow img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.2s;
}

.env-thumbs-wrap .env-thumb-arrow:hover img {
    transform: scale(1.1);
}

.env-thumb-arrow.left { left: 0; } 
.env-thumb-arrow.right { right: 0; }


/* --- RESERVE 區塊樣式 --- */
#reserve.two-col {
    display: flex;
    padding: 0 5% 60px 5%;
    gap: 20px;
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 1; 
}
.hours-info {
    flex: 1; 
    padding-bottom: 30px;
}

.hours-table-img, .hours-info-img {
    width: 100%; 
    height: auto;
    max-width: 1200px;
    margin-bottom: 10px;
}

.booking-buttons {
    flex: 1; 
    display: flex;
	margin-top: 0px;
    flex-direction: column;
    gap: 0;
}

.booking-item {
    display: block;
    overflow: hidden; 

}

.booking-item img {
    width: 100%; 
    height: auto;
    max-width: 400px;
    display: block;
}

.booking-item:first-child {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.booking-item:last-child {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

/* --- FOOTER --- */
.footer-illustration-container {
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 0; 
}

.footer-illustration {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
}

footer { 
    background-color: #f2eee9 !important; 
	color: #000 !important;
    padding: 50px 20px; 
}
.footer-wrap { 
    max-width: 1200px; 
    margin: auto; 
    display: flex; 
    justify-content: space-between; 
    gap: 40px; 
}

.footer-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo { 
    width: 180px; 
    margin-bottom: 15px;
}

.contact-info {
    text-align: center;
    margin-bottom: 15px; 
}

.contact-info p {
    margin: 0;
    line-height: 1.4; 
}

.social-icons {
}

.social-icon-img {
    width: 30px; 
    height: auto;
	max-width: 30px;
    transition: transform 0.3s ease;
}

.social-icon-img:hover {
    transform: scale(1.1); 
}

.footer-right { 
    flex: 1; 
}

.footer-right iframe { 
    width: 100%; 
    height: 350px !important; 
    border-radius: 5px; 
}

/* Back to Top */
#backTop { 
	position: fixed; 
	right: 20px; 
	bottom: 20px; 
	background: transparent; 
	olor: #fff; 
	border-radius: 50%; 
	cursor: pointer; 
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
}

#backTop img {
    width: 70px; 
    height: 70px; 
    object-fit: contain;
    display: block;
}

/* ================= RWD 900px ================= */

@media (max-width: 900px) {
    .env-container {
        flex-direction: column; 
        padding: 0px; 
		align-items: center;
    }
    .env-left {
        flex: 0 0 100%; 
        position: static; 
        top: auto;
		order: 2;
    }
    .env-right {
        flex: 1 1 100%;
		text-align: center;  
        padding: 20px 0;
        min-width: 300px;
		order: 1;
    }
	.section-title-right {
        margin: 0 auto 10px auto;
		order: -1;
	}
	.team-container {
        gap: 0; /* 移除卡片間距 */
    }
	.team-card {
        flex: 0 0 100%; 
        border-right: none; 
        padding-right: 0;
    }
    
    .team-wrap {
        padding: 0; 
		overflow-x: hidden;
    }
    .team-wrap .arrow.left { left: 10px; } 
    .team-wrap .arrow.right { right: 10px; }
    
    /* 修正：淡化提示條也需要調整位置 */
    .team-fade-overlay.left { left: 0px; }
    .team-fade-overlay.right { right: 0px; }
	
	#envTitle {
        order: 0;
	}	
	.env-options {
        justify-content: center;
		width: 100%;
		order: 3;
    }
	.env-thumbs-wrap {
        padding: 0;
		order: 4;
	}
} /* 900px 結束 */


/* ================= RWD 768px ================= */

@media (max-width: 768px) {
    :root {
        --header-height-mobile: 200px;
        --banner-top-height-mobile: 60px; 
    }
    
    .site-header {
        height: var(--header-height-mobile); /* 手機版 Header 高度 */
    }
    
    .logo-wrapper {
        height: var(--header-height-mobile);
        align-items: flex-start;
    }
	
	.logo {
        max-height: var(--header-height-mobile);
    }
	
	.header-icon-small {
        margin-top: -4%; 
    }
    .small-icon-img {
        width: 100%; 
		max-width: 40%;
        height: auto;
		display: inline-block;
    }
    
    .main-nav {
        height: var(--header-height-mobile);
		align-items: flex-start;
        padding-right: 0px;
    }
	
    /* --- Menu --- */
    .menu-toggle {
		width: 60px;
		height: 60px;
        padding-right: 0px;
    }
    .main-nav .menu-list {
        top: 60px;
        right: 0px;
        width: 120px;
    }

    /* --- Banner --- */
	
    .banner-wrap {
        margin-top: calc(-1 * var(--header-height-mobile));
    }
    
    .banner-slider {
        height: 300px; 
    }
    
    .banner-overlay.banner-top {
        height: var(--banner-top-height-mobile); 
    }
    .banner-bottom {
        height: 60%; 
        bottom: -20%; 
    }
    
    .banner-dots {
        bottom: 10px; 
    }
    
    /* Marquee */
    .tiling-footer-line {
        padding: 10px 0; 
        min-height: 90px;
    }
    
    .marquee-item img {
        width: 120px; 
        height: 80px;
    }

    .stagger-up {
        transform: translateY(-10px); 
    }

    .stagger-down {
        transform: translateY(10px); 
    }
	
    /* Team card */
	.team-container {
        gap: 0; 
    }
    
    .team-card {
        flex: 0 0 100%; 
        border-right: none; 
        padding-right: 0;
    }
    
    .team-wrap {
        padding: 0;
    }
    
    /* 調整箭頭和淡化提示的位置 */
    .team-wrap .arrow.left { 
        left: 10px; 
    } 
    .team-wrap .arrow.right { 
        right: 10px; 
    }
    .team-fade-overlay.left { 
        left: 0; 
    }
    .team-fade-overlay.right { 
        right: 0; 
    }
	
    /* --- Environment--- */
    .two-col {
        flex-direction: column;
        gap: 30px; 
    }
    
    
    .two-col > div {
        flex: 1 1 100%;
        width: 100%;
    }
    
    .two-col .rounded {
        text-align: center;
        margin-bottom: 20px;
		order: 2;
    }
	
	.two-col > div:first-child { 
        order: 1; 
    }
    
    .two-col .rounded img {
        max-width: 400px; 
        margin: auto;
    }
	
	#reserve.two-col {
        align-items: center; 
        width: 90%; 
        margin: auto; 
    }
    .hours-info {
        text-align: center; 
    }
    .booking-buttons {
        align-items: center; 
    }
    .booking-item img {
        margin: auto; 
    }
    
    /* ---About img--- */
    #about .section-title {
        margin-left: auto;
        margin-right: auto;
    }
	.illustration-2 {
        position: static; 
        transform: none;
        width: 140px !important; 
        margin: -90px 0 0 80%;
        display: block;
    }
	/* ---Environment--- */
	.env-right {
        align-items: center; 
    }

    .env-thumbs-viewport {
        max-width: 380px;
        margin: auto; 
    }
    
    .env-thumbs-wrap {
        padding: 0 40px; 
    }
	/* --- FOOTER --- */
    .footer-wrap {
        flex-direction: column; 
        gap: 30px; 
        align-items: center; 
    }

    .footer-left {
        align-items: center;
        text-align: center;
    }
    
    .footer-right {
        width: 100%; 
        max-width: 500px; 
    }
    .footer-right iframe {
        height: 300px !important; 
    }
} /* 768px 結束 */